WP DSGVO Tools - Version 2.2.5

Version Description

  • compatibility issues
Download this release

Release Info

Developer shapepress
Plugin Icon 128x128 WP DSGVO Tools
Version 2.2.5
Comparing to
See all releases

Code changes from version 2.2.3 to 2.2.5

README.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://wp-dsgvo.eu
4
  Tags: gdpr, dsgvo, datenschutz, wordpress, compliance, data, privacy, woocommerce,
5
  Requires at least: 3.0.1
6
  Tested up to: 5.0.0
7
- Stable tag: 2.2.3
8
  Requires PHP: 5.6.0
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -80,6 +80,15 @@ Important: Disable other cookie notice plugins and Google Analytics or FB Pixel
80
 
81
  == Changelog ==
82
 
 
 
 
 
 
 
 
 
 
83
  = 2.2.3 =
84
  * Little improvements and fixes
85
 
4
  Tags: gdpr, dsgvo, datenschutz, wordpress, compliance, data, privacy, woocommerce,
5
  Requires at least: 3.0.1
6
  Tested up to: 5.0.0
7
+ Stable tag: 2.2.5
8
  Requires PHP: 5.6.0
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
80
 
81
  == Changelog ==
82
 
83
+ = 2.2.5 =
84
+ * compatibility issues
85
+
86
+ = 2.2.4 =
87
+ * Improved uninstall method
88
+ * Jetpack compatibility issue solved with comments checkbox
89
+ * improved compatibility with some themes
90
+ * removed menu for non admins
91
+
92
  = 2.2.3 =
93
  * Little improvements and fixes
94
 
admin/class-sp-dsgvo-admin.php CHANGED
@@ -63,22 +63,29 @@ class SPDSGVOAdmin{
63
  public function menuItem()
64
  {
65
  global $submenu;
66
-
67
- $svg = 'data:image/svg+xml;base64,'. base64_encode(file_get_contents(SPDSGVO::pluginDir('admin/images/logo.svg')));
68
- add_menu_page('WP DSGVO Tools', 'WP DSGVO Tools', 'manage_options', 'sp-dsgvo', array($this, 'adminPage'), $svg);
69
-
70
- //add_submenu_page('sp-dsgvo', 'Terms & Conditions', 'Terms & Conditions', 'manage_options', 'admin.php?page=sp-dsgvo&tab=terms-conditions');
71
- add_submenu_page('sp-dsgvo', __('Privacy policy','shapepress-dsgvo'), __('Privacy policy','shapepress-dsgvo'), 'manage_options', 'admin.php?page=sp-dsgvo&tab=privacy-policy');
72
- add_submenu_page('sp-dsgvo', __('Imprint','shapepress-dsgvo'), __('Imprint','shapepress-dsgvo'), 'manage_options', 'admin.php?page=sp-dsgvo&tab=imprint');
73
- //add_submenu_page('sp-dsgvo', 'Integrations', 'Integrations', 'manage_options', 'admin.php?page=sp-dsgvo&tab=integrations');
74
-
75
- $index = 8;
76
- $menu_slug = 'sp-dsgvo';
77
-
78
- $submenu[$menu_slug][$index++] = array(__('Experts Info','shapepress-dsgvo'), 'manage_options', 'https://wp-dsgvo.eu/experten');
79
- $submenu[$menu_slug][$index++] = array(__('Legal advice','shapepress-dsgvo'), 'manage_options', 'https://wp-dsgvo.eu/tipps-hilfe');
80
- $submenu[$menu_slug][$index++] = array(__('FAQ','shapepress-dsgvo'), 'manage_options', 'https://wp-dsgvo.eu/faq');
81
- $submenu[$menu_slug][$index++] = array(__('About WP DSGVO Tools','shapepress-dsgvo'), 'manage_options', 'https://wp-dsgvo.eu/about');
 
 
 
 
 
 
 
82
  }
83
 
84
 
63
  public function menuItem()
64
  {
65
  global $submenu;
66
+
67
+ $user = wp_get_current_user();
68
+ $allowed_roles = array('administrator');
69
+
70
+ if( array_intersect($allowed_roles, $user->roles ) ) {
71
+
72
+
73
+ $svg = 'data:image/svg+xml;base64,'. base64_encode(file_get_contents(SPDSGVO::pluginDir('admin/images/logo.svg')));
74
+ add_menu_page('WP DSGVO Tools', 'WP DSGVO Tools', 'manage_options', 'sp-dsgvo', array($this, 'adminPage'), $svg);
75
+
76
+ //add_submenu_page('sp-dsgvo', 'Terms & Conditions', 'Terms & Conditions', 'manage_options', 'admin.php?page=sp-dsgvo&tab=terms-conditions');
77
+ add_submenu_page('sp-dsgvo', __('Privacy policy','shapepress-dsgvo'), __('Privacy policy','shapepress-dsgvo'), 'manage_options', 'admin.php?page=sp-dsgvo&tab=privacy-policy');
78
+ add_submenu_page('sp-dsgvo', __('Imprint','shapepress-dsgvo'), __('Imprint','shapepress-dsgvo'), 'manage_options', 'admin.php?page=sp-dsgvo&tab=imprint');
79
+ //add_submenu_page('sp-dsgvo', 'Integrations', 'Integrations', 'manage_options', 'admin.php?page=sp-dsgvo&tab=integrations');
80
+
81
+ $index = 8;
82
+ $menu_slug = 'sp-dsgvo';
83
+
84
+ $submenu[$menu_slug][$index++] = array(__('Experts Info','shapepress-dsgvo'), 'manage_options', 'https://wp-dsgvo.eu/experten');
85
+ $submenu[$menu_slug][$index++] = array(__('Legal advice','shapepress-dsgvo'), 'manage_options', 'https://wp-dsgvo.eu/tipps-hilfe');
86
+ $submenu[$menu_slug][$index++] = array(__('FAQ','shapepress-dsgvo'), 'manage_options', 'https://wp-dsgvo.eu/faq');
87
+ $submenu[$menu_slug][$index++] = array(__('About WP DSGVO Tools','shapepress-dsgvo'), 'manage_options', 'https://wp-dsgvo.eu/about');
88
+ }
89
  }
90
 
91
 
admin/tabs/common-settings/page.php CHANGED
@@ -74,7 +74,9 @@
74
  name="sp_dsgvo_comments_checkbox" type="checkbox"
75
  id="sp_dsgvo_comments_checkbox" value="1"
76
  <?= (SPDSGVOSettings::get('sp_dsgvo_comments_checkbox') === '1')? ' checked ' : ''; ?>>
77
- </label><span class="info-text"><?php _e('Displays at checkbox which requires confirmation when creating a comment.','shapepress-dsgvo')?></span></td>
 
 
78
  </tr>
79
  <?php if (class_exists('WPCF7_ContactForm')) : ?>
80
  <tr>
74
  name="sp_dsgvo_comments_checkbox" type="checkbox"
75
  id="sp_dsgvo_comments_checkbox" value="1"
76
  <?= (SPDSGVOSettings::get('sp_dsgvo_comments_checkbox') === '1')? ' checked ' : ''; ?>>
77
+ </label><span class="info-text"><?php _e('Displays at checkbox which requires confirmation when creating a comment.','shapepress-dsgvo')?></span>
78
+ <span class="info-text"><?php _e('Important: Not compatible in combination with Jetpack comment form.','shapepress-dsgvo')?></span>
79
+ </td>
80
  </tr>
81
  <?php if (class_exists('WPCF7_ContactForm')) : ?>
82
  <tr>
includes/class-sp-dsgvo.php CHANGED
@@ -284,13 +284,22 @@ class SPDSGVO{
284
  $this->loader->add_action('wp_print_footer_scripts', $public, 'wp_print_footer_scripts');
285
  $this->loader->add_action('wp_footer', $public, 'writeFooterScripts', 1000);
286
  $this->loader->add_action('wp_head', $public, 'writeHeaderScripts');
287
- //$this->loader->add_filter('comment_form_defaults', $public, 'addCommentsCheckBoxForDSGVO2', 10 );
288
- $this->loader->add_filter('comment_form_field_comment', $public, 'fallbackAddCommentsCheckBoxForDSGVO', 10 );
 
 
 
 
 
 
 
 
 
289
  $this->loader->add_action('preprocess_comment', $public, 'customValidateCheckbox');
290
  $this->loader->add_action('wpcf7_init', $public, 'wpcf7AddDsgvoTag' );
291
- $this->loader->add_action('woocommerce_review_order_before_submit', $public, 'wooAddCustomFields' );
292
- $this->loader->add_action('woocommerce_checkout_process', $public, 'wooAddCustomCheckout');
293
- $this->loader->add_action('woocommerce_checkout_update_order_meta', $public, 'wooUpdateOrderMeta');
294
  }
295
 
296
  /**
284
  $this->loader->add_action('wp_print_footer_scripts', $public, 'wp_print_footer_scripts');
285
  $this->loader->add_action('wp_footer', $public, 'writeFooterScripts', 1000);
286
  $this->loader->add_action('wp_head', $public, 'writeHeaderScripts');
287
+
288
+ /*
289
+ if ( is_plugin_active( 'jetpack/jetpack.php' ) ) {
290
+ //$this->loader->add_action( 'comment_form', $public, 'addCommentsCheckBoxForDSGVOJetpack' );
291
+ //$this->loader->add_filter('comment_form_defaults', $public, 'addCommentsCheckBoxForDSGVOLegacy', 10 );
292
+ $this->loader->add_filter('comment_form_field_comment', $public, 'fallbackAddCommentsCheckBoxForDSGVO', 20 );
293
+ } else {
294
+ $this->loader->add_filter('comment_form_field_comment', $public, 'fallbackAddCommentsCheckBoxForDSGVO', 20 );
295
+ }
296
+ */
297
+ $this->loader->add_filter('comment_form_field_comment', $public, 'fallbackAddCommentsCheckBoxForDSGVO', 20 );
298
  $this->loader->add_action('preprocess_comment', $public, 'customValidateCheckbox');
299
  $this->loader->add_action('wpcf7_init', $public, 'wpcf7AddDsgvoTag' );
300
+ $this->loader->add_action('woocommerce_review_order_before_submit', $public, 'wooAddCustomFields', 20 );
301
+ $this->loader->add_action('woocommerce_checkout_process', $public, 'wooAddCustomCheckout', 20);
302
+ $this->loader->add_action('woocommerce_checkout_update_order_meta', $public, 'wooUpdateOrderMeta', 20);
303
  }
304
 
