dev-audioprocessing/pages/setting/termsandcondition.vue

77 lines
6.7 KiB
Vue

<template>
<div>
<div class="row justify-content-center">
<div class="col-12 col-sm-12 col-md-8 pt-4">
<div>
<h4 class="fw-bold text-center me-4 ">{{t("Terms And Condition")}}</h4>
<p class=""><strong>{{t("Terms of Contract")}} </strong></p>
<p>&nbsp;<strong>&nbsp;§ {{t("1 contracting parties; scope")}}</strong></p>
<ol>
<li>{{t("The Fraunhofer Society for the Promotion of Applied Research e.V., entered in the register of associations of the district court of Munich under register no. VR 4461, Hansastra&szlig;e 27c, 80686 Munich, Germany (&bdquo;Fraunhofer&rdquo;) engages in applied research and has developed certain software (&bdquo;Software&rdquo;) that it makes available to third parties (&ldquo;Licensee&rdquo;) who are not consumers as online access.")}}</li>
<li>{{t("These General Terms and Conditions of Business and Licensing (&ldquo;Contractual Terms&rdquo;) from Fraunhofer apply exclusively and regulate the contractual relationship between Fraunhofer and the licensee with regard to the use of the software. The terms of contract become part of the contract when the software is used.")}}</li>
<li>{{t("Services from Fraunhofer for the software, be it support, maintenance or update services, are not part of the contract, but can be commissioned on the basis of a separate agreement with Fraunhofer.")}}</li>
</ol>
<p><strong>§ {{t("2 Subject matter of the contract; Handover")}}</strong></p>
<ol>
<li>{{t("The software &ldquo;Mindboost&rdquo; enables the creation of an adaptive, harmonic soundscape to reduce acoustic disturbances in the office through an automatically created masking signal.")}}</li>
<li>{{t("A more detailed specification of the program's properties and the current system requirements can be found on the website. Fraunhofer supplies the software according to the specification. The agreed quality of the software results primarily from the description of the software. Fraunhofer does not owe any further quality of the software.")}}</li>
</ol>
<p><strong>§ {{t("3 license types")}}</strong></p>
<ol>
<li>{{t("The license, which is free of charge as part of the beta test, is made available to the user for free access. Commercial use is not permitted.")}}</li>
</ol>
<p><strong>§ {{t("4 Transfer of the Software to Third Parties")}}</strong></p>
<ol>
<li>{{t("The licensee is not entitled to rent, lease or otherwise commercially transfer the contractual software to third parties.")}}</li>
<li>{{t("Resale of the software is not permitted.")}}</li>
</ol>
<p><strong>§ {{t("5 Changes to the contractual software, further developments")}}</strong></p>
<ol>
<li>{{t("&Auml;nderungen der Software durch den Nutzer, die &uuml;ber die bestimmungsgem&auml;&szlig;en und in den begleitenden Unterlagen beschriebenen Anpassungen der Vertragssoftware an seine individuellen Bed&uuml;rfnisse hinausgehen, unterliegen den nachfolgenden Bestimmungen:")}}
<ol style="list-style-type: lower-roman;">
<li>{{t("The licensee is not permitted to change, edit, decompile, disassemble or reassemble or otherwise rework the contractual software or reproduce the results of such work. Any kind of inference from manufacturing stages of the software (reverse engineering) is not permitted.")}}</li>
<li>{{t("Should the user wish for changes, modifications, processing or adjustments to the contractual software, Fraunhofer offers to conclude separate contracts.")}}</li>
</ol>
</li>
<li>{{t("Fraunhofer is entitled to the rights to all further developments of the contractual software insofar as these are based exclusively or predominantly on developments by Fraunhofer.")}}</li>
</ol>
<p><strong>§ {{t("6 Liability for Material Defects")}}</strong></p>
<ol>
<li>{{t("Fraunhofer does not assume any liability for defects for software made available free of charge.")}}</li>
</ol>
<p><strong>§ {{t("7 Liability")}}</strong></p>
<ol>
<li>{{t("Fraunhofer is not liable for damage caused by software made available free of charge.")}}</li>
</ol>
<p><strong>§ {{t("8 Nature and Scope of Support")}}</strong></p>
<ol>
<li>{{t("Use of &ldquo;Mindboost&rdquo; does not entitle you to claim support.")}}</li>
</ol>
<p><strong>§ {{t("9 Privacy")}}</strong></p>
<ol>
<li>{{t("The parties observe the applicable data protection regulations.&nbsp;")}}</li>
<li>{{t("In addition, reference is made to the content of Fraunhofer's data protection declaration, which the licensee can access under")}}<a href="https://www.ibp.fraunhofer.de/de/datenschutzerklaerung.html" target="_blank">https://www.ibp.fraunhofer.de/de/datenschutzerklaerung.html</a> {{t('can view and download.')}}</li>
</ol>
<p><strong>§ {{t("10 Final Provisions")}}</strong></p>
<ol>
<li>{{t("This contract is exclusively subject to the substantive law of the Federal Republic of Germany to the exclusion of the UN Convention on the International Sale of Goods.")}}</li>
<li>{{t("Changes and additions to this contract must be in writing. This also applies to a change in this written form requirement.")}}</li>
<li>{{t("This Agreement, including references and annexes, contains all agreements relating to the subject matter of this Agreement and supersedes all previous provisions agreed between the parties relating to the subject matter of this Agreement. Additional agreements to this contract have not been made.")}}</li>
<li>{{t("Should any provision of this contract be or become invalid, ineffective or unenforceable in whole or in part, the remaining provisions shall remain in effect. The parties agree to replace the invalid, void, or unenforceable provision with a valid, effective, and enforceable provision that most closely reflects the economic interests of the parties. This also applies in the event of a contractual gap.")}}</li>
<li>{{t("The place of performance is the headquarters of Fraunhofer in Munich, Germany. The risk passes to the licensee as soon as Fraunhofer has handed over the software.&nbsp;")}}</li>
<li>{{t("The German version of the contract is binding")}}.</li>
</ol>
</div>
</div>
</div>
</div>
</template>
<script>
export default {
setup(){
const { t } = useI18n()
const localePath = useLocalePath()
return {t,localePath}
},
}
</script>