dev-audioprocessing/pages/setting/imprint.vue

48 lines
3.7 KiB
Vue
Raw Normal View History

2023-01-02 23:19:42 +00:00
<template>
<div>
<div class="row justify-content-center">
2023-01-03 22:38:43 +00:00
<div class="col-12 col-sm-12 col-md-8 pt-4">
2023-02-27 00:26:27 +00:00
<h4 class="fw-bold text-center me-5 ">{{t("Imprint")}}</h4>
<p><strong>{{t("Mindboost is offered by the Fraunhofer Institute for Building Physics IBP")}}</strong></p>
<p>{{t("The")}}</p>
<p>{{t("Fraunhofer Institute for Building Physics IBP")}}<br /> Nobelstr. 12<br /> 70569 Stuttgart</p>
<p>{{t("is a legally non-independent institution of the")}}</p>
<p>{{t("Fraunhofer Society for the Promotion of Applied Research e.V.")}}<br />{{t("27 c")}} <br /> 80686 M&uuml;nchen</p>
2023-01-02 23:19:42 +00:00
<p>Internet: www.fraunhofer.de<br /> E-Mail: info(at)zv.fraunhofer.de</p>
2023-02-27 00:26:27 +00:00
<p><strong>{{t("Responsible editor:")}}</strong></p>
<p>{{t("Benjamin Muller")}}</p>
<p>{{t("Note: If you have general questions about the institute, please get in touch with the contact persons listed under Contact.")}}</p>
<p><strong>{{t("Your contact person: Benjamin M&uuml;ller")}}</strong></p>
<p>{{t("Sales tax identification number according to &sect; 27 a")}}<br />{{t("Sales Tax Act")}}: {{ t('OF') }} 129515865</p>
<p>{{t("registry court")}}<br />{{t("District Court of Munich")}} </p>
<p>{{t("Registered association")}}<br />{{t("Register-Nr. VR 4461")}} </p>
<p>{{t("board of directors")}}<br /> {{t("Prof. Dr.-Ing. Reimund Neugebauer President")}}<br />{{t("Prof. Dr. Alexander Kurz | Member of the Board")}} <br />{{t("Prof. Dr. Axel M&uuml;ller-Groeling | Member of the Board")}} <br />{{t("Ass. Elizabeth Ewen | Member of the Board")}} <br /> {{t("dr Sandra Krey | Member of the Board")}}</p>
<p>{{t("Rights of Use")}}<br /> &copy; {{t("Fraunhofer-Gesellschaft e.V., Munich")}}<br />{{t("All rights reserved.")}} </p>
<p>{{t("The copyrights of this website are entirely owned by the Fraunhofer-Gesellschaft.")}}</p>
<p>{{t("Downloading or printing out these publications is only permitted for personal use. All other uses, in particular commercial use and distribution, are not permitted and require written approval.")}}</p>
<p>{{t("A download or printout is also only permitted for the purpose of reporting on the Fraunhofer-Gesellschaft and its institutes in accordance with the following terms of use:")}}</p>
<p>{{t("Graphic changes to image motifs &ndash; except for cropping the main subject &ndash; are not allowed. It is always necessary to state the source and send two free specimen copies to the above address. Use is free of charge.")}}</p>
<p><strong>{{t("Disclaimer")}}</strong></p>
<p>{{t("We assume no liability for the content of external links. The operators of the linked pages are solely responsible for their content.")}}</p>
<p>{{t("We make every effort to ensure that the website is always up-to-date, correct and complete in terms of content. Nevertheless, the occurrence of errors cannot be completely ruled out. The Fraunhofer Institute and the Fraunhofer Society assume no liability for the topicality, the correctness of the content or the completeness of the information provided on their website. This refers to any damage of a material or immaterial nature to third parties caused by the use of this website.")}}</p>
<p>{{t("Protected brands and names, images and texts are not usually marked as such on our website. However, the absence of such a label does not mean that it is a free name, free image or free text within the meaning of trademark law.")}}</p>
2023-01-02 23:19:42 +00:00
<p>&nbsp;</p>
</div>
</div>
</div>
</template>
<script>
export default {
name:'SettingPage',
2023-02-27 00:26:27 +00:00
setup(){
const { t } = useI18n()
const localePath = useLocalePath()
return {t,localePath}
},
2023-01-02 23:19:42 +00:00
}
</script>
<style>
</style>