305
  /**
languages/shapepress-dsgvo-de_DE.mo CHANGED
Binary file
languages/shapepress-dsgvo-de_DE.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
- "POT-Creation-Date: 2018-11-18 11:11+0100\n"
5
- "PO-Revision-Date: 2018-11-21 12:07+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: de_DE\n"
@@ -142,74 +142,74 @@ msgstr "DSGVO Experten buchen"
142
  msgid "Book legal advice"
143
  msgstr "Rechtliche Beratung buchen"
144
 
145
- #: admin/class-sp-dsgvo-admin.php:71 admin/tabs/privacy-policy/page.php:1
146
  msgid "Privacy policy"
147
  msgstr "Datenschutz"
148
 
149
- #: admin/class-sp-dsgvo-admin.php:72
150
  #: admin/tabs/imprint/class-sp-dsgvo-imprint-tab.php:11
151
  #: admin/tabs/imprint/page.php:1
152
  #: admin/tabs/setup/class-sp-dsgvo-create-page-action.php:62
153
  msgid "Imprint"
154
  msgstr "Impressum"
155
 
156
- #: admin/class-sp-dsgvo-admin.php:78
157
  msgid "Experts Info"
158
  msgstr "Experteninfo"
159
 
160
- #: admin/class-sp-dsgvo-admin.php:79
161
  msgid "Legal advice"
162
  msgstr "Rechtsberatung"
163
 
164
- #: admin/class-sp-dsgvo-admin.php:80
165
  msgid "FAQ"
166
  msgstr "FAQ"
167
 
168
- #: admin/class-sp-dsgvo-admin.php:81
169
  msgid "About WP DSGVO Tools"
170
  msgstr "Über WP DSGVO Tools"
171
 
172
- #: admin/class-sp-dsgvo-admin.php:125
173
  msgid "Are you sure you want to dismiss this request?"
174
  msgstr "Sind Sie Sicher dass Sie die Anfrage abbrechen wollen?"
175
 
176
- #: admin/class-sp-dsgvo-admin.php:142
177
  msgid "Privacy settings user page"
178
  msgstr "Datenschutzeinstellungen Benutzer Seite"
179
 
180
- #: admin/class-sp-dsgvo-admin.php:143
181
  msgid "Delete request page"
182
  msgstr "Löschanfrage Seite"
183
 
184
- #: admin/class-sp-dsgvo-admin.php:144
185
  msgid "Terms page"
186
  msgstr "AGB Seite"
187
 
188
- #: admin/class-sp-dsgvo-admin.php:145
189
  msgid "Explicit permissions page"
190
  msgstr "Explizite Berechtigungen Seite"
191
 
192
- #: admin/class-sp-dsgvo-admin.php:146
193
  msgid "Opt Out page"
194
  msgstr "Opt Out Seite"
195
 
196
- #: admin/class-sp-dsgvo-admin.php:147 admin/tabs/privacy-policy/page.php:12
197
  msgid "Privacy policy page"
198
  msgstr "Datenschutz Seite"
199
 
200
- #: admin/class-sp-dsgvo-admin.php:148
201
  msgid "Subject access request page"
202
  msgstr "Datenauszug Seite"
203
 
204
- #: admin/class-sp-dsgvo-admin.php:149
205
  msgid "Imprint page"
206
  msgstr "Impressum Seite"
207
 
208
- #: admin/class-sp-dsgvo-admin.php:200
209
  msgid "Privacy settings of the user"
210
  msgstr "Datenschutzeinstellungen des Benutzers"
211
 
212
- #: admin/class-sp-dsgvo-admin.php:205
213
  msgid "Dienste"
214
  msgstr "Dienste"
215
 
@@ -314,11 +314,15 @@ msgstr ""
314
  "Zeigt eine Checkbox bei Kommentaren an welche die Zustimmung zu den DSGVO "
315
  "Bestimmungen fordert."
316
 
317
- #: admin/tabs/common-settings/page.php:82
 
 
 
 
318
  msgid "Replace CF7 Acceptance text"
319
  msgstr "CF7 Acceptance Text ersetzen"
320
 
321
- #: admin/tabs/common-settings/page.php:89
322
  msgid ""
323
  "Replaces the text of CF7 Acceptance Checkboxes with following text. (Add to "
324
  "your form: [acceptance dsgvo] Text[/acceptance])"
@@ -327,23 +331,23 @@ msgstr ""
327
  "nachfolgendem Text. (Im Formular erg&auml;nzen: [acceptance dsgvo] Text[/"
328
  "acceptance])"
329
 
330
- #: admin/tabs/common-settings/page.php:93 admin/tabs/cookie-notice/page.php:638
331
  msgid "Text"
332
  msgstr "Text"
333
 
334
- #: admin/tabs/common-settings/page.php:95
335
  msgid "Message text:"
336
  msgstr "Meldungstext:"
337
 
338
- #: admin/tabs/common-settings/page.php:101
339
  msgid "Info text:"
340
  msgstr "Hinweistext:"
341
 
342
- #: admin/tabs/common-settings/page.php:109
343
  msgid "Confirmation text"
344
  msgstr "Zustimmungstext"
345
 
346
- #: admin/tabs/common-settings/page.php:118
347
  #: admin/tabs/cookie-notice/page.php:144 admin/tabs/imprint/page.php:45
348
  #: admin/tabs/privacy-policy/page.php:69
349
  msgid ""
@@ -353,11 +357,11 @@ msgstr ""
353
  "<strong>Wichtiger Hinweis:</strong> Falls Sie WPML verwenden, können sie mit "
354
  "Hilfe der WPML String Translations diese Texte übersetzen."
355
 
356
- #: admin/tabs/common-settings/page.php:123
357
  msgid "Company data"
358
  msgstr "Unternehmensdaten"
359
 
360
- #: admin/tabs/common-settings/page.php:124
361
  msgid ""
362
  "The following input fields represent the basic data necessary for the "
363
  "creation of GDPR compliant data protection regulations and an imprint.<br /"
@@ -370,80 +374,80 @@ msgstr ""
370
  "automatisch in das vom WP DSGVO Tools (GDPR) Plugin generierten "
371
  "Datenschutzbestimmungen sowie Impressum verwendet."
372
 
373
- #: admin/tabs/common-settings/page.php:128
374
  msgid "Company name:"
375
  msgstr "Name des Unternehmens:"
376
 
377
- #: admin/tabs/common-settings/page.php:135
378
  msgid "Street:"
379
  msgstr "Straße:"
380
 
381
- #: admin/tabs/common-settings/page.php:142
382
  msgid "ZIP + Location:"
383
  msgstr "PLZ + Ort:"
384
 
385
- #: admin/tabs/common-settings/page.php:149
386
  msgid "Commercial book no.:"
387
  msgstr "Firmenbuch Nr.:"
388
 
389
- #: admin/tabs/common-settings/page.php:156
390
  msgid "§11 Place of Jurisdiction:"
391
  msgstr "Gerichtsstand:"
392
 
393
- #: admin/tabs/common-settings/page.php:163
394
  msgid "VAT No.:"
395
  msgstr "USt. Id:"
396
 
397
- #: admin/tabs/common-settings/page.php:170
398
  msgid "Legal representatives:"
399
  msgstr "Gesetzlicher Vertreter:"
400
 
401
- #: admin/tabs/common-settings/page.php:174
402
  msgid "The person who legally represents the company."
403
  msgstr "Die Person die das Unternehmen gesetzlich vertritt."
404
 
405
- #: admin/tabs/common-settings/page.php:177
406
  msgid "Shareholder"
407
  msgstr "Gesellschafter"
408
 
409
- #: admin/tabs/common-settings/page.php:181
410
  msgid "In case of companies please contact all shareholders here."
411
  msgstr ""
412
  "Im Fall von Gesellschaften hier bitte alle Gesellschafter anf&uuml;hren."
413
 
414
- #: admin/tabs/common-settings/page.php:184
415
  msgid "Responsible for content:"
416
  msgstr "Verantwortlicher für Inhalt:"
417
 
418
- #: admin/tabs/common-settings/page.php:188
419
  msgid "The person responsible for the content on this website."
420
  msgstr ""
421
  "Die Person die f&uuml;r den Inhalt auf dieser Website verantwortlich ist."
422
 
423
- #: admin/tabs/common-settings/page.php:191
424
  msgid "Phone:"
425
  msgstr "Telefon:"
426
 
427
- #: admin/tabs/common-settings/page.php:198
428
  msgid "Email:"
429
  msgstr "Email:"
430
 
431
- #: admin/tabs/common-settings/page.php:205
432
  msgid "Newsletter service:"
433
  msgstr "Newsletter Service:"
434
 
435
- #: admin/tabs/common-settings/page.php:209
436
  msgid ""
437
  "Name of the shipping service provider with which the newsletters will be "
438
  "sent."
439
  msgstr ""
440
  "Name des Versanddienstleisters mit dem die Newsletter versendet werden."
441
 
442
- #: admin/tabs/common-settings/page.php:212
443
  msgid "URL Privacy Police of Newsletter Service:"
444
  msgstr "URL Datenschutz Newsletter Service:"
445
 
446
- #: admin/tabs/common-settings/page.php:216
447
  msgid "The URL to the terms of the newsletter service."
448
  msgstr "Die URL zu den AGB des Dienstes"
449
 
@@ -1048,7 +1052,7 @@ msgid "Show checkbox at WooCommerce checkout to confirm privacy policy"
1048
  msgstr "Datenschutz Checkbox bei Woo Checkout anzeigen"
1049
 
1050
  #: admin/tabs/privacy-policy/page.php:50
1051
- #: includes/class-sp-dsgvo-settings.php:226
1052
  msgid "I have read and accepted the Privacy Policy."
1053
  msgstr "Ich habe die Datenschutzbestimmungen gelesen und akzeptiert."
1054
 
@@ -1704,935 +1708,16 @@ msgstr ""
1704
  "for-organisations/data-protection-reform/overview-of-the-gdpr/\">DSGVO</a>), "
1705
  "spezialisiert auf &Ouml;sterreich und Deutschland."
1706
 
1707
- #: includes/class-sp-dsgvo-settings.php:33
1708
- msgid ""
1709
- "[company_name]<br/>Owner: [company_owner]<br/>[adress_street]<br/"
1710
- ">[adress_zip_location]<br/><br/>Management: [company_law_person]<br/"
1711
- ">Stockholder: [company_management]<br/><br/>Telephone number: "
1712
- "[comm_phone]<br/>E-Mail address: [comm_email]<br/><br/>Register Court & "
1713
- "Register Number: [company_register_court], [company_register_nr]<br/><br/"
1714
- ">Sales tax identification number: [company_uid]<br/><br/>Responsible for "
1715
- "content: [content_responsible]<br/><br/>European Commission Online Dispute "
1716
- "Resolution (OS) platform for consumers: <a href\"https://ec.europa.eu/"
1717
- "consumers/odr/\" target=\"_blank\">https://ec.europa.eu/consumers/odr/</a>. "
1718
- "We are not willing and obliged to participate in a dispute settlement "
1719
- "procedure before a consumer arbitration board."
1720
- msgstr ""
1721
- "[company_name]<br/>Inhaber: [company_owner]<br/>[adress_street]<br/"
1722
- ">[adress_zip_location]<br/><br/>Gesch&auml;ftsf&uuml;hrung: "
1723
- "[company_law_person]<br/>Gesellschafter: [company_management]<br/><br/"
1724
- ">Telefonnummer: [comm_phone]<br/>E-Mailadresse: [comm_email]<br/><br/"
1725
- ">Registergericht &amp; Registernummer: [company_register_court], "
1726
- "[company_register_nr]<br/><br/>Umsatzsteuer-Identifikationsnummer: "
1727
- "[company_uid]<br/><br/>Inhaltlich verantwortlich: [content_responsible]<br/"
1728
- "><br/>Plattform der Europ&auml;ischen Kommission zur Online-Streitbeilegung "
1729
- "(OS) f&uuml;r Verbraucher: <a href\"https://ec.europa.eu/consumers/odr/\" "
1730
- "target=\"_blank\">https://ec.europa.eu/consumers/odr/</a>. Wir sind nicht "
1731
- "bereit und nicht verpflichtet an einem Streitbeilegungsverfahren vor einer "
1732
- "Verbraucherschlichtungsstelle teilzunehmen.<br/>"
1733
-
1734
- #: includes/class-sp-dsgvo-settings.php:34
1735
- msgid ""
1736
- "<h1>General Privacy Policy</h1><br/>The protection of your data is very "
1737
- "important to us. We only process data on a legally compliant basis and "
1738
- "consider it our duty to protect your data from any misuse. We use your data "
1739
- "only for purposes to which you have authorized us.<br/><br/>Table of "
1740
- "Contents<br/>1. Objective and responsible body<br/>2. Basic information on "
1741
- "data processing<br/>3. Processing of personal data<br/>4. Collection of "
1742
- "access data<br/>5. Cookies & reach measurement<br/>6. Google Analytics<br/"
1743
- ">7. Google Re-/Marketing Services<br/>8. Facebook social plugins<br/>9. "
1744
- "Facebook remarketing<br/>10. Newsletter<br/>11. Integration of services and "
1745
- "content of third parties<br/>12. User rights and deletion<br/>13. Changes to "
1746
- "the privacy policy<br/><br/><h2>1. Objective and responsible body</h2><br/"
1747
- ">This Privacy Policy clarifies the nature, scope and purpose of the "
1748
- "processing (including collection, processing, use and consent) of personal "
1749
- "information contained in our online offering and the related websites, "
1750
- "features and content (collectively referred to as \"online offer\" or "
1751
- "\"Website\"). The privacy policy applies regardless of the domains, systems, "
1752
- "platforms, and devices (such as desktop or mobile) on which the online "
1753
- "offering is being run.<br/><br/>Provider of the online offer and responsible "
1754
- "for the data protection law is [company_name], owner: [company_owner], "
1755
- "[adress_street], [adress_zip_location] (hereinafter referred to as \"provider"
1756
- "\", \"we\" or \"us\"). For the contact possibilities we refer to our imprint."
1757
- "<br/><br/>The term \"user\" includes all customers and visitors of our "
1758
- "online offer. The terms used, such as \"Users\" are to be understood gender-"
1759
- "neutral.<br/><br/><h2>2. Basic information on data processing</h2><br/>We "
1760
- "only process users personal data in compliance with the relevant data "
1761
- "protection regulations in accordance with the requirements of data "
1762
- "minimization and purpose limitation (see Processing Principles: EU GDPR "
1763
- "Article 5). This means that the data of the users are processed only in the "
1764
- "presence of a legal permit or obligation, for the fulfillment of contractual "
1765
- "obligations (which are necessary, for example, for the provision of the "
1766
- "services offered) or in the presence of your consent.<br/><br/>We take "
1767
- "organizational, contractual and technical security measures in accordance "
1768
- "with the state of the art to ensure that the provisions of the data "
1769
- "protection laws are complied with and in order to protect the data processed "
1770
- "by us against accidental or intentional manipulation, loss, destruction or "
1771
- "against access by unauthorized persons.<br/><br/>Insofar as data "
1772
- "transmission to third parties is necessary for the fulfillment of legal "
1773
- "requirements, the fulfillment of the services to be provided within the "
1774
- "framework of contractual obligations or on the basis of your explicit "
1775
- "consent, we always ensure that this is done safely and in accordance with "
1776
- "data protection regulations and in accordance with EU GDPR Article 5.<br/"
1777
- "><br/>(Webshop, if applicable): A transfer of data to third parties does not "
1778
- "take place, with the exception of the transmission of credit card data to "
1779
- "the involved bank institutes / payment service providers for the purpose of "
1780
- "debiting the purchase price, to the transport company / shipping company "
1781
- "commissioned by us for the delivery of the goods as well as to our tax "
1782
- "consultant Fulfillment of our tax obligations.<br/><br/><h2>3. Processing of "
1783
- "personal data</h2><br/>The personal data are, in addition to the use "
1784
- "expressly mentioned in this privacy policy, processed for the following "
1785
- "purposes on the basis of statutory requirements, to fulfill the contract or "
1786
- "your express consent:<br/>- The provision, execution, maintenance, "
1787
- "optimization and security of our services, services and user services;<br/>- "
1788
- "Ensuring effective customer service and technical support.<br/><br/>Insofar "
1789
- "as data transmission to third parties is necessary for the fulfillment of "
1790
- "legal requirements, the fulfillment of the services to be provided within "
1791
- "the framework of contractual obligations or on the basis of your express "
1792
- "consent, we always ensure that this is done safely and in accordance with "
1793
- "data protection regulations in accordance with EU GDPR Article 5.<br/><br/"
1794
- ">(Webshop, if applicable): A transfer of data to third parties does not take "
1795
- "place, with the exception of the transmission of credit card data to the "
1796
- "involved bank institutes / payment service providers for the purpose of "
1797
- "debiting the purchase price, to the transport company / shipping company "
1798
- "commissioned by us for the delivery of the goods as well as to our tax "
1799
- "consultant Fulfillment of our tax obligations.<br/><br/>When contacting us "
1800
- "(via contact form or e-mail), the details of the user are stored for the "
1801
- "purpose of processing the request as well as in the event that follow-up "
1802
- "questions arise.<br/>Personal data will be deleted if they have fulfilled "
1803
- "their purpose and deletion does not conflict with any retention requirements."
1804
- "<br/><br/><h2>4. Collection of access data</h2><br/>We collect data about "
1805
- "every access to the server where this service is located (so-called server "
1806
- "log files). The access data includes name of the retrieved web page, file, "
1807
- "date and time of retrieval, amount of data transferred, message about "
1808
- "successful retrieval, browser type and version, the users operating system, "
1809
- "referrer URL (the previously visited page), IP address and the requesting "
1810
- "provider.<br/><br/>We use the log data without linking it to the specific "
1811
- "person of a user or other profiling according to the statutory provisions "
1812
- "only for statistical evaluations for the purpose of operation, security and "
1813
- "optimization of our online offer. However, we reserve the right to "
1814
- "retrospectively check the log data if, on the basis of concrete evidence, "
1815
- "the legitimate suspicion of unlawful use exists.<br/><br/><h2>5. Cookies & "
1816
- "reach measurement</h2><br/>Cookies are information transmitted from our web "
1817
- "server or third-party web servers to users web browsers and are stored there "
1818
- "for later retrieval. The use of cookies in the context of pseudonymous range "
1819
- "measurement is described in this privacy policy.<br/>The usage of this "
1820
- "online offer is also possible with the exclusion of cookies. If users do not "
1821
- "want cookies stored on their computer, they are asked to disable the option "
1822
- "in their browsers system settings. Saved cookies can be deleted in the "
1823
- "system settings of the browser. The exclusion of cookies can lead to "
1824
- "functional restrictions of this online offer.<br/>There is a possibility to "
1825
- "manage many companies online advertising cookies via the US website <a href="
1826
- "\"http://www.aboutads.info/choices\" target=\"_blank\">http://www.aboutads."
1827
- "info/choices</a> or the EU page <a href=\"http://www.youronlinechoices.com/"
1828
- "uk/your-ad-choices/\" target=\"_blank\">http://www.youronlinechoices.com/uk/"
1829
- "your-ad-choices/</a>.<br/><br/><h2>6. Google Analytics</h2><br/>We use "
1830
- "Google Analytics, a web analytics service provided by Google Inc. (\"Google"
1831
- "\"). Google uses cookies. The information generated by the cookie about the "
1832
- "use of the online offer by the users are usually transmitted to a Google "
1833
- "server in the USA and stored there.<br/><br/>Google will use this "
1834
- "information on our behalf to evaluate the use of our online offering by "
1835
- "users, to compile reports on the activities within this online offering and "
1836
- "to provide us with other services related to the use of this online offer "
1837
- "and internet usage. In this case, pseudonymous usage profiles of the users "
1838
- "can be created from the processed data.<br/><br/>We only use Google "
1839
- "Analytics with activated IP anonymization. This means that the IP address of "
1840
- "users will be shortened by Google within member states of the European Union "
1841
- "or in other contracting states of the Agreement on the European Economic "
1842
- "Area. Only in exceptional cases the full IP address will be sent to a Google "
1843
- "server in the US and shortened there.<br/><br/>The IP address submitted by "
1844
- "the users browser will not be merged with other data provided by Google. "
1845
- "Users can prevent the storage of cookies by setting their browser software "
1846
- "accordingly; users may also prevent data collection by Google of data which "
1847
- "is generated by the cookie and related to their use of the online offer as "
1848
- "well as the processing of such data by Google by downloading and installing "
1849
- "the browser plug-in available under the following link: <a href=\"http://"
1850
- "tools.google.com/dlpage/gaoptout?hl=de\" target=\"_blank\">http://tools."
1851
- "google.com/dlpage/gaoptout?hl=de</a>.<br/><br/>For more information about "
1852
- "Googles use of data, settings and opt-out options, please visit Googles "
1853
- "websites: <a href=\"https://www.google.com/intl/en/policies/privacy/partners"
1854
- "\" target=\"_blank\">https://www.google.com/intl/en/policies/privacy/"
1855
- "partners</a> (\"Googles use of your data when you use websites or our "
1856
- "partners apps \"), <a href=\"http://www.google.com/policies/technologies/ads"
1857
- "\" target=\"_blank\">http://www.google.com/policies/technologies/ads</a> (\" "
1858
- "Use of data for promotional purposes \"), <a href=\"http://www.google.com/"
1859
- "settings/ads\" target=\"_blank\">http://www.google.com/settings/ads</a> (\" "
1860
- "Managing information provided by Google used to show you ads \") and <a href="
1861
- "\"http://www.google.com/ads/preferences\" target=\"_blank\">http://www."
1862
- "google.com/ads/preferences</a> (\" Determine which ads Google shows you \")."
1863
- "<br/><br/><h2>7. Google Re-/Marketing Services</h2><br/>We use the Google "
1864
- "Inc. Marketing and Remarketing Services (\"Google Marketing Services\"), "
1865
- "1600 Amphitheater Parkway, Mountain View, CA 94043, USA, (\"Google\").<br/"
1866
- ">Google Marketing Services allows us to better target advertisements for "
1867
- "and on our website so that we only present ads to users that potentially "
1868
- "match their interests. E.g.: It is called remarketing if users are also "
1869
- "shown ads for products they are interested in on other websites. <br/><br/"
1870
- ">For these purposes, when Google and our other websites that are running "
1871
- "Google Marketing Services are activated, Google runs a code and so-called "
1872
- "(re) marketing tags (invisible graphics or code, etc., also named web "
1873
- "beacon) are added and incorporated into the website. With their help, the "
1874
- "user is provided with an individual cookie, viz. a small file is saved "
1875
- "(instead of cookies, comparable technologies can also be used).<br/><br/><br/"
1876
- ">The cookies can be set by different domains, including google.com, "
1877
- "doubleclick.net, invitemedia.com, admeld.com, googlesyndication.com or "
1878
- "googleadservices.com. In this file it is noted which web pages users "
1879
- "visited, what content they are interested in and what offers they have "
1880
- "clicked, as well as technical information about the browser and operating "
1881
- "system, referring web pages, visit time and other information about the use "
1882
- "of the online offer. <br/><br/>The IP address of the users is also "
1883
- "recorded, whereby in the context of Google Analytics the IP address is "
1884
- "shortened within member states of the European Union or other contracting "
1885
- "states of the Agreement on the European Economic Area. Only in exceptional "
1886
- "cases data is transmitted to a Google server in the US and shortened there. "
1887
- "The IP address will not be merged with data of the user within other offers "
1888
- "from Google. The information mentioned above may also be associated with "
1889
- "information from other sources. So that ads according to the interests of "
1890
- "the users can be displayed when they visit other websites.<br/><br/>The data "
1891
- "of the users are pseudonymised processed in the context of the Google "
1892
- "marketing services. That means Google stores and processes e.g. not the name "
1893
- "or e-mail address of the users, but processes the relevant data cookie-"
1894
- "related within pseudonymous user profiles. From the perspective of Google, "
1895
- "the ads are not managed and displayed to a specifically identifiable person, "
1896
- "but to the cookie owner, regardless of who that cookie owner is. This does "
1897
- "not apply if users have explicitly allowed Google to process their data "
1898
- "without this pseudonymization. The information collected about users by "
1899
- "\"DoubleClick\" is transmitted to Google and stored on Googles servers in "
1900
- "the United States.<br/><br/>Among the Google marketing services we use is "
1901
- "amongst others the online advertising program \"Google AdWords\". In the "
1902
- "case of Google AdWords, each advertiser receives a different \"conversion "
1903
- "cookie\". Cookies cannot be tracked through AdWords advertisers websites. "
1904
- "The information collected through the cookie is used to generate conversion "
1905
- "statistics for AdWords advertisers who have opted for conversion tracking. "
1906
- "Advertisers will see the total number of users who clicked on their ad and "
1907
- "were redirected to a conversion tracking tag page. However, they do not "
1908
- "receive information that personally identifies users.<br/><br/>We embed "
1909
- "third-party ads based on Googles DoubleClick marketing service. DoubleClick "
1910
- "uses cookies, which allow Google and its affiliate websites to serve ads "
1911
- "based on users visits to this site or other sites on the Internet.<br/>We "
1912
- "also engage third-party ads based on the Google AdSense marketing service. "
1913
- "AdSense uses cookies, which allow Google and its affiliate websites to serve "
1914
- "ads based on users visits to this site or other sites on the Internet.<br/"
1915
- "><br/>Another Google marketing service we use is the Google Tag Manager, "
1916
- "which allows additional Google analytics and marketing services to be "
1917
- "integrated into our website (e.g. AdWords, DoubleClick, or Google Analytics)."
1918
- "<br/>For more information about Googles data usage for marketing, see their "
1919
- "overview page: <a href=\"https://www.google.com/policies/technologies/ads\" "
1920
- "target=\"_blank\">https://www.google.com/policies/technologies/ads</a>, "
1921
- "Googles Privacy Policy is available at <a href=\"https://www.google.com/"
1922
- "policies/privacy\" target=\"_blank\">https://www.google.com/policies/"
1923
- "privacy</a>.<br/>If you wish to opt-out of Google Marketing Services, you "
1924
- "may take advantage of Googles settings and opt-out options: <a href="
1925
- "\"http://www.google.com/ads/preferences\" target=\"_blank\">http://www."
1926
- "google.com/ads/preferences</a>.<br/><br/><h2>8. Facebook social plugins</"
1927
- "h2><br/>Our online offering uses social plugins (\"plugins\") from the "
1928
- "social network facebook.com operated by Facebook Ireland Ltd., 4 Grand Canal "
1929
- "Square, Grand Canal Harbor, Dublin 2, Ireland (\"Facebook\"). The plugins "
1930
- "are recognizable by one of the Facebook logos (white \"f\" on blue tile, the "
1931
- "terms \"Like\" or a \"thumbs up\" sign) or are marked with the addition "
1932
- "\"Facebook Social Plugin\". The list and appearance of Facebook Social "
1933
- "Plugins can be viewed here: <a href=\"https://developers.facebook.com/docs/"
1934
- "plugins/\" target=\"_blank\">https://developers.facebook.com/docs/plugins/</"
1935
- "a>.<br/><br/>When a user invokes a feature of this online offering that "
1936
- "includes such a plugin, their device establishes a direct connection to the "
1937
- "Facebook servers. The content of the plugin is transmitted by Facebook "
1938
- "directly to the device of the user and incorporated into the online offer. "
1939
- "In the process, user profiles can be created from the processed data. We "
1940
- "therefore have no influence on the amount of data that Facebook collects "
1941
- "with the help of this plugin and therefore informs the users according to "
1942
- "our knowledge.<br/><br/>By integrating plugins, Facebook receives the "
1943
- "information that a user has accessed the corresponding page of the online "
1944
- "offer. If the user is logged in to Facebook, Facebook can assign the visit "
1945
- "to his Facebook account. If users interact with the plugins, for example, "
1946
- "press the Like button or leave a comment, the information is transmitted "
1947
- "from your device directly to Facebook and stored there. If a user is not a "
1948
- "member of Facebook, there is still the possibility that Facebook will find "
1949
- "out and save their IP address. According to Facebook, only an anonymous IP "
1950
- "address is stored in Germany.<br/><br/> The purpose and scope of the data "
1951
- "collection and the further processing and use of the data by Facebook, as "
1952
- "well as the related rights and setting options for protecting the privacy of "
1953
- "users, can be found in Facebooks privacy policy: <a href=\"https://www."
1954
- "facebook.com/about/privacy/\" target=\"_blank\">https://www.facebook.com/"
1955
- "about/privacy/</a>.<br/><br/>If a user is a Facebook member and does not "
1956
- "want Facebook to collect data about him via this online offer and link it to "
1957
- "his member data stored on Facebook, he must log out of Facebook and delete "
1958
- "his cookies before using our online offer. Other settings and possible "
1959
- "revocations regarding the use of data for advertising purposes are possible "
1960
- "within the Facebook profile settings: <a href=\"https://www.facebook.com/"
1961
- "settings?tab=ads\" target=\"_blank\">https://www.facebook.com/settings?"
1962
- "tab=ads</a> or via the US-American site <a href=\"http://www.aboutads.info/"
1963
- "choices/\" target=\"_blank\">http://www.aboutads.info/choices/</a> or the EU "
1964
- "page <a href=\"http://www.youronlinechoices.com/\" target=\"_blank\">http://"
1965
- "www.youronlinechoices.com/</a>. The settings are platform independent, which "
1966
- "means that they are adopted for all devices, such as desktop computers or "
1967
- "mobile devices.<br/><br/><h2>9. Facebook remarketing</h2><br/> Within our on-"
1968
- "line offer so-called \"Facebook pixels\" of the social network Facebook, "
1969
- "which are operated by Facebook Inc., 1 Hacker Way, Menlo Park, CA 94025, "
1970
- "USA, or if you are based in the EU, Facebook Ireland Ltd., 4 Grand Canal "
1971
- "Square, Grand Canal Harbor, Dublin 2, Ireland (\"Facebook\"). <br/><br/>With "
1972
- "the help of the Facebook pixel, Facebook is able to designate the visitors "
1973
- "of our offer as a target group for the presentation of advertisements, so-"
1974
- "called \"Facebook Ads\". Accordingly, we use Facebook pixel to display "
1975
- "Facebook ads only to those Facebook users who have also shown an interest in "
1976
- "our website. In other words, with the help of the Facebook pixel, we want "
1977
- "to make sure that our Facebook ads are in line with the potential interest "
1978
- "of users and are not annoying. With the help of the Facebook pixel, we can "
1979
- "also understand the effectiveness of the Facebook ads for statistical and "
1980
- "market research purposes by seeing if users were redirected to our site "
1981
- "after clicking on a Facebook ad.<br/><br/>Facebook pixel is directly "
1982
- "integrated by Facebook when calling our website and can save a so-called "
1983
- "cookie (a small file) on your device.<br/><br/>If you log in to Facebook or "
1984
- "visit Facebook in a logged-in state, the visit of our offer is noted in "
1985
- "your profile. The data collected about you are anonymous to us, so they do "
1986
- "not give us any indications about the identity of the users. However, the "
1987
- "data is stored and processed by Facebook, so that a connection to the "
1988
- "respective user profile is possible. The processing of the data by Facebook "
1989
- "is part of Facebooks data usage policy. Accordingly, you will learn more "
1990
- "about how the remarketing pixel works and more generally about how Facebook "
1991
- "ads are displayed in Facebooks Data Usage Policy: <a href=\"https://www."
1992
- "facebook.com/policy.php\" target=\"_blank\">https://www.facebook.com/policy."
1993
- "php</a>.<br/><br/> You may object to the data collection and use of your "
1994
- "data by Facebook Pixel to display Facebook Ads. To do this, you can visit "
1995
- "the page set up by Facebook and follow the instructions for the usage-based "
1996
- "advertising settings: <a href=\"https://www.facebook.com/settings?tab=ads\" "
1997
- "target=\"_blank\">https://www.facebook.com/settings?tab=ads</a> or the "
1998
- "contradiction on the US-American site <a href=\"http://www.aboutads.info/"
1999
- "choices/\" target=\"_blank\">http://www.aboutads.info/choices/</a> or the EU "
2000
- "page <a href=\"http://www.youronlinechoices.com/\" target=\"_blank\">http://"
2001
- "www.youronlinechoices.com/</a>. The settings are platform independent, that "
2002
- "means they are adopted for all devices, such as desktop computers or mobile "
2003
- "devices.<br/><br/><h2>10. Newsletter</h2><br/>With the following "
2004
- "information, we will explain the contents of our newsletter, the "
2005
- "registration, sending and statistical evaluation procedures as well as your "
2006
- "right of objection. By subscribing to our newsletter, you agree to the "
2007
- "receipt and the procedures described.<br/><br/>Content of the newsletter: We "
2008
- "send newsletters, e-mails and other electronic notifications with "
2009
- "advertising information (hereinafter \"newsletter\") only with the consent "
2010
- "of the recipient or a legal permission. Insofar as the contents of a "
2011
- "newsletter are concretely described, they are authoritative for the consent "
2012
- "of the users. In general our newsletters contain the following information: "
2013
- "our products, offers, promotions and our company.<br/><br/>Double opt-in and "
2014
- "logging: Registration for our newsletter is done in a so-called double-opt-"
2015
- "in procedure. After registration, you will receive an e-mail asking you to "
2016
- "confirm your registration. This confirmation is necessary so that nobody can "
2017
- "register with an invalid or not owned e-mail addresses. The registration for "
2018
- "the newsletter will be logged in order to prove the registration process "
2019
- "according to the legal requirements. This includes the storage of the login "
2020
- "and the confirmation time, as well as the IP address. Likewise, changes to "
2021
- "your data stored by the newsletter service provider will be logged.<br/><br/"
2022
- ">Newsletter service provider: The newsletter is sent by means of "
2023
- "\"[newsletter_service]\" (hereinafter referred to as \"newsletter service "
2024
- "provider\"). The privacy policy of the newsletter service provider can be "
2025
- "found here: [newsletter_service_privacy_policy].<br/><br/>The e-mail "
2026
- "addresses of our Newsletter recipients, as well as their other data "
2027
- "described in the context of these notes, are stored on the servers of the "
2028
- "newsletter service provider. The newsletter service provider uses this "
2029
- "information to send and evaluate the newsletter on our behalf. <br/><br/"
2030
- ">Furthermore, the newsletter service provider may, according to their "
2031
- "information, use this data to optimize or improve its own services, e.g. for "
2032
- "the technical optimization of the sending and the presentation of the "
2033
- "newsletter or for economic purposes, to determine from which countries the "
2034
- "recipients come. However, the newsletter service provider does not use the "
2035
- "data of our newsletter recipients to contact them for their purposes or to "
2036
- "pass these contacts on to third parties.<br/><br/>Credentials: To subscribe "
2037
- "to the newsletter, it is sufficient to provide your e-mail address.<br/><br/"
2038
- ">Statistical Survey and Analysis - The newsletters contain a so-called \"web-"
2039
- "beacon\", a pixel-sized file that is retrieved from the server of the "
2040
- "newsletter service provider when the newsletter is opened. This request will "
2041
- "initially collect technical information, such as information about the "
2042
- "browser and your system, as well as your IP address and time of retrieval. "
2043
- "This information is used to improve the technical performance of services "
2044
- "based on their specifications or audience and their reading habits, based on "
2045
- "their locations (which can be determined using the IP address) or access "
2046
- "times. <br/><br/>Statistical surveys also include determining if the "
2047
- "newsletters are opened, when they are opened and which links are clicked. "
2048
- "For technical reasons, this information can be assigned to individual "
2049
- "newsletter recipients. However, it is neither our endeavor nor that of the "
2050
- "newsletter service provider to observe individual users. The evaluations "
2051
- "serve us much more to recognize the reading habits of our users and to adapt "
2052
- "our content accordingly or to send different content according to the "
2053
- "interests of our users.<br/><br/>Termination / Revocation - You may "
2054
- "terminate the receipt of our newsletter at any time, that means revoking "
2055
- "your consent. At the same time, your consent for receiving any emails from "
2056
- "the newsletter service provider and the statistical analyzes expire. A "
2057
- "separate revocation of receiving emails from the newsletter service provider "
2058
- "or the statistical evaluation is unfortunately not possible. A link to "
2059
- "cancel the newsletter can be found at the end of each newsletter.<br/><br/"
2060
- "><h2>11. Integration of services and content of third parties</h2><br/>It "
2061
- "may occur that contents or services of third-party providers, such as maps "
2062
- "or fonts from other websites, are included in our online offer. The "
2063
- "inclusion of content from third-party providers always requires that third-"
2064
- "party providers perceive the IP address of the users, since they could not "
2065
- "send the content to the users browser without the IP address.<br/><br/>The "
2066
- "IP address is therefore required for the presentation of this content. "
2067
- "Furthermore, providers of third-party content can set their own cookies and "
2068
- "process users data for their own purposes. In the process, user profiles can "
2069
- "be created from the processed data. We do our best to use this content in a "
2070
- "data-saving and data-avoiding manner as far as possible and select reliable "
2071
- "third-party providers with regard to data security.<br/><br/>The following "
2072
- "presentation provides an overview of third-party providers as well as their "
2073
- "contents and links to their privacy statements, with further details on the "
2074
- "processing of data and partly revocation possibilities (so-called opt-out):"
2075
- "<br/><br/>- External fonts from Google, Inc., <a href=\"https://www.google."
2076
- "com/fonts\" target=\"_blank\">https://www.google.com/fonts</a> (\"Google "
2077
- "Fonts\"). The integration of Google fonts is done by a server call on Google "
2078
- "(usually in the US). Privacy Policy: <a href=\"https://www.google.com/"
2079
- "policies/privacy/\" target=\"_blank\">https://www.google.com/policies/"
2080
- "privacy/</a>, opt-out: <a href=\"https://www.google.com/settings/ads/\" "
2081
- "target=\"_blank\">https://www.google.com/settings/ads/</a>.<br/>- Maps of "
2082
- "the \"Google Maps\" service provided by the third-party Google Inc., 1600 "
2083
- "Amphitheater Parkway, Mountain View, CA 94043, USA. Privacy Policy: <a href="
2084
- "\"https://www.google.com/policies/privacy/ target=\"_blank\">https://www."
2085
- "google.com/policies/privacy/</a>, opt-out: <a href=\"https://www.google.com/"
2086
- "settings/ads/\" target=\"_blank\">https://www.google.com/settings/ads/</a>."
2087
- "<br/>- Third-party Google Inc.s YouTube Platforms, 1600 Amphitheater "
2088
- "Parkway, Mountain View, CA 94043, USA. Privacy Policy: <a href=\"https://www."
2089
- "google.com/policies/privacy/\" target=\"_blank\">https://www.google.com/"
2090
- "policies/privacy/</a>, opt-out: <a href=\"https://www.google.com/settings/"
2091
- "ads/\" target=\"_blank\">https://www.google.com/settings/ads/</a>.<br/><br/"
2092
- "><h2>12. User rights and deletion</h2><br/>Users have the right, upon "
2093
- "request, to receive information free of charge about the personal data that "
2094
- "we have stored about them.<br/>In addition, users have the right to correct "
2095
- "inaccurate data, revoke consent, block the processing and delete their "
2096
- "personal information if justifiable and to file a complaint with the "
2097
- "responsible regulatory authority in the event of unlawful processing.<br/"
2098
- "><br/>The data stored with us are deleted as soon as they are no longer "
2099
- "necessary for their purpose and the deletion does not conflict with any "
2100
- "statutory storage requirements.<br/><br/><h2>13. Changes to the privacy "
2101
- "policy</h2><br/>We reserve the right to change the privacy policy in order "
2102
- "to adapt it to changed legal situations, or to changes in the service and "
2103
- "data processing. However, this only applies to declarations of data "
2104
- "processing. If users consent is required or elements of the privacy policy "
2105
- "contain provisions of the contractual relationship with the users, the "
2106
- "changes will only be made with the consent of the users.<br/>Users are "
2107
- "requested to inform themselves regularly about the content of the privacy "
2108
- "policy.<br/><br/>Status: [save_date]<br/><br/><br/>"
2109
- msgstr ""
2110
- "<h1>Datenschutzerkl&auml;rung und Einwilligungen</h1>\n"
2111
- " \n"
2112
- "Inhaltsverzeichnis\n"
2113
- "1. Zielsetzung und verantwortliche Stelle\n"
2114
- "2. Grunds&auml;tzliche Angaben zur Datenverarbeitung\n"
2115
- "3. Verarbeitung personenbezogener Daten\n"
2116
- "4. Erhebung von Zugriffsdaten\n"
2117
- "5. Cookies &amp; Reichweitenmessung\n"
2118
- "6. Google Analytics\n"
2119
- "7. Google-Re/Marketing-Services\n"
2120
- "8. Facebook Social Plugins\n"
2121
- "9. Facebook Remarketing\n"
2122
- "10. Newsletter\n"
2123
- "11. Einbindung von Diensten und Inhalten Dritter\n"
2124
- "12. Rechte der Nutzer und L&ouml;schung\n"
2125
- "13. &Auml;nderungen der Datenschutzerkl&auml;rung\n"
2126
- "\n"
2127
- "<h2>1. Zielsetzung und verantwortliche Stelle</h2>\n"
2128
- "\n"
2129
- "Diese Datenschutzerkl&auml;rung kl&auml;rt &uuml;ber die Art, den Umfang und "
2130
- "Zweck der Verarbeitung (u.a. Erhebung, Verarbeitung und Nutzung sowie "
2131
- "Einholung von Einwilligungen) von personenbezogenen Daten innerhalb unseres "
2132
- "Onlineangebotes und der mit ihm verbundenen Webseiten, Funktionen und "
2133
- "Inhalte (nachfolgend gemeinsam bezeichnet als \"Onlineangebot\" oder "
2134
- "\"Website\") auf. Die Datenschutzerkl&auml;rung gilt unabh&auml;ngig von den "
2135
- "verwendeten Domains, Systemen, Plattformen und Ger&auml;ten (z.B. Desktop "
2136
- "oder Mobile) auf denen das Onlineangebot ausgef&uuml;hrt wird.\n"
2137
- "\n"
2138
- "Anbieter des Onlineangebotes und die datenschutzrechtlich verantwortliche "
2139
- "Stelle ist [company_name], Inhaber: [company_owner], [adress_street], "
2140
- "[adress_zip_location] (nachfolgend bezeichnet als \"AnbieterIn\", \"wir\" "
2141
- "oder \"uns\"). F&uuml;r die Kontaktm&ouml;glichkeiten verweisen wir auf "
2142
- "unser Impressum\n"
2143
- "\n"
2144
- "Der Begriff \"Nutzer\" umfasst alle Kunden und Besucher unseres "
2145
- "Onlineangebotes. Die verwendeten Begrifflichkeiten, wie z.B. \"Nutzer\" sind "
2146
- "geschlechtsneutral zu verstehen.\n"
2147
- "\n"
2148
- "<h2>2. Grunds&auml;tzliche Angaben zur Datenverarbeitung</h2>\n"
2149
- "\n"
2150
- "Wir verarbeiten personenbezogene Daten der Nutzer nur unter Einhaltung der "
2151
- "einschl&auml;gigen Datenschutzbestimmungen entsprechend den Geboten der "
2152
- "Datensparsamkeit- und Datenvermeidung. Das bedeutet die Daten der Nutzer "
2153
- "werden nur beim Vorliegen einer gesetzlichen Erlaubnis, insbesondere wenn "
2154
- "die Daten zur Erbringung unserer vertraglichen Leistungen sowie Online-"
2155
- "Services erforderlich, bzw. gesetzlich vorgeschrieben sind oder beim "
2156
- "Vorliegen einer Einwilligung verarbeitet.\n"
2157
- "\n"
2158
- "Wir treffen organisatorische, vertragliche und technische "
2159
- "Sicherheitsma&szlig;nahmen entsprechend dem Stand der Technik, um sicher zu "
2160
- "stellen, dass die Vorschriften der Datenschutzgesetze eingehalten werden und "
2161
- "um damit die durch uns verarbeiteten Daten gegen zuf&auml;llige oder "
2162
- "vors&auml;tzliche Manipulationen, Verlust, Zerst&ouml;rung oder gegen den "
2163
- "Zugriff unberechtigter Personen zu sch&uuml;tzen.\n"
2164
- "\n"
2165
- "Sofern im Rahmen dieser Datenschutzerkl&auml;rung Inhalte, Werkzeuge oder "
2166
- "sonstige Mittel von anderen Anbietern (nachfolgend gemeinsam bezeichnet als "
2167
- "\"Dritt-Anbieter\") eingesetzt werden und deren genannter Sitz im Ausland "
2168
- "ist, ist davon auszugehen, dass ein Datentransfer in die Sitzstaaten der "
2169
- "Dritt-Anbieter stattfindet. Die &Uuml;bermittlung von Daten in Drittstaaten "
2170
- "erfolgt entweder auf Grundlage einer gesetzlichen Erlaubnis, einer "
2171
- "Einwilligung der Nutzer oder spezieller Vertragsklauseln, die eine "
2172
- "gesetzlich vorausgesetzte Sicherheit der Daten gew&auml;hrleisten.\n"
2173
- "\n"
2174
- "<h2>3. Verarbeitung personenbezogener Daten</h2>\n"
2175
- "\n"
2176
- "Die personenbezogenen Daten werden, neben den ausdr&uuml;cklich in dieser "
2177
- "Datenschutzerkl&auml;rung genannten Verwendung, f&uuml;r die folgenden "
2178
- "Zwecke auf Grundlage gesetzlicher Erlaubnisse oder Einwilligungen der Nutzer "
2179
- "verarbeitet:\n"
2180
- "- Die Zurverf&uuml;gungstellung, Ausf&uuml;hrung, Pflege, Optimierung und "
2181
- "Sicherung unserer Dienste-, Service- und Nutzerleistungen;\n"
2182
- "- Die Gew&auml;hrleistung eines effektiven Kundendienstes und technischen "
2183
- "Supports.\n"
2184
- "\n"
2185
- "Wir &uuml;bermitteln die Daten der Nutzer an Dritte nur, wenn dies f&uuml;r "
2186
- "Abrechnungszwecke notwendig ist (z.B. an einen Zahlungsdienstleister) oder "
2187
- "f&uuml;r andere Zwecke, wenn diese notwendig sind, um unsere vertraglichen "
2188
- "Verpflichtungen gegen&uuml;ber den Nutzern zu erf&uuml;llen (z.B. "
2189
- "Adressmitteilung an Lieferanten).\n"
2190
- "\n"
2191
- "Bei der Kontaktaufnahme mit uns (per Kontaktformular oder Email) werden die "
2192
- "Angaben des Nutzers zwecks Bearbeitung der Anfrage sowie f&uuml;r den Fall, "
2193
- "dass Anschlussfragen entstehen, gespeichert.\n"
2194
- "Personenbezogene Daten werden gel&ouml;scht, sofern sie ihren "
2195
- "Verwendungszweck erf&uuml;llt haben und der L&ouml;schung keine "
2196
- "Aufbewahrungspflichten entgegenstehen.\n"
2197
- "\n"
2198
- "<h2>4. Erhebung von Zugriffsdaten</h2>\n"
2199
- "\n"
2200
- "Wir erheben Daten &uuml;ber jeden Zugriff auf den Server, auf dem sich "
2201
- "dieser Dienst befindet (so genannte Serverlogfiles). Zu den Zugriffsdaten "
2202
- "geh&ouml;ren Name der abgerufenen Webseite, Datei, Datum und Uhrzeit des "
2203
- "Abrufs, &uuml;bertragene Datenmenge, Meldung &uuml;ber erfolgreichen Abruf, "
2204
- "Browsertyp nebst Version, das Betriebssystem des Nutzers, Referrer URL (die "
2205
- "zuvor besuchte Seite), IP-Adresse und der anfragende Provider.\n"
2206
- "\n"
2207
- "Wir verwenden die Protokolldaten ohne Zuordnung zur Person des Nutzers oder "
2208
- "sonstiger Profilerstellung entsprechend den gesetzlichen Bestimmungen nur "
2209
- "f&uuml;r statistische Auswertungen zum Zweck des Betriebs, der Sicherheit "
2210
- "und der Optimierung unseres Onlineangebotes. Wir behalten uns jedoch vor, "
2211
- "die Protokolldaten nachtr&auml;glich zu &uuml;berpr&uuml;fen, wenn aufgrund "
2212
- "konkreter Anhaltspunkte der berechtigte Verdacht einer rechtswidrigen "
2213
- "Nutzung besteht.\n"
2214
- "\n"
2215
- "<h2>5. Cookies &amp; Reichweitenmessung</h2>\n"
2216
- "\n"
2217
- "Cookies sind Informationen, die von unserem Webserver oder Webservern "
2218
- "Dritter an die Web-Browser der Nutzer &uuml;bertragen und dort f&uuml;r "
2219
- "einen sp&auml;teren Abruf gespeichert werden. &Uuml;ber den Einsatz von "
2220
- "Cookies im Rahmen pseudonymer Reichweitenmessung werden die Nutzer im Rahmen "
2221
- "dieser Datenschutzerkl&auml;rung informiert.\n"
2222
- "\n"
2223
- "Die Betrachtung dieses Onlineangebotes ist auch unter Ausschluss von Cookies "
2224
- "m&ouml;glich. Falls die Nutzer nicht m&ouml;chten, dass Cookies auf ihrem "
2225
- "Rechner gespeichert werden, werden sie gebeten die entsprechende Option in "
2226
- "den Systemeinstellungen ihres Browsers zu deaktivieren. Gespeicherte Cookies "
2227
- "k&ouml;nnen in den Systemeinstellungen des Browsers gel&ouml;scht werden. "
2228
- "Der Ausschluss von Cookies kann zu Funktionseinschr&auml;nkungen dieses "
2229
- "Onlineangebotes f&uuml;hren.\n"
2230
- "\n"
2231
- "Es besteht die M&ouml;glichkeit, viele Online-Anzeigen-Cookies von "
2232
- "Unternehmen &uuml;ber die US-amerikanische Seite <a href=\"http://www."
2233
- "aboutads.info/choices\" target=\"_blank\">http://www.aboutads.info/choices</"
2234
- "a> oder die EU-Seite <a href=\"http://www.youronlinechoices.com/uk/your-ad-"
2235
- "choices/\" target=\"_blank\">http://www.youronlinechoices.com/uk/your-ad-"
2236
- "choices/</a> zu verwalten.\n"
2237
- "\n"
2238
- "<h2>6. Google Analytics</h2>\n"
2239
- "\n"
2240
- "Wir setzen Google Analytics, einen Webanalysedienst der Google Inc. (\"Google"
2241
- "\") ein. Google verwendet Cookies. Die durch das Cookie erzeugten "
2242
- "Informationen &uuml;ber Benutzung des Onlineangebotes durch die Nutzer "
2243
- "werden in der Regel an einen Server von Google in den USA &uuml;bertragen "
2244
- "und dort gespeichert.\n"
2245
- "\n"
2246
- "Google wird diese Informationen in unserem Auftrag benutzen, um die Nutzung "
2247
- "unseres Onlineangebotes durch die Nutzer auszuwerten, um Reports &uuml;ber "
2248
- "die Aktivit&auml;ten innerhalb dieses Onlineangebotes zusammenzustellen und "
2249
- "um weitere mit der Nutzung dieses Onlineangebotes und der Internetnutzung "
2250
- "verbundene Dienstleistungen uns gegen&uuml;ber zu erbringen. Dabei k&ouml;"
2251
- "nnen aus den verarbeiteten Daten pseudonyme Nutzungsprofile der Nutzer "
2252
- "erstellt werden.\n"
2253
- "\n"
2254
- "Wir setzen Google Analytics nur mit aktivierter IP-Anonymisierung ein. Das "
2255
- "bedeutet, die IP-Adresse der Nutzer wird von Google innerhalb von "
2256
- "Mitgliedstaaten der Europ&auml;ischen Union oder in anderen Vertragsstaaten "
2257
- "des Abkommens &uuml;ber den Europ&auml;ischen Wirtschaftsraum gek&uuml;rzt. "
2258
- "Nur in Ausnahmef&auml;llen wird die volle IP-Adresse an einen Server von "
2259
- "Google in den USA &uuml;bertragen und dort gek&uuml;rzt.\n"
2260
- "\n"
2261
- "Die von dem Browser des Nutzers &uuml;bermittelte IP-Adresse wird nicht mit "
2262
- "anderen Daten von Google zusammengef&uuml;hrt. Die Nutzer k&ouml;nnen die "
2263
- "Speicherung der Cookies durch eine entsprechende Einstellung ihrer Browser-"
2264
- "Software verhindern; die Nutzer k&ouml;nnen dar&uuml;ber hinaus die "
2265
- "Erfassung der durch das Cookie erzeugten und auf ihre Nutzung des "
2266
- "Onlineangebotes bezogenen Daten an Google sowie die Verarbeitung dieser "
2267
- "Daten durch Google verhindern, indem sie das unter dem folgenden Link "
2268
- "verf&uuml;gbare Browser-Plugin herunterladen und installieren: <a href="
2269
- "\"http://tools.google.com/dlpage/gaoptout?hl=de\" target=\"_blank\">http://"
2270
- "tools.google.com/dlpage/gaoptout?hl=de</a>.\n"
2271
- "\n"
2272
- "Weitere Informationen zur Datennutzung zu Werbezwecken durch Google, "
2273
- "Einstellungs- und Widerspruchsm&ouml;glichkeiten erfahren Sie auf den "
2274
- "Webseiten von Google: <a href=\"https://www.google.com/intl/de/policies/"
2275
- "privacy/partners\" target=\"_blank\">https://www.google.com/intl/de/policies/"
2276
- "privacy/partners</a> (\"Datennutzung durch Google bei Ihrer Nutzung von "
2277
- "Websites oder Apps unserer Partner\"), <a href=\"http://www.google.com/"
2278
- "policies/technologies/ads\" target=\"_blank\">http://www.google.com/policies/"
2279
- "technologies/ads</a> (\"Datennutzung zu Werbezwecken\"), <a href=\"http://"
2280
- "www.google.de/settings/ads\" target=\"_blank\">http://www.google.de/settings/"
2281
- "ads</a> (\"Informationen verwalten, die Google verwendet, um Ihnen Werbung "
2282
- "einzublenden\") und <a href=\"http://www.google.com/ads/preferences\" target="
2283
- "\"_blank\">http://www.google.com/ads/preferences</a> (\"Bestimmen Sie, "
2284
- "welche Werbung Google Ihnen zeigt\").\n"
2285
- "\n"
2286
- "<h2>7. Google-Re/Marketing-Services</h2>\n"
2287
- "\n"
2288
- "Wir nutzen die Marketing- und Remarketing-Dienste (kurz \"Google-Marketing-"
2289
- "Services\") der Google Inc., 1600 Amphitheatre Parkway, Mountain View, CA "
2290
- "94043, USA, (\"Google\").\n"
2291
- "\n"
2292
- "Die Google-Marketing-Services erlauben uns Werbeanzeigen f&uuml;r und auf "
2293
- "unserer Website gezielter anzuzeigen, um Nutzern nur Anzeigen zu pr&auml;"
2294
- "sentieren, die potentiell deren Interessen entsprechen. Falls Nutzer z.B. "
2295
- "Anzeigen f&uuml;r Produkte angezeigt werden, f&uuml;r die er sich auf "
2296
- "anderen Webseiten interessiert hat, spricht man hierbei vom \"Remarketing\". "
2297
- "Zu diesen Zwecken wird bei Aufruf unserer und anderer Webseiten, auf denen "
2298
- "Google-Marketing-Services aktiv sind, unmittelbar durch Google ein Code von "
2299
- "Google ausgef&uuml;hrt und es werden in die Website sog. (Re)marketing-Tags "
2300
- "(unsichtbare Grafiken oder Code, auch als \"Web Beacons\" bezeichnet) in die "
2301
- "Webseite eingebunden. Mit deren Hilfe wird auf dem Ger&auml;t der Nutzer ein "
2302
- "individuelles Cookie, d.h. eine kleine Datei abgespeichert (statt Cookies "
2303
- "k&ouml;nnen auch vergleichbare Technologien verwendet werden). Die Cookies "
2304
- "k&ouml;nnen von verschiedenen Domains gesetzt werden, unter anderem von "
2305
- "google.com, doubleclick.net, invitemedia.com, admeld.com, googlesyndication."
2306
- "com oder googleadservices.com. In dieser Datei wird vermerkt, welche "
2307
- "Webseiten der Nutzer aufgesucht, f&uuml;r welche Inhalte er sich "
2308
- "interessiert und welche Angebote er geklickt hat, ferner technische "
2309
- "Informationen zum Browser und Betriebssystem, verweisende Webseiten, "
2310
- "Besuchszeit sowie weitere Angaben zur Nutzung des Onlineangebotes. Es wird "
2311
- "ebenfalls die IP-Adresse der Nutzer erfasst, wobei wir im Rahmen von Google-"
2312
- "Analytics mitteilen, dass die IP-Adresse innerhalb von Mitgliedstaaten der "
2313
- "Europ&auml;ischen Union oder in anderen Vertragsstaaten des Abkommens &uuml;"
2314
- "ber den Europ&auml;ischen Wirtschaftsraum gek&uuml;rzt und nur in "
2315
- "Ausnahmef&auml;llen ganz an einen Server von Google in den USA &uuml;"
2316
- "bertragen und dort gek&uuml;rzt wird. Die IP-Adresse wird nicht mit Daten "
2317
- "des Nutzers innerhalb von anderen Angeboten von Google zusammengef&uuml;hrt. "
2318
- "Diese vorstehend genannten Informationen k&ouml;nnen auch mit solchen "
2319
- "Informationen aus anderen Quellen verbunden werden. Wenn der Nutzer "
2320
- "anschlie&szlig;end andere Webseiten besucht, k&ouml;nnen ihm entsprechend "
2321
- "seiner Interessen die auf ihn abgestimmten Anzeigen angezeigt werden.\n"
2322
- "\n"
2323
- "Die Daten der Nutzer werden im Rahmen der Google-Marketing-Services "
2324
- "pseudonym verarbeitet. D.h. Google speichert und verarbeitet z.B. nicht den "
2325
- "Namen oder E-Mailadresse der Nutzer, sondern verarbeitet die relevanten "
2326
- "Daten Cookie-bezogen innerhalb pseudonymer Nutzer-Profile. D.h. aus der "
2327
- "Sicht von Google werden die Anzeigen nicht f&uuml;r eine konkret "
2328
- "identifizierte Person verwaltet und angezeigt, sondern f&uuml;r den Cookie-"
2329
- "Inhaber, unabh&auml;ngig davon wer dieser Cookie-Inhaber ist. Dies gilt "
2330
- "nicht, wenn ein Nutzer Google ausdr&uuml;cklich erlaubt hat, die Daten ohne "
2331
- "diese Pseudonymisierung zu verarbeiten. Die von \"DoubleClick\" &uuml;ber "
2332
- "die Nutzer gesammelten Informationen werden an Google &uuml;bermittelt und "
2333
- "auf Googles Servern in den USA gespeichert.\n"
2334
- "\n"
2335
- "Zu den von uns eingesetzten Google-Marketing-Services geh&ouml;rt u.a. das "
2336
- "Online-Werbeprogramm \"Google AdWords\". Im Fall von Google AdWords, "
2337
- "erh&auml;lt jeder AdWords-Kunde ein anderes \"Conversion-Cookie\". Cookies "
2338
- "k&ouml;nnen somit nicht &uuml;ber die Websites von AdWords-Kunden "
2339
- "nachverfolgt werden. Die mit Hilfe des Cookies eingeholten Informationen "
2340
- "dienen dazu, Conversion-Statistiken f&uuml;r AdWords-Kunden zu erstellen, "
2341
- "die sich f&uuml;r Conversion-Tracking entschieden haben. Die AdWords-Kunden "
2342
- "erfahren die Gesamtanzahl der Nutzer, die auf ihre Anzeige geklickt haben "
2343
- "und zu einer mit einem Conversion-Tracking-Tag versehenen Seite "
2344
- "weitergeleitet wurden. Sie erhalten jedoch keine Informationen, mit denen "
2345
- "sich Nutzer pers&ouml;nlich identifizieren lassen.\n"
2346
- "\n"
2347
- "Wir binden auf Grundlage des Google-Marketing-Services \"DoubleClick\" "
2348
- "Werbeanzeigen Dritter ein. DoubleClick verwendet Cookies, mit dem Google und "
2349
- "seinen Partner-Websites, die Schaltung von Anzeigen auf Basis der Besuche "
2350
- "von Nutzern auf dieser Website bzw. anderen Websites im Internet erm&ouml;"
2351
- "glicht wird.\n"
2352
- "\n"
2353
- "Wir binden ferner auf Grundlage des Google-Marketing-Services \"AdSense\" "
2354
- "Werbeanzeigen Dritter ein. AdSense verwendet Cookies, mit dem Google und "
2355
- "seinen Partner-Websites, die Schaltung von Anzeigen auf Basis der Besuche "
2356
- "von Nutzern auf dieser Website bzw. anderen Websites im Internet erm&ouml;"
2357
- "glicht wird.\n"
2358
- "\n"
2359
- "Ein weiterer von uns genutzter Google-Marketing-Service ist der \"Google Tag "
2360
- "Manager\", mit dessen Hilfe weitere Google Analyse- und Marketing-Dienste in "
2361
- "unsere Website eingebunden werden k&ouml;nnen (z.B. \"AdWords\", "
2362
- "\"DoubleClick\" oder \"Google Analytics\").\n"
2363
- "\n"
2364
- "Weitere Informationen zur Datennutzung zu Marketingzwecken durch Google, "
2365
- "erfahren Sie auf der &Uuml;bersichtsseite: <a href=\"https://www.google.com/"
2366
- "policies/technologies/ads\" target=\"_blank\">https://www.google.com/"
2367
- "policies/technologies/ads</a>, die Datenschutzerkl&auml;rung von Google ist "
2368
- "unter <a href=\"https://www.google.com/policies/privacy\" target=\"_blank"
2369
- "\">https://www.google.com/policies/privacy</a> abrufbar.\n"
2370
- "\n"
2371
- "Wenn Sie der Erfassung durch Google-Marketing-Services widersprechen m&ouml;"
2372
- "chten, k&ouml;nnen Sie die von Google gestellten Einstellungs- und Opt-Out-"
2373
- "M&ouml;glichkeiten nutzen: <a href=\"http://www.google.com/ads/preferences\" "
2374
- "target=\"_blank\">http://www.google.com/ads/preferences</a>.\n"
2375
- "\n"
2376
- "<h2>8. Facebook Social Plugins</h2>\n"
2377
- "\n"
2378
- "Unser Onlineangebot verwendet Social Plugins (\"Plugins\") des sozialen "
2379
- "Netzwerkes facebook.com, welches von der Facebook Ireland Ltd., 4 Grand "
2380
- "Canal Square, Grand Canal Harbour, Dublin 2, Irland betrieben wird "
2381
- "(\"Facebook\"). Die Plugins sind an einem der Facebook Logos erkennbar "
2382
- "(wei&szlig;es \"f\" auf blauer Kachel, den Begriffen \"Like\", \"Gef&auml;"
2383
- "llt mir\" oder einem \"Daumen hoch\"-Zeichen) oder sind mit dem Zusatz "
2384
- "\"Facebook Social Plugin\" gekennzeichnet. Die Liste und das Aussehen der "
2385
- "Facebook Social Plugins kann hier eingesehen werden: <a href=\"https://"
2386
- "developers.facebook.com/docs/plugins/\" target=\"_blank\">https://developers."
2387
- "facebook.com/docs/plugins/</a>.\n"
2388
- "\n"
2389
- "Wenn ein Nutzer eine Funktion dieses Onlineangebotes aufruft, die ein "
2390
- "solches Plugin enth&auml;lt, baut sein Ger&auml;t eine direkte Verbindung "
2391
- "mit den Servern von Facebook auf. Der Inhalt des Plugins wird von Facebook "
2392
- "direkt an das Ger&auml;t des Nutzers &uuml;bermittelt und von diesem in das "
2393
- "Onlineangebot eingebunden. Dabei k&ouml;nnen aus den verarbeiteten Daten "
2394
- "Nutzungsprofile der Nutzer erstellt werden. Wir haben daher keinen Einfluss "
2395
- "auf den Umfang der Daten, die Facebook mit Hilfe dieses Plugins erhebt und "
2396
- "informiert die Nutzer daher entsprechend unserem Kenntnisstand.\n"
2397
- "\n"
2398
- "Durch die Einbindung der Plugins erh&auml;lt Facebook die Information, dass "
2399
- "ein Nutzer die entsprechende Seite des Onlineangebotes aufgerufen hat. Ist "
2400
- "der Nutzer bei Facebook eingeloggt, kann Facebook den Besuch seinem Facebook-"
2401
- "Konto zuordnen. Wenn Nutzer mit den Plugins interagieren, zum Beispiel den "
2402
- "Like Button bet&auml;tigen oder einen Kommentar abgeben, wird die "
2403
- "entsprechende Information von Ihrem Ger&auml;t direkt an Facebook &uuml;"
2404
- "bermittelt und dort gespeichert. Falls ein Nutzer kein Mitglied von Facebook "
2405
- "ist, besteht trotzdem die M&ouml;glichkeit, dass Facebook seine IP-Adresse "
2406
- "in Erfahrung bringt und speichert. Laut Facebook wird in Deutschland nur "
2407
- "eine anonymisierte IP-Adresse gespeichert.\n"
2408
- "\n"
2409
- "Zweck und Umfang der Datenerhebung und die weitere Verarbeitung und Nutzung "
2410
- "der Daten durch Facebook sowie die diesbez&uuml;glichen Rechte und "
2411
- "Einstellungsm&ouml;glichkeiten zum Schutz der Privatsph&auml;re der Nutzer, "
2412
- "k&ouml;nnen diese den Datenschutzhinweisen von Facebook entnehmen: <a href="
2413
- "\"https://www.facebook.com/about/privacy/\" target=\"_blank\">https://www."
2414
- "facebook.com/about/privacy/</a>.\n"
2415
- "\n"
2416
- "Wenn ein Nutzer Facebookmitglied ist und nicht m&ouml;chte, dass Facebook "
2417
- "&uuml;ber dieses Onlineangebot Daten &uuml;ber ihn sammelt und mit seinen "
2418
- "bei Facebook gespeicherten Mitgliedsdaten verkn&uuml;pft, muss er sich vor "
2419
- "der Nutzung unseres Onlineangebotes bei Facebook ausloggen und seine Cookies "
2420
- "l&ouml;schen. Weitere Einstellungen und Widerspr&uuml;che zur Nutzung von "
2421
- "Daten f&uuml;r Werbezwecke, sind innerhalb der Facebook-Profileinstellungen "
2422
- "m&ouml;glich: <a href=\"https://www.facebook.com/settings?tab=ads\" target="
2423
- "\"_blank\">https://www.facebook.com/settings?tab=ads</a> oder &uuml;ber die "
2424
- "US-amerikanische Seite <a href=\"http://www.aboutads.info/choices/\" target="
2425
- "\"_blank\">http://www.aboutads.info/choices/</a> oder die EU-Seite <a href="
2426
- "\"http://www.youronlinechoices.com/\" target=\"_blank\">http://www."
2427
- "youronlinechoices.com/</a>. Die Einstellungen erfolgen plattformunabh&auml;"
2428
- "ngig, d.h. sie werden f&uuml;r alle Ger&auml;te, wie Desktopcomputer oder "
2429
- "mobile Ger&auml;te &uuml;bernommen.\n"
2430
- "\n"
2431
- "<h2>9. Facebook Remarketing</h2>\n"
2432
- "\n"
2433
- "Innerhalb unseres Onlineangebotes werden sog. \"Facebook-Pixel\" des "
2434
- "sozialen Netzwerkes Facebook, welches von der Facebook Inc., 1 Hacker Way, "
2435
- "Menlo Park, CA 94025, USA, bzw. falls Sie in der EU ans&auml;ssig sind, "
2436
- "Facebook Ireland Ltd., 4 Grand Canal Square, Grand Canal Harbour, Dublin 2, "
2437
- "Irland betrieben wird (\"Facebook\"), eingesetzt. Mit Hilfe des Facebook-"
2438
- "Pixels ist es Facebook m&ouml;glich, die Besucher unseres Angebotes als "
2439
- "Zielgruppe f&uuml;r die Darstellung von Anzeigen, sog. \"Facebook-Ads\" zu "
2440
- "bestimmen. Dementsprechend setzen wir das Facebook -Pixel ein, um die durch "
2441
- "uns geschalteten Facebook-Ads nur solchen Facebook-Nutzern anzuzeigen, die "
2442
- "auch ein Interesse an unserem Internetangebot gezeigt haben. Das hei&szlig;"
2443
- "t, mit Hilfe des Facebook -Pixels m&ouml;chten wir sicherstellen, dass "
2444
- "unsere Facebook-Ads dem potentiellen Interesse der Nutzer entsprechen und "
2445
- "nicht bel&auml;stigend wirken. Mit Hilfe des Facebook-Pixels k&ouml;nnen wir "
2446
- "ferner die Wirksamkeit der Facebook-Werbeanzeigen f&uuml;r statistische und "
2447
- "Marktforschungszwecke nachvollziehen, in dem wir sehen ob Nutzer nachdem "
2448
- "Klick auf eine Facebook-Werbeanzeige auf unsere Website weitergeleitet "
2449
- "wurden.\n"
2450
- "\n"
2451
- "Der Facebook-Pixel wird beim Aufruf unserer Webseiten unmittelbar durch "
2452
- "Facebook eingebunden und k&ouml;nnen auf Ihrem Ger&auml;t ein sog. Cookie, d."
2453
- "h. eine kleine Datei abspeichern. Wenn Sie sich anschlie&szlig;end bei "
2454
- "Facebook einloggen oder im eingeloggten Zustand Facebook besuchen, wird der "
2455
- "Besuch unseres Angebotes in Ihrem Profil vermerkt. Die &uuml;ber Sie "
2456
- "erhobenen Daten sind f&uuml;r uns anonym, bieten uns also keine R&uuml;"
2457
- "ckschl&uuml;sse auf die Identit&auml;t der Nutzer. Allerdings werden die "
2458
- "Daten von Facebook gespeichert und verarbeitet, sodass eine Verbindung zum "
2459
- "jeweiligen Nutzerprofil m&ouml;glich ist. Die Verarbeitung der Daten durch "
2460
- "Facebook erfolgt im Rahmen von Facebooks Datenverwendungsrichtlinie. "
2461
- "Dementsprechend erhalten Sie weitere Informationen zur Funktionsweise des "
2462
- "Remarketing-Pixels und generell zur Darstellung von Facebook-Ads, in der "
2463
- "Datenverwendungsrichtlinie von Facebook: <a href=\"https://www.facebook.com/"
2464
- "policy.php\" target=\"_blank\">https://www.facebook.com/policy.php</a>.\n"
2465
- "\n"
2466
- "Sie k&ouml;nnen der Erfassung durch den Facebook-Pixel und Verwendung Ihrer "
2467
- "Daten zur Darstellung von Facebook-Ads widersprechen. Hierzu k&ouml;nnen Sie "
2468
- "die von Facebook eingerichtete Seite aufrufen und dort die Hinweise zu den "
2469
- "Einstellungen nutzungsbasierter Werbung befolgen: <a href=\"https://www."
2470
- "facebook.com/settings?tab=ads\" target=\"_blank\">https://www.facebook.com/"
2471
- "settings?tab=ads</a> oder den Widerspruch &uuml;ber die US-amerikanische "
2472
- "Seite <a href=\"http://www.aboutads.info/choices/\" target=\"_blank\">http://"
2473
- "www.aboutads.info/choices/</a> oder die EU-Seite <a href=\"http://www."
2474
- "youronlinechoices.com/\" target=\"_blank\">http://www.youronlinechoices.com/"
2475
- "</a> erkl&auml;ren. Die Einstellungen erfolgen plattformunabh&auml;ngig, d."
2476
- "h. sie werden f&uuml;r alle Ger&auml;te, wie Desktopcomputer oder mobile "
2477
- "Ger&auml;te &uuml;bernommen.\n"
2478
- "\n"
2479
- "<h2>10. Newsletter</h2>\n"
2480
- "\n"
2481
- "Mit den nachfolgenden Hinweisen kl&auml;ren wir Sie &uuml;ber die Inhalte "
2482
- "unseres Newsletters sowie das Anmelde-, Versand- und das statistische "
2483
- "Auswertungsverfahren sowie Ihre Widerspruchsrechte auf. Indem Sie unseren "
2484
- "Newsletter abonnieren, erkl&auml;ren Sie sich mit dem Empfang und den "
2485
- "beschriebenen Verfahren einverstanden.\n"
2486
- "\n"
2487
- "Inhalt des Newsletters: Wir versenden Newsletter, E-Mails und weitere "
2488
- "elektronische Benachrichtigungen mit werblichen Informationen (nachfolgend "
2489
- "\"Newsletter\") nur mit der Einwilligung der Empf&auml;nger oder einer "
2490
- "gesetzlichen Erlaubnis. Sofern im Rahmen einer Anmeldung zum Newsletter "
2491
- "dessen Inhalte konkret umschrieben werden, sind sie f&uuml;r die "
2492
- "Einwilligung der Nutzer ma&szlig;geblich. Im &Uuml;brigen enthalten unsere "
2493
- "Newsletter folgende Informationen: unsere Produkte, Angebote, Aktionen und "
2494
- "unser Unternehmen.\n"
2495
- "\n"
2496
- "Double-Opt-In und Protokollierung: Die Anmeldung zu unserem Newsletter "
2497
- "erfolgt in einem sog. Double-Opt-In-Verfahren. D.h. Sie erhalten nach der "
2498
- "Anmeldung eine E-Mail, in der Sie um die Best&auml;tigung Ihrer Anmeldung "
2499
- "gebeten werden. Diese Best&auml;tigung ist notwendig, damit sich niemand mit "
2500
- "fremden E-Mailadressen anmelden kann. Die Anmeldungen zum Newsletter werden "
2501
- "protokolliert, um den Anmeldeprozess entsprechend den rechtlichen "
2502
- "Anforderungen nachweisen zu k&ouml;nnen. Hierzu geh&ouml;rt die Speicherung "
2503
- "des Anmelde- und des Best&auml;tigungszeitpunkts, als auch der IP-Adresse. "
2504
- "Ebenso werden die &Auml;nderungen Ihrer bei dem Versanddienstleister "
2505
- "gespeicherten Daten protokolliert.\n"
2506
- "\n"
2507
- "Versanddienstleister: Der Versand der Newsletter erfolgt mittels von "
2508
- "\"[newsletter_service]\" (nachfolgend bezeichnet als \"Versanddienstleister"
2509
- "\"). Die Datenschutzbestimmungen des Versanddienstleisters k&ouml;nnen Sie "
2510
- "hier einsehen: [newsletter_service_privacy_policy].\n"
2511
- "\n"
2512
- "Die E-Mail-Adressen unserer Newsletterempf&auml;nger, als auch deren "
2513
- "weitere, im Rahmen dieser Hinweise beschriebenen Daten, werden auf den "
2514
- "Servern des Versanddienstleisters gespeichert. Der Versanddienstleister "
2515
- "verwendet diese Informationen zum Versand und zur Auswertung der Newsletter "
2516
- "in unserem Auftrag. Des Weiteren kann der Versanddienstleister nach eigenen "
2517
- "Informationen diese Daten zur Optimierung oder Verbesserung der eigenen "
2518
- "Services nutzen, z.B. zur technischen Optimierung des Versandes und der "
2519
- "Darstellung der Newsletter oder f&uuml;r wirtschaftliche Zwecke, um zu "
2520
- "bestimmen aus welchen L&auml;ndern die Empf&auml;nger kommen. Der "
2521
- "Versanddienstleister nutzt die Daten unserer Newsletterempf&auml;nger jedoch "
2522
- "nicht, um diese selbst anzuschreiben oder an Dritte weiterzugeben.\n"
2523
- "\n"
2524
- "Anmeldedaten: Um sich f&uuml;r den Newsletter anzumelden, reicht es aus, "
2525
- "wenn Sie Ihre E-Mailadresse angeben. \n"
2526
- "\n"
2527
- "Statistische Erhebung und Analysen - Die Newsletter enthalten einen sog. "
2528
- "\"web-beacon\", d.h. eine pixelgro&szlig;e Datei, die beim &Ouml;ffnen des "
2529
- "Newsletters von dem Server des Versanddienstleisters abgerufen wird. Im "
2530
- "Rahmen dieses Abrufs werden zun&auml;chst technische Informationen, wie "
2531
- "Informationen zum Browser und Ihrem System, als auch Ihre IP-Adresse und "
2532
- "Zeitpunkt des Abrufs erhoben. Diese Informationen werden zur technischen "
2533
- "Verbesserung der Services anhand der technischen Daten oder der Zielgruppen "
2534
- "und ihres Leseverhaltens anhand derer Abruforte (die mit Hilfe der IP-"
2535
- "Adresse bestimmbar sind) oder der Zugriffszeiten genutzt. Zu den "
2536
- "statistischen Erhebungen geh&ouml;rt ebenfalls die Feststellung, ob die "
2537
- "Newsletter ge&ouml;ffnet werden, wann sie ge&ouml;ffnet werden und welche "
2538
- "Links geklickt werden. Diese Informationen k&ouml;nnen aus technischen "
2539
- "Gr&uuml;nden zwar den einzelnen Newsletterempf&auml;ngern zugeordnet werden. "
2540
- "Es ist jedoch weder unser Bestreben, noch das des Versanddienstleisters, "
2541
- "einzelne Nutzer zu beobachten. Die Auswertungen dienen uns viel mehr dazu, "
2542
- "die Lesegewohnheiten unserer Nutzer zu erkennen und unsere Inhalte auf sie "
2543
- "anzupassen oder unterschiedliche Inhalte entsprechend den Interessen unserer "
2544
- "Nutzer zu versenden.\n"
2545
- "\n"
2546
- "K&uuml;ndigung/Widerruf - Sie k&ouml;nnen den Empfang unseres Newsletters "
2547
- "jederzeit k&uuml;ndigen, d.h. Ihre Einwilligungen widerrufen. Damit erl&ouml;"
2548
- "schen gleichzeitig Ihre Einwilligungen in dessen Versand durch den "
2549
- "Versanddienstleister und die statistischen Analysen. Ein getrennter Widerruf "
2550
- "des Versandes durch den Versanddienstleister oder die statistische "
2551
- "Auswertung ist leider nicht m&ouml;glich. Einen Link zur K&uuml;ndigung des "
2552
- "Newsletters finden Sie am Ende eines jeden Newsletters.\n"
2553
- "\n"
2554
- "<h2>11. Einbindung von Diensten und Inhalten Dritter</h2>\n"
2555
- "\n"
2556
- "Es kann vorkommen, dass innerhalb unseres Onlineangebotes Inhalte oder "
2557
- "Dienste von Dritt-Anbietern, wie zum Beispiel Stadtpl&auml;ne oder "
2558
- "Schriftarten von anderen Webseiten eingebunden werden. Die Einbindung von "
2559
- "Inhalten der Dritt-Anbieter setzt immer voraus, dass die Dritt-Anbieter die "
2560
- "IP-Adresse der Nutzer wahrnehmen, da sie ohne die IP-Adresse die Inhalte "
2561
- "nicht an den Browser der Nutzer senden k&ouml;nnten. Die IP-Adresse ist "
2562
- "damit f&uuml;r die Darstellung dieser Inhalte erforderlich. Des Weiteren "
2563
- "k&ouml;nnen die Anbieter der Dritt-Inhalte eigene Cookies setzen und die "
2564
- "Daten der Nutzer f&uuml;r eigene Zwecke verarbeiten. Dabei k&ouml;nnen aus "
2565
- "den verarbeiteten Daten Nutzungsprofile der Nutzer erstellt werden. Wir "
2566
- "werden diese Inhalte m&ouml;glichst datensparsam und datenvermeidend "
2567
- "einsetzen sowie im Hinblick auf die Datensicherheit zuverl&auml;ssige Dritt-"
2568
- "Anbieter w&auml;hlen.\n"
2569
- "\n"
2570
- "Die nachfolgende Darstellung bietet eine &Uuml;bersicht von Dritt-Anbietern "
2571
- "sowie ihrer Inhalte, nebst Links zu deren Datenschutzerkl&auml;rungen, "
2572
- "welche weitere Hinweise zur Verarbeitung von Daten und, z.T. bereits hier "
2573
- "genannt, Widerspruchsm&ouml;glichkeiten (sog. Opt-Out) enthalten:\n"
2574
- "\n"
2575
- "- Externe Schriftarten von Google, Inc., <a href=\"https://www.google.com/"
2576
- "fonts\" target=\"_blank\">https://www.google.com/fonts</a> (\"Google Fonts"
2577
- "\"). Die Einbindung der Google Fonts erfolgt durch einen Serveraufruf bei "
2578
- "Google (in der Regel in den USA). Datenschutzerkl&auml;rung: <a href="
2579
- "\"https://www.google.com/policies/privacy/\" target=\"_blank\">https://www."
2580
- "google.com/policies/privacy/</a>, Opt-Out: <a href=\"https://www.google.com/"
2581
- "settings/ads/\" target=\"_blank\">https://www.google.com/settings/ads/</a>.\n"
2582
- "\n"
2583
- "- Landkarten des Dienstes \"Google Maps\" des Dritt-Anbieters Google Inc., "
2584
- "1600 Amphitheatre Parkway, Mountain View, CA 94043, USA, gestellt. "
2585
- "Datenschutzerkl&auml;rung: <a href=\"https://www.google.com/policies/privacy/"
2586
- "\" target=\"_blank\">https://www.google.com/policies/privacy/</a>, Opt-Out: "
2587
- "<a href=\"https://www.google.com/settings/ads/\" target=\"_blank\">https://"
2588
- "www.google.com/settings/ads/</a>.\n"
2589
- "\n"
2590
- "- Videos der Plattform \"YouTube\" des Dritt-Anbieters Google Inc., 1600 "
2591
- "Amphitheatre Parkway, Mountain View, CA 94043, USA. Datenschutzerkl&auml;"
2592
- "rung: <a href=\"https://www.google.com/policies/privacy/\" target=\"_blank"
2593
- "\">https://www.google.com/policies/privacy/</a>, Opt-Out: <a href=\"https://"
2594
- "www.google.com/settings/ads/\" target=\"_blank\">https://www.google.com/"
2595
- "settings/ads/</a>.\n"
2596
- "\n"
2597
- "<h2>12. Rechte der Nutzer und L&ouml;schung von Daten</h2>\n"
2598
- "\n"
2599
- "Nutzer haben das Recht, auf Antrag unentgeltlich Auskunft zu erhalten &uuml;"
2600
- "ber die personenbezogenen Daten, die von uns &uuml;ber sie gespeichert "
2601
- "wurden.\n"
2602
- "Zus&auml;tzlich haben die Nutzer das Recht auf Berichtigung unrichtiger "
2603
- "Daten, Widerruf von Einwilligungen, Sperrung und L&ouml;schung ihrer "
2604
- "personenbezogenen Daten sowie das Recht, im Fall der Annahme einer "
2605
- "unrechtm&auml;&szlig;igen Datenverarbeitung eine Beschwerde bei der "
2606
- "zust&auml;ndigen Aufsichtsbeh&ouml;rde einzureichen.\n"
2607
- "\n"
2608
- "Die bei uns gespeicherten Daten werden gel&ouml;scht, sobald sie f&uuml;r "
2609
- "ihre Zweckbestimmung nicht mehr erforderlich sind und der L&ouml;schung "
2610
- "keine gesetzlichen Aufbewahrungspflichten entgegenstehen.\n"
2611
- "\n"
2612
- "<h2>13. &Auml;nderungen der Datenschutzerkl&auml;rung</h2>\n"
2613
- "\n"
2614
- "Wir behalten uns vor, die Datenschutzerkl&auml;rung zu &auml;ndern, um sie "
2615
- "an ge&auml;nderte Rechtslagen, oder bei &Auml;nderungen des Dienstes sowie "
2616
- "der Datenverarbeitung anzupassen. Dies gilt jedoch nur im Hinblick auf "
2617
- "Erkl&auml;rungen zur Datenverarbeitung. Sofern Einwilligungen der Nutzer "
2618
- "erforderlich sind oder Bestandteile der Datenschutzerkl&auml;rung Regelungen "
2619
- "des Vertragsverh&auml;ltnisses mit den Nutzern enthalten, erfolgen die &Auml;"
2620
- "nderungen nur mit Zustimmung der Nutzer.\n"
2621
- "Die Nutzer werden gebeten sich regelm&auml;&szlig;ig &uuml;ber den Inhalt "
2622
- "der Datenschutzerkl&auml;rung zu informieren.\n"
2623
- "\n"
2624
- "Stand: [save_date]"
2625
-
2626
- #: includes/class-sp-dsgvo-settings.php:94
2627
  msgid "I confirm"
2628
  msgstr "Ich akzeptiere"
2629
 
2630
- #: includes/class-sp-dsgvo-settings.php:95
2631
  msgid "The confirmation to GDPR is mandatory."
2632
  msgstr ""
2633
  "Die Checkbox für die Zustimmung zur Speicherung ist nach DSGVO zwingend."
2634
 
2635
- #: includes/class-sp-dsgvo-settings.php:96
2636
  msgid ""
2637
  "This form stores your name, email address and content so that we can "
2638
  "evaluate the comments on our site. For more information, visit our Privacy "
@@ -2642,30 +1727,30 @@ msgstr ""
2642
  "damit wir die Kommentare auf unsere Seite auswerten können. Weitere "
2643
  "Informationen finden Sie auf unserer Seite der Datenschutzbestimmungen."
2644
 
2645
- #: includes/class-sp-dsgvo-settings.php:121
2646
- #: includes/class-sp-dsgvo-settings.php:163
2647
  msgid ""
2648
  "I agree to the storage of the data for processing within the meaning of the "
2649
  "GDPR."
2650
  msgstr ""
2651
  "Ich stimme der Speicherung der Daten zur Verarbeitung im Sinne der DSGVO zu."
2652
 
2653
- #: includes/class-sp-dsgvo-settings.php:132
2654
- #: includes/class-sp-dsgvo-settings.php:289
2655
  msgid "We use cookies to analyze visitor behavior."
2656
  msgstr "Wir benutzen Cookies um das Besucherverhalten zu analysieren."
2657
 
2658
- #: includes/class-sp-dsgvo-settings.php:139
2659
- #: includes/class-sp-dsgvo-settings.php:296
2660
  msgid "Google Analytics is used to analyze website traffic."
2661
  msgstr "Google Analytics wird zum Anlayiseren des Websitetraffics verwendet."
2662
 
2663
- #: includes/class-sp-dsgvo-settings.php:146
2664
- #: includes/class-sp-dsgvo-settings.php:303
2665
  msgid "Facebook Pixel is used to analyze visitor behavior."
2666
  msgstr "Facebook Pixel wird zum Analysieren des Besucherverhaltens verwendet."
2667
 
2668
- #: includes/class-sp-dsgvo-settings.php:170
2669
  msgid ""
2670
  "This website uses cookies. By clicking 'accept' you are providing consent to "
2671
  "us using cookies on this browser."
@@ -2674,7 +1759,7 @@ msgstr ""
2674
  "Wenn Sie fortfahren, diese Seite zu verwenden, nehmen wir an, dass Sie damit "
2675
  "einverstanden sind."
2676
 
2677
- #: includes/class-sp-dsgvo-settings.php:178
2678
  msgid ""
2679
  "We use cookies to give you the best user experience. If you continue to use "
2680
  "this site, we assume that you agree."
@@ -2683,15 +1768,15 @@ msgstr ""
2683
  "Wenn Sie fortfahren, diese Seite zu verwenden, nehmen wir an, dass Sie damit "
2684
  "einverstanden sind."
2685
 
2686
- #: includes/class-sp-dsgvo-settings.php:180
2687
  msgid "OK"
2688
  msgstr "OK"
2689
 
2690
- #: includes/class-sp-dsgvo-settings.php:183
2691
  msgid "Deny"
2692
  msgstr "Ablehnen"
2693
 
2694
- #: includes/class-sp-dsgvo-settings.php:186
2695
  msgid "More information"
2696
  msgstr "Mehr Information"
2697
 
@@ -2887,23 +1972,23 @@ msgstr "Bestätigung der Datenlöschung"
2887
  msgid "updated their user permissions"
2888
  msgstr "hat die Berechtigungen geändert"
2889
 
2890
- #: public/class-sp-dsgvo-public.php:335 public/class-sp-dsgvo-public.php:365
2891
  msgid "More options"
2892
  msgstr "Mehr Optionen"
2893
 
2894
- #: public/class-sp-dsgvo-public.php:377
2895
  msgid "Accept"
2896
  msgstr "Akzeptieren"
2897
 
2898
- #: public/class-sp-dsgvo-public.php:634
2899
  msgid "Privacy Policy: "
2900
  msgstr "Datenschutzvereinbarungen"
2901
 
2902
- #: public/class-sp-dsgvo-public.php:673
2903
  msgid "Consent to the privacy policy is mandatory."
2904
  msgstr "Die Zustimmung zu den Datenschutzbestimmungen ist zwingend."
2905
 
2906
- #: public/class-sp-dsgvo-public.php:679
2907
  msgid "Privacy Policy accepted"
2908
  msgstr "Datenschutzbestimmungen akzeptiert"
2909
 
@@ -3170,6 +2255,954 @@ msgstr ""
3170
  "Wenn Sie dies nicht durchf&uuml;hren m&ouml;chten, k&ouml;nnen Sie dieses E-"
3171
  "Mail gnorieren."
3172
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3173
  #~ msgid "Ok"
3174
  #~ msgstr "Ok"
3175
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
+ "POT-Creation-Date: 2018-11-29 15:31+0100\n"
5
+ "PO-Revision-Date: 2018-11-29 15:32+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: de_DE\n"
142
  msgid "Book legal advice"
143
  msgstr "Rechtliche Beratung buchen"
144
 
145
+ #: admin/class-sp-dsgvo-admin.php:77 admin/tabs/privacy-policy/page.php:1
146
  msgid "Privacy policy"
147
  msgstr "Datenschutz"
148
 
149
+ #: admin/class-sp-dsgvo-admin.php:78
150
  #: admin/tabs/imprint/class-sp-dsgvo-imprint-tab.php:11
151
  #: admin/tabs/imprint/page.php:1
152
  #: admin/tabs/setup/class-sp-dsgvo-create-page-action.php:62
153
  msgid "Imprint"
154
  msgstr "Impressum"
155
 
156
+ #: admin/class-sp-dsgvo-admin.php:84
157
  msgid "Experts Info"
158
  msgstr "Experteninfo"
159
 
160
+ #: admin/class-sp-dsgvo-admin.php:85
161
  msgid "Legal advice"
162
  msgstr "Rechtsberatung"
163
 
164
+ #: admin/class-sp-dsgvo-admin.php:86
165
  msgid "FAQ"
166
  msgstr "FAQ"
167
 
168
+ #: admin/class-sp-dsgvo-admin.php:87
169
  msgid "About WP DSGVO Tools"
170
  msgstr "Über WP DSGVO Tools"
171
 
172
+ #: admin/class-sp-dsgvo-admin.php:132
173
  msgid "Are you sure you want to dismiss this request?"
174
  msgstr "Sind Sie Sicher dass Sie die Anfrage abbrechen wollen?"
175
 
176
+ #: admin/class-sp-dsgvo-admin.php:149
177
  msgid "Privacy settings user page"
178
  msgstr "Datenschutzeinstellungen Benutzer Seite"
179
 
180
+ #: admin/class-sp-dsgvo-admin.php:150
181
  msgid "Delete request page"
182
  msgstr "Löschanfrage Seite"
183
 
184
+ #: admin/class-sp-dsgvo-admin.php:151
185
  msgid "Terms page"
186
  msgstr "AGB Seite"
187
 
188
+ #: admin/class-sp-dsgvo-admin.php:152
189
  msgid "Explicit permissions page"
190
  msgstr "Explizite Berechtigungen Seite"
191
 
192
+ #: admin/class-sp-dsgvo-admin.php:153
193
  msgid "Opt Out page"
194
  msgstr "Opt Out Seite"
195
 
196
+ #: admin/class-sp-dsgvo-admin.php:154 admin/tabs/privacy-policy/page.php:12
197
  msgid "Privacy policy page"
198
  msgstr "Datenschutz Seite"
199
 
200
+ #: admin/class-sp-dsgvo-admin.php:155
201
  msgid "Subject access request page"
202
  msgstr "Datenauszug Seite"
203
 
204
+ #: admin/class-sp-dsgvo-admin.php:156
205
  msgid "Imprint page"
206
  msgstr "Impressum Seite"
207
 
208
+ #: admin/class-sp-dsgvo-admin.php:207
209
  msgid "Privacy settings of the user"
210
  msgstr "Datenschutzeinstellungen des Benutzers"
211
 
212
+ #: admin/class-sp-dsgvo-admin.php:212
213
  msgid "Dienste"
214
  msgstr "Dienste"
215
 
314
  "Zeigt eine Checkbox bei Kommentaren an welche die Zustimmung zu den DSGVO "
315
  "Bestimmungen fordert."
316
 
317
+ #: admin/tabs/common-settings/page.php:78
318
+ msgid "Important: Not compatible in combination with Jetpack comment form."
319
+ msgstr "Wichtig: Nicht kompatibel mit der Kommentarfunktion von Jetpack."
320
+
321
+ #: admin/tabs/common-settings/page.php:84
322
  msgid "Replace CF7 Acceptance text"
323
  msgstr "CF7 Acceptance Text ersetzen"
324
 
325
+ #: admin/tabs/common-settings/page.php:91
326
  msgid ""
327
  "Replaces the text of CF7 Acceptance Checkboxes with following text. (Add to "
328
  "your form: [acceptance dsgvo] Text[/acceptance])"
331
  "nachfolgendem Text. (Im Formular erg&auml;nzen: [acceptance dsgvo] Text[/"
332
  "acceptance])"
333
 
334
+ #: admin/tabs/common-settings/page.php:95 admin/tabs/cookie-notice/page.php:638
335
  msgid "Text"
336
  msgstr "Text"
337
 
338
+ #: admin/tabs/common-settings/page.php:97
339
  msgid "Message text:"
340
  msgstr "Meldungstext:"
341
 
342
+ #: admin/tabs/common-settings/page.php:103
343
  msgid "Info text:"
344
  msgstr "Hinweistext:"
345
 
346
+ #: admin/tabs/common-settings/page.php:111
347
  msgid "Confirmation text"
348
  msgstr "Zustimmungstext"
349
 
350
+ #: admin/tabs/common-settings/page.php:120
351
  #: admin/tabs/cookie-notice/page.php:144 admin/tabs/imprint/page.php:45
352
  #: admin/tabs/privacy-policy/page.php:69
353
  msgid ""
357
  "<strong>Wichtiger Hinweis:</strong> Falls Sie WPML verwenden, können sie mit "
358
  "Hilfe der WPML String Translations diese Texte übersetzen."
359
 
360
+ #: admin/tabs/common-settings/page.php:125
361
  msgid "Company data"
362
  msgstr "Unternehmensdaten"
363
 
364
+ #: admin/tabs/common-settings/page.php:126
365
  msgid ""
366
  "The following input fields represent the basic data necessary for the "
367
  "creation of GDPR compliant data protection regulations and an imprint.<br /"
374
  "automatisch in das vom WP DSGVO Tools (GDPR) Plugin generierten "
375
  "Datenschutzbestimmungen sowie Impressum verwendet."
376
 
377
+ #: admin/tabs/common-settings/page.php:130
378
  msgid "Company name:"
379
  msgstr "Name des Unternehmens:"
380
 
381
+ #: admin/tabs/common-settings/page.php:137
382
  msgid "Street:"
383
  msgstr "Straße:"
384
 
385
+ #: admin/tabs/common-settings/page.php:144
386
  msgid "ZIP + Location:"
387
  msgstr "PLZ + Ort:"
388
 
389
+ #: admin/tabs/common-settings/page.php:151
390
  msgid "Commercial book no.:"
391
  msgstr "Firmenbuch Nr.:"
392
 
393
+ #: admin/tabs/common-settings/page.php:158
394
  msgid "§11 Place of Jurisdiction:"
395
  msgstr "Gerichtsstand:"
396
 
397
+ #: admin/tabs/common-settings/page.php:165
398
  msgid "VAT No.:"
399
  msgstr "USt. Id:"
400
 
401
+ #: admin/tabs/common-settings/page.php:172
402
  msgid "Legal representatives:"
403
  msgstr "Gesetzlicher Vertreter:"
404
 
405
+ #: admin/tabs/common-settings/page.php:176
406
  msgid "The person who legally represents the company."
407
  msgstr "Die Person die das Unternehmen gesetzlich vertritt."
408
 
409
+ #: admin/tabs/common-settings/page.php:179
410
  msgid "Shareholder"
411
  msgstr "Gesellschafter"
412
 
413
+ #: admin/tabs/common-settings/page.php:183
414
  msgid "In case of companies please contact all shareholders here."
415
  msgstr ""
416
  "Im Fall von Gesellschaften hier bitte alle Gesellschafter anf&uuml;hren."
417
 
418
+ #: admin/tabs/common-settings/page.php:186
419
  msgid "Responsible for content:"
420
  msgstr "Verantwortlicher für Inhalt:"
421
 
422
+ #: admin/tabs/common-settings/page.php:190
423
  msgid "The person responsible for the content on this website."
424
  msgstr ""
425
  "Die Person die f&uuml;r den Inhalt auf dieser Website verantwortlich ist."
426
 
427
+ #: admin/tabs/common-settings/page.php:193
428
  msgid "Phone:"
429
  msgstr "Telefon:"
430
 
431
+ #: admin/tabs/common-settings/page.php:200
432
  msgid "Email:"
433
  msgstr "Email:"
434
 
435
+ #: admin/tabs/common-settings/page.php:207
436
  msgid "Newsletter service:"
437
  msgstr "Newsletter Service:"
438
 
439
+ #: admin/tabs/common-settings/page.php:211
440
  msgid ""
441
  "Name of the shipping service provider with which the newsletters will be "
442
  "sent."
443
  msgstr ""
444
  "Name des Versanddienstleisters mit dem die Newsletter versendet werden."
445
 
446
+ #: admin/tabs/common-settings/page.php:214
447
  msgid "URL Privacy Police of Newsletter Service:"
448
  msgstr "URL Datenschutz Newsletter Service:"
449
 
450
+ #: admin/tabs/common-settings/page.php:218
451
  msgid "The URL to the terms of the newsletter service."
452
  msgstr "Die URL zu den AGB des Dienstes"
453
 
1052
  msgstr "Datenschutz Checkbox bei Woo Checkout anzeigen"
1053
 
1054
  #: admin/tabs/privacy-policy/page.php:50
1055
+ #: includes/class-sp-dsgvo-settings.php:181
1056
  msgid "I have read and accepted the Privacy Policy."
1057
  msgstr "Ich habe die Datenschutzbestimmungen gelesen und akzeptiert."
1058
 
1708
  "for-organisations/data-protection-reform/overview-of-the-gdpr/\">DSGVO</a>), "
1709
  "spezialisiert auf &Ouml;sterreich und Deutschland."
1710
 
1711
+ #: includes/class-sp-dsgvo-settings.php:48
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1712
  msgid "I confirm"
1713
  msgstr "Ich akzeptiere"
1714
 
1715
+ #: includes/class-sp-dsgvo-settings.php:49
1716
  msgid "The confirmation to GDPR is mandatory."
1717
  msgstr ""
1718
  "Die Checkbox für die Zustimmung zur Speicherung ist nach DSGVO zwingend."
1719
 
1720
+ #: includes/class-sp-dsgvo-settings.php:50
1721
  msgid ""
1722
  "This form stores your name, email address and content so that we can "
1723
  "evaluate the comments on our site. For more information, visit our Privacy "
1727
  "damit wir die Kommentare auf unsere Seite auswerten können. Weitere "
1728
  "Informationen finden Sie auf unserer Seite der Datenschutzbestimmungen."
1729
 
1730
+ #: includes/class-sp-dsgvo-settings.php:75
1731
+ #: includes/class-sp-dsgvo-settings.php:117
1732
  msgid ""
1733
  "I agree to the storage of the data for processing within the meaning of the "
1734
  "GDPR."
1735
  msgstr ""
1736
  "Ich stimme der Speicherung der Daten zur Verarbeitung im Sinne der DSGVO zu."
1737
 
1738
+ #: includes/class-sp-dsgvo-settings.php:86
1739
+ #: includes/class-sp-dsgvo-settings.php:244
1740
  msgid "We use cookies to analyze visitor behavior."
1741
  msgstr "Wir benutzen Cookies um das Besucherverhalten zu analysieren."
1742
 
1743
+ #: includes/class-sp-dsgvo-settings.php:93
1744
+ #: includes/class-sp-dsgvo-settings.php:251
1745
  msgid "Google Analytics is used to analyze website traffic."
1746
  msgstr "Google Analytics wird zum Anlayiseren des Websitetraffics verwendet."
1747
 
1748
+ #: includes/class-sp-dsgvo-settings.php:100
1749
+ #: includes/class-sp-dsgvo-settings.php:258
1750
  msgid "Facebook Pixel is used to analyze visitor behavior."
1751
  msgstr "Facebook Pixel wird zum Analysieren des Besucherverhaltens verwendet."
1752
 
1753
+ #: includes/class-sp-dsgvo-settings.php:124
1754
  msgid ""
1755
  "This website uses cookies. By clicking 'accept' you are providing consent to "
1756
  "us using cookies on this browser."
1759
  "Wenn Sie fortfahren, diese Seite zu verwenden, nehmen wir an, dass Sie damit "
1760
  "einverstanden sind."
1761
 
1762
+ #: includes/class-sp-dsgvo-settings.php:132
1763
  msgid ""
1764
  "We use cookies to give you the best user experience. If you continue to use "
1765
  "this site, we assume that you agree."
1768
  "Wenn Sie fortfahren, diese Seite zu verwenden, nehmen wir an, dass Sie damit "
1769
  "einverstanden sind."
1770
 
1771
+ #: includes/class-sp-dsgvo-settings.php:134
1772
  msgid "OK"
1773
  msgstr "OK"
1774
 
1775
+ #: includes/class-sp-dsgvo-settings.php:138
1776
  msgid "Deny"
1777
  msgstr "Ablehnen"
1778
 
1779
+ #: includes/class-sp-dsgvo-settings.php:141
1780
  msgid "More information"
1781
  msgstr "Mehr Information"
1782
 
1972
  msgid "updated their user permissions"
1973
  msgstr "hat die Berechtigungen geändert"
1974
 
1975
+ #: public/class-sp-dsgvo-public.php:336 public/class-sp-dsgvo-public.php:366
1976
  msgid "More options"
1977
  msgstr "Mehr Optionen"
1978
 
1979
+ #: public/class-sp-dsgvo-public.php:378
1980
  msgid "Accept"
1981
  msgstr "Akzeptieren"
1982
 
1983
+ #: public/class-sp-dsgvo-public.php:682
1984
  msgid "Privacy Policy: "
1985
  msgstr "Datenschutzvereinbarungen"
1986
 
1987
+ #: public/class-sp-dsgvo-public.php:724
1988
  msgid "Consent to the privacy policy is mandatory."
1989
  msgstr "Die Zustimmung zu den Datenschutzbestimmungen ist zwingend."
1990
 
1991
+ #: public/class-sp-dsgvo-public.php:730
1992
  msgid "Privacy Policy accepted"
1993
  msgstr "Datenschutzbestimmungen akzeptiert"
1994
 
2255
  "Wenn Sie dies nicht durchf&uuml;hren m&ouml;chten, k&ouml;nnen Sie dieses E-"
2256
  "Mail gnorieren."
2257
 
2258
+ #~ msgid ""
2259
+ #~ "[company_name]<br/>Owner: [company_owner]<br/>[adress_street]<br/"
2260
+ #~ ">[adress_zip_location]<br/><br/>Management: [company_law_person]<br/"
2261
+ #~ ">Stockholder: [company_management]<br/><br/>Telephone number: "
2262
+ #~ "[comm_phone]<br/>E-Mail address: [comm_email]<br/><br/>Register Court & "
2263
+ #~ "Register Number: [company_register_court], [company_register_nr]<br/><br/"
2264
+ #~ ">Sales tax identification number: [company_uid]<br/><br/>Responsible for "
2265
+ #~ "content: [content_responsible]<br/><br/>European Commission Online "
2266
+ #~ "Dispute Resolution (OS) platform for consumers: <a href\"https://ec."
2267
+ #~ "europa.eu/consumers/odr/\" target=\"_blank\">https://ec.europa.eu/"
2268
+ #~ "consumers/odr/</a>. We are not willing and obliged to participate in a "
2269
+ #~ "dispute settlement procedure before a consumer arbitration board."
2270
+ #~ msgstr ""
2271
+ #~ "[company_name]<br/>Inhaber: [company_owner]<br/>[adress_street]<br/"
2272
+ #~ ">[adress_zip_location]<br/><br/>Gesch&auml;ftsf&uuml;hrung: "
2273
+ #~ "[company_law_person]<br/>Gesellschafter: [company_management]<br/><br/"
2274
+ #~ ">Telefonnummer: [comm_phone]<br/>E-Mailadresse: [comm_email]<br/><br/"
2275
+ #~ ">Registergericht &amp; Registernummer: [company_register_court], "
2276
+ #~ "[company_register_nr]<br/><br/>Umsatzsteuer-Identifikationsnummer: "
2277
+ #~ "[company_uid]<br/><br/>Inhaltlich verantwortlich: "
2278
+ #~ "[content_responsible]<br/><br/>Plattform der Europ&auml;ischen Kommission "
2279
+ #~ "zur Online-Streitbeilegung (OS) f&uuml;r Verbraucher: <a href\"https://ec."
2280
+ #~ "europa.eu/consumers/odr/\" target=\"_blank\">https://ec.europa.eu/"
2281
+ #~ "consumers/odr/</a>. Wir sind nicht bereit und nicht verpflichtet an einem "
2282
+ #~ "Streitbeilegungsverfahren vor einer Verbraucherschlichtungsstelle "
2283
+ #~ "teilzunehmen.<br/>"
2284
+
2285
+ #~ msgid ""
2286
+ #~ "<h1>General Privacy Policy</h1><br/>The protection of your data is very "
2287
+ #~ "important to us. We only process data on a legally compliant basis and "
2288
+ #~ "consider it our duty to protect your data from any misuse. We use your "
2289
+ #~ "data only for purposes to which you have authorized us.<br/><br/>Table of "
2290
+ #~ "Contents<br/>1. Objective and responsible body<br/>2. Basic information "
2291
+ #~ "on data processing<br/>3. Processing of personal data<br/>4. Collection "
2292
+ #~ "of access data<br/>5. Cookies & reach measurement<br/>6. Google "
2293
+ #~ "Analytics<br/>7. Google Re-/Marketing Services<br/>8. Facebook social "
2294
+ #~ "plugins<br/>9. Facebook remarketing<br/>10. Newsletter<br/>11. "
2295
+ #~ "Integration of services and content of third parties<br/>12. User rights "
2296
+ #~ "and deletion<br/>13. Changes to the privacy policy<br/><br/><h2>1. "
2297
+ #~ "Objective and responsible body</h2><br/>This Privacy Policy clarifies the "
2298
+ #~ "nature, scope and purpose of the processing (including collection, "
2299
+ #~ "processing, use and consent) of personal information contained in our "
2300
+ #~ "online offering and the related websites, features and content "
2301
+ #~ "(collectively referred to as \"online offer\" or \"Website\"). The "
2302
+ #~ "privacy policy applies regardless of the domains, systems, platforms, and "
2303
+ #~ "devices (such as desktop or mobile) on which the online offering is being "
2304
+ #~ "run.<br/><br/>Provider of the online offer and responsible for the data "
2305
+ #~ "protection law is [company_name], owner: [company_owner], "
2306
+ #~ "[adress_street], [adress_zip_location] (hereinafter referred to as "
2307
+ #~ "\"provider\", \"we\" or \"us\"). For the contact possibilities we refer "
2308
+ #~ "to our imprint.<br/><br/>The term \"user\" includes all customers and "
2309
+ #~ "visitors of our online offer. The terms used, such as \"Users\" are to be "
2310
+ #~ "understood gender-neutral.<br/><br/><h2>2. Basic information on data "
2311
+ #~ "processing</h2><br/>We only process users personal data in compliance "
2312
+ #~ "with the relevant data protection regulations in accordance with the "
2313
+ #~ "requirements of data minimization and purpose limitation (see Processing "
2314
+ #~ "Principles: EU GDPR Article 5). This means that the data of the users are "
2315
+ #~ "processed only in the presence of a legal permit or obligation, for the "
2316
+ #~ "fulfillment of contractual obligations (which are necessary, for example, "
2317
+ #~ "for the provision of the services offered) or in the presence of your "
2318
+ #~ "consent.<br/><br/>We take organizational, contractual and technical "
2319
+ #~ "security measures in accordance with the state of the art to ensure that "
2320
+ #~ "the provisions of the data protection laws are complied with and in order "
2321
+ #~ "to protect the data processed by us against accidental or intentional "
2322
+ #~ "manipulation, loss, destruction or against access by unauthorized persons."
2323
+ #~ "<br/><br/>Insofar as data transmission to third parties is necessary for "
2324
+ #~ "the fulfillment of legal requirements, the fulfillment of the services to "
2325
+ #~ "be provided within the framework of contractual obligations or on the "
2326
+ #~ "basis of your explicit consent, we always ensure that this is done safely "
2327
+ #~ "and in accordance with data protection regulations and in accordance with "
2328
+ #~ "EU GDPR Article 5.<br/><br/>(Webshop, if applicable): A transfer of data "
2329
+ #~ "to third parties does not take place, with the exception of the "
2330
+ #~ "transmission of credit card data to the involved bank institutes / "
2331
+ #~ "payment service providers for the purpose of debiting the purchase price, "
2332
+ #~ "to the transport company / shipping company commissioned by us for the "
2333
+ #~ "delivery of the goods as well as to our tax consultant Fulfillment of our "
2334
+ #~ "tax obligations.<br/><br/><h2>3. Processing of personal data</h2><br/>The "
2335
+ #~ "personal data are, in addition to the use expressly mentioned in this "
2336
+ #~ "privacy policy, processed for the following purposes on the basis of "
2337
+ #~ "statutory requirements, to fulfill the contract or your express consent:"
2338
+ #~ "<br/>- The provision, execution, maintenance, optimization and security "
2339
+ #~ "of our services, services and user services;<br/>- Ensuring effective "
2340
+ #~ "customer service and technical support.<br/><br/>Insofar as data "
2341
+ #~ "transmission to third parties is necessary for the fulfillment of legal "
2342
+ #~ "requirements, the fulfillment of the services to be provided within the "
2343
+ #~ "framework of contractual obligations or on the basis of your express "
2344
+ #~ "consent, we always ensure that this is done safely and in accordance with "
2345
+ #~ "data protection regulations in accordance with EU GDPR Article 5.<br/><br/"
2346
+ #~ ">(Webshop, if applicable): A transfer of data to third parties does not "
2347
+ #~ "take place, with the exception of the transmission of credit card data to "
2348
+ #~ "the involved bank institutes / payment service providers for the purpose "
2349
+ #~ "of debiting the purchase price, to the transport company / shipping "
2350
+ #~ "company commissioned by us for the delivery of the goods as well as to "
2351
+ #~ "our tax consultant Fulfillment of our tax obligations.<br/><br/>When "
2352
+ #~ "contacting us (via contact form or e-mail), the details of the user are "
2353
+ #~ "stored for the purpose of processing the request as well as in the event "
2354
+ #~ "that follow-up questions arise.<br/>Personal data will be deleted if they "
2355
+ #~ "have fulfilled their purpose and deletion does not conflict with any "
2356
+ #~ "retention requirements.<br/><br/><h2>4. Collection of access data</h2><br/"
2357
+ #~ ">We collect data about every access to the server where this service is "
2358
+ #~ "located (so-called server log files). The access data includes name of "
2359
+ #~ "the retrieved web page, file, date and time of retrieval, amount of data "
2360
+ #~ "transferred, message about successful retrieval, browser type and "
2361
+ #~ "version, the users operating system, referrer URL (the previously visited "
2362
+ #~ "page), IP address and the requesting provider.<br/><br/>We use the log "
2363
+ #~ "data without linking it to the specific person of a user or other "
2364
+ #~ "profiling according to the statutory provisions only for statistical "
2365
+ #~ "evaluations for the purpose of operation, security and optimization of "
2366
+ #~ "our online offer. However, we reserve the right to retrospectively check "
2367
+ #~ "the log data if, on the basis of concrete evidence, the legitimate "
2368
+ #~ "suspicion of unlawful use exists.<br/><br/><h2>5. Cookies & reach "
2369
+ #~ "measurement</h2><br/>Cookies are information transmitted from our web "
2370
+ #~ "server or third-party web servers to users web browsers and are stored "
2371
+ #~ "there for later retrieval. The use of cookies in the context of "
2372
+ #~ "pseudonymous range measurement is described in this privacy policy.<br/"
2373
+ #~ ">The usage of this online offer is also possible with the exclusion of "
2374
+ #~ "cookies. If users do not want cookies stored on their computer, they are "
2375
+ #~ "asked to disable the option in their browsers system settings. Saved "
2376
+ #~ "cookies can be deleted in the system settings of the browser. The "
2377
+ #~ "exclusion of cookies can lead to functional restrictions of this online "
2378
+ #~ "offer.<br/>There is a possibility to manage many companies online "
2379
+ #~ "advertising cookies via the US website <a href=\"http://www.aboutads.info/"
2380
+ #~ "choices\" target=\"_blank\">http://www.aboutads.info/choices</a> or the "
2381
+ #~ "EU page <a href=\"http://www.youronlinechoices.com/uk/your-ad-choices/\" "
2382
+ #~ "target=\"_blank\">http://www.youronlinechoices.com/uk/your-ad-choices/</"
2383
+ #~ "a>.<br/><br/><h2>6. Google Analytics</h2><br/>We use Google Analytics, a "
2384
+ #~ "web analytics service provided by Google Inc. (\"Google\"). Google uses "
2385
+ #~ "cookies. The information generated by the cookie about the use of the "
2386
+ #~ "online offer by the users are usually transmitted to a Google server in "
2387
+ #~ "the USA and stored there.<br/><br/>Google will use this information on "
2388
+ #~ "our behalf to evaluate the use of our online offering by users, to "
2389
+ #~ "compile reports on the activities within this online offering and to "
2390
+ #~ "provide us with other services related to the use of this online offer "
2391
+ #~ "and internet usage. In this case, pseudonymous usage profiles of the "
2392
+ #~ "users can be created from the processed data.<br/><br/>We only use Google "
2393
+ #~ "Analytics with activated IP anonymization. This means that the IP address "
2394
+ #~ "of users will be shortened by Google within member states of the European "
2395
+ #~ "Union or in other contracting states of the Agreement on the European "
2396
+ #~ "Economic Area. Only in exceptional cases the full IP address will be sent "
2397
+ #~ "to a Google server in the US and shortened there.<br/><br/>The IP address "
2398
+ #~ "submitted by the users browser will not be merged with other data "
2399
+ #~ "provided by Google. Users can prevent the storage of cookies by setting "
2400
+ #~ "their browser software accordingly; users may also prevent data "
2401
+ #~ "collection by Google of data which is generated by the cookie and related "
2402
+ #~ "to their use of the online offer as well as the processing of such data "
2403
+ #~ "by Google by downloading and installing the browser plug-in available "
2404
+ #~ "under the following link: <a href=\"http://tools.google.com/dlpage/"
2405
+ #~ "gaoptout?hl=de\" target=\"_blank\">http://tools.google.com/dlpage/"
2406
+ #~ "gaoptout?hl=de</a>.<br/><br/>For more information about Googles use of "
2407
+ #~ "data, settings and opt-out options, please visit Googles websites: <a "
2408
+ #~ "href=\"https://www.google.com/intl/en/policies/privacy/partners\" target="
2409
+ #~ "\"_blank\">https://www.google.com/intl/en/policies/privacy/partners</a> "
2410
+ #~ "(\"Googles use of your data when you use websites or our partners apps "
2411
+ #~ "\"), <a href=\"http://www.google.com/policies/technologies/ads\" target="
2412
+ #~ "\"_blank\">http://www.google.com/policies/technologies/ads</a> (\" Use of "
2413
+ #~ "data for promotional purposes \"), <a href=\"http://www.google.com/"
2414
+ #~ "settings/ads\" target=\"_blank\">http://www.google.com/settings/ads</a> "
2415
+ #~ "(\" Managing information provided by Google used to show you ads \") and "
2416
+ #~ "<a href=\"http://www.google.com/ads/preferences\" target=\"_blank"
2417
+ #~ "\">http://www.google.com/ads/preferences</a> (\" Determine which ads "
2418
+ #~ "Google shows you \").<br/><br/><h2>7. Google Re-/Marketing Services</"
2419
+ #~ "h2><br/>We use the Google Inc. Marketing and Remarketing Services "
2420
+ #~ "(\"Google Marketing Services\"), 1600 Amphitheater Parkway, Mountain "
2421
+ #~ "View, CA 94043, USA, (\"Google\").<br/>Google Marketing Services allows "
2422
+ #~ "us to better target advertisements for and on our website so that we only "
2423
+ #~ "present ads to users that potentially match their interests. E.g.: It is "
2424
+ #~ "called remarketing if users are also shown ads for products they are "
2425
+ #~ "interested in on other websites. <br/><br/>For these purposes, when "
2426
+ #~ "Google and our other websites that are running Google Marketing Services "
2427
+ #~ "are activated, Google runs a code and so-called (re) marketing tags "
2428
+ #~ "(invisible graphics or code, etc., also named web beacon) are added and "
2429
+ #~ "incorporated into the website. With their help, the user is provided with "
2430
+ #~ "an individual cookie, viz. a small file is saved (instead of cookies, "
2431
+ #~ "comparable technologies can also be used).<br/><br/><br/>The cookies can "
2432
+ #~ "be set by different domains, including google.com, doubleclick.net, "
2433
+ #~ "invitemedia.com, admeld.com, googlesyndication.com or googleadservices."
2434
+ #~ "com. In this file it is noted which web pages users visited, what content "
2435
+ #~ "they are interested in and what offers they have clicked, as well as "
2436
+ #~ "technical information about the browser and operating system, referring "
2437
+ #~ "web pages, visit time and other information about the use of the online "
2438
+ #~ "offer. <br/><br/>The IP address of the users is also recorded, whereby "
2439
+ #~ "in the context of Google Analytics the IP address is shortened within "
2440
+ #~ "member states of the European Union or other contracting states of the "
2441
+ #~ "Agreement on the European Economic Area. Only in exceptional cases data "
2442
+ #~ "is transmitted to a Google server in the US and shortened there. The IP "
2443
+ #~ "address will not be merged with data of the user within other offers from "
2444
+ #~ "Google. The information mentioned above may also be associated with "
2445
+ #~ "information from other sources. So that ads according to the interests of "
2446
+ #~ "the users can be displayed when they visit other websites.<br/><br/>The "
2447
+ #~ "data of the users are pseudonymised processed in the context of the "
2448
+ #~ "Google marketing services. That means Google stores and processes e.g. "
2449
+ #~ "not the name or e-mail address of the users, but processes the relevant "
2450
+ #~ "data cookie-related within pseudonymous user profiles. From the "
2451
+ #~ "perspective of Google, the ads are not managed and displayed to a "
2452
+ #~ "specifically identifiable person, but to the cookie owner, regardless of "
2453
+ #~ "who that cookie owner is. This does not apply if users have explicitly "
2454
+ #~ "allowed Google to process their data without this pseudonymization. The "
2455
+ #~ "information collected about users by \"DoubleClick\" is transmitted to "
2456
+ #~ "Google and stored on Googles servers in the United States.<br/><br/>Among "
2457
+ #~ "the Google marketing services we use is amongst others the online "
2458
+ #~ "advertising program \"Google AdWords\". In the case of Google AdWords, "
2459
+ #~ "each advertiser receives a different \"conversion cookie\". Cookies "
2460
+ #~ "cannot be tracked through AdWords advertisers websites. The information "
2461
+ #~ "collected through the cookie is used to generate conversion statistics "
2462
+ #~ "for AdWords advertisers who have opted for conversion tracking. "
2463
+ #~ "Advertisers will see the total number of users who clicked on their ad "
2464
+ #~ "and were redirected to a conversion tracking tag page. However, they do "
2465
+ #~ "not receive information that personally identifies users.<br/><br/>We "
2466
+ #~ "embed third-party ads based on Googles DoubleClick marketing service. "
2467
+ #~ "DoubleClick uses cookies, which allow Google and its affiliate websites "
2468
+ #~ "to serve ads based on users visits to this site or other sites on the "
2469
+ #~ "Internet.<br/>We also engage third-party ads based on the Google AdSense "
2470
+ #~ "marketing service. AdSense uses cookies, which allow Google and its "
2471
+ #~ "affiliate websites to serve ads based on users visits to this site or "
2472
+ #~ "other sites on the Internet.<br/><br/>Another Google marketing service we "
2473
+ #~ "use is the Google Tag Manager, which allows additional Google analytics "
2474
+ #~ "and marketing services to be integrated into our website (e.g. AdWords, "
2475
+ #~ "DoubleClick, or Google Analytics).<br/>For more information about Googles "
2476
+ #~ "data usage for marketing, see their overview page: <a href=\"https://www."
2477
+ #~ "google.com/policies/technologies/ads\" target=\"_blank\">https://www."
2478
+ #~ "google.com/policies/technologies/ads</a>, Googles Privacy Policy is "
2479
+ #~ "available at <a href=\"https://www.google.com/policies/privacy\" target="
2480
+ #~ "\"_blank\">https://www.google.com/policies/privacy</a>.<br/>If you wish "
2481
+ #~ "to opt-out of Google Marketing Services, you may take advantage of "
2482
+ #~ "Googles settings and opt-out options: <a href=\"http://www.google.com/"
2483
+ #~ "ads/preferences\" target=\"_blank\">http://www.google.com/ads/"
2484
+ #~ "preferences</a>.<br/><br/><h2>8. Facebook social plugins</h2><br/>Our "
2485
+ #~ "online offering uses social plugins (\"plugins\") from the social network "
2486
+ #~ "facebook.com operated by Facebook Ireland Ltd., 4 Grand Canal Square, "
2487
+ #~ "Grand Canal Harbor, Dublin 2, Ireland (\"Facebook\"). The plugins are "
2488
+ #~ "recognizable by one of the Facebook logos (white \"f\" on blue tile, the "
2489
+ #~ "terms \"Like\" or a \"thumbs up\" sign) or are marked with the addition "
2490
+ #~ "\"Facebook Social Plugin\". The list and appearance of Facebook Social "
2491
+ #~ "Plugins can be viewed here: <a href=\"https://developers.facebook.com/"
2492
+ #~ "docs/plugins/\" target=\"_blank\">https://developers.facebook.com/docs/"
2493
+ #~ "plugins/</a>.<br/><br/>When a user invokes a feature of this online "
2494
+ #~ "offering that includes such a plugin, their device establishes a direct "
2495
+ #~ "connection to the Facebook servers. The content of the plugin is "
2496
+ #~ "transmitted by Facebook directly to the device of the user and "
2497
+ #~ "incorporated into the online offer. In the process, user profiles can be "
2498
+ #~ "created from the processed data. We therefore have no influence on the "
2499
+ #~ "amount of data that Facebook collects with the help of this plugin and "
2500
+ #~ "therefore informs the users according to our knowledge.<br/><br/>By "
2501
+ #~ "integrating plugins, Facebook receives the information that a user has "
2502
+ #~ "accessed the corresponding page of the online offer. If the user is "
2503
+ #~ "logged in to Facebook, Facebook can assign the visit to his Facebook "
2504
+ #~ "account. If users interact with the plugins, for example, press the Like "
2505
+ #~ "button or leave a comment, the information is transmitted from your "
2506
+ #~ "device directly to Facebook and stored there. If a user is not a member "
2507
+ #~ "of Facebook, there is still the possibility that Facebook will find out "
2508
+ #~ "and save their IP address. According to Facebook, only an anonymous IP "
2509
+ #~ "address is stored in Germany.<br/><br/> The purpose and scope of the data "
2510
+ #~ "collection and the further processing and use of the data by Facebook, as "
2511
+ #~ "well as the related rights and setting options for protecting the privacy "
2512
+ #~ "of users, can be found in Facebooks privacy policy: <a href=\"https://www."
2513
+ #~ "facebook.com/about/privacy/\" target=\"_blank\">https://www.facebook.com/"
2514
+ #~ "about/privacy/</a>.<br/><br/>If a user is a Facebook member and does not "
2515
+ #~ "want Facebook to collect data about him via this online offer and link it "
2516
+ #~ "to his member data stored on Facebook, he must log out of Facebook and "
2517
+ #~ "delete his cookies before using our online offer. Other settings and "
2518
+ #~ "possible revocations regarding the use of data for advertising purposes "
2519
+ #~ "are possible within the Facebook profile settings: <a href=\"https://www."
2520
+ #~ "facebook.com/settings?tab=ads\" target=\"_blank\">https://www.facebook."
2521
+ #~ "com/settings?tab=ads</a> or via the US-American site <a href=\"http://www."
2522
+ #~ "aboutads.info/choices/\" target=\"_blank\">http://www.aboutads.info/"
2523
+ #~ "choices/</a> or the EU page <a href=\"http://www.youronlinechoices.com/\" "
2524
+ #~ "target=\"_blank\">http://www.youronlinechoices.com/</a>. The settings are "
2525
+ #~ "platform independent, which means that they are adopted for all devices, "
2526
+ #~ "such as desktop computers or mobile devices.<br/><br/><h2>9. Facebook "
2527
+ #~ "remarketing</h2><br/> Within our on-line offer so-called \"Facebook pixels"
2528
+ #~ "\" of the social network Facebook, which are operated by Facebook Inc., 1 "
2529
+ #~ "Hacker Way, Menlo Park, CA 94025, USA, or if you are based in the EU, "
2530
+ #~ "Facebook Ireland Ltd., 4 Grand Canal Square, Grand Canal Harbor, Dublin "
2531
+ #~ "2, Ireland (\"Facebook\"). <br/><br/>With the help of the Facebook pixel, "
2532
+ #~ "Facebook is able to designate the visitors of our offer as a target group "
2533
+ #~ "for the presentation of advertisements, so-called \"Facebook Ads\". "
2534
+ #~ "Accordingly, we use Facebook pixel to display Facebook ads only to those "
2535
+ #~ "Facebook users who have also shown an interest in our website. In other "
2536
+ #~ "words, with the help of the Facebook pixel, we want to make sure that our "
2537
+ #~ "Facebook ads are in line with the potential interest of users and are not "
2538
+ #~ "annoying. With the help of the Facebook pixel, we can also understand the "
2539
+ #~ "effectiveness of the Facebook ads for statistical and market research "
2540
+ #~ "purposes by seeing if users were redirected to our site after clicking on "
2541
+ #~ "a Facebook ad.<br/><br/>Facebook pixel is directly integrated by Facebook "
2542
+ #~ "when calling our website and can save a so-called cookie (a small file) "
2543
+ #~ "on your device.<br/><br/>If you log in to Facebook or visit Facebook in a "
2544
+ #~ "logged-in state, the visit of our offer is noted in your profile. The "
2545
+ #~ "data collected about you are anonymous to us, so they do not give us any "
2546
+ #~ "indications about the identity of the users. However, the data is stored "
2547
+ #~ "and processed by Facebook, so that a connection to the respective user "
2548
+ #~ "profile is possible. The processing of the data by Facebook is part of "
2549
+ #~ "Facebooks data usage policy. Accordingly, you will learn more about how "
2550
+ #~ "the remarketing pixel works and more generally about how Facebook ads are "
2551
+ #~ "displayed in Facebooks Data Usage Policy: <a href=\"https://www.facebook."
2552
+ #~ "com/policy.php\" target=\"_blank\">https://www.facebook.com/policy.php</"
2553
+ #~ "a>.<br/><br/> You may object to the data collection and use of your data "
2554
+ #~ "by Facebook Pixel to display Facebook Ads. To do this, you can visit the "
2555
+ #~ "page set up by Facebook and follow the instructions for the usage-based "
2556
+ #~ "advertising settings: <a href=\"https://www.facebook.com/settings?tab=ads"
2557
+ #~ "\" target=\"_blank\">https://www.facebook.com/settings?tab=ads</a> or the "
2558
+ #~ "contradiction on the US-American site <a href=\"http://www.aboutads.info/"
2559
+ #~ "choices/\" target=\"_blank\">http://www.aboutads.info/choices/</a> or the "
2560
+ #~ "EU page <a href=\"http://www.youronlinechoices.com/\" target=\"_blank"
2561
+ #~ "\">http://www.youronlinechoices.com/</a>. The settings are platform "
2562
+ #~ "independent, that means they are adopted for all devices, such as "
2563
+ #~ "desktop computers or mobile devices.<br/><br/><h2>10. Newsletter</h2><br/"
2564
+ #~ ">With the following information, we will explain the contents of our "
2565
+ #~ "newsletter, the registration, sending and statistical evaluation "
2566
+ #~ "procedures as well as your right of objection. By subscribing to our "
2567
+ #~ "newsletter, you agree to the receipt and the procedures described.<br/"
2568
+ #~ "><br/>Content of the newsletter: We send newsletters, e-mails and other "
2569
+ #~ "electronic notifications with advertising information (hereinafter "
2570
+ #~ "\"newsletter\") only with the consent of the recipient or a legal "
2571
+ #~ "permission. Insofar as the contents of a newsletter are concretely "
2572
+ #~ "described, they are authoritative for the consent of the users. In "
2573
+ #~ "general our newsletters contain the following information: our products, "
2574
+ #~ "offers, promotions and our company.<br/><br/>Double opt-in and logging: "
2575
+ #~ "Registration for our newsletter is done in a so-called double-opt-in "
2576
+ #~ "procedure. After registration, you will receive an e-mail asking you to "
2577
+ #~ "confirm your registration. This confirmation is necessary so that nobody "
2578
+ #~ "can register with an invalid or not owned e-mail addresses. The "
2579
+ #~ "registration for the newsletter will be logged in order to prove the "
2580
+ #~ "registration process according to the legal requirements. This includes "
2581
+ #~ "the storage of the login and the confirmation time, as well as the IP "
2582
+ #~ "address. Likewise, changes to your data stored by the newsletter service "
2583
+ #~ "provider will be logged.<br/><br/>Newsletter service provider: The "
2584
+ #~ "newsletter is sent by means of \"[newsletter_service]\" (hereinafter "
2585
+ #~ "referred to as \"newsletter service provider\"). The privacy policy of "
2586
+ #~ "the newsletter service provider can be found here: "
2587
+ #~ "[newsletter_service_privacy_policy].<br/><br/>The e-mail addresses of our "
2588
+ #~ "Newsletter recipients, as well as their other data described in the "
2589
+ #~ "context of these notes, are stored on the servers of the newsletter "
2590
+ #~ "service provider. The newsletter service provider uses this information "
2591
+ #~ "to send and evaluate the newsletter on our behalf. <br/><br/>Furthermore, "
2592
+ #~ "the newsletter service provider may, according to their information, use "
2593
+ #~ "this data to optimize or improve its own services, e.g. for the technical "
2594
+ #~ "optimization of the sending and the presentation of the newsletter or for "
2595
+ #~ "economic purposes, to determine from which countries the recipients come. "
2596
+ #~ "However, the newsletter service provider does not use the data of our "
2597
+ #~ "newsletter recipients to contact them for their purposes or to pass these "
2598
+ #~ "contacts on to third parties.<br/><br/>Credentials: To subscribe to the "
2599
+ #~ "newsletter, it is sufficient to provide your e-mail address.<br/><br/"
2600
+ #~ ">Statistical Survey and Analysis - The newsletters contain a so-called "
2601
+ #~ "\"web-beacon\", a pixel-sized file that is retrieved from the server of "
2602
+ #~ "the newsletter service provider when the newsletter is opened. This "
2603
+ #~ "request will initially collect technical information, such as information "
2604
+ #~ "about the browser and your system, as well as your IP address and time of "
2605
+ #~ "retrieval. This information is used to improve the technical performance "
2606
+ #~ "of services based on their specifications or audience and their reading "
2607
+ #~ "habits, based on their locations (which can be determined using the IP "
2608
+ #~ "address) or access times. <br/><br/>Statistical surveys also include "
2609
+ #~ "determining if the newsletters are opened, when they are opened and which "
2610
+ #~ "links are clicked. For technical reasons, this information can be "
2611
+ #~ "assigned to individual newsletter recipients. However, it is neither our "
2612
+ #~ "endeavor nor that of the newsletter service provider to observe "
2613
+ #~ "individual users. The evaluations serve us much more to recognize the "
2614
+ #~ "reading habits of our users and to adapt our content accordingly or to "
2615
+ #~ "send different content according to the interests of our users.<br/><br/"
2616
+ #~ ">Termination / Revocation - You may terminate the receipt of our "
2617
+ #~ "newsletter at any time, that means revoking your consent. At the same "
2618
+ #~ "time, your consent for receiving any emails from the newsletter service "
2619
+ #~ "provider and the statistical analyzes expire. A separate revocation of "
2620
+ #~ "receiving emails from the newsletter service provider or the statistical "
2621
+ #~ "evaluation is unfortunately not possible. A link to cancel the newsletter "
2622
+ #~ "can be found at the end of each newsletter.<br/><br/><h2>11. Integration "
2623
+ #~ "of services and content of third parties</h2><br/>It may occur that "
2624
+ #~ "contents or services of third-party providers, such as maps or fonts from "
2625
+ #~ "other websites, are included in our online offer. The inclusion of "
2626
+ #~ "content from third-party providers always requires that third-party "
2627
+ #~ "providers perceive the IP address of the users, since they could not "
2628
+ #~ "send the content to the users browser without the IP address.<br/><br/"
2629
+ #~ ">The IP address is therefore required for the presentation of this "
2630
+ #~ "content. Furthermore, providers of third-party content can set their own "
2631
+ #~ "cookies and process users data for their own purposes. In the process, "
2632
+ #~ "user profiles can be created from the processed data. We do our best to "
2633
+ #~ "use this content in a data-saving and data-avoiding manner as far as "
2634
+ #~ "possible and select reliable third-party providers with regard to data "
2635
+ #~ "security.<br/><br/>The following presentation provides an overview of "
2636
+ #~ "third-party providers as well as their contents and links to their "
2637
+ #~ "privacy statements, with further details on the processing of data and "
2638
+ #~ "partly revocation possibilities (so-called opt-out):<br/><br/>- External "
2639
+ #~ "fonts from Google, Inc., <a href=\"https://www.google.com/fonts\" target="
2640
+ #~ "\"_blank\">https://www.google.com/fonts</a> (\"Google Fonts\"). The "
2641
+ #~ "integration of Google fonts is done by a server call on Google (usually "
2642
+ #~ "in the US). Privacy Policy: <a href=\"https://www.google.com/policies/"
2643
+ #~ "privacy/\" target=\"_blank\">https://www.google.com/policies/privacy/</"
2644
+ #~ "a>, opt-out: <a href=\"https://www.google.com/settings/ads/\" target="
2645
+ #~ "\"_blank\">https://www.google.com/settings/ads/</a>.<br/>- Maps of the "
2646
+ #~ "\"Google Maps\" service provided by the third-party Google Inc., 1600 "
2647
+ #~ "Amphitheater Parkway, Mountain View, CA 94043, USA. Privacy Policy: <a "
2648
+ #~ "href=\"https://www.google.com/policies/privacy/ target=\"_blank\">https://"
2649
+ #~ "www.google.com/policies/privacy/</a>, opt-out: <a href=\"https://www."
2650
+ #~ "google.com/settings/ads/\" target=\"_blank\">https://www.google.com/"
2651
+ #~ "settings/ads/</a>.<br/>- Third-party Google Inc.s YouTube Platforms, 1600 "
2652
+ #~ "Amphitheater Parkway, Mountain View, CA 94043, USA. Privacy Policy: <a "
2653
+ #~ "href=\"https://www.google.com/policies/privacy/\" target=\"_blank"
2654
+ #~ "\">https://www.google.com/policies/privacy/</a>, opt-out: <a href="
2655
+ #~ "\"https://www.google.com/settings/ads/\" target=\"_blank\">https://www."
2656
+ #~ "google.com/settings/ads/</a>.<br/><br/><h2>12. User rights and deletion</"
2657
+ #~ "h2><br/>Users have the right, upon request, to receive information free "
2658
+ #~ "of charge about the personal data that we have stored about them.<br/>In "
2659
+ #~ "addition, users have the right to correct inaccurate data, revoke "
2660
+ #~ "consent, block the processing and delete their personal information if "
2661
+ #~ "justifiable and to file a complaint with the responsible regulatory "
2662
+ #~ "authority in the event of unlawful processing.<br/><br/>The data stored "
2663
+ #~ "with us are deleted as soon as they are no longer necessary for their "
2664
+ #~ "purpose and the deletion does not conflict with any statutory storage "
2665
+ #~ "requirements.<br/><br/><h2>13. Changes to the privacy policy</h2><br/>We "
2666
+ #~ "reserve the right to change the privacy policy in order to adapt it to "
2667
+ #~ "changed legal situations, or to changes in the service and data "
2668
+ #~ "processing. However, this only applies to declarations of data "
2669
+ #~ "processing. If users consent is required or elements of the privacy "
2670
+ #~ "policy contain provisions of the contractual relationship with the users, "
2671
+ #~ "the changes will only be made with the consent of the users.<br/>Users "
2672
+ #~ "are requested to inform themselves regularly about the content of the "
2673
+ #~ "privacy policy.<br/><br/>Status: [save_date]<br/><br/><br/>"
2674
+ #~ msgstr ""
2675
+ #~ "<h1>Datenschutzerkl&auml;rung und Einwilligungen</h1>\n"
2676
+ #~ " \n"
2677
+ #~ "Inhaltsverzeichnis\n"
2678
+ #~ "1. Zielsetzung und verantwortliche Stelle\n"
2679
+ #~ "2. Grunds&auml;tzliche Angaben zur Datenverarbeitung\n"
2680
+ #~ "3. Verarbeitung personenbezogener Daten\n"
2681
+ #~ "4. Erhebung von Zugriffsdaten\n"
2682
+ #~ "5. Cookies &amp; Reichweitenmessung\n"
2683
+ #~ "6. Google Analytics\n"
2684
+ #~ "7. Google-Re/Marketing-Services\n"
2685
+ #~ "8. Facebook Social Plugins\n"
2686
+ #~ "9. Facebook Remarketing\n"
2687
+ #~ "10. Newsletter\n"
2688
+ #~ "11. Einbindung von Diensten und Inhalten Dritter\n"
2689
+ #~ "12. Rechte der Nutzer und L&ouml;schung\n"
2690
+ #~ "13. &Auml;nderungen der Datenschutzerkl&auml;rung\n"
2691
+ #~ "\n"
2692
+ #~ "<h2>1. Zielsetzung und verantwortliche Stelle</h2>\n"
2693
+ #~ "\n"
2694
+ #~ "Diese Datenschutzerkl&auml;rung kl&auml;rt &uuml;ber die Art, den Umfang "
2695
+ #~ "und Zweck der Verarbeitung (u.a. Erhebung, Verarbeitung und Nutzung sowie "
2696
+ #~ "Einholung von Einwilligungen) von personenbezogenen Daten innerhalb "
2697
+ #~ "unseres Onlineangebotes und der mit ihm verbundenen Webseiten, Funktionen "
2698
+ #~ "und Inhalte (nachfolgend gemeinsam bezeichnet als \"Onlineangebot\" oder "
2699
+ #~ "\"Website\") auf. Die Datenschutzerkl&auml;rung gilt unabh&auml;ngig von "
2700
+ #~ "den verwendeten Domains, Systemen, Plattformen und Ger&auml;ten (z.B. "
2701
+ #~ "Desktop oder Mobile) auf denen das Onlineangebot ausgef&uuml;hrt wird.\n"
2702
+ #~ "\n"
2703
+ #~ "Anbieter des Onlineangebotes und die datenschutzrechtlich verantwortliche "
2704
+ #~ "Stelle ist [company_name], Inhaber: [company_owner], [adress_street], "
2705
+ #~ "[adress_zip_location] (nachfolgend bezeichnet als \"AnbieterIn\", \"wir\" "
2706
+ #~ "oder \"uns\"). F&uuml;r die Kontaktm&ouml;glichkeiten verweisen wir auf "
2707
+ #~ "unser Impressum\n"
2708
+ #~ "\n"
2709
+ #~ "Der Begriff \"Nutzer\" umfasst alle Kunden und Besucher unseres "
2710
+ #~ "Onlineangebotes. Die verwendeten Begrifflichkeiten, wie z.B. \"Nutzer\" "
2711
+ #~ "sind geschlechtsneutral zu verstehen.\n"
2712
+ #~ "\n"
2713
+ #~ "<h2>2. Grunds&auml;tzliche Angaben zur Datenverarbeitung</h2>\n"
2714
+ #~ "\n"
2715
+ #~ "Wir verarbeiten personenbezogene Daten der Nutzer nur unter Einhaltung "
2716
+ #~ "der einschl&auml;gigen Datenschutzbestimmungen entsprechend den Geboten "
2717
+ #~ "der Datensparsamkeit- und Datenvermeidung. Das bedeutet die Daten der "
2718
+ #~ "Nutzer werden nur beim Vorliegen einer gesetzlichen Erlaubnis, "
2719
+ #~ "insbesondere wenn die Daten zur Erbringung unserer vertraglichen "
2720
+ #~ "Leistungen sowie Online-Services erforderlich, bzw. gesetzlich "
2721
+ #~ "vorgeschrieben sind oder beim Vorliegen einer Einwilligung verarbeitet.\n"
2722
+ #~ "\n"
2723
+ #~ "Wir treffen organisatorische, vertragliche und technische "
2724
+ #~ "Sicherheitsma&szlig;nahmen entsprechend dem Stand der Technik, um sicher "
2725
+ #~ "zu stellen, dass die Vorschriften der Datenschutzgesetze eingehalten "
2726
+ #~ "werden und um damit die durch uns verarbeiteten Daten gegen zuf&auml;"
2727
+ #~ "llige oder vors&auml;tzliche Manipulationen, Verlust, Zerst&ouml;rung "
2728
+ #~ "oder gegen den Zugriff unberechtigter Personen zu sch&uuml;tzen.\n"
2729
+ #~ "\n"
2730
+ #~ "Sofern im Rahmen dieser Datenschutzerkl&auml;rung Inhalte, Werkzeuge oder "
2731
+ #~ "sonstige Mittel von anderen Anbietern (nachfolgend gemeinsam bezeichnet "
2732
+ #~ "als \"Dritt-Anbieter\") eingesetzt werden und deren genannter Sitz im "
2733
+ #~ "Ausland ist, ist davon auszugehen, dass ein Datentransfer in die "
2734
+ #~ "Sitzstaaten der Dritt-Anbieter stattfindet. Die &Uuml;bermittlung von "
2735
+ #~ "Daten in Drittstaaten erfolgt entweder auf Grundlage einer gesetzlichen "
2736
+ #~ "Erlaubnis, einer Einwilligung der Nutzer oder spezieller "
2737
+ #~ "Vertragsklauseln, die eine gesetzlich vorausgesetzte Sicherheit der Daten "
2738
+ #~ "gew&auml;hrleisten.\n"
2739
+ #~ "\n"
2740
+ #~ "<h2>3. Verarbeitung personenbezogener Daten</h2>\n"
2741
+ #~ "\n"
2742
+ #~ "Die personenbezogenen Daten werden, neben den ausdr&uuml;cklich in dieser "
2743
+ #~ "Datenschutzerkl&auml;rung genannten Verwendung, f&uuml;r die folgenden "
2744
+ #~ "Zwecke auf Grundlage gesetzlicher Erlaubnisse oder Einwilligungen der "
2745
+ #~ "Nutzer verarbeitet:\n"
2746
+ #~ "- Die Zurverf&uuml;gungstellung, Ausf&uuml;hrung, Pflege, Optimierung und "
2747
+ #~ "Sicherung unserer Dienste-, Service- und Nutzerleistungen;\n"
2748
+ #~ "- Die Gew&auml;hrleistung eines effektiven Kundendienstes und technischen "
2749
+ #~ "Supports.\n"
2750
+ #~ "\n"
2751
+ #~ "Wir &uuml;bermitteln die Daten der Nutzer an Dritte nur, wenn dies f&uuml;"
2752
+ #~ "r Abrechnungszwecke notwendig ist (z.B. an einen Zahlungsdienstleister) "
2753
+ #~ "oder f&uuml;r andere Zwecke, wenn diese notwendig sind, um unsere "
2754
+ #~ "vertraglichen Verpflichtungen gegen&uuml;ber den Nutzern zu erf&uuml;llen "
2755
+ #~ "(z.B. Adressmitteilung an Lieferanten).\n"
2756
+ #~ "\n"
2757
+ #~ "Bei der Kontaktaufnahme mit uns (per Kontaktformular oder Email) werden "
2758
+ #~ "die Angaben des Nutzers zwecks Bearbeitung der Anfrage sowie f&uuml;r den "
2759
+ #~ "Fall, dass Anschlussfragen entstehen, gespeichert.\n"
2760
+ #~ "Personenbezogene Daten werden gel&ouml;scht, sofern sie ihren "
2761
+ #~ "Verwendungszweck erf&uuml;llt haben und der L&ouml;schung keine "
2762
+ #~ "Aufbewahrungspflichten entgegenstehen.\n"
2763
+ #~ "\n"
2764
+ #~ "<h2>4. Erhebung von Zugriffsdaten</h2>\n"
2765
+ #~ "\n"
2766
+ #~ "Wir erheben Daten &uuml;ber jeden Zugriff auf den Server, auf dem sich "
2767
+ #~ "dieser Dienst befindet (so genannte Serverlogfiles). Zu den Zugriffsdaten "
2768
+ #~ "geh&ouml;ren Name der abgerufenen Webseite, Datei, Datum und Uhrzeit des "
2769
+ #~ "Abrufs, &uuml;bertragene Datenmenge, Meldung &uuml;ber erfolgreichen "
2770
+ #~ "Abruf, Browsertyp nebst Version, das Betriebssystem des Nutzers, Referrer "
2771
+ #~ "URL (die zuvor besuchte Seite), IP-Adresse und der anfragende Provider.\n"
2772
+ #~ "\n"
2773
+ #~ "Wir verwenden die Protokolldaten ohne Zuordnung zur Person des Nutzers "
2774
+ #~ "oder sonstiger Profilerstellung entsprechend den gesetzlichen "
2775
+ #~ "Bestimmungen nur f&uuml;r statistische Auswertungen zum Zweck des "
2776
+ #~ "Betriebs, der Sicherheit und der Optimierung unseres Onlineangebotes. Wir "
2777
+ #~ "behalten uns jedoch vor, die Protokolldaten nachtr&auml;glich zu &uuml;"
2778
+ #~ "berpr&uuml;fen, wenn aufgrund konkreter Anhaltspunkte der berechtigte "
2779
+ #~ "Verdacht einer rechtswidrigen Nutzung besteht.\n"
2780
+ #~ "\n"
2781
+ #~ "<h2>5. Cookies &amp; Reichweitenmessung</h2>\n"
2782
+ #~ "\n"
2783
+ #~ "Cookies sind Informationen, die von unserem Webserver oder Webservern "
2784
+ #~ "Dritter an die Web-Browser der Nutzer &uuml;bertragen und dort f&uuml;r "
2785
+ #~ "einen sp&auml;teren Abruf gespeichert werden. &Uuml;ber den Einsatz von "
2786
+ #~ "Cookies im Rahmen pseudonymer Reichweitenmessung werden die Nutzer im "
2787
+ #~ "Rahmen dieser Datenschutzerkl&auml;rung informiert.\n"
2788
+ #~ "\n"
2789
+ #~ "Die Betrachtung dieses Onlineangebotes ist auch unter Ausschluss von "
2790
+ #~ "Cookies m&ouml;glich. Falls die Nutzer nicht m&ouml;chten, dass Cookies "
2791
+ #~ "auf ihrem Rechner gespeichert werden, werden sie gebeten die "
2792
+ #~ "entsprechende Option in den Systemeinstellungen ihres Browsers zu "
2793
+ #~ "deaktivieren. Gespeicherte Cookies k&ouml;nnen in den Systemeinstellungen "
2794
+ #~ "des Browsers gel&ouml;scht werden. Der Ausschluss von Cookies kann zu "
2795
+ #~ "Funktionseinschr&auml;nkungen dieses Onlineangebotes f&uuml;hren.\n"
2796
+ #~ "\n"
2797
+ #~ "Es besteht die M&ouml;glichkeit, viele Online-Anzeigen-Cookies von "
2798
+ #~ "Unternehmen &uuml;ber die US-amerikanische Seite <a href=\"http://www."
2799
+ #~ "aboutads.info/choices\" target=\"_blank\">http://www.aboutads.info/"
2800
+ #~ "choices</a> oder die EU-Seite <a href=\"http://www.youronlinechoices.com/"
2801
+ #~ "uk/your-ad-choices/\" target=\"_blank\">http://www.youronlinechoices.com/"
2802
+ #~ "uk/your-ad-choices/</a> zu verwalten.\n"
2803
+ #~ "\n"
2804
+ #~ "<h2>6. Google Analytics</h2>\n"
2805
+ #~ "\n"
2806
+ #~ "Wir setzen Google Analytics, einen Webanalysedienst der Google Inc. "
2807
+ #~ "(\"Google\") ein. Google verwendet Cookies. Die durch das Cookie "
2808
+ #~ "erzeugten Informationen &uuml;ber Benutzung des Onlineangebotes durch die "
2809
+ #~ "Nutzer werden in der Regel an einen Server von Google in den USA &uuml;"
2810
+ #~ "bertragen und dort gespeichert.\n"
2811
+ #~ "\n"
2812
+ #~ "Google wird diese Informationen in unserem Auftrag benutzen, um die "
2813
+ #~ "Nutzung unseres Onlineangebotes durch die Nutzer auszuwerten, um Reports "
2814
+ #~ "&uuml;ber die Aktivit&auml;ten innerhalb dieses Onlineangebotes "
2815
+ #~ "zusammenzustellen und um weitere mit der Nutzung dieses Onlineangebotes "
2816
+ #~ "und der Internetnutzung verbundene Dienstleistungen uns gegen&uuml;ber zu "
2817
+ #~ "erbringen. Dabei k&ouml;nnen aus den verarbeiteten Daten pseudonyme "
2818
+ #~ "Nutzungsprofile der Nutzer erstellt werden.\n"
2819
+ #~ "\n"
2820
+ #~ "Wir setzen Google Analytics nur mit aktivierter IP-Anonymisierung ein. "
2821
+ #~ "Das bedeutet, die IP-Adresse der Nutzer wird von Google innerhalb von "
2822
+ #~ "Mitgliedstaaten der Europ&auml;ischen Union oder in anderen "
2823
+ #~ "Vertragsstaaten des Abkommens &uuml;ber den Europ&auml;ischen "
2824
+ #~ "Wirtschaftsraum gek&uuml;rzt. Nur in Ausnahmef&auml;llen wird die volle "
2825
+ #~ "IP-Adresse an einen Server von Google in den USA &uuml;bertragen und dort "
2826
+ #~ "gek&uuml;rzt.\n"
2827
+ #~ "\n"
2828
+ #~ "Die von dem Browser des Nutzers &uuml;bermittelte IP-Adresse wird nicht "
2829
+ #~ "mit anderen Daten von Google zusammengef&uuml;hrt. Die Nutzer k&ouml;nnen "
2830
+ #~ "die Speicherung der Cookies durch eine entsprechende Einstellung ihrer "
2831
+ #~ "Browser-Software verhindern; die Nutzer k&ouml;nnen dar&uuml;ber hinaus "
2832
+ #~ "die Erfassung der durch das Cookie erzeugten und auf ihre Nutzung des "
2833
+ #~ "Onlineangebotes bezogenen Daten an Google sowie die Verarbeitung dieser "
2834
+ #~ "Daten durch Google verhindern, indem sie das unter dem folgenden Link "
2835
+ #~ "verf&uuml;gbare Browser-Plugin herunterladen und installieren: <a href="
2836
+ #~ "\"http://tools.google.com/dlpage/gaoptout?hl=de\" target=\"_blank"
2837
+ #~ "\">http://tools.google.com/dlpage/gaoptout?hl=de</a>.\n"
2838
+ #~ "\n"
2839
+ #~ "Weitere Informationen zur Datennutzung zu Werbezwecken durch Google, "
2840
+ #~ "Einstellungs- und Widerspruchsm&ouml;glichkeiten erfahren Sie auf den "
2841
+ #~ "Webseiten von Google: <a href=\"https://www.google.com/intl/de/policies/"
2842
+ #~ "privacy/partners\" target=\"_blank\">https://www.google.com/intl/de/"
2843
+ #~ "policies/privacy/partners</a> (\"Datennutzung durch Google bei Ihrer "
2844
+ #~ "Nutzung von Websites oder Apps unserer Partner\"), <a href=\"http://www."
2845
+ #~ "google.com/policies/technologies/ads\" target=\"_blank\">http://www."
2846
+ #~ "google.com/policies/technologies/ads</a> (\"Datennutzung zu Werbezwecken"
2847
+ #~ "\"), <a href=\"http://www.google.de/settings/ads\" target=\"_blank"
2848
+ #~ "\">http://www.google.de/settings/ads</a> (\"Informationen verwalten, die "
2849
+ #~ "Google verwendet, um Ihnen Werbung einzublenden\") und <a href=\"http://"
2850
+ #~ "www.google.com/ads/preferences\" target=\"_blank\">http://www.google.com/"
2851
+ #~ "ads/preferences</a> (\"Bestimmen Sie, welche Werbung Google Ihnen zeigt"
2852
+ #~ "\").\n"
2853
+ #~ "\n"
2854
+ #~ "<h2>7. Google-Re/Marketing-Services</h2>\n"
2855
+ #~ "\n"
2856
+ #~ "Wir nutzen die Marketing- und Remarketing-Dienste (kurz \"Google-"
2857
+ #~ "Marketing-Services\") der Google Inc., 1600 Amphitheatre Parkway, "
2858
+ #~ "Mountain View, CA 94043, USA, (\"Google\").\n"
2859
+ #~ "\n"
2860
+ #~ "Die Google-Marketing-Services erlauben uns Werbeanzeigen f&uuml;r und auf "
2861
+ #~ "unserer Website gezielter anzuzeigen, um Nutzern nur Anzeigen zu pr&auml;"
2862
+ #~ "sentieren, die potentiell deren Interessen entsprechen. Falls Nutzer z.B. "
2863
+ #~ "Anzeigen f&uuml;r Produkte angezeigt werden, f&uuml;r die er sich auf "
2864
+ #~ "anderen Webseiten interessiert hat, spricht man hierbei vom \"Remarketing"
2865
+ #~ "\". Zu diesen Zwecken wird bei Aufruf unserer und anderer Webseiten, auf "
2866
+ #~ "denen Google-Marketing-Services aktiv sind, unmittelbar durch Google ein "
2867
+ #~ "Code von Google ausgef&uuml;hrt und es werden in die Website sog. "
2868
+ #~ "(Re)marketing-Tags (unsichtbare Grafiken oder Code, auch als \"Web Beacons"
2869
+ #~ "\" bezeichnet) in die Webseite eingebunden. Mit deren Hilfe wird auf dem "
2870
+ #~ "Ger&auml;t der Nutzer ein individuelles Cookie, d.h. eine kleine Datei "
2871
+ #~ "abgespeichert (statt Cookies k&ouml;nnen auch vergleichbare Technologien "
2872
+ #~ "verwendet werden). Die Cookies k&ouml;nnen von verschiedenen Domains "
2873
+ #~ "gesetzt werden, unter anderem von google.com, doubleclick.net, "
2874
+ #~ "invitemedia.com, admeld.com, googlesyndication.com oder googleadservices."
2875
+ #~ "com. In dieser Datei wird vermerkt, welche Webseiten der Nutzer "
2876
+ #~ "aufgesucht, f&uuml;r welche Inhalte er sich interessiert und welche "
2877
+ #~ "Angebote er geklickt hat, ferner technische Informationen zum Browser und "
2878
+ #~ "Betriebssystem, verweisende Webseiten, Besuchszeit sowie weitere Angaben "
2879
+ #~ "zur Nutzung des Onlineangebotes. Es wird ebenfalls die IP-Adresse der "
2880
+ #~ "Nutzer erfasst, wobei wir im Rahmen von Google-Analytics mitteilen, dass "
2881
+ #~ "die IP-Adresse innerhalb von Mitgliedstaaten der Europ&auml;ischen Union "
2882
+ #~ "oder in anderen Vertragsstaaten des Abkommens &uuml;ber den Europ&auml;"
2883
+ #~ "ischen Wirtschaftsraum gek&uuml;rzt und nur in Ausnahmef&auml;llen ganz "
2884
+ #~ "an einen Server von Google in den USA &uuml;bertragen und dort gek&uuml;"
2885
+ #~ "rzt wird. Die IP-Adresse wird nicht mit Daten des Nutzers innerhalb von "
2886
+ #~ "anderen Angeboten von Google zusammengef&uuml;hrt. Diese vorstehend "
2887
+ #~ "genannten Informationen k&ouml;nnen auch mit solchen Informationen aus "
2888
+ #~ "anderen Quellen verbunden werden. Wenn der Nutzer anschlie&szlig;end "
2889
+ #~ "andere Webseiten besucht, k&ouml;nnen ihm entsprechend seiner Interessen "
2890
+ #~ "die auf ihn abgestimmten Anzeigen angezeigt werden.\n"
2891
+ #~ "\n"
2892
+ #~ "Die Daten der Nutzer werden im Rahmen der Google-Marketing-Services "
2893
+ #~ "pseudonym verarbeitet. D.h. Google speichert und verarbeitet z.B. nicht "
2894
+ #~ "den Namen oder E-Mailadresse der Nutzer, sondern verarbeitet die "
2895
+ #~ "relevanten Daten Cookie-bezogen innerhalb pseudonymer Nutzer-Profile. D."
2896
+ #~ "h. aus der Sicht von Google werden die Anzeigen nicht f&uuml;r eine "
2897
+ #~ "konkret identifizierte Person verwaltet und angezeigt, sondern f&uuml;r "
2898
+ #~ "den Cookie-Inhaber, unabh&auml;ngig davon wer dieser Cookie-Inhaber ist. "
2899
+ #~ "Dies gilt nicht, wenn ein Nutzer Google ausdr&uuml;cklich erlaubt hat, "
2900
+ #~ "die Daten ohne diese Pseudonymisierung zu verarbeiten. Die von "
2901
+ #~ "\"DoubleClick\" &uuml;ber die Nutzer gesammelten Informationen werden an "
2902
+ #~ "Google &uuml;bermittelt und auf Googles Servern in den USA gespeichert.\n"
2903
+ #~ "\n"
2904
+ #~ "Zu den von uns eingesetzten Google-Marketing-Services geh&ouml;rt u.a. "
2905
+ #~ "das Online-Werbeprogramm \"Google AdWords\". Im Fall von Google AdWords, "
2906
+ #~ "erh&auml;lt jeder AdWords-Kunde ein anderes \"Conversion-Cookie\". "
2907
+ #~ "Cookies k&ouml;nnen somit nicht &uuml;ber die Websites von AdWords-Kunden "
2908
+ #~ "nachverfolgt werden. Die mit Hilfe des Cookies eingeholten Informationen "
2909
+ #~ "dienen dazu, Conversion-Statistiken f&uuml;r AdWords-Kunden zu erstellen, "
2910
+ #~ "die sich f&uuml;r Conversion-Tracking entschieden haben. Die AdWords-"
2911
+ #~ "Kunden erfahren die Gesamtanzahl der Nutzer, die auf ihre Anzeige "
2912
+ #~ "geklickt haben und zu einer mit einem Conversion-Tracking-Tag versehenen "
2913
+ #~ "Seite weitergeleitet wurden. Sie erhalten jedoch keine Informationen, mit "
2914
+ #~ "denen sich Nutzer pers&ouml;nlich identifizieren lassen.\n"
2915
+ #~ "\n"
2916
+ #~ "Wir binden auf Grundlage des Google-Marketing-Services \"DoubleClick\" "
2917
+ #~ "Werbeanzeigen Dritter ein. DoubleClick verwendet Cookies, mit dem Google "
2918
+ #~ "und seinen Partner-Websites, die Schaltung von Anzeigen auf Basis der "
2919
+ #~ "Besuche von Nutzern auf dieser Website bzw. anderen Websites im Internet "
2920
+ #~ "erm&ouml;glicht wird.\n"
2921
+ #~ "\n"
2922
+ #~ "Wir binden ferner auf Grundlage des Google-Marketing-Services \"AdSense\" "
2923
+ #~ "Werbeanzeigen Dritter ein. AdSense verwendet Cookies, mit dem Google und "
2924
+ #~ "seinen Partner-Websites, die Schaltung von Anzeigen auf Basis der Besuche "
2925
+ #~ "von Nutzern auf dieser Website bzw. anderen Websites im Internet erm&ouml;"
2926
+ #~ "glicht wird.\n"
2927
+ #~ "\n"
2928
+ #~ "Ein weiterer von uns genutzter Google-Marketing-Service ist der \"Google "
2929
+ #~ "Tag Manager\", mit dessen Hilfe weitere Google Analyse- und Marketing-"
2930
+ #~ "Dienste in unsere Website eingebunden werden k&ouml;nnen (z.B. \"AdWords"
2931
+ #~ "\", \"DoubleClick\" oder \"Google Analytics\").\n"
2932
+ #~ "\n"
2933
+ #~ "Weitere Informationen zur Datennutzung zu Marketingzwecken durch Google, "
2934
+ #~ "erfahren Sie auf der &Uuml;bersichtsseite: <a href=\"https://www.google."
2935
+ #~ "com/policies/technologies/ads\" target=\"_blank\">https://www.google.com/"
2936
+ #~ "policies/technologies/ads</a>, die Datenschutzerkl&auml;rung von Google "
2937
+ #~ "ist unter <a href=\"https://www.google.com/policies/privacy\" target="
2938
+ #~ "\"_blank\">https://www.google.com/policies/privacy</a> abrufbar.\n"
2939
+ #~ "\n"
2940
+ #~ "Wenn Sie der Erfassung durch Google-Marketing-Services widersprechen "
2941
+ #~ "m&ouml;chten, k&ouml;nnen Sie die von Google gestellten Einstellungs- und "
2942
+ #~ "Opt-Out-M&ouml;glichkeiten nutzen: <a href=\"http://www.google.com/ads/"
2943
+ #~ "preferences\" target=\"_blank\">http://www.google.com/ads/preferences</"
2944
+ #~ "a>.\n"
2945
+ #~ "\n"
2946
+ #~ "<h2>8. Facebook Social Plugins</h2>\n"
2947
+ #~ "\n"
2948
+ #~ "Unser Onlineangebot verwendet Social Plugins (\"Plugins\") des sozialen "
2949
+ #~ "Netzwerkes facebook.com, welches von der Facebook Ireland Ltd., 4 Grand "
2950
+ #~ "Canal Square, Grand Canal Harbour, Dublin 2, Irland betrieben wird "
2951
+ #~ "(\"Facebook\"). Die Plugins sind an einem der Facebook Logos erkennbar "
2952
+ #~ "(wei&szlig;es \"f\" auf blauer Kachel, den Begriffen \"Like\", \"Gef&auml;"
2953
+ #~ "llt mir\" oder einem \"Daumen hoch\"-Zeichen) oder sind mit dem Zusatz "
2954
+ #~ "\"Facebook Social Plugin\" gekennzeichnet. Die Liste und das Aussehen der "
2955
+ #~ "Facebook Social Plugins kann hier eingesehen werden: <a href=\"https://"
2956
+ #~ "developers.facebook.com/docs/plugins/\" target=\"_blank\">https://"
2957
+ #~ "developers.facebook.com/docs/plugins/</a>.\n"
2958
+ #~ "\n"
2959
+ #~ "Wenn ein Nutzer eine Funktion dieses Onlineangebotes aufruft, die ein "
2960
+ #~ "solches Plugin enth&auml;lt, baut sein Ger&auml;t eine direkte Verbindung "
2961
+ #~ "mit den Servern von Facebook auf. Der Inhalt des Plugins wird von "
2962
+ #~ "Facebook direkt an das Ger&auml;t des Nutzers &uuml;bermittelt und von "
2963
+ #~ "diesem in das Onlineangebot eingebunden. Dabei k&ouml;nnen aus den "
2964
+ #~ "verarbeiteten Daten Nutzungsprofile der Nutzer erstellt werden. Wir haben "
2965
+ #~ "daher keinen Einfluss auf den Umfang der Daten, die Facebook mit Hilfe "
2966
+ #~ "dieses Plugins erhebt und informiert die Nutzer daher entsprechend "
2967
+ #~ "unserem Kenntnisstand.\n"
2968
+ #~ "\n"
2969
+ #~ "Durch die Einbindung der Plugins erh&auml;lt Facebook die Information, "
2970
+ #~ "dass ein Nutzer die entsprechende Seite des Onlineangebotes aufgerufen "
2971
+ #~ "hat. Ist der Nutzer bei Facebook eingeloggt, kann Facebook den Besuch "
2972
+ #~ "seinem Facebook-Konto zuordnen. Wenn Nutzer mit den Plugins interagieren, "
2973
+ #~ "zum Beispiel den Like Button bet&auml;tigen oder einen Kommentar abgeben, "
2974
+ #~ "wird die entsprechende Information von Ihrem Ger&auml;t direkt an "
2975
+ #~ "Facebook &uuml;bermittelt und dort gespeichert. Falls ein Nutzer kein "
2976
+ #~ "Mitglied von Facebook ist, besteht trotzdem die M&ouml;glichkeit, dass "
2977
+ #~ "Facebook seine IP-Adresse in Erfahrung bringt und speichert. Laut "
2978
+ #~ "Facebook wird in Deutschland nur eine anonymisierte IP-Adresse "
2979
+ #~ "gespeichert.\n"
2980
+ #~ "\n"
2981
+ #~ "Zweck und Umfang der Datenerhebung und die weitere Verarbeitung und "
2982
+ #~ "Nutzung der Daten durch Facebook sowie die diesbez&uuml;glichen Rechte "
2983
+ #~ "und Einstellungsm&ouml;glichkeiten zum Schutz der Privatsph&auml;re der "
2984
+ #~ "Nutzer, k&ouml;nnen diese den Datenschutzhinweisen von Facebook "
2985
+ #~ "entnehmen: <a href=\"https://www.facebook.com/about/privacy/\" target="
2986
+ #~ "\"_blank\">https://www.facebook.com/about/privacy/</a>.\n"
2987
+ #~ "\n"
2988
+ #~ "Wenn ein Nutzer Facebookmitglied ist und nicht m&ouml;chte, dass Facebook "
2989
+ #~ "&uuml;ber dieses Onlineangebot Daten &uuml;ber ihn sammelt und mit seinen "
2990
+ #~ "bei Facebook gespeicherten Mitgliedsdaten verkn&uuml;pft, muss er sich "
2991
+ #~ "vor der Nutzung unseres Onlineangebotes bei Facebook ausloggen und seine "
2992
+ #~ "Cookies l&ouml;schen. Weitere Einstellungen und Widerspr&uuml;che zur "
2993
+ #~ "Nutzung von Daten f&uuml;r Werbezwecke, sind innerhalb der Facebook-"
2994
+ #~ "Profileinstellungen m&ouml;glich: <a href=\"https://www.facebook.com/"
2995
+ #~ "settings?tab=ads\" target=\"_blank\">https://www.facebook.com/settings?"
2996
+ #~ "tab=ads</a> oder &uuml;ber die US-amerikanische Seite <a href=\"http://"
2997
+ #~ "www.aboutads.info/choices/\" target=\"_blank\">http://www.aboutads.info/"
2998
+ #~ "choices/</a> oder die EU-Seite <a href=\"http://www.youronlinechoices.com/"
2999
+ #~ "\" target=\"_blank\">http://www.youronlinechoices.com/</a>. Die "
3000
+ #~ "Einstellungen erfolgen plattformunabh&auml;ngig, d.h. sie werden f&uuml;r "
3001
+ #~ "alle Ger&auml;te, wie Desktopcomputer oder mobile Ger&auml;te &uuml;"
3002
+ #~ "bernommen.\n"
3003
+ #~ "\n"
3004
+ #~ "<h2>9. Facebook Remarketing</h2>\n"
3005
+ #~ "\n"
3006
+ #~ "Innerhalb unseres Onlineangebotes werden sog. \"Facebook-Pixel\" des "
3007
+ #~ "sozialen Netzwerkes Facebook, welches von der Facebook Inc., 1 Hacker "
3008
+ #~ "Way, Menlo Park, CA 94025, USA, bzw. falls Sie in der EU ans&auml;ssig "
3009
+ #~ "sind, Facebook Ireland Ltd., 4 Grand Canal Square, Grand Canal Harbour, "
3010
+ #~ "Dublin 2, Irland betrieben wird (\"Facebook\"), eingesetzt. Mit Hilfe des "
3011
+ #~ "Facebook-Pixels ist es Facebook m&ouml;glich, die Besucher unseres "
3012
+ #~ "Angebotes als Zielgruppe f&uuml;r die Darstellung von Anzeigen, sog. "
3013
+ #~ "\"Facebook-Ads\" zu bestimmen. Dementsprechend setzen wir das Facebook -"
3014
+ #~ "Pixel ein, um die durch uns geschalteten Facebook-Ads nur solchen "
3015
+ #~ "Facebook-Nutzern anzuzeigen, die auch ein Interesse an unserem "
3016
+ #~ "Internetangebot gezeigt haben. Das hei&szlig;t, mit Hilfe des Facebook -"
3017
+ #~ "Pixels m&ouml;chten wir sicherstellen, dass unsere Facebook-Ads dem "
3018
+ #~ "potentiellen Interesse der Nutzer entsprechen und nicht bel&auml;stigend "
3019
+ #~ "wirken. Mit Hilfe des Facebook-Pixels k&ouml;nnen wir ferner die "
3020
+ #~ "Wirksamkeit der Facebook-Werbeanzeigen f&uuml;r statistische und "
3021
+ #~ "Marktforschungszwecke nachvollziehen, in dem wir sehen ob Nutzer nachdem "
3022
+ #~ "Klick auf eine Facebook-Werbeanzeige auf unsere Website weitergeleitet "
3023
+ #~ "wurden.\n"
3024
+ #~ "\n"
3025
+ #~ "Der Facebook-Pixel wird beim Aufruf unserer Webseiten unmittelbar durch "
3026
+ #~ "Facebook eingebunden und k&ouml;nnen auf Ihrem Ger&auml;t ein sog. "
3027
+ #~ "Cookie, d.h. eine kleine Datei abspeichern. Wenn Sie sich anschlie&szlig;"
3028
+ #~ "end bei Facebook einloggen oder im eingeloggten Zustand Facebook "
3029
+ #~ "besuchen, wird der Besuch unseres Angebotes in Ihrem Profil vermerkt. Die "
3030
+ #~ "&uuml;ber Sie erhobenen Daten sind f&uuml;r uns anonym, bieten uns also "
3031
+ #~ "keine R&uuml;ckschl&uuml;sse auf die Identit&auml;t der Nutzer. "
3032
+ #~ "Allerdings werden die Daten von Facebook gespeichert und verarbeitet, "
3033
+ #~ "sodass eine Verbindung zum jeweiligen Nutzerprofil m&ouml;glich ist. Die "
3034
+ #~ "Verarbeitung der Daten durch Facebook erfolgt im Rahmen von Facebooks "
3035
+ #~ "Datenverwendungsrichtlinie. Dementsprechend erhalten Sie weitere "
3036
+ #~ "Informationen zur Funktionsweise des Remarketing-Pixels und generell zur "
3037
+ #~ "Darstellung von Facebook-Ads, in der Datenverwendungsrichtlinie von "
3038
+ #~ "Facebook: <a href=\"https://www.facebook.com/policy.php\" target=\"_blank"
3039
+ #~ "\">https://www.facebook.com/policy.php</a>.\n"
3040
+ #~ "\n"
3041
+ #~ "Sie k&ouml;nnen der Erfassung durch den Facebook-Pixel und Verwendung "
3042
+ #~ "Ihrer Daten zur Darstellung von Facebook-Ads widersprechen. Hierzu k&ouml;"
3043
+ #~ "nnen Sie die von Facebook eingerichtete Seite aufrufen und dort die "
3044
+ #~ "Hinweise zu den Einstellungen nutzungsbasierter Werbung befolgen: <a href="
3045
+ #~ "\"https://www.facebook.com/settings?tab=ads\" target=\"_blank\">https://"
3046
+ #~ "www.facebook.com/settings?tab=ads</a> oder den Widerspruch &uuml;ber die "
3047
+ #~ "US-amerikanische Seite <a href=\"http://www.aboutads.info/choices/\" "
3048
+ #~ "target=\"_blank\">http://www.aboutads.info/choices/</a> oder die EU-Seite "
3049
+ #~ "<a href=\"http://www.youronlinechoices.com/\" target=\"_blank\">http://"
3050
+ #~ "www.youronlinechoices.com/</a> erkl&auml;ren. Die Einstellungen erfolgen "
3051
+ #~ "plattformunabh&auml;ngig, d.h. sie werden f&uuml;r alle Ger&auml;te, wie "
3052
+ #~ "Desktopcomputer oder mobile Ger&auml;te &uuml;bernommen.\n"
3053
+ #~ "\n"
3054
+ #~ "<h2>10. Newsletter</h2>\n"
3055
+ #~ "\n"
3056
+ #~ "Mit den nachfolgenden Hinweisen kl&auml;ren wir Sie &uuml;ber die Inhalte "
3057
+ #~ "unseres Newsletters sowie das Anmelde-, Versand- und das statistische "
3058
+ #~ "Auswertungsverfahren sowie Ihre Widerspruchsrechte auf. Indem Sie unseren "
3059
+ #~ "Newsletter abonnieren, erkl&auml;ren Sie sich mit dem Empfang und den "
3060
+ #~ "beschriebenen Verfahren einverstanden.\n"
3061
+ #~ "\n"
3062
+ #~ "Inhalt des Newsletters: Wir versenden Newsletter, E-Mails und weitere "
3063
+ #~ "elektronische Benachrichtigungen mit werblichen Informationen "
3064
+ #~ "(nachfolgend \"Newsletter\") nur mit der Einwilligung der Empf&auml;nger "
3065
+ #~ "oder einer gesetzlichen Erlaubnis. Sofern im Rahmen einer Anmeldung zum "
3066
+ #~ "Newsletter dessen Inhalte konkret umschrieben werden, sind sie f&uuml;r "
3067
+ #~ "die Einwilligung der Nutzer ma&szlig;geblich. Im &Uuml;brigen enthalten "
3068
+ #~ "unsere Newsletter folgende Informationen: unsere Produkte, Angebote, "
3069
+ #~ "Aktionen und unser Unternehmen.\n"
3070
+ #~ "\n"
3071
+ #~ "Double-Opt-In und Protokollierung: Die Anmeldung zu unserem Newsletter "
3072
+ #~ "erfolgt in einem sog. Double-Opt-In-Verfahren. D.h. Sie erhalten nach der "
3073
+ #~ "Anmeldung eine E-Mail, in der Sie um die Best&auml;tigung Ihrer Anmeldung "
3074
+ #~ "gebeten werden. Diese Best&auml;tigung ist notwendig, damit sich niemand "
3075
+ #~ "mit fremden E-Mailadressen anmelden kann. Die Anmeldungen zum Newsletter "
3076
+ #~ "werden protokolliert, um den Anmeldeprozess entsprechend den rechtlichen "
3077
+ #~ "Anforderungen nachweisen zu k&ouml;nnen. Hierzu geh&ouml;rt die "
3078
+ #~ "Speicherung des Anmelde- und des Best&auml;tigungszeitpunkts, als auch "
3079
+ #~ "der IP-Adresse. Ebenso werden die &Auml;nderungen Ihrer bei dem "
3080
+ #~ "Versanddienstleister gespeicherten Daten protokolliert.\n"
3081
+ #~ "\n"
3082
+ #~ "Versanddienstleister: Der Versand der Newsletter erfolgt mittels von "
3083
+ #~ "\"[newsletter_service]\" (nachfolgend bezeichnet als "
3084
+ #~ "\"Versanddienstleister\"). Die Datenschutzbestimmungen des "
3085
+ #~ "Versanddienstleisters k&ouml;nnen Sie hier einsehen: "
3086
+ #~ "[newsletter_service_privacy_policy].\n"
3087
+ #~ "\n"
3088
+ #~ "Die E-Mail-Adressen unserer Newsletterempf&auml;nger, als auch deren "
3089
+ #~ "weitere, im Rahmen dieser Hinweise beschriebenen Daten, werden auf den "
3090
+ #~ "Servern des Versanddienstleisters gespeichert. Der Versanddienstleister "
3091
+ #~ "verwendet diese Informationen zum Versand und zur Auswertung der "
3092
+ #~ "Newsletter in unserem Auftrag. Des Weiteren kann der Versanddienstleister "
3093
+ #~ "nach eigenen Informationen diese Daten zur Optimierung oder Verbesserung "
3094
+ #~ "der eigenen Services nutzen, z.B. zur technischen Optimierung des "
3095
+ #~ "Versandes und der Darstellung der Newsletter oder f&uuml;r "
3096
+ #~ "wirtschaftliche Zwecke, um zu bestimmen aus welchen L&auml;ndern die "
3097
+ #~ "Empf&auml;nger kommen. Der Versanddienstleister nutzt die Daten unserer "
3098
+ #~ "Newsletterempf&auml;nger jedoch nicht, um diese selbst anzuschreiben oder "
3099
+ #~ "an Dritte weiterzugeben.\n"
3100
+ #~ "\n"
3101
+ #~ "Anmeldedaten: Um sich f&uuml;r den Newsletter anzumelden, reicht es aus, "
3102
+ #~ "wenn Sie Ihre E-Mailadresse angeben. \n"
3103
+ #~ "\n"
3104
+ #~ "Statistische Erhebung und Analysen - Die Newsletter enthalten einen sog. "
3105
+ #~ "\"web-beacon\", d.h. eine pixelgro&szlig;e Datei, die beim &Ouml;ffnen "
3106
+ #~ "des Newsletters von dem Server des Versanddienstleisters abgerufen wird. "
3107
+ #~ "Im Rahmen dieses Abrufs werden zun&auml;chst technische Informationen, "
3108
+ #~ "wie Informationen zum Browser und Ihrem System, als auch Ihre IP-Adresse "
3109
+ #~ "und Zeitpunkt des Abrufs erhoben. Diese Informationen werden zur "
3110
+ #~ "technischen Verbesserung der Services anhand der technischen Daten oder "
3111
+ #~ "der Zielgruppen und ihres Leseverhaltens anhand derer Abruforte (die mit "
3112
+ #~ "Hilfe der IP-Adresse bestimmbar sind) oder der Zugriffszeiten genutzt. Zu "
3113
+ #~ "den statistischen Erhebungen geh&ouml;rt ebenfalls die Feststellung, ob "
3114
+ #~ "die Newsletter ge&ouml;ffnet werden, wann sie ge&ouml;ffnet werden und "
3115
+ #~ "welche Links geklickt werden. Diese Informationen k&ouml;nnen aus "
3116
+ #~ "technischen Gr&uuml;nden zwar den einzelnen Newsletterempf&auml;ngern "
3117
+ #~ "zugeordnet werden. Es ist jedoch weder unser Bestreben, noch das des "
3118
+ #~ "Versanddienstleisters, einzelne Nutzer zu beobachten. Die Auswertungen "
3119
+ #~ "dienen uns viel mehr dazu, die Lesegewohnheiten unserer Nutzer zu "
3120
+ #~ "erkennen und unsere Inhalte auf sie anzupassen oder unterschiedliche "
3121
+ #~ "Inhalte entsprechend den Interessen unserer Nutzer zu versenden.\n"
3122
+ #~ "\n"
3123
+ #~ "K&uuml;ndigung/Widerruf - Sie k&ouml;nnen den Empfang unseres Newsletters "
3124
+ #~ "jederzeit k&uuml;ndigen, d.h. Ihre Einwilligungen widerrufen. Damit "
3125
+ #~ "erl&ouml;schen gleichzeitig Ihre Einwilligungen in dessen Versand durch "
3126
+ #~ "den Versanddienstleister und die statistischen Analysen. Ein getrennter "
3127
+ #~ "Widerruf des Versandes durch den Versanddienstleister oder die "
3128
+ #~ "statistische Auswertung ist leider nicht m&ouml;glich. Einen Link zur "
3129
+ #~ "K&uuml;ndigung des Newsletters finden Sie am Ende eines jeden "
3130
+ #~ "Newsletters.\n"
3131
+ #~ "\n"
3132
+ #~ "<h2>11. Einbindung von Diensten und Inhalten Dritter</h2>\n"
3133
+ #~ "\n"
3134
+ #~ "Es kann vorkommen, dass innerhalb unseres Onlineangebotes Inhalte oder "
3135
+ #~ "Dienste von Dritt-Anbietern, wie zum Beispiel Stadtpl&auml;ne oder "
3136
+ #~ "Schriftarten von anderen Webseiten eingebunden werden. Die Einbindung von "
3137
+ #~ "Inhalten der Dritt-Anbieter setzt immer voraus, dass die Dritt-Anbieter "
3138
+ #~ "die IP-Adresse der Nutzer wahrnehmen, da sie ohne die IP-Adresse die "
3139
+ #~ "Inhalte nicht an den Browser der Nutzer senden k&ouml;nnten. Die IP-"
3140
+ #~ "Adresse ist damit f&uuml;r die Darstellung dieser Inhalte erforderlich. "
3141
+ #~ "Des Weiteren k&ouml;nnen die Anbieter der Dritt-Inhalte eigene Cookies "
3142
+ #~ "setzen und die Daten der Nutzer f&uuml;r eigene Zwecke verarbeiten. Dabei "
3143
+ #~ "k&ouml;nnen aus den verarbeiteten Daten Nutzungsprofile der Nutzer "
3144
+ #~ "erstellt werden. Wir werden diese Inhalte m&ouml;glichst datensparsam und "
3145
+ #~ "datenvermeidend einsetzen sowie im Hinblick auf die Datensicherheit "
3146
+ #~ "zuverl&auml;ssige Dritt-Anbieter w&auml;hlen.\n"
3147
+ #~ "\n"
3148
+ #~ "Die nachfolgende Darstellung bietet eine &Uuml;bersicht von Dritt-"
3149
+ #~ "Anbietern sowie ihrer Inhalte, nebst Links zu deren Datenschutzerkl&auml;"
3150
+ #~ "rungen, welche weitere Hinweise zur Verarbeitung von Daten und, z.T. "
3151
+ #~ "bereits hier genannt, Widerspruchsm&ouml;glichkeiten (sog. Opt-Out) "
3152
+ #~ "enthalten:\n"
3153
+ #~ "\n"
3154
+ #~ "- Externe Schriftarten von Google, Inc., <a href=\"https://www.google.com/"
3155
+ #~ "fonts\" target=\"_blank\">https://www.google.com/fonts</a> (\"Google Fonts"
3156
+ #~ "\"). Die Einbindung der Google Fonts erfolgt durch einen Serveraufruf bei "
3157
+ #~ "Google (in der Regel in den USA). Datenschutzerkl&auml;rung: <a href="
3158
+ #~ "\"https://www.google.com/policies/privacy/\" target=\"_blank\">https://"
3159
+ #~ "www.google.com/policies/privacy/</a>, Opt-Out: <a href=\"https://www."
3160
+ #~ "google.com/settings/ads/\" target=\"_blank\">https://www.google.com/"
3161
+ #~ "settings/ads/</a>.\n"
3162
+ #~ "\n"
3163
+ #~ "- Landkarten des Dienstes \"Google Maps\" des Dritt-Anbieters Google "
3164
+ #~ "Inc., 1600 Amphitheatre Parkway, Mountain View, CA 94043, USA, gestellt. "
3165
+ #~ "Datenschutzerkl&auml;rung: <a href=\"https://www.google.com/policies/"
3166
+ #~ "privacy/\" target=\"_blank\">https://www.google.com/policies/privacy/</"
3167
+ #~ "a>, Opt-Out: <a href=\"https://www.google.com/settings/ads/\" target="
3168
+ #~ "\"_blank\">https://www.google.com/settings/ads/</a>.\n"
3169
+ #~ "\n"
3170
+ #~ "- Videos der Plattform \"YouTube\" des Dritt-Anbieters Google Inc., 1600 "
3171
+ #~ "Amphitheatre Parkway, Mountain View, CA 94043, USA. Datenschutzerkl&auml;"
3172
+ #~ "rung: <a href=\"https://www.google.com/policies/privacy/\" target=\"_blank"
3173
+ #~ "\">https://www.google.com/policies/privacy/</a>, Opt-Out: <a href="
3174
+ #~ "\"https://www.google.com/settings/ads/\" target=\"_blank\">https://www."
3175
+ #~ "google.com/settings/ads/</a>.\n"
3176
+ #~ "\n"
3177
+ #~ "<h2>12. Rechte der Nutzer und L&ouml;schung von Daten</h2>\n"
3178
+ #~ "\n"
3179
+ #~ "Nutzer haben das Recht, auf Antrag unentgeltlich Auskunft zu erhalten "
3180
+ #~ "&uuml;ber die personenbezogenen Daten, die von uns &uuml;ber sie "
3181
+ #~ "gespeichert wurden.\n"
3182
+ #~ "Zus&auml;tzlich haben die Nutzer das Recht auf Berichtigung unrichtiger "
3183
+ #~ "Daten, Widerruf von Einwilligungen, Sperrung und L&ouml;schung ihrer "
3184
+ #~ "personenbezogenen Daten sowie das Recht, im Fall der Annahme einer "
3185
+ #~ "unrechtm&auml;&szlig;igen Datenverarbeitung eine Beschwerde bei der "
3186
+ #~ "zust&auml;ndigen Aufsichtsbeh&ouml;rde einzureichen.\n"
3187
+ #~ "\n"
3188
+ #~ "Die bei uns gespeicherten Daten werden gel&ouml;scht, sobald sie f&uuml;r "
3189
+ #~ "ihre Zweckbestimmung nicht mehr erforderlich sind und der L&ouml;schung "
3190
+ #~ "keine gesetzlichen Aufbewahrungspflichten entgegenstehen.\n"
3191
+ #~ "\n"
3192
+ #~ "<h2>13. &Auml;nderungen der Datenschutzerkl&auml;rung</h2>\n"
3193
+ #~ "\n"
3194
+ #~ "Wir behalten uns vor, die Datenschutzerkl&auml;rung zu &auml;ndern, um "
3195
+ #~ "sie an ge&auml;nderte Rechtslagen, oder bei &Auml;nderungen des Dienstes "
3196
+ #~ "sowie der Datenverarbeitung anzupassen. Dies gilt jedoch nur im Hinblick "
3197
+ #~ "auf Erkl&auml;rungen zur Datenverarbeitung. Sofern Einwilligungen der "
3198
+ #~ "Nutzer erforderlich sind oder Bestandteile der Datenschutzerkl&auml;rung "
3199
+ #~ "Regelungen des Vertragsverh&auml;ltnisses mit den Nutzern enthalten, "
3200
+ #~ "erfolgen die &Auml;nderungen nur mit Zustimmung der Nutzer.\n"
3201
+ #~ "Die Nutzer werden gebeten sich regelm&auml;&szlig;ig &uuml;ber den Inhalt "
3202
+ #~ "der Datenschutzerkl&auml;rung zu informieren.\n"
3203
+ #~ "\n"
3204
+ #~ "Stand: [save_date]"
3205
+
3206
  #~ msgid "Ok"
3207
  #~ msgstr "Ok"
3208
 
public/class-sp-dsgvo-public.php CHANGED
@@ -492,10 +492,43 @@ class SPDSGVOPublic
492
  /* i592995 */
