@dargmuesli/nuxt-vio 1.7.1 → 1.8.1
Sign up to get free protection for your applications and to get access to all the features.
- package/app.config.ts +19 -0
- package/app.vue +42 -0
- package/composables/useAppLayout.ts +23 -0
- package/composables/useFavicons.ts +3 -1
- package/composables/useMountIndicator.ts +33 -0
- package/package.json +9 -6
- package/pages/legal-notice.vue +88 -0
- package/pages/privacy-policy.vue +589 -0
package/app.config.ts
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
import { useSeoMeta } from '@unhead/vue'
|
2
|
+
|
3
|
+
import { SITE_NAME } from './utils/constants'
|
4
|
+
|
5
|
+
export default defineAppConfig({
|
6
|
+
seoMeta: {
|
7
|
+
twitterSite: '@dargmuesli',
|
8
|
+
},
|
9
|
+
siteName: SITE_NAME,
|
10
|
+
themeColor: '#202020',
|
11
|
+
})
|
12
|
+
|
13
|
+
declare module '@nuxt/schema' {
|
14
|
+
interface AppConfigInput {
|
15
|
+
seoMeta?: Parameters<typeof useSeoMeta>[0]
|
16
|
+
siteName: string
|
17
|
+
themeColor?: string
|
18
|
+
}
|
19
|
+
}
|
package/app.vue
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
<template>
|
2
|
+
<div :data-is-loading="isLoading">
|
3
|
+
<NuxtLayout>
|
4
|
+
<!-- <SeoKit
|
5
|
+
:site-description="t('globalOgSeoDescription')"
|
6
|
+
:language="locale"
|
7
|
+
/>
|
8
|
+
<OgImageStatic :alt="t('globalOgImageAlt')" component="OgImage" /> -->
|
9
|
+
<NuxtPage />
|
10
|
+
<CookieControl :locale="locale" />
|
11
|
+
</NuxtLayout>
|
12
|
+
</div>
|
13
|
+
</template>
|
14
|
+
|
15
|
+
<script setup lang="ts">
|
16
|
+
// const { t } = useI18n()
|
17
|
+
const { locale } = useI18n()
|
18
|
+
const cookieControl = useCookieControl()
|
19
|
+
|
20
|
+
const { loadingIds, indicateLoadingDone } = useLoadingDoneIndicator('app')
|
21
|
+
|
22
|
+
// computations
|
23
|
+
const isLoading = computed(() => !!loadingIds.value.length)
|
24
|
+
|
25
|
+
// lifecycle
|
26
|
+
onMounted(() => indicateLoadingDone())
|
27
|
+
watch(
|
28
|
+
() => cookieControl.cookiesEnabledIds.value,
|
29
|
+
(current, previous) => {
|
30
|
+
if (
|
31
|
+
(!previous?.includes('ga') && current?.includes('ga')) ||
|
32
|
+
(previous?.includes('ga') && !current?.includes('ga'))
|
33
|
+
) {
|
34
|
+
window.location.reload()
|
35
|
+
}
|
36
|
+
},
|
37
|
+
{ deep: true }
|
38
|
+
)
|
39
|
+
// initialization
|
40
|
+
useAppLayout()
|
41
|
+
useFavicons()
|
42
|
+
</script>
|
@@ -0,0 +1,23 @@
|
|
1
|
+
export const useAppLayout = () => {
|
2
|
+
const appConfig = useAppConfig()
|
3
|
+
const head = useLocaleHead({ addSeoAttributes: true })
|
4
|
+
|
5
|
+
useHead(head.value)
|
6
|
+
useHead({
|
7
|
+
bodyAttrs: {
|
8
|
+
class:
|
9
|
+
'bg-background-bright dark:bg-background-dark font-sans text-text-dark dark:text-text-bright',
|
10
|
+
},
|
11
|
+
meta: [
|
12
|
+
{
|
13
|
+
content: appConfig.themeColor,
|
14
|
+
name: 'msapplication-TileColor',
|
15
|
+
},
|
16
|
+
{
|
17
|
+
content: appConfig.themeColor,
|
18
|
+
name: 'theme-color',
|
19
|
+
},
|
20
|
+
],
|
21
|
+
})
|
22
|
+
useSeoMeta(appConfig.seoMeta)
|
23
|
+
}
|
@@ -1,4 +1,6 @@
|
|
1
1
|
export const useFavicons = () => {
|
2
|
+
const appConfig = useAppConfig()
|
3
|
+
|
2
4
|
useHead({
|
3
5
|
link: [
|
4
6
|
{
|
@@ -28,7 +30,7 @@ export const useFavicons = () => {
|
|
28
30
|
rel: 'manifest',
|
29
31
|
},
|
30
32
|
{
|
31
|
-
color:
|
33
|
+
color: appConfig.themeColor,
|
32
34
|
href: '/assets/static/favicon/safari-pinned-tab.svg?v=bOXMwoKlJr',
|
33
35
|
rel: 'mask-icon',
|
34
36
|
},
|
@@ -0,0 +1,33 @@
|
|
1
|
+
export const useLoadingDoneIndicator = (id?: string) => {
|
2
|
+
const route = useRoute()
|
3
|
+
const loadingIds = useState<string[]>('loadingIds', () => [])
|
4
|
+
|
5
|
+
const loadingId = id || route.name?.toString()
|
6
|
+
|
7
|
+
if (!loadingId)
|
8
|
+
throw createError({ statusCode: 500, statusMessage: 'Loading id missing!' })
|
9
|
+
|
10
|
+
const loadingIdToAdd = `${process.server ? 'ssr' : 'csr'}_${loadingId}`
|
11
|
+
|
12
|
+
if (loadingIds.value.includes(loadingIdToAdd)) {
|
13
|
+
throw createError({
|
14
|
+
statusCode: 500,
|
15
|
+
statusMessage: 'Loading id already exists!',
|
16
|
+
})
|
17
|
+
}
|
18
|
+
|
19
|
+
const loadingIdSsr = `ssr_${loadingId}`
|
20
|
+
|
21
|
+
if (process.client && loadingIds.value.includes(loadingIdSsr)) {
|
22
|
+
loadingIds.value.splice(loadingIds.value.indexOf(loadingIdSsr), 1)
|
23
|
+
}
|
24
|
+
|
25
|
+
loadingIds.value.push(loadingIdToAdd)
|
26
|
+
|
27
|
+
return {
|
28
|
+
loadingIds,
|
29
|
+
indicateLoadingDone: () => {
|
30
|
+
loadingIds.value.splice(loadingIds.value.indexOf(loadingId), 1)
|
31
|
+
},
|
32
|
+
}
|
33
|
+
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@dargmuesli/nuxt-vio",
|
3
|
-
"version": "1.
|
3
|
+
"version": "1.8.1",
|
4
4
|
"type": "module",
|
5
5
|
"publishConfig": {
|
6
6
|
"access": "public"
|
@@ -15,8 +15,11 @@
|
|
15
15
|
"composables",
|
16
16
|
"layouts",
|
17
17
|
"server",
|
18
|
+
"pages",
|
18
19
|
"plugins",
|
19
20
|
"utils",
|
21
|
+
"app.config.ts",
|
22
|
+
"app.vue",
|
20
23
|
"error.vue",
|
21
24
|
"nuxt.config.ts",
|
22
25
|
"tailwind.config.ts"
|
@@ -35,18 +38,18 @@
|
|
35
38
|
"lint:ts": "pnpm nuxt typecheck"
|
36
39
|
},
|
37
40
|
"dependencies": {
|
38
|
-
"@dargmuesli/nuxt-cookie-control": "5.
|
41
|
+
"@dargmuesli/nuxt-cookie-control": "5.6.0",
|
39
42
|
"@http-util/status-i18n": "0.6.2",
|
40
43
|
"@nuxtjs/html-validator": "1.2.4",
|
41
44
|
"@nuxtjs/i18n": "8.0.0-beta.10",
|
42
|
-
"@nuxtjs/tailwindcss": "6.6.
|
45
|
+
"@nuxtjs/tailwindcss": "6.6.6",
|
43
46
|
"@tailwindcss/typography": "0.5.9",
|
44
47
|
"nuxt-seo-kit": "1.3.6",
|
45
48
|
"vue-gtag": "2.0.1"
|
46
49
|
},
|
47
50
|
"devDependencies": {
|
48
|
-
"@commitlint/cli": "17.
|
49
|
-
"@commitlint/config-conventional": "17.
|
51
|
+
"@commitlint/cli": "17.6.0",
|
52
|
+
"@commitlint/config-conventional": "17.6.0",
|
50
53
|
"@intlify/eslint-plugin-vue-i18n": "2.0.0",
|
51
54
|
"@nuxtjs/eslint-config-typescript": "12.0.0",
|
52
55
|
"eslint": "8.38.0",
|
@@ -56,7 +59,7 @@
|
|
56
59
|
"eslint-plugin-yml": "1.5.0",
|
57
60
|
"husky": "8.0.3",
|
58
61
|
"lint-staged": "13.2.1",
|
59
|
-
"nuxt": "3.4.
|
62
|
+
"nuxt": "3.4.1",
|
60
63
|
"prettier": "2.8.7",
|
61
64
|
"stylelint": "15.4.0",
|
62
65
|
"stylelint-config-recommended-vue": "1.4.0",
|
@@ -0,0 +1,88 @@
|
|
1
|
+
<template>
|
2
|
+
<div class="vio-prose-scheme">
|
3
|
+
<h1>{{ title }}</h1>
|
4
|
+
<h2>{{ t('tmg') }}</h2>
|
5
|
+
<p>
|
6
|
+
{{ t('addressName') }}<br />
|
7
|
+
{{ t('addressStreet') }}<br />
|
8
|
+
{{ t('addressCity') }}
|
9
|
+
</p>
|
10
|
+
|
11
|
+
<h2>{{ t('contact') }}</h2>
|
12
|
+
<p>{{ t('email') }}</p>
|
13
|
+
|
14
|
+
<h2>{{ t('responsibility') }}</h2>
|
15
|
+
<p>
|
16
|
+
{{ t('addressName') }}<br />
|
17
|
+
{{ t('addressStreet') }}<br />
|
18
|
+
{{ t('addressCity') }}
|
19
|
+
</p>
|
20
|
+
|
21
|
+
<h3>{{ t('liabilityContentTitle') }}</h3>
|
22
|
+
<p>{{ t('liabilityContentDescription1') }}</p>
|
23
|
+
<p>{{ t('liabilityContentDescription2') }}</p>
|
24
|
+
|
25
|
+
<h3>{{ t('liabilityLinksTitle') }}</h3>
|
26
|
+
<p>{{ t('liabilityLinksDescription1') }}</p>
|
27
|
+
<p>{{ t('liabilityLinksDescription2') }}</p>
|
28
|
+
|
29
|
+
<h3>{{ t('copyrightTitle') }}</h3>
|
30
|
+
<p>{{ t('copyrightDescription1') }}</p>
|
31
|
+
<p>{{ t('copyrightDescription2') }}</p>
|
32
|
+
|
33
|
+
<p>
|
34
|
+
<VioLink to="https://www.e-recht24.de">{{ t('source') }}</VioLink>
|
35
|
+
</p>
|
36
|
+
</div>
|
37
|
+
</template>
|
38
|
+
|
39
|
+
<script setup lang="ts">
|
40
|
+
const { t } = useI18n()
|
41
|
+
|
42
|
+
// data
|
43
|
+
const title = t('title')
|
44
|
+
|
45
|
+
// initialization
|
46
|
+
useSeoMeta({ title })
|
47
|
+
</script>
|
48
|
+
|
49
|
+
<i18n lang="yaml">
|
50
|
+
de:
|
51
|
+
addressCity: 34117 Kassel
|
52
|
+
addressName: Jonas Thelemann
|
53
|
+
addressStreet: Fünffensterstraße 18
|
54
|
+
contact: Kontakt
|
55
|
+
copyrightDescription1: Die durch die Seitenbetreiber erstellten Inhalte und Werke auf diesen Seiten unterliegen dem deutschen Urheberrecht. Die Vervielfältigung, Bearbeitung, Verbreitung und jede Art der Verwertung außerhalb der Grenzen des Urheberrechtes bedürfen der schriftlichen Zustimmung des jeweiligen Autors bzw. Erstellers. Downloads und Kopien dieser Seite sind nur für den privaten, nicht kommerziellen Gebrauch gestattet.
|
56
|
+
copyrightDescription2: Soweit die Inhalte auf dieser Seite nicht vom Betreiber erstellt wurden, werden die Urheberrechte Dritter beachtet. Insbesondere werden Inhalte Dritter als solche gekennzeichnet. Sollten Sie trotzdem auf eine Urheberrechtsverletzung aufmerksam werden, bitten wir um einen entsprechenden Hinweis. Bei Bekanntwerden von Rechtsverletzungen werden wir derartige Inhalte umgehend entfernen.
|
57
|
+
copyrightTitle: Urheberrecht
|
58
|
+
email: "E-Mail: server+legal-notice{'@'}jonas-thelemann.de"
|
59
|
+
liabilityContentDescription1: Als Diensteanbieter sind wir gemäß § 7 Abs.1 TMG für eigene Inhalte auf diesen Seiten nach den allgemeinen Gesetzen verantwortlich. Nach §§ 8 bis 10 TMG sind wir als Diensteanbieter jedoch nicht verpflichtet, übermittelte oder gespeicherte fremde Informationen zu überwachen oder nach Umständen zu forschen, die auf eine rechtswidrige Tätigkeit hinweisen.
|
60
|
+
liabilityContentDescription2: Verpflichtungen zur Entfernung oder Sperrung der Nutzung von Informationen nach den allgemeinen Gesetzen bleiben hiervon unberührt. Eine diesbezügliche Haftung ist jedoch erst ab dem Zeitpunkt der Kenntnis einer konkreten Rechtsverletzung möglich. Bei Bekanntwerden von entsprechenden Rechtsverletzungen werden wir diese Inhalte umgehend entfernen.
|
61
|
+
liabilityContentTitle: Haftung für Inhalte
|
62
|
+
liabilityLinksDescription1: Unser Angebot enthält Links zu externen Websites Dritter, auf deren Inhalte wir keinen Einfluss haben. Deshalb können wir für diese fremden Inhalte auch keine Gewähr übernehmen. Für die Inhalte der verlinkten Seiten ist stets der jeweilige Anbieter oder Betreiber der Seiten verantwortlich. Die verlinkten Seiten wurden zum Zeitpunkt der Verlinkung auf mögliche Rechtsverstöße überprüft. Rechtswidrige Inhalte waren zum Zeitpunkt der Verlinkung nicht erkennbar.
|
63
|
+
liabilityLinksDescription2: Eine permanente inhaltliche Kontrolle der verlinkten Seiten ist jedoch ohne konkrete Anhaltspunkte einer Rechtsverletzung nicht zumutbar. Bei Bekanntwerden von Rechtsverletzungen werden wir derartige Links umgehend entfernen.
|
64
|
+
liabilityLinksTitle: Haftung für Links
|
65
|
+
responsibility: Verantwortlich für den Inhalt nach § 55 Abs. 2 RStV
|
66
|
+
source: Quelle
|
67
|
+
title: Impressum
|
68
|
+
tmg: Angaben gemäß § 5 TMG
|
69
|
+
en:
|
70
|
+
addressCity: 34117 Kassel
|
71
|
+
addressName: Jonas Thelemann
|
72
|
+
addressStreet: Fünffensterstraße 18
|
73
|
+
contact: Contact
|
74
|
+
copyrightDescription1: The content and works created by the site operators on these pages are subject to German copyright law. The reproduction, editing, distribution and any kind of exploitation outside the limits of copyright require the written consent of the respective author or creator. Downloads and copies of this site are only permitted for private, non-commercial use.
|
75
|
+
copyrightDescription2: Insofar as the content on this page was not created by the operator, the copyrights of third parties are respected. In particular, third-party content is identified as such. Should you nevertheless become aware of a copyright infringement, we request that you notify us accordingly. If we become aware of any infringements, we will remove such content immediately.
|
76
|
+
copyrightTitle: Copyright
|
77
|
+
email: "Email: server+legal-notice{'@'}jonas-thelemann.de"
|
78
|
+
liabilityContentDescription1: As a service provider, we are responsible for our own content on these pages in accordance with general legislation pursuant to Section 7 (1) of the German Telemedia Act (TMG). According to §§ 8 to 10 TMG, however, we are not obligated as a service provider to monitor transmitted or stored third-party information or to investigate circumstances that indicate illegal activity.
|
79
|
+
liabilityContentDescription2: Obligations to remove or block the use of information according to general laws remain unaffected. However, liability in this regard is only possible from the time of knowledge of a concrete infringement. If we become aware of such infringements, we will remove this content immediately.
|
80
|
+
liabilityContentTitle: Liability for content
|
81
|
+
liabilityLinksDescription1: Our offer contains links to external websites of third parties, on whose contents we have no influence. Therefore, we cannot assume any liability for these external contents. The respective provider or operator of the pages is always responsible for the content of the linked pages. The linked pages were checked for possible legal violations at the time of linking. Illegal contents were not recognizable at the time of linking.
|
82
|
+
liabilityLinksDescription2: However, a permanent control of the contents of the linked pages is not reasonable without concrete evidence of a violation of the law. If we become aware of any infringements, we will remove such links immediately.
|
83
|
+
liabilityLinksTitle: Liability for links
|
84
|
+
responsibility: Responsible for the content according to § 55 para. 2 RStV
|
85
|
+
source: Source
|
86
|
+
title: Legal notice
|
87
|
+
tmg: Information according to § 5 TMG
|
88
|
+
</i18n>
|
@@ -0,0 +1,589 @@
|
|
1
|
+
<template>
|
2
|
+
<div class="vio-prose-scheme">
|
3
|
+
<h1>{{ title }}</h1>
|
4
|
+
<div>
|
5
|
+
<h2>{{ t('summary') }}</h2>
|
6
|
+
<h3>{{ t('generalNotesTitle') }}</h3>
|
7
|
+
<p>{{ t('generalNotesDescription') }}</p>
|
8
|
+
|
9
|
+
<h3>{{ t('dataCollection') }}</h3>
|
10
|
+
<h4>{{ t('dataCollectionLiabilityTitle') }}</h4>
|
11
|
+
<p>{{ t('dataCollectionLiabilityDescription') }}</p>
|
12
|
+
|
13
|
+
<h4>{{ t('dataCollectionMethodTitle') }}</h4>
|
14
|
+
<p>{{ t('dataCollectionMethodDescription1') }}</p>
|
15
|
+
<p>{{ t('dataCollectionMethodDescription2') }}</p>
|
16
|
+
|
17
|
+
<h4>{{ t('dataCollectionUseTitle') }}</h4>
|
18
|
+
<p>{{ t('dataCollectionUseDescription') }}</p>
|
19
|
+
|
20
|
+
<h4>{{ t('dataCollectionRightsTitle') }}</h4>
|
21
|
+
<p>{{ t('dataCollectionRightsDescription1') }}</p>
|
22
|
+
<p>{{ t('dataCollectionRightsDescription2') }}</p>
|
23
|
+
|
24
|
+
<h3>{{ t('dataCollectionToolsTitle') }}</h3>
|
25
|
+
<p>{{ t('dataCollectionToolsDescription1') }}</p>
|
26
|
+
<p>{{ t('dataCollectionToolsDescription2') }}</p>
|
27
|
+
|
28
|
+
<h2>{{ t('hostingCdn') }}</h2>
|
29
|
+
<h3>{{ t('hostingCdnExternalTitle') }}</h3>
|
30
|
+
<p>{{ t('hostingCdnExternalDescription1') }}</p>
|
31
|
+
<p>{{ t('hostingCdnExternalDescription2') }}</p>
|
32
|
+
<p>{{ t('hostingCdnExternalDescription3') }}</p>
|
33
|
+
<p>{{ t('hostingCdnExternalDescription4') }}</p>
|
34
|
+
<address>
|
35
|
+
{{ t('hostingCdnExternalAddressName') }}<br />
|
36
|
+
{{ t('hostingCdnExternalAddressStreet') }}<br />
|
37
|
+
{{ t('hostingCdnExternalAddressCity') }}
|
38
|
+
</address>
|
39
|
+
|
40
|
+
<h4>{{ t('hostingCdnExternalProcessingContractTitle') }}</h4>
|
41
|
+
<p>{{ t('hostingCdnExternalProcessingContractDescription') }}</p>
|
42
|
+
|
43
|
+
<h2>{{ t('mandatoryInfo') }}</h2>
|
44
|
+
<h3>{{ t('mandatoryInfoPrivacyTitle') }}</h3>
|
45
|
+
<p>{{ t('mandatoryInfoPrivacyDescription1') }}</p>
|
46
|
+
<p>{{ t('mandatoryInfoPrivacyDescription2') }}</p>
|
47
|
+
<p>{{ t('mandatoryInfoPrivacyDescription3') }}</p>
|
48
|
+
|
49
|
+
<h3>{{ t('mandatoryInfoResponsibleTitle') }}</h3>
|
50
|
+
<p>{{ t('mandatoryInfoResponsibleDescription1') }}</p>
|
51
|
+
<address>
|
52
|
+
{{ t('mandatoryInfoResponsibleAddressName') }}<br />
|
53
|
+
{{ t('mandatoryInfoResponsibleAddressStreet') }}<br />
|
54
|
+
{{ t('mandatoryInfoResponsibleAddressCity') }}<br />
|
55
|
+
<br />
|
56
|
+
{{ t('mandatoryInfoResponsibleAddressEmail') }}
|
57
|
+
</address>
|
58
|
+
<p>{{ t('mandatoryInfoResponsibleDescription2') }}</p>
|
59
|
+
|
60
|
+
<h3>{{ t('mandatoryInfoStorageDurationTitle') }}</h3>
|
61
|
+
<p>{{ t('mandatoryInfoStorageDurationDescription') }}</p>
|
62
|
+
|
63
|
+
<h3>{{ t('mandatoryInfoDataSharingUsaTitle') }}</h3>
|
64
|
+
<p>{{ t('mandatoryInfoDataSharingUsaDescription') }}</p>
|
65
|
+
|
66
|
+
<h3>{{ t('mandatoryInfoConsentRevocationTitle') }}</h3>
|
67
|
+
<p>{{ t('mandatoryInfoConsentRevocationDescription') }}</p>
|
68
|
+
|
69
|
+
<h3>{{ t('mandatoryInfoConsentRevocationSpecialTitle') }}</h3>
|
70
|
+
<p class="font-bold">
|
71
|
+
{{ t('mandatoryInfoConsentRevocationSpecialDescription1') }}
|
72
|
+
</p>
|
73
|
+
<p class="font-bold">
|
74
|
+
{{ t('mandatoryInfoConsentRevocationSpecialDescription2') }}
|
75
|
+
</p>
|
76
|
+
|
77
|
+
<h3>{{ t('mandatoryInfoComplaintTitle') }}</h3>
|
78
|
+
<p>{{ t('mandatoryInfoComplaintDescription') }}</p>
|
79
|
+
|
80
|
+
<h3>{{ t('mandatoryInfoPortabilityTitle') }}</h3>
|
81
|
+
<p>{{ t('mandatoryInfoPortabilityDescription') }}</p>
|
82
|
+
|
83
|
+
<h3>{{ t('mandatoryInfoSslTlsTitle') }}</h3>
|
84
|
+
<p>{{ t('mandatoryInfoSslTlsDescription1') }}</p>
|
85
|
+
<p>{{ t('mandatoryInfoSslTlsDescription2') }}</p>
|
86
|
+
|
87
|
+
<h3>{{ t('mandatoryInfoDataChangeTitle') }}</h3>
|
88
|
+
<p>{{ t('mandatoryInfoDataChangeDescription') }}</p>
|
89
|
+
|
90
|
+
<h3>{{ t('mandatoryInfoProcessingRestrictionTitle') }}</h3>
|
91
|
+
<p>{{ t('mandatoryInfoProcessingRestrictionDescription1') }}</p>
|
92
|
+
<ul>
|
93
|
+
<li>{{ t('mandatoryInfoProcessingRestrictionList1') }}</li>
|
94
|
+
<li>{{ t('mandatoryInfoProcessingRestrictionList2') }}</li>
|
95
|
+
<li>{{ t('mandatoryInfoProcessingRestrictionList3') }}</li>
|
96
|
+
<li>{{ t('mandatoryInfoProcessingRestrictionList4') }}</li>
|
97
|
+
</ul>
|
98
|
+
<p>{{ t('mandatoryInfoProcessingRestrictionDescription2') }}</p>
|
99
|
+
|
100
|
+
<h3>{{ t('mandatoryInfoOppositionTitle') }}</h3>
|
101
|
+
<p>{{ t('mandatoryInfoOppositionDescription') }}</p>
|
102
|
+
|
103
|
+
<h2>{{ t('dataAcquisition') }}</h2>
|
104
|
+
<h3>{{ t('dataAcquisitionCookiesTitle') }}</h3>
|
105
|
+
<p>{{ t('dataAcquisitionCookiesDescription1') }}</p>
|
106
|
+
<p>{{ t('dataAcquisitionCookiesDescription2') }}</p>
|
107
|
+
<p>{{ t('dataAcquisitionCookiesDescription3') }}</p>
|
108
|
+
<p>{{ t('dataAcquisitionCookiesDescription4') }}</p>
|
109
|
+
<p>{{ t('dataAcquisitionCookiesDescription5') }}</p>
|
110
|
+
<p>{{ t('dataAcquisitionCookiesDescription6') }}</p>
|
111
|
+
|
112
|
+
<h3>{{ t('dataAcquisitionLogTitle') }}</h3>
|
113
|
+
<p>{{ t('dataAcquisitionLogDescription1') }}</p>
|
114
|
+
<ul>
|
115
|
+
<li>{{ t('dataAcquisitionLogItem1') }}</li>
|
116
|
+
<li>{{ t('dataAcquisitionLogItem2') }}</li>
|
117
|
+
<li>{{ t('dataAcquisitionLogItem3') }}</li>
|
118
|
+
<li>{{ t('dataAcquisitionLogItem4') }}</li>
|
119
|
+
<li>{{ t('dataAcquisitionLogItem5') }}</li>
|
120
|
+
<li>{{ t('dataAcquisitionLogItem6') }}</li>
|
121
|
+
</ul>
|
122
|
+
<p>{{ t('dataAcquisitionLogDescription2') }}</p>
|
123
|
+
<p>{{ t('dataAcquisitionLogDescription3') }}</p>
|
124
|
+
|
125
|
+
<!-- <h3>{{ t('dataAcquisitionContactFormTitle') }}</h3>
|
126
|
+
<p>{{ t('dataAcquisitionContactFormDescription1') }}</p>
|
127
|
+
<p>{{ t('dataAcquisitionContactFormDescription2') }}</p>
|
128
|
+
<p>{{ t('dataAcquisitionContactFormDescription3') }}</p> -->
|
129
|
+
|
130
|
+
<h3>{{ t('dataAcquisitionContactExternalTitle') }}</h3>
|
131
|
+
<p>{{ t('dataAcquisitionContactExternalDescription1') }}</p>
|
132
|
+
<p>{{ t('dataAcquisitionContactExternalDescription2') }}</p>
|
133
|
+
<p>{{ t('dataAcquisitionContactExternalDescription3') }}</p>
|
134
|
+
|
135
|
+
<!-- <h3>{{ t('dataAcquisitionCommentsTitle') }}</h3>
|
136
|
+
<p>{{ t('dataAcquisitionCommentsDescription') }}</p>
|
137
|
+
|
138
|
+
<h4>{{ t('dataAcquisitionCommentsIpTitle') }}</h4>
|
139
|
+
<p>{{ t('dataAcquisitionCommentsIpDescription') }}</p>
|
140
|
+
|
141
|
+
<h4>{{ t('dataAcquisitionCommentsSubscribeTitle') }}</h4>
|
142
|
+
<p>{{ t('dataAcquisitionCommentsSubscribeDescription') }}</p>
|
143
|
+
|
144
|
+
<h4>{{ t('dataAcquisitionCommentsStorageDurationTitle') }}</h4>
|
145
|
+
<p>{{ t('dataAcquisitionCommentsStorageDurationDescription') }}</p>
|
146
|
+
|
147
|
+
<h4>{{ t('dataAcquisitionCommentsLegalBasisTitle') }}</h4>
|
148
|
+
<p>{{ t('dataAcquisitionCommentsLegalBasisDescription') }}</p> -->
|
149
|
+
|
150
|
+
<!-- <h2>{{ t('newsletter') }}</h2>
|
151
|
+
<h3>{{ t('newsletterDataTitle') }}</h3>
|
152
|
+
<p>{{ t('newsletterDataDescription1') }}</p>
|
153
|
+
<p>{{ t('newsletterDataDescription2') }}</p>
|
154
|
+
<p>{{ t('newsletterDataDescription3') }}</p>
|
155
|
+
<i18n-t keypath="newsletterDataDescription4" tag="p">
|
156
|
+
<template #strong>
|
157
|
+
<strong>{{ t('newsletterDataDescription4s') }}</strong>
|
158
|
+
</template>
|
159
|
+
</i18n-t> -->
|
160
|
+
|
161
|
+
<!-- <h2>{{ t('pluginsTools') }}</h2>
|
162
|
+
<h3>{{ t('pluginsToolsYouTubeTitle') }}</h3>
|
163
|
+
<p>{{ t('pluginsToolsYouTubeDescription1') }}</p>
|
164
|
+
<p>{{ t('pluginsToolsYouTubeDescription2') }}</p>
|
165
|
+
<p>{{ t('pluginsToolsYouTubeDescription3') }}</p>
|
166
|
+
<p>{{ t('pluginsToolsYouTubeDescription4') }}</p>
|
167
|
+
<p>{{ t('pluginsToolsYouTubeDescription5') }}</p>
|
168
|
+
<p>{{ t('pluginsToolsYouTubeDescription6') }}</p>
|
169
|
+
<i18n-t keypath="pluginsToolsYouTubeDescription7" tag="p">
|
170
|
+
<template #linkPrivacy>
|
171
|
+
<VioLink
|
172
|
+
:aria-label="t('pluginsToolsYouTubeDescription7s')"
|
173
|
+
:to="t('pluginsToolsYouTubeDescription7s')"
|
174
|
+
>
|
175
|
+
{{ t('pluginsToolsYouTubeDescription7s') }}
|
176
|
+
</VioLink>
|
177
|
+
</template>
|
178
|
+
</i18n-t> -->
|
179
|
+
|
180
|
+
<!-- <h3>{{ t('pluginsToolsGoogleWebFontsTitle') }}</h3>
|
181
|
+
<p>{{ t('pluginsToolsGoogleWebFontsDescription1') }}</p>
|
182
|
+
<i18n-t keypath="pluginsToolsGoogleWebFontsDescription2" tag="p">
|
183
|
+
<template #linkFaq>
|
184
|
+
<VioLink
|
185
|
+
:aria-label="t('pluginsToolsGoogleWebFontsDescription2s1')"
|
186
|
+
:to="t('pluginsToolsGoogleWebFontsDescription2s1')"
|
187
|
+
>
|
188
|
+
{{ t('pluginsToolsGoogleWebFontsDescription2s1') }}
|
189
|
+
</VioLink>
|
190
|
+
</template>
|
191
|
+
<template #linkPrivacy>
|
192
|
+
<VioLink
|
193
|
+
:aria-label="t('pluginsToolsGoogleWebFontsDescription2s2')"
|
194
|
+
:to="t('pluginsToolsGoogleWebFontsDescription2s2')"
|
195
|
+
>
|
196
|
+
{{ t('pluginsToolsGoogleWebFontsDescription2s2') }}
|
197
|
+
</VioLink>
|
198
|
+
</template>
|
199
|
+
</i18n-t>
|
200
|
+
|
201
|
+
<h3>{{ t('pluginsToolsFontAwesomeTitle') }}</h3>
|
202
|
+
<p>{{ t('pluginsToolsFontAwesomeDescription1') }}</p>
|
203
|
+
<i18n-t keypath="pluginsToolsFontAwesomeDescription2" tag="p">
|
204
|
+
<template #linkPrivacy>
|
205
|
+
<VioLink
|
206
|
+
:aria-label="t('pluginsToolsFontAwesomeDescription2s')"
|
207
|
+
:to="t('pluginsToolsFontAwesomeDescription2s')"
|
208
|
+
>
|
209
|
+
{{ t('pluginsToolsFontAwesomeDescription2s') }}
|
210
|
+
</VioLink>
|
211
|
+
</template>
|
212
|
+
</i18n-t> -->
|
213
|
+
|
214
|
+
<!-- <h3>{{ t('pluginsToolsGoogleMapsTitle') }}</h3>
|
215
|
+
<p>{{ t('pluginsToolsGoogleMapsDescription1') }}</p>
|
216
|
+
<p>{{ t('pluginsToolsGoogleMapsDescription2') }}</p>
|
217
|
+
<p>{{ t('pluginsToolsGoogleMapsDescription3') }}</p>
|
218
|
+
<i18n-t keypath="pluginsToolsGoogleMapsDescription4" tag="p">
|
219
|
+
<template #linkGdpr>
|
220
|
+
<VioLink
|
221
|
+
:aria-label="t('pluginsToolsGoogleMapsDescription4s1')"
|
222
|
+
to="https://privacy.google.com/businesses/gdprcontrollerterms/"
|
223
|
+
>
|
224
|
+
{{ t('pluginsToolsGoogleMapsDescription4s1') }}
|
225
|
+
</VioLink>
|
226
|
+
</template>
|
227
|
+
<template #linkGdprScss>
|
228
|
+
<VioLink
|
229
|
+
:aria-label="t('pluginsToolsGoogleMapsDescription4s1')"
|
230
|
+
to="https://privacy.google.com/businesses/gdprcontrollerterms/sccs/"
|
231
|
+
>
|
232
|
+
{{ t('pluginsToolsGoogleMapsDescription4s2') }}
|
233
|
+
</VioLink>
|
234
|
+
</template>
|
235
|
+
</i18n-t>
|
236
|
+
<i18n-t keypath="pluginsToolsGoogleMapsDescription5" tag="p">
|
237
|
+
<template #linkPrivacy>
|
238
|
+
<VioLink
|
239
|
+
:aria-label="t('pluginsToolsGoogleMapsDescription5s')"
|
240
|
+
:to="t('pluginsToolsGoogleMapsDescription5s')"
|
241
|
+
>
|
242
|
+
{{ t('pluginsToolsGoogleMapsDescription5s') }}
|
243
|
+
</VioLink>
|
244
|
+
</template>
|
245
|
+
</i18n-t> -->
|
246
|
+
|
247
|
+
<!-- <h3>{{ t('pluginsToolsGoogleReCaptchaTitle') }}</h3>
|
248
|
+
<p>{{ t('pluginsToolsGoogleReCaptchaDescription1') }}</p>
|
249
|
+
<p>{{ t('pluginsToolsGoogleReCaptchaDescription2') }}</p>
|
250
|
+
<p>{{ t('pluginsToolsGoogleReCaptchaDescription3') }}</p>
|
251
|
+
<p>{{ t('pluginsToolsGoogleReCaptchaDescription4') }}</p>
|
252
|
+
<i18n-t keypath="pluginsToolsGoogleReCaptchaDescription5" tag="p">
|
253
|
+
<template #linkPrivacy>
|
254
|
+
<VioLink
|
255
|
+
:aria-label="t('pluginsToolsGoogleReCaptchaDescription5s1')"
|
256
|
+
:to="t('pluginsToolsGoogleReCaptchaDescription5s1')"
|
257
|
+
>
|
258
|
+
{{ t('pluginsToolsGoogleReCaptchaDescription5s1') }}
|
259
|
+
</VioLink>
|
260
|
+
</template>
|
261
|
+
<template #linkTerms>
|
262
|
+
<VioLink
|
263
|
+
:aria-label="t('pluginsToolsGoogleReCaptchaDescription5s2')"
|
264
|
+
:to="t('pluginsToolsGoogleReCaptchaDescription5s2')"
|
265
|
+
>
|
266
|
+
{{ t('pluginsToolsGoogleReCaptchaDescription5s2') }}
|
267
|
+
</VioLink>
|
268
|
+
</template>
|
269
|
+
</i18n-t> -->
|
270
|
+
|
271
|
+
<p>
|
272
|
+
<VioLink :aria-label="t('source')" to="https://www.e-recht24.de">
|
273
|
+
{{ t('source') }}
|
274
|
+
</VioLink>
|
275
|
+
</p>
|
276
|
+
</div>
|
277
|
+
</div>
|
278
|
+
</template>
|
279
|
+
|
280
|
+
<script setup lang="ts">
|
281
|
+
const { t } = useI18n()
|
282
|
+
|
283
|
+
// data
|
284
|
+
const title = t('title')
|
285
|
+
|
286
|
+
// initialization
|
287
|
+
useSeoMeta({ title })
|
288
|
+
</script>
|
289
|
+
|
290
|
+
<i18n lang="yaml">
|
291
|
+
de:
|
292
|
+
dataAcquisition: 4. Datenerfassung auf dieser Website
|
293
|
+
# dataAcquisitionCommentsDescription: Für die Kommentarfunktion auf dieser Seite werden neben Ihrem Kommentar auch Angaben zum Zeitpunkt der Erstellung des Kommentars, Ihre E-Mail-Adresse und, wenn Sie nicht anonym posten, der von Ihnen gewählte Nutzername gespeichert.
|
294
|
+
# dataAcquisitionCommentsIpDescription: Unsere Kommentarfunktion speichert die IP-Adressen der Nutzer, die Kommentare verfassen. Da wir Kommentare auf dieser Website nicht vor der Freischaltung prüfen, benötigen wir diese Daten, um im Falle von Rechtsverletzungen wie Beleidigungen oder Propaganda gegen den Verfasser vorgehen zu können.
|
295
|
+
# dataAcquisitionCommentsIpTitle: Speicherung der IP-Adresse
|
296
|
+
# dataAcquisitionCommentsLegalBasisDescription: Die Speicherung der Kommentare erfolgt auf Grundlage Ihrer Einwilligung (Art. 6 Abs. 1 lit. a DSGVO). Sie können eine von Ihnen erteilte Einwilligung jederzeit widerrufen. Dazu reicht eine formlose Mitteilung per E-Mail an uns. Die Rechtmäßigkeit der bereits erfolgten Datenverarbeitungsvorgänge bleibt vom Widerruf unberührt.
|
297
|
+
# dataAcquisitionCommentsLegalBasisTitle: Rechtsgrundlage
|
298
|
+
# dataAcquisitionCommentsStorageDurationDescription: Die Kommentare und die damit verbundenen Daten werden gespeichert und verbleiben auf dieser Website, bis der kommentierte Inhalt vollständig gelöscht wurde oder die Kommentare aus rechtlichen Gründen gelöscht werden müssen (z. B. beleidigende Kommentare).
|
299
|
+
# dataAcquisitionCommentsStorageDurationTitle: Speicherdauer der Kommentare
|
300
|
+
# dataAcquisitionCommentsSubscribeDescription: Als Nutzer der Seite können Sie nach einer Anmeldung Kommentare abonnieren. Sie erhalten eine Bestätigungs-E-Mail, um zu prüfen, ob Sie der Inhaber der angegebenen E-Mail-Adresse sind. Sie können diese Funktion jederzeit über einen Link in den Info-Mails abbestellen. Die im Rahmen des Abonnierens von Kommentaren eingegebenen Daten werden in diesem Fall gelöscht; wenn Sie diese Daten für andere Zwecke und an anderer Stelle (z. B. Newsletterbestellung) an uns übermittelt haben, verbleiben diese Daten jedoch bei uns.
|
301
|
+
# dataAcquisitionCommentsSubscribeTitle: Abonnieren von Kommentaren
|
302
|
+
# dataAcquisitionCommentsTitle: Kommentarfunktion auf dieser Website
|
303
|
+
dataAcquisitionContactExternalDescription1: Wenn Sie uns per E-Mail, Telefon oder Telefax kontaktieren, wird Ihre Anfrage inklusive aller daraus hervorgehenden personenbezogenen Daten (Name, Anfrage) zum Zwecke der Bearbeitung Ihres Anliegens bei uns gespeichert und verarbeitet. Diese Daten geben wir nicht ohne Ihre Einwilligung weiter.
|
304
|
+
dataAcquisitionContactExternalDescription2: Die Verarbeitung dieser Daten erfolgt auf Grundlage von Art. 6 Abs. 1 lit. b DSGVO, sofern Ihre Anfrage mit der Erfüllung eines Vertrags zusammenhängt oder zur Durchführung vorvertraglicher Maßnahmen erforderlich ist. In allen übrigen Fällen beruht die Verarbeitung auf unserem berechtigten Interesse an der effektiven Bearbeitung der an uns gerichteten Anfragen (Art. 6 Abs. 1 lit. f DSGVO) oder auf Ihrer Einwilligung (Art. 6 Abs. 1 lit. a DSGVO) sofern diese abgefragt wurde.
|
305
|
+
dataAcquisitionContactExternalDescription3: Die von Ihnen an uns per Kontaktanfragen übersandten Daten verbleiben bei uns, bis Sie uns zur Löschung auffordern, Ihre Einwilligung zur Speicherung widerrufen oder der Zweck für die Datenspeicherung entfällt (z. B. nach abgeschlossener Bearbeitung Ihres Anliegens). Zwingende gesetzliche Bestimmungen – insbesondere gesetzliche Aufbewahrungsfristen – bleiben unberührt.
|
306
|
+
dataAcquisitionContactExternalTitle: Anfrage per E-Mail, Telefon oder Telefax
|
307
|
+
# dataAcquisitionContactFormDescription1: Wenn Sie uns per Kontaktformular Anfragen zukommen lassen, werden Ihre Angaben aus dem Anfrageformular inklusive der von Ihnen dort angegebenen Kontaktdaten zwecks Bearbeitung der Anfrage und für den Fall von Anschlussfragen bei uns gespeichert. Diese Daten geben wir nicht ohne Ihre Einwilligung weiter.
|
308
|
+
# dataAcquisitionContactFormDescription2: Die Verarbeitung dieser Daten erfolgt auf Grundlage von Art. 6 Abs. 1 lit. b DSGVO, sofern Ihre Anfrage mit der Erfüllung eines Vertrags zusammenhängt oder zur Durchführung vorvertraglicher Maßnahmen erforderlich ist. In allen übrigen Fällen beruht die Verarbeitung auf unserem berechtigten Interesse an der effektiven Bearbeitung der an uns gerichteten Anfragen (Art. 6 Abs. 1 lit. f DSGVO) oder auf Ihrer Einwilligung (Art. 6 Abs. 1 lit. a DSGVO) sofern diese abgefragt wurde.
|
309
|
+
# dataAcquisitionContactFormDescription3: Die von Ihnen im Kontaktformular eingegebenen Daten verbleiben bei uns, bis Sie uns zur Löschung auffordern, Ihre Einwilligung zur Speicherung widerrufen oder der Zweck für die Datenspeicherung entfällt (z. B. nach abgeschlossener Bearbeitung Ihrer Anfrage). Zwingende gesetzliche Bestimmungen – insbesondere Aufbewahrungsfristen – bleiben unberührt.
|
310
|
+
# dataAcquisitionContactFormTitle: Kontaktformular
|
311
|
+
dataAcquisitionCookiesDescription1: Unsere Internetseiten verwenden so genannte „Cookies“. Cookies sind kleine Textdateien und richten auf Ihrem Endgerät keinen Schaden an. Sie werden entweder vorübergehend für die Dauer einer Sitzung (Session-Cookies) oder dauerhaft (permanente Cookies) auf Ihrem Endgerät gespeichert. Session-Cookies werden nach Ende Ihres Besuchs automatisch gelöscht. Permanente Cookies bleiben auf Ihrem Endgerät gespeichert, bis Sie diese selbst löschen oder eine automatische Löschung durch Ihren Webbrowser erfolgt.
|
312
|
+
dataAcquisitionCookiesDescription2: Teilweise können auch Cookies von Drittunternehmen auf Ihrem Endgerät gespeichert werden, wenn Sie unsere Seite betreten (Third-Party-Cookies). Diese ermöglichen uns oder Ihnen die Nutzung bestimmter Dienstleistungen des Drittunternehmens (z.B. Cookies zur Abwicklung von Zahlungsdienstleistungen).
|
313
|
+
dataAcquisitionCookiesDescription3: Cookies haben verschiedene Funktionen. Zahlreiche Cookies sind technisch notwendig, da bestimmte Websitefunktionen ohne diese nicht funktionieren würden (z.B. die Login-Funktion). Andere Cookies dienen dazu, das Nutzerverhalten auszuwerten oder Werbung anzuzeigen.
|
314
|
+
dataAcquisitionCookiesDescription4: Cookies, die zur Durchführung des elektronischen Kommunikationsvorgangs (notwendige Cookies) oder zur Bereitstellung bestimmter, von Ihnen erwünschter Funktionen (funktionale Cookies, z. B. für die Login-Funktion) oder zur Optimierung der Website (z.B. Cookies zur Messung des Webpublikums) erforderlich sind, werden auf Grundlage von Art. 6 Abs. 1 lit. f DSGVO gespeichert, sofern keine andere Rechtsgrundlage angegeben wird. Der Websitebetreiber hat ein berechtigtes Interesse an der Speicherung von Cookies zur technisch fehlerfreien und optimierten Bereitstellung seiner Dienste. Sofern eine Einwilligung zur Speicherung von Cookies abgefragt wurde, erfolgt die Speicherung der betreffenden Cookies ausschließlich auf Grundlage dieser Einwilligung (Art. 6 Abs. 1 lit. a DSGVO); die Einwilligung ist jederzeit widerrufbar.
|
315
|
+
dataAcquisitionCookiesDescription5: Sie können Ihren Browser so einstellen, dass Sie über das Setzen von Cookies informiert werden und Cookies nur im Einzelfall erlauben, die Annahme von Cookies für bestimmte Fälle oder generell ausschließen sowie das automatische Löschen der Cookies beim Schließen des Browsers aktivieren. Bei der Deaktivierung von Cookies kann die Funktionalität dieser Website eingeschränkt sein.
|
316
|
+
dataAcquisitionCookiesDescription6: Soweit Cookies von Drittunternehmen oder zu Analysezwecken eingesetzt werden, werden wir Sie hierüber im Rahmen dieser Datenschutzerklärung gesondert informieren und ggf. eine Einwilligung abfragen.
|
317
|
+
dataAcquisitionCookiesTitle: Cookies
|
318
|
+
dataAcquisitionLogDescription1: 'Der Provider der Seiten erhebt und speichert automatisch Informationen in so genannten Server-Log-Dateien, die Ihr Browser automatisch an uns übermittelt. Dies sind:'
|
319
|
+
dataAcquisitionLogDescription2: Eine Zusammenführung dieser Daten mit anderen Datenquellen wird nicht vorgenommen.
|
320
|
+
dataAcquisitionLogDescription3: Die Erfassung dieser Daten erfolgt auf Grundlage von Art. 6 Abs. 1 lit. f DSGVO. Der Websitebetreiber hat ein berechtigtes Interesse an der technisch fehlerfreien Darstellung und der Optimierung seiner Website – hierzu müssen die Server-Log-Files erfasst werden.
|
321
|
+
dataAcquisitionLogItem1: Browsertyp und Browserversion
|
322
|
+
dataAcquisitionLogItem2: verwendetes Betriebssystem
|
323
|
+
dataAcquisitionLogItem3: Referrer URL
|
324
|
+
dataAcquisitionLogItem4: Hostname des zugreifenden Rechners
|
325
|
+
dataAcquisitionLogItem5: Uhrzeit der Serveranfrage
|
326
|
+
dataAcquisitionLogItem6: IP-Adresse
|
327
|
+
dataAcquisitionLogTitle: Server-Log-Dateien
|
328
|
+
dataCollection: Datenerfassung auf dieser Website
|
329
|
+
dataCollectionLiabilityDescription: Die Datenverarbeitung auf dieser Website erfolgt durch den Websitebetreiber. Dessen Kontaktdaten können Sie dem Impressum dieser Website entnehmen.
|
330
|
+
dataCollectionLiabilityTitle: Wer ist verantwortlich für die Datenerfassung auf dieser Website?
|
331
|
+
dataCollectionMethodDescription1: Ihre Daten werden zum einen dadurch erhoben, dass Sie uns diese mitteilen. Hierbei kann es sich z. B. um Daten handeln, die Sie in ein Kontaktformular eingeben.
|
332
|
+
dataCollectionMethodDescription2: Andere Daten werden automatisch oder nach Ihrer Einwilligung beim Besuch der Website durch unsere IT-Systeme erfasst. Das sind vor allem technische Daten (z. B. Internetbrowser, Betriebssystem oder Uhrzeit des Seitenaufrufs). Die Erfassung dieser Daten erfolgt automatisch, sobald Sie diese Website betreten.
|
333
|
+
dataCollectionMethodTitle: Wie erfassen wir Ihre Daten?
|
334
|
+
dataCollectionRightsDescription1: Sie haben jederzeit das Recht, unentgeltlich Auskunft über Herkunft, Empfänger und Zweck Ihrer gespeicherten personenbezogenen Daten zu erhalten. Sie haben außerdem ein Recht, die Berichtigung oder Löschung dieser Daten zu verlangen. Wenn Sie eine Einwilligung zur Datenverarbeitung erteilt haben, können Sie diese Einwilligung jederzeit für die Zukunft widerrufen. Außerdem haben Sie das Recht, unter bestimmten Umständen die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen. Des Weiteren steht Ihnen ein Beschwerderecht bei der zuständigen Aufsichtsbehörde zu.
|
335
|
+
dataCollectionRightsDescription2: Hierzu sowie zu weiteren Fragen zum Thema Datenschutz können Sie sich jederzeit unter der im Impressum angegebenen Adresse an uns wenden.
|
336
|
+
dataCollectionRightsTitle: Welche Rechte haben Sie bezüglich Ihrer Daten?
|
337
|
+
dataCollectionToolsDescription1: Beim Besuch dieser Website kann Ihr Surf-Verhalten statistisch ausgewertet werden. Das geschieht vor allem mit sogenannten Analyseprogrammen.
|
338
|
+
dataCollectionToolsDescription2: Detaillierte Informationen zu diesen Analyseprogrammen finden Sie in der folgenden Datenschutzerklärung.
|
339
|
+
dataCollectionToolsTitle: Analyse-Tools und Tools von Drittanbietern
|
340
|
+
dataCollectionUseDescription: Ein Teil der Daten wird erhoben, um eine fehlerfreie Bereitstellung der Website zu gewährleisten. Andere Daten können zur Analyse Ihres Nutzerverhaltens verwendet werden.
|
341
|
+
dataCollectionUseTitle: Wofür nutzen wir Ihre Daten?
|
342
|
+
generalNotesDescription: Die folgenden Hinweise geben einen einfachen Überblick darüber, was mit Ihren personenbezogenen Daten passiert, wenn Sie diese Website besuchen. Personenbezogene Daten sind alle Daten, mit denen Sie persönlich identifiziert werden können. Ausführliche Informationen zum Thema Datenschutz entnehmen Sie unserer unter diesem Text aufgeführten Datenschutzerklärung.
|
343
|
+
generalNotesTitle: Allgemeine Hinweise
|
344
|
+
hostingCdn: 2. Hosting und Content Delivery Networks (CDN)
|
345
|
+
hostingCdnExternalAddressCity: 91710 Gunzenhausen, Deutschland
|
346
|
+
hostingCdnExternalAddressName: Hetzner Online GmbH
|
347
|
+
hostingCdnExternalAddressStreet: Industriestr. 25
|
348
|
+
hostingCdnExternalDescription1: Diese Website wird bei einem externen Dienstleister gehostet (Hoster). Die personenbezogenen Daten, die auf dieser Website erfasst werden, werden auf den Servern des Hosters gespeichert. Hierbei kann es sich v. a. um IP-Adressen, Kontaktanfragen, Meta- und Kommunikationsdaten, Vertragsdaten, Kontaktdaten, Namen, Websitezugriffe und sonstige Daten, die über eine Website generiert werden, handeln.
|
349
|
+
hostingCdnExternalDescription2: Der Einsatz des Hosters erfolgt zum Zwecke der Vertragserfüllung gegenüber unseren potenziellen und bestehenden Kunden (Art. 6 Abs. 1 lit. b DSGVO) und im Interesse einer sicheren, schnellen und effizienten Bereitstellung unseres Online-Angebots durch einen professionellen Anbieter (Art. 6 Abs. 1 lit. f DSGVO).
|
350
|
+
hostingCdnExternalDescription3: Unser Hoster wird Ihre Daten nur insoweit verarbeiten, wie dies zur Erfüllung seiner Leistungspflichten erforderlich ist und unsere Weisungen in Bezug auf diese Daten befolgen.
|
351
|
+
hostingCdnExternalDescription4: 'Wir setzen folgenden Hoster ein:'
|
352
|
+
hostingCdnExternalProcessingContractDescription: Um die datenschutzkonforme Verarbeitung zu gewährleisten, haben wir einen Vertrag über Auftragsverarbeitung mit unserem Hoster geschlossen.
|
353
|
+
hostingCdnExternalProcessingContractTitle: Abschluss eines Vertrages über Auftragsverarbeitung
|
354
|
+
hostingCdnExternalTitle: Externes Hosting
|
355
|
+
mandatoryInfo: 3. Allgemeine Hinweise und Pflichtinformationen
|
356
|
+
mandatoryInfoComplaintDescription: Im Falle von Verstößen gegen die DSGVO steht den Betroffenen ein Beschwerderecht bei einer Aufsichtsbehörde, insbesondere in dem Mitgliedstaat ihres gewöhnlichen Aufenthalts, ihres Arbeitsplatzes oder des Orts des mutmaßlichen Verstoßes zu. Das Beschwerderecht besteht unbeschadet anderweitiger verwaltungsrechtlicher oder gerichtlicher Rechtsbehelfe.
|
357
|
+
mandatoryInfoComplaintTitle: Beschwerderecht bei der zuständigen Aufsichtsbehörde
|
358
|
+
mandatoryInfoConsentRevocationDescription: Viele Datenverarbeitungsvorgänge sind nur mit Ihrer ausdrücklichen Einwilligung möglich. Sie können eine bereits erteilte Einwilligung jederzeit widerrufen. Die Rechtmäßigkeit der bis zum Widerruf erfolgten Datenverarbeitung bleibt vom Widerruf unberührt.
|
359
|
+
mandatoryInfoConsentRevocationSpecialDescription1: WENN DIE DATENVERARBEITUNG AUF GRUNDLAGE VON ART. 6 ABS. 1 LIT. E ODER F DSGVO ERFOLGT, HABEN SIE JEDERZEIT DAS RECHT, AUS GRÜNDEN, DIE SICH AUS IHRER BESONDEREN SITUATION ERGEBEN, GEGEN DIE VERARBEITUNG IHRER PERSONENBEZOGENEN DATEN WIDERSPRUCH EINZULEGEN; DIES GILT AUCH FÜR EIN AUF DIESE BESTIMMUNGEN GESTÜTZTES PROFILING. DIE JEWEILIGE RECHTSGRUNDLAGE, AUF DENEN EINE VERARBEITUNG BERUHT, ENTNEHMEN SIE DIESER DATENSCHUTZERKLÄRUNG. WENN SIE WIDERSPRUCH EINLEGEN, WERDEN WIR IHRE BETROFFENEN PERSONENBEZOGENEN DATEN NICHT MEHR VERARBEITEN, ES SEI DENN, WIR KÖNNEN ZWINGENDE SCHUTZWÜRDIGE GRÜNDE FÜR DIE VERARBEITUNG NACHWEISEN, DIE IHRE INTERESSEN, RECHTE UND FREIHEITEN ÜBERWIEGEN ODER DIE VERARBEITUNG DIENT DER GELTENDMACHUNG, AUSÜBUNG ODER VERTEIDIGUNG VON RECHTSANSPRÜCHEN (WIDERSPRUCH NACH ART. 21 ABS. 1 DSGVO).
|
360
|
+
mandatoryInfoConsentRevocationSpecialDescription2: WERDEN IHRE PERSONENBEZOGENEN DATEN VERARBEITET, UM DIREKTWERBUNG ZU BETREIBEN, SO HABEN SIE DAS RECHT, JEDERZEIT WIDERSPRUCH GEGEN DIE VERARBEITUNG SIE BETREFFENDER PERSONENBEZOGENER DATEN ZUM ZWECKE DERARTIGER WERBUNG EINZULEGEN; DIES GILT AUCH FÜR DAS PROFILING, SOWEIT ES MIT SOLCHER DIREKTWERBUNG IN VERBINDUNG STEHT. WENN SIE WIDERSPRECHEN, WERDEN IHRE PERSONENBEZOGENEN DATEN ANSCHLIESSEND NICHT MEHR ZUM ZWECKE DER DIREKTWERBUNG VERWENDET (WIDERSPRUCH NACH ART. 21 ABS. 2 DSGVO).
|
361
|
+
mandatoryInfoConsentRevocationSpecialTitle: Widerspruchsrecht gegen die Datenerhebung in besonderen Fällen sowie gegen Direktwerbung (Art. 21 DSGVO)
|
362
|
+
mandatoryInfoConsentRevocationTitle: Widerruf Ihrer Einwilligung zur Datenverarbeitung
|
363
|
+
mandatoryInfoDataChangeDescription: Sie haben im Rahmen der geltenden gesetzlichen Bestimmungen jederzeit das Recht auf unentgeltliche Auskunft über Ihre gespeicherten personenbezogenen Daten, deren Herkunft und Empfänger und den Zweck der Datenverarbeitung und ggf. ein Recht auf Berichtigung oder Löschung dieser Daten. Hierzu sowie zu weiteren Fragen zum Thema personenbezogene Daten können Sie sich jederzeit unter der im Impressum angegebenen Adresse an uns wenden.
|
364
|
+
mandatoryInfoDataChangeTitle: Auskunft, Löschung und Berichtigung
|
365
|
+
mandatoryInfoDataSharingUsaDescription: Auf unserer Website sind unter anderem Tools von Unternehmen mit Sitz in den USA eingebunden. Wenn diese Tools aktiv sind, können Ihre personenbezogenen Daten an die US-Server der jeweiligen Unternehmen weitergegeben werden. Wir weisen darauf hin, dass die USA kein sicherer Drittstaat im Sinne des EU-Datenschutzrechts sind. US-Unternehmen sind dazu verpflichtet, personenbezogene Daten an Sicherheitsbehörden herauszugeben, ohne dass Sie als Betroffener hiergegen gerichtlich vorgehen könnten. Es kann daher nicht ausgeschlossen werden, dass US-Behörden (z.B. Geheimdienste) Ihre auf US-Servern befindlichen Daten zu Überwachungszwecken verarbeiten, auswerten und dauerhaft speichern. Wir haben auf diese Verarbeitungstätigkeiten keinen Einfluss.
|
366
|
+
mandatoryInfoDataSharingUsaTitle: Hinweis zur Datenweitergabe in die USA
|
367
|
+
mandatoryInfoOppositionDescription: Der Nutzung von im Rahmen der Impressumspflicht veröffentlichten Kontaktdaten zur Übersendung von nicht ausdrücklich angeforderter Werbung und Informationsmaterialien wird hiermit widersprochen. Die Betreiber der Seiten behalten sich ausdrücklich rechtliche Schritte im Falle der unverlangten Zusendung von Werbeinformationen, etwa durch Spam-E-Mails, vor.
|
368
|
+
mandatoryInfoOppositionTitle: Widerspruch gegen Werbe-E-Mails
|
369
|
+
mandatoryInfoPortabilityDescription: Sie haben das Recht, Daten, die wir auf Grundlage Ihrer Einwilligung oder in Erfüllung eines Vertrags automatisiert verarbeiten, an sich oder an einen Dritten in einem gängigen, maschinenlesbaren Format aushändigen zu lassen. Sofern Sie die direkte Übertragung der Daten an einen anderen Verantwortlichen verlangen, erfolgt dies nur, soweit es technisch machbar ist.
|
370
|
+
mandatoryInfoPortabilityTitle: Recht auf Datenübertragbarkeit
|
371
|
+
mandatoryInfoPrivacyDescription1: Die Betreiber dieser Seiten nehmen den Schutz Ihrer persönlichen Daten sehr ernst. Wir behandeln Ihre personenbezogenen Daten vertraulich und entsprechend der gesetzlichen Datenschutzvorschriften sowie dieser Datenschutzerklärung.
|
372
|
+
mandatoryInfoPrivacyDescription2: Wenn Sie diese Website benutzen, werden verschiedene personenbezogene Daten erhoben. Personenbezogene Daten sind Daten, mit denen Sie persönlich identifiziert werden können. Die vorliegende Datenschutzerklärung erläutert, welche Daten wir erheben und wofür wir sie nutzen. Sie erläutert auch, wie und zu welchem Zweck das geschieht.
|
373
|
+
mandatoryInfoPrivacyDescription3: Wir weisen darauf hin, dass die Datenübertragung im Internet (z. B. bei der Kommunikation per E-Mail) Sicherheitslücken aufweisen kann. Ein lückenloser Schutz der Daten vor dem Zugriff durch Dritte ist nicht möglich.
|
374
|
+
mandatoryInfoPrivacyTitle: Datenschutz
|
375
|
+
mandatoryInfoProcessingRestrictionDescription1: 'Sie haben das Recht, die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen. Hierzu können Sie sich jederzeit unter der im Impressum angegebenen Adresse an uns wenden. Das Recht auf Einschränkung der Verarbeitung besteht in folgenden Fällen:'
|
376
|
+
mandatoryInfoProcessingRestrictionDescription2: Wenn Sie die Verarbeitung Ihrer personenbezogenen Daten eingeschränkt haben, dürfen diese Daten – von ihrer Speicherung abgesehen – nur mit Ihrer Einwilligung oder zur Geltendmachung, Ausübung oder Verteidigung von Rechtsansprüchen oder zum Schutz der Rechte einer anderen natürlichen oder juristischen Person oder aus Gründen eines wichtigen öffentlichen Interesses der Europäischen Union oder eines Mitgliedstaats verarbeitet werden.
|
377
|
+
mandatoryInfoProcessingRestrictionList1: Wenn Sie die Richtigkeit Ihrer bei uns gespeicherten personenbezogenen Daten bestreiten, benötigen wir in der Regel Zeit, um dies zu überprüfen. Für die Dauer der Prüfung haben Sie das Recht, die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen.
|
378
|
+
mandatoryInfoProcessingRestrictionList2: Wenn die Verarbeitung Ihrer personenbezogenen Daten unrechtmäßig geschah/geschieht, können Sie statt der Löschung die Einschränkung der Datenverarbeitung verlangen.
|
379
|
+
mandatoryInfoProcessingRestrictionList3: Wenn wir Ihre personenbezogenen Daten nicht mehr benötigen, Sie sie jedoch zur Ausübung, Verteidigung oder Geltendmachung von Rechtsansprüchen benötigen, haben Sie das Recht, statt der Löschung die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen.
|
380
|
+
mandatoryInfoProcessingRestrictionList4: Wenn Sie einen Widerspruch nach Art. 21 Abs. 1 DSGVO eingelegt haben, muss eine Abwägung zwischen Ihren und unseren Interessen vorgenommen werden. Solange noch nicht feststeht, wessen Interessen überwiegen, haben Sie das Recht, die Einschränkung der Verarbeitung Ihrer personenbezogenen Daten zu verlangen.
|
381
|
+
mandatoryInfoProcessingRestrictionTitle: Recht auf Einschränkung der Verarbeitung
|
382
|
+
mandatoryInfoResponsibleAddressCity: 34117 Kassel
|
383
|
+
mandatoryInfoResponsibleAddressEmail: "E-Mail: server+privacy-policy{'@'}jonas-thelemann.de"
|
384
|
+
mandatoryInfoResponsibleAddressName: Jonas Thelemann
|
385
|
+
mandatoryInfoResponsibleAddressStreet: Fünffensterstraße 18
|
386
|
+
mandatoryInfoResponsibleDescription1: 'Die verantwortliche Stelle für die Datenverarbeitung auf dieser Website ist:'
|
387
|
+
mandatoryInfoResponsibleDescription2: Verantwortliche Stelle ist die natürliche oder juristische Person, die allein oder gemeinsam mit anderen über die Zwecke und Mittel der Verarbeitung von personenbezogenen Daten (z. B. Namen, E-Mail-Adressen o. Ä.) entscheidet.
|
388
|
+
mandatoryInfoResponsibleTitle: Hinweis zur verantwortlichen Stelle
|
389
|
+
mandatoryInfoSslTlsDescription1: Diese Seite nutzt aus Sicherheitsgründen und zum Schutz der Übertragung vertraulicher Inhalte, wie zum Beispiel Bestellungen oder Anfragen, die Sie an uns als Seitenbetreiber senden, eine SSL- bzw. TLS-Verschlüsselung. Eine verschlüsselte Verbindung erkennen Sie daran, dass die Adresszeile des Browsers von „http://“ auf „https://“ wechselt und an dem Schloss-Symbol in Ihrer Browserzeile.
|
390
|
+
mandatoryInfoSslTlsDescription2: Wenn die SSL- bzw. TLS-Verschlüsselung aktiviert ist, können die Daten, die Sie an uns übermitteln, nicht von Dritten mitgelesen werden.
|
391
|
+
mandatoryInfoSslTlsTitle: SSL- bzw. TLS-Verschlüsselung
|
392
|
+
mandatoryInfoStorageDurationDescription: Soweit innerhalb dieser Datenschutzerklärung keine speziellere Speicherdauer genannt wurde, verbleiben Ihre personenbezogenen Daten bei uns, bis der Zweck für die Datenverarbeitung entfällt. Wenn Sie ein berechtigtes Löschersuchen geltend machen oder eine Einwilligung zur Datenverarbeitung widerrufen, werden Ihre Daten gelöscht, sofern wir keinen anderen rechtlich zulässigen Gründe für die Speicherung Ihrer personenbezogenen Daten haben (z.B. steuer- oder handelsrechtliche Aufbewahrungsfristen); im letztgenannten Fall erfolgt die Löschung nach Fortfall dieser Gründe.
|
393
|
+
mandatoryInfoStorageDurationTitle: Speicherdauer
|
394
|
+
# newsletter: 5. Newsletter
|
395
|
+
# newsletterDataDescription1: Wenn Sie den auf der Website angebotenen Newsletter beziehen möchten, benötigen wir von Ihnen eine E-Mail-Adresse sowie Informationen, welche uns die Überprüfung gestatten, dass Sie der Inhaber der angegebenen E-Mail-Adresse sind und mit dem Empfang des Newsletters einverstanden sind. Weitere Daten werden nicht bzw. nur auf freiwilliger Basis erhoben. Diese Daten verwenden wir ausschließlich für den Versand der angeforderten Informationen und geben diese nicht an Dritte weiter.
|
396
|
+
# newsletterDataDescription2: Die Verarbeitung der in das Newsletteranmeldeformular eingegebenen Daten erfolgt ausschließlich auf Grundlage Ihrer Einwilligung (Art. 6 Abs. 1 lit. a DSGVO). Die erteilte Einwilligung zur Speicherung der Daten, der E-Mail-Adresse sowie deren Nutzung zum Versand des Newsletters können Sie jederzeit widerrufen, etwa über den „Austragen“-Link im Newsletter. Die Rechtmäßigkeit der bereits erfolgten Datenverarbeitungsvorgänge bleibt vom Widerruf unberührt.
|
397
|
+
# newsletterDataDescription3: Die von Ihnen zum Zwecke des Newsletter-Bezugs bei uns hinterlegten Daten werden von uns bis zu Ihrer Austragung aus dem Newsletter bei uns bzw. dem Newsletterdiensteanbieter gespeichert und nach der Abbestellung des Newsletters aus der Newsletterverteilerliste gelöscht. Daten, die zu anderen Zwecken bei uns gespeichert wurden bleiben hiervon unberührt.
|
398
|
+
# newsletterDataDescription4s: Sie können der Speicherung widersprechen, sofern Ihre Interessen unser berechtigtes Interesse überwiegen.
|
399
|
+
# newsletterDataDescription4: Nach Ihrer Austragung aus der Newsletterverteilerliste wird Ihre E-Mail-Adresse bei uns bzw. dem Newsletterdiensteanbieter ggf. in einer Blacklist gespeichert, um künftige Mailings zu verhindern. Die Daten aus der Blacklist werden nur für diesen Zweck verwendet und nicht mit anderen Daten zusammengeführt. Dies dient sowohl Ihrem Interesse als auch unserem Interesse an der Einhaltung der gesetzlichen Vorgaben beim Versand von Newslettern (berechtigtes Interesse im Sinne des Art. 6 Abs. 1 lit. f DSGVO). Die Speicherung in der Blacklist ist zeitlich nicht befristet. {strong}
|
400
|
+
# newsletterDataTitle: Newsletterdaten
|
401
|
+
# pluginsTools: 6. Plugins und Tools
|
402
|
+
# pluginsToolsFontAwesomeDescription1: Diese Seite nutzt zur einheitlichen Darstellung von Schriftarten Font Awesome. Font Awesome ist lokal installiert. Eine Verbindung zu Servern von Fonticons, Inc. findet dabei nicht statt.
|
403
|
+
# pluginsToolsFontAwesomeDescription2s: https://fontawesome.com/privacy
|
404
|
+
# pluginsToolsFontAwesomeDescription2: 'Weitere Informationen zu Font Awesome finden Sie und in der Datenschutzerklärung für Font Awesome unter: {linkPrivacy}.'
|
405
|
+
# pluginsToolsFontAwesomeTitle: Font Awesome (lokales Hosting)
|
406
|
+
# pluginsToolsGoogleMapsDescription1: Diese Seite nutzt den Kartendienst Google Maps. Anbieter ist die Google Ireland Limited („Google“), Gordon House, Barrow Street, Dublin 4, Irland.
|
407
|
+
# pluginsToolsGoogleMapsDescription2: Zur Nutzung der Funktionen von Google Maps ist es notwendig, Ihre IP-Adresse zu speichern. Diese Informationen werden in der Regel an einen Server von Google in den USA übertragen und dort gespeichert. Der Anbieter dieser Seite hat keinen Einfluss auf diese Datenübertragung.
|
408
|
+
# pluginsToolsGoogleMapsDescription3: Die Nutzung von Google Maps erfolgt im Interesse einer ansprechenden Darstellung unserer Online-Angebote und an einer leichten Auffindbarkeit der von uns auf der Website angegebenen Orte. Dies stellt ein berechtigtes Interesse im Sinne von Art. 6 Abs. 1 lit. f DSGVO dar. Sofern eine entsprechende Einwilligung abgefragt wurde, erfolgt die Verarbeitung ausschließlich auf Grundlage von Art. 6 Abs. 1 lit. a DSGVO; die Einwilligung ist jederzeit widerrufbar.
|
409
|
+
# pluginsToolsGoogleMapsDescription4s1: https://privacy.google.com/businesses/gdprcontrollerterms/
|
410
|
+
# pluginsToolsGoogleMapsDescription4s2: https://privacy.google.com/businesses/gdprcontrollerterms/sccs/
|
411
|
+
# pluginsToolsGoogleMapsDescription4: 'Die Datenübertragung in die USA wird auf die Standardvertragsklauseln der EU-Kommission gestützt. Details finden Sie hier: {linkGdpr} und {linkGdprScss}.'
|
412
|
+
# pluginsToolsGoogleMapsDescription5s: https://policies.google.com/privacy?hl=de
|
413
|
+
# pluginsToolsGoogleMapsDescription5: 'Mehr Informationen zum Umgang mit Nutzerdaten finden Sie in der Datenschutzerklärung von Google: {linkPrivacy}.'
|
414
|
+
# pluginsToolsGoogleMapsTitle: Google Maps
|
415
|
+
# pluginsToolsGoogleReCaptchaDescription1: Wir nutzen „Google reCAPTCHA“ (im Folgenden „reCAPTCHA“) auf dieser Website. Anbieter ist die Google Ireland Limited („Google“), Gordon House, Barrow Street, Dublin 4, Irland.
|
416
|
+
# pluginsToolsGoogleReCaptchaDescription2: Mit reCAPTCHA soll überprüft werden, ob die Dateneingabe auf dieser Website (z. B. in einem Kontaktformular) durch einen Menschen oder durch ein automatisiertes Programm erfolgt. Hierzu analysiert reCAPTCHA das Verhalten des Websitebesuchers anhand verschiedener Merkmale. Diese Analyse beginnt automatisch, sobald der Websitebesucher die Website betritt. Zur Analyse wertet reCAPTCHA verschiedene Informationen aus (z. B. IP-Adresse, Verweildauer des Websitebesuchers auf der Website oder vom Nutzer getätigte Mausbewegungen). Die bei der Analyse erfassten Daten werden an Google weitergeleitet.
|
417
|
+
# pluginsToolsGoogleReCaptchaDescription3: Die reCAPTCHA-Analysen laufen vollständig im Hintergrund. Websitebesucher werden nicht darauf hingewiesen, dass eine Analyse stattfindet.
|
418
|
+
# pluginsToolsGoogleReCaptchaDescription4: Die Speicherung und Analyse der Daten erfolgt auf Grundlage von Art. 6 Abs. 1 lit. f DSGVO. Der Websitebetreiber hat ein berechtigtes Interesse daran, seine Webangebote vor missbräuchlicher automatisierter Ausspähung und vor SPAM zu schützen. Sofern eine entsprechende Einwilligung abgefragt wurde, erfolgt die Verarbeitung ausschließlich auf Grundlage von Art. 6 Abs. 1 lit. a DSGVO; die Einwilligung ist jederzeit widerrufbar.
|
419
|
+
# pluginsToolsGoogleReCaptchaDescription5s1: https://policies.google.com/privacy?hl=de
|
420
|
+
# pluginsToolsGoogleReCaptchaDescription5s2: https://policies.google.com/terms?hl=de
|
421
|
+
# pluginsToolsGoogleReCaptchaDescription5: 'Weitere Informationen zu Google reCAPTCHA entnehmen Sie den Google-Datenschutzbestimmungen und den Google Nutzungsbedingungen unter folgenden Links: {linkPrivacy} und {linkTerms}.'
|
422
|
+
# pluginsToolsGoogleReCaptchaTitle: Google reCAPTCHA
|
423
|
+
# pluginsToolsGoogleWebFontsDescription1: Diese Seite nutzt zur einheitlichen Darstellung von Schriftarten so genannte Web Fonts, die von Google bereitgestellt werden. Die Google Fonts sind lokal installiert. Eine Verbindung zu Servern von Google findet dabei nicht statt.
|
424
|
+
# pluginsToolsGoogleWebFontsDescription2s1: https://developers.google.com/fonts/faq
|
425
|
+
# pluginsToolsGoogleWebFontsDescription2s2: https://policies.google.com/privacy?hl=de
|
426
|
+
# pluginsToolsGoogleWebFontsDescription2: 'Weitere Informationen zu Google Web Fonts finden Sie unter {linkFaq} und in der Datenschutzerklärung von Google: {linkPrivacy}.'
|
427
|
+
# pluginsToolsGoogleWebFontsTitle: Google Web Fonts (lokales Hosting)
|
428
|
+
# pluginsToolsYouTubeDescription1: Diese Website bindet Videos der YouTube ein. Betreiber der Seiten ist die Google Ireland Limited („Google“), Gordon House, Barrow Street, Dublin 4, Irland.
|
429
|
+
# pluginsToolsYouTubeDescription2: Wir nutzen YouTube im erweiterten Datenschutzmodus. Dieser Modus bewirkt laut YouTube, dass YouTube keine Informationen über die Besucher auf dieser Website speichert, bevor diese sich das Video ansehen. Die Weitergabe von Daten an YouTube-Partner wird durch den erweiterten Datenschutzmodus hingegen nicht zwingend ausgeschlossen. So stellt YouTube – unabhängig davon, ob Sie sich ein Video ansehen – eine Verbindung zum Google DoubleClick-Netzwerk her.
|
430
|
+
# pluginsToolsYouTubeDescription3: Sobald Sie ein YouTube-Video auf dieser Website starten, wird eine Verbindung zu den Servern von YouTube hergestellt. Dabei wird dem YouTube-Server mitgeteilt, welche unserer Seiten Sie besucht haben. Wenn Sie in Ihrem YouTube-Account eingeloggt sind, ermöglichen Sie YouTube, Ihr Surfverhalten direkt Ihrem persönlichen Profil zuzuordnen. Dies können Sie verhindern, indem Sie sich aus Ihrem YouTube-Account ausloggen.
|
431
|
+
# pluginsToolsYouTubeDescription4: Des Weiteren kann YouTube nach Starten eines Videos verschiedene Cookies auf Ihrem Endgerät speichern oder vergleichbare Wiedererkennungstechnologien (z.B. Device-Fingerprinting) einsetzen. Auf diese Weise kann YouTube Informationen über Besucher dieser Website erhalten. Diese Informationen werden u. a. verwendet, um Videostatistiken zu erfassen, die Anwenderfreundlichkeit zu verbessern und Betrugsversuchen vorzubeugen.
|
432
|
+
# pluginsToolsYouTubeDescription5: Gegebenenfalls können nach dem Start eines YouTube-Videos weitere Datenverarbeitungsvorgänge ausgelöst werden, auf die wir keinen Einfluss haben.
|
433
|
+
# pluginsToolsYouTubeDescription6: Die Nutzung von YouTube erfolgt im Interesse einer ansprechenden Darstellung unserer Online-Angebote. Dies stellt ein berechtigtes Interesse im Sinne von Art. 6 Abs. 1 lit. f DSGVO dar. Sofern eine entsprechende Einwilligung abgefragt wurde, erfolgt die Verarbeitung ausschließlich auf Grundlage von Art. 6 Abs. 1 lit. a DSGVO; die Einwilligung ist jederzeit widerrufbar.
|
434
|
+
# pluginsToolsYouTubeDescription7s: https://policies.google.com/privacy?hl=de
|
435
|
+
# pluginsToolsYouTubeDescription7: 'Weitere Informationen über Datenschutz bei YouTube finden Sie in deren Datenschutzerklärung unter: {linkPrivacy}.'
|
436
|
+
# pluginsToolsYouTubeTitle: YouTube mit erweitertem Datenschutz
|
437
|
+
source: Quelle
|
438
|
+
summary: 1. Datenschutz auf einen Blick
|
439
|
+
title: Datenschutzerklärung
|
440
|
+
en:
|
441
|
+
dataAcquisition: 4. Data collection on this website
|
442
|
+
# dataAcquisitionCommentsDescription: For the comment function on this page, in addition to your comment, information on the time of creation of the comment, your e-mail address and, if you do not post anonymously, the username you have chosen will be stored.
|
443
|
+
# dataAcquisitionCommentsIpDescription: Our comment function stores the IP addresses of users who post comments. Since we do not check comments on this website before they are activated, we need this data to be able to take action against the author in the event of legal violations such as insults or propaganda.
|
444
|
+
# dataAcquisitionCommentsIpTitle: IP address storage
|
445
|
+
# dataAcquisitionCommentsLegalBasisDescription: The storage of comments is based on your consent (Art. 6 para. 1 lit. a GDPR). You can revoke your consent at any time. For this purpose, an informal communication by e-mail to us is sufficient. The legality of the data processing operations already carried out remains unaffected by the revocation.
|
446
|
+
# dataAcquisitionCommentsLegalBasisTitle: Legal basis
|
447
|
+
# dataAcquisitionCommentsStorageDurationDescription: The comments and the associated data are stored and remain on this website until the commented content has been completely deleted or the comments have to be deleted for legal reasons (e.g. offensive comments).
|
448
|
+
# dataAcquisitionCommentsStorageDurationTitle: Comments storage period
|
449
|
+
# dataAcquisitionCommentsSubscribeDescription: As a user of the site, you can subscribe to comments after registering. You will receive a confirmation e-mail to verify that you are the owner of the e-mail address provided. You can unsubscribe from this function at any time via a link in the info e-mails. In this case, the data entered in the context of subscribing to comments will be deleted; however, if you have transmitted this data to us for other purposes and at another point (e.g. newsletter order), this data will remain with us.
|
450
|
+
# dataAcquisitionCommentsSubscribeTitle: Subscribe to comments
|
451
|
+
# dataAcquisitionCommentsTitle: Comment function on this website
|
452
|
+
dataAcquisitionContactExternalDescription1: If you contact us by e-mail, telephone or fax, your inquiry including all resulting personal data (name, inquiry) will be stored and processed by us for the purpose of processing your request. We will not pass on this data without your consent.
|
453
|
+
dataAcquisitionContactExternalDescription2: The processing of this data is based on Art. 6 (1) lit. b GDPR, if your request is related to the performance of a contract or is necessary for the implementation of pre-contractual measures. In all other cases, the processing is based on our legitimate interest in the effective processing of requests addressed to us (Art. 6 para. 1 lit. f GDPR) or on your consent (Art. 6 para. 1 lit. a GDPR) if this was requested.
|
454
|
+
dataAcquisitionContactExternalDescription3: The data you send to us via contact requests will remain with us until you request us to delete it, revoke your consent to store it, or the purpose for storing the data no longer applies (e.g. after your request has been processed). Mandatory statutory provisions – in particular statutory retention periods – remain unaffected.
|
455
|
+
dataAcquisitionContactExternalTitle: Request by e-mail, phone or fax
|
456
|
+
# dataAcquisitionContactFormDescription1: If you send us inquiries via the contact form, your data from the inquiry form including the contact data you provided there will be stored by us for the purpose of processing the inquiry and in case of follow-up questions. We do not pass on this data without your consent.
|
457
|
+
# dataAcquisitionContactFormDescription2: The processing of this data is based on Art. 6 (1) lit. b GDPR, if your request is related to the performance of a contract or is necessary for the implementation of pre-contractual measures. In all other cases, the processing is based on our legitimate interest in the effective processing of requests addressed to us (Art. 6 para. 1 lit. f GDPR) or on your consent (Art. 6 para. 1 lit. a GDPR) if this was requested.
|
458
|
+
# dataAcquisitionContactFormDescription3: The data you enter in the contact form will remain with us until you request us to delete it, revoke your consent to store it, or the purpose for storing the data no longer applies (e.g. after we have completed processing your request). Mandatory legal provisions – in particular retention periods – remain unaffected.
|
459
|
+
# dataAcquisitionContactFormTitle: Contact form
|
460
|
+
dataAcquisitionCookiesDescription1: Our Internet pages use so-called „cookies“. Cookies are small text files and do not cause any damage to your end device. They are stored either temporarily for the duration of a session (session cookies) or permanently (permanent cookies) on your end device. Session cookies are automatically deleted at the end of your visit. Permanent cookies remain stored on your end device until you delete them yourself or until they are automatically deleted by your web browser.
|
461
|
+
dataAcquisitionCookiesDescription2: In some cases, cookies from third-party companies may also be stored on your terminal device when you enter our site (third-party cookies). These enable us or you to use certain services of the third-party company (e.g. cookies for processing payment services).
|
462
|
+
dataAcquisitionCookiesDescription3: Cookies have various functions. Many cookies are technically necessary, as certain website functions would not work without them (e.g. the login function). Other cookies are used to evaluate user behavior or to display advertising.
|
463
|
+
dataAcquisitionCookiesDescription4: Cookies that are necessary to carry out the electronic communication process (necessary cookies) or to provide certain functions that you have requested (functional cookies, e.g. for the login function) or to optimize the website (e.g. cookies to measure the web audience) are stored on the basis of Art. 6 (1) lit. f GDPR, unless another legal basis is specified. The website operator has a legitimate interest in storing cookies for the technically error-free and optimized provision of its services. If consent to store cookies has been requested, the cookies in question are stored exclusively on the basis of this consent (Art. 6 para. 1 lit. a GDPR); consent can be revoked at any time.
|
464
|
+
dataAcquisitionCookiesDescription5: You can set your browser so that you are informed about the setting of cookies and only allow cookies in individual cases, exclude the acceptance of cookies for certain cases or in general and activate the automatic deletion of cookies when closing the browser. When deactivating cookies, the functionality of this website may be limited.
|
465
|
+
dataAcquisitionCookiesDescription6: If cookies are used by third-party companies or for analysis purposes, we will inform you about this separately within the framework of this data protection declaration and, if necessary, request your consent.
|
466
|
+
dataAcquisitionCookiesTitle: Cookies
|
467
|
+
dataAcquisitionLogDescription1: 'The provider of the pages automatically collects and stores information in so-called server log files, which your browser automatically transmits to us. These are:'
|
468
|
+
dataAcquisitionLogDescription2: This data is not merged with other data sources.
|
469
|
+
dataAcquisitionLogDescription3: The collection of this data is based on Art. 6 para. 1 lit. f GDPR. The website operator has a legitimate interest in the technically error-free presentation and optimization of its website – for this purpose, the server log files must be collected.
|
470
|
+
dataAcquisitionLogItem1: browser type and version
|
471
|
+
dataAcquisitionLogItem2: operating system used
|
472
|
+
dataAcquisitionLogItem3: referrer URL
|
473
|
+
dataAcquisitionLogItem4: host name of the accessing computer
|
474
|
+
dataAcquisitionLogItem5: time of the server request
|
475
|
+
dataAcquisitionLogItem6: IP address
|
476
|
+
dataAcquisitionLogTitle: Server log files
|
477
|
+
dataCollection: Data collection on this website
|
478
|
+
dataCollectionLiabilityDescription: The data processing on this website is carried out by the website operator. You can find his contact details in the imprint of this website.
|
479
|
+
dataCollectionLiabilityTitle: Who is responsible for the data collection on this website?
|
480
|
+
dataCollectionMethodDescription1: Your data is collected on the one hand by you providing it to us. This can be, for example, data that you enter in a contact form.
|
481
|
+
dataCollectionMethodDescription2: Other data is collected automatically or after your consent when you visit the website by our IT systems. This is mainly technical data (e.g. internet browser, operating system or time of page view). The collection of this data takes place automatically as soon as you enter this website.
|
482
|
+
dataCollectionMethodTitle: How do we collect your data?
|
483
|
+
dataCollectionRightsDescription1: You have the right at any time to receive information free of charge about the origin, recipient and purpose of your stored personal data. You also have a right to request the correction or deletion of this data. If you have given your consent to data processing, you can revoke this consent at any time for the future. You also have the right to request the restriction of the processing of your personal data under certain circumstances. Furthermore, you have the right to lodge a complaint with the competent supervisory authority.
|
484
|
+
dataCollectionRightsDescription2: For this purpose, as well as for further questions on the subject of data protection, you can contact us at any time at the address given in the imprint.
|
485
|
+
dataCollectionRightsTitle: What rights do you have regarding your data?
|
486
|
+
dataCollectionToolsDescription1: When visiting this website, your surfing behavior can be statistically evaluated. This is done mainly with so-called analysis programs.
|
487
|
+
dataCollectionToolsDescription2: Detailed information about these analysis programs can be found in the following privacy policy.
|
488
|
+
dataCollectionToolsTitle: Third-party analytics and tools
|
489
|
+
dataCollectionUseDescription: Some of the data is collected to ensure error-free provision of the website. Other data may be used to analyze your user behavior.
|
490
|
+
dataCollectionUseTitle: What do we use your data for?
|
491
|
+
generalNotesDescription: The following notices provide a simple overview of what happens to your personal data when you visit this website. Personal data is any data that can be used to identify you personally. For detailed information on the subject of data protection, please refer to our privacy policy listed below this text.
|
492
|
+
generalNotesTitle: General notes
|
493
|
+
hostingCdn: 2. Hosting and Content Delivery Networks (CDN)
|
494
|
+
hostingCdnExternalAddressCity: 91710 Gunzenhausen, Deutschland
|
495
|
+
hostingCdnExternalAddressName: Hetzner Online GmbH
|
496
|
+
hostingCdnExternalAddressStreet: Industriestr. 25
|
497
|
+
hostingCdnExternalDescription1: This website is hosted by an external service provider (hoster). The personal data collected on this website is stored on the hoster's servers. This may include IP addresses, contact requests, meta and communication data, contract data, contact data, names, website accesses and other data generated via a website.
|
498
|
+
hostingCdnExternalDescription2: The hoster is used for the purpose of fulfilling contracts with our potential and existing customers (Art. 6 para. 1 lit. b GDPR) and in the interest of a secure, fast and efficient provision of our online offer by a professional provider (Art. 6 para. 1 lit. f GDPR).
|
499
|
+
hostingCdnExternalDescription3: Our hoster will only process your data to the extent necessary to fulfill its service obligations and will follow our instructions regarding this data.
|
500
|
+
hostingCdnExternalDescription4: 'We use the following hoster:'
|
501
|
+
hostingCdnExternalProcessingContractDescription: To ensure data protection-compliant processing, we have concluded an order processing contract with our hoster.
|
502
|
+
hostingCdnExternalProcessingContractTitle: Conclusion of a contract for order processing
|
503
|
+
hostingCdnExternalTitle: External hosting
|
504
|
+
mandatoryInfo: 3. General notes and mandatory information
|
505
|
+
mandatoryInfoComplaintDescription: In the event of breaches of the GDPR, data subjects shall have a right of appeal to a supervisory authority, in particular in the Member State of their habitual residence, their place of work or the place of the alleged breach. The right of appeal is without prejudice to other administrative or judicial remedies.
|
506
|
+
mandatoryInfoComplaintTitle: Right of appeal to the competent supervisory authority
|
507
|
+
mandatoryInfoConsentRevocationDescription: Many data processing operations are only possible with your express consent. You can revoke consent you have already given at any time. The legality of the data processing carried out until the revocation remains unaffected by the revocation.
|
508
|
+
mandatoryInfoConsentRevocationSpecialDescription1: IF THE DATA PROCESSING IS CARRIED OUT ON THE BASIS OF ART. 6 ABS. 1 LIT. E OR F GDPR, YOU HAVE THE RIGHT TO OBJECT TO THE PROCESSING OF YOUR PERSONAL DATA AT ANY TIME FOR REASONS ARISING FROM YOUR PARTICULAR SITUATION; THIS ALSO APPLIES TO PROFILING BASED ON THESE PROVISIONS. THE RESPECTIVE LEGAL BASIS ON WHICH PROCESSING IS BASED CAN BE FOUND IN THIS PRIVACY POLICY. IF YOU OBJECT, WE WILL NO LONGER PROCESS YOUR PERSONAL DATA UNLESS WE CAN DEMONSTRATE COMPELLING LEGITIMATE GROUNDS FOR THE PROCESSING WHICH OVERRIDE YOUR INTERESTS, RIGHTS AND FREEDOMS, OR THE PROCESSING SERVES THE PURPOSE OF ASSERTING, EXERCISING OR DEFENDING LEGAL CLAIMS (OBJECTION UNDER ARTICLE 21 (1) GDPR).
|
509
|
+
mandatoryInfoConsentRevocationSpecialDescription2: IF YOUR PERSONAL DATA IS PROCESSED FOR THE PURPOSE OF DIRECT MARKETING, YOU HAVE THE RIGHT TO OBJECT AT ANY TIME TO THE PROCESSING OF PERSONAL DATA CONCERNING YOU FOR THE PURPOSE OF SUCH MARKETING; THIS ALSO APPLIES TO PROFILING INSOFAR AS IT IS CONNECTED WITH SUCH DIRECT MARKETING. IF YOU OBJECT, YOUR PERSONAL DATA WILL SUBSEQUENTLY NO LONGER BE USED FOR THE PURPOSE OF DIRECT MARKETING (OBJECTION PURSUANT TO ARTICLE 21 (2) GDPR).
|
510
|
+
mandatoryInfoConsentRevocationSpecialTitle: Right to object to data collection in special cases and to direct marketing (Art. 21 GDPR)
|
511
|
+
mandatoryInfoConsentRevocationTitle: Revocation of your consent to data processing
|
512
|
+
mandatoryInfoDataChangeDescription: Within the framework of the applicable legal provisions, you have the right at any time to free information about your stored personal data, its origin and recipient and the purpose of data processing and, if necessary, a right to correction or deletion of this data. For this purpose, as well as for further questions on the subject of personal data, you can contact us at any time at the address given in the imprint.
|
513
|
+
mandatoryInfoDataChangeTitle: Information, deletion and correction
|
514
|
+
mandatoryInfoDataSharingUsaDescription: Among other things, tools from companies based in the USA are integrated on our website. If these tools are active, your personal data may be transferred to the US servers of the respective companies. We would like to point out that the USA is not a safe third country in the sense of EU data protection law. US companies are obliged to hand over personal data to security authorities without you as a data subject being able to take legal action against this. It can therefore not be ruled out that US authorities (e.g. intelligence services) process, evaluate and permanently store your data located on US servers for monitoring purposes. We have no influence on these processing activities.
|
515
|
+
mandatoryInfoDataSharingUsaTitle: Note on data transfer to the USA
|
516
|
+
mandatoryInfoOppositionDescription: The use of contact data published within the framework of the imprint obligation to send advertising and information materials not expressly requested is hereby prohibited. The operators of the pages expressly reserve the right to take legal action in the event of the unsolicited sending of advertising information, such as spam e-mails.
|
517
|
+
mandatoryInfoOppositionTitle: Objection to advertising e-mails
|
518
|
+
mandatoryInfoPortabilityDescription: You have the right to have data that we process automatically on the basis of your consent or in fulfillment of a contract handed over to you or to a third party in a common, machine-readable format. If you request the direct transfer of the data to another controller, this will only be done insofar as it is technically feasible.
|
519
|
+
mandatoryInfoPortabilityTitle: Right to data portability
|
520
|
+
mandatoryInfoPrivacyDescription1: The operators of these pages take the protection of your personal data very seriously. We treat your personal data confidentially and in accordance with the statutory data protection regulations and this privacy policy.
|
521
|
+
mandatoryInfoPrivacyDescription2: When you use this website, various personal data are collected. Personal data is data with which you can be personally identified. This privacy policy explains what data we collect and what we use it for. It also explains how and for what purpose this is done.
|
522
|
+
mandatoryInfoPrivacyDescription3: We point out that data transmission over the Internet (eg communication by e-mail) security gaps. A complete protection of the data against access by third parties is not possible.
|
523
|
+
mandatoryInfoPrivacyTitle: Privacy
|
524
|
+
mandatoryInfoProcessingRestrictionDescription1: 'You have the right to request the restriction of the processing of your personal data. To do this, you can contact us at any time at the address given in the imprint. The right to restriction of processing exists in the following cases:'
|
525
|
+
mandatoryInfoProcessingRestrictionDescription2: If you have restricted the processing of your personal data, these data may be processed – apart from their storage – only with your consent or for the assertion, exercise or defense of legal claims or for the protection of the rights of another natural or legal person or for reasons of an important public interest of the European Union or a Member State.
|
526
|
+
mandatoryInfoProcessingRestrictionList1: If you dispute the accuracy of your personal data stored by us, we usually need time to verify this. For the duration of the review, you have the right to request the restriction of the processing of your personal data.
|
527
|
+
mandatoryInfoProcessingRestrictionList2: If the processing of your personal data happened/is happening unlawfully, you may request the restriction of data processing instead of erasure.
|
528
|
+
mandatoryInfoProcessingRestrictionList3: If we no longer need your personal data, but you need it to exercise, defend or enforce legal claims, you have the right to request restriction of the processing of your personal data instead of deletion.
|
529
|
+
mandatoryInfoProcessingRestrictionList4: If you have lodged an objection pursuant to Art. 21 (1) GDPR, a balancing of your and our interests must be carried out. As long as it has not yet been determined whose interests prevail, you have the right to request the restriction of the processing of your personal data.
|
530
|
+
mandatoryInfoProcessingRestrictionTitle: Right to restriction of processing
|
531
|
+
mandatoryInfoResponsibleAddressCity: 34117 Kassel
|
532
|
+
mandatoryInfoResponsibleAddressEmail: "E-mail: server+privacy-policy{'@'}jonas-thelemann.de"
|
533
|
+
mandatoryInfoResponsibleAddressName: Jonas Thelemann
|
534
|
+
mandatoryInfoResponsibleAddressStreet: Fünffensterstraße 18
|
535
|
+
mandatoryInfoResponsibleDescription1: 'The responsible party for data processing on this website is:'
|
536
|
+
mandatoryInfoResponsibleDescription2: The controller is the natural or legal person who alone or jointly with others determines the purposes and means of the processing of personal data (e.g. names, e-mail addresses, etc.).
|
537
|
+
mandatoryInfoResponsibleTitle: Note on the responsible body
|
538
|
+
mandatoryInfoSslTlsDescription1: This site uses SSL or TLS encryption for security reasons and to protect the transmission of confidential content, such as orders or requests that you send to us as the site operator. You can recognize an encrypted connection by the fact that the address line of the browser changes from „http://“ to „https://“ and by the lock symbol in your browser line.
|
539
|
+
mandatoryInfoSslTlsDescription2: If SSL or TLS encryption is activated, the data you transmit to us cannot be read by third parties.
|
540
|
+
mandatoryInfoSslTlsTitle: SSL or TLS encryption
|
541
|
+
mandatoryInfoStorageDurationDescription: Unless a more specific storage period has been specified within this privacy policy, your personal data will remain with us until the purpose for data processing no longer applies. If you assert a legitimate request for deletion or revoke your consent to data processing, your data will be deleted unless we have other legally permissible reasons for storing your personal data (e.g. retention periods under tax or commercial law); in the latter case, the data will be deleted once these reasons no longer apply.
|
542
|
+
mandatoryInfoStorageDurationTitle: Storage duration
|
543
|
+
# newsletter: 5. Newsletter
|
544
|
+
# newsletterDataDescription1: If you would like to receive the newsletter offered on the website, we require an e-mail address from you as well as information that allows us to verify that you are the owner of the specified e-mail address and agree to receive the newsletter. Further data is not collected or only on a voluntary basis. We use this data exclusively for sending the requested information and do not pass it on to third parties.
|
545
|
+
# newsletterDataDescription2: The processing of the data entered in the newsletter registration form is based exclusively on your consent (Art. 6 para. 1 lit. a GDPR). You can revoke your consent to the storage of the data, the e-mail address and their use for sending the newsletter at any time, for example via the „unsubscribe“-link in the newsletter. The legality of the data processing operations already carried out remains unaffected by the revocation.
|
546
|
+
# newsletterDataDescription3: The data you provide for the purpose of receiving the newsletter will be stored by us or the newsletter service provider until you unsubscribe from the newsletter and will be deleted from the newsletter distribution list after you unsubscribe from the newsletter. Data that has been stored by us for other purposes remains unaffected by this.
|
547
|
+
# newsletterDataDescription4s: You can object to the storage if your interests outweigh our legitimate interest.
|
548
|
+
# newsletterDataDescription4: After you have unsubscribed from the newsletter distribution list, your e-mail address will be stored by us or the newsletter service provider in a blacklist, if necessary, in order to prevent future mailings. The data from the blacklist will only be used for this purpose and will not be merged with other data. This serves both your interest and our interest in complying with legal requirements when sending newsletters (legitimate interest within the meaning of Art. 6 (1) lit. f GDPR). The storage in the blacklist is not limited in time. {strong}
|
549
|
+
# newsletterDataTitle: Newsletter data
|
550
|
+
# pluginsTools: 6. Plugins and tools
|
551
|
+
# pluginsToolsFontAwesomeDescription1: This site uses Font Awesome for consistent font rendering. Font Awesome is installed locally. A connection to servers of Fonticons, Inc. does not take place.
|
552
|
+
# pluginsToolsFontAwesomeDescription2s: https://fontawesome.com/privacy
|
553
|
+
# pluginsToolsFontAwesomeDescription2: 'For more information about Font Awesome, please see and Font Awesome privacy policy at: {linkPrivacy}.'
|
554
|
+
# pluginsToolsFontAwesomeTitle: Font Awesome (local hosting)
|
555
|
+
# pluginsToolsGoogleMapsDescription1: This site uses the map service Google Maps. The provider is Google Ireland Limited („Google“), Gordon House, Barrow Street, Dublin 4, Ireland.
|
556
|
+
# pluginsToolsGoogleMapsDescription2: To use the functions of Google Maps, it is necessary to store your IP address. This information is usually transferred to a Google server in the USA and stored there. The provider of this site has no influence on this data transmission.
|
557
|
+
# pluginsToolsGoogleMapsDescription3: The use of Google Maps is in the interest of an appealing presentation of our online offers and an easy location of the places indicated by us on the website. This represents a legitimate interest within the meaning of Art. 6 para. 1 lit. f GDPR. If a corresponding consent has been requested, the processing is based exclusively on Art. 6 para. 1 lit. a GDPR; the consent can be revoked at any time.
|
558
|
+
# pluginsToolsGoogleMapsDescription4s1: https://privacy.google.com/businesses/gdprcontrollerterms/
|
559
|
+
# pluginsToolsGoogleMapsDescription4s2: https://privacy.google.com/businesses/gdprcontrollerterms/sccs/
|
560
|
+
# pluginsToolsGoogleMapsDescription4: 'Data transfer to the USA is based on the standard contractual clauses of the EU Commission. Details can be found here: {linkGdpr} and {linkGdprScss}.'
|
561
|
+
# pluginsToolsGoogleMapsDescription5s: https://policies.google.com/privacy?hl=en
|
562
|
+
# pluginsToolsGoogleMapsDescription5: "More information about the handling of user data can be found in Google's privacy policy: {linkPrivacy}."
|
563
|
+
# pluginsToolsGoogleMapsTitle: Google Maps
|
564
|
+
# pluginsToolsGoogleReCaptchaDescription1: We use „Google reCAPTCHA“ (hereinafter „reCAPTCHA“) on this website. The provider is Google Ireland Limited („Google“), Gordon House, Barrow Street, Dublin 4, Ireland.
|
565
|
+
# pluginsToolsGoogleReCaptchaDescription2: The purpose of reCAPTCHA is to check whether the data input on this website (e.g. in a contact form) is made by a human or by an automated program. For this purpose, reCAPTCHA analyzes the behavior of the website visitor based on various characteristics. This analysis begins automatically as soon as the website visitor enters the website. For the analysis, reCAPTCHA evaluates various information (e.g. IP address, time spent by the website visitor on the website or mouse movements made by the user). The data collected during the analysis is forwarded to Google.
|
566
|
+
# pluginsToolsGoogleReCaptchaDescription3: The reCAPTCHA analyses run completely in the background. Website visitors are not notified that an analysis is taking place.
|
567
|
+
# pluginsToolsGoogleReCaptchaDescription4: The storage and analysis of the data is based on Art. 6 para. 1 lit. f GDPR. The website operator has a legitimate interest in protecting its web offers from abusive automated spying and from SPAM. If a corresponding consent was requested, the processing is based exclusively on Art. 6 para. 1 lit. a GDPR; the consent can be revoked at any time.
|
568
|
+
# pluginsToolsGoogleReCaptchaDescription5s1: https://policies.google.com/privacy?hl=en
|
569
|
+
# pluginsToolsGoogleReCaptchaDescription5s2: https://policies.google.com/terms?hl=en
|
570
|
+
# pluginsToolsGoogleReCaptchaDescription5: 'For more information about Google reCAPTCHA, see the Google Privacy Policy and the Google Terms of Service at the following links: {linkPrivacy} and {linkTerms}.'
|
571
|
+
# pluginsToolsGoogleReCaptchaTitle: Google reCAPTCHA
|
572
|
+
# pluginsToolsGoogleWebFontsDescription1: This site uses so-called web fonts provided by Google for the uniform display of fonts. The Google Fonts are installed locally. A connection to Google servers does not take place.
|
573
|
+
# pluginsToolsGoogleWebFontsDescription2s1: https://developers.google.com/fonts/faq
|
574
|
+
# pluginsToolsGoogleWebFontsDescription2s2: https://policies.google.com/privacy?hl=en
|
575
|
+
# pluginsToolsGoogleWebFontsDescription2: "For more information about Google Web Fonts, see {linkFaq} and Google's privacy policy: {linkPrivacy}."
|
576
|
+
# pluginsToolsGoogleWebFontsTitle: Google Web Fonts (local hosting)
|
577
|
+
# pluginsToolsYouTubeDescription1: This website embeds videos from YouTube. The operator of the pages is Google Ireland Limited („Google“), Gordon House, Barrow Street, Dublin 4, Ireland.
|
578
|
+
# pluginsToolsYouTubeDescription2: We use YouTube in extended privacy mode. According to YouTube, this mode means that YouTube does not store any information about visitors to this website before they watch the video. The disclosure of data to YouTube partners, however, is not necessarily excluded by the extended data protection mode. Thus, YouTube establishes a connection to the Google DoubleClick network – regardless of whether you watch a video.
|
579
|
+
# pluginsToolsYouTubeDescription3: As soon as you start a YouTube video on this website, a connection to the YouTube servers is established. This tells the YouTube server which of our pages you have visited. If you are logged into your YouTube account, you enable YouTube to assign your surfing behavior directly to your personal profile. You can prevent this by logging out of your YouTube account.
|
580
|
+
# pluginsToolsYouTubeDescription4: Furthermore, after starting a video, YouTube may store various cookies on your end device or use comparable recognition technologies (e.g. device fingerprinting). In this way, YouTube can obtain information about visitors to this website. This information is used, among other things, to collect video statistics, improve the user experience, and prevent fraud attempts.
|
581
|
+
# pluginsToolsYouTubeDescription5: If necessary, further data processing operations may be triggered after the start of a YouTube video, over which we have no control.
|
582
|
+
# pluginsToolsYouTubeDescription6: YouTube is used in the interest of an appealing presentation of our online offers. This represents a legitimate interest within the meaning of Art. 6 Para. 1 lit. f GDPR. If a corresponding consent has been requested, the processing is based exclusively on Art. 6 para. 1 lit. a GDPR; the consent can be revoked at any time.
|
583
|
+
# pluginsToolsYouTubeDescription7s: https://policies.google.com/privacy?hl=en
|
584
|
+
# pluginsToolsYouTubeDescription7: 'For more information about privacy at YouTube, please see their privacy policy at: {linkPrivacy}.'
|
585
|
+
# pluginsToolsYouTubeTitle: YouTube with enhanced privacy
|
586
|
+
source: Source
|
587
|
+
summary: 1. Data protection at a glance
|
588
|
+
title: Privacy Policy
|
589
|
+
</i18n>
|