493
  }
494
 
495
- public function addCommentsCheckBoxForDSGVO2($defaults)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
496
  {
497
  if (SPDSGVOSettings::get('sp_dsgvo_comments_checkbox') === '0') {
498
- return $args;
499
  } else {
500
  //error_log('addCommentsCheckBoxForDSGVO2');
501
 
@@ -513,7 +546,8 @@ class SPDSGVOPublic
513
  $confirmText = icl_translate('shapepress-dsgvo', 'spdsgvo_comments_checkbox_confirm', $confirmText);
514
  }
515
 
516
- $privacy_policy_string = $defaults['comment_field'];//'<p class="comment-form-comment"><label for="comment">' . __( 'Comment', 'noun' ) . '</label> <textarea id="comment" name="comment" cols="45" rows="8" maxlength="65525" required="required"></textarea></p>';
 
517
 
518
  $privacy_policy_string .= '<p class="gdpr-cb-info-text" style="display:none"><small>* '.convDeChars($infoText)."</small></p>";
519
 
@@ -522,11 +556,10 @@ class SPDSGVOPublic
522
  $privacy_policy_string .= '<p class="comment-form-gdpr"><input required="required" id="gdpr-cb" name="gdpr-cb" type="checkbox" />';
523
  $privacy_policy_string .= convDeChars($confirmText);
524
  $privacy_policy_string .= "</p>";
525
-
526
- $defaults['comment_field'] = $privacy_policy_string;
527
 
528
- return $defaults;
529
-
530
 
531
  }
532
  }
@@ -554,6 +587,7 @@ class SPDSGVOPublic
554
  $confirmText = icl_translate('shapepress-dsgvo', 'spdsgvo_comments_checkbox_confirm', $confirmText);
555
  }
556
 
 
557
  $privacy_policy_string = $field;
558
 
559
 
@@ -563,7 +597,7 @@ class SPDSGVOPublic
563
  $privacy_policy_string .= convDeChars($confirmText);
564
  $privacy_policy_string .= '<span class="gdpr-cb-info-text" style="display:none"><small>* '.convDeChars($infoText)."</small></span>";
565
  $privacy_policy_string .= "</p>";
566
-
567
 
568
  $field = $privacy_policy_string;
569
 
@@ -574,15 +608,25 @@ class SPDSGVOPublic
574
  }
575
 
576
  function customValidateCheckbox($commentdata) {
 
577
  if (is_admin()) return $commentdata;
578
- if (SPDSGVOSettings::get('sp_dsgvo_comments_checkbox') === '1') {
579
- $validLicence = isValidBlogEdition() || isValidPremiumEdition();
580
- $infoText = $validLicence ? SPDSGVOSettings::get('spdsgvo_comments_checkbox_info') : htmlentities(SPDSGVOSettings::getDefault('spdsgvo_comments_checkbox_info'), ENT_IGNORE, 'UTF-8');
581
-
582
- if( empty($_POST[ 'gdpr-cb' ])) // do you url validation here (I am not a regex expert)
583
- wp_die( $infoText );
 
 
 
 
 
 
 
 
 
 
584
  }
585
- return $commentdata;
586
  }
587
 
588
  public function wpcf7AddDsgvoTag()
492
  /* i592995 */
493
  }
494
 
495
+ public function addCommentsCheckBoxForDSGVOLegacy()
496
+ {
497
+ if (SPDSGVOSettings::get('sp_dsgvo_comments_checkbox') === '0') {} else {
498
+
499
+ $validLicence = isValidBlogEdition() || isValidPremiumEdition();
500
+ $infoText = $validLicence ? SPDSGVOSettings::get('spdsgvo_comments_checkbox_info') : htmlentities(SPDSGVOSettings::getDefault('spdsgvo_comments_checkbox_info'), ENT_IGNORE, 'UTF-8');
501
+ if(function_exists('icl_translate')) {
502
+ $infoText = icl_translate('shapepress-dsgvo', 'spdsgvo_comments_checkbox_info', $infoText);
503
+ }
504
+ $checkboxText = $validLicence ? SPDSGVOSettings::get('spdsgvo_comments_checkbox_text') : htmlentities(SPDSGVOSettings::getDefault('spdsgvo_comments_checkbox_text'), ENT_IGNORE, 'UTF-8');
505
+ if(function_exists('icl_translate')) {
506
+ $checkboxText = icl_translate('shapepress-dsgvo', 'spdsgvo_comments_checkbox_text', $checkboxText);
507
+ }
508
+ $confirmText = $validLicence ? SPDSGVOSettings::get('spdsgvo_comments_checkbox_confirm') : htmlentities(SPDSGVOSettings::getDefault('spdsgvo_comments_checkbox_confirm'), ENT_IGNORE, 'UTF-8');
509
+ if(function_exists('icl_translate')) {
510
+ $confirmText = icl_translate('shapepress-dsgvo', 'spdsgvo_comments_checkbox_confirm', $confirmText);
511
+ }
512
+
513
+ $privacy_policy_string = '';
514
+
515
+ //$privacy_policy_string .= "<p class='gdpr-cb-info-text'><small>* ".convDeChars($infoText)."</small></p>";
516
+
517
+ $privacy_policy_string .= '<div class="info-text"><label for="gdpr-cb">'.convDeChars($checkboxText).'</label></div>';
518
+
519
+ $privacy_policy_string .= '<p class="comment-form-gdpr"><input required="required" id="gdpr-cb" name="gdpr-cb" type="checkbox" />';
520
+ $privacy_policy_string .= convDeChars($confirmText);
521
+ $privacy_policy_string .= "</p>";
522
+
523
+ echo $privacy_policy_string;
524
+
525
+ }
526
+ }
527
+
528
+ public function addCommentsCheckBoxForDSGVOJetpack()
529
  {
530
  if (SPDSGVOSettings::get('sp_dsgvo_comments_checkbox') === '0') {
531
+ return;
532
  } else {
533
  //error_log('addCommentsCheckBoxForDSGVO2');
534
 
546
  $confirmText = icl_translate('shapepress-dsgvo', 'spdsgvo_comments_checkbox_confirm', $confirmText);
547
  }
548
 
549
+ $privacy_policy_string = "";
550
+ //$privacy_policy_string .= $defaults['comment_field'];//'<p class="comment-form-comment"><label for="comment">' . __( 'Comment', 'noun' ) . '</label> <textarea id="comment" name="comment" cols="45" rows="8" maxlength="65525" required="required"></textarea></p>';
551
 
552
  $privacy_policy_string .= '<p class="gdpr-cb-info-text" style="display:none"><small>* '.convDeChars($infoText)."</small></p>";
553
 
556
  $privacy_policy_string .= '<p class="comment-form-gdpr"><input required="required" id="gdpr-cb" name="gdpr-cb" type="checkbox" />';
557
  $privacy_policy_string .= convDeChars($confirmText);
558
  $privacy_policy_string .= "</p>";
559
+
 
560
 
561
+ echo $privacy_policy_string;
562
+ error_log($privacy_policy_string);
563
 
564
  }
565
  }
587
  $confirmText = icl_translate('shapepress-dsgvo', 'spdsgvo_comments_checkbox_confirm', $confirmText);
588
  }
589
 
590
+ $hiddenHelper = '<input type="hidden" id="gdpr-cb-visible" name="gdpr-cb-visible" value="true" />';
591
  $privacy_policy_string = $field;
592
 
593
 
597
  $privacy_policy_string .= convDeChars($confirmText);
598
  $privacy_policy_string .= '<span class="gdpr-cb-info-text" style="display:none"><small>* '.convDeChars($infoText)."</small></span>";
599
  $privacy_policy_string .= "</p>";
600
+ $privacy_policy_string .= $hiddenHelper;
601
 
602
  $field = $privacy_policy_string;
603
 
608
  }
609
 
610
  function customValidateCheckbox($commentdata) {
611
+
612
  if (is_admin()) return $commentdata;
613
+
614
+ try {
615
+ if (SPDSGVOSettings::get('sp_dsgvo_comments_checkbox') === '1') {
616
+
617
+ $validLicence = isValidBlogEdition() || isValidPremiumEdition();
618
+ $infoText = $validLicence ? SPDSGVOSettings::get('spdsgvo_comments_checkbox_info') : htmlentities(SPDSGVOSettings::getDefault('spdsgvo_comments_checkbox_info'), ENT_IGNORE, 'UTF-8');
619
+
620
+ if(isset($_POST[ 'gdpr-cb-visible' ]) && empty($_POST[ 'gdpr-cb' ])) // do you url validation here (I am not a regex expert)
621
+ wp_die( $infoText );
622
+ }
623
+ return $commentdata;
624
+ }catch ( Exception $e )
625
+ {
626
+ error_log('error in customValidateCheckbox');
627
+ error_log($e);
628
+ return $commentdata;
629
  }
 
630
  }
631
 
632
  public function wpcf7AddDsgvoTag()
public/js/sp-dsgvo-public.js CHANGED
@@ -18,7 +18,7 @@ function getCookieValue(a) {
18
 
19
  $('#commentform').submit(function(e){
20
 
21
- if (gdpr_checkbox.prop('checked') === false)
22
  {
23
  errorText.css('display', 'inline-block');
24
  e.preventDefault();
18
 
19
  $('#commentform').submit(function(e){
20
 
21
+ if (gdpr_checkbox != null && gdpr_checkbox.prop('checked') === false)
22
  {
23
  errorText.css('display', 'inline-block');
24
  e.preventDefault();
sp-dsgvo.php CHANGED
@@ -16,7 +16,7 @@
16
  * Plugin Name: WP DSGVO Tools (GDPR)
17
  * Plugin URI: https://wp-dsgvo.eu
18
  * Description: WP DSGVO Tools (GDPR) help you to fulfill the GDPR (DGSVO) compliance guidance (<a target="_blank" href="https://ico.org.uk/for-organisations/data-protection-reform/overview-of-the-gdpr/">GDPR</a>)
19
- * Version: 2.2.3
20
  * Author: Shapepress eU
21
  * Author URI: https://www.shapepress.com
22
  * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
@@ -28,7 +28,7 @@ if (! defined('WPINC')) {
28
  die();
29
  }
30
 
31
- define('sp_dsgvo_VERSION', '2.2.3');
32
  define('sp_dsgvo_NAME', 'sp-dsgvo');
33
  /* i592995 */
34
  define('sp_dsgvo_URL', plugin_dir_url( __FILE__ ));
16
  * Plugin Name: WP DSGVO Tools (GDPR)
17
  * Plugin URI: https://wp-dsgvo.eu
18
  * Description: WP DSGVO Tools (GDPR) help you to fulfill the GDPR (DGSVO) compliance guidance (<a target="_blank" href="https://ico.org.uk/for-organisations/data-protection-reform/overview-of-the-gdpr/">GDPR</a>)
19
+ * Version: 2.2.5
20
  * Author: Shapepress eU
21
  * Author URI: https://www.shapepress.com
22
  * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
28
  die();
29
  }
30
 
31
+ define('sp_dsgvo_VERSION', '2.2.5');
32
  define('sp_dsgvo_NAME', 'sp-dsgvo');
33
  /* i592995 */
34
  define('sp_dsgvo_URL', plugin_dir_url( __FILE__ ));
uninstall.php CHANGED
@@ -32,10 +32,12 @@ if(!defined('WP_UNINSTALL_PLUGIN')){
32
 
33
 
34
  try {
35
- if (isValidPremiumEdition() || isValidBlogEdition())
 
 
 
36
  {
37
- $licenceKey = $this->get('dsgvo_licence', '');
38
-
39
  $url = 'https://wp-dsgvo.eu/spdsgvo-bin/deactivate.php';
40
  $url .= '?license_key=' .$licenceKey;
41
 
32
 
33
 
34
  try {
35
+ $licenceKey = get_option('sp_dsgvo_dsgvo_licence');
36
+ $activated = get_option('sp_dsgvo_license_activated');
37
+
38
+ if ($activated === '1' && $licenceKey !== '')
39
  {
40
+
 
41
  $url = 'https://wp-dsgvo.eu/spdsgvo-bin/deactivate.php';
42
  $url .= '?license_key=' .$licenceKey;
43
 
wp-config.xml CHANGED
@@ -21,5 +21,13 @@
21
  <key name="sp_dsgvo_spdsgvo_comments_checkbox_info"/>
22
  <key name="sp_dsgvo_spdsgvo_comments_checkbox_confirm"/>
23
  <key name="sp_dsgvo_spdsgvo_comments_checkbox_text"/>
 
 
 
 
 
 
 
 
24
  </admin-texts>
25
  </wpml-config>
21
  <key name="sp_dsgvo_spdsgvo_comments_checkbox_info"/>
22
  <key name="sp_dsgvo_spdsgvo_comments_checkbox_confirm"/>
23
  <key name="sp_dsgvo_spdsgvo_comments_checkbox_text"/>
24
+ <key name="sp_dsgvo_services">
25
+ <key name="slug"/>
26
+ <key name="name"/>
27
+ <key name="reason"/>
28
+ <key name="link"/>
29
+ <key name="default"/>
30
+ <key name="image"/>
31
+ </key>
32
  </admin-texts>
33
  </wpml-config>