The GDPR Framework By Data443 - Version 1.0.47

Version Description

(11/29/2021) = * FRAM-259 Add support for an Italian Translation * FRAM-273 Add support for the Polish Translation * FRAM-263 Fix broken link * FRAM-267 Add Ninja Form detection during setup

Download this release

Release Info

Developer data443
Plugin Icon 128x128 The GDPR Framework By Data443
Version 1.0.47
Comparing to
See all releases

Code changes from version 1.0.46 to 1.0.47

assets/gdpr-installer.css CHANGED
@@ -245,15 +245,29 @@
245
  }
246
 
247
  .gdpr-select-policy-page {
248
- padding: 10px 5px 10px 5px;
249
- border: 1px solid #a3a3a3;
 
250
  }
251
  .gdpr-select-policy-page strong{
252
- margin: 10px 0;
253
- display: block;
254
  }
255
  .gdpr-select-policy-page span{
256
- font-size: 12px;
 
 
 
 
 
 
 
 
 
 
 
 
 
257
  }
258
 
259
  .gdpr-installer input[type=text],
245
  }
246
 
247
  .gdpr-select-policy-page {
248
+ padding: 10px 5px 10px 5px;
249
+ border: 1px solid #a3a3a3;
250
+ border-radius: 4px;
251
  }
252
  .gdpr-select-policy-page strong{
253
+ margin: 10px 0;
254
+ display: block;
255
  }
256
  .gdpr-select-policy-page span{
257
+ font-size: 12px;
258
+ }
259
+
260
+ .gdpr-select-terms-page {
261
+ padding: 10px 5px 10px 5px;
262
+ border: 1px solid #a3a3a3;
263
+ border-radius: 4px;
264
+ }
265
+ .gdpr-select-terms-page strong{
266
+ margin: 10px 0;
267
+ display: block;
268
+ }
269
+ .gdpr-select-terms-page span{
270
+ font-size: 12px;
271
  }
272
 
273
  .gdpr-installer input[type=text],
assets/js/gdpr-donotsell.js CHANGED
@@ -41,7 +41,7 @@
41
  if(r.error !=='' && r.error != undefined){
42
  jQuery('#donotsellmsg').removeClass('donotsell-msg');
43
  jQuery('#donotsellmsg').addClass('donotsell-error-msg');
44
- jQuery('.donotsell-error-msg').text(r.error).delay(10000).fadeOut();
45
  }
46
  el_form_submit.removeAttr('disabled');
47
  });
41
  if(r.error !=='' && r.error != undefined){
42
  jQuery('#donotsellmsg').removeClass('donotsell-msg');
43
  jQuery('#donotsellmsg').addClass('donotsell-error-msg');
44
+ jQuery('#donotsell-error-msg').text(r.error).delay(10000).fadeOut();
45
  }
46
  el_form_submit.removeAttr('disabled');
47
  });
bootstrap.php CHANGED
@@ -1,61 +1,33 @@
1
  <?php
 
2
  /**
3
  * Set up config object, store plugin URL and path there
4
  * along with various other items
5
  */
6
-
7
  \Codelight\GDPR\Container::getInstance()->bindIf('config', function () {
8
- return new \Codelight\GDPR\Config([
9
- 'plugin' => [
10
- 'url' => plugin_dir_url(__FILE__),
11
- 'path' => plugin_dir_path(__FILE__),
12
- 'template_path' => plugin_dir_path(__FILE__) . 'views/',
13
- ],
14
- 'help' => [
15
- 'url' => 'https://www.data443.com/gdpr-framework/',
16
- ],
17
- ]);
18
- }, true);
19
-
20
  /**
21
  * Set up the application container
22
  *
23
  * @param string $abstract
24
  * @param array $parameters
25
- * @param Codelight\GDPR\Container $container
26
  *
27
- * @return Codelight\GDPR\Container|mixed
28
  */
29
- function gdpr($abstract = null, $parameters = [], Codelight\GDPR\Container $container = null)
30
  {
31
- $container = $container ?: Codelight\GDPR\Container::getInstance();
32
-
33
- if ( ! $abstract) {
34
  return $container;
35
  }
36
-
37
- return $container->bound($abstract)
38
- ? $container->makeWith($abstract, $parameters)
39
- : $container->makeWith("gdpr.{$abstract}", $parameters);
40
  }
41
-
42
  /**
43
  * Start the plugin on plugins_loaded at priority 0.
44
  */
45
- add_action('plugins_loaded', function () use ($gdpr_error) {
46
-
47
- load_plugin_textdomain('gdpr-framework', false, basename( dirname( __FILE__ ) ) . '/languages/');
48
-
49
- $locale = is_admin() && function_exists( 'get_user_locale' ) ? get_user_locale() : get_locale();
50
-
51
- $locale = apply_filters( 'plugin_locale', $locale, 'gdpr-framework' );
52
-
53
- unload_textdomain( 'gdpr-framework' );
54
-
55
- load_textdomain( 'gdpr-framework', get_stylesheet_directory().'/gdpr-framework/languages/'.'gdpr-framework'.'-'.$locale.'.mo' );
56
-
57
  new \Codelight\GDPR\Updater\Updater();
58
-
59
  new \Codelight\GDPR\Setup();
60
-
61
  }, 0);
1
  <?php
2
+
3
  /**
4
  * Set up config object, store plugin URL and path there
5
  * along with various other items
6
  */
 
7
  \Codelight\GDPR\Container::getInstance()->bindIf('config', function () {
8
+ return new \Codelight\GDPR\Config(['plugin' => ['url' => plugin_dir_url(__FILE__), 'path' => plugin_dir_path(__FILE__), 'template_path' => plugin_dir_path(__FILE__) . 'views/'], 'help' => ['url' => 'https://www.data443.com/gdpr-framework/']]);
9
+ }, \true);
 
 
 
 
 
 
 
 
 
 
10
  /**
11
  * Set up the application container
12
  *
13
  * @param string $abstract
14
  * @param array $parameters
15
+ * @param \Codelight\GDPR\Container $container
16
  *
17
+ * @return \Codelight\GDPR\Container|mixed
18
  */
19
+ function gdpr($abstract = null, $parameters = [], \Codelight\GDPR\Container $container = null)
20
  {
21
+ $container = $container ?: \Codelight\GDPR\Container::getInstance();
22
+ if (!$abstract) {
 
23
  return $container;
24
  }
25
+ return $container->bound($abstract) ? $container->makeWith($abstract, $parameters) : $container->makeWith("gdpr.{$abstract}", $parameters);
 
 
 
26
  }
 
27
  /**
28
  * Start the plugin on plugins_loaded at priority 0.
29
  */
30
+ add_action('plugins_loaded', function () use($gdpr_error) {
 
 
 
 
 
 
 
 
 
 
 
31
  new \Codelight\GDPR\Updater\Updater();
 
32
  new \Codelight\GDPR\Setup();
 
33
  }, 0);
gdpr-framework.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin Name: The GDPR Framework
5
  * Plugin URI: https://www.data443.com/gdpr-framework/
6
  * Description: Tools to help make your website GDPR-compliant. Fully documented, extendable and developer-friendly.
7
- * Version: 1.0.46
8
  * Author: Data443
9
  * Author URI: https://www.data443.com/
10
  * Text Domain: gdpr-framework
@@ -18,7 +18,7 @@ if (!defined('WPINC'))
18
  die;
19
  }
20
 
21
- define('GDPR_FRAMEWORK_VERSION', '1.0.46');
22
 
23
  add_shortcode( 'gdpr_privacy_safe', 'render_privacy_safe' ); // preserve backward compatibility
24
  add_shortcode( 'data443_privacy_safe', 'render_privacy_safe' );
@@ -54,11 +54,12 @@ function render_privacy_safe() {
54
  }
55
  }
56
 
57
- add_action( 'plugins_loaded', 'gdpr_framework_load_textdomain' );
58
  function gdpr_framework_load_textdomain()
59
  {
60
- load_plugin_textdomain( 'gdpr-framework', false, basename( dirname( __FILE__ ) ) . '/languages' );
61
  }
 
 
62
  /**
63
  * Our custom post type function
64
  */
@@ -86,6 +87,29 @@ function create_custom_post_type()
86
  */
87
  add_action( 'init', 'create_custom_post_type' );
88
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89
  /**
90
  * Helper function for prettying up errors
91
  *
4
  * Plugin Name: The GDPR Framework
5
  * Plugin URI: https://www.data443.com/gdpr-framework/
6
  * Description: Tools to help make your website GDPR-compliant. Fully documented, extendable and developer-friendly.
7
+ * Version: 1.0.47
8
  * Author: Data443
9
  * Author URI: https://www.data443.com/
10
  * Text Domain: gdpr-framework
18
  die;
19
  }
20
 
21
+ define('GDPR_FRAMEWORK_VERSION', '1.0.47');
22
 
23
  add_shortcode( 'gdpr_privacy_safe', 'render_privacy_safe' ); // preserve backward compatibility
24
  add_shortcode( 'data443_privacy_safe', 'render_privacy_safe' );
54
  }
55
  }
56
 
 
57
  function gdpr_framework_load_textdomain()
58
  {
59
+ load_plugin_textdomain('gdpr-framework', false, basename( dirname( __FILE__ ) ) . '/languages/');
60
  }
61
+ add_action('init', 'gdpr_framework_load_textdomain');
62
+
63
  /**
64
  * Our custom post type function
65
  */
87
  */
88
  add_action( 'init', 'create_custom_post_type' );
89
 
90
+ // Add Columns to our custom posts
91
+
92
+ add_filter('manage_donotsellrequests_posts_columns', function ($columns) {
93
+ $columns = array_merge($columns, ['donotsell_first_name' => __('First Name', 'textdomain')]);
94
+ $columns = array_merge($columns, ['donotsell_last_name' => __('Last Name', 'textdomain')]);
95
+ $columns = array_merge($columns, ['title' => __('Email', 'textdomain')]);
96
+ $taken_out = $columns['date'];
97
+ unset($columns['date']);
98
+ $columns['date'] = $taken_out;
99
+ return $columns;
100
+ });
101
+
102
+ add_action('manage_donotsellrequests_posts_custom_column', function ($column_key, $post_id) {
103
+ if ($column_key == 'donotsell_first_name') {
104
+ $data = get_post_meta($post_id, 'donotsell_first_name', true);
105
+ _e($data, 'textdomain');
106
+ } elseif ($column_key == 'donotsell_last_name') {
107
+ $data = get_post_meta($post_id, 'donotsell_last_name', true);
108
+ _e($data, 'textdomain');
109
+ }
110
+
111
+ }, 10, 2);
112
+
113
  /**
114
  * Helper function for prettying up errors
115
  *
gdpr-helper-functions.php CHANGED
@@ -69,7 +69,7 @@ function add_consent_deny_cookies(){
69
  */
70
  if (!class_exists('\Codelight\GDPR\Container'))
71
  {
72
- if (!file_exists($composer = __DIR__ . '/vendor/autoload.php')) {
73
  $gdpr_error(
74
  _x(
75
  'You appear to be running a development version of GDPR. You must run <code>composer install</code> from the plugin directory.',
@@ -86,6 +86,22 @@ if (!class_exists('\Codelight\GDPR\Container'))
86
  require_once $composer;
87
  }
88
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89
  function popup_gdpr()
90
  {
91
  wp_enqueue_script( 'gdpr-framework-cookieconsent-min-js', gdpr('config')->get('plugin.url') .'assets/cookieconsent.min.js' );
69
  */
70
  if (!class_exists('\Codelight\GDPR\Container'))
71
  {
72
+ if (!file_exists($composer = __DIR__ . '/vendor/autoload.php')) {
73
  $gdpr_error(
74
  _x(
75
  'You appear to be running a development version of GDPR. You must run <code>composer install</code> from the plugin directory.',
86
  require_once $composer;
87
  }
88
 
89
+ if (!class_exists('\Data443\gdpr\framework\Illuminate\Container\Container'))
90
+ {
91
+ $gdpr_error(
92
+ _x(
93
+ 'You appear to be running a development version of GDPR. You must run <code>"composer build-with-prefix"</code> from the plugin directory.',
94
+ '(Admin)',
95
+ 'gdpr-framework'
96
+ ),
97
+ _x(
98
+ 'Modified Vendor Namespace not found.',
99
+ '(Admin)',
100
+ 'gdpr-framework'
101
+ )
102
+ );
103
+ }
104
+
105
  function popup_gdpr()
106
  {
107
  wp_enqueue_script( 'gdpr-framework-cookieconsent-min-js', gdpr('config')->get('plugin.url') .'assets/cookieconsent.min.js' );
languages/gdpr-framework-bg_BG.mo CHANGED
Binary file
languages/gdpr-framework-bg_BG.po CHANGED
@@ -7,43 +7,66 @@ msgid ""
7
  msgstr ""
8
  "Project-Id-Version: The GDPR Framework 1.0\n"
9
  "Report-Msgid-Bugs-To: gdpr@codelight.eu\n"
10
- "POT-Creation-Date: 2018-04-16 10:50+0000\n"
11
- "PO-Revision-Date: 2019-09-19 12:36+0530\n"
 
12
  "Language-Team: \n"
 
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
- "X-Generator: Poedit 1.5.7\n"
17
- "Last-Translator: Zankov Group LTD. <office@zankov-group.com>\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
- "Language: bg_BG\n"
20
 
21
- #: gdpr-framework.php:26
 
22
  msgctxt "(Admin)"
23
  msgid "WordPress GDPR &rsaquo; Error"
24
- msgstr ""
 
 
 
 
 
 
 
 
25
 
26
- #: gdpr-framework.php:35
 
 
 
27
  msgctxt "(Admin)"
28
  msgid "Invalid PHP version"
29
  msgstr "Невалидна версия на PHP"
30
 
31
- #: gdpr-framework.php:35
 
 
 
32
  msgctxt "(Admin)"
33
- msgid "You must be using PHP 5.6.33 or greater."
34
- msgstr "Трябва да използвате PHP 5.6.33 или по-нова."
35
 
36
- #: gdpr-framework.php:42
 
 
 
37
  msgctxt "(Admin)"
38
  msgid "Invalid WordPress version"
39
  msgstr "Невалидна версия на WordPress"
40
 
41
- #: gdpr-framework.php:42
42
  msgctxt "(Admin)"
43
- msgid "You must be using WordPress 4.3.0 or greater."
44
- msgstr "Трябва да използвате WordPress 4.3.0 или по-нова."
45
 
46
- #: gdpr-framework.php:52
 
 
 
 
 
47
  msgctxt "(Admin)"
48
  msgid ""
49
  "You appear to be running a development version of GDPR. You must run "
@@ -52,22 +75,57 @@ msgstr ""
52
  "Изглежда, че използвате версия за разработка на GDPR. Трябва да стартирате "
53
  "<code> install композитор </ code> от директорията на добавката."
54
 
55
- #: gdpr-framework.php:53
 
 
 
56
  msgctxt "(Admin)"
57
  msgid "Autoloader not found."
58
  msgstr "Autoloader не е намерен."
59
 
60
- #: gdpr-framework.php:115
61
- msgctxt "(Admin)"
62
- msgid "Anonymous"
63
- msgstr "анонимен"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64
 
65
- #: src/Admin/AdminTab.php:115
 
 
 
 
 
 
 
 
 
 
 
 
 
 
66
  msgctxt "(Admin)"
67
  msgid "Save"
68
  msgstr "Запази"
69
 
70
- #: src/Admin/AdminTab.php:151
 
 
 
71
  msgctxt "(Admin)"
72
  msgid "Policy generated!"
73
  msgstr "Политиката е генерирана!"
@@ -75,123 +133,323 @@ msgstr "Политиката е генерирана!"
75
  #: src/Admin/AdminTabGeneral.php:11
76
  msgctxt "(Admin)"
77
  msgid "General"
78
- msgstr "Главни"
79
 
80
- #: src/Admin/AdminTabGeneral.php:38
81
  msgctxt "(Admin)"
82
  msgid "General Settings"
83
- msgstr "Главни настройки"
84
 
85
- #: src/Admin/AdminTabGeneral.php:43
 
 
 
86
  msgctxt "(Admin)"
87
  msgid "Enable Privacy Tools"
88
  msgstr "Включи Политика за лични данни"
89
 
90
- #: src/Admin/AdminTabGeneral.php:53
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
91
  msgctxt "(Admin)"
92
  msgid "Pages"
93
  msgstr "Страници"
94
 
95
- #: src/Admin/AdminTabGeneral.php:58 src/Admin/WordpressAdmin.php:151
 
 
 
96
  msgctxt "(Admin)"
97
  msgid "Privacy Tools Page"
98
  msgstr "Страница с инструменти "
99
 
100
- #: src/Admin/AdminTabGeneral.php:65 src/Admin/WordpressAdmin.php:147
 
 
 
 
 
 
 
 
101
  msgctxt "(Admin)"
102
  msgid "Privacy Policy Page"
103
- msgstr "Страница за лични данни"
 
 
 
 
 
 
 
 
104
 
105
- #: src/Admin/AdminTabGeneral.php:72
106
  msgctxt "(Admin)"
107
  msgid "Terms & Conditions Page"
 
 
 
 
 
 
 
 
108
  msgstr "Страница за Общи условия"
109
 
110
- #: src/Admin/AdminTabGeneral.php:82
 
 
 
111
  msgctxt "(Admin)"
112
  msgid "View & Export Data"
113
  msgstr "Преглед и Експортиране на данни"
114
 
115
- #: src/Admin/AdminTabGeneral.php:87
 
 
 
116
  msgctxt "(Admin)"
117
  msgid "Export action"
118
  msgstr "Действие за експортиране"
119
 
120
- #: src/Admin/AdminTabGeneral.php:94 src/Admin/AdminTabGeneral.php:133
 
 
 
121
  msgctxt "(Admin)"
122
  msgid "Email to notify"
123
  msgstr "Email за уведомяване"
124
 
125
- #: src/Admin/AdminTabGeneral.php:105
 
 
 
126
  msgctxt "(Admin)"
127
  msgid "Delete & Anonymize Data"
128
  msgstr "Изтриване и Анонимни данни"
129
 
130
- #: src/Admin/AdminTabGeneral.php:110
 
 
 
131
  msgctxt "(Admin)"
132
  msgid "Delete action"
133
  msgstr "Действие при изтриване"
134
 
135
- #: src/Admin/AdminTabGeneral.php:117
 
 
 
136
  msgctxt "(Admin)"
137
  msgid "Delete or reassign content?"
138
  msgstr "Да се ​​изтрие ли или да се присвои съдържание?"
139
 
140
- #: src/Admin/AdminTabGeneral.php:125
 
 
 
141
  msgctxt "(Admin)"
142
  msgid "Reassign content to"
143
  msgstr "Пренасочване на съдържание към"
144
 
145
- #: src/Admin/AdminTabGeneral.php:145
146
  msgctxt "(Admin)"
147
  msgid "Styling"
148
- msgstr "Стил"
149
 
150
- #: src/Admin/AdminTabGeneral.php:150
 
 
 
151
  msgctxt "(Admin)"
152
  msgid "Enable basic styling on Privacy Tools page"
153
  msgstr "Активирайте основния стил на страницата Инструменти за поверителност"
154
 
155
- #: src/Admin/AdminTabGeneral.php:162
 
 
 
156
  msgctxt "(Admin)"
157
  msgid "Compatibility"
158
  msgstr "Съвместимост"
159
 
160
- #: src/Admin/AdminTabGeneral.php:167
 
 
 
161
  msgctxt "(Admin)"
162
  msgid "Enable automatic theme compatibility"
163
  msgstr "Активирайте автоматичната съвместимост на темите"
164
 
165
- #: src/Admin/AdminTabGeneral.php:184 src/Admin/AdminTabGeneral.php:200
166
- #: src/Admin/AdminTabGeneral.php:213 src/Admin/AdminTabGeneral.php:252
167
- #: views/installer/steps/configuration-settings.php:62
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
168
  #, fuzzy
 
 
 
 
 
 
 
 
 
169
  msgctxt "(Admin)"
170
  msgid "&mdash; Select &mdash;"
171
- msgstr "Избери размера на бутона."
172
 
173
- #: src/Admin/WordpressAdmin.php:65
 
 
 
174
  msgctxt "(Admin)"
175
  msgid "Privacy & GDPR Settings"
176
  msgstr "Настройки за поверителност и GDPR"
177
 
178
- #: src/Admin/WordpressAdmin.php:66
 
179
  msgctxt "(Admin)"
180
- msgid "Privacy"
181
- msgstr "поверителност"
 
 
 
 
 
 
 
 
 
182
 
183
  #: src/Components/Consent/AdminTabConsent.php:30
184
- #: src/Components/Consent/AdminTabConsent.php:49
185
  msgctxt "(Admin)"
186
  msgid "Consent"
187
  msgstr "Съгласие"
188
 
189
- #: src/Components/Consent/AdminTabConsent.php:157
 
 
 
 
 
 
 
 
 
 
 
 
 
 
190
  msgctxt "(Admin)"
191
  msgid "Consent slug is a required field!"
192
  msgstr "Консултантската слуз е задължително поле!"
193
 
194
- #: src/Components/Consent/AdminTabConsent.php:162
 
 
 
 
 
195
  msgctxt "(Admin)"
196
  msgid ""
197
  "You may only use alphanumeric characters, dash and underscore in the consent "
@@ -200,21 +458,47 @@ msgstr ""
200
  "Можете да използвате само буквено-цифрени символи, тире и долни черти в "
201
  "полето за съгласие за складиране."
202
 
203
- #: src/Components/Consent/AdminTabConsent.php:167
 
 
 
204
  msgctxt "(Admin)"
205
  msgid "Consent title is a required field!"
206
  msgstr "Типовото съгласие е задължително поле!"
207
 
208
- #: src/Components/Consent/ConsentManager.php:46
209
- #: views/modules/contact-form-7/content-privacy.php:2
210
- #: views/modules/wordpress-comments/terms-checkbox.php:14
211
- #: views/modules/wordpress-user/registration-terms-checkbox.php:15
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
212
  #, php-format
213
  msgid "I accept the %sPrivacy Policy%s"
214
  msgstr "Приемам %sPrivacy Policy%s"
215
 
216
- #: src/Components/Consent/ConsentManager.php:50
217
- #: src/Components/Consent/ConsentManager.php:69
 
 
 
 
 
218
  msgctxt "(Admin)"
219
  msgid ""
220
  "This consent is not visible by default. If someone wishes to withdraw it, "
@@ -223,142 +507,540 @@ msgstr ""
223
  "Това съгласие не се вижда по подразбиране. Ако някой желае да го оттегли, "
224
  "той трябва просто да поиска да изтрие всичките си данни."
225
 
226
- #: src/Components/Consent/ConsentManager.php:65
227
  #, php-format
228
  msgid "I accept the %sTerms & Conditions%s"
229
  msgstr "Приемам %sTerms & Conditions%s"
230
 
231
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:19
232
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:61
233
- #: views/admin/privacy-policy/generated.php:1 views/installer/header.php:41
 
234
  msgctxt "(Admin)"
235
- msgid "Privacy Policy"
236
- msgstr "Политика за Лични данни"
237
 
238
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:70
 
 
 
 
 
 
239
  msgctxt "(Admin)"
240
- msgid "Company information"
 
 
 
 
 
 
 
 
 
 
 
 
241
  msgstr "Информация за Фирмата"
242
 
243
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:75
244
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:209
 
 
245
  msgctxt "(Admin)"
246
- msgid "Company Name"
247
- msgstr "Име на Фирмата"
248
 
249
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:82
 
 
 
250
  msgctxt "(Admin)"
251
- msgid "Company Email"
252
- msgstr "Фирмен Email"
253
 
254
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:89
 
 
 
 
255
  msgctxt "(Admin)"
256
- msgid "Company Location"
257
- msgstr "Местоположение на Фирмата"
258
 
259
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:105
260
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:245
 
 
 
261
  msgctxt "(Admin)"
262
- msgid "Representative Contact Name"
263
- msgstr "Представително име за контакт"
 
 
264
 
265
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:112
266
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:252
 
 
267
  msgctxt "(Admin)"
268
- msgid "Representative Contact Email"
269
- msgstr "Представителни имейл за контакт"
270
 
271
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:119
272
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:259
 
 
273
  msgctxt "(Admin)"
274
- msgid "Representative Contact Phone"
275
- msgstr "Представителна контактна телефония"
276
 
277
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:135
 
 
 
278
  msgctxt "(Admin)"
279
- msgid "Data Protection Authority"
280
- msgstr "Орган за защита на данните"
281
 
282
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:141
283
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:286
 
 
284
  msgctxt "(Admin)"
285
- msgid "Data Protection Authority Website"
286
- msgstr "Уебсайт на Органа за защита на данните"
287
 
288
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:148
289
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:293
 
 
290
  msgctxt "(Admin)"
291
- msgid "Data Protection Authority Email"
292
- msgstr "Имейл за защитата на данни"
293
 
294
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:155
295
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:300
 
 
296
  msgctxt "(Admin)"
297
- msgid "Data Protection Authority Phone"
298
- msgstr "Орган за защита на данните"
299
 
300
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:165
301
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:175
 
 
302
  msgctxt "(Admin)"
303
- msgid "Data Protection Officer"
304
- msgstr "Служителя за защита на данните"
305
 
306
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:168
 
 
 
307
  msgctxt "(Admin)"
308
- msgid "Knowledge base: Do I need to appoint a Data Protection Officer?"
309
- msgstr "База знания: Трябва ли да назнача служител по защита на данните?"
310
 
311
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:182
 
 
 
312
  msgctxt "(Admin)"
313
- msgid "Data Protection Officer Name"
314
- msgstr "Име на Служителя по защита на данните"
315
 
316
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:190
 
 
 
317
  msgctxt "(Admin)"
318
- msgid "Data Protection Officer Email"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
319
  msgstr "Email на Служителя по защита на данните"
320
 
321
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:216
 
 
 
 
 
 
 
 
 
322
  msgctxt "(Admin)"
323
  msgid "Contact Email"
324
- msgstr "Email за конакт"
325
 
326
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:235
 
 
 
327
  msgctxt "(Admin)"
328
  msgid "Representative Contact"
329
  msgstr "Представителен контакти"
330
 
331
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:238
 
 
 
332
  msgctxt "(Admin)"
333
  msgid "Knowledge base: Do I need to appoint an EU-based representative?"
334
  msgstr "База знания: Трябва ли да назнача представител на ЕС?"
335
 
336
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:317
337
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:324
 
 
 
 
 
 
 
 
338
  msgctxt "(Admin)"
339
  msgid "DPO Name"
340
  msgstr "ДПО Име"
341
 
342
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:420
 
 
 
 
 
 
 
 
 
 
 
343
  msgctxt "(Admin)"
344
  msgid "Save & Generate Policy"
345
  msgstr "Запазване и генериране на правила"
346
 
347
- #: src/Components/PrivacyPolicy/PrivacyPolicy.php:82
348
- #: src/Installer/Installer.php:271 src/Installer/Steps/PolicySettings.php:199
349
  #: views/themes/storefront/footer.php:3
350
  #: views/themes/twentyseventeen/footer.php:3
351
  #: views/themes/twentysixteen/footer.php:4
352
  msgid "Privacy Policy"
353
  msgstr "Политика за Лични данни"
354
 
355
- #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
356
  msgid "This page is currently disabled."
357
  msgstr "Тази страница не е активна."
358
 
359
- #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:35
360
- #: src/Installer/Installer.php:279
361
- #: src/Installer/Steps/ConfigurationPages.php:55
 
 
 
 
 
 
 
 
362
  #: views/themes/storefront/footer.php:7
363
  #: views/themes/twentyseventeen/footer.php:7
364
  #: views/themes/twentysixteen/footer.php:9
@@ -369,14 +1051,7 @@ msgstr "Управление на Лични данни"
369
  #: src/Components/Support/AdminTabSupport.php:20
370
  msgctxt "(Admin)"
371
  msgid "Support"
372
- msgstr ""
373
-
374
- #: src/Components/WordpressComments/WordpressComments.php:90
375
- #, php-format
376
- msgid "%sERROR:%s You need to accept the privacy policy to post a comment."
377
- msgstr ""
378
- "%sГРЕШКА:%s Трябва да приемете декларацията за поверителност, за да "
379
- "публикувате коментар."
380
 
381
  #: src/Components/WordpressUser/Controllers/DashboardDataPageController.php:54
382
  #: views/privacy-tools/notices.php:19
@@ -388,7 +1063,7 @@ msgstr "Получихме Вашето искане и ще отговорим
388
  msgid "Consent withdrawn."
389
  msgstr "Съгласието е оттеглено."
390
 
391
- #: src/Components/WordpressUser/RegistrationForm.php:42
392
  msgid "<strong>ERROR</strong>: You must accept the terms and conditions."
393
  msgstr "<strong>ERROR</strong>: Трябва да приемете Общите условия."
394
 
@@ -401,6 +1076,9 @@ msgstr "Управление на Лични данни"
401
 
402
  #: src/DataSubject/AdminTabDataSubject.php:27
403
  #: src/DataSubject/AdminTabDataSubject.php:41
 
 
 
404
  msgctxt "(Admin)"
405
  msgid "Data Subjects"
406
  msgstr "Субекти на данни"
@@ -421,1500 +1099,3328 @@ msgstr "Данните са премахнати"
421
  msgid "Data removal request"
422
  msgstr "Заявка за премахване на Данни"
423
 
424
- #: src/DataSubject/DataSubjectIdentificator.php:65
425
- #: src/DataSubject/DataSubjectIdentificator.php:82
426
  msgid "Your personal data on"
427
  msgstr "Вашите лични данни за"
428
 
429
  #: src/Helpers.php:27
430
  msgctxt "(Admin)"
431
  msgid "Austria"
432
- msgstr ""
433
 
434
  #: src/Helpers.php:28
435
  msgctxt "(Admin)"
436
  msgid "Belgium"
437
- msgstr ""
438
 
439
  #: src/Helpers.php:29
440
  msgctxt "(Admin)"
441
  msgid "Bulgaria"
442
- msgstr ""
443
 
444
  #: src/Helpers.php:30
445
  msgctxt "(Admin)"
446
  msgid "Croatia"
447
- msgstr ""
448
 
449
  #: src/Helpers.php:31
450
  msgctxt "(Admin)"
451
  msgid "Cyprus"
452
- msgstr ""
453
 
454
  #: src/Helpers.php:32
455
  msgctxt "(Admin)"
456
  msgid "Czech Republic"
457
- msgstr ""
458
 
459
  #: src/Helpers.php:33
460
  msgctxt "(Admin)"
461
  msgid "Denmark"
462
- msgstr ""
463
 
464
  #: src/Helpers.php:34
465
  msgctxt "(Admin)"
466
  msgid "Estonia"
467
- msgstr ""
468
 
469
  #: src/Helpers.php:35
470
  msgctxt "(Admin)"
471
  msgid "Finland"
472
- msgstr ""
473
 
474
  #: src/Helpers.php:36
475
  msgctxt "(Admin)"
476
  msgid "France"
477
- msgstr ""
478
 
479
  #: src/Helpers.php:37
480
  msgctxt "(Admin)"
481
  msgid "Germany"
482
- msgstr ""
483
 
484
  #: src/Helpers.php:38
485
  msgctxt "(Admin)"
486
  msgid "Greece"
487
- msgstr ""
488
 
489
  #: src/Helpers.php:39
490
  msgctxt "(Admin)"
491
  msgid "Hungary"
492
- msgstr ""
493
 
494
  #: src/Helpers.php:40
495
  msgctxt "(Admin)"
496
  msgid "Ireland"
497
- msgstr ""
498
 
499
  #: src/Helpers.php:41
500
  msgctxt "(Admin)"
501
  msgid "Italy"
502
- msgstr ""
503
 
504
  #: src/Helpers.php:42
505
  msgctxt "(Admin)"
506
  msgid "Latvia"
507
- msgstr ""
508
 
509
  #: src/Helpers.php:43
510
  msgctxt "(Admin)"
511
  msgid "Lithuania"
512
- msgstr ""
513
 
514
  #: src/Helpers.php:44
515
  msgctxt "(Admin)"
516
  msgid "Luxembourg"
517
- msgstr ""
518
 
519
  #: src/Helpers.php:45
520
  msgctxt "(Admin)"
521
  msgid "Malta"
522
- msgstr ""
523
 
524
  #: src/Helpers.php:46
525
  msgctxt "(Admin)"
526
  msgid "Netherlands"
527
- msgstr ""
528
 
529
  #: src/Helpers.php:47
530
  msgctxt "(Admin)"
531
  msgid "Poland"
532
- msgstr ""
533
 
534
  #: src/Helpers.php:48
535
  msgctxt "(Admin)"
536
  msgid "Portugal"
537
- msgstr ""
538
 
539
  #: src/Helpers.php:49
540
  msgctxt "(Admin)"
541
  msgid "Romania"
542
- msgstr ""
543
 
544
  #: src/Helpers.php:50
545
  msgctxt "(Admin)"
546
  msgid "Slovakia"
547
- msgstr ""
548
 
549
  #: src/Helpers.php:51
550
  msgctxt "(Admin)"
551
  msgid "Slovenia"
552
- msgstr ""
553
 
554
  #: src/Helpers.php:52
555
  msgctxt "(Admin)"
556
  msgid "Spain"
557
- msgstr ""
558
 
559
  #: src/Helpers.php:53
560
  msgctxt "(Admin)"
561
  msgid "Sweden"
562
- msgstr ""
563
 
564
  #: src/Helpers.php:54
565
  msgctxt "(Admin)"
566
  msgid "United Kingdom"
567
- msgstr ""
568
 
569
- #: src/Helpers.php:69
 
570
  msgctxt "(Admin)"
571
- msgid "Iceland"
572
- msgstr ""
573
 
574
- #: src/Helpers.php:70
575
  msgctxt "(Admin)"
576
- msgid "Norway"
577
- msgstr ""
578
 
579
- #: src/Helpers.php:71
580
  msgctxt "(Admin)"
581
- msgid "Liechtenstein"
582
- msgstr ""
583
 
584
- #: src/Helpers.php:72
585
  msgctxt "(Admin)"
586
- msgid "Switzerland"
587
- msgstr ""
588
 
589
- #: src/Helpers.php:73
 
590
  msgctxt "(Admin)"
591
- msgid "United States"
592
- msgstr ""
593
 
594
- #: src/Helpers.php:74
595
  msgctxt "(Admin)"
596
- msgid "Rest of the world"
597
- msgstr "Останалата част от света"
598
 
599
- #: src/Helpers.php:145
600
- msgid "An error has occurred. Please contact the site administrator."
601
- msgstr "Възникна грешка. Моля, свържете се с администратора на сайта."
 
602
 
603
- #: src/Installer/Installer.php:135
604
  msgctxt "(Admin)"
605
- msgid "Setup Wizard"
606
- msgstr "Помощник за инсталиране"
607
 
608
- #: src/Installer/Steps/ConfigurationPages.php:23
609
- #: src/Installer/Steps/PolicySettings.php:23
610
- #: src/Installer/Steps/PolicySettings.php:48
611
  msgctxt "(Admin)"
612
- msgid "&mdash; Create a new page &mdash;"
613
- msgstr "&mdash; Създайте нова страница &mdash;"
614
 
615
- #: src/Installer/Steps/PolicySettings.php:38
616
  msgctxt "(Admin)"
617
- msgid ""
618
- "We have automatically selected your WooCommerce Terms & Conditions page."
619
- msgstr ""
620
- "Ние автоматично сме избрали Вашата Условия за Условия за търговия на "
621
- "WooCommerce."
622
 
623
- #: src/Modules/ContactForm7/ContactForm7.php:35
624
  msgctxt "(Admin)"
625
- msgid "gdpr terms txt"
626
- msgstr "gdpr термини txt"
627
 
628
- #: src/Router.php:80 src/Router.php:92 src/Router.php:125 src/Router.php:141
629
- #, php-format
630
- msgid "Nonce error for action \"%s\". Please go back and try again!"
631
- msgstr "Nonce error for action \"%s\". Please go back and try again!"
632
 
633
- #: src/Router.php:149
634
  msgctxt "(Admin)"
635
- msgid "You do not have the required permissions to perform this action!"
636
- msgstr "Нямате необходимите разрешения за изпълнение на това действие!"
637
 
638
- #: views/admin/consent.php:3
639
  msgctxt "(Admin)"
640
- msgid "Default consent types"
641
- msgstr "Стандартни типове съгласие"
642
 
643
- #: views/admin/consent.php:4
644
  msgctxt "(Admin)"
645
- msgid ""
646
- "These are the consent types that have been automatically registered by the "
647
- "framework or a plugin."
648
- msgstr ""
649
- "Това са типовете съгласие, които са били автоматично регистрирани от рамката "
650
- "или приставката."
651
 
652
- #: views/admin/consent.php:7 views/admin/consent.php:52
653
  msgctxt "(Admin)"
654
- msgid "Slug"
655
- msgstr "плужек"
656
 
657
- #: views/admin/consent.php:8 views/admin/consent.php:38
658
- #: views/admin/consent.php:60
659
  msgctxt "(Admin)"
660
- msgid "Title"
661
- msgstr "Заглавие"
662
 
663
- #: views/admin/consent.php:9 views/admin/consent.php:41
664
- #: views/admin/consent.php:63
665
  msgctxt "(Admin)"
666
- msgid "Description"
667
- msgstr "Описание"
668
 
669
- #: views/admin/consent.php:10
670
  msgctxt "(Admin)"
671
- msgid "Visibility"
672
- msgstr "Видимост"
673
 
674
- #: views/admin/consent.php:18
675
  msgctxt "(Admin)"
676
- msgid "Visible"
677
- msgstr "Видимо"
678
 
679
- #: views/admin/consent.php:20
 
680
  msgctxt "(Admin)"
681
- msgid "Hidden"
682
- msgstr "Скрито"
683
 
684
- #: views/admin/consent.php:29
685
  msgctxt "(Admin)"
686
- msgid "Custom consent types"
687
- msgstr "Типове персонализирано съгласие"
688
 
689
- #: views/admin/consent.php:30
690
  msgctxt "(Admin)"
691
- msgid ""
692
- "Here you can add custom consent types to track. They will not be used "
693
- "anywhere by default - you will need to build an integration for each of them."
694
- msgstr ""
695
- "Тук можете да добавяте персонализирани типове съгласие за проследяване. Те "
696
- "няма да бъдат използвани никъде по подразбиране - ще трябва да изградите "
697
- "интеграция за всеки от тях."
698
 
699
- #: views/admin/consent.php:35
700
  msgctxt "(Admin)"
701
- msgid "Machine-readable slug"
702
- msgstr "Машинно четене"
703
 
704
- #: views/admin/consent.php:44 views/admin/consent.php:68
705
  msgctxt "(Admin)"
706
- msgid "Visible?"
707
- msgstr "Видим?"
708
 
709
- #: views/admin/consent.php:72
 
710
  msgctxt "(Admin)"
711
- msgid "Remove"
712
- msgstr "Премахни"
713
 
714
- #: views/admin/consent.php:93
715
  msgctxt "(Admin)"
716
- msgid "Additional info"
717
- msgstr "ПОВЕЧЕ ИНФОРМАЦИЯ"
718
 
719
- #: views/admin/consent.php:95
720
  msgctxt "(Admin)"
721
- msgid ""
722
- "This text will be displayed to your data subjects on the Privacy Tools page."
723
- msgstr ""
724
- "Този текст ще се покаже на субектите Ви на данни на страницата Инструменти "
725
- "за поверителност."
726
 
727
- #: views/admin/data-subjects/search-form.php:2
728
  msgctxt "(Admin)"
729
- msgid ""
730
- "On this page, you can find which data subjects personal data you are storing "
731
- "and download, export or delete it."
732
- msgstr ""
733
- "На тази страница можете да намерите кои данни за лични данни съхранявате и "
734
- "изтегляте, експортирате или изтривате."
735
 
736
- #: views/admin/data-subjects/search-form.php:10
737
  msgctxt "(Admin)"
738
- msgid "Find data subject by email"
739
- msgstr "Намери данни по Email"
740
 
741
- #: views/admin/data-subjects/search-form.php:11
742
  msgctxt "(Admin)"
743
- msgid "Email address"
744
- msgstr "Email адрес"
745
 
746
- #: views/admin/data-subjects/search-form.php:16
747
  msgctxt "(Admin)"
748
- msgid "Search"
749
- msgstr "ТЪРСИ"
750
 
751
- #: views/admin/data-subjects/search-results.php:7
752
  msgctxt "(Admin)"
753
- msgid "Username"
754
- msgstr "ПОТРЕБИТЕЛСКО ИМЕ"
755
 
756
- #: views/admin/data-subjects/search-results.php:12
757
  msgctxt "(Admin)"
758
- msgid "is not a registered user."
759
- msgstr "не е регистриран потребител."
760
 
761
- #: views/admin/data-subjects/search-results.php:16
762
  msgctxt "(Admin)"
763
- msgid "Download data (html)"
764
- msgstr "Свали данните (html) формат"
765
 
766
- #: views/admin/data-subjects/search-results.php:17
767
  msgctxt "(Admin)"
768
- msgid "Export data (json)"
769
- msgstr "Свали данните (json) формат"
770
 
771
- #: views/admin/data-subjects/search-results.php:21
772
  msgctxt "(Admin)"
773
- msgid ""
774
- "This user has admin capabilities. Deleting data via this interface is "
775
- "disabled."
776
- msgstr ""
777
- "Този потребител има администраторски възможности. Изтриването на данни през "
778
- "този интерфейс е деактивирано."
779
 
780
- #: views/admin/data-subjects/search-results.php:24
781
  msgctxt "(Admin)"
782
- msgid "Anonymize data"
783
- msgstr "Анонимни данни"
784
 
785
- #: views/admin/data-subjects/search-results.php:25
786
  msgctxt "(Admin)"
787
- msgid "Delete data"
788
- msgstr "Изтрий данните"
789
 
790
- #: views/admin/data-subjects/search-results.php:29
791
  msgctxt "(Admin)"
792
- msgid "No data found!"
793
- msgstr "Нищо не е намерено"
794
 
795
- #: views/admin/general/delete-action-email.php:5
796
- #: views/admin/general/export-action-email.php:5
797
- #: views/installer/steps/configuration-settings.php:29
798
- #: views/installer/steps/configuration-settings.php:79
799
- msgid "Email address"
800
- msgstr "Email адрес"
801
 
802
- #: views/admin/general/delete-action-reassign.php:3
803
- #: views/installer/steps/configuration-settings.php:50
804
  msgctxt "(Admin)"
805
- msgid "Delete content"
806
- msgstr "Изтриване на съдържание"
807
 
808
- #: views/admin/general/delete-action-reassign.php:6
809
- #: views/installer/steps/configuration-settings.php:53
810
  msgctxt "(Admin)"
811
- msgid "Reassign content to a user"
812
- msgstr "Преназначаване съдържание на потребител"
813
 
814
- #: views/admin/general/delete-action-reassign.php:10
815
  msgctxt "(Admin)"
816
- msgid ""
817
- "If the user has submitted any content on your site, should it be deleted or "
818
- "reassigned to another user?"
819
- msgstr ""
820
- "Ако потребителят е изпратил съдържание на сайта Ви, трябва ли да бъде изтрит "
821
- "или превъзложен на друг потребител?"
822
 
823
- #: views/admin/general/description-data-page.php:2
824
  msgctxt "(Admin)"
825
- msgid ""
826
- "Select the page where users can go to control their data. This page must "
827
- "contain the [gdpr_privacy_tools] shortcode."
828
- msgstr ""
829
- "Изберете страницата, на която потребителите могат да отидат да контролират "
830
- "данните си. Тази страница трябва да съдържа този код [gdpr_privacy_tools]"
831
 
832
- #: views/admin/general/enable.php:9
833
  msgctxt "(Admin)"
834
- msgid "Enable the view, export and forget functionality for users and visitors"
835
- msgstr ""
836
- "Активирайте изгледа, експортирайте и забравете функционалността на "
837
- "потребителите и посетителите"
838
 
839
- #: views/admin/general/enable.php:12
840
  msgctxt "(Admin)"
841
- msgid ""
842
- "Enable the Privacy Tools page on front-end and dashboard. This allows "
843
- "visitors to request viewing and deleting their personal data and withdraw "
844
- "consents."
845
- msgstr ""
846
- "Активирайте страницата Инструменти за поверителност на предния и на таблото "
847
- "за управление. Това позволява на посетителите да изискват преглеждането и "
848
- "изтриването на личните им данни и да оттеглят съгласието си."
849
 
850
- #: views/admin/general/theme-compatibility.php:9
851
- #: views/installer/steps/integrations.php:21
852
  msgctxt "(Admin)"
853
- msgid ""
854
- "Automatically add Privacy Policy and Privacy Tools links to your site footer."
855
- msgstr ""
856
- "Автоматично добавяне на страниците Политика за лични данни и Управление на "
857
- "лични данни в долната част на сайта."
858
 
859
- #: views/admin/notices/header.php:4 views/admin/settings-page.php:3
860
- #: views/installer/header.php:23
861
  msgctxt "(Admin)"
862
- msgid "The GDPR Framework"
863
- msgstr "Рамката на GDPR"
864
 
865
- #: views/admin/notices/helper-autoinstall.php:2
866
  msgctxt "(Admin)"
867
- msgid ""
868
- "A Privacy Policy page has been created, but it is empty. You can generate a "
869
- "policy template on this page."
870
- msgstr ""
871
- "Страницата с правила за поверителност е създадена, но е празна. Можете да "
872
- "генерирате шаблон за правила на тази страница."
873
 
874
- #: views/admin/notices/helper-policy.php:2
875
  msgctxt "(Admin)"
876
- msgid ""
877
- "Heads up - your Privacy Policy still requires some attention. Find the "
878
- "places marked with [TODO] and replace them with real content!"
879
- msgstr ""
880
- "Глави - Вашата политика за поверителност все още изисква известно внимание. "
881
- "Намерете местата, маркирани с [TODO], и ги заменете с истинско съдържание!"
882
 
883
- #: views/admin/notices/helper-tools.php:2
 
884
  msgctxt "(Admin)"
885
- msgid ""
886
- "The contents of this page should contain the [gdpr_privacy_tools] shortcode."
887
- msgstr ""
888
- "Съдържанието на тази страница трябва да съдържа краткия код "
889
- "[gdpr_privacy_tools]."
890
 
891
- #: views/admin/privacy-policy/description-policy-page.php:2
892
  msgctxt "(Admin)"
893
- msgid "Select the page which will contain your Privacy Policy"
894
- msgstr "Изберете страницата, която ще съдържа вашата Политика за Лични данни"
895
 
896
- #: views/admin/privacy-policy/generated.php:3
 
897
  msgctxt "(Admin)"
898
- msgid "Your Privacy Policy has been generated."
899
- msgstr "Политиката за Лични данни беше генерирана."
900
 
901
- #: views/admin/privacy-policy/generated.php:20
902
  msgctxt "(Admin)"
903
- msgid "&laquo; Back"
904
- msgstr "&laquo; Назад"
905
 
906
- #: views/admin/privacy-policy/header.php:2
 
907
  msgctxt "(Admin)"
908
- msgid ""
909
- "This page allows you to generate a Privacy Policy based on the information "
910
- "you entered below."
911
- msgstr ""
912
- "Тази страница ви позволява да генерирате Политика за личните данни въз "
913
- "основа на въведената по-долу информация."
914
 
915
- #: views/admin/settings-page.php:31
916
- #, php-format
917
  msgctxt "(Admin)"
918
- msgid "The GDPR Framework. Built with &#9829; by %sCodelight%s."
919
- msgstr "Рамката на GDPR. Построен с & # 9829; от% sЦветна светлина% s."
920
 
921
- #: views/admin/support/contents.php:5 views/installer/steps/finish.php:10
922
  msgctxt "(Admin)"
923
- msgid "Need more info?"
924
- msgstr "Нуждаете се от повече информация?"
925
 
926
- #: views/admin/support/contents.php:11 views/installer/steps/finish.php:16
927
  msgctxt "(Admin)"
928
- msgid "Site Owner's guide to GDPR"
929
- msgstr "Ръководство на собственика на сайта за GDPR"
930
 
931
- #: views/admin/support/contents.php:14 views/installer/steps/finish.php:19
932
  msgctxt "(Admin)"
933
- msgid "Read the full guide on GDPR compliance."
934
- msgstr "Прочетете пълния наръчник за съответствие с GDPR."
935
 
936
- #: views/admin/support/contents.php:20 views/installer/steps/finish.php:25
937
  msgctxt "(Admin)"
938
- msgid "Knowledge base"
939
- msgstr "Знание"
940
 
941
- #: views/admin/support/contents.php:23 views/installer/steps/finish.php:28
942
  msgctxt "(Admin)"
943
- msgid "Check out the knowledge base for common questions and answers."
944
- msgstr "Проверете базата знания за често срещани въпроси и отговори."
945
 
946
- #: views/admin/support/contents.php:29 views/installer/steps/finish.php:34
947
  msgctxt "(Admin)"
948
- msgid "Developer's guide to GDPR"
949
- msgstr "Ръководство за програмисти за GDPR"
950
 
951
- #: views/admin/support/contents.php:32 views/installer/steps/finish.php:37
952
  msgctxt "(Admin)"
953
- msgid "We have a thorough guide to help making custom sites compliant."
954
- msgstr ""
955
- "Имаме задълбочено ръководство, което ни помага да направим персонализираните "
956
- "сайтове съвместими."
957
 
958
- #: views/admin/support/contents.php:40 views/installer/steps/finish.php:45
959
  msgctxt "(Admin)"
960
- msgid "Need help?"
961
- msgstr "Нужда от помощ?"
962
 
963
- #: views/admin/support/contents.php:46 views/installer/steps/finish.php:51
964
  msgctxt "(Admin)"
965
- msgid "Submit a support request"
966
- msgstr "Изпратете заявка за поддръжка"
967
 
968
- #: views/admin/support/contents.php:49 views/installer/steps/finish.php:54
969
  msgctxt "(Admin)"
970
- msgid ""
971
- "Found a bug or problem with the plugin? Post in the wordpress.org support "
972
- "forum."
973
- msgstr ""
974
- "Намерихте ли бъг или проблем с приставката? Публикувайте във форума за "
975
- "поддръжка на wordpress.org."
976
 
977
- #: views/admin/support/contents.php:55 views/installer/steps/finish.php:60
978
  msgctxt "(Admin)"
979
- msgid "Request a consultation"
980
- msgstr "Поискайте консултация"
981
 
982
- #: views/admin/support/contents.php:58 views/installer/steps/finish.php:63
983
  msgctxt "(Admin)"
984
- msgid ""
985
- "Need development or legal assistance in making your site compliant? We can "
986
- "help!"
987
- msgstr ""
988
- "Нуждаете се от развитие или правна помощ за привеждане на сайта Ви в "
989
- "съответствие? Можем да помогнем!"
990
 
991
- #: views/admin/wizard-buttons.php:2
992
  msgctxt "(Admin)"
993
- msgid "Restart setup wizard"
994
- msgstr "Рестартирай настройката"
995
 
996
- #: views/email/action-export.php:8 views/email/action-forget.php:12
997
  msgctxt "(Admin)"
998
- msgid ""
999
- "This email is just for your information. You don't need to take any action"
1000
- msgstr ""
1001
- "Този имейл е само за вашата информация. Не е необходимо да предприемате "
1002
- "никакви действия"
1003
 
1004
- #: views/email/action-forget.php:8
1005
  msgctxt "(Admin)"
1006
- msgid "The data subject had a user account on your website."
1007
- msgstr "Субектът на данните има потребителски профил на уебсайта Ви."
1008
 
1009
- #: views/email/identify-data-subject.php:2
1010
- msgid "Someone has requested access to your data on"
1011
- msgstr "Някой е поискал достъп до данните ви"
 
 
1012
 
1013
- #: views/email/identify-data-subject.php:3
1014
- msgid "If this was a mistake, just ignore this email and nothing will happen."
1015
- msgstr ""
1016
- "Ако това е грешка, просто игнорирайте този имейл и нищо няма да се случи. "
1017
- "Никой няма да има достъп до Вашите данни, ако няма по - долния линк. За "
1018
- "всеки случай ни уведомете на Email: privacy@zankov-group.com"
1019
 
1020
- #: views/email/identify-data-subject.php:4
1021
- msgid "To manage your data, visit the following address:"
1022
- msgstr "За да управлявате данните си, посетете следния адрес:"
 
1023
 
1024
- #: views/email/identify-data-subject.php:10
1025
- msgid "This link is valid for 15 minutes."
1026
- msgstr "Този линк ще бъде валиден само за 15 мин."
 
1027
 
1028
- #: views/email/no-data.php:2
1029
- msgid "Someone has requested information about your personal data on"
1030
- msgstr "Някой е поискал информация за вашите лични данни"
 
 
1031
 
1032
- #: views/email/no-data.php:3
1033
- msgid "None of your personal data is stored on"
1034
- msgstr "Не съхраняваме Ваши лични данни"
 
 
1035
 
1036
- #: views/email/no-data.php:5
1037
- msgid ""
1038
- "If this was a mistake or you did not request this email, just ignore it and "
1039
- "nothing will happen."
1040
- msgstr ""
1041
- "Ако това е грешка, просто игнорирайте този имейл и нищо няма да се случи. "
1042
- "Никой няма да има достъп до Вашите данни, ако няма по - долния линк. За "
1043
- "всеки случай ни уведомете на Email: privacy@zankov-group.com"
1044
 
1045
- #: views/email/request-export.php:13 views/email/request-forget.php:13
1046
  msgctxt "(Admin)"
1047
- msgid "As a reminder: according to GDPR, you have 30 days to comply."
1048
- msgstr "Напомняне: според GDPR имате 30 дни, за да се съобразите."
1049
 
1050
- #: views/global/delete-action.php:2
1051
  msgctxt "(Admin)"
1052
- msgid "Automatically anonymize data"
1053
- msgstr "Автоматично анонимизиране на данните"
1054
 
1055
- #: views/global/delete-action.php:5
 
1056
  msgctxt "(Admin)"
1057
- msgid "Automatically delete data"
1058
- msgstr "Автоматично изтриване на данните"
1059
 
1060
- #: views/global/delete-action.php:9
 
1061
  msgctxt "(Admin)"
1062
- msgid "Automatically anonymize data and notify me via email"
1063
- msgstr "Автоматично анонимизиране на данните и уведомяване чрез Email."
1064
 
1065
- #: views/global/delete-action.php:13
 
1066
  msgctxt "(Admin)"
1067
- msgid "Automatically delete data and notify me via email"
1068
- msgstr "Автоматично изтриване на данните и уведомяване чрез Email."
1069
 
1070
- #: views/global/delete-action.php:16 views/global/export-action.php:10
 
1071
  msgctxt "(Admin)"
1072
- msgid "Only notify me via email"
1073
- msgstr "Само ме уведоми чрез Email."
1074
 
1075
- #: views/global/export-action.php:2
 
1076
  msgctxt "(Admin)"
1077
- msgid "Automatically download data"
1078
- msgstr "Автоматично сваляне на данните"
1079
 
1080
- #: views/global/export-action.php:6
 
1081
  msgctxt "(Admin)"
1082
- msgid "Automatically download data and notify me via email"
1083
- msgstr "Автоматично сваляне на данните и уведомяване чрез Email."
1084
 
1085
- #: views/installer/continue-notice.php:2
 
1086
  msgctxt "(Admin)"
1087
- msgid "The The GDPR Framework setup has not been finalized yet."
1088
- msgstr "Настройката на GDPR все още не е финализирана."
1089
 
1090
- #: views/installer/continue-notice.php:3
 
1091
  msgctxt "(Admin)"
1092
- msgid "You can continue the setup at any time."
1093
- msgstr "Можете да продължите настройката по всяко време."
1094
 
1095
- #: views/installer/continue-notice.php:6
 
1096
  msgctxt "(Admin)"
1097
- msgid "Continue the setup wizard"
1098
- msgstr "Продължи с настройката"
1099
 
1100
- #: views/installer/continue-notice.php:9
 
1101
  msgctxt "(Admin)"
1102
- msgid "Hide this message"
1103
- msgstr "Скрий съобщението"
1104
 
1105
- #: views/installer/footer.php:7
1106
- msgid "Back"
1107
- msgstr "Назад"
 
 
1108
 
1109
- #: views/installer/header.php:26
 
1110
  msgctxt "(Admin)"
1111
- msgid "I need help"
1112
- msgstr "Нуждая се от помощ"
1113
 
1114
- #: views/installer/header.php:29
 
1115
  msgctxt "(Admin)"
1116
- msgid "Developer Docs"
1117
- msgstr "Документация за програмисти"
1118
 
1119
- #: views/installer/header.php:36
 
1120
  msgctxt "(Admin)"
1121
- msgid "Configuration"
1122
- msgstr "Конфигурация"
1123
 
1124
- #: views/installer/header.php:46
 
1125
  msgctxt "(Admin)"
1126
- msgid "Forms & Consent"
1127
- msgstr "Форми и съгласие"
1128
 
1129
- #: views/installer/header.php:51
 
1130
  msgctxt "(Admin)"
1131
- msgid "Integrations"
1132
- msgstr "Интеграции"
1133
 
1134
- #: views/installer/steps/configuration-settings.php:23
1135
- #: views/installer/steps/configuration-settings.php:73
1136
  msgctxt "(Admin)"
1137
- msgid "Enter the email address to notify"
1138
- msgstr "Въведете имейл адреса за уведомяване"
1139
 
1140
- #: views/installer/steps/disclaimer.php:21
 
1141
  msgctxt "(Admin)"
1142
- msgid "I accept"
1143
- msgstr "Приемам"
1144
 
1145
- #: views/installer/welcome-notice.php:7
 
1146
  msgctxt "(Admin)"
1147
- msgid "Run the setup wizard"
1148
- msgstr "Пуснете помощника за настройка"
1149
 
1150
- #: views/installer/welcome-notice.php:11
 
1151
  msgctxt "(Admin)"
1152
- msgid "Auto-install pages"
1153
- msgstr "Автоматично инсталиране на страници"
1154
 
1155
- #: views/installer/welcome-notice.php:15
 
1156
  msgctxt "(Admin)"
1157
- msgid "Skip and install manually"
1158
- msgstr "Инсталирай ръчно"
1159
 
1160
- #: views/modules/contact-form-7/generator-privacy.php:6
 
1161
  msgctxt "(Admin)"
1162
- msgid ""
1163
- "This tag generates the default text for Terms & Conditions and/or Privacy "
1164
- "Policy checkbox."
1165
- msgstr ""
1166
- "Този маркер генерира стандартния текст за чекбокса за Общи условия и / или "
1167
- "Политика за Лични данни."
1168
 
1169
- #: views/modules/contact-form-7/generator-privacy.php:15
1170
- msgid "Insert"
1171
- msgstr "Вмъкни"
 
 
1172
 
1173
- #: views/modules/wordpress-comments/terms-checkbox.php:6
1174
- #: views/modules/wordpress-user/registration-terms-checkbox.php:7
1175
- #, php-format
1176
- msgid "I accept the %sTerms and Conditions%s and the %sPrivacy Policy%s"
1177
- msgstr "Приемам %sTerms and Conditions%s и %sPrivacy Policy%s"
1178
 
1179
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:3
1180
- msgid "Manage consents"
1181
- msgstr "Управлявайте съгласията"
 
 
1182
 
1183
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:6
1184
- #: views/privacy-tools/form-consent.php:6
1185
- msgid "Here you can withdraw any consents you have given."
1186
- msgstr "Тук можете да оттеглите всички съгласия, които сте дали."
 
1187
 
1188
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:8
1189
- #: views/privacy-tools/form-consent.php:9
1190
- msgid "Consent types"
1191
- msgstr "Типове съгласие"
 
1192
 
1193
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:23
1194
- #: views/privacy-tools/form-consent.php:24
1195
- msgid "Withdraw"
1196
- msgstr "Оттегляне"
 
1197
 
1198
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:5
1199
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:5
1200
  msgctxt "(Admin)"
1201
- msgid "Delete this user and all data"
1202
- msgstr "Изтрийте този потребител и всички данни"
1203
 
1204
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:11
 
1205
  msgctxt "(Admin)"
1206
- msgid "Delete my data"
1207
- msgstr "Изтрий данните ми"
1208
 
1209
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:15
1210
- #: views/privacy-tools/form-delete.php:13
1211
- msgid "Delete all data we have gathered about you."
1212
- msgstr "Изтрийте всички данни, които сме събрали за вас."
 
1213
 
1214
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:16
1215
- #: views/privacy-tools/form-delete.php:14
1216
- msgid "If you have a user account on our site, it will also be deleted."
1217
- msgstr "Ако имате потребителски акаунт на нашия сайт, той също ще бъде изтрит."
 
1218
 
1219
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:17
1220
- #: views/privacy-tools/form-delete.php:15
1221
- msgid "Be careful - this action is permanent and CANNOT be undone."
1222
- msgstr "Бъдете внимателни - това действие е не може да бъде отменено."
 
1223
 
1224
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:22
1225
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:23
1226
  msgctxt "(Admin)"
1227
- msgid ""
1228
- "You seem to have an administrator or equivalent role, so deleting/"
1229
- "anonymizing via this page is disabled."
1230
- msgstr ""
1231
- "Изглежда, че имате администратор или еквивалентна роля, така че "
1232
- "изтриването / анонимирането чрез тази страница е деактивирано."
1233
 
1234
- #: views/modules/wordpress-user/dashboard/form-export.php:7
1235
- #: views/privacy-tools/form-export.php:1
1236
- msgid "Download your data"
1237
- msgstr "Изтеглете данните си"
 
1238
 
1239
- #: views/modules/wordpress-user/dashboard/form-export.php:12
1240
- #: views/privacy-tools/form-export.php:13
1241
- msgid "Download as table"
1242
- msgstr "Изтеглете в Таблица"
 
1243
 
1244
- #: views/modules/wordpress-user/dashboard/form-export.php:15
1245
- #: views/privacy-tools/form-export.php:22
1246
- msgid "Export as JSON"
1247
- msgstr "Експортирайте в JSON"
 
1248
 
1249
- #: views/modules/wordpress-user/dashboard/form-export.php:19
1250
- #: views/privacy-tools/form-export.php:4
1251
- msgid "You can download all your data formatted as a table for viewing."
1252
- msgstr ""
1253
- "Можете да изтеглите всичките си данни, форматирани като таблица за преглед."
1254
 
1255
- #: views/modules/wordpress-user/dashboard/form-export.php:20
1256
- #: views/privacy-tools/form-export.php:5
1257
- msgid "Alternatively, you can export it in machine-readable JSON format."
1258
- msgstr "Друга възможност е да го експортирате във машинно четене JSON формат."
 
1259
 
1260
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:11
 
1261
  msgctxt "(Admin)"
1262
- msgid "Delete user and all data"
1263
- msgstr "Изтрий потребителя и всички данни"
1264
 
1265
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:14
 
1266
  msgctxt "(Admin)"
1267
- msgid "Anonymize user and all data"
1268
- msgstr "Анонимизиране на потребителя и всички данни"
1269
 
1270
- #: views/modules/wordpress-user/dashboard/profile-page/header.php:2
 
1271
  msgctxt "(Admin)"
1272
- msgid "GDPR Data"
1273
- msgstr "GDPR данни"
1274
 
1275
- #: views/modules/wordpress-user/dashboard/profile-page/header.php:6
 
1276
  msgctxt "(Admin)"
1277
- msgid "This user has been anonymized."
1278
- msgstr "Потребителя беше добавен, като анонимен."
1279
 
1280
- #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:4
 
1281
  msgctxt "(Admin)"
1282
- msgid "Consents given"
1283
- msgstr "Дадени съгласия"
1284
 
1285
- #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:17
 
1286
  msgctxt "(Admin)"
1287
- msgid "No consents given"
1288
- msgstr "Няма дадени съгласия"
1289
 
1290
- #: views/privacy-tools/form-consent.php:2
1291
- msgid "Consent"
1292
- msgstr "Съгласие"
 
 
1293
 
1294
- #: views/privacy-tools/form-delete.php:1
1295
- #: views/privacy-tools/notice-admin-role.php:1
1296
- msgid "Delete my user and data"
1297
- msgstr "Изтрий ме, като потребител и данни."
 
1298
 
1299
- #: views/privacy-tools/form-delete.php:7
1300
- msgid "Delete my data"
1301
- msgstr "Изтрий моите данни"
1302
-
1303
- #: views/privacy-tools/form-identify.php:8
1304
- msgid "Back to Privacy Tools"
1305
- msgstr "Обратно в Политика за Лични данни"
1306
 
1307
- #: views/privacy-tools/form-identify.php:14
1308
- msgid "Please identify yourself via e-mail!"
1309
- msgstr "Идентифицирай се!"
 
 
1310
 
1311
- #: views/privacy-tools/form-identify.php:17
1312
- #: views/privacy-tools/form-identify.php:20
1313
- msgid "Enter your email address"
1314
- msgstr "Въведете вашия Email адрес"
 
1315
 
1316
- #: views/privacy-tools/form-identify.php:23
1317
- msgid "Send email"
1318
- msgstr "Изпрати Emial"
 
 
1319
 
1320
- #: views/privacy-tools/notice-admin-role.php:4
 
1321
  msgctxt "(Admin)"
1322
- msgid "Data deletion is disabled for administrative accounts."
1323
- msgstr "Изтриването на данни е забранено за административните профили."
1324
 
1325
- #: views/privacy-tools/notices.php:3
1326
- msgid ""
1327
- "We will send you an email with the link to access your data. Please check "
1328
- "your spam folder as well!"
1329
- msgstr ""
1330
- "Ще ви изпратим имейл с връзката, за да получите достъп до вашите данни. "
1331
- "Моля, проверете и папката си за спам!"
1332
 
1333
- #: views/privacy-tools/notices.php:7
1334
- msgid "The email you entered does not appear to be a valid email."
1335
- msgstr "Въведеният от вас имейл адрес не изглежда валиден имейл."
 
 
1336
 
1337
- #: views/privacy-tools/notices.php:11
1338
- msgid "Sorry - the link seems to have expired. Please try again!"
1339
- msgstr "За съжаление - връзката изглежда е изтекла. Моля, опитайте отново!"
 
 
1340
 
1341
- #: views/privacy-tools/notices.php:23
1342
- msgid "Your personal data has been removed!"
1343
- msgstr "Вашите лични данни бяха премахнати!"
 
 
1344
 
1345
- #: views/privacy-tools/privacy-tools.php:5
1346
- msgid "You are identified as"
1347
- msgstr "Вие сте идентифицирани като"
 
 
1348
 
1349
- #: views\admin\general\enable-tac.php:9
 
1350
  msgctxt "(Admin)"
1351
- msgid "Enable the term and condition page."
1352
- msgstr "Активирайте страницата за термини и условия."
1353
 
1354
- #: src\Admin\AdminTabGeneral.php:51
 
1355
  msgctxt "(Admin)"
1356
- msgid "Enable Term and Conditions"
1357
- msgstr "Активиране на термин и условия"
1358
 
1359
- #: gdpr-framework.php:121
1360
- msgid ""
1361
- "This website uses cookies to ensure you get the best experience on our "
1362
- "website."
1363
- msgstr ""
1364
- "Този уебсайт използва \"бисквитки\", за да гарантирате, че получавате най-"
1365
- "доброто изживяване на нашия уебсайт."
1366
 
1367
- #: gdpr-framework.php:121
1368
- msgid "Decline"
1369
- msgstr "упадък"
 
 
1370
 
1371
- #: gdpr-framework.php:121
1372
- msgid "Accept"
1373
- msgstr "приемам"
 
 
1374
 
1375
- #: gdpr-framework.php:133
1376
- msgid "Learn more"
1377
- msgstr "Научете повече"
 
 
1378
 
1379
- #: AdminTabGeneral.php:94
 
1380
  msgctxt "(Admin)"
1381
- msgid "From Email"
1382
- msgstr "От имейл"
1383
 
1384
- #: AdminTabGeneral.php:87
 
1385
  msgctxt "(Admin)"
1386
- msgid "From Name"
1387
- msgstr "От името"
1388
 
1389
- #: AdminTabGeneral.php:82
 
1390
  msgctxt "(Admin)"
1391
- msgid "Email Setting"
1392
- msgstr "Настройка на имейла"
1393
 
1394
- #: AdminTabGeneral.php:104
 
1395
  msgctxt "(Admin)"
1396
- msgid "Acceptance Popup Setting"
1397
- msgstr "Приемане на изскачащи настройки"
1398
 
1399
- #: AdminTabGeneral.php:109
 
1400
  msgctxt "(Admin)"
1401
- msgid "Popup Position"
1402
- msgstr "Изскачаща позиция"
1403
 
1404
- #: AdminTabGeneral.php:116
 
1405
  msgctxt "(Admin)"
1406
- msgid "Popup theme"
1407
- msgstr "Изскачаща тема"
1408
 
1409
- #: AdminTabGeneral.php:123
 
1410
  msgctxt "(Admin)"
1411
- msgid "Cookie Acceptance Background Color"
1412
- msgstr "Бял цвят на фоновото приемане на бисквитките"
1413
 
1414
- #: AdminTabGeneral.php:130
 
1415
  msgctxt "(Admin)"
1416
- msgid "Cookie Acceptance Text Color"
1417
- msgstr "Цвят на текста за приемане на бисквитките"
1418
 
1419
- #: AdminTabGeneral.php:137
 
1420
  msgctxt "(Admin)"
1421
- msgid "Cookie Acceptance Button Backgroung Color"
1422
- msgstr "Бутон за приемане на бисквитките"
1423
 
1424
- #: AdminTabGeneral.php:144
 
1425
  msgctxt "(Admin)"
1426
- msgid "Cookie Acceptance Button Color"
1427
- msgstr "Цвят на бутона за приемане на бисквитките"
1428
 
1429
- #: AdminTabGeneral.php:151
 
1430
  msgctxt "(Admin)"
1431
- msgid "Cookie Acceptance Border Color"
1432
- msgstr "Цвят на границата на приемане на бисквитките"
1433
 
1434
- #: AdminTabGeneral.php:67
 
1435
  msgctxt "(Admin)"
1436
- msgid "Enable Cookie Acceptance Popup"
1437
- msgstr "Активиране на изскачащия прозорец за приемане на \"бисквитките\""
1438
 
1439
- #: AdminTabGeneral.php:73
 
1440
  msgctxt "(Admin)"
1441
- msgid "Cookie Acceptance Popup Content"
1442
- msgstr "Съдържание на изскачащи прозорци за приемане на бисквитки"
1443
 
1444
- #: description-position-action.php
 
1445
  msgctxt "(Admin)"
1446
- msgid "Select position of the Popup"
1447
- msgstr "Изберете позицията на изскачащия прозорец"
1448
 
1449
- #: description-theme-action.php
 
1450
  msgctxt "(Admin)"
1451
- msgid "Select theme of the Popup"
1452
- msgstr "Изберете тема на изскачащия прозорец"
1453
 
1454
- #: description-theme-action.php:69
 
1455
  msgctxt "(Admin)"
1456
- msgid "Disable Comment Checkbox"
1457
- msgstr "Деактивирайте квадратчето за отметки за коментарите"
1458
 
1459
- #: description-theme-action.php:76
 
1460
  msgctxt "(Admin)"
1461
- msgid "Disable Register Form Checkbox"
1462
- msgstr "Деактивиране на формуляр за регистрация на формуляр"
1463
 
1464
- #: description-theme-action.php:312
 
1465
  msgctxt "(Admin)"
1466
- msgid "Disable Checkbox For Comments"
1467
- msgstr "Забранете квадратчето за отметка за коментари"
1468
 
1469
- #: AdminTabGeneral.php:319
 
1470
  msgctxt "(Admin)"
1471
- msgid "Disable Checkbox For Register Form"
1472
- msgstr "Деактивиране на квадратчето за регистрация"
1473
 
1474
- #: advanced-integration\header.php:2
 
1475
  msgctxt "(Admin)"
1476
- msgid "This page allows you to advance integration with ClassiDocs™"
1477
- msgstr ""
1478
- "Тази страница ви позволява да усъвършенствате интеграцията с ClassiDocs ™"
1479
 
1480
- #: AdminTabAdvancedIntegration.php:97
 
1481
  msgctxt "(Admin)"
1482
- msgid "ClassiDocs Password"
1483
- msgstr "ClassiDocs парола"
1484
 
1485
- #: AdminTabAdvancedIntegration.php:88
 
1486
  msgctxt "(Admin)"
1487
- msgid "ClassiDocs Username"
1488
- msgstr "ClassiDocs Потребител"
1489
 
1490
- #: AdminTabAdvancedIntegration.php:79
 
1491
  msgctxt "(Admin)"
1492
- msgid "ClassiDocs URL"
1493
- msgstr "URL адрес на ClassiDocs"
1494
 
1495
- #: AdminTabAdvancedIntegration.php:69
 
1496
  msgctxt "(Admin)"
1497
- msgid "Enable Response with related queries?"
1498
- msgstr "Да се ​​разреши отговор със свързани заявки?"
1499
 
1500
- #: AdminTabAdvancedIntegration.php:60
 
1501
  msgctxt "(Admin)"
1502
- msgid "Submit SAR request details?"
1503
- msgstr "Подайте подробности за заявката за SAR?"
1504
 
1505
- #: AdminTabAdvancedIntegration.php:51
 
1506
  msgctxt "(Admin)"
1507
- msgid "Integrate with ClassiDocs?"
1508
- msgstr "Интегриране с ClassiDocs?"
1509
 
1510
- #: AdminTabAdvancedIntegration.php:43
 
1511
  msgctxt "(Admin)"
1512
- msgid "Integration Settings"
1513
- msgstr "Настройки за интегриране"
1514
 
1515
- #: AdminTabAdvancedIntegration.php:35
 
1516
  msgctxt "(Admin)"
1517
- msgid "Advanced Integration"
1518
- msgstr "Разширена интеграция"
1519
 
1520
- #: checkbox-field.php:10
 
1521
  msgctxt "(Admin)"
1522
- msgid "Sign up for free here"
1523
- msgstr "Регистрирайте се безплатно тук"
1524
 
1525
- #: checkbox-field.php:10
 
1526
  msgctxt "(Admin)"
1527
- msgid "Click Here"
1528
- msgstr "Натисни тук"
1529
 
1530
- #: ClassiDocs-results.php:12
1531
- msgid "Previous Results"
1532
- msgstr "Предишни резултати"
 
 
1533
 
1534
- #: ClassiDocs-results.php:13
1535
- msgid "Current Results"
1536
- msgstr "Текущи резултати"
 
 
1537
 
1538
- #: ClassiDocs-results.php:19
1539
- msgid "Name"
1540
- msgstr "име"
 
 
1541
 
1542
- #: ClassiDocs-results.php:22
1543
- msgid "Path"
1544
- msgstr "път"
 
 
1545
 
1546
- #: ClassiDocs-results.php:34
1547
- msgid "Workstation"
1548
- msgstr "Workstation"
 
 
1549
 
1550
- #: ClassiDocs-results.php:37
1551
- msgid "Last Scan"
1552
- msgstr "Последно сканиране"
 
 
1553
 
1554
- #: ClassiDocs-results.php:62
1555
- msgid "No ClassiDocs data found!"
1556
- msgstr "Няма намерени данни за ClassiDocs!"
 
 
1557
 
1558
- #: enable_popup_header.php:5
1559
- msgid "Cookies used on the website!"
1560
- msgstr "Бисквитки, използвани на сайта!"
 
 
1561
 
1562
- #: enable_popup_header.php:9
1563
- msgid "Leave blank if don't want header to get display."
1564
- msgstr "Оставете празно, ако не искате заглавката да се покаже."
 
 
1565
 
1566
- #: AdminTabCookiePopup.php:39
 
1567
  msgctxt "(Admin)"
1568
- msgid "Cookie Popup Settings"
1569
- msgstr "Настройки на изскачащи прозорци"
1570
 
1571
- #: AdminTabCookiePopup.php:17
 
1572
  msgctxt "(Admin)"
1573
- msgid "Cookie Popup"
1574
- msgstr "Изскачащ"
1575
 
1576
- #: AdminTabCookiePopup.php:49
 
1577
  msgctxt "(Admin)"
1578
- msgid "Enable One Time Cookie Acceptance Popup"
1579
- msgstr ""
1580
- "Активиране на изскачащия прозорец за приемане на бисквитки за еднократно "
1581
- "време"
1582
 
1583
- #: consent.php:79
 
1584
  msgctxt "(Admin)"
1585
- msgid "Show Consent types"
1586
- msgstr "Показване на типовете съгласия"
1587
 
 
 
1588
  msgctxt "(Admin)"
1589
- msgid "Hide consent types"
1590
- msgstr "Скриване на типовете съгласие"
1591
 
 
 
1592
  msgctxt "(Admin)"
1593
- msgid "Do you want form to be GDPR compliance."
1594
- msgstr "Искате ли формата да бъде съответствие с GDPR."
1595
 
 
 
1596
  msgctxt "(Admin)"
1597
- msgid ""
1598
- "You have installed flamingo, To make this GDPR compliance in individual "
1599
- "contact form's privacy tab check the checkbox for include data to be search "
1600
- "on Privacy tool."
1601
- msgstr ""
1602
- "Имате инсталиран фламинго. За да направите това съответствие с GDPR в "
1603
- "раздела за поверителност на отделната форма за контакти, поставете отметка в "
1604
- "квадратчето за отметка, за да включите данни за търсене в инструмента за "
1605
- "поверителност."
1606
 
 
 
1607
  msgctxt "(Admin)"
1608
- msgid "Enable Policy Link On Popup"
1609
- msgstr "Активиране на връзката по правилата при изскачащи прозорци"
1610
 
 
 
1611
  msgctxt "(Admin)"
1612
- msgid "Enable Privacy policy on Popup"
1613
- msgstr "Активирайте правилата за поверителност в изскачащите прозорци"
1614
 
1615
- #: AdminTabCookiePopup.php
 
1616
  msgctxt "(Admin)"
1617
- msgid "Cookie Acceptance Popup header"
1618
- msgstr "Притурка за приемане на бисквитки"
1619
 
1620
- #: views\admin\privacy-manager\header.php:2
 
1621
  msgctxt "(Admin)"
1622
- msgid "Data443™ Privacy Manager"
1623
- msgstr "Data443™ Privacy Manager"
1624
 
1625
- #: views\admin\privacy-manager\header.php:3
 
1626
  msgctxt "(Admin)"
1627
- msgid ""
1628
- "ensures privacy regulation compliance, such as GDPR, CCPA, LGPD, etc, at the "
1629
- "next level."
1630
- msgstr ""
1631
- "гарантира спазването на правилата за поверителност, като например GDPR, "
1632
- "CCPA, LGPD и т.н., на следващото ниво."
1633
 
1634
- #: views\admin\privacy-manager\header.php:4
 
1635
  msgctxt "(Admin)"
1636
- msgid ""
1637
- "In addition to DSAR tracking and management, Privacy Manager adds the "
1638
- "following features to your data protection compliance resources:"
1639
- msgstr ""
1640
- "В допълнение към DSAR проследяването и управлението, Privacy Manager добавя "
1641
- "следните функции към вашите ресурси за защита на данните:"
1642
 
1643
- #: views\admin\privacy-manager\header.php:6
 
1644
  msgctxt "(Admin)"
1645
- msgid "Log and store ICO breach notifications"
1646
- msgstr "Влезте и съхранете уведомленията за нарушения на ICO"
1647
 
1648
- #: views\admin\privacy-manager\header.php:7
 
1649
  msgctxt "(Admin)"
1650
- msgid "Keeps full record of all requests, ticketed and timeline"
1651
- msgstr "Съхранява пълен запис на всички заявки, билети и времева линия"
1652
 
1653
- #: views\admin\privacy-manager\header.php:8
 
1654
  msgctxt "(Admin)"
1655
- msgid "Gap analysis and breach notifications"
1656
- msgstr "Анализ на пропуските и уведомления за нарушения"
1657
 
1658
- #: views\admin\privacy-manager\header.php:9
 
1659
  msgctxt "(Admin)"
1660
- msgid "In depth activity log with all GDPR, CCPA, etc actions evidenced"
1661
- msgstr ""
1662
- "В дълбочина на дневника за дейностите се разкриват всички действия на GDPR, "
1663
- "CCPA и т.н."
1664
 
1665
- #: views\admin\privacy-manager\header.php:10
 
1666
  msgctxt "(Admin)"
1667
- msgid "Highlights areas of concern and where you need to focus"
1668
- msgstr "Подчертава областите на загриженост и къде трябва да се съсредоточите"
1669
 
1670
- #: views\admin\privacy-manager\header.php:11
 
1671
  msgctxt "(Admin)"
1672
- msgid ""
1673
- "eLearning platform with access for all staff to ensure privacy regulation "
1674
- "compliance and obligations"
1675
- msgstr ""
1676
- "eLearning платформа с достъп за целия персонал, за да се гарантира "
1677
- "спазването и задълженията за регулиране на поверителността"
1678
 
1679
- #: views\admin\privacy-manager\header.php:12
 
1680
  msgctxt "(Admin)"
1681
- msgid "Tracks who accesses the system, when and why"
1682
- msgstr "Проследява кой влиза в системата, кога и защо"
1683
 
1684
- #: views\admin\privacy-manager\header.php:15
 
1685
  msgctxt "(Admin)"
1686
- msgid ""
1687
- "Our system enables your business to demonstrate its obligations in "
1688
- "protecting your customer data, show understanding of your business "
1689
- "activities and deliver eLearning and online tests to employees, ensuring "
1690
- "everyone in your company understands your privacy compliance rules and best "
1691
- "practices to operate."
1692
- msgstr ""
1693
- "Нашата система дава възможност на вашия бизнес да демонстрира задълженията "
1694
- "си в защитата на вашите клиентски данни, да покаже разбиране на вашите "
1695
- "бизнес дейности и да предостави електронно обучение и онлайн тестове на "
1696
- "служителите, като гарантира, че всеки във вашата компания разбира правилата "
1697
- "за спазване на поверителността и най-добрите практики за работа."
1698
 
1699
- #: views\admin\privacy-manager\header.php:16
 
1700
  msgctxt "(Admin)"
1701
- msgid ""
1702
- "No matter where you are on your data privacy journey, the ultimate goal is "
1703
- "compliance."
1704
- msgstr ""
1705
- "Без значение къде сте на път за поверителност на данните, крайната цел е "
1706
- "спазването на правилата."
1707
 
1708
- #: views\admin\privacy-manager\header.php:16
 
1709
  msgctxt "(Admin)"
1710
- msgid "enables your organization to comply with all privacy regulations."
1711
- msgstr ""
1712
- "позволява на вашата организация да спазва всички правила за поверителност."
1713
 
1714
- #: views\admin\support\contents.php:49
 
1715
  msgctxt "(Admin)"
1716
- msgid ""
1717
- "Found a bug or have a question about the plugin? Submit a support request "
1718
- "and we’ll get right on it!"
1719
- msgstr ""
1720
- "Открихте грешка или имате въпрос относно приставката? Изпратете заявка за "
1721
- "поддръжка и ще се оправим!"
1722
 
1723
- #: views\admin\support\contents.php:58
 
1724
  msgctxt "(Admin)"
1725
- msgid "Need assistance in making your site compliant? We can help!"
1726
- msgstr "Нуждаете се от помощ при съгласуването на сайта Ви? Можем да помогнем!"
1727
 
1728
- #: views\admin\general\woo-compatibility.php:9
 
1729
  msgctxt "(Admin)"
1730
- msgid "Enable WooCommerce data on GDPR tool"
1731
- msgstr "Активиране на данните за WooCommerce за инструмента GDPR"
1732
 
1733
- #: src\Admin\AdminTabGeneral.php:241
 
1734
  msgctxt "(Admin)"
1735
- msgid "Enable WooCommerce Compatibility"
1736
- msgstr "Активиране на съвместимостта на WooCommerce"
1737
 
1738
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:19
1739
- msgid "Note Regarding Order:"
1740
- msgstr "Забележка относно поръчката:"
 
 
1741
 
1742
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:20
1743
- msgid ""
1744
- "Your order with status Processing will not get deleted until status change."
1745
- msgstr ""
1746
- "Вашата поръчка със статус Обработка няма да бъде изтрита до промяна на "
1747
- "статуса."
1748
 
1749
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:21
1750
- msgid "Your order with status Completed will get anonymize."
1751
- msgstr "Вашата поръчка със завършен статус ще стане анонимна."
 
 
1752
 
1753
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:22
1754
- msgid "If you delete Completed order you can't apply for refund."
1755
- msgstr ""
1756
- "Ако изтриете попълнената поръчка, не можете да кандидатствате за "
1757
- "възстановяване."
1758
 
1759
- #: views\admin\general\woo-compatibility.php:12
 
1760
  msgctxt "(Admin)"
1761
- msgid "Will work for WooCommerce Version 3.4.0 or later."
1762
- msgstr "Ще работи за WooCommerce версия 3.4.0 или по-нова."
1763
 
1764
- #: views\admin\general\edd-compatibility.php:9
 
1765
  msgctxt "(Admin)"
1766
- msgid "Enable EDD data on GDPR tool."
1767
- msgstr "Активиране на EDD данни за инструмента GDPR."
1768
 
1769
- #: views\admin\general\edd-compatibility.php:12
 
1770
  msgctxt "(Admin)"
1771
- msgid "Will work for EDD Version 2.0.0 or later."
1772
- msgstr "Ще работи за EDD версия 2.0.0 или по-нова."
1773
 
1774
- #: src\Admin\AdminTabGeneral.php:262
1775
  msgctxt "(Admin)"
1776
- msgid "Enable EDD Compatibility"
1777
- msgstr "Активиране на EDD съвместимостта"
1778
 
1779
- #: gdpr-framework.php:298
1780
- msgid "Cookie Policy"
1781
- msgstr "Политика за „бисквитките“"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1782
 
1783
- #: ConsentManager.php:96
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1784
  msgctxt "(Admin)"
1785
  msgid ""
1786
- "This consent is visible by default on woocommerce checkout page. If someone "
1787
- "wishes to withdraw it, they should simply request to delete all their data."
1788
  msgstr ""
1789
- "Това съгласие е видимо по подразбиране на страницата за плащане на "
1790
- "woocommerce. Ако някой желае да го оттегли, те трябва просто да поискат да "
1791
- "изтрият всичките си данни."
1792
 
1793
- #: ConsentManager.php:96
 
 
 
1794
  msgctxt "(Admin)"
1795
- msgid "Woocommerce Policy Consent"
1796
- msgstr "Съгласие за политиката на Woocommerce"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1797
 
1798
- #: WoocommerceGdpr.php:150
1799
  msgid "Please acknowledge the Privacy Policy"
1800
  msgstr "Моля, потвърдете Декларацията за поверителност"
1801
 
1802
- #: woo-compatibility.php:9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1803
  msgctxt "(Admin)"
1804
- msgid "Enable WooCommerce data on GDPR tool."
1805
- msgstr "Активиране на данните за WooCommerce за инструмента GDPR."
 
 
 
 
 
 
 
 
1806
 
1807
- #: views\admin\general\enable-popup.php:12
 
 
 
 
 
1808
  msgctxt "(Admin)"
1809
  msgid ""
1810
- "<b>Note:</b> Need to add custom content <b>gdpr_cookie_consent</b> its "
1811
- "accepted on popup accept button."
1812
  msgstr ""
1813
- "<b> Забележка: </b> Необходимо е да добавите персонализирано съдържание <b> "
1814
- "gdpr_cookie_consent </b> неговия приет в изскачащ прозорец бутон за приемане."
1815
 
1816
- #: AdminTabCookiePopup.php:105
1817
  msgctxt "(Admin)"
1818
- msgid "Popup Dismiss Text"
1819
- msgstr "Изскачащ отказ от текст"
1820
 
1821
- #: AdminTabCookiePopup.php:98
 
1822
  msgctxt "(Admin)"
1823
- msgid "Popup Allow Text"
1824
- msgstr "Изскачащ Allow Text"
1825
 
1826
- #: AdminTabGeneral.php:241
 
1827
  msgctxt "(Admin)"
1828
- msgid "Woocommerce Integration"
1829
- msgstr "Интеграция с Woocommerce"
1830
 
1831
- #: AdminTabGeneral.php:259
1832
  msgctxt "(Admin)"
1833
- msgid "Easy Digital Download Integration"
1834
- msgstr "Лесна интеграция с цифрово изтегляне"
1835
 
1836
- #: has-dpo.php:11
1837
  msgctxt "(Admin)"
1838
- msgid "I have appointed a Data Protection Officer (DPO)"
1839
- msgstr "Назначих служител по защита на данните (ДЗД)"
1840
 
1841
- #: views/admin/general/stylesheet.php:9
1842
  msgctxt "(Admin)"
1843
- msgid "Enable basic styling for Privacy Tools page."
1844
- msgstr ""
1845
- "Активиране на основния стил на страницата Инструменти за поверителност."
1846
 
1847
- #: AdminTabPrivacyPolicy.php:204
 
 
 
1848
  msgctxt "(Admin)"
1849
- msgid "Delete Text"
1850
- msgstr "Изтриване на текст"
1851
 
1852
- #: consent.php:80
 
 
 
 
 
 
1853
  msgctxt "(Admin)"
1854
- msgid "Add consent type"
1855
- msgstr "Добавете тип съгласие"
 
 
 
 
 
1856
 
1857
- #: AdminTabGeneral.php:127
 
 
 
1858
  msgctxt "(Admin)"
1859
- msgid "Privacy Policy Custom URL"
1860
- msgstr "Политика за поверителност Потребителски URL"
1861
 
1862
- #: custom-policy-url.php:6
 
 
 
1863
  msgctxt "(Admin)"
1864
- msgid "Leave blank if privacy policy page already selected"
1865
- msgstr ""
1866
- "Оставете празно, ако страницата за Декларация за поверителност вече е избрана"
1867
 
1868
- #: views/admin/general/description-delete-action.php:2
1869
  msgctxt "(Admin)"
1870
- msgid "What should happen if a data subject requests deleting their data."
1871
- msgstr ""
1872
- "Какво трябва да се случи, ако субектът на данни поиска да изтрие техните "
1873
- "данни."
1874
 
1875
- #: views/admin/general/description-export-action.php:2
 
 
 
1876
  msgctxt "(Admin)"
1877
- msgid "Optional. Select the page which contains your Terms & Conditions"
1878
- msgstr ""
1879
- "Не е задължително. Изберете страницата, която съдържа вашите Общи условия"
1880
 
1881
- #: views/admin/general/description-terms-page.php:2
 
 
 
1882
  msgctxt "(Admin)"
1883
- msgid ""
1884
- "What should happen if a data subject requests viewing or exporting their "
1885
- "data."
1886
- msgstr ""
1887
- "Какво трябва да се случи, ако субектът на данни поиска да прегледа или "
1888
- "експортира своите данни."
1889
 
1890
- #: woo-disable_checkbox.php:9
 
 
 
1891
  msgctxt "(Admin)"
1892
- msgid "Disable WooCommerce Privacy Checkbox"
1893
- msgstr "Деактивирайте квадратчето за поверителност на WooCommerce"
1894
 
1895
- #: AdminTabCookiePopup.php:133
 
 
 
1896
  msgctxt "(Admin)"
1897
- msgid "Popup Learn More Text"
1898
- msgstr "Изскачане Научете повече текст"
1899
 
1900
- #: AdminTabGeneral.php:262
 
 
 
 
 
1901
  msgctxt "(Admin)"
1902
- msgid "Disable WooCommerce Register Privacy Checkbox"
 
1903
  msgstr ""
1904
- "Деактивирайте полето за поверителност на регистъра за поверителност на "
1905
- "WooCommerce"
1906
 
1907
- #: AdminTabCookiePopup.php:121
1908
  msgctxt "(Admin)"
1909
- msgid "Cookie Acceptance link target"
1910
- msgstr "Цел на връзката Приемане на бисквитки"
1911
 
1912
- #: popup_link_target.php:3
 
 
 
 
 
1913
  msgctxt "(Admin)"
1914
- msgid "Next Tab"
1915
- msgstr "Следващ раздел"
 
 
 
 
1916
 
1917
- #: popup_link_target.php:5
1918
- msgctxt "(Admin)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1919
  msgid "Self"
1920
- msgstr "себе си"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  msgstr ""
8
  "Project-Id-Version: The GDPR Framework 1.0\n"
9
  "Report-Msgid-Bugs-To: gdpr@codelight.eu\n"
10
+ "POT-Creation-Date: 2021-10-28 11:20-0400\n"
11
+ "PO-Revision-Date: 2021-10-28 11:47-0400\n"
12
+ "Last-Translator: Zankov Group LTD. <office@zankov-group.com>\n"
13
  "Language-Team: \n"
14
+ "Language: bg_BG\n"
15
  "MIME-Version: 1.0\n"
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
18
+ "X-Generator: Poedit 3.0\n"
 
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
20
 
21
+ #: gdpr-framework.php:110
22
+ #, fuzzy
23
  msgctxt "(Admin)"
24
  msgid "WordPress GDPR &rsaquo; Error"
25
+ msgstr "WordPress GDPR › Грешка"
26
+
27
+ #: gdpr-framework.php:121
28
+ #, fuzzy
29
+ #| msgctxt "(Admin)"
30
+ #| msgid "You must be using PHP 5.6.33 or greater."
31
+ msgctxt "(Admin)"
32
+ msgid "You must be using PHP 5.6.0 or greater."
33
+ msgstr "Трябва да използвате PHP 5.6.33 или по-нова."
34
 
35
+ #: gdpr-framework.php:122
36
+ #, fuzzy
37
+ #| msgctxt "(Admin)"
38
+ #| msgid "Invalid PHP version"
39
  msgctxt "(Admin)"
40
  msgid "Invalid PHP version"
41
  msgstr "Невалидна версия на PHP"
42
 
43
+ #: gdpr-framework.php:132
44
+ #, fuzzy
45
+ #| msgctxt "(Admin)"
46
+ #| msgid "You must be using WordPress 4.3.0 or greater."
47
  msgctxt "(Admin)"
48
+ msgid "You must be using WordPress 4.3.0 or greater."
49
+ msgstr "Трябва да използвате WordPress 4.3.0 или по-нова."
50
 
51
+ #: gdpr-framework.php:133
52
+ #, fuzzy
53
+ #| msgctxt "(Admin)"
54
+ #| msgid "Invalid WordPress version"
55
  msgctxt "(Admin)"
56
  msgid "Invalid WordPress version"
57
  msgstr "Невалидна версия на WordPress"
58
 
59
+ #: gdpr-framework.php:204
60
  msgctxt "(Admin)"
61
+ msgid "Anonymous"
62
+ msgstr "Анонимен"
63
 
64
+ #: gdpr-helper-functions.php:75
65
+ #, fuzzy
66
+ #| msgctxt "(Admin)"
67
+ #| msgid ""
68
+ #| "You appear to be running a development version of GDPR. You must run "
69
+ #| "<code>composer install</code> from the plugin directory."
70
  msgctxt "(Admin)"
71
  msgid ""
72
  "You appear to be running a development version of GDPR. You must run "
75
  "Изглежда, че използвате версия за разработка на GDPR. Трябва да стартирате "
76
  "<code> install композитор </ code> от директорията на добавката."
77
 
78
+ #: gdpr-helper-functions.php:80
79
+ #, fuzzy
80
+ #| msgctxt "(Admin)"
81
+ #| msgid "Autoloader not found."
82
  msgctxt "(Admin)"
83
  msgid "Autoloader not found."
84
  msgstr "Autoloader не е намерен."
85
 
86
+ #: gdpr-helper-functions.php:126
87
+ msgid ""
88
+ "This website uses cookies to ensure you get the best experience on our "
89
+ "website."
90
+ msgstr ""
91
+ "Този уебсайт използва \"бисквитки\", за да гарантирате, че получавате най-"
92
+ "доброто изживяване на нашия уебсайт."
93
+
94
+ #: gdpr-helper-functions.php:139
95
+ msgid "Decline"
96
+ msgstr "упадък"
97
+
98
+ #: gdpr-helper-functions.php:152
99
+ msgid "Accept"
100
+ msgstr "приемам"
101
+
102
+ #: gdpr-helper-functions.php:165
103
+ msgid "Learn more"
104
+ msgstr "Научете повече"
105
 
106
+ #: gdpr-helper-functions.php:220
107
+ msgid "Cookie Policy"
108
+ msgstr "Политика за „бисквитките“"
109
+
110
+ #: gdpr-helper-functions.php:258
111
+ msgid "Settings"
112
+ msgstr "Настройки"
113
+
114
+ #: gdpr-helper-functions.php:259
115
+ #, fuzzy
116
+ msgid "PREMIUM"
117
+ msgstr "ПРЕМИЯ"
118
+
119
+ #: src/Admin/AdminTab.php:195
120
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:114
121
  msgctxt "(Admin)"
122
  msgid "Save"
123
  msgstr "Запази"
124
 
125
+ #: src/Admin/AdminTab.php:231
126
+ #, fuzzy
127
+ #| msgctxt "(Admin)"
128
+ #| msgid "Policy generated!"
129
  msgctxt "(Admin)"
130
  msgid "Policy generated!"
131
  msgstr "Политиката е генерирана!"
133
  #: src/Admin/AdminTabGeneral.php:11
134
  msgctxt "(Admin)"
135
  msgid "General"
136
+ msgstr "Основни"
137
 
138
+ #: src/Admin/AdminTabGeneral.php:55
139
  msgctxt "(Admin)"
140
  msgid "General Settings"
141
+ msgstr "Основни настройки"
142
 
143
+ #: src/Admin/AdminTabGeneral.php:60
144
+ #, fuzzy
145
+ #| msgctxt "(Admin)"
146
+ #| msgid "Enable Privacy Tools"
147
  msgctxt "(Admin)"
148
  msgid "Enable Privacy Tools"
149
  msgstr "Включи Политика за лични данни"
150
 
151
+ #: src/Admin/AdminTabGeneral.php:67
152
+ #, fuzzy
153
+ #| msgctxt "(Admin)"
154
+ #| msgid "Enable Term and Conditions"
155
+ msgctxt "(Admin)"
156
+ msgid "Enable Term and Conditions"
157
+ msgstr "Активиране на термин и условия"
158
+
159
+ #: src/Admin/AdminTabGeneral.php:74
160
+ #, fuzzy
161
+ #| msgctxt "(Admin)"
162
+ #| msgid "Disable Comment Checkbox"
163
+ msgctxt "(Admin)"
164
+ msgid "Disable Comment Checkbox"
165
+ msgstr "Деактивирайте квадратчето за отметки за коментарите"
166
+
167
+ #: src/Admin/AdminTabGeneral.php:81
168
+ #, fuzzy
169
+ #| msgctxt "(Admin)"
170
+ #| msgid "Disable Register Form Checkbox"
171
+ msgctxt "(Admin)"
172
+ msgid "Disable Register Form Checkbox"
173
+ msgstr "Деактивиране на формуляр за регистрация на формуляр"
174
+
175
+ #: src/Admin/AdminTabGeneral.php:91
176
+ msgctxt "(Admin)"
177
+ msgid "Email Setting"
178
+ msgstr "Настройка на имейл"
179
+
180
+ #: src/Admin/AdminTabGeneral.php:96
181
+ msgctxt "(Admin)"
182
+ msgid "From Name"
183
+ msgstr "От имени"
184
+
185
+ #: src/Admin/AdminTabGeneral.php:103
186
+ msgctxt "(Admin)"
187
+ msgid "From Email"
188
+ msgstr "От Емайл"
189
+
190
+ #: src/Admin/AdminTabGeneral.php:112
191
  msgctxt "(Admin)"
192
  msgid "Pages"
193
  msgstr "Страници"
194
 
195
+ #: src/Admin/AdminTabGeneral.php:117 src/Admin/WordpressAdmin.php:166
196
+ #, fuzzy
197
+ #| msgctxt "(Admin)"
198
+ #| msgid "Privacy Tools Page"
199
  msgctxt "(Admin)"
200
  msgid "Privacy Tools Page"
201
  msgstr "Страница с инструменти "
202
 
203
+ #: src/Admin/AdminTabGeneral.php:124
204
+ #, fuzzy
205
+ #| msgctxt "(Admin)"
206
+ #| msgid "Privacy Policy Custom URL"
207
+ msgctxt "(Admin)"
208
+ msgid "Privacy Tools Custom URL"
209
+ msgstr "Политика за поверителност Потребителски URL"
210
+
211
+ #: src/Admin/AdminTabGeneral.php:131 src/Admin/WordpressAdmin.php:162
212
  msgctxt "(Admin)"
213
  msgid "Privacy Policy Page"
214
+ msgstr "Страница за поверителност"
215
+
216
+ #: src/Admin/AdminTabGeneral.php:138
217
+ #, fuzzy
218
+ #| msgctxt "(Admin)"
219
+ #| msgid "Privacy Policy Custom URL"
220
+ msgctxt "(Admin)"
221
+ msgid "Privacy Policy Custom URL"
222
+ msgstr "Политика за поверителност Потребителски URL"
223
 
224
+ #: src/Admin/AdminTabGeneral.php:145
225
  msgctxt "(Admin)"
226
  msgid "Terms & Conditions Page"
227
+ msgstr "Условията и Правила за ползване"
228
+
229
+ #: src/Admin/AdminTabGeneral.php:152
230
+ #, fuzzy
231
+ #| msgctxt "(Admin)"
232
+ #| msgid "Terms & Conditions Page"
233
+ msgctxt "(Admin)"
234
+ msgid "Terms & Conditions Custom URL"
235
  msgstr "Страница за Общи условия"
236
 
237
+ #: src/Admin/AdminTabGeneral.php:162
238
+ #, fuzzy
239
+ #| msgctxt "(Admin)"
240
+ #| msgid "View & Export Data"
241
  msgctxt "(Admin)"
242
  msgid "View & Export Data"
243
  msgstr "Преглед и Експортиране на данни"
244
 
245
+ #: src/Admin/AdminTabGeneral.php:167
246
+ #, fuzzy
247
+ #| msgctxt "(Admin)"
248
+ #| msgid "Export action"
249
  msgctxt "(Admin)"
250
  msgid "Export action"
251
  msgstr "Действие за експортиране"
252
 
253
+ #: src/Admin/AdminTabGeneral.php:174 src/Admin/AdminTabGeneral.php:213
254
+ #, fuzzy
255
+ #| msgctxt "(Admin)"
256
+ #| msgid "Email to notify"
257
  msgctxt "(Admin)"
258
  msgid "Email to notify"
259
  msgstr "Email за уведомяване"
260
 
261
+ #: src/Admin/AdminTabGeneral.php:185
262
+ #, fuzzy
263
+ #| msgctxt "(Admin)"
264
+ #| msgid "Delete & Anonymize Data"
265
  msgctxt "(Admin)"
266
  msgid "Delete & Anonymize Data"
267
  msgstr "Изтриване и Анонимни данни"
268
 
269
+ #: src/Admin/AdminTabGeneral.php:190
270
+ #, fuzzy
271
+ #| msgctxt "(Admin)"
272
+ #| msgid "Delete action"
273
  msgctxt "(Admin)"
274
  msgid "Delete action"
275
  msgstr "Действие при изтриване"
276
 
277
+ #: src/Admin/AdminTabGeneral.php:197
278
+ #, fuzzy
279
+ #| msgctxt "(Admin)"
280
+ #| msgid "Delete or reassign content?"
281
  msgctxt "(Admin)"
282
  msgid "Delete or reassign content?"
283
  msgstr "Да се ​​изтрие ли или да се присвои съдържание?"
284
 
285
+ #: src/Admin/AdminTabGeneral.php:205
286
+ #, fuzzy
287
+ #| msgctxt "(Admin)"
288
+ #| msgid "Reassign content to"
289
  msgctxt "(Admin)"
290
  msgid "Reassign content to"
291
  msgstr "Пренасочване на съдържание към"
292
 
293
+ #: src/Admin/AdminTabGeneral.php:225
294
  msgctxt "(Admin)"
295
  msgid "Styling"
296
+ msgstr "Оформление"
297
 
298
+ #: src/Admin/AdminTabGeneral.php:230
299
+ #, fuzzy
300
+ #| msgctxt "(Admin)"
301
+ #| msgid "Enable basic styling on Privacy Tools page"
302
  msgctxt "(Admin)"
303
  msgid "Enable basic styling on Privacy Tools page"
304
  msgstr "Активирайте основния стил на страницата Инструменти за поверителност"
305
 
306
+ #: src/Admin/AdminTabGeneral.php:242
307
+ #, fuzzy
308
+ #| msgctxt "(Admin)"
309
+ #| msgid "Compatibility"
310
  msgctxt "(Admin)"
311
  msgid "Compatibility"
312
  msgstr "Съвместимост"
313
 
314
+ #: src/Admin/AdminTabGeneral.php:247
315
+ #, fuzzy
316
+ #| msgctxt "(Admin)"
317
+ #| msgid "Enable automatic theme compatibility"
318
  msgctxt "(Admin)"
319
  msgid "Enable automatic theme compatibility"
320
  msgstr "Активирайте автоматичната съвместимост на темите"
321
 
322
+ #: src/Admin/AdminTabGeneral.php:259
323
+ #, fuzzy
324
+ #| msgctxt "(Admin)"
325
+ #| msgid "Woocommerce Integration"
326
+ msgctxt "(Admin)"
327
+ msgid "Woocommerce Integration"
328
+ msgstr "Интеграция с Woocommerce"
329
+
330
+ #: src/Admin/AdminTabGeneral.php:264
331
+ #, fuzzy
332
+ #| msgctxt "(Admin)"
333
+ #| msgid "Enable WooCommerce Compatibility"
334
+ msgctxt "(Admin)"
335
+ msgid "Enable WooCommerce Compatibility"
336
+ msgstr "Активиране на съвместимостта на WooCommerce"
337
+
338
+ #: src/Admin/AdminTabGeneral.php:271
339
+ #: views/admin/general/woo-disable_checkbox.php:10
340
+ #, fuzzy
341
+ #| msgctxt "(Admin)"
342
+ #| msgid "Disable WooCommerce Privacy Checkbox"
343
+ msgctxt "(Admin)"
344
+ msgid "Disable WooCommerce Privacy Checkbox"
345
+ msgstr "Деактивирайте квадратчето за поверителност на WooCommerce"
346
+
347
+ #: src/Admin/AdminTabGeneral.php:278
348
+ #: views/admin/general/woo-disable_register_checkbox.php:9
349
+ #, fuzzy
350
+ #| msgctxt "(Admin)"
351
+ #| msgid "Disable WooCommerce Register Privacy Checkbox"
352
+ msgctxt "(Admin)"
353
+ msgid "Disable WooCommerce Register Privacy Checkbox"
354
+ msgstr ""
355
+ "Деактивирайте полето за поверителност на регистъра за поверителност на "
356
+ "WooCommerce"
357
+
358
+ #: src/Admin/AdminTabGeneral.php:290
359
+ #, fuzzy
360
+ #| msgctxt "(Admin)"
361
+ #| msgid "Easy Digital Download Integration"
362
+ msgctxt "(Admin)"
363
+ msgid "Easy Digital Download Integration"
364
+ msgstr "Лесна интеграция с цифрово изтегляне"
365
+
366
+ #: src/Admin/AdminTabGeneral.php:295
367
+ #, fuzzy
368
+ #| msgctxt "(Admin)"
369
+ #| msgid "Enable EDD Compatibility"
370
+ msgctxt "(Admin)"
371
+ msgid "Enable EDD Compatibility"
372
+ msgstr "Активиране на EDD съвместимостта"
373
+
374
+ #: src/Admin/AdminTabGeneral.php:322
375
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:181
376
+ #, fuzzy
377
+ #| msgctxt "(Admin)"
378
+ #| msgid "Disable Checkbox For Comments"
379
+ msgctxt "(Admin)"
380
+ msgid "Disable Checkbox For Comments"
381
+ msgstr "Забранете квадратчето за отметка за коментари"
382
+
383
+ #: src/Admin/AdminTabGeneral.php:330
384
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:188
385
  #, fuzzy
386
+ #| msgctxt "(Admin)"
387
+ #| msgid "Disable Checkbox For Register Form"
388
+ msgctxt "(Admin)"
389
+ msgid "Disable Checkbox For Register Form"
390
+ msgstr "Деактивиране на квадратчето за регистрация"
391
+
392
+ #: src/Admin/AdminTabGeneral.php:408 src/Admin/AdminTabGeneral.php:424
393
+ #: src/Admin/AdminTabGeneral.php:449 src/Admin/AdminTabGeneral.php:506
394
+ #: views/installer/steps/configuration-settings.php:62
395
  msgctxt "(Admin)"
396
  msgid "&mdash; Select &mdash;"
397
+ msgstr "&mdash; Изберете &mdash;"
398
 
399
+ #: src/Admin/WordpressAdmin.php:68
400
+ #, fuzzy
401
+ #| msgctxt "(Admin)"
402
+ #| msgid "Privacy & GDPR Settings"
403
  msgctxt "(Admin)"
404
  msgid "Privacy & GDPR Settings"
405
  msgstr "Настройки за поверителност и GDPR"
406
 
407
+ #: src/Admin/WordpressAdmin.php:69 views/installer/welcome-notice.php:6
408
+ #, fuzzy
409
  msgctxt "(Admin)"
410
+ msgid "Data443 GDPR"
411
+ msgstr "Данни443 ОРЗД"
412
+
413
+ #: src/Components/AdvancedIntegration/AdminTabAdvancedIntegration.php:17
414
+ #: src/Components/AdvancedIntegration/AdminTabAdvancedIntegration.php:26
415
+ #, fuzzy
416
+ #| msgctxt "(Admin)"
417
+ #| msgid "No data found!"
418
+ msgctxt "(Admin)"
419
+ msgid "Data Hound"
420
+ msgstr "Нищо не е намерено"
421
 
422
  #: src/Components/Consent/AdminTabConsent.php:30
423
+ #: src/Components/Consent/AdminTabConsent.php:50
424
  msgctxt "(Admin)"
425
  msgid "Consent"
426
  msgstr "Съгласие"
427
 
428
+ #: src/Components/Consent/AdminTabConsent.php:55
429
+ msgctxt "(Admin)"
430
+ msgid "Additional Settings"
431
+ msgstr "Допълнителни Настройки"
432
+
433
+ #: src/Components/Consent/AdminTabConsent.php:60
434
+ #, fuzzy
435
+ msgctxt "(Admin)"
436
+ msgid "Display Consent Calendar"
437
+ msgstr "Показване на календара за съгласие"
438
+
439
+ #: src/Components/Consent/AdminTabConsent.php:172
440
+ #, fuzzy
441
+ #| msgctxt "(Admin)"
442
+ #| msgid "Consent slug is a required field!"
443
  msgctxt "(Admin)"
444
  msgid "Consent slug is a required field!"
445
  msgstr "Консултантската слуз е задължително поле!"
446
 
447
+ #: src/Components/Consent/AdminTabConsent.php:177
448
+ #, fuzzy
449
+ #| msgctxt "(Admin)"
450
+ #| msgid ""
451
+ #| "You may only use alphanumeric characters, dash and underscore in the "
452
+ #| "consent slug field."
453
  msgctxt "(Admin)"
454
  msgid ""
455
  "You may only use alphanumeric characters, dash and underscore in the consent "
458
  "Можете да използвате само буквено-цифрени символи, тире и долни черти в "
459
  "полето за съгласие за складиране."
460
 
461
+ #: src/Components/Consent/AdminTabConsent.php:182
462
+ #, fuzzy
463
+ #| msgctxt "(Admin)"
464
+ #| msgid "Consent title is a required field!"
465
  msgctxt "(Admin)"
466
  msgid "Consent title is a required field!"
467
  msgstr "Типовото съгласие е задължително поле!"
468
 
469
+ #: src/Components/Consent/AdminTabConsent.php:194
470
+ #, fuzzy
471
+ msgid ""
472
+ "To use this website, you accepted our Privacy Policy. If you wish to "
473
+ "withdraw your acceptance, please use the \"Delete my data\" button below."
474
+ msgstr ""
475
+ "За да използвате този уебсайт, вие приехте нашата Декларация за "
476
+ "поверителност. Ако желаете да оттеглите приемането си, моля, използвайте "
477
+ "бутона \"Изтрий моите данни\" по-долу."
478
+
479
+ #: src/Components/Consent/AdminTabConsent.php:197
480
+ #, fuzzy
481
+ msgid ""
482
+ "Enable this feature to allow users to submit a time limit on how many months "
483
+ "their consent is given for their coments and registration."
484
+ msgstr ""
485
+ "Активирайте тази функция, за да позволите на потребителите да подадат срок "
486
+ "за това колко месеца е дадено съгласието им за техните коментации и "
487
+ "регистрация."
488
+
489
+ #: src/Components/Consent/ConsentManager.php:53
490
+ #: src/Modules/WooCommerceGdpr/WooCommerceGdpr.php:144
491
  #, php-format
492
  msgid "I accept the %sPrivacy Policy%s"
493
  msgstr "Приемам %sPrivacy Policy%s"
494
 
495
+ #: src/Components/Consent/ConsentManager.php:57
496
+ #: src/Components/Consent/ConsentManager.php:78
497
+ #, fuzzy
498
+ #| msgctxt "(Admin)"
499
+ #| msgid ""
500
+ #| "This consent is not visible by default. If someone wishes to withdraw it, "
501
+ #| "they should simply request to delete all their data."
502
  msgctxt "(Admin)"
503
  msgid ""
504
  "This consent is not visible by default. If someone wishes to withdraw it, "
507
  "Това съгласие не се вижда по подразбиране. Ако някой желае да го оттегли, "
508
  "той трябва просто да поиска да изтрие всичките си данни."
509
 
510
+ #: src/Components/Consent/ConsentManager.php:74
511
  #, php-format
512
  msgid "I accept the %sTerms & Conditions%s"
513
  msgstr "Приемам %sTerms & Conditions%s"
514
 
515
+ #: src/Components/Consent/ConsentManager.php:87
516
+ #, fuzzy
517
+ #| msgctxt "(Admin)"
518
+ #| msgid "Woocommerce Policy Consent"
519
  msgctxt "(Admin)"
520
+ msgid "Woocommerce Policy Consent"
521
+ msgstr "Съгласие за политиката на Woocommerce"
522
 
523
+ #: src/Components/Consent/ConsentManager.php:88
524
+ #, fuzzy
525
+ #| msgctxt "(Admin)"
526
+ #| msgid ""
527
+ #| "This consent is visible by default on woocommerce checkout page. If "
528
+ #| "someone wishes to withdraw it, they should simply request to delete all "
529
+ #| "their data."
530
  msgctxt "(Admin)"
531
+ msgid ""
532
+ "This consent is visible by default on woocommerce checkout page. If someone "
533
+ "wishes to withdraw it, they should simply request to delete all their data."
534
+ msgstr ""
535
+ "Това съгласие е видимо по подразбиране на страницата за плащане на "
536
+ "woocommerce. Ако някой желае да го оттегли, те трябва просто да поискат да "
537
+ "изтрият всичките си данни."
538
+
539
+ #: src/Components/Consent/ConsentManager.php:389
540
+ #, fuzzy
541
+ #| msgctxt "(Admin)"
542
+ #| msgid "Company information"
543
+ msgid "Consent Information"
544
  msgstr "Информация за Фирмата"
545
 
546
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:17
547
+ #, fuzzy
548
+ #| msgctxt "(Admin)"
549
+ #| msgid "Cookie Popup"
550
  msgctxt "(Admin)"
551
+ msgid "Cookie Popup"
552
+ msgstr "Изскачащ"
553
 
554
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:44
555
+ #, fuzzy
556
+ #| msgctxt "(Admin)"
557
+ #| msgid "Cookie Popup Settings"
558
  msgctxt "(Admin)"
559
+ msgid "Cookie Popup Settings"
560
+ msgstr "Настройки на изскачащи прозорци"
561
 
562
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:48
563
+ #: views/admin/general/enable-popup.php:9
564
+ #, fuzzy
565
+ #| msgctxt "(Admin)"
566
+ #| msgid "Enable Cookie Acceptance Popup"
567
  msgctxt "(Admin)"
568
+ msgid "Enable Cookie Acceptance Popup"
569
+ msgstr "Активиране на изскачащия прозорец за приемане на \"бисквитките\""
570
 
571
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:54
572
+ #: views/admin/general/enable-onetime-popup.php:9
573
+ #, fuzzy
574
+ #| msgctxt "(Admin)"
575
+ #| msgid "Enable One Time Cookie Acceptance Popup"
576
  msgctxt "(Admin)"
577
+ msgid "Enable One Time Cookie Acceptance Popup"
578
+ msgstr ""
579
+ "Активиране на изскачащия прозорец за приемане на бисквитки за еднократно "
580
+ "време"
581
 
582
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:60
583
+ #, fuzzy
584
+ #| msgctxt "(Admin)"
585
+ #| msgid "Enable Privacy policy on Popup"
586
  msgctxt "(Admin)"
587
+ msgid "Enable Privacy policy on Popup"
588
+ msgstr "Активирайте правилата за поверителност в изскачащите прозорци"
589
 
590
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:66
591
+ #, fuzzy
592
+ #| msgctxt "(Admin)"
593
+ #| msgid "Cookie Acceptance Popup header"
594
  msgctxt "(Admin)"
595
+ msgid "Cookie Acceptance Popup header"
596
+ msgstr "Притурка за приемане на бисквитки"
597
 
598
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:72
599
+ #, fuzzy
600
+ #| msgctxt "(Admin)"
601
+ #| msgid "Cookie Acceptance Popup Content"
602
  msgctxt "(Admin)"
603
+ msgid "Cookie Acceptance Popup Content"
604
+ msgstr "Съдържание на изскачащи прозорци за приемане на бисквитки"
605
 
606
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:81
607
+ #, fuzzy
608
+ #| msgctxt "(Admin)"
609
+ #| msgid "Acceptance Popup Setting"
610
  msgctxt "(Admin)"
611
+ msgid "Acceptance Popup Setting"
612
+ msgstr "Приемане на изскачащи настройки"
613
 
614
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:86
615
+ #, fuzzy
616
+ #| msgctxt "(Admin)"
617
+ #| msgid "Popup Position"
618
  msgctxt "(Admin)"
619
+ msgid "Popup Position"
620
+ msgstr "Изскачаща позиция"
621
 
622
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:93
623
+ #, fuzzy
624
+ #| msgctxt "(Admin)"
625
+ #| msgid "Popup theme"
626
  msgctxt "(Admin)"
627
+ msgid "Popup theme"
628
+ msgstr "Изскачаща тема"
629
 
630
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:100
631
+ #, fuzzy
632
+ #| msgctxt "(Admin)"
633
+ #| msgid "Popup Allow Text"
634
  msgctxt "(Admin)"
635
+ msgid "Popup Allow Text"
636
+ msgstr "Изскачащ Allow Text"
637
 
638
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:107
639
+ #, fuzzy
640
+ #| msgctxt "(Admin)"
641
+ #| msgid "Popup Dismiss Text"
642
  msgctxt "(Admin)"
643
+ msgid "Popup Dismiss Text"
644
+ msgstr "Изскачащ отказ от текст"
645
 
646
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:114
647
+ #, fuzzy
648
+ #| msgctxt "(Admin)"
649
+ #| msgid "Popup Learn More Text"
650
  msgctxt "(Admin)"
651
+ msgid "Popup Learn More Text"
652
+ msgstr "Изскачане Научете повече текст"
653
 
654
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:121
655
+ #, fuzzy
656
+ #| msgctxt "(Admin)"
657
+ #| msgid "Cookie Acceptance link target"
658
  msgctxt "(Admin)"
659
+ msgid "Cookie Acceptance link target"
660
+ msgstr "Цел на връзката Приемане на бисквитки"
661
+
662
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:128
663
+ #, fuzzy
664
+ #| msgctxt "(Admin)"
665
+ #| msgid "Cookie Acceptance Background Color"
666
+ msgctxt "(Admin)"
667
+ msgid "Cookie Acceptance Background Color"
668
+ msgstr "Бял цвят на фоновото приемане на бисквитките"
669
+
670
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:135
671
+ #, fuzzy
672
+ #| msgctxt "(Admin)"
673
+ #| msgid "Cookie Acceptance Text Color"
674
+ msgctxt "(Admin)"
675
+ msgid "Cookie Acceptance Text Color"
676
+ msgstr "Цвят на текста за приемане на бисквитките"
677
+
678
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:142
679
+ #, fuzzy
680
+ #| msgctxt "(Admin)"
681
+ #| msgid "Cookie Acceptance Button Backgroung Color"
682
+ msgctxt "(Admin)"
683
+ msgid "Cookie Acceptance Button Backgroung Color"
684
+ msgstr "Бутон за приемане на бисквитките"
685
+
686
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:149
687
+ #, fuzzy
688
+ #| msgctxt "(Admin)"
689
+ #| msgid "Cookie Acceptance Button Color"
690
+ msgctxt "(Admin)"
691
+ msgid "Cookie Acceptance Button Color"
692
+ msgstr "Цвят на бутона за приемане на бисквитките"
693
+
694
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:156
695
+ #, fuzzy
696
+ #| msgctxt "(Admin)"
697
+ #| msgid "Cookie Acceptance Border Color"
698
+ msgctxt "(Admin)"
699
+ msgid "Cookie Acceptance Border Color"
700
+ msgstr "Цвят на границата на приемане на бисквитките"
701
+
702
+ #: src/Components/DoNotSell/AdminTabDoNotSell.php:17
703
+ #: src/Components/DoNotSell/AdminTabDoNotSell.php:28
704
+ #, fuzzy
705
+ msgctxt "(Admin)"
706
+ msgid "Do Not Sell My Data"
707
+ msgstr "Не продавай моите данни"
708
+
709
+ #: src/Components/DoNotSell/AdminTabDoNotSell.php:34
710
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:62
711
+ msgctxt "(Admin)"
712
+ msgid "Shortcode"
713
+ msgstr "Кратък код"
714
+
715
+ #: src/Components/DoNotSell/AdminTabDoNotSell.php:40
716
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:68
717
+ #, fuzzy
718
+ msgctxt "(Admin)"
719
+ msgid "Shortcode for PHP"
720
+ msgstr "Кратък код за PHP"
721
+
722
+ #: src/Components/DoNotSell/AdminTabDoNotSell.php:46
723
+ #, fuzzy
724
+ msgctxt "(Admin)"
725
+ msgid "View Requests"
726
+ msgstr "Преглед на заявките"
727
+
728
+ #: src/Components/PrivacyManager/AdminTabPrivacyManager.php:17
729
+ #, fuzzy
730
+ #| msgctxt "(Admin)"
731
+ #| msgid "Data443™ Privacy Manager"
732
+ msgctxt "(Admin)"
733
+ msgid "Global Privacy Manager"
734
+ msgstr "Data443™ Privacy Manager"
735
+
736
+ #: src/Components/PrivacyManager/AdminTabPrivacyManager.php:29
737
+ #, fuzzy
738
+ #| msgctxt "(Admin)"
739
+ #| msgid "Data443™ Privacy Manager"
740
+ msgctxt "(Admin)"
741
+ msgid "Privacy Manager"
742
+ msgstr "Data443™ Privacy Manager"
743
+
744
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:19
745
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:62
746
+ #: views/admin/privacy-policy/generated.php:1 views/installer/header.php:41
747
+ msgctxt "(Admin)"
748
+ msgid "Privacy Policy"
749
+ msgstr "Политика за Лични данни"
750
+
751
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:71
752
+ #, fuzzy
753
+ #| msgctxt "(Admin)"
754
+ #| msgid "Company information"
755
+ msgctxt "(Admin)"
756
+ msgid "Company information"
757
+ msgstr "Информация за Фирмата"
758
+
759
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:76
760
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:223
761
+ msgctxt "(Admin)"
762
+ msgid "Company Name"
763
+ msgstr "Име на фирма"
764
+
765
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:84
766
+ msgctxt "(Admin)"
767
+ msgid "Company Email"
768
+ msgstr "Имейл на фирмата"
769
+
770
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:91
771
+ #, fuzzy
772
+ #| msgctxt "(Admin)"
773
+ #| msgid "Company Location"
774
+ msgctxt "(Admin)"
775
+ msgid "Company Location"
776
+ msgstr "Местоположение на Фирмата"
777
+
778
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:107
779
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:259
780
+ #, fuzzy
781
+ #| msgctxt "(Admin)"
782
+ #| msgid "Representative Contact Name"
783
+ msgctxt "(Admin)"
784
+ msgid "Representative Contact Name"
785
+ msgstr "Представително име за контакт"
786
+
787
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:114
788
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:266
789
+ #, fuzzy
790
+ #| msgctxt "(Admin)"
791
+ #| msgid "Representative Contact Email"
792
+ msgctxt "(Admin)"
793
+ msgid "Representative Contact Email"
794
+ msgstr "Представителни имейл за контакт"
795
+
796
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:121
797
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:273
798
+ #, fuzzy
799
+ #| msgctxt "(Admin)"
800
+ #| msgid "Representative Contact Phone"
801
+ msgctxt "(Admin)"
802
+ msgid "Representative Contact Phone"
803
+ msgstr "Представителна контактна телефония"
804
+
805
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:137
806
+ #, fuzzy
807
+ #| msgctxt "(Admin)"
808
+ #| msgid "Data Protection Authority"
809
+ msgctxt "(Admin)"
810
+ msgid "Data Protection Authority"
811
+ msgstr "Орган за защита на данните"
812
+
813
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:143
814
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:302
815
+ #, fuzzy
816
+ #| msgctxt "(Admin)"
817
+ #| msgid "Data Protection Authority Website"
818
+ msgctxt "(Admin)"
819
+ msgid "Data Protection Authority Website"
820
+ msgstr "Уебсайт на Органа за защита на данните"
821
+
822
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:150
823
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:309
824
+ #, fuzzy
825
+ #| msgctxt "(Admin)"
826
+ #| msgid "Data Protection Authority Email"
827
+ msgctxt "(Admin)"
828
+ msgid "Data Protection Authority Email"
829
+ msgstr "Имейл за защитата на данни"
830
+
831
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:157
832
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:316
833
+ #, fuzzy
834
+ #| msgctxt "(Admin)"
835
+ #| msgid "Data Protection Authority Phone"
836
+ msgctxt "(Admin)"
837
+ msgid "Data Protection Authority Phone"
838
+ msgstr "Орган за защита на данните"
839
+
840
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:167
841
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:177
842
+ #, fuzzy
843
+ #| msgctxt "(Admin)"
844
+ #| msgid "Data Protection Officer"
845
+ msgctxt "(Admin)"
846
+ msgid "Data Protection Officer"
847
+ msgstr "Служителя за защита на данните"
848
+
849
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:170
850
+ #, fuzzy
851
+ #| msgctxt "(Admin)"
852
+ #| msgid "Knowledge base: Do I need to appoint a Data Protection Officer?"
853
+ msgctxt "(Admin)"
854
+ msgid "Knowledge base: Do I need to appoint a Data Protection Officer?"
855
+ msgstr "База знания: Трябва ли да назнача служител по защита на данните?"
856
+
857
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:184
858
+ #, fuzzy
859
+ #| msgctxt "(Admin)"
860
+ #| msgid "Data Protection Officer Name"
861
+ msgctxt "(Admin)"
862
+ msgid "Data Protection Officer Name"
863
+ msgstr "Име на Служителя по защита на данните"
864
+
865
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:192
866
+ #, fuzzy
867
+ #| msgctxt "(Admin)"
868
+ #| msgid "Data Protection Officer Email"
869
+ msgctxt "(Admin)"
870
+ msgid "Data Protection Officer Email"
871
  msgstr "Email на Служителя по защита на данните"
872
 
873
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:204
874
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:347
875
+ #, fuzzy
876
+ #| msgctxt "(Admin)"
877
+ #| msgid "Delete Text"
878
+ msgctxt "(Admin)"
879
+ msgid "Delete Text"
880
+ msgstr "Изтриване на текст"
881
+
882
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:230
883
  msgctxt "(Admin)"
884
  msgid "Contact Email"
885
+ msgstr "Имейл за контакт"
886
 
887
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:249
888
+ #, fuzzy
889
+ #| msgctxt "(Admin)"
890
+ #| msgid "Representative Contact"
891
  msgctxt "(Admin)"
892
  msgid "Representative Contact"
893
  msgstr "Представителен контакти"
894
 
895
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:252
896
+ #, fuzzy
897
+ #| msgctxt "(Admin)"
898
+ #| msgid "Knowledge base: Do I need to appoint an EU-based representative?"
899
  msgctxt "(Admin)"
900
  msgid "Knowledge base: Do I need to appoint an EU-based representative?"
901
  msgstr "База знания: Трябва ли да назнача представител на ЕС?"
902
 
903
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:289
904
+ #, fuzzy, php-format
905
+ msgctxt "(Admin)"
906
+ msgid "See the %slist of contacts here%s."
907
+ msgstr "Вижте %s списък с контакти тук%s."
908
+
909
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:333
910
+ #, fuzzy
911
+ #| msgctxt "(Admin)"
912
+ #| msgid "DPO Name"
913
  msgctxt "(Admin)"
914
  msgid "DPO Name"
915
  msgstr "ДПО Име"
916
 
917
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:340
918
+ #, fuzzy
919
+ #| msgctxt "(Admin)"
920
+ #| msgid "From Email"
921
+ msgctxt "(Admin)"
922
+ msgid "DPO Email"
923
+ msgstr "От имейл"
924
+
925
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:422
926
+ #, fuzzy
927
+ #| msgctxt "(Admin)"
928
+ #| msgid "Save & Generate Policy"
929
  msgctxt "(Admin)"
930
  msgid "Save & Generate Policy"
931
  msgstr "Запазване и генериране на правила"
932
 
933
+ #: src/Components/PrivacyPolicy/PrivacyPolicy.php:81
934
+ #: src/Installer/Installer.php:309 src/Installer/Steps/PolicySettings.php:210
935
  #: views/themes/storefront/footer.php:3
936
  #: views/themes/twentyseventeen/footer.php:3
937
  #: views/themes/twentysixteen/footer.php:4
938
  msgid "Privacy Policy"
939
  msgstr "Политика за Лични данни"
940
 
941
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:17
942
+ #, fuzzy
943
+ #| msgctxt "(Admin)"
944
+ #| msgid "Privacy"
945
+ msgctxt "(Admin)"
946
+ msgid "Privacy Safe"
947
+ msgstr "поверителност"
948
+
949
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:33
950
+ #, fuzzy
951
+ msgctxt "(Admin)"
952
+ msgid "Privacy Safe by Data443"
953
+ msgstr "Сейф за поверителност от Data443"
954
+
955
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:38
956
+ #, fuzzy
957
+ msgctxt "(Admin)"
958
+ msgid "Register for Privacy Safe"
959
+ msgstr "Регистрирайте се за сейф за поверителност"
960
+
961
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:44
962
+ #, fuzzy
963
+ #| msgctxt "(Admin)"
964
+ #| msgid "Privacy & GDPR Settings"
965
+ msgctxt "(Admin)"
966
+ msgid "Privacy Safe Settings"
967
+ msgstr "Настройки за поверителност и GDPR"
968
+
969
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:50
970
+ #, fuzzy
971
+ msgctxt "(Admin)"
972
+ msgid "Seal Code"
973
+ msgstr "Код на уплътнението"
974
+
975
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:56
976
+ #, fuzzy
977
+ msgctxt "(Admin)"
978
+ msgid "Image Code"
979
+ msgstr "Код на изображение"
980
+
981
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:74
982
+ #, fuzzy
983
+ msgctxt "(Admin)"
984
+ msgid "Support Data443"
985
+ msgstr "Данни за поддръжка443"
986
+
987
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:83
988
+ #, fuzzy
989
+ msgctxt "(Admin)"
990
+ msgid ""
991
+ "Strengthen your reputation. The privacy safe seal assures your customers "
992
+ "that your business is in compliance with privacy laws and regulations. The "
993
+ "privacy safe seal will verify that the GDPR Framework plugin is installed."
994
+ msgstr ""
995
+ "Укрепете репутацията си. Безопасният печат за поверителност уверява вашите "
996
+ "клиенти, че бизнесът Ви е в съответствие със законите и разпоредбите за "
997
+ "поверителност. Безопасният печат за поверителност ще провери дали е "
998
+ "инсталиран плъгинът GDPR Framework."
999
+
1000
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:86
1001
+ #, fuzzy
1002
+ msgctxt "(Admin)"
1003
+ msgid ""
1004
+ "Register now to activate your Privacy Safe seal. Visit the link below, "
1005
+ "complete the complete the checkout process. Once approved you will recieve "
1006
+ "notice to get your seal code and image code. Enter those here and save. You "
1007
+ "can then place the seal where you would like on your site."
1008
+ msgstr ""
1009
+ "Регистрирайте се сега, за да активирате вашия печат Privacy Safe. Посетете "
1010
+ "линка по-долу, завършете завършването на процеса на касата. След като бъдете "
1011
+ "одобрени, ще получите известие, за да получите вашия код за печат и код на "
1012
+ "изображението. Въведете тези тук и запишете. След това можете да поставите "
1013
+ "печата, където бихте искали на сайта си."
1014
+
1015
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:86
1016
+ msgctxt "(Admin)"
1017
+ msgid "Register Here"
1018
+ msgstr "Регистрация"
1019
+
1020
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:89
1021
+ #, fuzzy
1022
+ msgctxt "(Admin)"
1023
+ msgid "Embed the shortcode provided to display your privacy safe seal."
1024
+ msgstr ""
1025
+ "Вградете предоставения кратък код, за да покажете безопасното си уплътнение "
1026
+ "за поверителност."
1027
+
1028
+ #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:22
1029
+ #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:55
1030
  msgid "This page is currently disabled."
1031
  msgstr "Тази страница не е активна."
1032
 
1033
+ #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:26
1034
+ #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:59
1035
+ #, fuzzy
1036
+ msgid "Please configure the Privacy Tools page in the admin interface."
1037
+ msgstr ""
1038
+ "Моля, конфигурирайте страницата Инструменти за поверителност в "
1039
+ "администраторски интерфейс."
1040
+
1041
+ #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:42
1042
+ #: src/Installer/Installer.php:318
1043
+ #: src/Installer/Steps/ConfigurationPages.php:65
1044
  #: views/themes/storefront/footer.php:7
1045
  #: views/themes/twentyseventeen/footer.php:7
1046
  #: views/themes/twentysixteen/footer.php:9
1051
  #: src/Components/Support/AdminTabSupport.php:20
1052
  msgctxt "(Admin)"
1053
  msgid "Support"
1054
+ msgstr "Поддръжка"
 
 
 
 
 
 
 
1055
 
1056
  #: src/Components/WordpressUser/Controllers/DashboardDataPageController.php:54
1057
  #: views/privacy-tools/notices.php:19
1063
  msgid "Consent withdrawn."
1064
  msgstr "Съгласието е оттеглено."
1065
 
1066
+ #: src/Components/WordpressUser/RegistrationForm.php:56
1067
  msgid "<strong>ERROR</strong>: You must accept the terms and conditions."
1068
  msgstr "<strong>ERROR</strong>: Трябва да приемете Общите условия."
1069
 
1076
 
1077
  #: src/DataSubject/AdminTabDataSubject.php:27
1078
  #: src/DataSubject/AdminTabDataSubject.php:41
1079
+ #, fuzzy
1080
+ #| msgctxt "(Admin)"
1081
+ #| msgid "Data Subjects"
1082
  msgctxt "(Admin)"
1083
  msgid "Data Subjects"
1084
  msgstr "Субекти на данни"
1099
  msgid "Data removal request"
1100
  msgstr "Заявка за премахване на Данни"
1101
 
1102
+ #: src/DataSubject/DataSubjectIdentificator.php:78
1103
+ #: src/DataSubject/DataSubjectIdentificator.php:96
1104
  msgid "Your personal data on"
1105
  msgstr "Вашите лични данни за"
1106
 
1107
  #: src/Helpers.php:27
1108
  msgctxt "(Admin)"
1109
  msgid "Austria"
1110
+ msgstr "Австрия"
1111
 
1112
  #: src/Helpers.php:28
1113
  msgctxt "(Admin)"
1114
  msgid "Belgium"
1115
+ msgstr "Белгия"
1116
 
1117
  #: src/Helpers.php:29
1118
  msgctxt "(Admin)"
1119
  msgid "Bulgaria"
1120
+ msgstr "България"
1121
 
1122
  #: src/Helpers.php:30
1123
  msgctxt "(Admin)"
1124
  msgid "Croatia"
1125
+ msgstr "Хърватия"
1126
 
1127
  #: src/Helpers.php:31
1128
  msgctxt "(Admin)"
1129
  msgid "Cyprus"
1130
+ msgstr "Кипър"
1131
 
1132
  #: src/Helpers.php:32
1133
  msgctxt "(Admin)"
1134
  msgid "Czech Republic"
1135
+ msgstr "Чешка република"
1136
 
1137
  #: src/Helpers.php:33
1138
  msgctxt "(Admin)"
1139
  msgid "Denmark"
1140
+ msgstr "Дания"
1141
 
1142
  #: src/Helpers.php:34
1143
  msgctxt "(Admin)"
1144
  msgid "Estonia"
1145
+ msgstr "Естония"
1146
 
1147
  #: src/Helpers.php:35
1148
  msgctxt "(Admin)"
1149
  msgid "Finland"
1150
+ msgstr "Финландия"
1151
 
1152
  #: src/Helpers.php:36
1153
  msgctxt "(Admin)"
1154
  msgid "France"
1155
+ msgstr "Франция"
1156
 
1157
  #: src/Helpers.php:37
1158
  msgctxt "(Admin)"
1159
  msgid "Germany"
1160
+ msgstr "Германия"
1161
 
1162
  #: src/Helpers.php:38
1163
  msgctxt "(Admin)"
1164
  msgid "Greece"
1165
+ msgstr "Гърция"
1166
 
1167
  #: src/Helpers.php:39
1168
  msgctxt "(Admin)"
1169
  msgid "Hungary"
1170
+ msgstr "Унгария"
1171
 
1172
  #: src/Helpers.php:40
1173
  msgctxt "(Admin)"
1174
  msgid "Ireland"
1175
+ msgstr "Ирландия"
1176
 
1177
  #: src/Helpers.php:41
1178
  msgctxt "(Admin)"
1179
  msgid "Italy"
1180
+ msgstr "Италия"
1181
 
1182
  #: src/Helpers.php:42
1183
  msgctxt "(Admin)"
1184
  msgid "Latvia"
1185
+ msgstr "Латвия"
1186
 
1187
  #: src/Helpers.php:43
1188
  msgctxt "(Admin)"
1189
  msgid "Lithuania"
1190
+ msgstr "Литва"
1191
 
1192
  #: src/Helpers.php:44
1193
  msgctxt "(Admin)"
1194
  msgid "Luxembourg"
1195
+ msgstr "Люксембург"
1196
 
1197
  #: src/Helpers.php:45
1198
  msgctxt "(Admin)"
1199
  msgid "Malta"
1200
+ msgstr "Малта"
1201
 
1202
  #: src/Helpers.php:46
1203
  msgctxt "(Admin)"
1204
  msgid "Netherlands"
1205
+ msgstr "Холандия"
1206
 
1207
  #: src/Helpers.php:47
1208
  msgctxt "(Admin)"
1209
  msgid "Poland"
1210
+ msgstr "Полша"
1211
 
1212
  #: src/Helpers.php:48
1213
  msgctxt "(Admin)"
1214
  msgid "Portugal"
1215
+ msgstr "Португалия"
1216
 
1217
  #: src/Helpers.php:49
1218
  msgctxt "(Admin)"
1219
  msgid "Romania"
1220
+ msgstr "Румъния"
1221
 
1222
  #: src/Helpers.php:50
1223
  msgctxt "(Admin)"
1224
  msgid "Slovakia"
1225
+ msgstr "Словакия"
1226
 
1227
  #: src/Helpers.php:51
1228
  msgctxt "(Admin)"
1229
  msgid "Slovenia"
1230
+ msgstr "Словения"
1231
 
1232
  #: src/Helpers.php:52
1233
  msgctxt "(Admin)"
1234
  msgid "Spain"
1235
+ msgstr "Испания"
1236
 
1237
  #: src/Helpers.php:53
1238
  msgctxt "(Admin)"
1239
  msgid "Sweden"
1240
+ msgstr "Швеция"
1241
 
1242
  #: src/Helpers.php:54
1243
  msgctxt "(Admin)"
1244
  msgid "United Kingdom"
1245
+ msgstr "Обединеното Kралство"
1246
 
1247
+ #: src/Helpers.php:56
1248
+ #, fuzzy
1249
  msgctxt "(Admin)"
1250
+ msgid "Afghanistan "
1251
+ msgstr "Афганистан "
1252
 
1253
+ #: src/Helpers.php:57
1254
  msgctxt "(Admin)"
1255
+ msgid "Åland Islands"
1256
+ msgstr "Аландските острови"
1257
 
1258
+ #: src/Helpers.php:58
1259
  msgctxt "(Admin)"
1260
+ msgid "Albania"
1261
+ msgstr "Албания"
1262
 
1263
+ #: src/Helpers.php:59
1264
  msgctxt "(Admin)"
1265
+ msgid "Algeria"
1266
+ msgstr "Алжир"
1267
 
1268
+ #: src/Helpers.php:60
1269
+ #, fuzzy
1270
  msgctxt "(Admin)"
1271
+ msgid "American Samoa "
1272
+ msgstr "Американска Самоа "
1273
 
1274
+ #: src/Helpers.php:61
1275
  msgctxt "(Admin)"
1276
+ msgid "Andorra"
1277
+ msgstr "Андора"
1278
 
1279
+ #: src/Helpers.php:62
1280
+ msgctxt "(Admin)"
1281
+ msgid "Angola"
1282
+ msgstr "Ангола"
1283
 
1284
+ #: src/Helpers.php:63
1285
  msgctxt "(Admin)"
1286
+ msgid "Anguilla"
1287
+ msgstr "Ангуила"
1288
 
1289
+ #: src/Helpers.php:64
 
 
1290
  msgctxt "(Admin)"
1291
+ msgid "Antarctica"
1292
+ msgstr "Антарктика"
1293
 
1294
+ #: src/Helpers.php:65
1295
  msgctxt "(Admin)"
1296
+ msgid "Antigua and Barbuda"
1297
+ msgstr "Антигуа и Барбуда"
 
 
 
1298
 
1299
+ #: src/Helpers.php:66
1300
  msgctxt "(Admin)"
1301
+ msgid "Argentina"
1302
+ msgstr "Аржентина"
1303
 
1304
+ #: src/Helpers.php:67
1305
+ msgctxt "(Admin)"
1306
+ msgid "Armenia"
1307
+ msgstr "Армения"
1308
 
1309
+ #: src/Helpers.php:68
1310
  msgctxt "(Admin)"
1311
+ msgid "Aruba"
1312
+ msgstr "Аруба"
1313
 
1314
+ #: src/Helpers.php:69
1315
  msgctxt "(Admin)"
1316
+ msgid "Australia"
1317
+ msgstr "Австралия"
1318
 
1319
+ #: src/Helpers.php:70
1320
  msgctxt "(Admin)"
1321
+ msgid "Azerbaijan"
1322
+ msgstr "Азербайджан"
 
 
 
 
1323
 
1324
+ #: src/Helpers.php:71
1325
  msgctxt "(Admin)"
1326
+ msgid "Bahrain"
1327
+ msgstr "Бахрейн"
1328
 
1329
+ #: src/Helpers.php:72
 
1330
  msgctxt "(Admin)"
1331
+ msgid "Bahamas"
1332
+ msgstr "Бахами"
1333
 
1334
+ #: src/Helpers.php:73
 
1335
  msgctxt "(Admin)"
1336
+ msgid "Bangladesh"
1337
+ msgstr "Бангладеш"
1338
 
1339
+ #: src/Helpers.php:74
1340
  msgctxt "(Admin)"
1341
+ msgid "Barbados"
1342
+ msgstr "Барбадос"
1343
 
1344
+ #: src/Helpers.php:75
1345
  msgctxt "(Admin)"
1346
+ msgid "Belarus"
1347
+ msgstr "Беларус"
1348
 
1349
+ #: src/Helpers.php:76
1350
+ #, fuzzy
1351
  msgctxt "(Admin)"
1352
+ msgid "Belize"
1353
+ msgstr "Белийз"
1354
 
1355
+ #: src/Helpers.php:77
1356
  msgctxt "(Admin)"
1357
+ msgid "Benin"
1358
+ msgstr "Бенин"
1359
 
1360
+ #: src/Helpers.php:78
1361
  msgctxt "(Admin)"
1362
+ msgid "Bermuda"
1363
+ msgstr "Бермудски острови"
 
 
 
 
 
1364
 
1365
+ #: src/Helpers.php:79
1366
  msgctxt "(Admin)"
1367
+ msgid "Bhutan"
1368
+ msgstr "Бутан"
1369
 
1370
+ #: src/Helpers.php:80
1371
  msgctxt "(Admin)"
1372
+ msgid "Bolivia, Plurinational State of"
1373
+ msgstr "Боливия"
1374
 
1375
+ #: src/Helpers.php:81
1376
+ #, fuzzy
1377
  msgctxt "(Admin)"
1378
+ msgid "Bonaire, Sint Eustatius and Saba"
1379
+ msgstr "Бонер, Синт Еустатиус и Саба"
1380
 
1381
+ #: src/Helpers.php:82
1382
  msgctxt "(Admin)"
1383
+ msgid "Bosnia and Herzegovina"
1384
+ msgstr "Босна и Херцеговина"
1385
 
1386
+ #: src/Helpers.php:83
1387
  msgctxt "(Admin)"
1388
+ msgid "Botswana"
1389
+ msgstr "Ботсуана"
 
 
 
1390
 
1391
+ #: src/Helpers.php:84
1392
  msgctxt "(Admin)"
1393
+ msgid "Bouvet Island"
1394
+ msgstr "Остров Буве"
 
 
 
 
1395
 
1396
+ #: src/Helpers.php:85
1397
  msgctxt "(Admin)"
1398
+ msgid "Brazil"
1399
+ msgstr "Бразилия"
1400
 
1401
+ #: src/Helpers.php:86
1402
  msgctxt "(Admin)"
1403
+ msgid "British Indian Ocean Territory"
1404
+ msgstr "Британска територия в Индийския океан"
1405
 
1406
+ #: src/Helpers.php:87
1407
  msgctxt "(Admin)"
1408
+ msgid "Brunei Darussalam"
1409
+ msgstr "Бруней Даруссалам"
1410
 
1411
+ #: src/Helpers.php:88
1412
  msgctxt "(Admin)"
1413
+ msgid "Burkina Faso"
1414
+ msgstr "Буркина Фасо"
1415
 
1416
+ #: src/Helpers.php:89
1417
  msgctxt "(Admin)"
1418
+ msgid "Burundi"
1419
+ msgstr "Бурунди"
1420
 
1421
+ #: src/Helpers.php:90
1422
  msgctxt "(Admin)"
1423
+ msgid "Cambodia"
1424
+ msgstr "Камбоджа"
1425
 
1426
+ #: src/Helpers.php:91
1427
  msgctxt "(Admin)"
1428
+ msgid "Cameroon"
1429
+ msgstr "Камерун"
1430
 
1431
+ #: src/Helpers.php:92
1432
  msgctxt "(Admin)"
1433
+ msgid "Canada"
1434
+ msgstr "Канада"
 
 
 
 
1435
 
1436
+ #: src/Helpers.php:93
1437
  msgctxt "(Admin)"
1438
+ msgid "Cape Verde"
1439
+ msgstr "Кабо Верде"
1440
 
1441
+ #: src/Helpers.php:94
1442
  msgctxt "(Admin)"
1443
+ msgid "Cayman Islands"
1444
+ msgstr "Кайманови острови"
1445
 
1446
+ #: src/Helpers.php:95
1447
  msgctxt "(Admin)"
1448
+ msgid "Central African Republic"
1449
+ msgstr "Централна Африканска република"
1450
 
1451
+ #: src/Helpers.php:96
1452
+ msgctxt "(Admin)"
1453
+ msgid "Chad"
1454
+ msgstr "Чад"
 
 
1455
 
1456
+ #: src/Helpers.php:97
 
1457
  msgctxt "(Admin)"
1458
+ msgid "Chile"
1459
+ msgstr "Чили"
1460
 
1461
+ #: src/Helpers.php:98
 
1462
  msgctxt "(Admin)"
1463
+ msgid "China"
1464
+ msgstr "Китай"
1465
 
1466
+ #: src/Helpers.php:99
1467
  msgctxt "(Admin)"
1468
+ msgid "Christmas Island"
1469
+ msgstr "Коледни острови"
 
 
 
 
1470
 
1471
+ #: src/Helpers.php:100
1472
  msgctxt "(Admin)"
1473
+ msgid "Cocos (Keeling) Islands"
1474
+ msgstr "Кокосови (Кийлинг) острови"
 
 
 
 
1475
 
1476
+ #: src/Helpers.php:101
1477
  msgctxt "(Admin)"
1478
+ msgid "Colombia"
1479
+ msgstr "Колумбия"
 
 
1480
 
1481
+ #: src/Helpers.php:102
1482
  msgctxt "(Admin)"
1483
+ msgid "Comoros"
1484
+ msgstr "Коморски острови"
 
 
 
 
 
 
1485
 
1486
+ #: src/Helpers.php:103
 
1487
  msgctxt "(Admin)"
1488
+ msgid "Congo"
1489
+ msgstr "Конго"
 
 
 
1490
 
1491
+ #: src/Helpers.php:104
 
1492
  msgctxt "(Admin)"
1493
+ msgid "Congo, the Democratic Republic of the"
1494
+ msgstr "Демократична република Конго"
1495
 
1496
+ #: src/Helpers.php:105
1497
  msgctxt "(Admin)"
1498
+ msgid "Cook Islands"
1499
+ msgstr "Острови Кук"
 
 
 
 
1500
 
1501
+ #: src/Helpers.php:106
1502
  msgctxt "(Admin)"
1503
+ msgid "Costa Rica"
1504
+ msgstr "Коста Рика"
 
 
 
 
1505
 
1506
+ #: src/Helpers.php:107
1507
+ #, fuzzy
1508
  msgctxt "(Admin)"
1509
+ msgid "Côte dIvoire"
1510
+ msgstr "Кот дВоар"
 
 
 
1511
 
1512
+ #: src/Helpers.php:108
1513
  msgctxt "(Admin)"
1514
+ msgid "Cuba"
1515
+ msgstr "Куба"
1516
 
1517
+ #: src/Helpers.php:109
1518
+ #, fuzzy
1519
  msgctxt "(Admin)"
1520
+ msgid "Curaçao"
1521
+ msgstr "Кюрасао"
1522
 
1523
+ #: src/Helpers.php:110
1524
  msgctxt "(Admin)"
1525
+ msgid "Djibouti"
1526
+ msgstr "Джибути"
1527
 
1528
+ #: src/Helpers.php:111
1529
+ #, fuzzy
1530
  msgctxt "(Admin)"
1531
+ msgid "Dominica"
1532
+ msgstr "Доминиканa"
 
 
 
 
1533
 
1534
+ #: src/Helpers.php:112
 
1535
  msgctxt "(Admin)"
1536
+ msgid "Dominican Republic"
1537
+ msgstr "Доминиканска Република"
1538
 
1539
+ #: src/Helpers.php:113
1540
  msgctxt "(Admin)"
1541
+ msgid "Ecuador"
1542
+ msgstr "Еквадор"
1543
 
1544
+ #: src/Helpers.php:114
1545
  msgctxt "(Admin)"
1546
+ msgid "Egypt"
1547
+ msgstr "Египет"
1548
 
1549
+ #: src/Helpers.php:115
1550
  msgctxt "(Admin)"
1551
+ msgid "El Salvador"
1552
+ msgstr "Ел Салвадор"
1553
 
1554
+ #: src/Helpers.php:116
1555
  msgctxt "(Admin)"
1556
+ msgid "Equatorial Guinea"
1557
+ msgstr "Екваториална Гвинея"
1558
 
1559
+ #: src/Helpers.php:117
1560
  msgctxt "(Admin)"
1561
+ msgid "Eritrea"
1562
+ msgstr "Еритрея"
1563
 
1564
+ #: src/Helpers.php:118
1565
  msgctxt "(Admin)"
1566
+ msgid "Ethiopia"
1567
+ msgstr "Етиопия"
1568
 
1569
+ #: src/Helpers.php:119
1570
  msgctxt "(Admin)"
1571
+ msgid "Falkland Islands (Malvinas)"
1572
+ msgstr "Фолкландски о-ви (Малвински)"
 
 
1573
 
1574
+ #: src/Helpers.php:120
1575
  msgctxt "(Admin)"
1576
+ msgid "Faroe Islands"
1577
+ msgstr "Фарьорските острови"
1578
 
1579
+ #: src/Helpers.php:121
1580
  msgctxt "(Admin)"
1581
+ msgid "Fiji"
1582
+ msgstr "Фиджи"
1583
 
1584
+ #: src/Helpers.php:122
1585
  msgctxt "(Admin)"
1586
+ msgid "French Guiana"
1587
+ msgstr "Френска Гвиана"
 
 
 
 
1588
 
1589
+ #: src/Helpers.php:123
1590
  msgctxt "(Admin)"
1591
+ msgid "French Polynesia"
1592
+ msgstr "Френска Полинезия"
1593
 
1594
+ #: src/Helpers.php:124
1595
  msgctxt "(Admin)"
1596
+ msgid "French Southern Territories"
1597
+ msgstr "Френски Южни Територии"
 
 
 
 
1598
 
1599
+ #: src/Helpers.php:125
1600
  msgctxt "(Admin)"
1601
+ msgid "Gabon"
1602
+ msgstr "Габон"
1603
 
1604
+ #: src/Helpers.php:126
1605
  msgctxt "(Admin)"
1606
+ msgid "Gambia"
1607
+ msgstr "Гамбия"
 
 
 
1608
 
1609
+ #: src/Helpers.php:127
1610
  msgctxt "(Admin)"
1611
+ msgid "Georgia"
1612
+ msgstr "Джорджия"
1613
 
1614
+ #: src/Helpers.php:128
1615
+ #, fuzzy
1616
+ msgctxt "(Admin)"
1617
+ msgid "Georgia "
1618
+ msgstr "Грузия "
1619
 
1620
+ #: src/Helpers.php:129
1621
+ msgctxt "(Admin)"
1622
+ msgid "Ghana"
1623
+ msgstr "Гана"
 
 
1624
 
1625
+ #: src/Helpers.php:130
1626
+ msgctxt "(Admin)"
1627
+ msgid "Gibraltar"
1628
+ msgstr "Гибралтар"
1629
 
1630
+ #: src/Helpers.php:131
1631
+ msgctxt "(Admin)"
1632
+ msgid "Greenland"
1633
+ msgstr "Гренландия"
1634
 
1635
+ #: src/Helpers.php:132
1636
+ #, fuzzy
1637
+ msgctxt "(Admin)"
1638
+ msgid "Grenada "
1639
+ msgstr "Гренада "
1640
 
1641
+ #: src/Helpers.php:133
1642
+ #, fuzzy
1643
+ msgctxt "(Admin)"
1644
+ msgid "Guadeloupe "
1645
+ msgstr "Гваделупа "
1646
 
1647
+ #: src/Helpers.php:134
1648
+ msgctxt "(Admin)"
1649
+ msgid "Guam"
1650
+ msgstr "Гуам"
 
 
 
 
1651
 
1652
+ #: src/Helpers.php:135
1653
  msgctxt "(Admin)"
1654
+ msgid "Guatemala"
1655
+ msgstr "Гватемала"
1656
 
1657
+ #: src/Helpers.php:136
1658
  msgctxt "(Admin)"
1659
+ msgid "Guernsey"
1660
+ msgstr "Гърнзи"
1661
 
1662
+ #: src/Helpers.php:137
1663
+ #, fuzzy
1664
  msgctxt "(Admin)"
1665
+ msgid "Guinea "
1666
+ msgstr "Гвинея "
1667
 
1668
+ #: src/Helpers.php:138
1669
+ #, fuzzy
1670
  msgctxt "(Admin)"
1671
+ msgid "Guinea-Bissau "
1672
+ msgstr "Гвинея-Бисау "
1673
 
1674
+ #: src/Helpers.php:139
1675
+ #, fuzzy
1676
  msgctxt "(Admin)"
1677
+ msgid "Guyana "
1678
+ msgstr "Гвиана "
1679
 
1680
+ #: src/Helpers.php:140
1681
+ #, fuzzy
1682
  msgctxt "(Admin)"
1683
+ msgid "Haiti "
1684
+ msgstr "Хаити "
1685
 
1686
+ #: src/Helpers.php:141
1687
+ #, fuzzy
1688
  msgctxt "(Admin)"
1689
+ msgid "Heard Island and McDonald Islands "
1690
+ msgstr "Острови Хърд и Макдоналд "
1691
 
1692
+ #: src/Helpers.php:142
1693
+ #, fuzzy
1694
  msgctxt "(Admin)"
1695
+ msgid "Holy See (Vatican City State) "
1696
+ msgstr "Свети Зее (щат Ватикана) "
1697
 
1698
+ #: src/Helpers.php:143
1699
+ #, fuzzy
1700
  msgctxt "(Admin)"
1701
+ msgid "Honduras "
1702
+ msgstr "Хондурас "
1703
 
1704
+ #: src/Helpers.php:144
1705
+ #, fuzzy
1706
  msgctxt "(Admin)"
1707
+ msgid "Hong Kong "
1708
+ msgstr "Хонконг "
1709
 
1710
+ #: src/Helpers.php:145
1711
+ #, fuzzy
1712
  msgctxt "(Admin)"
1713
+ msgid "India "
1714
+ msgstr "Индия "
1715
 
1716
+ #: src/Helpers.php:146
1717
+ #, fuzzy
1718
  msgctxt "(Admin)"
1719
+ msgid "Indonesia "
1720
+ msgstr "Индонезия "
1721
 
1722
+ #: src/Helpers.php:147
1723
+ #, fuzzy
1724
+ msgctxt "(Admin)"
1725
+ msgid "Iran, Islamic Republic of "
1726
+ msgstr "Иран, Ислямска република "
1727
 
1728
+ #: src/Helpers.php:148
1729
+ #, fuzzy
1730
  msgctxt "(Admin)"
1731
+ msgid "Iraq "
1732
+ msgstr "Ирак "
1733
 
1734
+ #: src/Helpers.php:149
1735
+ #, fuzzy
1736
  msgctxt "(Admin)"
1737
+ msgid "Isle of Man "
1738
+ msgstr "Манския о-в "
1739
 
1740
+ #: src/Helpers.php:150
1741
+ #, fuzzy
1742
  msgctxt "(Admin)"
1743
+ msgid "Israel "
1744
+ msgstr "Израел "
1745
 
1746
+ #: src/Helpers.php:151
1747
+ #, fuzzy
1748
  msgctxt "(Admin)"
1749
+ msgid "Jamaica "
1750
+ msgstr "Ямайка "
1751
 
1752
+ #: src/Helpers.php:152
1753
+ #, fuzzy
1754
  msgctxt "(Admin)"
1755
+ msgid "Japan "
1756
+ msgstr "Япония "
1757
 
1758
+ #: src/Helpers.php:153
1759
+ #, fuzzy
1760
  msgctxt "(Admin)"
1761
+ msgid "Jersey "
1762
+ msgstr "Джърси "
1763
 
1764
+ #: src/Helpers.php:154
1765
+ #, fuzzy
1766
  msgctxt "(Admin)"
1767
+ msgid "Jordan "
1768
+ msgstr "Йордания "
1769
 
1770
+ #: src/Helpers.php:155
1771
+ #, fuzzy
1772
  msgctxt "(Admin)"
1773
+ msgid "Kazakhstan "
1774
+ msgstr "Казахстан "
1775
 
1776
+ #: src/Helpers.php:156
1777
+ #, fuzzy
1778
  msgctxt "(Admin)"
1779
+ msgid "Kenya "
1780
+ msgstr "Кения "
1781
 
1782
+ #: src/Helpers.php:157
1783
+ #, fuzzy
1784
  msgctxt "(Admin)"
1785
+ msgid "Kiribati "
1786
+ msgstr "Кирибати "
1787
 
1788
+ #: src/Helpers.php:158
1789
+ #, fuzzy
1790
  msgctxt "(Admin)"
1791
+ msgid "Korea, Democratic Peoples Republic of "
1792
+ msgstr "Корея, Република демократични народи "
 
 
 
 
1793
 
1794
+ #: src/Helpers.php:159
1795
+ #, fuzzy
1796
+ msgctxt "(Admin)"
1797
+ msgid "Korea, Republic of "
1798
+ msgstr "Корея, Република "
1799
 
1800
+ #: src/Helpers.php:160
1801
+ #, fuzzy
1802
+ msgctxt "(Admin)"
1803
+ msgid "Kuwait "
1804
+ msgstr "Кувейт "
1805
 
1806
+ #: src/Helpers.php:161
1807
+ #, fuzzy
1808
+ msgctxt "(Admin)"
1809
+ msgid "Kyrgyzstan "
1810
+ msgstr "Киргизстан "
1811
 
1812
+ #: src/Helpers.php:162
1813
+ #, fuzzy
1814
+ msgctxt "(Admin)"
1815
+ msgid "Lao Peoples Democratic Republic "
1816
+ msgstr "Лао народи Демократична република "
1817
 
1818
+ #: src/Helpers.php:163
1819
+ #, fuzzy
1820
+ msgctxt "(Admin)"
1821
+ msgid "Lebanon "
1822
+ msgstr "Ливан "
1823
 
1824
+ #: src/Helpers.php:164
1825
+ #, fuzzy
1826
+ msgctxt "(Admin)"
1827
+ msgid "Lesotho "
1828
+ msgstr "Лесото "
1829
 
1830
+ #: src/Helpers.php:165
1831
+ #, fuzzy
1832
  msgctxt "(Admin)"
1833
+ msgid "Liberia "
1834
+ msgstr "Либерия "
1835
 
1836
+ #: src/Helpers.php:166
1837
+ #, fuzzy
1838
  msgctxt "(Admin)"
1839
+ msgid "Libya "
1840
+ msgstr "Либия "
1841
 
1842
+ #: src/Helpers.php:167
1843
+ #, fuzzy
1844
+ msgctxt "(Admin)"
1845
+ msgid "Macao "
1846
+ msgstr "Макао "
1847
 
1848
+ #: src/Helpers.php:168
1849
+ #, fuzzy
1850
+ msgctxt "(Admin)"
1851
+ msgid "Macedonia, the Former Yugoslav Republic of "
1852
+ msgstr "Македония, Бивша югославска република "
1853
 
1854
+ #: src/Helpers.php:169
1855
+ #, fuzzy
1856
+ msgctxt "(Admin)"
1857
+ msgid "Madagascar "
1858
+ msgstr "Мадагаскар "
1859
 
1860
+ #: src/Helpers.php:170
1861
+ #, fuzzy
1862
  msgctxt "(Admin)"
1863
+ msgid "Malawi "
1864
+ msgstr "Малави "
 
 
 
 
1865
 
1866
+ #: src/Helpers.php:171
1867
+ #, fuzzy
1868
+ msgctxt "(Admin)"
1869
+ msgid "Malaysia "
1870
+ msgstr "Малайзия "
1871
 
1872
+ #: src/Helpers.php:172
1873
+ #, fuzzy
1874
+ msgctxt "(Admin)"
1875
+ msgid "Maldives "
1876
+ msgstr "Малдиви "
1877
 
1878
+ #: src/Helpers.php:173
1879
+ #, fuzzy
1880
+ msgctxt "(Admin)"
1881
+ msgid "Mali "
1882
+ msgstr "Мали "
1883
 
1884
+ #: src/Helpers.php:174
1885
+ #, fuzzy
1886
+ msgctxt "(Admin)"
1887
+ msgid "Marshall Islands "
1888
+ msgstr "Маршалови острови "
1889
 
1890
+ #: src/Helpers.php:175
1891
+ #, fuzzy
1892
+ msgctxt "(Admin)"
1893
+ msgid "Martinique "
1894
+ msgstr "Мартиника "
1895
 
1896
+ #: src/Helpers.php:176
1897
+ #, fuzzy
1898
  msgctxt "(Admin)"
1899
+ msgid "Mauritania "
1900
+ msgstr "Мавритания "
1901
 
1902
+ #: src/Helpers.php:177
1903
+ #, fuzzy
1904
  msgctxt "(Admin)"
1905
+ msgid "Mauritius "
1906
+ msgstr "Мавриций "
1907
 
1908
+ #: src/Helpers.php:178
1909
+ #, fuzzy
1910
  msgctxt "(Admin)"
1911
+ msgid "Mayotte "
1912
+ msgstr "Майот "
1913
 
1914
+ #: src/Helpers.php:179
1915
+ #, fuzzy
1916
  msgctxt "(Admin)"
1917
+ msgid "Mexico "
1918
+ msgstr "Мексико "
1919
 
1920
+ #: src/Helpers.php:180
1921
+ #, fuzzy
1922
  msgctxt "(Admin)"
1923
+ msgid "Micronesia, Federated States of "
1924
+ msgstr "Микронезия, Федерирани щати на "
1925
 
1926
+ #: src/Helpers.php:181
1927
+ #, fuzzy
1928
  msgctxt "(Admin)"
1929
+ msgid "Moldova, Republic of "
1930
+ msgstr "Молдова, Република "
1931
 
1932
+ #: src/Helpers.php:182
1933
+ #, fuzzy
1934
+ msgctxt "(Admin)"
1935
+ msgid "Monaco "
1936
+ msgstr "Монако "
1937
 
1938
+ #: src/Helpers.php:183
1939
+ #, fuzzy
1940
+ msgctxt "(Admin)"
1941
+ msgid "Mongolia "
1942
+ msgstr "Монголия "
1943
 
1944
+ #: src/Helpers.php:184
1945
+ #, fuzzy
1946
+ msgctxt "(Admin)"
1947
+ msgid "Montenegro "
1948
+ msgstr "Черна гора "
 
 
1949
 
1950
+ #: src/Helpers.php:185
1951
+ #, fuzzy
1952
+ msgctxt "(Admin)"
1953
+ msgid "Montserrat "
1954
+ msgstr "Монсерат "
1955
 
1956
+ #: src/Helpers.php:186
1957
+ #, fuzzy
1958
+ msgctxt "(Admin)"
1959
+ msgid "Morocco "
1960
+ msgstr "Мароко "
1961
 
1962
+ #: src/Helpers.php:187
1963
+ #, fuzzy
1964
+ msgctxt "(Admin)"
1965
+ msgid "Mozambique "
1966
+ msgstr "Мозамбик "
1967
 
1968
+ #: src/Helpers.php:188
1969
+ #, fuzzy
1970
  msgctxt "(Admin)"
1971
+ msgid "Myanmar "
1972
+ msgstr "Мианмар "
1973
 
1974
+ #: src/Helpers.php:189
1975
+ #, fuzzy
1976
+ msgctxt "(Admin)"
1977
+ msgid "Namibia "
1978
+ msgstr "Намибия "
 
 
1979
 
1980
+ #: src/Helpers.php:190
1981
+ #, fuzzy
1982
+ msgctxt "(Admin)"
1983
+ msgid "Nauru "
1984
+ msgstr "Науру "
1985
 
1986
+ #: src/Helpers.php:191
1987
+ #, fuzzy
1988
+ msgctxt "(Admin)"
1989
+ msgid "Nepal "
1990
+ msgstr "Непал "
1991
 
1992
+ #: src/Helpers.php:192
1993
+ #, fuzzy
1994
+ msgctxt "(Admin)"
1995
+ msgid "New Caledonia "
1996
+ msgstr "Нова Каледония "
1997
 
1998
+ #: src/Helpers.php:193
1999
+ #, fuzzy
2000
+ msgctxt "(Admin)"
2001
+ msgid "New Zealand "
2002
+ msgstr "Нова Зеландия "
2003
 
2004
+ #: src/Helpers.php:194
2005
+ #, fuzzy
2006
  msgctxt "(Admin)"
2007
+ msgid "Nicaragua "
2008
+ msgstr "Никарагуа "
2009
 
2010
+ #: src/Helpers.php:195
2011
+ #, fuzzy
2012
  msgctxt "(Admin)"
2013
+ msgid "Niger "
2014
+ msgstr "Нигер "
2015
 
2016
+ #: src/Helpers.php:196
2017
+ #, fuzzy
2018
+ msgctxt "(Admin)"
2019
+ msgid "Nigeria "
2020
+ msgstr "Нигерия "
 
 
2021
 
2022
+ #: src/Helpers.php:197
2023
+ #, fuzzy
2024
+ msgctxt "(Admin)"
2025
+ msgid "Niue "
2026
+ msgstr "Ниуе "
2027
 
2028
+ #: src/Helpers.php:198
2029
+ #, fuzzy
2030
+ msgctxt "(Admin)"
2031
+ msgid "Norfolk Island "
2032
+ msgstr "Остров Норфолк "
2033
 
2034
+ #: src/Helpers.php:199
2035
+ #, fuzzy
2036
+ msgctxt "(Admin)"
2037
+ msgid "Northern Mariana Islands "
2038
+ msgstr "Северни Мариански острови "
2039
 
2040
+ #: src/Helpers.php:200
2041
+ #, fuzzy
2042
  msgctxt "(Admin)"
2043
+ msgid "Oman "
2044
+ msgstr "Оман "
2045
 
2046
+ #: src/Helpers.php:201
2047
+ #, fuzzy
2048
  msgctxt "(Admin)"
2049
+ msgid "Pakistan "
2050
+ msgstr "Пакистан "
2051
 
2052
+ #: src/Helpers.php:202
2053
+ #, fuzzy
2054
  msgctxt "(Admin)"
2055
+ msgid "Palau "
2056
+ msgstr "Палау "
2057
 
2058
+ #: src/Helpers.php:203
2059
+ #, fuzzy
2060
  msgctxt "(Admin)"
2061
+ msgid "Palestine, State of "
2062
+ msgstr "Палестина, Държава на "
2063
 
2064
+ #: src/Helpers.php:204
2065
+ #, fuzzy
2066
  msgctxt "(Admin)"
2067
+ msgid "Panama "
2068
+ msgstr "Панама "
2069
 
2070
+ #: src/Helpers.php:205
2071
+ #, fuzzy
2072
  msgctxt "(Admin)"
2073
+ msgid "Papua New Guinea "
2074
+ msgstr "Папуа Нова Гвинея "
2075
 
2076
+ #: src/Helpers.php:206
2077
+ #, fuzzy
2078
  msgctxt "(Admin)"
2079
+ msgid "Paraguay "
2080
+ msgstr "Парагвай "
2081
 
2082
+ #: src/Helpers.php:207
2083
+ #, fuzzy
2084
  msgctxt "(Admin)"
2085
+ msgid "Peru "
2086
+ msgstr "Перу "
2087
 
2088
+ #: src/Helpers.php:208
2089
+ #, fuzzy
2090
  msgctxt "(Admin)"
2091
+ msgid "Philippines "
2092
+ msgstr "Филипини "
2093
 
2094
+ #: src/Helpers.php:209
2095
+ #, fuzzy
2096
  msgctxt "(Admin)"
2097
+ msgid "Pitcairn "
2098
+ msgstr "Питкерн "
2099
 
2100
+ #: src/Helpers.php:210
2101
+ #, fuzzy
2102
  msgctxt "(Admin)"
2103
+ msgid "Puerto Rico "
2104
+ msgstr "Пуерто Рико "
2105
 
2106
+ #: src/Helpers.php:211
2107
+ #, fuzzy
2108
  msgctxt "(Admin)"
2109
+ msgid "Qatar "
2110
+ msgstr "Катар "
2111
 
2112
+ #: src/Helpers.php:212
2113
+ #, fuzzy
2114
  msgctxt "(Admin)"
2115
+ msgid "Réunion "
2116
+ msgstr "Реюнион "
2117
 
2118
+ #: src/Helpers.php:213
2119
+ #, fuzzy
2120
  msgctxt "(Admin)"
2121
+ msgid "Russian Federation "
2122
+ msgstr "Руска федерация "
2123
 
2124
+ #: src/Helpers.php:214
2125
+ #, fuzzy
2126
  msgctxt "(Admin)"
2127
+ msgid "Rwanda "
2128
+ msgstr "Руанда "
2129
 
2130
+ #: src/Helpers.php:215
2131
+ #, fuzzy
2132
  msgctxt "(Admin)"
2133
+ msgid "Saint Barthélemy "
2134
+ msgstr "Сен Бартелми "
2135
 
2136
+ #: src/Helpers.php:216
2137
+ #, fuzzy
2138
  msgctxt "(Admin)"
2139
+ msgid "Saint Helena, Ascension and Tristan da Cunha "
2140
+ msgstr "Света Елена, Асенсион и Тристан да Кунха "
2141
 
2142
+ #: src/Helpers.php:217
2143
+ #, fuzzy
2144
  msgctxt "(Admin)"
2145
+ msgid "Saint Kitts and Nevis "
2146
+ msgstr "Сейнт Китс и Невис "
2147
 
2148
+ #: src/Helpers.php:218
2149
+ #, fuzzy
2150
  msgctxt "(Admin)"
2151
+ msgid "Saint Lucia "
2152
+ msgstr "Сейнт Лусия "
2153
 
2154
+ #: src/Helpers.php:219
2155
+ #, fuzzy
2156
  msgctxt "(Admin)"
2157
+ msgid "Saint Martin (French part) "
2158
+ msgstr "Сен Мартен (френска част) "
 
2159
 
2160
+ #: src/Helpers.php:220
2161
+ #, fuzzy
2162
  msgctxt "(Admin)"
2163
+ msgid "Saint Pierre and Miquelon "
2164
+ msgstr "Сен Пиер и Микелон "
2165
 
2166
+ #: src/Helpers.php:221
2167
+ #, fuzzy
2168
  msgctxt "(Admin)"
2169
+ msgid "Saint Vincent and the Grenadines "
2170
+ msgstr "Сейнт Винсънт и Гренадини "
2171
 
2172
+ #: src/Helpers.php:222
2173
+ #, fuzzy
2174
  msgctxt "(Admin)"
2175
+ msgid "Samoa "
2176
+ msgstr "Самоа "
2177
 
2178
+ #: src/Helpers.php:223
2179
+ #, fuzzy
2180
  msgctxt "(Admin)"
2181
+ msgid "San Marino "
2182
+ msgstr "Сан Марино "
2183
 
2184
+ #: src/Helpers.php:224
2185
+ #, fuzzy
2186
  msgctxt "(Admin)"
2187
+ msgid "Sao Tome and Principe "
2188
+ msgstr "Сао Томе и Принсипи "
2189
 
2190
+ #: src/Helpers.php:225
2191
+ #, fuzzy
2192
  msgctxt "(Admin)"
2193
+ msgid "Saudi Arabia "
2194
+ msgstr "Саудитска Арабия "
2195
 
2196
+ #: src/Helpers.php:226
2197
+ #, fuzzy
2198
  msgctxt "(Admin)"
2199
+ msgid "Senegal "
2200
+ msgstr "Сенегал "
2201
 
2202
+ #: src/Helpers.php:227
2203
+ #, fuzzy
2204
  msgctxt "(Admin)"
2205
+ msgid "Serbia "
2206
+ msgstr "Сърбия "
2207
 
2208
+ #: src/Helpers.php:228
2209
+ #, fuzzy
2210
  msgctxt "(Admin)"
2211
+ msgid "Seychelles "
2212
+ msgstr "Сейшели "
2213
 
2214
+ #: src/Helpers.php:229
2215
+ #, fuzzy
2216
  msgctxt "(Admin)"
2217
+ msgid "Sierra Leone "
2218
+ msgstr "Сиера Леоне "
2219
 
2220
+ #: src/Helpers.php:230
2221
+ #, fuzzy
2222
+ msgctxt "(Admin)"
2223
+ msgid "Singapore "
2224
+ msgstr "Сингапур "
2225
 
2226
+ #: src/Helpers.php:231
2227
+ #, fuzzy
2228
+ msgctxt "(Admin)"
2229
+ msgid "Sint Maarten (Dutch part) "
2230
+ msgstr "Синт Маартен (холандска част) "
2231
 
2232
+ #: src/Helpers.php:232
2233
+ #, fuzzy
2234
+ msgctxt "(Admin)"
2235
+ msgid "Solomon Islands "
2236
+ msgstr "Соломонови острови "
2237
 
2238
+ #: src/Helpers.php:233
2239
+ #, fuzzy
2240
+ msgctxt "(Admin)"
2241
+ msgid "Somalia "
2242
+ msgstr "Сомалия "
2243
 
2244
+ #: src/Helpers.php:234
2245
+ #, fuzzy
2246
+ msgctxt "(Admin)"
2247
+ msgid "South Africa "
2248
+ msgstr "Южна Африка "
2249
 
2250
+ #: src/Helpers.php:235
2251
+ #, fuzzy
2252
+ msgctxt "(Admin)"
2253
+ msgid "South Georgia and the South Sandwich Islands "
2254
+ msgstr "Южна Грузия и Южните сандвич острови "
2255
 
2256
+ #: src/Helpers.php:236
2257
+ #, fuzzy
2258
+ msgctxt "(Admin)"
2259
+ msgid "South Sudan "
2260
+ msgstr "Южен Судан "
2261
 
2262
+ #: src/Helpers.php:237
2263
+ #, fuzzy
2264
+ msgctxt "(Admin)"
2265
+ msgid "Sri Lanka "
2266
+ msgstr "Шри Ланка "
2267
 
2268
+ #: src/Helpers.php:238
2269
+ #, fuzzy
2270
+ msgctxt "(Admin)"
2271
+ msgid "Sudan "
2272
+ msgstr "Судан "
2273
 
2274
+ #: src/Helpers.php:239
2275
+ #, fuzzy
2276
  msgctxt "(Admin)"
2277
+ msgid "Suriname "
2278
+ msgstr "Суринам "
2279
 
2280
+ #: src/Helpers.php:240
2281
+ #, fuzzy
2282
  msgctxt "(Admin)"
2283
+ msgid "Svalbard and Jan Mayen "
2284
+ msgstr "Свалбард и Ян Майен "
2285
 
2286
+ #: src/Helpers.php:241
2287
+ #, fuzzy
2288
  msgctxt "(Admin)"
2289
+ msgid "Swaziland "
2290
+ msgstr "Свазиленд "
 
 
2291
 
2292
+ #: src/Helpers.php:242
2293
+ #, fuzzy
2294
  msgctxt "(Admin)"
2295
+ msgid "Syrian Arab Republic "
2296
+ msgstr "Сирийска арабска република "
2297
 
2298
+ #: src/Helpers.php:243
2299
+ #, fuzzy
2300
  msgctxt "(Admin)"
2301
+ msgid "Taiwan "
2302
+ msgstr "Тайван "
2303
 
2304
+ #: src/Helpers.php:244
2305
+ #, fuzzy
2306
  msgctxt "(Admin)"
2307
+ msgid "Tajikistan "
2308
+ msgstr "Таджикистан "
2309
 
2310
+ #: src/Helpers.php:245
2311
+ #, fuzzy
2312
  msgctxt "(Admin)"
2313
+ msgid "Tanzania, United Republic of "
2314
+ msgstr "Танзания, Обединена република "
 
 
 
 
 
 
 
2315
 
2316
+ #: src/Helpers.php:246
2317
+ #, fuzzy
2318
  msgctxt "(Admin)"
2319
+ msgid "Thailand "
2320
+ msgstr "Тайланд "
2321
 
2322
+ #: src/Helpers.php:247
2323
+ #, fuzzy
2324
  msgctxt "(Admin)"
2325
+ msgid "Timor-Leste "
2326
+ msgstr "Тимор-Лесте "
2327
 
2328
+ #: src/Helpers.php:248
2329
+ #, fuzzy
2330
  msgctxt "(Admin)"
2331
+ msgid "Togo "
2332
+ msgstr "Того "
2333
 
2334
+ #: src/Helpers.php:249
2335
+ #, fuzzy
2336
  msgctxt "(Admin)"
2337
+ msgid "Tokelau "
2338
+ msgstr "Токелау "
2339
 
2340
+ #: src/Helpers.php:250
2341
+ #, fuzzy
2342
  msgctxt "(Admin)"
2343
+ msgid "Tonga "
2344
+ msgstr "Тонга "
 
 
 
 
2345
 
2346
+ #: src/Helpers.php:251
2347
+ #, fuzzy
2348
  msgctxt "(Admin)"
2349
+ msgid "Trinidad and Tobago "
2350
+ msgstr "Тринидад и Тобаго "
 
 
 
 
2351
 
2352
+ #: src/Helpers.php:252
2353
+ #, fuzzy
2354
  msgctxt "(Admin)"
2355
+ msgid "Tunisia "
2356
+ msgstr "Тунис "
2357
 
2358
+ #: src/Helpers.php:253
2359
+ #, fuzzy
2360
  msgctxt "(Admin)"
2361
+ msgid "Turkey "
2362
+ msgstr "Турция "
2363
 
2364
+ #: src/Helpers.php:254
2365
+ #, fuzzy
2366
  msgctxt "(Admin)"
2367
+ msgid "Turkmenistan "
2368
+ msgstr "Туркменистан "
2369
 
2370
+ #: src/Helpers.php:255
2371
+ #, fuzzy
2372
  msgctxt "(Admin)"
2373
+ msgid "Turks and Caicos Islands "
2374
+ msgstr "Острови Търкс и Кайкос "
 
 
2375
 
2376
+ #: src/Helpers.php:256
2377
+ #, fuzzy
2378
  msgctxt "(Admin)"
2379
+ msgid "Tuvalu "
2380
+ msgstr "Тувалу "
2381
 
2382
+ #: src/Helpers.php:257
2383
+ #, fuzzy
2384
  msgctxt "(Admin)"
2385
+ msgid "Uganda "
2386
+ msgstr "Уганда "
 
 
 
 
2387
 
2388
+ #: src/Helpers.php:258
2389
+ #, fuzzy
2390
  msgctxt "(Admin)"
2391
+ msgid "Ukraine "
2392
+ msgstr "Украйна "
2393
 
2394
+ #: src/Helpers.php:259
2395
+ #, fuzzy
2396
  msgctxt "(Admin)"
2397
+ msgid "United Arab Emirates "
2398
+ msgstr "Обединени арабски емирства "
 
 
 
 
 
 
 
 
 
 
2399
 
2400
+ #: src/Helpers.php:260
2401
+ #, fuzzy
2402
  msgctxt "(Admin)"
2403
+ msgid "United States Minor Outlying Islands "
2404
+ msgstr "Малки далечни острови на Съединените Американски Щати "
 
 
 
 
2405
 
2406
+ #: src/Helpers.php:261
2407
+ #, fuzzy
2408
  msgctxt "(Admin)"
2409
+ msgid "Uruguay "
2410
+ msgstr "Уругвай "
 
2411
 
2412
+ #: src/Helpers.php:262
2413
+ #, fuzzy
2414
  msgctxt "(Admin)"
2415
+ msgid "Uzbekistan "
2416
+ msgstr "Узбекистан "
 
 
 
 
2417
 
2418
+ #: src/Helpers.php:263
2419
+ #, fuzzy
2420
  msgctxt "(Admin)"
2421
+ msgid "Vanuatu "
2422
+ msgstr "Вануату "
2423
 
2424
+ #: src/Helpers.php:264
2425
+ #, fuzzy
2426
  msgctxt "(Admin)"
2427
+ msgid "Venezuela, Bolivarian Republic of "
2428
+ msgstr "Венецуела, Боливарска република "
2429
 
2430
+ #: src/Helpers.php:265
2431
+ #, fuzzy
2432
  msgctxt "(Admin)"
2433
+ msgid "Viet Nam "
2434
+ msgstr "Виетнам "
2435
 
2436
+ #: src/Helpers.php:266
2437
+ #, fuzzy
2438
+ msgctxt "(Admin)"
2439
+ msgid "Virgin Islands, British "
2440
+ msgstr "Вирджински острови, Британски "
2441
 
2442
+ #: src/Helpers.php:267
2443
+ #, fuzzy
2444
+ msgctxt "(Admin)"
2445
+ msgid "Virgin Islands, U.S. "
2446
+ msgstr "Вирджински острови, САЩ "
 
2447
 
2448
+ #: src/Helpers.php:268
2449
+ #, fuzzy
2450
+ msgctxt "(Admin)"
2451
+ msgid "Wallis and Futuna "
2452
+ msgstr "Уолис и Футуна "
2453
 
2454
+ #: src/Helpers.php:269
2455
+ #, fuzzy
2456
+ msgctxt "(Admin)"
2457
+ msgid "Western Sahara "
2458
+ msgstr "Западна Сахара "
2459
 
2460
+ #: src/Helpers.php:270
2461
+ #, fuzzy
2462
  msgctxt "(Admin)"
2463
+ msgid "Yemen "
2464
+ msgstr "Йемен "
2465
 
2466
+ #: src/Helpers.php:271
2467
+ #, fuzzy
2468
  msgctxt "(Admin)"
2469
+ msgid "Zambia "
2470
+ msgstr "Замбия "
2471
 
2472
+ #: src/Helpers.php:272
2473
+ #, fuzzy
2474
  msgctxt "(Admin)"
2475
+ msgid "Zimbabwe "
2476
+ msgstr "Зимбабве "
2477
 
2478
+ #: src/Helpers.php:287
2479
  msgctxt "(Admin)"
2480
+ msgid "Iceland"
2481
+ msgstr "Исландия"
2482
 
2483
+ #: src/Helpers.php:288
2484
+ msgctxt "(Admin)"
2485
+ msgid "Norway"
2486
+ msgstr "Норвегия"
2487
+
2488
+ #: src/Helpers.php:289
2489
+ msgctxt "(Admin)"
2490
+ msgid "Liechtenstein"
2491
+ msgstr "Лихтенщайн"
2492
+
2493
+ #: src/Helpers.php:290
2494
+ msgctxt "(Admin)"
2495
+ msgid "Switzerland"
2496
+ msgstr "Швейцария"
2497
+
2498
+ #: src/Helpers.php:291
2499
+ msgctxt "(Admin)"
2500
+ msgid "United States"
2501
+ msgstr "САЩ"
2502
 
2503
+ #: src/Helpers.php:377
2504
+ msgid "An error has occurred. Please contact the site administrator."
2505
+ msgstr "Възникна грешка. Моля, свържете се с администратора на сайта."
2506
+
2507
+ #: src/Installer/Installer.php:146
2508
+ msgctxt "(Admin)"
2509
+ msgid "Setup Wizard"
2510
+ msgstr "Съветник за настройките"
2511
+
2512
+ #: src/Installer/Steps/ConfigurationPages.php:23
2513
+ #: src/Installer/Steps/ConfigurationPages.php:33
2514
+ #: src/Installer/Steps/PolicySettings.php:23
2515
+ #: src/Installer/Steps/PolicySettings.php:48
2516
+ #, fuzzy
2517
+ #| msgctxt "(Admin)"
2518
+ #| msgid "&mdash; Create a new page &mdash;"
2519
+ msgctxt "(Admin)"
2520
+ msgid "&mdash; Create a new page &mdash;"
2521
+ msgstr "&mdash; Създайте нова страница &mdash;"
2522
+
2523
+ #: src/Installer/Steps/PolicySettings.php:38
2524
+ #, fuzzy
2525
+ #| msgctxt "(Admin)"
2526
+ #| msgid ""
2527
+ #| "We have automatically selected your WooCommerce Terms & Conditions page."
2528
  msgctxt "(Admin)"
2529
  msgid ""
2530
+ "We have automatically selected your WooCommerce Terms & Conditions page."
 
2531
  msgstr ""
2532
+ "Ние автоматично сме избрали Вашата Условия за Условия за търговия на "
2533
+ "WooCommerce."
 
2534
 
2535
+ #: src/Modules/ContactForm7/ContactForm7.php:35
2536
+ #, fuzzy
2537
+ #| msgctxt "(Admin)"
2538
+ #| msgid "gdpr terms txt"
2539
  msgctxt "(Admin)"
2540
+ msgid "gdpr terms txt"
2541
+ msgstr "gdpr термини txt"
2542
+
2543
+ #: src/Modules/ContactForm7/Flamingo.php:23
2544
+ #: views/modules/contact-form-7/form-privacy-tab.php:1
2545
+ msgid "Privacy"
2546
+ msgstr "Поверителност"
2547
+
2548
+ #: src/Modules/ContactForm7/Flamingo.php:67
2549
+ #, fuzzy
2550
+ msgid "Form submissions: "
2551
+ msgstr "Подаване на формуляр: "
2552
+
2553
+ #: src/Modules/ContactForm7/Flamingo.php:162
2554
+ #, fuzzy
2555
+ #| msgctxt "(Admin)"
2556
+ #| msgid "Do you want form to be GDPR compliance."
2557
+ msgctxt "(Admin)"
2558
+ msgid "Do you want form to be GDPR compliance."
2559
+ msgstr "Искате ли формата да бъде съответствие с GDPR."
2560
+
2561
+ #: src/Modules/ContactForm7/Flamingo.php:163
2562
+ #, fuzzy
2563
+ #| msgctxt "(Admin)"
2564
+ #| msgid ""
2565
+ #| "You have installed flamingo, To make this GDPR compliance in individual "
2566
+ #| "contact form's privacy tab check the checkbox for include data to be "
2567
+ #| "search on Privacy tool."
2568
+ msgctxt "(Admin)"
2569
+ msgid ""
2570
+ "You have installed flamingo, To make this GDPR compliance in individual "
2571
+ "contact form's privacy tab check the checkbox for include data to be search "
2572
+ "on Privacy tool."
2573
+ msgstr ""
2574
+ "Имате инсталиран фламинго. За да направите това съответствие с GDPR в "
2575
+ "раздела за поверителност на отделната форма за контакти, поставете отметка в "
2576
+ "квадратчето за отметка, за да включите данни за търсене в инструмента за "
2577
+ "поверителност."
2578
+
2579
+ #: src/Modules/EddGdpr/EddGdpr.php:47
2580
+ #, fuzzy
2581
+ #| msgctxt "(Admin)"
2582
+ #| msgid "Company information"
2583
+ msgid "EDD Customer Information"
2584
+ msgstr "Информация за Фирмата"
2585
+
2586
+ #: src/Modules/EddGdpr/EddGdpr.php:56
2587
+ #, fuzzy
2588
+ msgid "EDD Order Information"
2589
+ msgstr "Информация за поръчките на EDD"
2590
+
2591
+ #: src/Modules/EddGdpr/EddGdpr.php:65
2592
+ #, fuzzy
2593
+ msgid "EDD File Downloads"
2594
+ msgstr "Изтегляния на EDD файлове"
2595
+
2596
+ #: src/Modules/EddGdpr/EddGdpr.php:74
2597
+ #, fuzzy
2598
+ msgid "EDD API Access Logs"
2599
+ msgstr "Регистрационни файлове за достъп до EDD API"
2600
+
2601
+ #: src/Modules/NewsletterGdpr/NewsletterGdpr.php:79
2602
+ #, fuzzy
2603
+ msgid "Newsletter Form submissions: "
2604
+ msgstr "Бюлетин Формуляр подавания: "
2605
+
2606
+ #: src/Modules/WooCommerceGdpr/WooCommerceGdpr.php:46
2607
+ msgid "Customer Information"
2608
+ msgstr "Информация за клиента"
2609
+
2610
+ #: src/Modules/WooCommerceGdpr/WooCommerceGdpr.php:53
2611
+ msgid "Order Information"
2612
+ msgstr "Информация за поръчка"
2613
 
2614
+ #: src/Modules/WooCommerceGdpr/WooCommerceGdpr.php:162
2615
  msgid "Please acknowledge the Privacy Policy"
2616
  msgstr "Моля, потвърдете Декларацията за поверителност"
2617
 
2618
+ #: src/Modules/WooCommerceGdpr/WooCommerceGdpr.php:177
2619
+ #, fuzzy
2620
+ #| msgctxt "(Admin)"
2621
+ #| msgid "Your Privacy Policy has been generated."
2622
+ msgid "Privacy Policy consent is required!"
2623
+ msgstr "Политиката за Лични данни беше генерирана."
2624
+
2625
+ #: src/Router.php:80 src/Router.php:92 src/Router.php:125 src/Router.php:141
2626
+ #, php-format
2627
+ msgid "Nonce error for action \"%s\". Please go back and try again!"
2628
+ msgstr "Nonce error for action \"%s\". Please go back and try again!"
2629
+
2630
+ #: src/Router.php:149
2631
+ #, fuzzy
2632
+ #| msgctxt "(Admin)"
2633
+ #| msgid "You do not have the required permissions to perform this action!"
2634
  msgctxt "(Admin)"
2635
+ msgid "You do not have the required permissions to perform this action!"
2636
+ msgstr "Нямате необходимите разрешения за изпълнение на това действие!"
2637
+
2638
+ #: views/admin/consent.php:3
2639
+ #, fuzzy
2640
+ #| msgctxt "(Admin)"
2641
+ #| msgid "Default consent types"
2642
+ msgctxt "(Admin)"
2643
+ msgid "Default consent types"
2644
+ msgstr "Стандартни типове съгласие"
2645
 
2646
+ #: views/admin/consent.php:4
2647
+ #, fuzzy
2648
+ #| msgctxt "(Admin)"
2649
+ #| msgid ""
2650
+ #| "These are the consent types that have been automatically registered by "
2651
+ #| "the framework or a plugin."
2652
  msgctxt "(Admin)"
2653
  msgid ""
2654
+ "These are the consent types that have been automatically registered by the "
2655
+ "framework or a plugin."
2656
  msgstr ""
2657
+ "Това са типовете съгласие, които са били автоматично регистрирани от рамката "
2658
+ "или приставката."
2659
 
2660
+ #: views/admin/consent.php:7 views/admin/consent.php:53
2661
  msgctxt "(Admin)"
2662
+ msgid "Slug"
2663
+ msgstr "Slug"
2664
 
2665
+ #: views/admin/consent.php:8 views/admin/consent.php:38
2666
+ #: views/admin/consent.php:61
2667
  msgctxt "(Admin)"
2668
+ msgid "Title"
2669
+ msgstr "Заглавие"
2670
 
2671
+ #: views/admin/consent.php:9 views/admin/consent.php:41
2672
+ #: views/admin/consent.php:64
2673
  msgctxt "(Admin)"
2674
+ msgid "Description"
2675
+ msgstr "Описание"
2676
 
2677
+ #: views/admin/consent.php:10
2678
  msgctxt "(Admin)"
2679
+ msgid "Visibility"
2680
+ msgstr "Видимост"
2681
 
2682
+ #: views/admin/consent.php:18
2683
  msgctxt "(Admin)"
2684
+ msgid "Visible"
2685
+ msgstr "Видимо"
2686
 
2687
+ #: views/admin/consent.php:20
2688
  msgctxt "(Admin)"
2689
+ msgid "Hidden"
2690
+ msgstr "Скрит"
 
2691
 
2692
+ #: views/admin/consent.php:29
2693
+ #, fuzzy
2694
+ #| msgctxt "(Admin)"
2695
+ #| msgid "Custom consent types"
2696
  msgctxt "(Admin)"
2697
+ msgid "Custom consent types"
2698
+ msgstr "Типове персонализирано съгласие"
2699
 
2700
+ #: views/admin/consent.php:30
2701
+ #, fuzzy
2702
+ #| msgctxt "(Admin)"
2703
+ #| msgid ""
2704
+ #| "Here you can add custom consent types to track. They will not be used "
2705
+ #| "anywhere by default - you will need to build an integration for each of "
2706
+ #| "them."
2707
  msgctxt "(Admin)"
2708
+ msgid ""
2709
+ "Here you can add custom consent types to track. They will not be used "
2710
+ "anywhere by default - you will need to build an integration for each of them."
2711
+ msgstr ""
2712
+ "Тук можете да добавяте персонализирани типове съгласие за проследяване. Те "
2713
+ "няма да бъдат използвани никъде по подразбиране - ще трябва да изградите "
2714
+ "интеграция за всеки от тях."
2715
 
2716
+ #: views/admin/consent.php:35
2717
+ #, fuzzy
2718
+ #| msgctxt "(Admin)"
2719
+ #| msgid "Machine-readable slug"
2720
  msgctxt "(Admin)"
2721
+ msgid "Machine-readable slug"
2722
+ msgstr "Машинно четене"
2723
 
2724
+ #: views/admin/consent.php:44 views/admin/consent.php:69
2725
+ #, fuzzy
2726
+ #| msgctxt "(Admin)"
2727
+ #| msgid "Visible?"
2728
  msgctxt "(Admin)"
2729
+ msgid "Visible?"
2730
+ msgstr "Видим?"
 
2731
 
2732
+ #: views/admin/consent.php:73
2733
  msgctxt "(Admin)"
2734
+ msgid "Remove"
2735
+ msgstr "Премахни"
 
 
2736
 
2737
+ #: views/admin/consent.php:79
2738
+ #, fuzzy
2739
+ #| msgctxt "(Admin)"
2740
+ #| msgid "Show Consent types"
2741
  msgctxt "(Admin)"
2742
+ msgid "Show Consent types"
2743
+ msgstr "Показване на типовете съгласия"
 
2744
 
2745
+ #: views/admin/consent.php:80
2746
+ #, fuzzy
2747
+ #| msgctxt "(Admin)"
2748
+ #| msgid "Add consent type"
2749
  msgctxt "(Admin)"
2750
+ msgid "Add consent type"
2751
+ msgstr "Добавете тип съгласие"
 
 
 
 
2752
 
2753
+ #: views/admin/consent.php:81
2754
+ #, fuzzy
2755
+ #| msgctxt "(Admin)"
2756
+ #| msgid "Hide consent types"
2757
  msgctxt "(Admin)"
2758
+ msgid "Hide consent types"
2759
+ msgstr "Скриване на типовете съгласие"
2760
 
2761
+ #: views/admin/consent.php:95
2762
+ #, fuzzy
2763
+ #| msgctxt "(Admin)"
2764
+ #| msgid "Additional info"
2765
  msgctxt "(Admin)"
2766
+ msgid "Additional info"
2767
+ msgstr "ПОВЕЧЕ ИНФОРМАЦИЯ"
2768
 
2769
+ #: views/admin/consent.php:97
2770
+ #, fuzzy
2771
+ #| msgctxt "(Admin)"
2772
+ #| msgid ""
2773
+ #| "This text will be displayed to your data subjects on the Privacy Tools "
2774
+ #| "page."
2775
  msgctxt "(Admin)"
2776
+ msgid ""
2777
+ "This text will be displayed to your data subjects on the Privacy Tools page."
2778
  msgstr ""
2779
+ "Този текст ще се покаже на субектите Ви на данни на страницата Инструменти "
2780
+ "за поверителност."
2781
 
2782
+ #: views/admin/consent/enable-consent-until.php:11
2783
  msgctxt "(Admin)"
2784
+ msgid " "
2785
+ msgstr " "
2786
 
2787
+ #: views/admin/data-subjects/search-form.php:2
2788
+ #, fuzzy
2789
+ #| msgctxt "(Admin)"
2790
+ #| msgid ""
2791
+ #| "On this page, you can find which data subjects personal data you are "
2792
+ #| "storing and download, export or delete it."
2793
  msgctxt "(Admin)"
2794
+ msgid ""
2795
+ "On this page, you can find which data subjects personal data you are storing "
2796
+ "and download, export or delete it."
2797
+ msgstr ""
2798
+ "На тази страница можете да намерите кои данни за лични данни съхранявате и "
2799
+ "изтегляте, експортирате или изтривате."
2800
 
2801
+ #: views/admin/data-subjects/search-form.php:10
2802
+ #, fuzzy
2803
+ #| msgctxt "(Admin)"
2804
+ #| msgid "Find data subject by email"
2805
+ msgctxt "(Admin)"
2806
+ msgid "Find data subject by email"
2807
+ msgstr "Намери данни по Email"
2808
+
2809
+ #: views/admin/data-subjects/search-form.php:11
2810
+ msgctxt "(Admin)"
2811
+ msgid "Email address"
2812
+ msgstr "Email адрес"
2813
+
2814
+ #: views/admin/data-subjects/search-form.php:16
2815
+ msgctxt "(Admin)"
2816
+ msgid "Search"
2817
+ msgstr "Търсене"
2818
+
2819
+ #: views/admin/data-subjects/search-results.php:7
2820
+ msgctxt "(Admin)"
2821
+ msgid "Username"
2822
+ msgstr "Потребителско име"
2823
+
2824
+ #: views/admin/data-subjects/search-results.php:13
2825
+ #, fuzzy
2826
+ #| msgctxt "(Admin)"
2827
+ #| msgid "No data found!"
2828
+ msgctxt "(Admin)"
2829
+ msgid "Data found."
2830
+ msgstr "Нищо не е намерено"
2831
+
2832
+ #: views/admin/data-subjects/search-results.php:14
2833
+ #, fuzzy
2834
+ #| msgctxt "(Admin)"
2835
+ #| msgid "is not a registered user."
2836
+ msgctxt "(Admin)"
2837
+ msgid "is not a registered user."
2838
+ msgstr "не е регистриран потребител."
2839
+
2840
+ #: views/admin/data-subjects/search-results.php:21
2841
+ #, fuzzy
2842
+ #| msgctxt "(Admin)"
2843
+ #| msgid "Download data (html)"
2844
+ msgctxt "(Admin)"
2845
+ msgid "Download data (html)"
2846
+ msgstr "Свали данните (html) формат"
2847
+
2848
+ #: views/admin/data-subjects/search-results.php:22
2849
+ #, fuzzy
2850
+ #| msgctxt "(Admin)"
2851
+ #| msgid "Export data (json)"
2852
+ msgctxt "(Admin)"
2853
+ msgid "Export data (json)"
2854
+ msgstr "Свали данните (json) формат"
2855
+
2856
+ #: views/admin/data-subjects/search-results.php:26
2857
+ #, fuzzy
2858
+ #| msgctxt "(Admin)"
2859
+ #| msgid ""
2860
+ #| "This user has admin capabilities. Deleting data via this interface is "
2861
+ #| "disabled."
2862
+ msgctxt "(Admin)"
2863
+ msgid ""
2864
+ "This user has admin capabilities. Deleting data via this interface is "
2865
+ "disabled."
2866
+ msgstr ""
2867
+ "Този потребител има администраторски възможности. Изтриването на данни през "
2868
+ "този интерфейс е деактивирано."
2869
+
2870
+ #: views/admin/data-subjects/search-results.php:29
2871
+ #, fuzzy
2872
+ #| msgctxt "(Admin)"
2873
+ #| msgid "Anonymize data"
2874
+ msgctxt "(Admin)"
2875
+ msgid "Anonymize data"
2876
+ msgstr "Анонимни данни"
2877
+
2878
+ #: views/admin/data-subjects/search-results.php:30
2879
+ #, fuzzy
2880
+ #| msgctxt "(Admin)"
2881
+ #| msgid "Delete data"
2882
+ msgctxt "(Admin)"
2883
+ msgid "Delete data"
2884
+ msgstr "Изтрий данните"
2885
+
2886
+ #: views/admin/data-subjects/search-results.php:34
2887
+ msgctxt "(Admin)"
2888
+ msgid "No data found!"
2889
+ msgstr "Открихме данни за този потребител, но някои от тях не бяха изтрити."
2890
+
2891
+ #: views/admin/data-subjects/search-results.php:41
2892
+ #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:4
2893
+ #, fuzzy
2894
+ #| msgctxt "(Admin)"
2895
+ #| msgid "Consents given"
2896
+ msgctxt "(Admin)"
2897
+ msgid "Consents given"
2898
+ msgstr "Дадени съгласия"
2899
+
2900
+ #: views/admin/data-subjects/search-results.php:54
2901
+ #, fuzzy
2902
+ #| msgctxt "(Admin)"
2903
+ #| msgid "No consents given"
2904
+ msgctxt "(Admin)"
2905
+ msgid "No consents given!"
2906
+ msgstr "Няма дадени съгласия"
2907
+
2908
+ #: views/admin/general/custom-policy-url.php:6
2909
+ #, fuzzy
2910
+ #| msgctxt "(Admin)"
2911
+ #| msgid "Leave blank if privacy policy page already selected"
2912
+ msgctxt "(Admin)"
2913
+ msgid "Leave blank if privacy policy page already selected"
2914
+ msgstr ""
2915
+ "Оставете празно, ако страницата за Декларация за поверителност вече е избрана"
2916
+
2917
+ #: views/admin/general/custom-terms-url.php:6
2918
+ #, fuzzy
2919
+ #| msgctxt "(Admin)"
2920
+ #| msgid "Leave blank if privacy policy page already selected"
2921
+ msgctxt "(Admin)"
2922
+ msgid "Leave blank if terms and condition page already selected"
2923
+ msgstr ""
2924
+ "Оставете празно, ако страницата за Декларация за поверителност вече е избрана"
2925
+
2926
+ #: views/admin/general/custom-tools-url.php:6
2927
+ #, fuzzy
2928
+ #| msgctxt "(Admin)"
2929
+ #| msgid "Leave blank if privacy policy page already selected"
2930
+ msgctxt "(Admin)"
2931
+ msgid "Leave blank if privacy tools page already selected"
2932
+ msgstr ""
2933
+ "Оставете празно, ако страницата за Декларация за поверителност вече е избрана"
2934
+
2935
+ #: views/admin/general/delete-action-email.php:5
2936
+ #: views/admin/general/export-action-email.php:5
2937
+ #: views/installer/steps/configuration-settings.php:29
2938
+ #: views/installer/steps/configuration-settings.php:79
2939
+ msgid "Email address"
2940
+ msgstr "Email адрес"
2941
+
2942
+ #: views/admin/general/delete-action-reassign.php:3
2943
+ #: views/installer/steps/configuration-settings.php:50
2944
+ #, fuzzy
2945
+ #| msgctxt "(Admin)"
2946
+ #| msgid "Delete content"
2947
+ msgctxt "(Admin)"
2948
+ msgid "Delete content"
2949
+ msgstr "Изтриване на съдържание"
2950
+
2951
+ #: views/admin/general/delete-action-reassign.php:6
2952
+ #: views/installer/steps/configuration-settings.php:53
2953
+ #, fuzzy
2954
+ #| msgctxt "(Admin)"
2955
+ #| msgid "Reassign content to a user"
2956
+ msgctxt "(Admin)"
2957
+ msgid "Reassign content to a user"
2958
+ msgstr "Преназначаване съдържание на потребител"
2959
+
2960
+ #: views/admin/general/delete-action-reassign.php:10
2961
+ #, fuzzy
2962
+ #| msgctxt "(Admin)"
2963
+ #| msgid ""
2964
+ #| "If the user has submitted any content on your site, should it be deleted "
2965
+ #| "or reassigned to another user?"
2966
+ msgctxt "(Admin)"
2967
+ msgid ""
2968
+ "If the user has submitted any content on your site, should it be deleted or "
2969
+ "reassigned to another user?"
2970
+ msgstr ""
2971
+ "Ако потребителят е изпратил съдържание на сайта Ви, трябва ли да бъде изтрит "
2972
+ "или превъзложен на друг потребител?"
2973
+
2974
+ #: views/admin/general/description-data-page.php:2
2975
+ #, fuzzy
2976
+ #| msgctxt "(Admin)"
2977
+ #| msgid ""
2978
+ #| "Select the page where users can go to control their data. This page must "
2979
+ #| "contain the [gdpr_privacy_tools] shortcode."
2980
+ msgctxt "(Admin)"
2981
+ msgid ""
2982
+ "Select the page where users can go to control their data. This page must "
2983
+ "contain the [gdpr_privacy_tools] shortcode."
2984
+ msgstr ""
2985
+ "Изберете страницата, на която потребителите могат да отидат да контролират "
2986
+ "данните си. Тази страница трябва да съдържа този код [gdpr_privacy_tools]"
2987
+
2988
+ #: views/admin/general/description-delete-action.php:2
2989
+ msgctxt "(Admin)"
2990
+ msgid "What should happen if a data subject requests deleting their data."
2991
+ msgstr ""
2992
+ "Какво трябва да се случи, ако субектът на данни поиска да изтрие техните "
2993
+ "данни."
2994
+
2995
+ #: views/admin/general/description-export-action.php:2
2996
+ msgctxt "(Admin)"
2997
+ msgid ""
2998
+ "What should happen if a data subject requests viewing or exporting their "
2999
+ "data."
3000
+ msgstr ""
3001
+ "Какво трябва да се случи, ако субектът на данни поиска да прегледа или "
3002
+ "експортира своите данни."
3003
+
3004
+ #: views/admin/general/description-position-action.php:2
3005
+ msgctxt "(Admin)"
3006
+ msgid "Select position of the Popup"
3007
+ msgstr "Изберете позицията на изскачащия прозорец"
3008
+
3009
+ #: views/admin/general/description-terms-page.php:2
3010
+ msgctxt "(Admin)"
3011
+ msgid "Optional. Select the page which contains your Terms & Conditions"
3012
+ msgstr ""
3013
+ "Не е задължително. Изберете страницата, която съдържа вашите Общи условия"
3014
+
3015
+ #: views/admin/general/description-theme-action.php:2
3016
+ msgctxt "(Admin)"
3017
+ msgid "Select theme of the Popup"
3018
+ msgstr "Изберете тема на изскачащия прозорец"
3019
+
3020
+ #: views/admin/general/disble-checkbox.php:9
3021
+ #, fuzzy
3022
+ msgctxt "(Admin)"
3023
+ msgid "."
3024
+ msgstr "."
3025
+
3026
+ #: views/admin/general/edd-compatibility.php:9
3027
+ #, fuzzy
3028
+ #| msgctxt "(Admin)"
3029
+ #| msgid "Enable EDD data on GDPR tool."
3030
+ msgctxt "(Admin)"
3031
+ msgid "Enable EDD data on GDPR tool."
3032
+ msgstr "Активиране на EDD данни за инструмента GDPR."
3033
+
3034
+ #: views/admin/general/edd-compatibility.php:12
3035
+ #, fuzzy
3036
+ #| msgctxt "(Admin)"
3037
+ #| msgid "Will work for EDD Version 2.0.0 or later."
3038
+ msgctxt "(Admin)"
3039
+ msgid "Will work for EDD Version 2.0.0 or later."
3040
+ msgstr "Ще работи за EDD версия 2.0.0 или по-нова."
3041
+
3042
+ #: views/admin/general/enable-policy-popup.php:9
3043
+ #, fuzzy
3044
+ #| msgctxt "(Admin)"
3045
+ #| msgid "Enable Policy Link On Popup"
3046
+ msgctxt "(Admin)"
3047
+ msgid "Enable Policy Link On Popup"
3048
+ msgstr "Активиране на връзката по правилата при изскачащи прозорци"
3049
+
3050
+ #: views/admin/general/enable-popup.php:12
3051
+ #, fuzzy
3052
+ #| msgctxt "(Admin)"
3053
+ #| msgid ""
3054
+ #| "<b>Note:</b> Need to add custom content <b>gdpr_cookie_consent</b> its "
3055
+ #| "accepted on popup accept button."
3056
+ msgctxt "(Admin)"
3057
+ msgid ""
3058
+ "<b>Note:</b> Need to add custom content <b>gdpr_cookie_consent</b> its "
3059
+ "accepted on popup accept button."
3060
+ msgstr ""
3061
+ "<b> Забележка: </b> Необходимо е да добавите персонализирано съдържание <b> "
3062
+ "gdpr_cookie_consent </b> неговия приет в изскачащ прозорец бутон за приемане."
3063
+
3064
+ #: views/admin/general/enable-tac.php:9
3065
+ #, fuzzy
3066
+ #| msgctxt "(Admin)"
3067
+ #| msgid "Enable the term and condition page."
3068
+ msgctxt "(Admin)"
3069
+ msgid "Enable the term and condition page."
3070
+ msgstr "Активирайте страницата за термини и условия."
3071
+
3072
+ #: views/admin/general/enable.php:9
3073
+ #, fuzzy
3074
+ #| msgctxt "(Admin)"
3075
+ #| msgid ""
3076
+ #| "Enable the view, export and forget functionality for users and visitors"
3077
+ msgctxt "(Admin)"
3078
+ msgid "Enable the view, export and forget functionality for users and visitors"
3079
+ msgstr ""
3080
+ "Активирайте изгледа, експортирайте и забравете функционалността на "
3081
+ "потребителите и посетителите"
3082
+
3083
+ #: views/admin/general/enable.php:12
3084
+ #, fuzzy
3085
+ #| msgctxt "(Admin)"
3086
+ #| msgid ""
3087
+ #| "Enable the Privacy Tools page on front-end and dashboard. This allows "
3088
+ #| "visitors to request viewing and deleting their personal data and withdraw "
3089
+ #| "consents."
3090
+ msgctxt "(Admin)"
3091
+ msgid ""
3092
+ "Enable the Privacy Tools page on front-end and dashboard. This allows "
3093
+ "visitors to request viewing and deleting their personal data and withdraw "
3094
+ "consents."
3095
+ msgstr ""
3096
+ "Активирайте страницата Инструменти за поверителност на предния и на таблото "
3097
+ "за управление. Това позволява на посетителите да изискват преглеждането и "
3098
+ "изтриването на личните им данни и да оттеглят съгласието си."
3099
+
3100
+ #: views/admin/general/enable_popup_allow_content.php:3
3101
+ msgctxt "gdpr-framework"
3102
+ msgid "Accept"
3103
+ msgstr "приемам"
3104
+
3105
+ #: views/admin/general/enable_popup_content.php:5
3106
+ msgctxt "gdpr-framework"
3107
+ msgid ""
3108
+ "This website uses cookies to ensure you get the best experience on our "
3109
+ "website."
3110
+ msgstr ""
3111
+ "Този уебсайт използва \"бисквитки\", за да гарантирате, че получавате най-"
3112
+ "доброто изживяване на нашия уебсайт."
3113
+
3114
+ #: views/admin/general/enable_popup_dismiss_content.php:3
3115
+ msgctxt "gdpr-framework"
3116
+ msgid "Decline"
3117
+ msgstr "упадък"
3118
+
3119
+ #: views/admin/general/enable_popup_header.php:7
3120
+ #, fuzzy
3121
+ #| msgid "Leave blank if don't want header to get display."
3122
+ msgctxt "(Admin)"
3123
+ msgid "Leave blank if you don't want a header to get displayed."
3124
+ msgstr "Оставете празно, ако не искате заглавката да се покаже."
3125
+
3126
+ #: views/admin/general/enable_popup_learnmore_content.php:3
3127
+ msgctxt "gdpr-framework"
3128
+ msgid "Learn more"
3129
+ msgstr "Научете повече"
3130
+
3131
+ #: views/admin/general/popup_link_target.php:3
3132
+ msgctxt "(Admin)"
3133
+ msgid "Next Tab"
3134
+ msgstr "Следващ раздел"
3135
+
3136
+ #: views/admin/general/popup_link_target.php:6
3137
+ msgctxt "(Admin)"
3138
  msgid "Self"
3139
+ msgstr "Себе си"
3140
+
3141
+ #: views/admin/general/stylesheet.php:9
3142
+ msgctxt "(Admin)"
3143
+ msgid "Enable basic styling for Privacy Tools page."
3144
+ msgstr ""
3145
+ "Активиране на основния стил на страницата Инструменти за поверителност."
3146
+
3147
+ #: views/admin/general/theme-compatibility.php:9
3148
+ #: views/installer/steps/integrations.php:21
3149
+ #, fuzzy
3150
+ #| msgctxt "(Admin)"
3151
+ #| msgid ""
3152
+ #| "Automatically add Privacy Policy and Privacy Tools links to your site "
3153
+ #| "footer."
3154
+ msgctxt "(Admin)"
3155
+ msgid ""
3156
+ "Automatically add Privacy Policy and Privacy Tools links to your site footer."
3157
+ msgstr ""
3158
+ "Автоматично добавяне на страниците Политика за лични данни и Управление на "
3159
+ "лични данни в долната част на сайта."
3160
+
3161
+ #: views/admin/general/woo-compatibility.php:9
3162
+ #, fuzzy
3163
+ #| msgctxt "(Admin)"
3164
+ #| msgid "Enable WooCommerce data on GDPR tool."
3165
+ msgctxt "(Admin)"
3166
+ msgid "Enable WooCommerce data on GDPR tool."
3167
+ msgstr "Активиране на данните за WooCommerce за инструмента GDPR."
3168
+
3169
+ #: views/admin/general/woo-compatibility.php:12
3170
+ #, fuzzy
3171
+ #| msgctxt "(Admin)"
3172
+ #| msgid "Will work for WooCommerce Version 3.4.0 or later."
3173
+ msgctxt "(Admin)"
3174
+ msgid "Will work for WooCommerce Version 3.4.0 or later."
3175
+ msgstr "Ще работи за WooCommerce версия 3.4.0 или по-нова."
3176
+
3177
+ #: views/admin/notices/header-privacy-safe.php:4
3178
+ #, fuzzy
3179
+ msgctxt "(Admin)"
3180
+ msgid "Privacy Safe By Data443"
3181
+ msgstr "Сейф за поверителност по данни443"
3182
+
3183
+ #: views/admin/notices/header.php:4 views/admin/settings-page.php:3
3184
+ #, fuzzy
3185
+ #| msgctxt "(Admin)"
3186
+ #| msgid "The GDPR Framework"
3187
+ msgctxt "(Admin)"
3188
+ msgid "The GDPR Framework By Data443"
3189
+ msgstr "Рамката на GDPR"
3190
+
3191
+ #: views/admin/notices/help.php:3 views/admin/settings-page.php:39
3192
+ #, fuzzy, php-format
3193
+ msgctxt "(Admin)"
3194
+ msgid "Need help? Take a look at our %sdocumentation%s."
3195
+ msgstr "Нуждаете се от помощ? Погледни %sdocumentation% ни."
3196
+
3197
+ #: views/admin/notices/helper-autoinstall.php:2
3198
+ #, fuzzy
3199
+ #| msgctxt "(Admin)"
3200
+ #| msgid ""
3201
+ #| "A Privacy Policy page has been created, but it is empty. You can generate "
3202
+ #| "a policy template on this page."
3203
+ msgctxt "(Admin)"
3204
+ msgid ""
3205
+ "A Privacy Policy page has been created, but it is empty. You can generate a "
3206
+ "policy template on this page."
3207
+ msgstr ""
3208
+ "Страницата с правила за поверителност е създадена, но е празна. Можете да "
3209
+ "генерирате шаблон за правила на тази страница."
3210
+
3211
+ #: views/admin/notices/helper-policy.php:2
3212
+ #, fuzzy
3213
+ #| msgctxt "(Admin)"
3214
+ #| msgid ""
3215
+ #| "Heads up - your Privacy Policy still requires some attention. Find the "
3216
+ #| "places marked with [TODO] and replace them with real content!"
3217
+ msgctxt "(Admin)"
3218
+ msgid ""
3219
+ "Heads up - your Privacy Policy still requires some attention. Find the "
3220
+ "places marked with [TODO] and replace them with real content!"
3221
+ msgstr ""
3222
+ "Глави - Вашата политика за поверителност все още изисква известно внимание. "
3223
+ "Намерете местата, маркирани с [TODO], и ги заменете с истинско съдържание!"
3224
+
3225
+ #: views/admin/notices/helper-settings.php:2
3226
+ #, fuzzy
3227
+ msgctxt "(Admin)"
3228
+ msgid ""
3229
+ "Heads up! The GDPR Framework is not properly configured, so it will not work "
3230
+ "just yet."
3231
+ msgstr ""
3232
+ "Горе главите! Рамката на GDPR не е правилно конфигурирана, така че няма да "
3233
+ "работи още."
3234
+
3235
+ #: views/admin/notices/helper-settings.php:4
3236
+ #, fuzzy, php-format
3237
+ msgctxt "(Admin)"
3238
+ msgid "Go to %sTools > Data443 GDPR%s and make sure all fields are filled in."
3239
+ msgstr ""
3240
+ "Отидете на %sTools > Data443 GDPR%s и се уверете, че всички полета са "
3241
+ "попълнени."
3242
+
3243
+ #: views/admin/notices/helper-tools.php:2
3244
+ #, fuzzy
3245
+ #| msgctxt "(Admin)"
3246
+ #| msgid ""
3247
+ #| "The contents of this page should contain the [gdpr_privacy_tools] "
3248
+ #| "shortcode."
3249
+ msgctxt "(Admin)"
3250
+ msgid ""
3251
+ "The contents of this page should contain the [gdpr_privacy_tools] shortcode."
3252
+ msgstr ""
3253
+ "Съдържанието на тази страница трябва да съдържа краткия код "
3254
+ "[gdpr_privacy_tools]."
3255
+
3256
+ #: views/admin/privacy-manager/header.php:2
3257
+ #: views/admin/privacy-manager/header.php:21
3258
+ #, fuzzy
3259
+ #| msgctxt "(Admin)"
3260
+ #| msgid "Data443™ Privacy Manager"
3261
+ msgctxt "(Admin)"
3262
+ msgid "Data443™ Global Privacy Manager"
3263
+ msgstr "Data443™ Privacy Manager"
3264
+
3265
+ #: views/admin/privacy-manager/header.php:3
3266
+ #, fuzzy
3267
+ #| msgctxt "(Admin)"
3268
+ #| msgid ""
3269
+ #| "ensures privacy regulation compliance, such as GDPR, CCPA, LGPD, etc, at "
3270
+ #| "the next level."
3271
+ msgctxt "(Admin)"
3272
+ msgid ""
3273
+ "ensures privacy regulation compliance, such as GDPR, CCPA, LGPD, etc, at the "
3274
+ "next level."
3275
+ msgstr ""
3276
+ "гарантира спазването на правилата за поверителност, като например GDPR, "
3277
+ "CCPA, LGPD и т.н., на следващото ниво."
3278
+
3279
+ #: views/admin/privacy-manager/header.php:4
3280
+ #, fuzzy
3281
+ msgctxt "(Admin)"
3282
+ msgid "Includes the following features:"
3283
+ msgstr "Включва следните функции:"
3284
+
3285
+ #: views/admin/privacy-manager/header.php:6
3286
+ #, fuzzy
3287
+ msgctxt "(Admin)"
3288
+ msgid ""
3289
+ "Available within minutes – designed to be deployed to your website over the "
3290
+ "phone with one link!"
3291
+ msgstr ""
3292
+ "Предлага се в рамките на минути – проектиран да бъде разгърната на уебсайта "
3293
+ "Ви по телефона с една връзка!"
3294
+
3295
+ #: views/admin/privacy-manager/header.php:7
3296
+ #, fuzzy
3297
+ msgctxt "(Admin)"
3298
+ msgid "Fully branded Subject Access Request Form"
3299
+ msgstr "Напълно брандиран формуляр за заявка за достъп до тема"
3300
+
3301
+ #: views/admin/privacy-manager/header.php:8
3302
+ #, fuzzy
3303
+ msgctxt "(Admin)"
3304
+ msgid "Custom Workflow Engine"
3305
+ msgstr "Двигател на работен поток по избор"
3306
+
3307
+ #: views/admin/privacy-manager/header.php:9
3308
+ #, fuzzy
3309
+ msgctxt "(Admin)"
3310
+ msgid "Cookie and Consent Management Tracking"
3311
+ msgstr "Проследяване на управлението на бисквитки и съгласие"
3312
+
3313
+ #: views/admin/privacy-manager/header.php:10
3314
+ #, fuzzy
3315
+ msgctxt "(Admin)"
3316
+ msgid "Opt-in and Opt-out Management"
3317
+ msgstr "Управление на отказването и отказването"
3318
+
3319
+ #: views/admin/privacy-manager/header.php:11
3320
+ #, fuzzy
3321
+ msgctxt "(Admin)"
3322
+ msgid "Do Not Sell Management Interface"
3323
+ msgstr "Не продавай интерфейс за управление"
3324
+
3325
+ #: views/admin/privacy-manager/header.php:12
3326
+ #, fuzzy
3327
+ msgctxt "(Admin)"
3328
+ msgid "Full On Premise and In Cloud Data Discovery"
3329
+ msgstr "Пълен на предпоставка и в облак откриване на данни"
3330
+
3331
+ #: views/admin/privacy-manager/header.php:13
3332
+ #, fuzzy
3333
+ msgctxt "(Admin)"
3334
+ msgid "Complete End to End Data Mapping"
3335
+ msgstr "Завършване на съпоставянето на крайни данни"
3336
+
3337
+ #: views/admin/privacy-manager/header.php:14
3338
+ #, fuzzy
3339
+ msgctxt "(Admin)"
3340
+ msgid "Full Data Classification and Governance"
3341
+ msgstr "Пълна класификация и управление на данните"
3342
+
3343
+ #: views/admin/privacy-manager/header.php:15
3344
+ #, fuzzy
3345
+ msgctxt "(Admin)"
3346
+ msgid "Data Deletion and Monitoring Compliance Management"
3347
+ msgstr "Управление на съответствието при изтриване и наблюдение на данни"
3348
+
3349
+ #: views/admin/privacy-manager/header.php:16
3350
+ #, fuzzy
3351
+ msgctxt "(Admin)"
3352
+ msgid ""
3353
+ "Data Stores instantly available: Windows NTFS, OneDrive, Dropbox, Office365, "
3354
+ "GoogleMail, Salesforce, Quickbooks, MailChimp, Sharepoint, MySQL, MSSQL, "
3355
+ "PostGreSQL, Mongo"
3356
+ msgstr ""
3357
+ "Магазини за данни моментално достъпни: Windows NTFS, OneDrive, Dropbox, "
3358
+ "Office365, GoogleMail, Salesforce, Бързи книги, MailChimp, Sharepoint, "
3359
+ "MySQL, MSSQL, PostGreSQL, Монго"
3360
+
3361
+ #: views/admin/privacy-manager/header.php:17
3362
+ #, fuzzy
3363
+ msgctxt "(Admin)"
3364
+ msgid ""
3365
+ "Data Stores addons available: over 200 SaaS, On Premise databases & File "
3366
+ "shares"
3367
+ msgstr ""
3368
+ "Налични са добавки за магазини за данни: над 200 SaaS, В предварителни бази "
3369
+ "данни & Файлови акции"
3370
+
3371
+ #: views/admin/privacy-manager/header.php:18
3372
+ #, fuzzy
3373
+ msgctxt "(Admin)"
3374
+ msgid "PowerBI and Dashboarding"
3375
+ msgstr "PowerBI и Табло за управление"
3376
+
3377
+ #: views/admin/privacy-manager/header.php:21
3378
+ #, fuzzy
3379
+ #| msgctxt "(Admin)"
3380
+ #| msgid ""
3381
+ #| "No matter where you are on your data privacy journey, the ultimate goal "
3382
+ #| "is compliance."
3383
+ msgctxt "(Admin)"
3384
+ msgid ""
3385
+ "No matter where you are on your data privacy journey, the ultimate goal is "
3386
+ "compliance."
3387
+ msgstr ""
3388
+ "Без значение къде сте на път за поверителност на данните, крайната цел е "
3389
+ "спазването на правилата."
3390
+
3391
+ #: views/admin/privacy-manager/header.php:21
3392
+ #, fuzzy
3393
+ #| msgctxt "(Admin)"
3394
+ #| msgid "enables your organization to comply with all privacy regulations."
3395
+ msgctxt "(Admin)"
3396
+ msgid "enables your organization to comply with all privacy regulations."
3397
+ msgstr ""
3398
+ "позволява на вашата организация да спазва всички правила за поверителност."
3399
+
3400
+ #: views/admin/privacy-policy/description-policy-page.php:2
3401
+ #, fuzzy
3402
+ #| msgctxt "(Admin)"
3403
+ #| msgid "Select the page which will contain your Privacy Policy"
3404
+ msgctxt "(Admin)"
3405
+ msgid "Select the page which will contain your Privacy Policy"
3406
+ msgstr "Изберете страницата, която ще съдържа вашата Политика за Лични данни"
3407
+
3408
+ #: views/admin/privacy-policy/generated.php:3
3409
+ #, fuzzy
3410
+ #| msgctxt "(Admin)"
3411
+ #| msgid "Your Privacy Policy has been generated."
3412
+ msgctxt "(Admin)"
3413
+ msgid "Your Privacy Policy has been generated."
3414
+ msgstr "Политиката за Лични данни беше генерирана."
3415
+
3416
+ #: views/admin/privacy-policy/generated.php:20
3417
+ #, fuzzy
3418
+ #| msgctxt "(Admin)"
3419
+ #| msgid "&laquo; Back"
3420
+ msgctxt "(Admin)"
3421
+ msgid "&laquo; Back"
3422
+ msgstr "&laquo; Назад"
3423
+
3424
+ #: views/admin/privacy-policy/has-dpo.php:11
3425
+ #, fuzzy
3426
+ #| msgctxt "(Admin)"
3427
+ #| msgid "I have appointed a Data Protection Officer (DPO)"
3428
+ msgctxt "(Admin)"
3429
+ msgid "I have appointed a Data Protection Officer (DPO)"
3430
+ msgstr "Назначих служител по защита на данните (ДЗД)"
3431
+
3432
+ #: views/admin/privacy-policy/header.php:2
3433
+ #, fuzzy
3434
+ #| msgctxt "(Admin)"
3435
+ #| msgid ""
3436
+ #| "This page allows you to generate a Privacy Policy based on the "
3437
+ #| "information you entered below."
3438
+ msgctxt "(Admin)"
3439
+ msgid ""
3440
+ "This page allows you to generate a Privacy Policy based on the information "
3441
+ "you entered below."
3442
+ msgstr ""
3443
+ "Тази страница ви позволява да генерирате Политика за личните данни въз "
3444
+ "основа на въведената по-долу информация."
3445
+
3446
+ #: views/admin/privacy-safe/enable-backlink.php:11
3447
+ #, fuzzy
3448
+ msgctxt "(Admin)"
3449
+ msgid ""
3450
+ "<b>Note:</b> We need your support. By selecting to support Data443, a small "
3451
+ "link is added below the privacy safe seal linking back to our product page "
3452
+ "on data443.com. Uncheck if you prefer not to have the link display on your "
3453
+ "site."
3454
+ msgstr ""
3455
+ "<b>Забележка:</b> Трябва ни подкрепата ти. Избирайки да поддържате Data443, "
3456
+ "се добавя малка връзка под безопасния печат за поверителност, свързващ се "
3457
+ "обратно към продуктовата ни страница на data443.com. Премахнете отметката, "
3458
+ "ако предпочитате да не разполагате с дисплея на връзката на сайта си."
3459
+
3460
+ #: views/admin/settings-page.php:8
3461
+ #, fuzzy
3462
+ msgctxt "(Admin)"
3463
+ msgid "GDPR settings saved!"
3464
+ msgstr "GDPR настройки записани!"
3465
+
3466
+ #: views/admin/settings-page.php:31
3467
+ #, fuzzy, php-format
3468
+ #| msgctxt "(Admin)"
3469
+ #| msgid "The GDPR Framework. Built with &#9829; by %sCodelight%s."
3470
+ msgctxt "(Admin)"
3471
+ msgid "The GDPR Framework. Built with &#9829; by %sData443%s."
3472
+ msgstr "Рамката на GDPR. Построен с & # 9829; от% sЦветна светлина% s."
3473
+
3474
+ #: views/admin/settings-page.php:47
3475
+ #, fuzzy, php-format
3476
+ msgctxt "(Admin)"
3477
+ msgid "Support our development efforts! leave a %s5-star rating%s."
3478
+ msgstr "Подкрепете усилията ни за развитие! оставете %s5-звезден рейтинг%s."
3479
+
3480
+ #: views/admin/support/contents.php:5 views/installer/steps/finish.php:10
3481
+ #, fuzzy
3482
+ #| msgctxt "(Admin)"
3483
+ #| msgid "Need more info?"
3484
+ msgctxt "(Admin)"
3485
+ msgid "Need more info?"
3486
+ msgstr "Нуждаете се от повече информация?"
3487
+
3488
+ #: views/admin/support/contents.php:11 views/installer/steps/finish.php:16
3489
+ #, fuzzy
3490
+ #| msgctxt "(Admin)"
3491
+ #| msgid "Site Owner's guide to GDPR"
3492
+ msgctxt "(Admin)"
3493
+ msgid "Site Owner's guide to GDPR"
3494
+ msgstr "Ръководство на собственика на сайта за GDPR"
3495
+
3496
+ #: views/admin/support/contents.php:14 views/installer/steps/finish.php:19
3497
+ #, fuzzy
3498
+ #| msgctxt "(Admin)"
3499
+ #| msgid "Read the full guide on GDPR compliance."
3500
+ msgctxt "(Admin)"
3501
+ msgid "Read the full guide on GDPR compliance."
3502
+ msgstr "Прочетете пълния наръчник за съответствие с GDPR."
3503
+
3504
+ #: views/admin/support/contents.php:20 views/installer/steps/finish.php:25
3505
+ #, fuzzy
3506
+ #| msgctxt "(Admin)"
3507
+ #| msgid "Knowledge base"
3508
+ msgctxt "(Admin)"
3509
+ msgid "Knowledge base"
3510
+ msgstr "Знание"
3511
+
3512
+ #: views/admin/support/contents.php:23 views/installer/steps/finish.php:28
3513
+ #, fuzzy
3514
+ #| msgctxt "(Admin)"
3515
+ #| msgid "Check out the knowledge base for common questions and answers."
3516
+ msgctxt "(Admin)"
3517
+ msgid "Check out the knowledge base for common questions and answers."
3518
+ msgstr "Проверете базата знания за често срещани въпроси и отговори."
3519
+
3520
+ #: views/admin/support/contents.php:29 views/installer/steps/finish.php:34
3521
+ #, fuzzy
3522
+ #| msgctxt "(Admin)"
3523
+ #| msgid "Developer's guide to GDPR"
3524
+ msgctxt "(Admin)"
3525
+ msgid "Developer's guide to GDPR"
3526
+ msgstr "Ръководство за програмисти за GDPR"
3527
+
3528
+ #: views/admin/support/contents.php:32 views/installer/steps/finish.php:37
3529
+ #, fuzzy
3530
+ #| msgctxt "(Admin)"
3531
+ #| msgid "We have a thorough guide to help making custom sites compliant."
3532
+ msgctxt "(Admin)"
3533
+ msgid "We have a thorough guide to help making custom sites compliant."
3534
+ msgstr ""
3535
+ "Имаме задълбочено ръководство, което ни помага да направим персонализираните "
3536
+ "сайтове съвместими."
3537
+
3538
+ #: views/admin/support/contents.php:40 views/installer/steps/finish.php:45
3539
+ msgctxt "(Admin)"
3540
+ msgid "Need help?"
3541
+ msgstr "Нужда от помощ?"
3542
+
3543
+ #: views/admin/support/contents.php:46 views/installer/steps/finish.php:51
3544
+ #, fuzzy
3545
+ #| msgctxt "(Admin)"
3546
+ #| msgid "Submit a support request"
3547
+ msgctxt "(Admin)"
3548
+ msgid "Submit a support request"
3549
+ msgstr "Изпратете заявка за поддръжка"
3550
+
3551
+ #: views/admin/support/contents.php:49 views/installer/steps/finish.php:54
3552
+ #, fuzzy
3553
+ #| msgctxt "(Admin)"
3554
+ #| msgid ""
3555
+ #| "Found a bug or have a question about the plugin? Submit a support request "
3556
+ #| "and we’ll get right on it!"
3557
+ msgctxt "(Admin)"
3558
+ msgid ""
3559
+ "Found a bug or have a question about the plugin? Submit a support request "
3560
+ "and we’ll get right on it!"
3561
+ msgstr ""
3562
+ "Открихте грешка или имате въпрос относно приставката? Изпратете заявка за "
3563
+ "поддръжка и ще се оправим!"
3564
+
3565
+ #: views/admin/support/contents.php:55 views/installer/steps/finish.php:60
3566
+ #, fuzzy
3567
+ #| msgctxt "(Admin)"
3568
+ #| msgid "Request a consultation"
3569
+ msgctxt "(Admin)"
3570
+ msgid "Request a consultation"
3571
+ msgstr "Поискайте консултация"
3572
+
3573
+ #: views/admin/support/contents.php:58 views/installer/steps/finish.php:63
3574
+ #, fuzzy
3575
+ #| msgctxt "(Admin)"
3576
+ #| msgid "Need assistance in making your site compliant? We can help!"
3577
+ msgctxt "(Admin)"
3578
+ msgid "Need assistance in making your site compliant? We can help!"
3579
+ msgstr "Нуждаете се от помощ при съгласуването на сайта Ви? Можем да помогнем!"
3580
+
3581
+ #: views/admin/wizard-buttons.php:2
3582
+ #, fuzzy
3583
+ #| msgctxt "(Admin)"
3584
+ #| msgid "Restart setup wizard"
3585
+ msgctxt "(Admin)"
3586
+ msgid "Restart setup wizard"
3587
+ msgstr "Рестартирай настройката"
3588
+
3589
+ #: views/email/action-export.php:8 views/email/action-forget.php:12
3590
+ #, fuzzy
3591
+ #| msgctxt "(Admin)"
3592
+ #| msgid ""
3593
+ #| "This email is just for your information. You don't need to take any action"
3594
+ msgctxt "(Admin)"
3595
+ msgid ""
3596
+ "This email is just for your information. You don't need to take any action"
3597
+ msgstr ""
3598
+ "Този имейл е само за вашата информация. Не е необходимо да предприемате "
3599
+ "никакви действия"
3600
+
3601
+ #: views/email/action-forget.php:8
3602
+ #, fuzzy
3603
+ #| msgctxt "(Admin)"
3604
+ #| msgid "The data subject had a user account on your website."
3605
+ msgctxt "(Admin)"
3606
+ msgid "The data subject had a user account on your website."
3607
+ msgstr "Субектът на данните има потребителски профил на уебсайта Ви."
3608
+
3609
+ #: views/email/identify-data-subject.php:2
3610
+ msgid "Someone has requested access to your data on"
3611
+ msgstr "Някой е поискал достъп до данните ви"
3612
+
3613
+ #: views/email/identify-data-subject.php:3
3614
+ msgid "If this was a mistake, just ignore this email and nothing will happen."
3615
+ msgstr ""
3616
+ "Ако това е грешка, просто игнорирайте този имейл и нищо няма да се случи. "
3617
+ "Никой няма да има достъп до Вашите данни, ако няма по - долния линк. За "
3618
+ "всеки случай ни уведомете на Email: privacy@zankov-group.com"
3619
+
3620
+ #: views/email/identify-data-subject.php:4
3621
+ msgid "To manage your data, visit the following address:"
3622
+ msgstr "За да управлявате данните си, посетете следния адрес:"
3623
+
3624
+ #: views/email/identify-data-subject.php:10
3625
+ msgid "This link is valid for 15 minutes."
3626
+ msgstr "Този линк ще бъде валиден само за 15 мин."
3627
+
3628
+ #: views/email/no-data.php:2
3629
+ msgid "Someone has requested information about your personal data on"
3630
+ msgstr "Някой е поискал информация за вашите лични данни"
3631
+
3632
+ #: views/email/no-data.php:3
3633
+ msgid "None of your personal data is stored on"
3634
+ msgstr "Не съхраняваме Ваши лични данни"
3635
+
3636
+ #: views/email/no-data.php:5
3637
+ msgid ""
3638
+ "If this was a mistake or you did not request this email, just ignore it and "
3639
+ "nothing will happen."
3640
+ msgstr ""
3641
+ "Ако това е грешка, просто игнорирайте този имейл и нищо няма да се случи. "
3642
+ "Никой няма да има достъп до Вашите данни, ако няма по - долния линк. За "
3643
+ "всеки случай ни уведомете на Email: privacy@zankov-group.com"
3644
+
3645
+ #: views/email/request-export.php:13 views/email/request-forget.php:13
3646
+ #, fuzzy
3647
+ #| msgctxt "(Admin)"
3648
+ #| msgid "As a reminder: according to GDPR, you have 30 days to comply."
3649
+ msgctxt "(Admin)"
3650
+ msgid "As a reminder: according to GDPR, you have 30 days to comply."
3651
+ msgstr "Напомняне: според GDPR имате 30 дни, за да се съобразите."
3652
+
3653
+ #: views/global/delete-action.php:2
3654
+ #, fuzzy
3655
+ #| msgctxt "(Admin)"
3656
+ #| msgid "Automatically anonymize data"
3657
+ msgctxt "(Admin)"
3658
+ msgid "Automatically anonymize data"
3659
+ msgstr "Автоматично анонимизиране на данните"
3660
+
3661
+ #: views/global/delete-action.php:5
3662
+ #, fuzzy
3663
+ #| msgctxt "(Admin)"
3664
+ #| msgid "Automatically delete data"
3665
+ msgctxt "(Admin)"
3666
+ msgid "Automatically delete data"
3667
+ msgstr "Автоматично изтриване на данните"
3668
+
3669
+ #: views/global/delete-action.php:9
3670
+ #, fuzzy
3671
+ #| msgctxt "(Admin)"
3672
+ #| msgid "Automatically anonymize data and notify me via email"
3673
+ msgctxt "(Admin)"
3674
+ msgid "Automatically anonymize data and notify me via email"
3675
+ msgstr "Автоматично анонимизиране на данните и уведомяване чрез Email."
3676
+
3677
+ #: views/global/delete-action.php:13
3678
+ #, fuzzy
3679
+ #| msgctxt "(Admin)"
3680
+ #| msgid "Automatically delete data and notify me via email"
3681
+ msgctxt "(Admin)"
3682
+ msgid "Automatically delete data and notify me via email"
3683
+ msgstr "Автоматично изтриване на данните и уведомяване чрез Email."
3684
+
3685
+ #: views/global/delete-action.php:16 views/global/export-action.php:10
3686
+ #, fuzzy
3687
+ #| msgctxt "(Admin)"
3688
+ #| msgid "Only notify me via email"
3689
+ msgctxt "(Admin)"
3690
+ msgid "Only notify me via email"
3691
+ msgstr "Само ме уведоми чрез Email."
3692
+
3693
+ #: views/global/export-action.php:2
3694
+ #, fuzzy
3695
+ #| msgctxt "(Admin)"
3696
+ #| msgid "Automatically download data"
3697
+ msgctxt "(Admin)"
3698
+ msgid "Automatically download data"
3699
+ msgstr "Автоматично сваляне на данните"
3700
+
3701
+ #: views/global/export-action.php:6
3702
+ #, fuzzy
3703
+ #| msgctxt "(Admin)"
3704
+ #| msgid "Automatically download data and notify me via email"
3705
+ msgctxt "(Admin)"
3706
+ msgid "Automatically download data and notify me via email"
3707
+ msgstr "Автоматично сваляне на данните и уведомяване чрез Email."
3708
+
3709
+ #: views/global/position-action.php:2
3710
+ #, fuzzy
3711
+ msgctxt "(Admin)"
3712
+ msgid "Banner bottom"
3713
+ msgstr "Банер отдолу"
3714
+
3715
+ #: views/global/position-action.php:5
3716
+ #, fuzzy
3717
+ msgctxt "(Admin)"
3718
+ msgid "Floating left"
3719
+ msgstr "Плаващ наляво"
3720
+
3721
+ #: views/global/position-action.php:8
3722
+ #, fuzzy
3723
+ msgctxt "(Admin)"
3724
+ msgid "Floating Right"
3725
+ msgstr "Плаващ десен"
3726
+
3727
+ #: views/global/position-action.php:11
3728
+ #, fuzzy
3729
+ msgctxt "(Admin)"
3730
+ msgid "Banner top"
3731
+ msgstr "Блуза от банер"
3732
+
3733
+ #: views/global/theme-action.php:2
3734
+ msgctxt "(Admin)"
3735
+ msgid "Default"
3736
+ msgstr "По подразбиране"
3737
+
3738
+ #: views/global/theme-action.php:5
3739
+ msgctxt "(Admin)"
3740
+ msgid "Classic"
3741
+ msgstr "Класически"
3742
+
3743
+ #: views/global/theme-action.php:8
3744
+ #, fuzzy
3745
+ msgctxt "(Admin)"
3746
+ msgid "Edgeless"
3747
+ msgstr "Без ръбове"
3748
+
3749
+ #: views/installer/continue-notice.php:2
3750
+ #, fuzzy
3751
+ #| msgctxt "(Admin)"
3752
+ #| msgid "The The GDPR Framework setup has not been finalized yet."
3753
+ msgctxt "(Admin)"
3754
+ msgid "The The GDPR Framework setup has not been finalized yet."
3755
+ msgstr "Настройката на GDPR все още не е финализирана."
3756
+
3757
+ #: views/installer/continue-notice.php:3
3758
+ #, fuzzy
3759
+ #| msgctxt "(Admin)"
3760
+ #| msgid "You can continue the setup at any time."
3761
+ msgctxt "(Admin)"
3762
+ msgid "You can continue the setup at any time."
3763
+ msgstr "Можете да продължите настройката по всяко време."
3764
+
3765
+ #: views/installer/continue-notice.php:6
3766
+ #, fuzzy
3767
+ #| msgctxt "(Admin)"
3768
+ #| msgid "Continue the setup wizard"
3769
+ msgctxt "(Admin)"
3770
+ msgid "Continue the setup wizard"
3771
+ msgstr "Продължи с настройката"
3772
+
3773
+ #: views/installer/continue-notice.php:9
3774
+ #, fuzzy
3775
+ #| msgctxt "(Admin)"
3776
+ #| msgid "Hide this message"
3777
+ msgctxt "(Admin)"
3778
+ msgid "Hide this message"
3779
+ msgstr "Скрий съобщението"
3780
+
3781
+ #: views/installer/footer.php:7
3782
+ msgid "Back"
3783
+ msgstr "Назад"
3784
+
3785
+ #: views/installer/header.php:7
3786
+ #, fuzzy
3787
+ msgctxt "(Admin)"
3788
+ msgid "WordPress GDPR &rsaquo; Setup Wizard"
3789
+ msgstr "WordPress GDPR › Съветник за настройка"
3790
+
3791
+ #: views/installer/header.php:23
3792
+ #, fuzzy
3793
+ #| msgctxt "(Admin)"
3794
+ #| msgid "The GDPR Framework"
3795
+ msgctxt "(Admin)"
3796
+ msgid "The GDPR Framework"
3797
+ msgstr "Рамката на GDPR"
3798
+
3799
+ #: views/installer/header.php:26
3800
+ #, fuzzy
3801
+ #| msgctxt "(Admin)"
3802
+ #| msgid "I need help"
3803
+ msgctxt "(Admin)"
3804
+ msgid "I need help"
3805
+ msgstr "Нуждая се от помощ"
3806
+
3807
+ #: views/installer/header.php:29
3808
+ #, fuzzy
3809
+ #| msgctxt "(Admin)"
3810
+ #| msgid "Developer Docs"
3811
+ msgctxt "(Admin)"
3812
+ msgid "Developer Docs"
3813
+ msgstr "Документация за програмисти"
3814
+
3815
+ #: views/installer/header.php:36
3816
+ msgctxt "(Admin)"
3817
+ msgid "Configuration"
3818
+ msgstr "Конфигурация"
3819
+
3820
+ #: views/installer/header.php:46
3821
+ #, fuzzy
3822
+ #| msgctxt "(Admin)"
3823
+ #| msgid "Forms & Consent"
3824
+ msgctxt "(Admin)"
3825
+ msgid "Forms & Consent"
3826
+ msgstr "Форми и съгласие"
3827
+
3828
+ #: views/installer/header.php:51
3829
+ msgctxt "(Admin)"
3830
+ msgid "Integrations"
3831
+ msgstr "Интеграции"
3832
+
3833
+ #: views/installer/privacy-safe-notice.php:3
3834
+ #, fuzzy
3835
+ msgctxt "(Admin)"
3836
+ msgid ""
3837
+ "Strengthen your reputation. Privacy safe gives your customers total control "
3838
+ "of their private information. The privacy safe seal assures your new "
3839
+ "customers that your business is in compliance with new privacy laws and "
3840
+ "regulations. For the privacy safe seal will verify that GDPR Framework "
3841
+ "plugin is installed."
3842
+ msgstr ""
3843
+ "Укрепете репутацията си. Сейфът за поверителност дава на вашите клиенти "
3844
+ "пълен контрол върху частната им информация. Безопасният печат за "
3845
+ "поверителност уверява новите Ви клиенти, че бизнесът Ви е в съответствие с "
3846
+ "новите закони и разпоредби за поверителност. За безопасното уплътнение за "
3847
+ "поверителност ще провери дали е инсталиран плъгин GDPR Framework."
3848
+
3849
+ #: views/installer/privacy-safe-notice.php:9
3850
+ msgctxt "(Admin)"
3851
+ msgid "Learn More"
3852
+ msgstr "Прочети повече"
3853
+
3854
+ #: views/installer/privacy-safe-notice.php:12
3855
+ msgctxt "(Admin)"
3856
+ msgid "Maybe Later"
3857
+ msgstr "Може би по-късно"
3858
+
3859
+ #: views/installer/steps/configuration-settings.php:23
3860
+ #: views/installer/steps/configuration-settings.php:73
3861
+ #, fuzzy
3862
+ #| msgctxt "(Admin)"
3863
+ #| msgid "Enter the email address to notify"
3864
+ msgctxt "(Admin)"
3865
+ msgid "Enter the email address to notify"
3866
+ msgstr "Въведете имейл адреса за уведомяване"
3867
+
3868
+ #: views/installer/steps/disclaimer.php:21
3869
+ msgctxt "(Admin)"
3870
+ msgid "I accept"
3871
+ msgstr "Приемам"
3872
+
3873
+ #: views/installer/welcome-notice.php:2
3874
+ #, fuzzy
3875
+ #| msgctxt "(Admin)"
3876
+ #| msgid "The The GDPR Framework setup has not been finalized yet."
3877
+ msgctxt "(Admin)"
3878
+ msgid "The GDPR Framework has not been set up yet. Would you like to do that?"
3879
+ msgstr "Настройката на GDPR все още не е финализирана."
3880
+
3881
+ #: views/installer/welcome-notice.php:3
3882
+ #, fuzzy
3883
+ msgctxt "(Admin)"
3884
+ msgid "Our setup wizard will guide you through the process."
3885
+ msgstr "Нашият съветник за настройка ще ви преведе през процеса."
3886
+
3887
+ #: views/installer/welcome-notice.php:4
3888
+ #, fuzzy
3889
+ msgctxt "(Admin)"
3890
+ msgid "You can also configure the plugin manually by going to"
3891
+ msgstr "Можете също така да конфигурирате приставката ръчно, като отидете на"
3892
+
3893
+ #: views/installer/welcome-notice.php:5
3894
+ msgctxt "(Admin)"
3895
+ msgid "Tools"
3896
+ msgstr "Инструменти"
3897
+
3898
+ #: views/installer/welcome-notice.php:10
3899
+ #, fuzzy
3900
+ #| msgctxt "(Admin)"
3901
+ #| msgid "Run the setup wizard"
3902
+ msgctxt "(Admin)"
3903
+ msgid "Run the setup wizard"
3904
+ msgstr "Пуснете помощника за настройка"
3905
+
3906
+ #: views/installer/welcome-notice.php:14
3907
+ #, fuzzy
3908
+ #| msgctxt "(Admin)"
3909
+ #| msgid "Auto-install pages"
3910
+ msgctxt "(Admin)"
3911
+ msgid "Auto-install pages"
3912
+ msgstr "Автоматично инсталиране на страници"
3913
+
3914
+ #: views/installer/welcome-notice.php:18
3915
+ #, fuzzy
3916
+ #| msgctxt "(Admin)"
3917
+ #| msgid "Skip and install manually"
3918
+ msgctxt "(Admin)"
3919
+ msgid "Skip and install manually"
3920
+ msgstr "Инсталирай ръчно"
3921
+
3922
+ #: views/modules/contact-form-7/form-privacy-tab.php:10
3923
+ #, fuzzy
3924
+ msgctxt "(Admin)"
3925
+ msgid ""
3926
+ "Include the entries of this form when downloading or deleting a data "
3927
+ "subject's data."
3928
+ msgstr ""
3929
+ "Включете записите на този формуляр при изтегляне или изтриване на данните на "
3930
+ "субект на данни."
3931
+
3932
+ #: views/modules/contact-form-7/form-privacy-tab.php:18
3933
+ #, fuzzy
3934
+ msgctxt "(Admin)"
3935
+ msgid ""
3936
+ "Select the mail-tag of the sender's email field (for example, your-email)."
3937
+ msgstr ""
3938
+ "Изберете пощенския маркер на полето за имейл на подателя (например вашия-"
3939
+ "имейл)."
3940
+
3941
+ #: views/modules/contact-form-7/generator-privacy.php:6
3942
+ #, fuzzy
3943
+ #| msgctxt "(Admin)"
3944
+ #| msgid ""
3945
+ #| "This tag generates the default text for Terms & Conditions and/or Privacy "
3946
+ #| "Policy checkbox."
3947
+ msgctxt "(Admin)"
3948
+ msgid ""
3949
+ "This tag generates the default text for Terms & Conditions and/or Privacy "
3950
+ "Policy checkbox."
3951
+ msgstr ""
3952
+ "Този маркер генерира стандартния текст за чекбокса за Общи условия и / или "
3953
+ "Политика за Лични данни."
3954
+
3955
+ #: views/modules/contact-form-7/generator-privacy.php:15
3956
+ msgid "Insert"
3957
+ msgstr "Вмъкни"
3958
+
3959
+ #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:3
3960
+ #: views/privacy-tools/form-consent.php:2
3961
+ msgid "Consent"
3962
+ msgstr "Съгласие"
3963
+
3964
+ #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:6
3965
+ #: views/privacy-tools/form-consent.php:6
3966
+ msgid "Here you can withdraw any consents you have given."
3967
+ msgstr "Тук можете да оттеглите всички съгласия, които сте дали."
3968
+
3969
+ #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:8
3970
+ msgid "Consents"
3971
+ msgstr "Съгласие"
3972
+
3973
+ #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:23
3974
+ #: views/privacy-tools/form-consent.php:24
3975
+ msgid "Withdraw"
3976
+ msgstr "Оттегляне"
3977
+
3978
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:5
3979
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:5
3980
+ #, fuzzy
3981
+ #| msgctxt "(Admin)"
3982
+ #| msgid "Delete this user and all data"
3983
+ msgctxt "(Admin)"
3984
+ msgid "Delete this user and all data"
3985
+ msgstr "Изтрийте този потребител и всички данни"
3986
+
3987
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:11
3988
+ msgctxt "(Admin)"
3989
+ msgid "Delete my data"
3990
+ msgstr "Изтрий данните ми"
3991
+
3992
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:15
3993
+ #: views/privacy-tools/form-delete.php:4 views/privacy-tools/form-delete.php:24
3994
+ msgid "Delete all data we have gathered about you."
3995
+ msgstr "Изтрийте всички данни, които сме събрали за вас."
3996
+
3997
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:16
3998
+ #: views/privacy-tools/form-delete.php:5 views/privacy-tools/form-delete.php:25
3999
+ msgid "If you have a user account on our site, it will also be deleted."
4000
+ msgstr "Ако имате потребителски акаунт на нашия сайт, той също ще бъде изтрит."
4001
+
4002
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:17
4003
+ #: views/privacy-tools/form-delete.php:6 views/privacy-tools/form-delete.php:26
4004
+ msgid "Be careful - this action is permanent and CANNOT be undone."
4005
+ msgstr "Бъдете внимателни - това действие е не може да бъде отменено."
4006
+
4007
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:19
4008
+ #: views/privacy-tools/form-delete.php:8
4009
+ msgid "Note Regarding Order:"
4010
+ msgstr "Забележка относно поръчката:"
4011
+
4012
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:20
4013
+ #: views/privacy-tools/form-delete.php:9
4014
+ msgid ""
4015
+ "Your order with status Processing will not get deleted until status change."
4016
+ msgstr ""
4017
+ "Вашата поръчка със статус Обработка няма да бъде изтрита до промяна на "
4018
+ "статуса."
4019
+
4020
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:21
4021
+ #: views/privacy-tools/form-delete.php:10
4022
+ msgid "Your order with status Completed will get anonymize."
4023
+ msgstr "Вашата поръчка със завършен статус ще стане анонимна."
4024
+
4025
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:22
4026
+ #: views/privacy-tools/form-delete.php:11
4027
+ msgid "If you delete Completed order you can't apply for refund."
4028
+ msgstr ""
4029
+ "Ако изтриете попълнената поръчка, не можете да кандидатствате за "
4030
+ "възстановяване."
4031
+
4032
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:28
4033
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:23
4034
+ #, fuzzy
4035
+ #| msgctxt "(Admin)"
4036
+ #| msgid ""
4037
+ #| "You seem to have an administrator or equivalent role, so deleting/"
4038
+ #| "anonymizing via this page is disabled."
4039
+ msgctxt "(Admin)"
4040
+ msgid ""
4041
+ "You seem to have an administrator or equivalent role, so deleting/"
4042
+ "anonymizing via this page is disabled."
4043
+ msgstr ""
4044
+ "Изглежда, че имате администратор или еквивалентна роля, така че "
4045
+ "изтриването / анонимирането чрез тази страница е деактивирано."
4046
+
4047
+ #: views/modules/wordpress-user/dashboard/form-export.php:7
4048
+ #: views/privacy-tools/form-export.php:1
4049
+ msgid "Download your data"
4050
+ msgstr "Изтеглете данните си"
4051
+
4052
+ #: views/modules/wordpress-user/dashboard/form-export.php:12
4053
+ #: views/privacy-tools/form-export.php:13
4054
+ msgid "Download as table"
4055
+ msgstr "Изтеглете в Таблица"
4056
+
4057
+ #: views/modules/wordpress-user/dashboard/form-export.php:15
4058
+ #: views/privacy-tools/form-export.php:22
4059
+ msgid "Export as JSON"
4060
+ msgstr "Експортирайте в JSON"
4061
+
4062
+ #: views/modules/wordpress-user/dashboard/form-export.php:19
4063
+ #: views/privacy-tools/form-export.php:4
4064
+ msgid "You can download all your data formatted as a table for viewing."
4065
+ msgstr ""
4066
+ "Можете да изтеглите всичките си данни, форматирани като таблица за преглед."
4067
+
4068
+ #: views/modules/wordpress-user/dashboard/form-export.php:20
4069
+ #: views/privacy-tools/form-export.php:5
4070
+ msgid "Alternatively, you can export it in machine-readable JSON format."
4071
+ msgstr "Друга възможност е да го експортирате във машинно четене JSON формат."
4072
+
4073
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:11
4074
+ #, fuzzy
4075
+ #| msgctxt "(Admin)"
4076
+ #| msgid "Delete user and all data"
4077
+ msgctxt "(Admin)"
4078
+ msgid "Delete user and all data"
4079
+ msgstr "Изтрий потребителя и всички данни"
4080
+
4081
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:14
4082
+ #, fuzzy
4083
+ #| msgctxt "(Admin)"
4084
+ #| msgid "Anonymize user and all data"
4085
+ msgctxt "(Admin)"
4086
+ msgid "Anonymize user and all data"
4087
+ msgstr "Анонимизиране на потребителя и всички данни"
4088
+
4089
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:18
4090
+ msgctxt "gdpr-framework"
4091
+ msgid "Be careful - this action is permanent and CANNOT be undone."
4092
+ msgstr "Бъдете внимателни - това действие е не може да бъде отменено."
4093
+
4094
+ #: views/modules/wordpress-user/dashboard/profile-page/header.php:2
4095
+ #, fuzzy
4096
+ #| msgctxt "(Admin)"
4097
+ #| msgid "GDPR Data"
4098
+ msgctxt "(Admin)"
4099
+ msgid "GDPR Data"
4100
+ msgstr "GDPR данни"
4101
+
4102
+ #: views/modules/wordpress-user/dashboard/profile-page/header.php:6
4103
+ #, fuzzy
4104
+ #| msgctxt "(Admin)"
4105
+ #| msgid "This user has been anonymized."
4106
+ msgctxt "(Admin)"
4107
+ msgid "This user has been anonymized."
4108
+ msgstr "Потребителя беше добавен, като анонимен."
4109
+
4110
+ #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:17
4111
+ #, fuzzy
4112
+ #| msgctxt "(Admin)"
4113
+ #| msgid "No consents given"
4114
+ msgctxt "(Admin)"
4115
+ msgid "No consents given"
4116
+ msgstr "Няма дадени съгласия"
4117
+
4118
+ #: views/modules/wordpress-user/dashboard/profile-page/user-logs.php:2
4119
+ #, fuzzy
4120
+ msgctxt "gdpr-framework"
4121
+ msgid "GDPR User logs"
4122
+ msgstr "GDPR Потребителски регистрационни файлове"
4123
+
4124
+ #: views/modules/wordpress-user/dashboard/profile-page/user-logs.php:8
4125
+ #, fuzzy
4126
+ msgctxt "gdpr-framework"
4127
+ msgid "S.no"
4128
+ msgstr "S.no"
4129
+
4130
+ #: views/modules/wordpress-user/dashboard/profile-page/user-logs.php:9
4131
+ msgctxt "gdpr-framework"
4132
+ msgid "User ID"
4133
+ msgstr "Потребителско ID"
4134
+
4135
+ #: views/modules/wordpress-user/dashboard/profile-page/user-logs.php:10
4136
+ msgctxt "gdpr-framework"
4137
+ msgid "User logs"
4138
+ msgstr "Регистри на потребител"
4139
+
4140
+ #: views/modules/wordpress-user/dashboard/profile-page/user-logs.php:11
4141
+ #, fuzzy
4142
+ msgctxt "gdpr-framework"
4143
+ msgid "Updated date"
4144
+ msgstr "Актуализирана дата"
4145
+
4146
+ #: views/modules/wordpress-user/dashboard/profile-page/user-logs.php:50
4147
+ #, fuzzy
4148
+ msgctxt "gdpr-framework"
4149
+ msgid "No User Logs"
4150
+ msgstr "Без потребителски регистрационни файлове"
4151
+
4152
+ #: views/privacy-tools/donotsell.php:14
4153
+ #, fuzzy
4154
+ #| msgid "Data removal request"
4155
+ msgid "Do Not Sell Request"
4156
+ msgstr "Заявка за премахване на Данни"
4157
+
4158
+ #: views/privacy-tools/donotsell.php:51
4159
+ #, fuzzy
4160
+ msgid "I agree to receive other communications from "
4161
+ msgstr "Съгласен съм да получавам други съобщения от "
4162
+
4163
+ #: views/privacy-tools/donotsell.php:61
4164
+ msgctxt "(Admin)"
4165
+ msgid "Send Request"
4166
+ msgstr "Изпрати заявка"
4167
+
4168
+ #: views/privacy-tools/form-consent.php:9
4169
+ msgid "Consent types"
4170
+ msgstr "Типове съгласие"
4171
+
4172
+ #: views/privacy-tools/form-delete.php:1
4173
+ #: views/privacy-tools/notice-admin-role.php:1
4174
+ msgid "Delete my user and data"
4175
+ msgstr "Изтрий ме, като потребител и данни."
4176
+
4177
+ #: views/privacy-tools/form-delete.php:18
4178
+ #: views/privacy-tools/form-delete.php:30
4179
+ msgid "Delete my data"
4180
+ msgstr "Изтрий моите данни"
4181
+
4182
+ #: views/privacy-tools/form-identify.php:8
4183
+ #, fuzzy
4184
+ msgid "Back to front page"
4185
+ msgstr "Обратно към първа страница"
4186
+
4187
+ #: views/privacy-tools/form-identify.php:14
4188
+ #, fuzzy
4189
+ #| msgid "Please identify yourself via e-mail!"
4190
+ msgid "Please identify yourself via e-mail"
4191
+ msgstr "Идентифицирай се!"
4192
+
4193
+ #: views/privacy-tools/form-identify.php:17
4194
+ #: views/privacy-tools/form-identify.php:20
4195
+ msgid "Enter your email address"
4196
+ msgstr "Въведете вашия Email адрес"
4197
+
4198
+ #: views/privacy-tools/form-identify.php:23
4199
+ msgid "Send email"
4200
+ msgstr "Изпрати Emial"
4201
+
4202
+ #: views/privacy-tools/notice-admin-role.php:4
4203
+ #, fuzzy
4204
+ #| msgctxt "(Admin)"
4205
+ #| msgid "Data deletion is disabled for administrative accounts."
4206
+ msgctxt "(Admin)"
4207
+ msgid "Data deletion is disabled for administrative accounts."
4208
+ msgstr "Изтриването на данни е забранено за административните профили."
4209
+
4210
+ #: views/privacy-tools/notices.php:3
4211
+ msgid ""
4212
+ "We will send you an email with the link to access your data. Please check "
4213
+ "your spam folder as well!"
4214
+ msgstr ""
4215
+ "Ще ви изпратим имейл с връзката, за да получите достъп до вашите данни. "
4216
+ "Моля, проверете и папката си за спам!"
4217
+
4218
+ #: views/privacy-tools/notices.php:7
4219
+ msgid "The email you entered does not appear to be a valid email."
4220
+ msgstr "Въведеният от вас имейл адрес не изглежда валиден имейл."
4221
+
4222
+ #: views/privacy-tools/notices.php:11
4223
+ msgid "Sorry - the link seems to have expired. Please try again!"
4224
+ msgstr "За съжаление - връзката изглежда е изтекла. Моля, опитайте отново!"
4225
+
4226
+ #: views/privacy-tools/notices.php:23
4227
+ msgid "Your personal data has been removed!"
4228
+ msgstr "Вашите лични данни бяха премахнати!"
4229
+
4230
+ #: views/privacy-tools/privacy-tools.php:5
4231
+ msgid "You are identified as"
4232
+ msgstr "Вие сте идентифицирани като"
4233
+
4234
+ #. Plugin Name of the plugin/theme
4235
+ #, fuzzy
4236
+ #| msgctxt "(Admin)"
4237
+ #| msgid "The GDPR Framework"
4238
+ msgid "The GDPR Framework"
4239
+ msgstr "Рамката на GDPR"
4240
+
4241
+ #. Plugin URI of the plugin/theme
4242
+ #, fuzzy
4243
+ msgid "https://www.data443.com/gdpr-framework/"
4244
+ msgstr "https://www.data443.com/gdpr-framework/"
4245
+
4246
+ #. Description of the plugin/theme
4247
+ #, fuzzy
4248
+ msgid ""
4249
+ "Tools to help make your website GDPR-compliant. Fully documented, extendable "
4250
+ "and developer-friendly."
4251
+ msgstr ""
4252
+ "Инструменти, които да помогнат да направите уебсайта си съвместим с GDPR. "
4253
+ "Напълно документирани, разширяеми и удобни за разработчици."
4254
+
4255
+ #. Author of the plugin/theme
4256
+ #, fuzzy
4257
+ msgid "Data443"
4258
+ msgstr "Данни443 ОРЗД"
4259
+
4260
+ #. Author URI of the plugin/theme
4261
+ #, fuzzy
4262
+ msgid "https://www.data443.com/"
4263
+ msgstr "https://www.data443.com/"
4264
+
4265
+ #, php-format
4266
+ #~ msgid "%sERROR:%s You need to accept the privacy policy to post a comment."
4267
+ #~ msgstr ""
4268
+ #~ "%sГРЕШКА:%s Трябва да приемете декларацията за поверителност, за да "
4269
+ #~ "публикувате коментар."
4270
+
4271
+ #~ msgctxt "(Admin)"
4272
+ #~ msgid "Rest of the world"
4273
+ #~ msgstr "Останалата част от света"
4274
+
4275
+ #~ msgctxt "(Admin)"
4276
+ #~ msgid ""
4277
+ #~ "Found a bug or problem with the plugin? Post in the wordpress.org support "
4278
+ #~ "forum."
4279
+ #~ msgstr ""
4280
+ #~ "Намерихте ли бъг или проблем с приставката? Публикувайте във форума за "
4281
+ #~ "поддръжка на wordpress.org."
4282
+
4283
+ #~ msgctxt "(Admin)"
4284
+ #~ msgid ""
4285
+ #~ "Need development or legal assistance in making your site compliant? We "
4286
+ #~ "can help!"
4287
+ #~ msgstr ""
4288
+ #~ "Нуждаете се от развитие или правна помощ за привеждане на сайта Ви в "
4289
+ #~ "съответствие? Можем да помогнем!"
4290
+
4291
+ #, php-format
4292
+ #~ msgid "I accept the %sTerms and Conditions%s and the %sPrivacy Policy%s"
4293
+ #~ msgstr "Приемам %sTerms and Conditions%s и %sPrivacy Policy%s"
4294
+
4295
+ #~ msgid "Manage consents"
4296
+ #~ msgstr "Управлявайте съгласията"
4297
+
4298
+ #~ msgid "Back to Privacy Tools"
4299
+ #~ msgstr "Обратно в Политика за Лични данни"
4300
+
4301
+ #~ msgctxt "(Admin)"
4302
+ #~ msgid "This page allows you to advance integration with ClassiDocs™"
4303
+ #~ msgstr ""
4304
+ #~ "Тази страница ви позволява да усъвършенствате интеграцията с ClassiDocs ™"
4305
+
4306
+ #~ msgctxt "(Admin)"
4307
+ #~ msgid "ClassiDocs Password"
4308
+ #~ msgstr "ClassiDocs парола"
4309
+
4310
+ #~ msgctxt "(Admin)"
4311
+ #~ msgid "ClassiDocs Username"
4312
+ #~ msgstr "ClassiDocs Потребител"
4313
+
4314
+ #~ msgctxt "(Admin)"
4315
+ #~ msgid "Enable Response with related queries?"
4316
+ #~ msgstr "Да се ​​разреши отговор със свързани заявки?"
4317
+
4318
+ #~ msgctxt "(Admin)"
4319
+ #~ msgid "Submit SAR request details?"
4320
+ #~ msgstr "Подайте подробности за заявката за SAR?"
4321
+
4322
+ #~ msgctxt "(Admin)"
4323
+ #~ msgid "Integrate with ClassiDocs?"
4324
+ #~ msgstr "Интегриране с ClassiDocs?"
4325
+
4326
+ #~ msgctxt "(Admin)"
4327
+ #~ msgid "Integration Settings"
4328
+ #~ msgstr "Настройки за интегриране"
4329
+
4330
+ #~ msgctxt "(Admin)"
4331
+ #~ msgid "Advanced Integration"
4332
+ #~ msgstr "Разширена интеграция"
4333
+
4334
+ #~ msgctxt "(Admin)"
4335
+ #~ msgid "Sign up for free here"
4336
+ #~ msgstr "Регистрирайте се безплатно тук"
4337
+
4338
+ #~ msgctxt "(Admin)"
4339
+ #~ msgid "Click Here"
4340
+ #~ msgstr "Натисни тук"
4341
+
4342
+ #~ msgid "Previous Results"
4343
+ #~ msgstr "Предишни резултати"
4344
+
4345
+ #~ msgid "Current Results"
4346
+ #~ msgstr "Текущи резултати"
4347
+
4348
+ #~ msgid "Name"
4349
+ #~ msgstr "име"
4350
+
4351
+ #~ msgid "Path"
4352
+ #~ msgstr "път"
4353
+
4354
+ #~ msgid "Workstation"
4355
+ #~ msgstr "Workstation"
4356
+
4357
+ #~ msgid "Last Scan"
4358
+ #~ msgstr "Последно сканиране"
4359
+
4360
+ #~ msgid "No ClassiDocs data found!"
4361
+ #~ msgstr "Няма намерени данни за ClassiDocs!"
4362
+
4363
+ #~ msgid "Cookies used on the website!"
4364
+ #~ msgstr "Бисквитки, използвани на сайта!"
4365
+
4366
+ #~ msgctxt "(Admin)"
4367
+ #~ msgid ""
4368
+ #~ "In addition to DSAR tracking and management, Privacy Manager adds the "
4369
+ #~ "following features to your data protection compliance resources:"
4370
+ #~ msgstr ""
4371
+ #~ "В допълнение към DSAR проследяването и управлението, Privacy Manager "
4372
+ #~ "добавя следните функции към вашите ресурси за защита на данните:"
4373
+
4374
+ #~ msgctxt "(Admin)"
4375
+ #~ msgid "Log and store ICO breach notifications"
4376
+ #~ msgstr "Влезте и съхранете уведомленията за нарушения на ICO"
4377
+
4378
+ #~ msgctxt "(Admin)"
4379
+ #~ msgid "Keeps full record of all requests, ticketed and timeline"
4380
+ #~ msgstr "Съхранява пълен запис на всички заявки, билети и времева линия"
4381
+
4382
+ #~ msgctxt "(Admin)"
4383
+ #~ msgid "Gap analysis and breach notifications"
4384
+ #~ msgstr "Анализ на пропуските и уведомления за нарушения"
4385
+
4386
+ #~ msgctxt "(Admin)"
4387
+ #~ msgid "In depth activity log with all GDPR, CCPA, etc actions evidenced"
4388
+ #~ msgstr ""
4389
+ #~ "В дълбочина на дневника за дейностите се разкриват всички действия на "
4390
+ #~ "GDPR, CCPA и т.н."
4391
+
4392
+ #~ msgctxt "(Admin)"
4393
+ #~ msgid "Highlights areas of concern and where you need to focus"
4394
+ #~ msgstr ""
4395
+ #~ "Подчертава областите на загриженост и къде трябва да се съсредоточите"
4396
+
4397
+ #~ msgctxt "(Admin)"
4398
+ #~ msgid ""
4399
+ #~ "eLearning platform with access for all staff to ensure privacy regulation "
4400
+ #~ "compliance and obligations"
4401
+ #~ msgstr ""
4402
+ #~ "eLearning платформа с достъп за целия персонал, за да се гарантира "
4403
+ #~ "спазването и задълженията за регулиране на поверителността"
4404
+
4405
+ #~ msgctxt "(Admin)"
4406
+ #~ msgid "Tracks who accesses the system, when and why"
4407
+ #~ msgstr "Проследява кой влиза в системата, кога и защо"
4408
+
4409
+ #~ msgctxt "(Admin)"
4410
+ #~ msgid ""
4411
+ #~ "Our system enables your business to demonstrate its obligations in "
4412
+ #~ "protecting your customer data, show understanding of your business "
4413
+ #~ "activities and deliver eLearning and online tests to employees, ensuring "
4414
+ #~ "everyone in your company understands your privacy compliance rules and "
4415
+ #~ "best practices to operate."
4416
+ #~ msgstr ""
4417
+ #~ "Нашата система дава възможност на вашия бизнес да демонстрира "
4418
+ #~ "задълженията си в защитата на вашите клиентски данни, да покаже разбиране "
4419
+ #~ "на вашите бизнес дейности и да предостави електронно обучение и онлайн "
4420
+ #~ "тестове на служителите, като гарантира, че всеки във вашата компания "
4421
+ #~ "разбира правилата за спазване на поверителността и най-добрите практики "
4422
+ #~ "за работа."
4423
+
4424
+ #~ msgctxt "(Admin)"
4425
+ #~ msgid "Enable WooCommerce data on GDPR tool"
4426
+ #~ msgstr "Активиране на данните за WooCommerce за инструмента GDPR"
languages/gdpr-framework-da_DK.mo CHANGED
Binary file
languages/gdpr-framework-da_DK.po CHANGED
@@ -7,358 +7,767 @@ msgid ""
7
  msgstr ""
8
  "Project-Id-Version: The GDPR Framework 1.0\n"
9
  "Report-Msgid-Bugs-To: gdpr@codelight.eu\n"
10
- "POT-Creation-Date: 2018-04-16 10:50+0000\n"
11
- "PO-Revision-Date: 2019-09-19 12:37+0530\n"
12
  "Last-Translator: Stefan Butz <webmaster@die-blaue-eisdiele.de>\n"
 
 
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
- "X-Generator: Poedit 1.5.7\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "Language: de-DE\n"
19
- "Language-Team: Deutsch\n"
20
 
21
- #: gdpr-framework.php:26
22
  msgctxt "(Admin)"
23
  msgid "WordPress GDPR &rsaquo; Error"
24
- msgstr "WordPress GDPR & rsaquo; Fejl"
 
 
 
 
 
25
 
26
- #: gdpr-framework.php:35
27
  msgctxt "(Admin)"
28
  msgid "Invalid PHP version"
29
- msgstr "Ugyldig PHP-version"
30
 
31
- #: gdpr-framework.php:35
32
  msgctxt "(Admin)"
33
- msgid "You must be using PHP 5.6.33 or greater."
34
- msgstr "Du skal bruge PHP 5.6.33 eller højere."
35
 
36
- #: gdpr-framework.php:42
37
  msgctxt "(Admin)"
38
  msgid "Invalid WordPress version"
39
- msgstr "Ugyldig WordPress-version"
40
 
41
- #: gdpr-framework.php:42
42
  msgctxt "(Admin)"
43
- msgid "You must be using WordPress 4.3.0 or greater."
44
- msgstr "Du skal bruge WordPress 4.3.0 eller nyere."
45
 
46
- #: gdpr-framework.php:52
47
  msgctxt "(Admin)"
48
  msgid ""
49
  "You appear to be running a development version of GDPR. You must run "
50
  "<code>composer install</code> from the plugin directory."
51
  msgstr ""
52
- "Du ser ud til at køre en udviklingsversion af GDPR. Du skal køre <code> "
53
- "komponentinstallation </ code> fra plugin biblioteket."
54
 
55
- #: gdpr-framework.php:53
56
  msgctxt "(Admin)"
57
  msgid "Autoloader not found."
58
- msgstr "Autoloader ikke fundet."
59
 
60
- #: gdpr-framework.php:115
61
- msgctxt "(Admin)"
62
- msgid "Anonymous"
63
- msgstr "Anonym"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64
 
65
- #: src/Admin/AdminTab.php:115
 
 
 
 
 
66
  msgctxt "(Admin)"
67
  msgid "Save"
68
- msgstr "Gemme"
69
 
70
- #: src/Admin/AdminTab.php:151
71
  msgctxt "(Admin)"
72
  msgid "Policy generated!"
73
- msgstr "Politik genereret!"
74
 
75
  #: src/Admin/AdminTabGeneral.php:11
76
  msgctxt "(Admin)"
77
  msgid "General"
78
- msgstr "Generel"
79
 
80
- #: src/Admin/AdminTabGeneral.php:38
81
  msgctxt "(Admin)"
82
  msgid "General Settings"
83
- msgstr "Generelle indstillinger"
84
 
85
- #: src/Admin/AdminTabGeneral.php:43
86
  msgctxt "(Admin)"
87
  msgid "Enable Privacy Tools"
88
- msgstr "Aktivér privatlivsværktøjer"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89
 
90
- #: src/Admin/AdminTabGeneral.php:53
 
 
 
 
 
91
  msgctxt "(Admin)"
92
  msgid "Pages"
93
- msgstr "sider"
94
 
95
- #: src/Admin/AdminTabGeneral.php:58 src/Admin/WordpressAdmin.php:151
96
  msgctxt "(Admin)"
97
  msgid "Privacy Tools Page"
98
- msgstr "Privacy Tools Page"
 
 
 
 
 
99
 
100
- #: src/Admin/AdminTabGeneral.php:65 src/Admin/WordpressAdmin.php:147
101
  msgctxt "(Admin)"
102
  msgid "Privacy Policy Page"
103
- msgstr "Privacy Policy Side"
 
 
 
 
 
104
 
105
- #: src/Admin/AdminTabGeneral.php:72
106
  msgctxt "(Admin)"
107
  msgid "Terms & Conditions Page"
108
- msgstr "Vilkår og betingelser Side"
 
 
 
 
 
109
 
110
- #: src/Admin/AdminTabGeneral.php:82
111
  msgctxt "(Admin)"
112
  msgid "View & Export Data"
113
- msgstr "Vis og eksporter data"
114
 
115
- #: src/Admin/AdminTabGeneral.php:87
116
  msgctxt "(Admin)"
117
  msgid "Export action"
118
- msgstr "Eksporter handling"
119
 
120
- #: src/Admin/AdminTabGeneral.php:94 src/Admin/AdminTabGeneral.php:133
121
  msgctxt "(Admin)"
122
  msgid "Email to notify"
123
- msgstr "Email til at underrette"
124
 
125
- #: src/Admin/AdminTabGeneral.php:105
126
  msgctxt "(Admin)"
127
  msgid "Delete & Anonymize Data"
128
- msgstr "Slet & anonymiser data"
129
 
130
- #: src/Admin/AdminTabGeneral.php:110
131
  msgctxt "(Admin)"
132
  msgid "Delete action"
133
- msgstr "Delete action"
134
 
135
- #: src/Admin/AdminTabGeneral.php:117
136
  msgctxt "(Admin)"
137
  msgid "Delete or reassign content?"
138
- msgstr "Slet eller omfordele indhold?"
139
 
140
- #: src/Admin/AdminTabGeneral.php:125
141
  msgctxt "(Admin)"
142
  msgid "Reassign content to"
143
- msgstr "Omfordele indhold til"
144
 
145
- #: src/Admin/AdminTabGeneral.php:145
146
  msgctxt "(Admin)"
147
  msgid "Styling"
148
  msgstr "Styling"
149
 
150
- #: src/Admin/AdminTabGeneral.php:150
151
  msgctxt "(Admin)"
152
  msgid "Enable basic styling on Privacy Tools page"
153
- msgstr ""
154
- "Aktivér grundlæggende styling på siden Beskyttelse af personlige oplysninger"
155
 
156
- #: src/Admin/AdminTabGeneral.php:162
157
  msgctxt "(Admin)"
158
  msgid "Compatibility"
159
- msgstr "Kompatibilitet"
160
 
161
- #: src/Admin/AdminTabGeneral.php:167
162
  msgctxt "(Admin)"
163
  msgid "Enable automatic theme compatibility"
164
- msgstr "Aktivér automatisk tema kompatibilitet"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
165
 
166
- #: src/Admin/AdminTabGeneral.php:184 src/Admin/AdminTabGeneral.php:200
167
- #: src/Admin/AdminTabGeneral.php:213 src/Admin/AdminTabGeneral.php:252
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
168
  #: views/installer/steps/configuration-settings.php:62
169
  msgctxt "(Admin)"
170
  msgid "&mdash; Select &mdash;"
171
- msgstr "&mdash; Vælg &mdash;"
172
 
173
- #: src/Admin/WordpressAdmin.php:65
174
  msgctxt "(Admin)"
175
  msgid "Privacy & GDPR Settings"
176
- msgstr "Privacy & GDPR Settings"
177
 
178
- #: src/Admin/WordpressAdmin.php:66
179
  msgctxt "(Admin)"
180
- msgid "Privacy"
181
- msgstr "Privatliv"
 
 
 
 
 
 
 
 
 
182
 
183
  #: src/Components/Consent/AdminTabConsent.php:30
184
- #: src/Components/Consent/AdminTabConsent.php:49
185
  msgctxt "(Admin)"
186
  msgid "Consent"
187
  msgstr "Samtykke"
188
 
189
- #: src/Components/Consent/AdminTabConsent.php:157
 
 
 
 
 
 
 
 
 
 
190
  msgctxt "(Admin)"
191
  msgid "Consent slug is a required field!"
192
- msgstr "Samtykke slug er et obligatorisk felt!"
193
 
194
- #: src/Components/Consent/AdminTabConsent.php:162
195
  msgctxt "(Admin)"
196
  msgid ""
197
  "You may only use alphanumeric characters, dash and underscore in the consent "
198
  "slug field."
199
  msgstr ""
200
- "Du kun bruge alfanumeriske tegn, bindestreg og understregning i "
201
- "samtykkefliken."
202
 
203
- #: src/Components/Consent/AdminTabConsent.php:167
204
  msgctxt "(Admin)"
205
  msgid "Consent title is a required field!"
206
- msgstr "Samtykke titel er et påkrævet felt!"
 
 
 
 
 
 
 
 
 
207
 
208
- #: src/Components/Consent/ConsentManager.php:46
209
- #: views/modules/contact-form-7/content-privacy.php:2
210
- #: views/modules/wordpress-comments/terms-checkbox.php:14
211
- #: views/modules/wordpress-user/registration-terms-checkbox.php:15
 
 
 
 
 
 
 
212
  #, php-format
213
  msgid "I accept the %sPrivacy Policy%s"
214
  msgstr "Jeg accepterer %sPrivacy Policy%s"
215
 
216
- #: src/Components/Consent/ConsentManager.php:50
217
- #: src/Components/Consent/ConsentManager.php:69
218
  msgctxt "(Admin)"
219
  msgid ""
220
  "This consent is not visible by default. If someone wishes to withdraw it, "
221
  "they should simply request to delete all their data."
222
  msgstr ""
223
- "Dette samtykke er som standard ikke synligt. Hvis nogen ønsker at trække den "
224
- "tilbage, skal de blot anmode om at slette alle deres data."
225
 
226
- #: src/Components/Consent/ConsentManager.php:65
227
  #, php-format
228
  msgid "I accept the %sTerms & Conditions%s"
229
  msgstr "Jeg accepterer %sVilkår og Betingelser%s"
230
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
231
  #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:19
232
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:61
233
  #: views/admin/privacy-policy/generated.php:1 views/installer/header.php:41
234
  msgctxt "(Admin)"
235
  msgid "Privacy Policy"
236
  msgstr "Fortrolighedspolitik"
237
 
238
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:70
239
  msgctxt "(Admin)"
240
  msgid "Company information"
241
- msgstr "Virksomhedsoplysninger"
242
 
243
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:75
244
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:209
245
  msgctxt "(Admin)"
246
  msgid "Company Name"
247
- msgstr "firmanavn"
248
 
249
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:82
250
  msgctxt "(Admin)"
251
  msgid "Company Email"
252
- msgstr "Firma Email"
253
 
254
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:89
255
  msgctxt "(Admin)"
256
  msgid "Company Location"
257
- msgstr "Virksomhedens placering"
258
 
259
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:105
260
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:245
261
  msgctxt "(Admin)"
262
  msgid "Representative Contact Name"
263
- msgstr "Repræsentant Kontaktnavn"
264
 
265
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:112
266
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:252
267
  msgctxt "(Admin)"
268
  msgid "Representative Contact Email"
269
- msgstr "Repræsentativ Kontakt Email"
270
 
271
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:119
272
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:259
273
  msgctxt "(Admin)"
274
  msgid "Representative Contact Phone"
275
- msgstr "Repræsentativ Kontakt Telefon"
276
 
277
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:135
278
  msgctxt "(Admin)"
279
  msgid "Data Protection Authority"
280
- msgstr "Databeskyttelsesmyndighed"
281
 
282
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:141
283
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:286
284
  msgctxt "(Admin)"
285
  msgid "Data Protection Authority Website"
286
- msgstr "Databeskyttelsesmyndighedens hjemmeside"
287
 
288
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:148
289
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:293
290
  msgctxt "(Admin)"
291
  msgid "Data Protection Authority Email"
292
- msgstr "Data Protection Authority Email"
293
 
294
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:155
295
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:300
296
  msgctxt "(Admin)"
297
  msgid "Data Protection Authority Phone"
298
- msgstr "Datatilsynets telefon"
299
 
300
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:165
301
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:175
302
  msgctxt "(Admin)"
303
  msgid "Data Protection Officer"
304
- msgstr "Databeskyttelsesofficer"
305
 
306
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:168
307
  msgctxt "(Admin)"
308
  msgid "Knowledge base: Do I need to appoint a Data Protection Officer?"
309
- msgstr "Videnbase: Skal jeg udpege en databeskyttelsesofficer?"
310
 
311
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:182
312
  msgctxt "(Admin)"
313
  msgid "Data Protection Officer Name"
314
- msgstr "Navn databeskyttelsesansvarlig"
315
 
316
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:190
317
  msgctxt "(Admin)"
318
  msgid "Data Protection Officer Email"
319
- msgstr "Databeskyttelsesofficer Email"
 
 
 
 
 
 
 
 
 
320
 
321
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:216
322
  msgctxt "(Admin)"
323
  msgid "Contact Email"
324
- msgstr "Kontakt Email"
325
 
326
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:235
327
  msgctxt "(Admin)"
328
  msgid "Representative Contact"
329
- msgstr "Repræsentativ Kontakt"
330
 
331
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:238
332
  msgctxt "(Admin)"
333
  msgid "Knowledge base: Do I need to appoint an EU-based representative?"
334
- msgstr "Videnbase: Skal jeg udpege en EU-baseret repræsentant?"
 
335
 
336
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:317
337
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:324
 
 
 
 
 
338
  msgctxt "(Admin)"
339
  msgid "DPO Name"
340
- msgstr "DPO Navn"
 
 
 
 
 
341
 
342
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:420
343
  msgctxt "(Admin)"
344
  msgid "Save & Generate Policy"
345
- msgstr "Gem og generer politik"
346
 
347
- #: src/Components/PrivacyPolicy/PrivacyPolicy.php:82
348
- #: src/Installer/Installer.php:271 src/Installer/Steps/PolicySettings.php:199
349
  #: views/themes/storefront/footer.php:3
350
  #: views/themes/twentyseventeen/footer.php:3
351
  #: views/themes/twentysixteen/footer.php:4
352
  msgid "Privacy Policy"
353
  msgstr "Fortrolighedspolitik"
354
 
355
- #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
356
  msgid "This page is currently disabled."
357
  msgstr "This page is currently disabled."
358
 
359
- #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:35
360
- #: src/Installer/Installer.php:279
361
- #: src/Installer/Steps/ConfigurationPages.php:55
 
 
 
 
 
362
  #: views/themes/storefront/footer.php:7
363
  #: views/themes/twentyseventeen/footer.php:7
364
  #: views/themes/twentysixteen/footer.php:9
@@ -371,12 +780,6 @@ msgctxt "(Admin)"
371
  msgid "Support"
372
  msgstr "Support"
373
 
374
- #: src/Components/WordpressComments/WordpressComments.php:90
375
- #, php-format
376
- msgid "%sERROR:%s You need to accept the privacy policy to post a comment."
377
- msgstr ""
378
- "%sfejl:%s Du skal acceptere privatlivspolitikken for at skrive en kommentar."
379
-
380
  #: src/Components/WordpressUser/Controllers/DashboardDataPageController.php:54
381
  #: views/privacy-tools/notices.php:19
382
  msgid "We have received your request and will reply within 30 days."
@@ -387,7 +790,7 @@ msgstr "Vi har modtaget din anmodning og vil svare inden for 30 dage."
387
  msgid "Consent withdrawn."
388
  msgstr "Samtykke tilbagekaldt."
389
 
390
- #: src/Components/WordpressUser/RegistrationForm.php:42
391
  msgid "<strong>ERROR</strong>: You must accept the terms and conditions."
392
  msgstr ""
393
  "<strong> FEJL </ strong>: Du skal acceptere vilkårene og betingelserne."
@@ -401,9 +804,15 @@ msgstr "Beskyttelse af personlige oplysninger"
401
 
402
  #: src/DataSubject/AdminTabDataSubject.php:27
403
  #: src/DataSubject/AdminTabDataSubject.php:41
 
 
 
404
  msgctxt "(Admin)"
405
  msgid "Data Subjects"
406
- msgstr "Data emner"
 
 
 
407
 
408
  #: src/DataSubject/DataRepository.php:143
409
  msgid "Data exported"
@@ -421,15 +830,15 @@ msgstr "Data fjernet"
421
  msgid "Data removal request"
422
  msgstr "Data fjernelse anmodning"
423
 
424
- #: src/DataSubject/DataSubjectIdentificator.php:65
425
- #: src/DataSubject/DataSubjectIdentificator.php:82
426
  msgid "Your personal data on"
427
  msgstr "Dine personlige data på"
428
 
429
  #: src/Helpers.php:27
430
  msgctxt "(Admin)"
431
  msgid "Austria"
432
- msgstr "Austria"
433
 
434
  #: src/Helpers.php:28
435
  msgctxt "(Admin)"
@@ -454,7 +863,7 @@ msgstr "Zypern"
454
  #: src/Helpers.php:32
455
  msgctxt "(Admin)"
456
  msgid "Czech Republic"
457
- msgstr "Tschechische Republik"
458
 
459
  #: src/Helpers.php:33
460
  msgctxt "(Admin)"
@@ -566,1297 +975,1608 @@ msgctxt "(Admin)"
566
  msgid "United Kingdom"
567
  msgstr "Großbritannien"
568
 
569
- #: src/Helpers.php:69
 
570
  msgctxt "(Admin)"
571
- msgid "Iceland"
572
- msgstr "Island"
573
 
574
- #: src/Helpers.php:70
575
  msgctxt "(Admin)"
576
- msgid "Norway"
577
- msgstr "Norwegen"
578
 
579
- #: src/Helpers.php:71
580
  msgctxt "(Admin)"
581
- msgid "Liechtenstein"
582
- msgstr "Liechtenstein"
583
 
584
- #: src/Helpers.php:72
585
  msgctxt "(Admin)"
586
- msgid "Switzerland"
587
- msgstr "Schweiz"
588
 
589
- #: src/Helpers.php:73
 
590
  msgctxt "(Admin)"
591
- msgid "United States"
592
- msgstr "USA"
593
 
594
- #: src/Helpers.php:74
595
  msgctxt "(Admin)"
596
- msgid "Rest of the world"
597
- msgstr "Resten af ​​verdenen"
598
 
599
- #: src/Helpers.php:145
600
- msgid "An error has occurred. Please contact the site administrator."
601
- msgstr "Der opstod en fejl. Kontakt venligst webstedsadministratoren."
 
602
 
603
- #: src/Installer/Installer.php:135
604
  msgctxt "(Admin)"
605
- msgid "Setup Wizard"
606
- msgstr "Opsætningsguide"
607
 
608
- #: src/Installer/Steps/ConfigurationPages.php:23
609
- #: src/Installer/Steps/PolicySettings.php:23
610
- #: src/Installer/Steps/PolicySettings.php:48
611
  msgctxt "(Admin)"
612
- msgid "&mdash; Create a new page &mdash;"
613
- msgstr "&mdash; Opret en ny side &mdash;"
614
 
615
- #: src/Installer/Steps/PolicySettings.php:38
616
  msgctxt "(Admin)"
617
- msgid ""
618
- "We have automatically selected your WooCommerce Terms & Conditions page."
619
- msgstr "Vi har automatisk valgt din WooCommerce Betingelser side."
620
 
621
- #: src/Modules/ContactForm7/ContactForm7.php:35
622
  msgctxt "(Admin)"
623
- msgid "gdpr terms txt"
624
- msgstr "gdpr termer txt"
625
 
626
- #: src/Router.php:80 src/Router.php:92 src/Router.php:125 src/Router.php:141
627
- #, php-format
628
- msgid "Nonce error for action \"%s\". Please go back and try again!"
629
- msgstr "Nonce fejl til handling \"%s \". Venligst gå tilbage og prøv igen!"
630
 
631
- #: src/Router.php:149
632
  msgctxt "(Admin)"
633
- msgid "You do not have the required permissions to perform this action!"
634
- msgstr "Du har ikke de nødvendige tilladelser til at udføre denne handling!"
635
 
636
- #: views/admin/consent.php:3
637
  msgctxt "(Admin)"
638
- msgid "Default consent types"
639
- msgstr "Standard samtykke typer"
640
 
641
- #: views/admin/consent.php:4
642
  msgctxt "(Admin)"
643
- msgid ""
644
- "These are the consent types that have been automatically registered by the "
645
- "framework or a plugin."
646
- msgstr ""
647
- "Dette er de samtykke typer, der er registreret automatisk af rammen eller et "
648
- "plugin."
649
 
650
- #: views/admin/consent.php:7 views/admin/consent.php:52
651
  msgctxt "(Admin)"
652
- msgid "Slug"
653
- msgstr "Slug"
654
 
655
- #: views/admin/consent.php:8 views/admin/consent.php:38
656
- #: views/admin/consent.php:60
657
  msgctxt "(Admin)"
658
- msgid "Title"
659
- msgstr "Titel"
660
 
661
- #: views/admin/consent.php:9 views/admin/consent.php:41
662
- #: views/admin/consent.php:63
663
  msgctxt "(Admin)"
664
- msgid "Description"
665
- msgstr "Beskrivelse"
666
 
667
- #: views/admin/consent.php:10
668
  msgctxt "(Admin)"
669
- msgid "Visibility"
670
- msgstr "Sigtbarhed"
671
 
672
- #: views/admin/consent.php:18
673
  msgctxt "(Admin)"
674
- msgid "Visible"
675
- msgstr "Synlig"
676
 
677
- #: views/admin/consent.php:20
678
  msgctxt "(Admin)"
679
- msgid "Hidden"
680
- msgstr "Skjult"
681
 
682
- #: views/admin/consent.php:29
683
  msgctxt "(Admin)"
684
- msgid "Custom consent types"
685
- msgstr "Brugerdefinerede samtykke typer"
686
 
687
- #: views/admin/consent.php:30
688
  msgctxt "(Admin)"
689
- msgid ""
690
- "Here you can add custom consent types to track. They will not be used "
691
- "anywhere by default - you will need to build an integration for each of them."
692
- msgstr ""
693
- "Her kan du tilføje tilpassede samtykke typer til at spore. De vil ikke blive "
694
- "brugt som standard som standard - du skal bygge en integration for hver af "
695
- "dem."
696
 
697
- #: views/admin/consent.php:35
698
  msgctxt "(Admin)"
699
- msgid "Machine-readable slug"
700
- msgstr "Maskinlæsbar slug"
701
 
702
- #: views/admin/consent.php:44 views/admin/consent.php:68
703
  msgctxt "(Admin)"
704
- msgid "Visible?"
705
- msgstr "Synlig?"
706
 
707
- #: views/admin/consent.php:72
708
  msgctxt "(Admin)"
709
- msgid "Remove"
710
- msgstr "Fjerne"
711
 
712
- #: views/admin/consent.php:93
713
  msgctxt "(Admin)"
714
- msgid "Additional info"
715
- msgstr "Yderligere information"
716
 
717
- #: views/admin/consent.php:95
718
  msgctxt "(Admin)"
719
- msgid ""
720
- "This text will be displayed to your data subjects on the Privacy Tools page."
721
- msgstr ""
722
- "Denne tekst bliver vist til dine registrerede på siden Beskyttelse af "
723
- "personlige oplysninger."
724
 
725
- #: views/admin/data-subjects/search-form.php:2
726
  msgctxt "(Admin)"
727
- msgid ""
728
- "On this page, you can find which data subjects personal data you are storing "
729
- "and download, export or delete it."
730
- msgstr ""
731
- "På denne side kan du finde ud af hvilke personoplysninger du gemmer og "
732
- "downloader, eksporterer eller sletter."
733
 
734
- #: views/admin/data-subjects/search-form.php:10
735
  msgctxt "(Admin)"
736
- msgid "Find data subject by email"
737
- msgstr "Find registrerede via e-mail"
738
 
739
- #: views/admin/data-subjects/search-form.php:11
740
  msgctxt "(Admin)"
741
- msgid "Email address"
742
- msgstr "Email address"
743
 
744
- #: views/admin/data-subjects/search-form.php:16
745
  msgctxt "(Admin)"
746
- msgid "Search"
747
- msgstr "Søg"
748
 
749
- #: views/admin/data-subjects/search-results.php:7
750
  msgctxt "(Admin)"
751
- msgid "Username"
752
- msgstr "Brugernavn"
753
 
754
- #: views/admin/data-subjects/search-results.php:12
755
  msgctxt "(Admin)"
756
- msgid "is not a registered user."
757
- msgstr "er ikke en registreret bruger."
758
 
759
- #: views/admin/data-subjects/search-results.php:16
760
  msgctxt "(Admin)"
761
- msgid "Download data (html)"
762
- msgstr "Download data (html)"
763
 
764
- #: views/admin/data-subjects/search-results.php:17
765
  msgctxt "(Admin)"
766
- msgid "Export data (json)"
767
- msgstr "Eksporter data (json)"
768
 
769
- #: views/admin/data-subjects/search-results.php:21
770
  msgctxt "(Admin)"
771
- msgid ""
772
- "This user has admin capabilities. Deleting data via this interface is "
773
- "disabled."
774
- msgstr ""
775
- "Denne bruger har administratorfunktioner. Sletning af data via denne "
776
- "grænseflade er deaktiveret."
777
 
778
- #: views/admin/data-subjects/search-results.php:24
779
  msgctxt "(Admin)"
780
- msgid "Anonymize data"
781
- msgstr "Anonymiser data"
782
 
783
- #: views/admin/data-subjects/search-results.php:25
784
  msgctxt "(Admin)"
785
- msgid "Delete data"
786
- msgstr "Slet data"
787
 
788
- #: views/admin/data-subjects/search-results.php:29
789
  msgctxt "(Admin)"
790
- msgid "No data found!"
791
- msgstr "Ingen data fundet!"
792
 
793
- #: views/admin/general/delete-action-email.php:5
794
- #: views/admin/general/export-action-email.php:5
795
- #: views/installer/steps/configuration-settings.php:29
796
- #: views/installer/steps/configuration-settings.php:79
797
- msgid "Email address"
798
- msgstr "Email adresse"
799
 
800
- #: views/admin/general/delete-action-reassign.php:3
801
- #: views/installer/steps/configuration-settings.php:50
802
  msgctxt "(Admin)"
803
- msgid "Delete content"
804
- msgstr "Slet indhold"
805
 
806
- #: views/admin/general/delete-action-reassign.php:6
807
- #: views/installer/steps/configuration-settings.php:53
808
  msgctxt "(Admin)"
809
- msgid "Reassign content to a user"
810
- msgstr "Omfordele indhold til en bruger"
811
 
812
- #: views/admin/general/delete-action-reassign.php:10
813
  msgctxt "(Admin)"
814
- msgid ""
815
- "If the user has submitted any content on your site, should it be deleted or "
816
- "reassigned to another user?"
817
- msgstr ""
818
- "Hvis brugeren har indsendt indhold på dit websted, skal den slettes eller "
819
- "tildeles til en anden bruger?"
820
 
821
- #: views/admin/general/description-data-page.php:2
822
  msgctxt "(Admin)"
823
- msgid ""
824
- "Select the page where users can go to control their data. This page must "
825
- "contain the [gdpr_privacy_tools] shortcode."
826
- msgstr ""
827
- "Vælg den side, hvor brugerne kan gå for at kontrollere deres data. Denne "
828
- "side skal indeholde [gdpr_privacy_tools] shortcode."
829
 
830
- #: views/admin/general/enable.php:9
831
  msgctxt "(Admin)"
832
- msgid "Enable the view, export and forget functionality for users and visitors"
833
- msgstr ""
834
- "Aktivér visningen, eksporter og glem funktionaliteten for brugere og "
835
- "besøgende"
836
 
837
- #: views/admin/general/enable.php:12
838
  msgctxt "(Admin)"
839
- msgid ""
840
- "Enable the Privacy Tools page on front-end and dashboard. This allows "
841
- "visitors to request viewing and deleting their personal data and withdraw "
842
- "consents."
843
- msgstr ""
844
- "Aktivér siden for beskyttelse af personlige oplysninger på front-end og "
845
- "dashboard. Dette gør det muligt for besøgende at anmode om at se og slette "
846
- "deres personlige data og trække samtykker tilbage."
847
 
848
- #: views/admin/general/theme-compatibility.php:9
849
- #: views/installer/steps/integrations.php:21
850
  msgctxt "(Admin)"
851
- msgid ""
852
- "Automatically add Privacy Policy and Privacy Tools links to your site footer."
853
- msgstr ""
854
- "Tilføj automatisk Privacy Policy og Privacy Tools links til dit websted "
855
- "footer."
856
 
857
- #: views/admin/notices/header.php:4 views/admin/settings-page.php:3
858
- #: views/installer/header.php:23
859
  msgctxt "(Admin)"
860
- msgid "The GDPR Framework"
861
- msgstr "GDPR-rammen"
862
 
863
- #: views/admin/notices/helper-autoinstall.php:2
864
  msgctxt "(Admin)"
865
- msgid ""
866
- "A Privacy Policy page has been created, but it is empty. You can generate a "
867
- "policy template on this page."
868
- msgstr ""
869
- "En side om beskyttelse af personlige oplysninger er blevet oprettet, men den "
870
- "er tom. Du kan oprette en policy skabelon på denne side."
871
 
872
- #: views/admin/notices/helper-policy.php:2
873
  msgctxt "(Admin)"
874
- msgid ""
875
- "Heads up - your Privacy Policy still requires some attention. Find the "
876
- "places marked with [TODO] and replace them with real content!"
877
- msgstr ""
878
- "Heads up - din privatlivspolitik kræver stadig en vis opmærksomhed. Find de "
879
- "steder, der er markeret med [TODO], og erstat dem med ægte indhold!"
880
 
881
- #: views/admin/notices/helper-tools.php:2
 
882
  msgctxt "(Admin)"
883
- msgid ""
884
- "The contents of this page should contain the [gdpr_privacy_tools] shortcode."
885
- msgstr "Indholdet på denne side skal indeholde [gdpr_privacy_tools] shortcode."
886
 
887
- #: views/admin/privacy-policy/description-policy-page.php:2
888
  msgctxt "(Admin)"
889
- msgid "Select the page which will contain your Privacy Policy"
890
- msgstr "Vælg den side, der indeholder din privatlivspolitik"
891
 
892
- #: views/admin/privacy-policy/generated.php:3
893
  msgctxt "(Admin)"
894
- msgid "Your Privacy Policy has been generated."
895
- msgstr "Din privatlivspolitik er blevet genereret."
896
 
897
- #: views/admin/privacy-policy/generated.php:20
898
  msgctxt "(Admin)"
899
- msgid "&laquo; Back"
900
- msgstr "&laquo; Tilbage"
901
 
902
- #: views/admin/privacy-policy/header.php:2
903
  msgctxt "(Admin)"
904
- msgid ""
905
- "This page allows you to generate a Privacy Policy based on the information "
906
- "you entered below."
907
- msgstr ""
908
- "Denne side giver dig mulighed for at generere en privatlivspolitik baseret "
909
- "på de oplysninger, du indtastede herunder."
910
 
911
- #: views/admin/settings-page.php:31
912
- #, php-format
913
  msgctxt "(Admin)"
914
- msgid "The GDPR Framework. Built with &#9829; by %sCodelight%s."
915
- msgstr "GDPR-rammen. Bygget med &#9829; ved %sCodelight%s."
916
 
917
- #: views/admin/support/contents.php:5 views/installer/steps/finish.php:10
918
  msgctxt "(Admin)"
919
- msgid "Need more info?"
920
- msgstr "Har du brug for mere info?"
921
 
922
- #: views/admin/support/contents.php:11 views/installer/steps/finish.php:16
923
  msgctxt "(Admin)"
924
- msgid "Site Owner's guide to GDPR"
925
- msgstr "Site Owner's Guide til GDPR"
926
 
927
- #: views/admin/support/contents.php:14 views/installer/steps/finish.php:19
928
  msgctxt "(Admin)"
929
- msgid "Read the full guide on GDPR compliance."
930
- msgstr "Læs den komplette vejledning om overholdelse af GDPR."
931
 
932
- #: views/admin/support/contents.php:20 views/installer/steps/finish.php:25
933
  msgctxt "(Admin)"
934
- msgid "Knowledge base"
935
- msgstr "Videnbase"
936
 
937
- #: views/admin/support/contents.php:23 views/installer/steps/finish.php:28
938
  msgctxt "(Admin)"
939
- msgid "Check out the knowledge base for common questions and answers."
940
- msgstr "Tjek kendskabet til almindelige spørgsmål og svar."
941
 
942
- #: views/admin/support/contents.php:29 views/installer/steps/finish.php:34
943
  msgctxt "(Admin)"
944
- msgid "Developer's guide to GDPR"
945
- msgstr "Udviklerens vejledning til GDPR"
946
 
947
- #: views/admin/support/contents.php:32 views/installer/steps/finish.php:37
948
  msgctxt "(Admin)"
949
- msgid "We have a thorough guide to help making custom sites compliant."
950
- msgstr ""
951
- "Vi har en grundig vejledning, der hjælper med at gøre brugerdefinerede "
952
- "websteder kompatible."
953
 
954
- #: views/admin/support/contents.php:40 views/installer/steps/finish.php:45
955
  msgctxt "(Admin)"
956
- msgid "Need help?"
957
- msgstr "Brug for hjælp?"
958
 
959
- #: views/admin/support/contents.php:46 views/installer/steps/finish.php:51
960
  msgctxt "(Admin)"
961
- msgid "Submit a support request"
962
- msgstr "Indsend en supportanmodning"
963
 
964
- #: views/admin/support/contents.php:49 views/installer/steps/finish.php:54
965
  msgctxt "(Admin)"
966
- msgid ""
967
- "Found a bug or problem with the plugin? Post in the wordpress.org support "
968
- "forum."
969
- msgstr ""
970
- "Har du fundet en fejl eller et problem med plugin? Indsend i wordpress.org "
971
- "support forum."
972
 
973
- #: views/admin/support/contents.php:55 views/installer/steps/finish.php:60
974
  msgctxt "(Admin)"
975
- msgid "Request a consultation"
976
- msgstr "Anmod om høring"
977
 
978
- #: views/admin/support/contents.php:58 views/installer/steps/finish.php:63
979
  msgctxt "(Admin)"
980
- msgid ""
981
- "Need development or legal assistance in making your site compliant? We can "
982
- "help!"
983
- msgstr ""
984
- "Har du brug for udvikling eller juridisk bistand til at gøre dit websted "
985
- "kompatibelt? Vi kan hjælpe!"
986
 
987
- #: views/admin/wizard-buttons.php:2
988
  msgctxt "(Admin)"
989
- msgid "Restart setup wizard"
990
- msgstr "Genstart installationsguiden"
991
 
992
- #: views/email/action-export.php:8 views/email/action-forget.php:12
993
  msgctxt "(Admin)"
994
- msgid ""
995
- "This email is just for your information. You don't need to take any action"
996
- msgstr "Denne email er kun til din information. Du behøver ikke at gøre noget"
997
 
998
- #: views/email/action-forget.php:8
999
  msgctxt "(Admin)"
1000
- msgid "The data subject had a user account on your website."
1001
- msgstr "Den registrerede havde en brugerkonto på din hjemmeside."
1002
 
1003
- #: views/email/identify-data-subject.php:2
1004
- msgid "Someone has requested access to your data on"
1005
- msgstr "Nogen har bedt om adgang til dine data på"
 
 
1006
 
1007
- #: views/email/identify-data-subject.php:3
1008
- msgid "If this was a mistake, just ignore this email and nothing will happen."
1009
- msgstr ""
1010
- "Hvis dette var en fejl, ignorerer du bare denne email, og der sker ikke "
1011
- "noget."
1012
 
1013
- #: views/email/identify-data-subject.php:4
1014
- msgid "To manage your data, visit the following address:"
1015
- msgstr "For at administrere dine data skal du besøge følgende adresse:"
 
1016
 
1017
- #: views/email/identify-data-subject.php:10
1018
- msgid "This link is valid for 15 minutes."
1019
- msgstr "Dette link er gyldigt i 15 minutter."
 
1020
 
1021
- #: views/email/no-data.php:2
1022
- msgid "Someone has requested information about your personal data on"
1023
- msgstr "Nogen har bedt om oplysninger om dine personlige data på"
 
 
1024
 
1025
- #: views/email/no-data.php:3
1026
- msgid "None of your personal data is stored on"
1027
- msgstr "Ingen af ​​dine personlige data gemmes på"
 
 
1028
 
1029
- #: views/email/no-data.php:5
1030
- msgid ""
1031
- "If this was a mistake or you did not request this email, just ignore it and "
1032
- "nothing will happen."
1033
- msgstr ""
1034
- "Hvis dette var en fejl eller du ikke anmodede om denne email, ignorerer du "
1035
- "bare det, og intet vil ske."
1036
 
1037
- #: views/email/request-export.php:13 views/email/request-forget.php:13
1038
  msgctxt "(Admin)"
1039
- msgid "As a reminder: according to GDPR, you have 30 days to comply."
1040
- msgstr "Som en påmindelse: Ifølge GDPR har du 30 dage til at overholde."
1041
 
1042
- #: views/global/delete-action.php:2
1043
  msgctxt "(Admin)"
1044
- msgid "Automatically anonymize data"
1045
- msgstr "Automatisk anonymisering af data"
1046
 
1047
- #: views/global/delete-action.php:5
 
1048
  msgctxt "(Admin)"
1049
- msgid "Automatically delete data"
1050
- msgstr "Slet automatisk data"
1051
 
1052
- #: views/global/delete-action.php:9
 
1053
  msgctxt "(Admin)"
1054
- msgid "Automatically anonymize data and notify me via email"
1055
- msgstr "Automatisk anonymisering af data og meddelelse mig via e-mail"
1056
 
1057
- #: views/global/delete-action.php:13
 
1058
  msgctxt "(Admin)"
1059
- msgid "Automatically delete data and notify me via email"
1060
- msgstr "Slet automatisk data og meddel mig via e-mail"
1061
 
1062
- #: views/global/delete-action.php:16 views/global/export-action.php:10
 
1063
  msgctxt "(Admin)"
1064
- msgid "Only notify me via email"
1065
- msgstr "Kun underret mig via e-mail"
1066
 
1067
- #: views/global/export-action.php:2
1068
  msgctxt "(Admin)"
1069
- msgid "Automatically download data"
1070
- msgstr "Download data automatisk"
1071
 
1072
- #: views/global/export-action.php:6
 
1073
  msgctxt "(Admin)"
1074
- msgid "Automatically download data and notify me via email"
1075
- msgstr "Download automatisk data og underret mig via e-mail"
1076
 
1077
- #: views/installer/continue-notice.php:2
 
1078
  msgctxt "(Admin)"
1079
- msgid "The The GDPR Framework setup has not been finalized yet."
1080
- msgstr "GDPR Framework-opsætningen er endnu ikke færdiggjort."
1081
 
1082
- #: views/installer/continue-notice.php:3
 
1083
  msgctxt "(Admin)"
1084
- msgid "You can continue the setup at any time."
1085
- msgstr "Du kan til enhver tid fortsætte opsætningen."
1086
 
1087
- #: views/installer/continue-notice.php:6
 
1088
  msgctxt "(Admin)"
1089
- msgid "Continue the setup wizard"
1090
- msgstr "Fortsæt installationsguiden"
1091
 
1092
- #: views/installer/continue-notice.php:9
 
1093
  msgctxt "(Admin)"
1094
- msgid "Hide this message"
1095
- msgstr "Skjul denne besked"
1096
 
1097
- #: views/installer/footer.php:7
1098
- msgid "Back"
1099
- msgstr "Tilbage"
 
 
1100
 
1101
- #: views/installer/header.php:26
 
1102
  msgctxt "(Admin)"
1103
- msgid "I need help"
1104
- msgstr "jeg har brug for hjælp"
1105
 
1106
- #: views/installer/header.php:29
 
1107
  msgctxt "(Admin)"
1108
- msgid "Developer Docs"
1109
- msgstr "Developer Docs"
1110
 
1111
- #: views/installer/header.php:36
 
1112
  msgctxt "(Admin)"
1113
- msgid "Configuration"
1114
- msgstr "Konfiguration"
1115
 
1116
- #: views/installer/header.php:46
 
1117
  msgctxt "(Admin)"
1118
- msgid "Forms & Consent"
1119
- msgstr "Formularer og samtykke"
1120
 
1121
- #: views/installer/header.php:51
 
1122
  msgctxt "(Admin)"
1123
- msgid "Integrations"
1124
- msgstr "integrationer"
1125
 
1126
- #: views/installer/steps/configuration-settings.php:23
1127
- #: views/installer/steps/configuration-settings.php:73
1128
  msgctxt "(Admin)"
1129
- msgid "Enter the email address to notify"
1130
- msgstr "Indtast e-mail-adressen for at underrette"
1131
 
1132
- #: views/installer/steps/disclaimer.php:21
 
1133
  msgctxt "(Admin)"
1134
- msgid "I accept"
1135
- msgstr "jeg accepterer"
1136
 
1137
- #: views/installer/welcome-notice.php:7
 
1138
  msgctxt "(Admin)"
1139
- msgid "Run the setup wizard"
1140
- msgstr "Kør installationsguiden"
1141
 
1142
- #: views/installer/welcome-notice.php:11
 
1143
  msgctxt "(Admin)"
1144
- msgid "Auto-install pages"
1145
- msgstr "Auto-installere sider"
1146
 
1147
- #: views/installer/welcome-notice.php:15
 
1148
  msgctxt "(Admin)"
1149
- msgid "Skip and install manually"
1150
- msgstr "Spring og installer manuelt"
1151
 
1152
- #: views/modules/contact-form-7/generator-privacy.php:6
 
1153
  msgctxt "(Admin)"
1154
- msgid ""
1155
- "This tag generates the default text for Terms & Conditions and/or Privacy "
1156
- "Policy checkbox."
1157
- msgstr ""
1158
- "Dette tag genererer standardteksten til vilkår og betingelser og / eller "
1159
- "privatlivspolitik."
1160
 
1161
- #: views/modules/contact-form-7/generator-privacy.php:15
1162
- msgid "Insert"
1163
- msgstr "Indsæt"
 
 
1164
 
1165
- #: views/modules/wordpress-comments/terms-checkbox.php:6
1166
- #: views/modules/wordpress-user/registration-terms-checkbox.php:7
1167
- #, php-format
1168
- msgid "I accept the %sTerms and Conditions%s and the %sPrivacy Policy%s"
1169
- msgstr "Jeg accepterer %sVilkår og betingelser%s og %sFortrolighedspolitik%s"
1170
 
1171
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:3
1172
- msgid "Manage consents"
1173
- msgstr "Administrer samtykker"
 
 
1174
 
1175
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:6
1176
- #: views/privacy-tools/form-consent.php:6
1177
- msgid "Here you can withdraw any consents you have given."
1178
- msgstr "Her kan du trække eventuelle samtykker tilbage."
1179
 
1180
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:8
1181
- #: views/privacy-tools/form-consent.php:9
1182
- msgid "Consent types"
1183
- msgstr "Samtykke typer"
 
1184
 
1185
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:23
1186
- #: views/privacy-tools/form-consent.php:24
1187
- msgid "Withdraw"
1188
- msgstr "Træk"
 
1189
 
1190
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:5
1191
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:5
1192
  msgctxt "(Admin)"
1193
- msgid "Delete this user and all data"
1194
- msgstr "Slet denne bruger og alle data"
1195
 
1196
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:11
 
1197
  msgctxt "(Admin)"
1198
- msgid "Delete my data"
1199
- msgstr "Slet mine data"
1200
 
1201
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:15
1202
- #: views/privacy-tools/form-delete.php:13
1203
- msgid "Delete all data we have gathered about you."
1204
- msgstr "Slet alle data vi har samlet om dig."
 
1205
 
1206
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:16
1207
- #: views/privacy-tools/form-delete.php:14
1208
- msgid "If you have a user account on our site, it will also be deleted."
1209
- msgstr ""
1210
- "Hvis du har en brugerkonto på vores hjemmeside, bliver den også slettet."
1211
 
1212
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:17
1213
- #: views/privacy-tools/form-delete.php:15
1214
- msgid "Be careful - this action is permanent and CANNOT be undone."
1215
- msgstr "Pas på - denne handling er permanent og kan ikke fortrydes."
 
1216
 
1217
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:22
1218
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:23
1219
  msgctxt "(Admin)"
1220
- msgid ""
1221
- "You seem to have an administrator or equivalent role, so deleting/"
1222
- "anonymizing via this page is disabled."
1223
- msgstr ""
1224
- "Du synes at have en administrator eller tilsvarende rolle, så sletning / "
1225
- "anonymisering via denne side er deaktiveret."
1226
 
1227
- #: views/modules/wordpress-user/dashboard/form-export.php:7
1228
- #: views/privacy-tools/form-export.php:1
1229
- msgid "Download your data"
1230
- msgstr "Download dine data"
 
1231
 
1232
- #: views/modules/wordpress-user/dashboard/form-export.php:12
1233
- #: views/privacy-tools/form-export.php:13
1234
- msgid "Download as table"
1235
- msgstr "Download som tabel"
 
1236
 
1237
- #: views/modules/wordpress-user/dashboard/form-export.php:15
1238
- #: views/privacy-tools/form-export.php:22
1239
- msgid "Export as JSON"
1240
- msgstr "Eksporter som JSON"
 
1241
 
1242
- #: views/modules/wordpress-user/dashboard/form-export.php:19
1243
- #: views/privacy-tools/form-export.php:4
1244
- msgid "You can download all your data formatted as a table for viewing."
1245
- msgstr "Du kan downloade alle dine data formateret som et bord til visning."
 
1246
 
1247
- #: views/modules/wordpress-user/dashboard/form-export.php:20
1248
- #: views/privacy-tools/form-export.php:5
1249
- msgid "Alternatively, you can export it in machine-readable JSON format."
1250
- msgstr "Alternativt kan du eksportere det i maskinlæsbart JSON-format."
 
1251
 
1252
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:11
 
1253
  msgctxt "(Admin)"
1254
- msgid "Delete user and all data"
1255
- msgstr "Slet bruger og alle data"
1256
 
1257
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:14
 
1258
  msgctxt "(Admin)"
1259
- msgid "Anonymize user and all data"
1260
- msgstr "Anonym bruger og alle data"
1261
 
1262
- #: views/modules/wordpress-user/dashboard/profile-page/header.php:2
 
1263
  msgctxt "(Admin)"
1264
- msgid "GDPR Data"
1265
- msgstr "GDPR-data"
1266
 
1267
- #: views/modules/wordpress-user/dashboard/profile-page/header.php:6
 
1268
  msgctxt "(Admin)"
1269
- msgid "This user has been anonymized."
1270
- msgstr "Denne bruger er blevet anonymiseret."
1271
 
1272
- #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:4
 
1273
  msgctxt "(Admin)"
1274
- msgid "Consents given"
1275
- msgstr "Tilladelser givet"
1276
 
1277
- #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:17
 
1278
  msgctxt "(Admin)"
1279
- msgid "No consents given"
1280
- msgstr "Ingen tilladelser givet"
1281
 
1282
- #: views/privacy-tools/form-consent.php:2
1283
- msgid "Consent"
1284
- msgstr "Samtykke"
 
 
1285
 
1286
- #: views/privacy-tools/form-delete.php:1
1287
- #: views/privacy-tools/notice-admin-role.php:1
1288
- msgid "Delete my user and data"
1289
- msgstr "Slet min bruger og data"
 
1290
 
1291
- #: views/privacy-tools/form-delete.php:7
1292
- msgid "Delete my data"
1293
- msgstr "Slet mine data"
 
 
1294
 
1295
- #: views/privacy-tools/form-identify.php:8
1296
- msgid "Back to Privacy Tools"
1297
- msgstr "Tilbage til Privacy Tools"
 
 
1298
 
1299
- #: views/privacy-tools/form-identify.php:14
1300
- msgid "Identify yourself!"
1301
- msgstr "Identificer dig selv!"
 
 
1302
 
1303
- #: views/privacy-tools/form-identify.php:17
1304
- #: views/privacy-tools/form-identify.php:20
1305
- msgid "Enter your email address"
1306
- msgstr "Indtast din e-mailadresse"
 
1307
 
1308
- #: views/privacy-tools/form-identify.php:23
1309
- msgid "Send email"
1310
- msgstr "Send e-mail"
 
 
1311
 
1312
- #: views/privacy-tools/notice-admin-role.php:4
 
1313
  msgctxt "(Admin)"
1314
- msgid "Data deletion is disabled for administrative accounts."
1315
- msgstr "Data sletning er deaktiveret for administrative konti."
1316
 
1317
- #: views/privacy-tools/notices.php:3
1318
- msgid ""
1319
- "We will send you an email with the link to access your data. Please check "
1320
- "your spam folder as well!"
1321
- msgstr ""
1322
- "Vi sender dig en email med linket for at få adgang til dine data. Kontroller "
1323
- "også din spam mappe!"
1324
 
1325
- #: views/privacy-tools/notices.php:7
1326
- msgid "The email you entered does not appear to be a valid email."
1327
- msgstr "Den email du indtastede ser ikke ud til at være en gyldig email."
 
 
1328
 
1329
- #: views/privacy-tools/notices.php:11
1330
- msgid "Sorry - the link seems to have expired. Please try again!"
1331
- msgstr "Beklager - linket synes at være udløbet. Prøv igen!"
 
 
1332
 
1333
- #: views/privacy-tools/notices.php:23
1334
- msgid "Your personal data has been removed!"
1335
- msgstr ""
1336
- "Deine personenbezogenen Daten wurden gelöscht!Dine personlige data er blevet "
1337
- "fjernet!"
1338
 
1339
- #: views/privacy-tools/privacy-tools.php:5
1340
- msgid "You are identified as"
1341
- msgstr "Du er identificeret som"
 
 
1342
 
1343
- #: views\admin\general\enable-tac.php:9
 
1344
  msgctxt "(Admin)"
1345
- msgid "Enable the term and condition page."
1346
- msgstr ""
1347
- "Aktiviere Begriffs- und Bedingungsseite.Aktivér termen og betingelsessiden."
1348
 
1349
- #: src\Admin\AdminTabGeneral.php:51
 
1350
  msgctxt "(Admin)"
1351
- msgid "Enable Term and Conditions"
1352
- msgstr "Aktivér vilkår og betingelser"
1353
 
1354
- #: gdpr-framework.php:121
1355
- msgid ""
1356
- "This website uses cookies to ensure you get the best experience on our "
1357
- "website."
1358
- msgstr ""
1359
- "Denne hjemmeside bruger cookies for at sikre, at du får den bedste oplevelse "
1360
- "på vores hjemmeside."
1361
 
1362
- #: gdpr-framework.php:121
1363
- msgid "Decline"
1364
- msgstr "Nedgang"
 
 
1365
 
1366
- #: gdpr-framework.php:121
1367
- msgid "Accept"
1368
- msgstr "Acceptere"
 
 
1369
 
1370
- #: gdpr-framework.php:133
1371
- msgid "Learn more"
1372
- msgstr "Lær mere"
 
 
1373
 
1374
- #: AdminTabGeneral.php:94
 
1375
  msgctxt "(Admin)"
1376
- msgid "From Email"
1377
- msgstr "Fra Email"
1378
 
1379
- #: AdminTabGeneral.php:87
 
1380
  msgctxt "(Admin)"
1381
- msgid "From Name"
1382
- msgstr "Fra Navn"
1383
 
1384
- #: AdminTabGeneral.php:82
 
1385
  msgctxt "(Admin)"
1386
- msgid "Email Setting"
1387
- msgstr "Emailindstilling"
1388
 
1389
- #: AdminTabGeneral.php:104
 
1390
  msgctxt "(Admin)"
1391
- msgid "Acceptance Popup Setting"
1392
- msgstr "Acceptance Popup Indstilling"
1393
 
1394
- #: AdminTabGeneral.php:109
 
1395
  msgctxt "(Admin)"
1396
- msgid "Popup Position"
1397
- msgstr "Popup Position"
1398
 
1399
- #: AdminTabGeneral.php:116
 
1400
  msgctxt "(Admin)"
1401
- msgid "Popup theme"
1402
- msgstr "Popup tema"
1403
 
1404
- #: AdminTabGeneral.php:123
 
1405
  msgctxt "(Admin)"
1406
- msgid "Cookie Acceptance Background Color"
1407
- msgstr "Cookie Acceptance Baggrundsfarve"
1408
 
1409
- #: AdminTabGeneral.php:130
 
1410
  msgctxt "(Admin)"
1411
- msgid "Cookie Acceptance Text Color"
1412
- msgstr "Cookie Acceptance Text Color"
1413
 
1414
- #: AdminTabGeneral.php:137
 
1415
  msgctxt "(Admin)"
1416
- msgid "Cookie Acceptance Button Backgroung Color"
1417
- msgstr "Cookie Acceptance Button Baggrundsfarve"
1418
 
1419
- #: AdminTabGeneral.php:144
 
1420
  msgctxt "(Admin)"
1421
- msgid "Cookie Acceptance Button Color"
1422
- msgstr "Cookie Acceptance Button Color"
1423
 
1424
- #: AdminTabGeneral.php:151
 
1425
  msgctxt "(Admin)"
1426
- msgid "Cookie Acceptance Border Color"
1427
- msgstr "Cookie Acceptance Border Color"
1428
 
1429
- #: AdminTabGeneral.php:67
 
1430
  msgctxt "(Admin)"
1431
- msgid "Enable Cookie Acceptance Popup"
1432
- msgstr "Aktivér cookieoptagelse popup"
1433
 
1434
- #: AdminTabGeneral.php:73
 
1435
  msgctxt "(Admin)"
1436
- msgid "Cookie Acceptance Popup Content"
1437
- msgstr "Cookie Acceptance Popup indhold"
1438
 
1439
- #: description-position-action.php
 
1440
  msgctxt "(Admin)"
1441
- msgid "Select position of the Popup"
1442
- msgstr "Vælg position af popupen"
1443
 
1444
- #: description-theme-action.php
 
1445
  msgctxt "(Admin)"
1446
- msgid "Select theme of the Popup"
1447
- msgstr "Vælg tema for popupen"
1448
 
1449
- #: description-theme-action.php:69
 
1450
  msgctxt "(Admin)"
1451
- msgid "Disable Comment Checkbox"
1452
- msgstr "Deaktiver kommentarfeltet"
1453
 
1454
- #: description-theme-action.php:76
 
1455
  msgctxt "(Admin)"
1456
- msgid "Disable Register Form Checkbox"
1457
- msgstr "Deaktiver Registreringsform Checkbox"
1458
 
1459
- #: description-theme-action.php:312
 
1460
  msgctxt "(Admin)"
1461
- msgid "Disable Checkbox For Comments"
1462
- msgstr "Deaktiver afkrydsningsfeltet for kommentarer"
1463
 
1464
- #: AdminTabGeneral.php:319
 
1465
  msgctxt "(Admin)"
1466
- msgid "Disable Checkbox For Register Form"
1467
- msgstr "Deaktiver afkrydsningsfeltet for registreringsformular"
1468
 
1469
- #: views/privacy-tools/form-identify.php:15
1470
- msgid "Please identify yourself via e-mail"
1471
- msgstr "Identificer dig selv via e-mail"
 
 
1472
 
1473
- #: advanced-integration\header.php:2
 
1474
  msgctxt "(Admin)"
1475
- msgid "This page allows you to advance integration with ClassiDocs™"
1476
- msgstr ""
1477
- "Denne side giver dig mulighed for at fremme integration med ClassiDocs™"
1478
 
1479
- #: AdminTabAdvancedIntegration.php:97
 
1480
  msgctxt "(Admin)"
1481
- msgid "ClassiDocs Password"
1482
- msgstr "ClassiDocs Password"
1483
 
1484
- #: AdminTabAdvancedIntegration.php:88
 
1485
  msgctxt "(Admin)"
1486
- msgid "ClassiDocs Username"
1487
- msgstr "ClassiDocs Brugernavn"
1488
 
1489
- #: AdminTabAdvancedIntegration.php:79
 
1490
  msgctxt "(Admin)"
1491
- msgid "ClassiDocs URL"
1492
- msgstr "ClassiDocs URL"
1493
 
1494
- #: AdminTabAdvancedIntegration.php:69
 
1495
  msgctxt "(Admin)"
1496
- msgid "Enable Response with related queries?"
1497
- msgstr "Aktivér svar med relaterede forespørgsler?"
1498
 
1499
- #: AdminTabAdvancedIntegration.php:60
 
1500
  msgctxt "(Admin)"
1501
- msgid "Submit SAR request details?"
1502
- msgstr "Indsend SAR-anmodning detaljer?"
1503
 
1504
- #: AdminTabAdvancedIntegration.php:51
 
1505
  msgctxt "(Admin)"
1506
- msgid "Integrate with ClassiDocs?"
1507
- msgstr "Integrere med ClassiDocs?"
1508
 
1509
- #: AdminTabAdvancedIntegration.php:43
 
1510
  msgctxt "(Admin)"
1511
- msgid "Integration Settings"
1512
- msgstr "Integrationsindstillinger"
1513
 
1514
- #: AdminTabAdvancedIntegration.php:35
 
1515
  msgctxt "(Admin)"
1516
- msgid "Advanced Integration"
1517
- msgstr "Avanceret integration"
1518
 
1519
- #: checkbox-field.php:10
 
1520
  msgctxt "(Admin)"
1521
- msgid "Sign up for free here"
1522
- msgstr "Tilmeld dig gratis her"
1523
 
1524
- #: checkbox-field.php:10
 
1525
  msgctxt "(Admin)"
1526
- msgid "Click Here"
1527
- msgstr "Klik her"
1528
 
1529
- #: ClassiDocs-results.php:12
1530
- msgid "Previous Results"
1531
- msgstr "Tidligere resultater"
 
 
1532
 
1533
- #: ClassiDocs-results.php:13
1534
- msgid "Current Results"
1535
- msgstr "Nuværende resultater"
 
 
1536
 
1537
- #: ClassiDocs-results.php:19
1538
- msgid "Name"
1539
- msgstr "Navn"
 
 
1540
 
1541
- #: ClassiDocs-results.php:22
1542
- msgid "Path"
1543
- msgstr "Sti"
 
 
1544
 
1545
- #: ClassiDocs-results.php:34
1546
- msgid "Workstation"
1547
- msgstr "Workstation"
 
 
1548
 
1549
- #: ClassiDocs-results.php:37
1550
- msgid "Last Scan"
1551
- msgstr "Sidste Scan"
 
 
1552
 
1553
- #: ClassiDocs-results.php:62
1554
- msgid "No ClassiDocs data found!"
1555
- msgstr "Ingen ClassiDocs data fundet!"
 
 
1556
 
1557
- #: enable_popup_header.php:5
1558
- msgid "Cookies used on the website!"
1559
- msgstr "Cookies utilizadas en el sitio web!"
 
 
1560
 
1561
- #: enable_popup_header.php:9
1562
- msgid "Leave blank if don't want header to get display."
1563
- msgstr "Deje en blanco si no quiere que el encabezado se muestre."
 
 
1564
 
1565
- #: AdminTabCookiePopup.php:39
1566
  msgctxt "(Admin)"
1567
- msgid "Cookie Popup Settings"
1568
- msgstr "Cookie popup indstillinger"
1569
 
1570
- #: AdminTabCookiePopup.php:17
 
1571
  msgctxt "(Admin)"
1572
- msgid "Cookie Popup"
1573
- msgstr "Cookie popup"
1574
 
1575
- #: AdminTabCookiePopup.php:49
 
1576
  msgctxt "(Admin)"
1577
- msgid "Enable One Time Cookie Acceptance Popup"
1578
- msgstr "Aktivér One Time Cookie Acceptance Popup"
1579
 
1580
- #: consent.php:79
 
1581
  msgctxt "(Admin)"
1582
- msgid "Show Consent types"
1583
- msgstr "Vis samtykke typer"
1584
 
 
 
1585
  msgctxt "(Admin)"
1586
- msgid "Hide consent types"
1587
- msgstr "Skjul samtykke typer"
1588
 
 
 
1589
  msgctxt "(Admin)"
1590
- msgid "Do you want form to be GDPR compliance."
1591
- msgstr "Ønsker du, at formularen er GDPR-overholdelse."
1592
 
 
 
1593
  msgctxt "(Admin)"
1594
- msgid ""
1595
- "You have installed flamingo, To make this GDPR compliance in individual "
1596
- "contact form's privacy tab check the checkbox for include data to be search "
1597
- "on Privacy tool."
1598
- msgstr ""
1599
- "Du har installeret flamingo. For at gøre denne GDPR-overholdelse i den "
1600
- "enkelte kontaktformularens privatlivs-faneblad markér afkrydsningsfeltet "
1601
- "for, at data, der skal søges i Privacy-værktøjet, er inkluderet."
1602
 
 
 
1603
  msgctxt "(Admin)"
1604
- msgid "Enable Policy Link On Popup"
1605
- msgstr "Aktivér politiklink på pop op"
1606
 
 
 
1607
  msgctxt "(Admin)"
1608
- msgid "Enable Privacy policy on Popup"
1609
- msgstr "Aktivér privatlivspolitik på pop op"
1610
 
1611
- #: AdminTabCookiePopup.php
 
1612
  msgctxt "(Admin)"
1613
- msgid "Cookie Acceptance Popup header"
1614
- msgstr "Cookie Acceptance Popup header"
1615
 
1616
- #: views\admin\privacy-manager\header.php:2
 
1617
  msgctxt "(Admin)"
1618
- msgid "Data443™ Privacy Manager"
1619
- msgstr "Data443™ Privacy Manager"
1620
 
1621
- #: views\admin\privacy-manager\header.php:3
 
1622
  msgctxt "(Admin)"
1623
- msgid ""
1624
- "ensures privacy regulation compliance, such as GDPR, CCPA, LGPD, etc, at the "
1625
- "next level."
1626
- msgstr ""
1627
- "sikrer overholdelse af reglerne om beskyttelse af privatlivets fred, som f."
1628
- "eks. GDPR, CCPA, LGPD osv. på næste niveau."
1629
 
1630
- #: views\admin\privacy-manager\header.php:4
 
1631
  msgctxt "(Admin)"
1632
- msgid ""
1633
- "In addition to DSAR tracking and management, Privacy Manager adds the "
1634
- "following features to your data protection compliance resources:"
1635
- msgstr ""
1636
- "Ud over DSAR-tracking og -administration tilføjer Privacy Manager følgende "
1637
- "funktioner til dine databeskyttelsesoverensstemmelsesressourcer:"
1638
 
1639
- #: views\admin\privacy-manager\header.php:6
 
1640
  msgctxt "(Admin)"
1641
- msgid "Log and store ICO breach notifications"
1642
- msgstr "Log og gem ICO krænker underretninger"
1643
 
1644
- #: views\admin\privacy-manager\header.php:7
 
1645
  msgctxt "(Admin)"
1646
- msgid "Keeps full record of all requests, ticketed and timeline"
1647
- msgstr "Holder fuld rekord af alle anmodninger, billet og tidslinje"
1648
 
1649
- #: views\admin\privacy-manager\header.php:8
 
1650
  msgctxt "(Admin)"
1651
- msgid "Gap analysis and breach notifications"
1652
- msgstr "Gap analyse og brud underretninger"
1653
 
1654
- #: views\admin\privacy-manager\header.php:9
 
1655
  msgctxt "(Admin)"
1656
- msgid "In depth activity log with all GDPR, CCPA, etc actions evidenced"
1657
- msgstr "I dybde aktivitets log med alle GDPR, CCPA, etc handlinger vist"
1658
 
1659
- #: views\admin\privacy-manager\header.php:10
 
1660
  msgctxt "(Admin)"
1661
- msgid "Highlights areas of concern and where you need to focus"
1662
- msgstr "Fremhæver områder af bekymring og hvor du skal fokusere"
1663
 
1664
- #: views\admin\privacy-manager\header.php:11
 
1665
  msgctxt "(Admin)"
1666
- msgid ""
1667
- "eLearning platform with access for all staff to ensure privacy regulation "
1668
- "compliance and obligations"
1669
- msgstr ""
1670
- "eLearning platform med adgang for alle medarbejdere til at sikre "
1671
- "overholdelse og forpligtelser til beskyttelse af privatlivets fred"
1672
 
1673
- #: views\admin\privacy-manager\header.php:12
 
1674
  msgctxt "(Admin)"
1675
- msgid "Tracks who accesses the system, when and why"
1676
- msgstr "Spor, der får adgang til systemet, hvornår og hvorfor"
1677
 
1678
- #: views\admin\privacy-manager\header.php:15
 
1679
  msgctxt "(Admin)"
1680
- msgid ""
1681
- "Our system enables your business to demonstrate its obligations in "
1682
- "protecting your customer data, show understanding of your business "
1683
- "activities and deliver eLearning and online tests to employees, ensuring "
1684
- "everyone in your company understands your privacy compliance rules and best "
1685
- "practices to operate."
1686
- msgstr ""
1687
- "Vores system gør det muligt for din virksomhed at demonstrere sine "
1688
- "forpligtelser med hensyn til at beskytte dine kundedata, vise forståelse for "
1689
- "dine forretningsaktiviteter og levere eLearning og online test til "
1690
- "medarbejdere, så alle i din virksomhed forstår dine regler for beskyttelse "
1691
- "af personlige oplysninger og bedste praksis til at fungere."
1692
 
1693
- #: views\admin\privacy-manager\header.php:16
 
1694
  msgctxt "(Admin)"
1695
- msgid ""
1696
- "No matter where you are on your data privacy journey, the ultimate goal is "
1697
- "compliance."
1698
- msgstr ""
1699
- "Uanset hvor du er på din datasikkerhedsrejse, er det ultimative mål at "
1700
- "overholde."
1701
 
1702
- #: views\admin\privacy-manager\header.php:16
 
1703
  msgctxt "(Admin)"
1704
- msgid "enables your organization to comply with all privacy regulations."
1705
- msgstr ""
1706
- "gør det muligt for din organisation at overholde alle regler om beskyttelse "
1707
- "af personlige oplysninger."
1708
 
1709
- #: views\admin\support\contents.php:49
1710
  msgctxt "(Admin)"
1711
- msgid ""
1712
- "Found a bug or have a question about the plugin? Submit a support request "
1713
- "and we’ll get right on it!"
1714
- msgstr ""
1715
- "Har du fundet en fejl eller har du et spørgsmål om plugin? Send en "
1716
- "supportanmodning, og vi får det rigtigt!"
1717
 
1718
- #: views\admin\support\contents.php:58
 
1719
  msgctxt "(Admin)"
1720
- msgid "Need assistance in making your site compliant? We can help!"
1721
- msgstr ""
1722
- "Har du brug for hjælp til at gøre dit websted kompatibelt? Vi kan hjælpe!"
1723
 
1724
- #: views\admin\general\woo-compatibility.php:9
 
1725
  msgctxt "(Admin)"
1726
- msgid "Enable WooCommerce data on GDPR tool"
1727
- msgstr "Aktivér WooCommerce-data på GDPR-værktøjet"
1728
 
1729
- #: src\Admin\AdminTabGeneral.php:241
1730
  msgctxt "(Admin)"
1731
- msgid "Enable WooCommerce Compatibility"
1732
- msgstr "Aktivér WooCommerce-kompatibilitet"
1733
 
1734
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:19
1735
- msgid "Note Regarding Order:"
1736
- msgstr "Bemærkning vedrørende ordre:"
 
 
1737
 
1738
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:20
1739
- msgid ""
1740
- "Your order with status Processing will not get deleted until status change."
1741
- msgstr ""
1742
- "Din ordre med status Behandling vil ikke blive slettet, indtil statusændring."
1743
 
1744
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:21
1745
- msgid "Your order with status Completed will get anonymize."
1746
- msgstr "Din ordre med status Afsluttet vil blive anonymiseret."
 
 
1747
 
1748
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:22
1749
- msgid "If you delete Completed order you can't apply for refund."
1750
- msgstr "Hvis du sletter Afsluttet ordre, kan du ikke søge om refusion."
 
 
1751
 
1752
- #: views\admin\general\woo-compatibility.php:12
 
1753
  msgctxt "(Admin)"
1754
- msgid "Will work for WooCommerce Version 3.4.0 or later."
1755
- msgstr "Vil arbejde for WooCommerce Version 3.4.0 eller nyere."
1756
 
1757
- #: views\admin\general\edd-compatibility.php:9
1758
  msgctxt "(Admin)"
1759
- msgid "Enable EDD data on GDPR tool."
1760
- msgstr "Aktivér EDD-data på GDPR-værktøjet."
1761
 
1762
- #: views\admin\general\edd-compatibility.php:12
1763
  msgctxt "(Admin)"
1764
- msgid "Will work for EDD Version 2.0.0 or later."
1765
- msgstr "Vil arbejde for EDD Version 2.0.0 eller senere."
1766
 
1767
- #: src\Admin\AdminTabGeneral.php:262
1768
  msgctxt "(Admin)"
1769
- msgid "Enable EDD Compatibility"
1770
- msgstr "Aktiver EDD-kompatibilitet"
1771
 
1772
- #: gdpr-framework.php:298
1773
- msgid "Cookie Policy"
1774
- msgstr "Cookie Policy"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1775
 
1776
- #: ConsentManager.php:96
1777
  msgctxt "(Admin)"
1778
  msgid ""
1779
- "This consent is visible by default on woocommerce checkout page. If someone "
1780
- "wishes to withdraw it, they should simply request to delete all their data."
1781
  msgstr ""
1782
- "Dette samtykke er som standard synligt wokommerce checkout side. Hvis "
1783
- "nogen ønsker at trække det tilbage, skal de blot anmode om at slette alle "
1784
- "deres data."
1785
 
1786
- #: ConsentManager.php:96
1787
  msgctxt "(Admin)"
1788
- msgid "Woocommerce Policy Consent"
1789
- msgstr "Woocommerce Policy Consent"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1790
 
1791
- #: WoocommerceGdpr.php:150
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1792
  msgid "Please acknowledge the Privacy Policy"
1793
  msgstr "Vær venlig at anerkende privatlivspolitikken"
1794
 
1795
- #: woo-compatibility.php:9
 
 
 
 
 
 
 
 
 
1796
  msgctxt "(Admin)"
1797
- msgid "Enable WooCommerce data on GDPR tool."
1798
- msgstr "Aktivér WooCommerce-data GDPR-værktøjet."
 
 
 
 
 
1799
 
1800
- #: views\admin\general\enable-popup.php:12
1801
  msgctxt "(Admin)"
1802
  msgid ""
1803
- "<b>Note:</b> Need to add custom content <b>gdpr_cookie_consent</b> its "
1804
- "accepted on popup accept button."
1805
  msgstr ""
1806
- "<b> Bemærk: </ b> Har brug for at tilføje brugerdefineret indhold <b> "
1807
- "gdpr_cookie_consent </ b> det accepteres på popup accept knappen."
1808
 
1809
- #: AdminTabCookiePopup.php:105
1810
  msgctxt "(Admin)"
1811
- msgid "Popup Dismiss Text"
1812
- msgstr "Popup Afvis Tekst"
1813
 
1814
- #: AdminTabCookiePopup.php:98
 
1815
  msgctxt "(Admin)"
1816
- msgid "Popup Allow Text"
1817
- msgstr "Popup Tillad tekst"
1818
 
1819
- #: AdminTabGeneral.php:241
 
1820
  msgctxt "(Admin)"
1821
- msgid "Woocommerce Integration"
1822
- msgstr "WoCommerce Integration"
1823
 
1824
- #: AdminTabGeneral.php:259
1825
  msgctxt "(Admin)"
1826
- msgid "Easy Digital Download Integration"
1827
- msgstr "Easy Digital Download Integration"
1828
 
1829
- #: has-dpo.php:11
1830
  msgctxt "(Admin)"
1831
- msgid "I have appointed a Data Protection Officer (DPO)"
1832
- msgstr "Jeg har udpeget en databeskyttelsesansvarlig (DPO)"
1833
 
1834
- #: views/admin/general/stylesheet.php:9
1835
  msgctxt "(Admin)"
1836
- msgid "Enable basic styling for Privacy Tools page."
1837
- msgstr "Aktivér grundlæggende styling for siden Privacy Policy."
1838
 
1839
- #: AdminTabPrivacyPolicy.php:204
1840
  msgctxt "(Admin)"
1841
- msgid "Delete Text"
1842
- msgstr "Slet tekst"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1843
 
1844
- #: consent.php:80
1845
  msgctxt "(Admin)"
1846
  msgid "Add consent type"
1847
- msgstr "Tilføj tilladelse type"
1848
 
1849
- #: AdminTabGeneral.php:127
1850
  msgctxt "(Admin)"
1851
- msgid "Privacy Policy Custom URL"
1852
- msgstr "Privacy Policy Brugerdefineret URL"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1853
 
1854
- #: custom-policy-url.php:6
1855
  msgctxt "(Admin)"
1856
  msgid "Leave blank if privacy policy page already selected"
1857
  msgstr ""
1858
- "Forlad blank hvis siden om beskyttelse af personlige oplysninger allerede er "
1859
- "valgt"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1860
 
1861
  #: views/admin/general/description-delete-action.php:2
1862
  msgctxt "(Admin)"
@@ -1865,11 +2585,6 @@ msgstr "Hvad skal der ske, hvis et registrerede ønsker at slette deres data."
1865
 
1866
  #: views/admin/general/description-export-action.php:2
1867
  msgctxt "(Admin)"
1868
- msgid "Optional. Select the page which contains your Terms & Conditions"
1869
- msgstr "Valgfri. Vælg den side, der indeholder dine Vilkår og betingelser"
1870
-
1871
- #: views/admin/general/description-terms-page.php:2
1872
- msgctxt "(Admin)"
1873
  msgid ""
1874
  "What should happen if a data subject requests viewing or exporting their "
1875
  "data."
@@ -1877,34 +2592,1166 @@ msgstr ""
1877
  "Hvad skal der ske, hvis et registreret ønsker at se eller eksportere deres "
1878
  "data."
1879
 
1880
- #: woo-disable_checkbox.php:9
1881
  msgctxt "(Admin)"
1882
- msgid "Disable WooCommerce Privacy Checkbox"
1883
- msgstr "Deaktiver WooCommerce Privacy Checkbox"
1884
 
1885
- #: AdminTabCookiePopup.php:133
1886
  msgctxt "(Admin)"
1887
- msgid "Popup Learn More Text"
1888
- msgstr "Popup Lær mere tekst"
1889
 
1890
- #: AdminTabGeneral.php:262
1891
  msgctxt "(Admin)"
1892
- msgid "Disable WooCommerce Register Privacy Checkbox"
1893
- msgstr ""
1894
- "Deaktiver afkrydsningsfeltet WooCommerce Register for beskyttelse af "
1895
- "personlige oplysninger"
1896
 
1897
- #: AdminTabCookiePopup.php:121
1898
  msgctxt "(Admin)"
1899
- msgid "Cookie Acceptance link target"
1900
- msgstr "Cookie-acceptlink-link"
1901
 
1902
- #: popup_link_target.php:3
1903
  msgctxt "(Admin)"
1904
- msgid "Next Tab"
1905
- msgstr "Næste fane"
1906
 
1907
- #: popup_link_target.php:5
 
 
 
1908
  msgctxt "(Admin)"
1909
- msgid "Self"
1910
- msgstr "self"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  msgstr ""
8
  "Project-Id-Version: The GDPR Framework 1.0\n"
9
  "Report-Msgid-Bugs-To: gdpr@codelight.eu\n"
10
+ "POT-Creation-Date: 2021-10-28 11:20-0400\n"
11
+ "PO-Revision-Date: 2021-10-28 12:04-0400\n"
12
  "Last-Translator: Stefan Butz <webmaster@die-blaue-eisdiele.de>\n"
13
+ "Language-Team: Deutsch\n"
14
+ "Language: da_DK\n"
15
  "MIME-Version: 1.0\n"
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
18
+ "X-Generator: Poedit 3.0\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 
20
 
21
+ #: gdpr-framework.php:110
22
  msgctxt "(Admin)"
23
  msgid "WordPress GDPR &rsaquo; Error"
24
+ msgstr "WordPress DSGVO &rsaquo; Fehler"
25
+
26
+ #: gdpr-framework.php:121
27
+ msgctxt "(Admin)"
28
+ msgid "You must be using PHP 5.6.0 or greater."
29
+ msgstr "Du musst PHP 5.6.0 oder höher verwenden."
30
 
31
+ #: gdpr-framework.php:122
32
  msgctxt "(Admin)"
33
  msgid "Invalid PHP version"
34
+ msgstr "Ungültige PHP-Version"
35
 
36
+ #: gdpr-framework.php:132
37
  msgctxt "(Admin)"
38
+ msgid "You must be using WordPress 4.3.0 or greater."
39
+ msgstr "Sie benötigen WordPress Version 4.3.0 oder neuer."
40
 
41
+ #: gdpr-framework.php:133
42
  msgctxt "(Admin)"
43
  msgid "Invalid WordPress version"
44
+ msgstr "Ungültige WordPress-Version"
45
 
46
+ #: gdpr-framework.php:204
47
  msgctxt "(Admin)"
48
+ msgid "Anonymous"
49
+ msgstr "Anonym"
50
 
51
+ #: gdpr-helper-functions.php:75
52
  msgctxt "(Admin)"
53
  msgid ""
54
  "You appear to be running a development version of GDPR. You must run "
55
  "<code>composer install</code> from the plugin directory."
56
  msgstr ""
57
+ "Du verwendest eine Entwicklungsversion von DSVGO. Du musst <code>composer "
58
+ "install</code> aus dem Plugin Verzeichnis ausführen."
59
 
60
+ #: gdpr-helper-functions.php:80
61
  msgctxt "(Admin)"
62
  msgid "Autoloader not found."
63
+ msgstr "Autoloader nicht gefunden."
64
 
65
+ #: gdpr-helper-functions.php:126
66
+ msgid ""
67
+ "This website uses cookies to ensure you get the best experience on our "
68
+ "website."
69
+ msgstr ""
70
+ "Denne hjemmeside bruger cookies for at sikre, at du får den bedste oplevelse "
71
+ "på vores hjemmeside."
72
+
73
+ #: gdpr-helper-functions.php:139
74
+ msgid "Decline"
75
+ msgstr "Nedgang"
76
+
77
+ #: gdpr-helper-functions.php:152
78
+ msgid "Accept"
79
+ msgstr "Acceptere"
80
+
81
+ #: gdpr-helper-functions.php:165
82
+ msgid "Learn more"
83
+ msgstr "Lær mere"
84
+
85
+ #: gdpr-helper-functions.php:220
86
+ msgid "Cookie Policy"
87
+ msgstr "Cookie Policy"
88
+
89
+ #: gdpr-helper-functions.php:258
90
+ msgid "Settings"
91
+ msgstr "Einstellungen"
92
 
93
+ #: gdpr-helper-functions.php:259
94
+ msgid "PREMIUM"
95
+ msgstr "PREMIUM"
96
+
97
+ #: src/Admin/AdminTab.php:195
98
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:114
99
  msgctxt "(Admin)"
100
  msgid "Save"
101
+ msgstr "Speichern"
102
 
103
+ #: src/Admin/AdminTab.php:231
104
  msgctxt "(Admin)"
105
  msgid "Policy generated!"
106
+ msgstr "Retningslinjer generert!"
107
 
108
  #: src/Admin/AdminTabGeneral.php:11
109
  msgctxt "(Admin)"
110
  msgid "General"
111
+ msgstr "Allgemein"
112
 
113
+ #: src/Admin/AdminTabGeneral.php:55
114
  msgctxt "(Admin)"
115
  msgid "General Settings"
116
+ msgstr "Allgemeine Einstellungen"
117
 
118
+ #: src/Admin/AdminTabGeneral.php:60
119
  msgctxt "(Admin)"
120
  msgid "Enable Privacy Tools"
121
+ msgstr "Datenschutz aktivieren"
122
+
123
+ #: src/Admin/AdminTabGeneral.php:67
124
+ msgctxt "(Admin)"
125
+ msgid "Enable Term and Conditions"
126
+ msgstr "Allgemeinen Geschäftsbedingungen"
127
+
128
+ #: src/Admin/AdminTabGeneral.php:74
129
+ msgctxt "(Admin)"
130
+ msgid "Disable Comment Checkbox"
131
+ msgstr "Kommentare deaktivieren"
132
+
133
+ #: src/Admin/AdminTabGeneral.php:81
134
+ msgctxt "(Admin)"
135
+ msgid "Disable Register Form Checkbox"
136
+ msgstr "Registerformular deaktivieren"
137
+
138
+ #: src/Admin/AdminTabGeneral.php:91
139
+ msgctxt "(Admin)"
140
+ msgid "Email Setting"
141
+ msgstr "E-Mail-Einstellung"
142
+
143
+ #: src/Admin/AdminTabGeneral.php:96
144
+ msgctxt "(Admin)"
145
+ msgid "From Name"
146
+ msgstr "Von Name"
147
 
148
+ #: src/Admin/AdminTabGeneral.php:103
149
+ msgctxt "(Admin)"
150
+ msgid "From Email"
151
+ msgstr "Von E-Mail"
152
+
153
+ #: src/Admin/AdminTabGeneral.php:112
154
  msgctxt "(Admin)"
155
  msgid "Pages"
156
+ msgstr "Seiten"
157
 
158
+ #: src/Admin/AdminTabGeneral.php:117 src/Admin/WordpressAdmin.php:166
159
  msgctxt "(Admin)"
160
  msgid "Privacy Tools Page"
161
+ msgstr "Datenschutz Seite"
162
+
163
+ #: src/Admin/AdminTabGeneral.php:124
164
+ msgctxt "(Admin)"
165
+ msgid "Privacy Tools Custom URL"
166
+ msgstr "Datenschutz individuelle URL"
167
 
168
+ #: src/Admin/AdminTabGeneral.php:131 src/Admin/WordpressAdmin.php:162
169
  msgctxt "(Admin)"
170
  msgid "Privacy Policy Page"
171
+ msgstr "Seite mit der Datenschutzerklärung"
172
+
173
+ #: src/Admin/AdminTabGeneral.php:138
174
+ msgctxt "(Admin)"
175
+ msgid "Privacy Policy Custom URL"
176
+ msgstr "Datenschutzerklärung URL"
177
 
178
+ #: src/Admin/AdminTabGeneral.php:145
179
  msgctxt "(Admin)"
180
  msgid "Terms & Conditions Page"
181
+ msgstr "Allgemeine Geschäftsbedigungen Seite"
182
+
183
+ #: src/Admin/AdminTabGeneral.php:152
184
+ msgctxt "(Admin)"
185
+ msgid "Terms & Conditions Custom URL"
186
+ msgstr "Allgemeinen Geschäftsbedingungen URL"
187
 
188
+ #: src/Admin/AdminTabGeneral.php:162
189
  msgctxt "(Admin)"
190
  msgid "View & Export Data"
191
+ msgstr "Daten anzeigen & exportieren"
192
 
193
+ #: src/Admin/AdminTabGeneral.php:167
194
  msgctxt "(Admin)"
195
  msgid "Export action"
196
+ msgstr "Exportieren"
197
 
198
+ #: src/Admin/AdminTabGeneral.php:174 src/Admin/AdminTabGeneral.php:213
199
  msgctxt "(Admin)"
200
  msgid "Email to notify"
201
+ msgstr "E-Mail für die Benachrichtigung"
202
 
203
+ #: src/Admin/AdminTabGeneral.php:185
204
  msgctxt "(Admin)"
205
  msgid "Delete & Anonymize Data"
206
+ msgstr "Slett & anonymiser data"
207
 
208
+ #: src/Admin/AdminTabGeneral.php:190
209
  msgctxt "(Admin)"
210
  msgid "Delete action"
211
+ msgstr "Slett handling"
212
 
213
+ #: src/Admin/AdminTabGeneral.php:197
214
  msgctxt "(Admin)"
215
  msgid "Delete or reassign content?"
216
+ msgstr "Slett eller tilknydt innhold på nytt?"
217
 
218
+ #: src/Admin/AdminTabGeneral.php:205
219
  msgctxt "(Admin)"
220
  msgid "Reassign content to"
221
+ msgstr "Inhalt zuordnen zu"
222
 
223
+ #: src/Admin/AdminTabGeneral.php:225
224
  msgctxt "(Admin)"
225
  msgid "Styling"
226
  msgstr "Styling"
227
 
228
+ #: src/Admin/AdminTabGeneral.php:230
229
  msgctxt "(Admin)"
230
  msgid "Enable basic styling on Privacy Tools page"
231
+ msgstr "Grundlegende Gestaltung auf der Seite der Datenschutz Tools aktivieren"
 
232
 
233
+ #: src/Admin/AdminTabGeneral.php:242
234
  msgctxt "(Admin)"
235
  msgid "Compatibility"
236
+ msgstr "Kompatibilität"
237
 
238
+ #: src/Admin/AdminTabGeneral.php:247
239
  msgctxt "(Admin)"
240
  msgid "Enable automatic theme compatibility"
241
+ msgstr "Automatische Themenkompatibilität aktivieren"
242
+
243
+ #: src/Admin/AdminTabGeneral.php:259
244
+ msgctxt "(Admin)"
245
+ msgid "Woocommerce Integration"
246
+ msgstr "Woocommerce Integration"
247
+
248
+ #: src/Admin/AdminTabGeneral.php:264
249
+ msgctxt "(Admin)"
250
+ msgid "Enable WooCommerce Compatibility"
251
+ msgstr "WooCommerce Kompatibilität aktivieren"
252
+
253
+ #: src/Admin/AdminTabGeneral.php:271
254
+ #: views/admin/general/woo-disable_checkbox.php:10
255
+ msgctxt "(Admin)"
256
+ msgid "Disable WooCommerce Privacy Checkbox"
257
+ msgstr "WooCommerce Datenschutz deaktivieren"
258
+
259
+ #: src/Admin/AdminTabGeneral.php:278
260
+ #: views/admin/general/woo-disable_register_checkbox.php:9
261
+ msgctxt "(Admin)"
262
+ msgid "Disable WooCommerce Register Privacy Checkbox"
263
+ msgstr "WooCommerce Registrierung deaktivieren"
264
+
265
+ #: src/Admin/AdminTabGeneral.php:290
266
+ msgctxt "(Admin)"
267
+ msgid "Easy Digital Download Integration"
268
+ msgstr "Einfache Integration von digitalen Downloads"
269
 
270
+ #: src/Admin/AdminTabGeneral.php:295
271
+ msgctxt "(Admin)"
272
+ msgid "Enable EDD Compatibility"
273
+ msgstr "EDD Kompatibilität aktivieren"
274
+
275
+ #: src/Admin/AdminTabGeneral.php:322
276
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:181
277
+ msgctxt "(Admin)"
278
+ msgid "Disable Checkbox For Comments"
279
+ msgstr "Kommentare deaktivieren"
280
+
281
+ #: src/Admin/AdminTabGeneral.php:330
282
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:188
283
+ msgctxt "(Admin)"
284
+ msgid "Disable Checkbox For Register Form"
285
+ msgstr "Registrierungsformular deaktivieren"
286
+
287
+ #: src/Admin/AdminTabGeneral.php:408 src/Admin/AdminTabGeneral.php:424
288
+ #: src/Admin/AdminTabGeneral.php:449 src/Admin/AdminTabGeneral.php:506
289
  #: views/installer/steps/configuration-settings.php:62
290
  msgctxt "(Admin)"
291
  msgid "&mdash; Select &mdash;"
292
+ msgstr "&mdash; Auswählen &mdash;"
293
 
294
+ #: src/Admin/WordpressAdmin.php:68
295
  msgctxt "(Admin)"
296
  msgid "Privacy & GDPR Settings"
297
+ msgstr "Personvern- & DSGVO-innstilinger"
298
 
299
+ #: src/Admin/WordpressAdmin.php:69 views/installer/welcome-notice.php:6
300
  msgctxt "(Admin)"
301
+ msgid "Data443 GDPR"
302
+ msgstr "Data443 DSGVO"
303
+
304
+ #: src/Components/AdvancedIntegration/AdminTabAdvancedIntegration.php:17
305
+ #: src/Components/AdvancedIntegration/AdminTabAdvancedIntegration.php:26
306
+ #, fuzzy
307
+ #| msgctxt "(Admin)"
308
+ #| msgid "No data found!"
309
+ msgctxt "(Admin)"
310
+ msgid "Data Hound"
311
+ msgstr "Ingen data fundet!"
312
 
313
  #: src/Components/Consent/AdminTabConsent.php:30
314
+ #: src/Components/Consent/AdminTabConsent.php:50
315
  msgctxt "(Admin)"
316
  msgid "Consent"
317
  msgstr "Samtykke"
318
 
319
+ #: src/Components/Consent/AdminTabConsent.php:55
320
+ msgctxt "(Admin)"
321
+ msgid "Additional Settings"
322
+ msgstr "Zusätzliche Einstellungen"
323
+
324
+ #: src/Components/Consent/AdminTabConsent.php:60
325
+ msgctxt "(Admin)"
326
+ msgid "Display Consent Calendar"
327
+ msgstr "Zustimmungskalender anzeigen"
328
+
329
+ #: src/Components/Consent/AdminTabConsent.php:172
330
  msgctxt "(Admin)"
331
  msgid "Consent slug is a required field!"
332
+ msgstr "Der Slug der Zustimmung ist ein Pflichtfeld!"
333
 
334
+ #: src/Components/Consent/AdminTabConsent.php:177
335
  msgctxt "(Admin)"
336
  msgid ""
337
  "You may only use alphanumeric characters, dash and underscore in the consent "
338
  "slug field."
339
  msgstr ""
340
+ "Sie dürfen nur alphanumerische Zeichen, Bindestriche und Unterstriche im "
341
+ "Feld für den Zustimmungs-Pfad verwenden."
342
 
343
+ #: src/Components/Consent/AdminTabConsent.php:182
344
  msgctxt "(Admin)"
345
  msgid "Consent title is a required field!"
346
+ msgstr "Der Titel der Zustimmung ist ein Pflichtfeld!"
347
+
348
+ #: src/Components/Consent/AdminTabConsent.php:194
349
+ msgid ""
350
+ "To use this website, you accepted our Privacy Policy. If you wish to "
351
+ "withdraw your acceptance, please use the \"Delete my data\" button below."
352
+ msgstr ""
353
+ "Um diese Website nutzen zu können, musst Du unsere Datenschutzbestimmungen "
354
+ "akzeptieren. Wenn Du Deine Zustimmung widerrufen möchtest, verwende den "
355
+ "Button \"Meine Daten löschen\"."
356
 
357
+ #: src/Components/Consent/AdminTabConsent.php:197
358
+ msgid ""
359
+ "Enable this feature to allow users to submit a time limit on how many months "
360
+ "their consent is given for their coments and registration."
361
+ msgstr ""
362
+ "Aktivieren Sie diese Funktion, damit Benutzer eine Frist einreichen können, "
363
+ "wie viele Monate ihre Zustimmung für ihre Anmeldung und Registrierung "
364
+ "erteilt wurde."
365
+
366
+ #: src/Components/Consent/ConsentManager.php:53
367
+ #: src/Modules/WooCommerceGdpr/WooCommerceGdpr.php:144
368
  #, php-format
369
  msgid "I accept the %sPrivacy Policy%s"
370
  msgstr "Jeg accepterer %sPrivacy Policy%s"
371
 
372
+ #: src/Components/Consent/ConsentManager.php:57
373
+ #: src/Components/Consent/ConsentManager.php:78
374
  msgctxt "(Admin)"
375
  msgid ""
376
  "This consent is not visible by default. If someone wishes to withdraw it, "
377
  "they should simply request to delete all their data."
378
  msgstr ""
379
+ "Diese Zustimmung ist standardmäßig nicht sichtbar. Wenn jemand diese "
380
+ "widerrufen möchte, sollte er einfach die Löschung seiner Daten beantragen."
381
 
382
+ #: src/Components/Consent/ConsentManager.php:74
383
  #, php-format
384
  msgid "I accept the %sTerms & Conditions%s"
385
  msgstr "Jeg accepterer %sVilkår og Betingelser%s"
386
 
387
+ #: src/Components/Consent/ConsentManager.php:87
388
+ msgctxt "(Admin)"
389
+ msgid "Woocommerce Policy Consent"
390
+ msgstr "Woocommerce Zustimmung zur Richtlinie"
391
+
392
+ #: src/Components/Consent/ConsentManager.php:88
393
+ msgctxt "(Admin)"
394
+ msgid ""
395
+ "This consent is visible by default on woocommerce checkout page. If someone "
396
+ "wishes to withdraw it, they should simply request to delete all their data."
397
+ msgstr ""
398
+ "Diese Zustimmung ist standardmäßig auf der Woocommerce Checkout Seite "
399
+ "sichtbar. Wenn jemand diese widerrufen möchte, sollte er einfach die "
400
+ "Löschung seiner Daten beantragen."
401
+
402
+ #: src/Components/Consent/ConsentManager.php:389
403
+ msgid "Consent Information"
404
+ msgstr "Zustimmungsinformationen"
405
+
406
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:17
407
+ msgctxt "(Admin)"
408
+ msgid "Cookie Popup"
409
+ msgstr "Cookie Popup"
410
+
411
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:44
412
+ msgctxt "(Admin)"
413
+ msgid "Cookie Popup Settings"
414
+ msgstr "Cookie Popup Einstellungen"
415
+
416
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:48
417
+ #: views/admin/general/enable-popup.php:9
418
+ msgctxt "(Admin)"
419
+ msgid "Enable Cookie Acceptance Popup"
420
+ msgstr "Cookie Popup \"Akzeptieren\" aktivieren"
421
+
422
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:54
423
+ #: views/admin/general/enable-onetime-popup.php:9
424
+ msgctxt "(Admin)"
425
+ msgid "Enable One Time Cookie Acceptance Popup"
426
+ msgstr "Einmalig das Cookie Popup \"Akzeptieren\" aktivieren"
427
+
428
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:60
429
+ msgctxt "(Admin)"
430
+ msgid "Enable Privacy policy on Popup"
431
+ msgstr "Datenschutzrichtlinie für das Popup aktivieren"
432
+
433
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:66
434
+ msgctxt "(Admin)"
435
+ msgid "Cookie Acceptance Popup header"
436
+ msgstr "Cookie Popup \"Akzeptieren\" Header"
437
+
438
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:72
439
+ msgctxt "(Admin)"
440
+ msgid "Cookie Acceptance Popup Content"
441
+ msgstr "Cookie Popup \"Akzeptieren\" Inhalt"
442
+
443
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:81
444
+ msgctxt "(Admin)"
445
+ msgid "Acceptance Popup Setting"
446
+ msgstr "Cookie Popup \"Akzeptieren\" Einstellungen"
447
+
448
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:86
449
+ msgctxt "(Admin)"
450
+ msgid "Popup Position"
451
+ msgstr "Popup Position"
452
+
453
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:93
454
+ msgctxt "(Admin)"
455
+ msgid "Popup theme"
456
+ msgstr "Popup Theme"
457
+
458
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:100
459
+ msgctxt "(Admin)"
460
+ msgid "Popup Allow Text"
461
+ msgstr "Popup \"Zustimmen\" Text"
462
+
463
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:107
464
+ msgctxt "(Admin)"
465
+ msgid "Popup Dismiss Text"
466
+ msgstr "Popup \"Ablehnen\" Text"
467
+
468
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:114
469
+ msgctxt "(Admin)"
470
+ msgid "Popup Learn More Text"
471
+ msgstr "Popup \"Weitere Informationen\" Text"
472
+
473
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:121
474
+ msgctxt "(Admin)"
475
+ msgid "Cookie Acceptance link target"
476
+ msgstr "Cookie \"Akzeptieren\" Link Ziel"
477
+
478
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:128
479
+ msgctxt "(Admin)"
480
+ msgid "Cookie Acceptance Background Color"
481
+ msgstr "Cookie \"Akzeptieren\" Hintergrundfarbe"
482
+
483
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:135
484
+ msgctxt "(Admin)"
485
+ msgid "Cookie Acceptance Text Color"
486
+ msgstr "Cookie \"Akzeptieren\" Textfarbe"
487
+
488
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:142
489
+ msgctxt "(Admin)"
490
+ msgid "Cookie Acceptance Button Backgroung Color"
491
+ msgstr "Cookie \"Akzeptieren\" Button Hintergrundfarbe"
492
+
493
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:149
494
+ msgctxt "(Admin)"
495
+ msgid "Cookie Acceptance Button Color"
496
+ msgstr "Cookie \"Akzeptieren\" Button Textfarbe"
497
+
498
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:156
499
+ msgctxt "(Admin)"
500
+ msgid "Cookie Acceptance Border Color"
501
+ msgstr "Cookie \"Akzeptieren\" Button Randfarbe"
502
+
503
+ #: src/Components/DoNotSell/AdminTabDoNotSell.php:17
504
+ #: src/Components/DoNotSell/AdminTabDoNotSell.php:28
505
+ msgctxt "(Admin)"
506
+ msgid "Do Not Sell My Data"
507
+ msgstr "Meine Daten nicht verkaufen"
508
+
509
+ #: src/Components/DoNotSell/AdminTabDoNotSell.php:34
510
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:62
511
+ msgctxt "(Admin)"
512
+ msgid "Shortcode"
513
+ msgstr "Shortcode"
514
+
515
+ #: src/Components/DoNotSell/AdminTabDoNotSell.php:40
516
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:68
517
+ #, fuzzy
518
+ msgctxt "(Admin)"
519
+ msgid "Shortcode for PHP"
520
+ msgstr "Shortcode für PHP"
521
+
522
+ #: src/Components/DoNotSell/AdminTabDoNotSell.php:46
523
+ #, fuzzy
524
+ msgctxt "(Admin)"
525
+ msgid "View Requests"
526
+ msgstr "Anfragen anzeigen"
527
+
528
+ #: src/Components/PrivacyManager/AdminTabPrivacyManager.php:17
529
+ msgctxt "(Admin)"
530
+ msgid "Global Privacy Manager"
531
+ msgstr "Globaler Datenschutzmanager"
532
+
533
+ #: src/Components/PrivacyManager/AdminTabPrivacyManager.php:29
534
+ msgctxt "(Admin)"
535
+ msgid "Privacy Manager"
536
+ msgstr "Datenschutzmanager"
537
+
538
  #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:19
539
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:62
540
  #: views/admin/privacy-policy/generated.php:1 views/installer/header.php:41
541
  msgctxt "(Admin)"
542
  msgid "Privacy Policy"
543
  msgstr "Fortrolighedspolitik"
544
 
545
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:71
546
  msgctxt "(Admin)"
547
  msgid "Company information"
548
+ msgstr "Impressum"
549
 
550
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:76
551
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:223
552
  msgctxt "(Admin)"
553
  msgid "Company Name"
554
+ msgstr "Firmenname"
555
 
556
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:84
557
  msgctxt "(Admin)"
558
  msgid "Company Email"
559
+ msgstr "Firmen Email"
560
 
561
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:91
562
  msgctxt "(Admin)"
563
  msgid "Company Location"
564
+ msgstr "Firmenstandort"
565
 
566
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:107
567
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:259
568
  msgctxt "(Admin)"
569
  msgid "Representative Contact Name"
570
+ msgstr "Representativ kontaktnavn"
571
 
572
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:114
573
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:266
574
  msgctxt "(Admin)"
575
  msgid "Representative Contact Email"
576
+ msgstr "Ansprechpartner E-Mail-Adresse"
577
 
578
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:121
579
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:273
580
  msgctxt "(Admin)"
581
  msgid "Representative Contact Phone"
582
+ msgstr "Ansprechpartner Telefonnummer"
583
 
584
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:137
585
  msgctxt "(Admin)"
586
  msgid "Data Protection Authority"
587
+ msgstr "Datenschutzbehörde"
588
 
589
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:143
590
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:302
591
  msgctxt "(Admin)"
592
  msgid "Data Protection Authority Website"
593
+ msgstr "Datenschutzbehörde Website"
594
 
595
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:150
596
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:309
597
  msgctxt "(Admin)"
598
  msgid "Data Protection Authority Email"
599
+ msgstr "Datenschutzbehörde E-Mail-Adresse"
600
 
601
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:157
602
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:316
603
  msgctxt "(Admin)"
604
  msgid "Data Protection Authority Phone"
605
+ msgstr "Datenschutzbehörde Telefonnummer"
606
 
607
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:167
608
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:177
609
  msgctxt "(Admin)"
610
  msgid "Data Protection Officer"
611
+ msgstr "Datenschutzbeauftragter"
612
 
613
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:170
614
  msgctxt "(Admin)"
615
  msgid "Knowledge base: Do I need to appoint a Data Protection Officer?"
616
+ msgstr "Wissensdatenbank: Muss ich einen Datenschutzbeauftragten benennen?"
617
 
618
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:184
619
  msgctxt "(Admin)"
620
  msgid "Data Protection Officer Name"
621
+ msgstr "Name des Datenschutz&shy;beauftragten"
622
 
623
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:192
624
  msgctxt "(Admin)"
625
  msgid "Data Protection Officer Email"
626
+ msgstr "Datenschutzbeauftragter E-Mail-Adresse"
627
+
628
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:204
629
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:347
630
+ #, fuzzy
631
+ #| msgctxt "(Admin)"
632
+ #| msgid "Delete Text"
633
+ msgctxt "(Admin)"
634
+ msgid "Delete Text"
635
+ msgstr "Slet tekst"
636
 
637
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:230
638
  msgctxt "(Admin)"
639
  msgid "Contact Email"
640
+ msgstr "Kontakt E-Mail"
641
 
642
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:249
643
  msgctxt "(Admin)"
644
  msgid "Representative Contact"
645
+ msgstr "Representativ Kontakt"
646
 
647
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:252
648
  msgctxt "(Admin)"
649
  msgid "Knowledge base: Do I need to appoint an EU-based representative?"
650
+ msgstr ""
651
+ "Wissensdatenbank: Muss ich einen Vertreter mit Sitz in der EU benennen?"
652
 
653
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:289
654
+ #, php-format
655
+ msgctxt "(Admin)"
656
+ msgid "See the %slist of contacts here%s."
657
+ msgstr "Sehen Sie die %sliste der Kontakte hier %s."
658
+
659
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:333
660
  msgctxt "(Admin)"
661
  msgid "DPO Name"
662
+ msgstr "Name Datenschutzbeauftragter"
663
+
664
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:340
665
+ msgctxt "(Admin)"
666
+ msgid "DPO Email"
667
+ msgstr "Email Datenschutzbeauftragter"
668
 
669
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:422
670
  msgctxt "(Admin)"
671
  msgid "Save & Generate Policy"
672
+ msgstr "Arkiver og generer retningslinjer"
673
 
674
+ #: src/Components/PrivacyPolicy/PrivacyPolicy.php:81
675
+ #: src/Installer/Installer.php:309 src/Installer/Steps/PolicySettings.php:210
676
  #: views/themes/storefront/footer.php:3
677
  #: views/themes/twentyseventeen/footer.php:3
678
  #: views/themes/twentysixteen/footer.php:4
679
  msgid "Privacy Policy"
680
  msgstr "Fortrolighedspolitik"
681
 
682
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:17
683
+ msgctxt "(Admin)"
684
+ msgid "Privacy Safe"
685
+ msgstr "Schutz der Privatsphäre"
686
+
687
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:33
688
+ msgctxt "(Admin)"
689
+ msgid "Privacy Safe by Data443"
690
+ msgstr "Schutz der Privatsphäre durch Data443"
691
+
692
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:38
693
+ msgctxt "(Admin)"
694
+ msgid "Register for Privacy Safe"
695
+ msgstr "Für den Schutz der Privatsphäre registrieren"
696
+
697
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:44
698
+ msgctxt "(Admin)"
699
+ msgid "Privacy Safe Settings"
700
+ msgstr "Schutz der Privatsphäre Einstellungen"
701
+
702
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:50
703
+ msgctxt "(Admin)"
704
+ msgid "Seal Code"
705
+ msgstr "Siegelcode"
706
+
707
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:56
708
+ msgctxt "(Admin)"
709
+ msgid "Image Code"
710
+ msgstr "Bildcode"
711
+
712
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:74
713
+ msgctxt "(Admin)"
714
+ msgid "Support Data443"
715
+ msgstr "Support Data443"
716
+
717
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:83
718
+ #, fuzzy
719
+ msgctxt "(Admin)"
720
+ msgid ""
721
+ "Strengthen your reputation. The privacy safe seal assures your customers "
722
+ "that your business is in compliance with privacy laws and regulations. The "
723
+ "privacy safe seal will verify that the GDPR Framework plugin is installed."
724
+ msgstr ""
725
+ "Stärken Sie Ihren Ruf. Das Privacy Safe-Siegel versichert Ihren Kunden, dass "
726
+ "Ihr Unternehmen die Datenschutzgesetze und -vorschriften einhält. Das "
727
+ "Privacy Safe-Siegel überprüft, ob das GDPR Framework-Plugin installiert ist."
728
+
729
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:86
730
+ #, fuzzy
731
+ msgctxt "(Admin)"
732
+ msgid ""
733
+ "Register now to activate your Privacy Safe seal. Visit the link below, "
734
+ "complete the complete the checkout process. Once approved you will recieve "
735
+ "notice to get your seal code and image code. Enter those here and save. You "
736
+ "can then place the seal where you would like on your site."
737
+ msgstr ""
738
+ "Registrieren Sie sich jetzt, um Ihr Privacy Safe-Siegel zu aktivieren. "
739
+ "Besuchen Sie den untenstehenden Link, schließen Sie den Checkout-Vorgang ab. "
740
+ "Nach der Genehmigung erhalten Sie eine Benachrichtigung, um Ihren Siegelcode "
741
+ "und Bildcode zu erhalten. Geben Sie diese hier ein und speichern Sie. Sie "
742
+ "können dann das Siegel an der gewünschten Stelle auf Ihrer Website "
743
+ "platzieren."
744
+
745
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:86
746
+ msgctxt "(Admin)"
747
+ msgid "Register Here"
748
+ msgstr "Registrieren Sie sich hier"
749
+
750
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:89
751
+ #, fuzzy
752
+ msgctxt "(Admin)"
753
+ msgid "Embed the shortcode provided to display your privacy safe seal."
754
+ msgstr ""
755
+ "Betten Sie den bereitgestellten Shortcode ein, um Ihr Datenschutzsiegel "
756
+ "anzuzeigen."
757
+
758
+ #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:22
759
+ #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:55
760
  msgid "This page is currently disabled."
761
  msgstr "This page is currently disabled."
762
 
763
+ #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:26
764
+ #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:59
765
+ msgid "Please configure the Privacy Tools page in the admin interface."
766
+ msgstr "Konfiguriere die Seite für die Datenschutzerklärung."
767
+
768
+ #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:42
769
+ #: src/Installer/Installer.php:318
770
+ #: src/Installer/Steps/ConfigurationPages.php:65
771
  #: views/themes/storefront/footer.php:7
772
  #: views/themes/twentyseventeen/footer.php:7
773
  #: views/themes/twentysixteen/footer.php:9
780
  msgid "Support"
781
  msgstr "Support"
782
 
 
 
 
 
 
 
783
  #: src/Components/WordpressUser/Controllers/DashboardDataPageController.php:54
784
  #: views/privacy-tools/notices.php:19
785
  msgid "We have received your request and will reply within 30 days."
790
  msgid "Consent withdrawn."
791
  msgstr "Samtykke tilbagekaldt."
792
 
793
+ #: src/Components/WordpressUser/RegistrationForm.php:56
794
  msgid "<strong>ERROR</strong>: You must accept the terms and conditions."
795
  msgstr ""
796
  "<strong> FEJL </ strong>: Du skal acceptere vilkårene og betingelserne."
804
 
805
  #: src/DataSubject/AdminTabDataSubject.php:27
806
  #: src/DataSubject/AdminTabDataSubject.php:41
807
+ #, fuzzy
808
+ #| msgctxt "(Admin)"
809
+ #| msgid "Data Subjects"
810
  msgctxt "(Admin)"
811
  msgid "Data Subjects"
812
+ msgstr ""
813
+ "Auf dieser Seite können Sie nachlesen, welche personenbezogenen Daten Sie "
814
+ "von betroffenen Personen speichern und diese herunterladen, exportieren oder "
815
+ "löschen."
816
 
817
  #: src/DataSubject/DataRepository.php:143
818
  msgid "Data exported"
830
  msgid "Data removal request"
831
  msgstr "Data fjernelse anmodning"
832
 
833
+ #: src/DataSubject/DataSubjectIdentificator.php:78
834
+ #: src/DataSubject/DataSubjectIdentificator.php:96
835
  msgid "Your personal data on"
836
  msgstr "Dine personlige data på"
837
 
838
  #: src/Helpers.php:27
839
  msgctxt "(Admin)"
840
  msgid "Austria"
841
+ msgstr "Österreich"
842
 
843
  #: src/Helpers.php:28
844
  msgctxt "(Admin)"
863
  #: src/Helpers.php:32
864
  msgctxt "(Admin)"
865
  msgid "Czech Republic"
866
+ msgstr "Tschechien"
867
 
868
  #: src/Helpers.php:33
869
  msgctxt "(Admin)"
975
  msgid "United Kingdom"
976
  msgstr "Großbritannien"
977
 
978
+ #: src/Helpers.php:56
979
+ #, fuzzy
980
  msgctxt "(Admin)"
981
+ msgid "Afghanistan "
982
+ msgstr "Afghanistan "
983
 
984
+ #: src/Helpers.php:57
985
  msgctxt "(Admin)"
986
+ msgid "Åland Islands"
987
+ msgstr "Åland Inseln"
988
 
989
+ #: src/Helpers.php:58
990
  msgctxt "(Admin)"
991
+ msgid "Albania"
992
+ msgstr "Albanien"
993
 
994
+ #: src/Helpers.php:59
995
  msgctxt "(Admin)"
996
+ msgid "Algeria"
997
+ msgstr "Algerien"
998
 
999
+ #: src/Helpers.php:60
1000
+ #, fuzzy
1001
  msgctxt "(Admin)"
1002
+ msgid "American Samoa "
1003
+ msgstr "Amerikanisch-Samoa "
1004
 
1005
+ #: src/Helpers.php:61
1006
  msgctxt "(Admin)"
1007
+ msgid "Andorra"
1008
+ msgstr "Andorra"
1009
 
1010
+ #: src/Helpers.php:62
1011
+ msgctxt "(Admin)"
1012
+ msgid "Angola"
1013
+ msgstr "Angola"
1014
 
1015
+ #: src/Helpers.php:63
1016
  msgctxt "(Admin)"
1017
+ msgid "Anguilla"
1018
+ msgstr "Anguilla"
1019
 
1020
+ #: src/Helpers.php:64
 
 
1021
  msgctxt "(Admin)"
1022
+ msgid "Antarctica"
1023
+ msgstr "Antarktis"
1024
 
1025
+ #: src/Helpers.php:65
1026
  msgctxt "(Admin)"
1027
+ msgid "Antigua and Barbuda"
1028
+ msgstr "Antigua und Barbuda"
 
1029
 
1030
+ #: src/Helpers.php:66
1031
  msgctxt "(Admin)"
1032
+ msgid "Argentina"
1033
+ msgstr "Argentinien"
1034
 
1035
+ #: src/Helpers.php:67
1036
+ msgctxt "(Admin)"
1037
+ msgid "Armenia"
1038
+ msgstr "Armenien"
1039
 
1040
+ #: src/Helpers.php:68
1041
  msgctxt "(Admin)"
1042
+ msgid "Aruba"
1043
+ msgstr "Aruba"
1044
 
1045
+ #: src/Helpers.php:69
1046
  msgctxt "(Admin)"
1047
+ msgid "Australia"
1048
+ msgstr "Australien"
1049
 
1050
+ #: src/Helpers.php:70
1051
  msgctxt "(Admin)"
1052
+ msgid "Azerbaijan"
1053
+ msgstr "Aserbaidschan"
 
 
 
 
1054
 
1055
+ #: src/Helpers.php:71
1056
  msgctxt "(Admin)"
1057
+ msgid "Bahrain"
1058
+ msgstr "Bahrain"
1059
 
1060
+ #: src/Helpers.php:72
 
1061
  msgctxt "(Admin)"
1062
+ msgid "Bahamas"
1063
+ msgstr "Bahamas"
1064
 
1065
+ #: src/Helpers.php:73
 
1066
  msgctxt "(Admin)"
1067
+ msgid "Bangladesh"
1068
+ msgstr "Bangladesch"
1069
 
1070
+ #: src/Helpers.php:74
1071
  msgctxt "(Admin)"
1072
+ msgid "Barbados"
1073
+ msgstr "Barbados"
1074
 
1075
+ #: src/Helpers.php:75
1076
  msgctxt "(Admin)"
1077
+ msgid "Belarus"
1078
+ msgstr "Weißrussland"
1079
 
1080
+ #: src/Helpers.php:76
1081
  msgctxt "(Admin)"
1082
+ msgid "Belize"
1083
+ msgstr "Belize"
1084
 
1085
+ #: src/Helpers.php:77
1086
  msgctxt "(Admin)"
1087
+ msgid "Benin"
1088
+ msgstr "Benin"
1089
 
1090
+ #: src/Helpers.php:78
1091
  msgctxt "(Admin)"
1092
+ msgid "Bermuda"
1093
+ msgstr "Bermuda"
 
 
 
 
 
1094
 
1095
+ #: src/Helpers.php:79
1096
  msgctxt "(Admin)"
1097
+ msgid "Bhutan"
1098
+ msgstr "Bhutan"
1099
 
1100
+ #: src/Helpers.php:80
1101
  msgctxt "(Admin)"
1102
+ msgid "Bolivia, Plurinational State of"
1103
+ msgstr "Bolivien"
1104
 
1105
+ #: src/Helpers.php:81
1106
  msgctxt "(Admin)"
1107
+ msgid "Bonaire, Sint Eustatius and Saba"
1108
+ msgstr "Bonaire, St Eustatius und Saba"
1109
 
1110
+ #: src/Helpers.php:82
1111
  msgctxt "(Admin)"
1112
+ msgid "Bosnia and Herzegovina"
1113
+ msgstr "Bosnien und Herzegowina"
1114
 
1115
+ #: src/Helpers.php:83
1116
  msgctxt "(Admin)"
1117
+ msgid "Botswana"
1118
+ msgstr "Botswana"
 
 
 
1119
 
1120
+ #: src/Helpers.php:84
1121
  msgctxt "(Admin)"
1122
+ msgid "Bouvet Island"
1123
+ msgstr "Bouvet Island"
 
 
 
 
1124
 
1125
+ #: src/Helpers.php:85
1126
  msgctxt "(Admin)"
1127
+ msgid "Brazil"
1128
+ msgstr "Brasilien"
1129
 
1130
+ #: src/Helpers.php:86
1131
  msgctxt "(Admin)"
1132
+ msgid "British Indian Ocean Territory"
1133
+ msgstr "Britisches Territorium im Indischen Ozean"
1134
 
1135
+ #: src/Helpers.php:87
1136
  msgctxt "(Admin)"
1137
+ msgid "Brunei Darussalam"
1138
+ msgstr "Brunei Darussalam"
1139
 
1140
+ #: src/Helpers.php:88
1141
  msgctxt "(Admin)"
1142
+ msgid "Burkina Faso"
1143
+ msgstr "Burkina Faso"
1144
 
1145
+ #: src/Helpers.php:89
1146
  msgctxt "(Admin)"
1147
+ msgid "Burundi"
1148
+ msgstr "Burundi"
1149
 
1150
+ #: src/Helpers.php:90
1151
  msgctxt "(Admin)"
1152
+ msgid "Cambodia"
1153
+ msgstr "Kambodscha"
1154
 
1155
+ #: src/Helpers.php:91
1156
  msgctxt "(Admin)"
1157
+ msgid "Cameroon"
1158
+ msgstr "Kamerun"
1159
 
1160
+ #: src/Helpers.php:92
1161
  msgctxt "(Admin)"
1162
+ msgid "Canada"
1163
+ msgstr "Kanada"
 
 
 
 
1164
 
1165
+ #: src/Helpers.php:93
1166
  msgctxt "(Admin)"
1167
+ msgid "Cape Verde"
1168
+ msgstr "Kap Verde"
1169
 
1170
+ #: src/Helpers.php:94
1171
  msgctxt "(Admin)"
1172
+ msgid "Cayman Islands"
1173
+ msgstr "Kaimaninseln"
1174
 
1175
+ #: src/Helpers.php:95
1176
  msgctxt "(Admin)"
1177
+ msgid "Central African Republic"
1178
+ msgstr "Zentralafrikanische Republik"
1179
 
1180
+ #: src/Helpers.php:96
1181
+ msgctxt "(Admin)"
1182
+ msgid "Chad"
1183
+ msgstr "Tschad"
 
 
1184
 
1185
+ #: src/Helpers.php:97
 
1186
  msgctxt "(Admin)"
1187
+ msgid "Chile"
1188
+ msgstr "Chile"
1189
 
1190
+ #: src/Helpers.php:98
 
1191
  msgctxt "(Admin)"
1192
+ msgid "China"
1193
+ msgstr "China"
1194
 
1195
+ #: src/Helpers.php:99
1196
  msgctxt "(Admin)"
1197
+ msgid "Christmas Island"
1198
+ msgstr "Weihnachtsinsel"
 
 
 
 
1199
 
1200
+ #: src/Helpers.php:100
1201
  msgctxt "(Admin)"
1202
+ msgid "Cocos (Keeling) Islands"
1203
+ msgstr "Kokosinseln"
 
 
 
 
1204
 
1205
+ #: src/Helpers.php:101
1206
  msgctxt "(Admin)"
1207
+ msgid "Colombia"
1208
+ msgstr "Kolumbien"
 
 
1209
 
1210
+ #: src/Helpers.php:102
1211
  msgctxt "(Admin)"
1212
+ msgid "Comoros"
1213
+ msgstr "Komoren"
 
 
 
 
 
 
1214
 
1215
+ #: src/Helpers.php:103
 
1216
  msgctxt "(Admin)"
1217
+ msgid "Congo"
1218
+ msgstr "Kongo"
 
 
 
1219
 
1220
+ #: src/Helpers.php:104
 
1221
  msgctxt "(Admin)"
1222
+ msgid "Congo, the Democratic Republic of the"
1223
+ msgstr "Demokratische Republik Kongo"
1224
 
1225
+ #: src/Helpers.php:105
1226
  msgctxt "(Admin)"
1227
+ msgid "Cook Islands"
1228
+ msgstr "Cookinseln"
 
 
 
 
1229
 
1230
+ #: src/Helpers.php:106
1231
  msgctxt "(Admin)"
1232
+ msgid "Costa Rica"
1233
+ msgstr "Costa Rica"
 
 
 
 
1234
 
1235
+ #: src/Helpers.php:107
1236
+ #, fuzzy
1237
  msgctxt "(Admin)"
1238
+ msgid "Côte dIvoire"
1239
+ msgstr "Côte dIvoire"
 
1240
 
1241
+ #: src/Helpers.php:108
1242
  msgctxt "(Admin)"
1243
+ msgid "Cuba"
1244
+ msgstr "Cuba"
1245
 
1246
+ #: src/Helpers.php:109
1247
  msgctxt "(Admin)"
1248
+ msgid "Curaçao"
1249
+ msgstr "Curaçao"
1250
 
1251
+ #: src/Helpers.php:110
1252
  msgctxt "(Admin)"
1253
+ msgid "Djibouti"
1254
+ msgstr "Dschibuti"
1255
 
1256
+ #: src/Helpers.php:111
1257
  msgctxt "(Admin)"
1258
+ msgid "Dominica"
1259
+ msgstr "Dominica"
 
 
 
 
1260
 
1261
+ #: src/Helpers.php:112
 
1262
  msgctxt "(Admin)"
1263
+ msgid "Dominican Republic"
1264
+ msgstr "Dominikanische Republik"
1265
 
1266
+ #: src/Helpers.php:113
1267
  msgctxt "(Admin)"
1268
+ msgid "Ecuador"
1269
+ msgstr "Ecuador"
1270
 
1271
+ #: src/Helpers.php:114
1272
  msgctxt "(Admin)"
1273
+ msgid "Egypt"
1274
+ msgstr "Ägypten"
1275
 
1276
+ #: src/Helpers.php:115
1277
  msgctxt "(Admin)"
1278
+ msgid "El Salvador"
1279
+ msgstr "El Salvador"
1280
 
1281
+ #: src/Helpers.php:116
1282
  msgctxt "(Admin)"
1283
+ msgid "Equatorial Guinea"
1284
+ msgstr "Äquatorialguinea"
1285
 
1286
+ #: src/Helpers.php:117
1287
  msgctxt "(Admin)"
1288
+ msgid "Eritrea"
1289
+ msgstr "Eritrea"
1290
 
1291
+ #: src/Helpers.php:118
1292
  msgctxt "(Admin)"
1293
+ msgid "Ethiopia"
1294
+ msgstr "Äthiopien"
1295
 
1296
+ #: src/Helpers.php:119
1297
  msgctxt "(Admin)"
1298
+ msgid "Falkland Islands (Malvinas)"
1299
+ msgstr "Falklandinseln (Malvinas)"
 
 
1300
 
1301
+ #: src/Helpers.php:120
1302
  msgctxt "(Admin)"
1303
+ msgid "Faroe Islands"
1304
+ msgstr "Färöer Inseln"
1305
 
1306
+ #: src/Helpers.php:121
1307
  msgctxt "(Admin)"
1308
+ msgid "Fiji"
1309
+ msgstr "Fidschi"
1310
 
1311
+ #: src/Helpers.php:122
1312
  msgctxt "(Admin)"
1313
+ msgid "French Guiana"
1314
+ msgstr "Französisch-Guayana"
 
 
 
 
1315
 
1316
+ #: src/Helpers.php:123
1317
  msgctxt "(Admin)"
1318
+ msgid "French Polynesia"
1319
+ msgstr "Französisch-Polynesien"
1320
 
1321
+ #: src/Helpers.php:124
1322
  msgctxt "(Admin)"
1323
+ msgid "French Southern Territories"
1324
+ msgstr "Französische Süd- und Antarktisgebiete"
 
 
 
 
1325
 
1326
+ #: src/Helpers.php:125
1327
  msgctxt "(Admin)"
1328
+ msgid "Gabon"
1329
+ msgstr "Gabun"
1330
 
1331
+ #: src/Helpers.php:126
1332
  msgctxt "(Admin)"
1333
+ msgid "Gambia"
1334
+ msgstr "Gambia"
 
1335
 
1336
+ #: src/Helpers.php:127
1337
  msgctxt "(Admin)"
1338
+ msgid "Georgia"
1339
+ msgstr "Georgien"
1340
 
1341
+ #: src/Helpers.php:128
1342
+ #, fuzzy
1343
+ msgctxt "(Admin)"
1344
+ msgid "Georgia "
1345
+ msgstr "Georgien"
1346
 
1347
+ #: src/Helpers.php:129
1348
+ msgctxt "(Admin)"
1349
+ msgid "Ghana"
1350
+ msgstr "Ghana"
 
1351
 
1352
+ #: src/Helpers.php:130
1353
+ msgctxt "(Admin)"
1354
+ msgid "Gibraltar"
1355
+ msgstr "Gibraltar"
1356
 
1357
+ #: src/Helpers.php:131
1358
+ msgctxt "(Admin)"
1359
+ msgid "Greenland"
1360
+ msgstr "Grönland"
1361
 
1362
+ #: src/Helpers.php:132
1363
+ #, fuzzy
1364
+ msgctxt "(Admin)"
1365
+ msgid "Grenada "
1366
+ msgstr "Grenada "
1367
 
1368
+ #: src/Helpers.php:133
1369
+ #, fuzzy
1370
+ msgctxt "(Admin)"
1371
+ msgid "Guadeloupe "
1372
+ msgstr "Guadeloupe "
1373
 
1374
+ #: src/Helpers.php:134
1375
+ msgctxt "(Admin)"
1376
+ msgid "Guam"
1377
+ msgstr "Guam"
 
 
 
1378
 
1379
+ #: src/Helpers.php:135
1380
  msgctxt "(Admin)"
1381
+ msgid "Guatemala"
1382
+ msgstr "Guatemala"
1383
 
1384
+ #: src/Helpers.php:136
1385
  msgctxt "(Admin)"
1386
+ msgid "Guernsey"
1387
+ msgstr "Guernsey"
1388
 
1389
+ #: src/Helpers.php:137
1390
+ #, fuzzy
1391
  msgctxt "(Admin)"
1392
+ msgid "Guinea "
1393
+ msgstr "Guinea "
1394
 
1395
+ #: src/Helpers.php:138
1396
+ #, fuzzy
1397
  msgctxt "(Admin)"
1398
+ msgid "Guinea-Bissau "
1399
+ msgstr "Guinea-Bissau "
1400
 
1401
+ #: src/Helpers.php:139
1402
+ #, fuzzy
1403
  msgctxt "(Admin)"
1404
+ msgid "Guyana "
1405
+ msgstr "Guyana "
1406
 
1407
+ #: src/Helpers.php:140
1408
+ #, fuzzy
1409
  msgctxt "(Admin)"
1410
+ msgid "Haiti "
1411
+ msgstr "Haiti "
1412
 
1413
+ #: src/Helpers.php:141
1414
  msgctxt "(Admin)"
1415
+ msgid "Heard Island and McDonald Islands "
1416
+ msgstr "Heard Insel und McDonald Inseln "
1417
 
1418
+ #: src/Helpers.php:142
1419
+ #, fuzzy
1420
  msgctxt "(Admin)"
1421
+ msgid "Holy See (Vatican City State) "
1422
+ msgstr "Heiliger Stuhl (Vatikanstadt) "
1423
 
1424
+ #: src/Helpers.php:143
1425
+ #, fuzzy
1426
  msgctxt "(Admin)"
1427
+ msgid "Honduras "
1428
+ msgstr "Honduras "
1429
 
1430
+ #: src/Helpers.php:144
1431
+ #, fuzzy
1432
  msgctxt "(Admin)"
1433
+ msgid "Hong Kong "
1434
+ msgstr "Hongkong "
1435
 
1436
+ #: src/Helpers.php:145
1437
+ #, fuzzy
1438
  msgctxt "(Admin)"
1439
+ msgid "India "
1440
+ msgstr "Indien "
1441
 
1442
+ #: src/Helpers.php:146
1443
+ #, fuzzy
1444
  msgctxt "(Admin)"
1445
+ msgid "Indonesia "
1446
+ msgstr "Indonesien "
1447
 
1448
+ #: src/Helpers.php:147
1449
+ #, fuzzy
1450
+ msgctxt "(Admin)"
1451
+ msgid "Iran, Islamic Republic of "
1452
+ msgstr "Iran, Islamische Republik "
1453
 
1454
+ #: src/Helpers.php:148
1455
+ #, fuzzy
1456
  msgctxt "(Admin)"
1457
+ msgid "Iraq "
1458
+ msgstr "Irak "
1459
 
1460
+ #: src/Helpers.php:149
1461
+ #, fuzzy
1462
  msgctxt "(Admin)"
1463
+ msgid "Isle of Man "
1464
+ msgstr "Insel Man "
1465
 
1466
+ #: src/Helpers.php:150
1467
+ #, fuzzy
1468
  msgctxt "(Admin)"
1469
+ msgid "Israel "
1470
+ msgstr "Israel "
1471
 
1472
+ #: src/Helpers.php:151
1473
+ #, fuzzy
1474
  msgctxt "(Admin)"
1475
+ msgid "Jamaica "
1476
+ msgstr "Jamaika "
1477
 
1478
+ #: src/Helpers.php:152
1479
+ #, fuzzy
1480
  msgctxt "(Admin)"
1481
+ msgid "Japan "
1482
+ msgstr "Japan "
1483
 
1484
+ #: src/Helpers.php:153
1485
+ #, fuzzy
1486
  msgctxt "(Admin)"
1487
+ msgid "Jersey "
1488
+ msgstr "Jersey "
1489
 
1490
+ #: src/Helpers.php:154
1491
+ #, fuzzy
1492
  msgctxt "(Admin)"
1493
+ msgid "Jordan "
1494
+ msgstr "Jordanien "
1495
 
1496
+ #: src/Helpers.php:155
1497
+ #, fuzzy
1498
  msgctxt "(Admin)"
1499
+ msgid "Kazakhstan "
1500
+ msgstr "Kasachstan "
1501
 
1502
+ #: src/Helpers.php:156
1503
+ #, fuzzy
1504
  msgctxt "(Admin)"
1505
+ msgid "Kenya "
1506
+ msgstr "Kenia "
1507
 
1508
+ #: src/Helpers.php:157
1509
+ #, fuzzy
1510
  msgctxt "(Admin)"
1511
+ msgid "Kiribati "
1512
+ msgstr "Kiribati "
1513
 
1514
+ #: src/Helpers.php:158
1515
+ #, fuzzy
1516
  msgctxt "(Admin)"
1517
+ msgid "Korea, Democratic Peoples Republic of "
1518
+ msgstr "Korea, Demokratische Volksrepublik "
 
 
 
 
1519
 
1520
+ #: src/Helpers.php:159
1521
+ #, fuzzy
1522
+ msgctxt "(Admin)"
1523
+ msgid "Korea, Republic of "
1524
+ msgstr "Korea, Republik "
1525
 
1526
+ #: src/Helpers.php:160
1527
+ #, fuzzy
1528
+ msgctxt "(Admin)"
1529
+ msgid "Kuwait "
1530
+ msgstr "Kuwait "
1531
 
1532
+ #: src/Helpers.php:161
1533
+ #, fuzzy
1534
+ msgctxt "(Admin)"
1535
+ msgid "Kyrgyzstan "
1536
+ msgstr "Kirgistan "
1537
 
1538
+ #: src/Helpers.php:162
1539
+ msgctxt "(Admin)"
1540
+ msgid "Lao Peoples Democratic Republic "
1541
+ msgstr "Volksrepublik Laos"
1542
 
1543
+ #: src/Helpers.php:163
1544
+ #, fuzzy
1545
+ msgctxt "(Admin)"
1546
+ msgid "Lebanon "
1547
+ msgstr "Libanon "
1548
 
1549
+ #: src/Helpers.php:164
1550
+ #, fuzzy
1551
+ msgctxt "(Admin)"
1552
+ msgid "Lesotho "
1553
+ msgstr "Lesotho "
1554
 
1555
+ #: src/Helpers.php:165
1556
+ #, fuzzy
1557
  msgctxt "(Admin)"
1558
+ msgid "Liberia "
1559
+ msgstr "Liberia "
1560
 
1561
+ #: src/Helpers.php:166
1562
+ #, fuzzy
1563
  msgctxt "(Admin)"
1564
+ msgid "Libya "
1565
+ msgstr "Libyen "
1566
 
1567
+ #: src/Helpers.php:167
1568
+ #, fuzzy
1569
+ msgctxt "(Admin)"
1570
+ msgid "Macao "
1571
+ msgstr "Macao "
1572
 
1573
+ #: src/Helpers.php:168
1574
+ #, fuzzy
1575
+ msgctxt "(Admin)"
1576
+ msgid "Macedonia, the Former Yugoslav Republic of "
1577
+ msgstr "Mazedonien, ehemalige jugoslawische Republik "
1578
 
1579
+ #: src/Helpers.php:169
1580
+ #, fuzzy
1581
+ msgctxt "(Admin)"
1582
+ msgid "Madagascar "
1583
+ msgstr "Madagaskar "
1584
 
1585
+ #: src/Helpers.php:170
1586
+ #, fuzzy
1587
  msgctxt "(Admin)"
1588
+ msgid "Malawi "
1589
+ msgstr "Malawi "
 
 
 
 
1590
 
1591
+ #: src/Helpers.php:171
1592
+ #, fuzzy
1593
+ msgctxt "(Admin)"
1594
+ msgid "Malaysia "
1595
+ msgstr "Malaysien "
1596
 
1597
+ #: src/Helpers.php:172
1598
+ #, fuzzy
1599
+ msgctxt "(Admin)"
1600
+ msgid "Maldives "
1601
+ msgstr "Malediven "
1602
 
1603
+ #: src/Helpers.php:173
1604
+ #, fuzzy
1605
+ msgctxt "(Admin)"
1606
+ msgid "Mali "
1607
+ msgstr "Mali "
1608
 
1609
+ #: src/Helpers.php:174
1610
+ #, fuzzy
1611
+ msgctxt "(Admin)"
1612
+ msgid "Marshall Islands "
1613
+ msgstr "Marshallinseln "
1614
 
1615
+ #: src/Helpers.php:175
1616
+ #, fuzzy
1617
+ msgctxt "(Admin)"
1618
+ msgid "Martinique "
1619
+ msgstr "Martinique "
1620
 
1621
+ #: src/Helpers.php:176
1622
+ #, fuzzy
1623
  msgctxt "(Admin)"
1624
+ msgid "Mauritania "
1625
+ msgstr "Mauretanien "
1626
 
1627
+ #: src/Helpers.php:177
1628
+ #, fuzzy
1629
  msgctxt "(Admin)"
1630
+ msgid "Mauritius "
1631
+ msgstr "Mauritius "
1632
 
1633
+ #: src/Helpers.php:178
1634
+ #, fuzzy
1635
  msgctxt "(Admin)"
1636
+ msgid "Mayotte "
1637
+ msgstr "Mayotte "
1638
 
1639
+ #: src/Helpers.php:179
1640
+ #, fuzzy
1641
  msgctxt "(Admin)"
1642
+ msgid "Mexico "
1643
+ msgstr "Mexiko "
1644
 
1645
+ #: src/Helpers.php:180
1646
+ #, fuzzy
1647
  msgctxt "(Admin)"
1648
+ msgid "Micronesia, Federated States of "
1649
+ msgstr "Mikronesien, Föderierte Staaten von "
1650
 
1651
+ #: src/Helpers.php:181
1652
+ #, fuzzy
1653
  msgctxt "(Admin)"
1654
+ msgid "Moldova, Republic of "
1655
+ msgstr "Moldawien, Republik "
1656
 
1657
+ #: src/Helpers.php:182
1658
+ #, fuzzy
1659
+ msgctxt "(Admin)"
1660
+ msgid "Monaco "
1661
+ msgstr "Monaco "
1662
 
1663
+ #: src/Helpers.php:183
1664
+ #, fuzzy
1665
+ msgctxt "(Admin)"
1666
+ msgid "Mongolia "
1667
+ msgstr "Mongolei "
1668
 
1669
+ #: src/Helpers.php:184
1670
+ #, fuzzy
1671
+ msgctxt "(Admin)"
1672
+ msgid "Montenegro "
1673
+ msgstr "Montenegro "
1674
 
1675
+ #: src/Helpers.php:185
1676
+ #, fuzzy
1677
+ msgctxt "(Admin)"
1678
+ msgid "Montserrat "
1679
+ msgstr "Montserrat "
1680
 
1681
+ #: src/Helpers.php:186
1682
+ #, fuzzy
1683
+ msgctxt "(Admin)"
1684
+ msgid "Morocco "
1685
+ msgstr "Marokko "
1686
 
1687
+ #: src/Helpers.php:187
1688
+ #, fuzzy
1689
+ msgctxt "(Admin)"
1690
+ msgid "Mozambique "
1691
+ msgstr "Mosambik "
1692
 
1693
+ #: src/Helpers.php:188
1694
+ #, fuzzy
1695
+ msgctxt "(Admin)"
1696
+ msgid "Myanmar "
1697
+ msgstr "Myanmar "
1698
 
1699
+ #: src/Helpers.php:189
1700
+ #, fuzzy
1701
  msgctxt "(Admin)"
1702
+ msgid "Namibia "
1703
+ msgstr "Namibia "
1704
 
1705
+ #: src/Helpers.php:190
1706
+ #, fuzzy
1707
+ msgctxt "(Admin)"
1708
+ msgid "Nauru "
1709
+ msgstr "Nauru "
 
 
1710
 
1711
+ #: src/Helpers.php:191
1712
+ #, fuzzy
1713
+ msgctxt "(Admin)"
1714
+ msgid "Nepal "
1715
+ msgstr "Nepal "
1716
 
1717
+ #: src/Helpers.php:192
1718
+ #, fuzzy
1719
+ msgctxt "(Admin)"
1720
+ msgid "New Caledonia "
1721
+ msgstr "Neukaledonien "
1722
 
1723
+ #: src/Helpers.php:193
1724
+ msgctxt "(Admin)"
1725
+ msgid "New Zealand "
1726
+ msgstr "Neuseeland "
 
1727
 
1728
+ #: src/Helpers.php:194
1729
+ #, fuzzy
1730
+ msgctxt "(Admin)"
1731
+ msgid "Nicaragua "
1732
+ msgstr "Nicaragua "
1733
 
1734
+ #: src/Helpers.php:195
1735
+ #, fuzzy
1736
  msgctxt "(Admin)"
1737
+ msgid "Niger "
1738
+ msgstr "Niger "
 
1739
 
1740
+ #: src/Helpers.php:196
1741
+ #, fuzzy
1742
  msgctxt "(Admin)"
1743
+ msgid "Nigeria "
1744
+ msgstr "Nigeria "
1745
 
1746
+ #: src/Helpers.php:197
1747
+ #, fuzzy
1748
+ msgctxt "(Admin)"
1749
+ msgid "Niue "
1750
+ msgstr "Niue "
 
 
1751
 
1752
+ #: src/Helpers.php:198
1753
+ #, fuzzy
1754
+ msgctxt "(Admin)"
1755
+ msgid "Norfolk Island "
1756
+ msgstr "Norfolkinsel "
1757
 
1758
+ #: src/Helpers.php:199
1759
+ #, fuzzy
1760
+ msgctxt "(Admin)"
1761
+ msgid "Northern Mariana Islands "
1762
+ msgstr "Nördliche Marianen "
1763
 
1764
+ #: src/Helpers.php:200
1765
+ #, fuzzy
1766
+ msgctxt "(Admin)"
1767
+ msgid "Oman "
1768
+ msgstr "Oman "
1769
 
1770
+ #: src/Helpers.php:201
1771
+ #, fuzzy
1772
  msgctxt "(Admin)"
1773
+ msgid "Pakistan "
1774
+ msgstr "Pakistan "
1775
 
1776
+ #: src/Helpers.php:202
1777
+ #, fuzzy
1778
  msgctxt "(Admin)"
1779
+ msgid "Palau "
1780
+ msgstr "Palau "
1781
 
1782
+ #: src/Helpers.php:203
1783
+ #, fuzzy
1784
  msgctxt "(Admin)"
1785
+ msgid "Palestine, State of "
1786
+ msgstr "Palästina, Staat "
1787
 
1788
+ #: src/Helpers.php:204
1789
+ #, fuzzy
1790
  msgctxt "(Admin)"
1791
+ msgid "Panama "
1792
+ msgstr "Panama "
1793
 
1794
+ #: src/Helpers.php:205
1795
+ #, fuzzy
1796
  msgctxt "(Admin)"
1797
+ msgid "Papua New Guinea "
1798
+ msgstr "Papua-Neuguinea "
1799
 
1800
+ #: src/Helpers.php:206
1801
+ #, fuzzy
1802
  msgctxt "(Admin)"
1803
+ msgid "Paraguay "
1804
+ msgstr "Paraguay "
1805
 
1806
+ #: src/Helpers.php:207
1807
+ #, fuzzy
1808
  msgctxt "(Admin)"
1809
+ msgid "Peru "
1810
+ msgstr "Peru "
1811
 
1812
+ #: src/Helpers.php:208
1813
+ #, fuzzy
1814
  msgctxt "(Admin)"
1815
+ msgid "Philippines "
1816
+ msgstr "Philippinen "
1817
 
1818
+ #: src/Helpers.php:209
1819
+ #, fuzzy
1820
  msgctxt "(Admin)"
1821
+ msgid "Pitcairn "
1822
+ msgstr "Pitcairn "
1823
 
1824
+ #: src/Helpers.php:210
1825
+ #, fuzzy
1826
  msgctxt "(Admin)"
1827
+ msgid "Puerto Rico "
1828
+ msgstr "Puerto Rico "
1829
 
1830
+ #: src/Helpers.php:211
1831
+ #, fuzzy
1832
  msgctxt "(Admin)"
1833
+ msgid "Qatar "
1834
+ msgstr "Katar "
1835
 
1836
+ #: src/Helpers.php:212
1837
+ #, fuzzy
1838
  msgctxt "(Admin)"
1839
+ msgid "Réunion "
1840
+ msgstr "Réunion "
1841
 
1842
+ #: src/Helpers.php:213
1843
+ #, fuzzy
1844
  msgctxt "(Admin)"
1845
+ msgid "Russian Federation "
1846
+ msgstr "Russische Föderation "
1847
 
1848
+ #: src/Helpers.php:214
1849
+ #, fuzzy
1850
  msgctxt "(Admin)"
1851
+ msgid "Rwanda "
1852
+ msgstr "Ruanda "
1853
 
1854
+ #: src/Helpers.php:215
1855
+ #, fuzzy
1856
  msgctxt "(Admin)"
1857
+ msgid "Saint Barthélemy "
1858
+ msgstr "Heilige Barthélemy "
1859
 
1860
+ #: src/Helpers.php:216
1861
+ #, fuzzy
1862
  msgctxt "(Admin)"
1863
+ msgid "Saint Helena, Ascension and Tristan da Cunha "
1864
+ msgstr "St. Helena, Ascension und Tristan da Cunha "
1865
 
1866
+ #: src/Helpers.php:217
1867
+ #, fuzzy
1868
  msgctxt "(Admin)"
1869
+ msgid "Saint Kitts and Nevis "
1870
+ msgstr "St. Kitts und Nevis "
1871
 
1872
+ #: src/Helpers.php:218
1873
+ #, fuzzy
1874
  msgctxt "(Admin)"
1875
+ msgid "Saint Lucia "
1876
+ msgstr "St. Lucia "
1877
 
1878
+ #: src/Helpers.php:219
1879
+ #, fuzzy
1880
  msgctxt "(Admin)"
1881
+ msgid "Saint Martin (French part) "
1882
+ msgstr "Saint Martin (französischer Teil) "
1883
 
1884
+ #: src/Helpers.php:220
1885
+ #, fuzzy
1886
+ msgctxt "(Admin)"
1887
+ msgid "Saint Pierre and Miquelon "
1888
+ msgstr "Saint Pierre und Miquelon "
1889
 
1890
+ #: src/Helpers.php:221
1891
+ #, fuzzy
1892
  msgctxt "(Admin)"
1893
+ msgid "Saint Vincent and the Grenadines "
1894
+ msgstr "St. Vincent und die Grenadinen "
 
1895
 
1896
+ #: src/Helpers.php:222
1897
+ #, fuzzy
1898
  msgctxt "(Admin)"
1899
+ msgid "Samoa "
1900
+ msgstr "Samoa "
1901
 
1902
+ #: src/Helpers.php:223
1903
+ #, fuzzy
1904
  msgctxt "(Admin)"
1905
+ msgid "San Marino "
1906
+ msgstr "San Marino "
1907
 
1908
+ #: src/Helpers.php:224
1909
+ #, fuzzy
1910
  msgctxt "(Admin)"
1911
+ msgid "Sao Tome and Principe "
1912
+ msgstr "Sao Tome und Principe "
1913
 
1914
+ #: src/Helpers.php:225
1915
+ #, fuzzy
1916
  msgctxt "(Admin)"
1917
+ msgid "Saudi Arabia "
1918
+ msgstr "Saudi-Arabien "
1919
 
1920
+ #: src/Helpers.php:226
1921
+ #, fuzzy
1922
  msgctxt "(Admin)"
1923
+ msgid "Senegal "
1924
+ msgstr "Senegal "
1925
 
1926
+ #: src/Helpers.php:227
1927
+ #, fuzzy
1928
  msgctxt "(Admin)"
1929
+ msgid "Serbia "
1930
+ msgstr "Serbien "
1931
 
1932
+ #: src/Helpers.php:228
1933
+ #, fuzzy
1934
  msgctxt "(Admin)"
1935
+ msgid "Seychelles "
1936
+ msgstr "Seychellen "
1937
 
1938
+ #: src/Helpers.php:229
1939
+ #, fuzzy
1940
  msgctxt "(Admin)"
1941
+ msgid "Sierra Leone "
1942
+ msgstr "Sierra Leone "
1943
 
1944
+ #: src/Helpers.php:230
1945
+ #, fuzzy
1946
  msgctxt "(Admin)"
1947
+ msgid "Singapore "
1948
+ msgstr "Singapur "
1949
 
1950
+ #: src/Helpers.php:231
1951
+ #, fuzzy
1952
  msgctxt "(Admin)"
1953
+ msgid "Sint Maarten (Dutch part) "
1954
+ msgstr "Sint Maarten (niederländischer Teil) "
1955
 
1956
+ #: src/Helpers.php:232
1957
+ #, fuzzy
1958
+ msgctxt "(Admin)"
1959
+ msgid "Solomon Islands "
1960
+ msgstr "Salomonen "
1961
 
1962
+ #: src/Helpers.php:233
1963
+ #, fuzzy
1964
+ msgctxt "(Admin)"
1965
+ msgid "Somalia "
1966
+ msgstr "Somalia "
1967
 
1968
+ #: src/Helpers.php:234
1969
+ #, fuzzy
1970
+ msgctxt "(Admin)"
1971
+ msgid "South Africa "
1972
+ msgstr "Südafrika "
1973
 
1974
+ #: src/Helpers.php:235
1975
+ #, fuzzy
1976
+ msgctxt "(Admin)"
1977
+ msgid "South Georgia and the South Sandwich Islands "
1978
+ msgstr "Südgeorgien und die Südlichen Sandwichinseln "
1979
 
1980
+ #: src/Helpers.php:236
1981
+ #, fuzzy
1982
+ msgctxt "(Admin)"
1983
+ msgid "South Sudan "
1984
+ msgstr "Südsudan "
1985
 
1986
+ #: src/Helpers.php:237
1987
+ #, fuzzy
1988
+ msgctxt "(Admin)"
1989
+ msgid "Sri Lanka "
1990
+ msgstr "Sri Lanka "
1991
 
1992
+ #: src/Helpers.php:238
1993
+ #, fuzzy
1994
+ msgctxt "(Admin)"
1995
+ msgid "Sudan "
1996
+ msgstr "Sudan "
1997
 
1998
+ #: src/Helpers.php:239
1999
+ #, fuzzy
2000
+ msgctxt "(Admin)"
2001
+ msgid "Suriname "
2002
+ msgstr "Suriname "
2003
 
2004
+ #: src/Helpers.php:240
2005
+ #, fuzzy
2006
+ msgctxt "(Admin)"
2007
+ msgid "Svalbard and Jan Mayen "
2008
+ msgstr "Svalbard und Jan Mayen "
2009
 
2010
+ #: src/Helpers.php:241
2011
  msgctxt "(Admin)"
2012
+ msgid "Swaziland "
2013
+ msgstr "Schweiz "
2014
 
2015
+ #: src/Helpers.php:242
2016
+ #, fuzzy
2017
  msgctxt "(Admin)"
2018
+ msgid "Syrian Arab Republic "
2019
+ msgstr "Arabische Republik Syrien "
2020
 
2021
+ #: src/Helpers.php:243
2022
+ #, fuzzy
2023
  msgctxt "(Admin)"
2024
+ msgid "Taiwan "
2025
+ msgstr "Taiwan "
2026
 
2027
+ #: src/Helpers.php:244
2028
+ #, fuzzy
2029
  msgctxt "(Admin)"
2030
+ msgid "Tajikistan "
2031
+ msgstr "Tadschikistan "
2032
 
2033
+ #: src/Helpers.php:245
2034
+ #, fuzzy
2035
  msgctxt "(Admin)"
2036
+ msgid "Tanzania, United Republic of "
2037
+ msgstr "Tansania, Vereinigte Republik "
2038
 
2039
+ #: src/Helpers.php:246
2040
+ #, fuzzy
2041
  msgctxt "(Admin)"
2042
+ msgid "Thailand "
2043
+ msgstr "Thailand "
2044
 
2045
+ #: src/Helpers.php:247
2046
+ #, fuzzy
2047
  msgctxt "(Admin)"
2048
+ msgid "Timor-Leste "
2049
+ msgstr "Timor-Leste "
 
 
 
 
 
 
2050
 
2051
+ #: src/Helpers.php:248
2052
+ #, fuzzy
2053
  msgctxt "(Admin)"
2054
+ msgid "Togo "
2055
+ msgstr "Togo "
2056
 
2057
+ #: src/Helpers.php:249
2058
+ #, fuzzy
2059
  msgctxt "(Admin)"
2060
+ msgid "Tokelau "
2061
+ msgstr "Tokelau "
2062
 
2063
+ #: src/Helpers.php:250
2064
+ #, fuzzy
2065
  msgctxt "(Admin)"
2066
+ msgid "Tonga "
2067
+ msgstr "Tonga "
2068
 
2069
+ #: src/Helpers.php:251
2070
+ #, fuzzy
2071
  msgctxt "(Admin)"
2072
+ msgid "Trinidad and Tobago "
2073
+ msgstr "Trinidad und Tobago "
2074
 
2075
+ #: src/Helpers.php:252
2076
+ #, fuzzy
2077
  msgctxt "(Admin)"
2078
+ msgid "Tunisia "
2079
+ msgstr "Tunesien "
 
 
 
 
2080
 
2081
+ #: src/Helpers.php:253
2082
+ #, fuzzy
2083
  msgctxt "(Admin)"
2084
+ msgid "Turkey "
2085
+ msgstr "Turkei "
 
 
 
 
2086
 
2087
+ #: src/Helpers.php:254
2088
+ #, fuzzy
2089
  msgctxt "(Admin)"
2090
+ msgid "Turkmenistan "
2091
+ msgstr "Turkmenistan "
2092
 
2093
+ #: src/Helpers.php:255
2094
+ #, fuzzy
2095
  msgctxt "(Admin)"
2096
+ msgid "Turks and Caicos Islands "
2097
+ msgstr "Turks- und Caicosinseln "
2098
 
2099
+ #: src/Helpers.php:256
2100
+ #, fuzzy
2101
  msgctxt "(Admin)"
2102
+ msgid "Tuvalu "
2103
+ msgstr "Tuvalu "
2104
 
2105
+ #: src/Helpers.php:257
2106
+ #, fuzzy
2107
  msgctxt "(Admin)"
2108
+ msgid "Uganda "
2109
+ msgstr "Uganda "
2110
 
2111
+ #: src/Helpers.php:258
2112
+ #, fuzzy
2113
  msgctxt "(Admin)"
2114
+ msgid "Ukraine "
2115
+ msgstr "Ukraine "
2116
 
2117
+ #: src/Helpers.php:259
2118
+ #, fuzzy
2119
  msgctxt "(Admin)"
2120
+ msgid "United Arab Emirates "
2121
+ msgstr "Vereinigte Arabische Emirate "
 
 
 
 
2122
 
2123
+ #: src/Helpers.php:260
2124
+ #, fuzzy
2125
  msgctxt "(Admin)"
2126
+ msgid "United States Minor Outlying Islands "
2127
+ msgstr "Vereinigte Staaten Minor Outlying Islands "
2128
 
2129
+ #: src/Helpers.php:261
2130
+ #, fuzzy
2131
  msgctxt "(Admin)"
2132
+ msgid "Uruguay "
2133
+ msgstr "Uruguay "
 
 
 
 
 
 
 
 
 
 
2134
 
2135
+ #: src/Helpers.php:262
2136
+ #, fuzzy
2137
  msgctxt "(Admin)"
2138
+ msgid "Uzbekistan "
2139
+ msgstr "Usbekistan "
 
 
 
 
2140
 
2141
+ #: src/Helpers.php:263
2142
+ #, fuzzy
2143
  msgctxt "(Admin)"
2144
+ msgid "Vanuatu "
2145
+ msgstr "Vanuatu "
 
 
2146
 
2147
+ #: src/Helpers.php:264
2148
  msgctxt "(Admin)"
2149
+ msgid "Venezuela, Bolivarian Republic of "
2150
+ msgstr "Venezuela, Bolivarische Republik"
 
 
 
 
2151
 
2152
+ #: src/Helpers.php:265
2153
+ #, fuzzy
2154
  msgctxt "(Admin)"
2155
+ msgid "Viet Nam "
2156
+ msgstr "Vietnam "
 
2157
 
2158
+ #: src/Helpers.php:266
2159
+ #, fuzzy
2160
  msgctxt "(Admin)"
2161
+ msgid "Virgin Islands, British "
2162
+ msgstr "Jungferninseln, Britisch "
2163
 
2164
+ #: src/Helpers.php:267
2165
  msgctxt "(Admin)"
2166
+ msgid "Virgin Islands, U.S. "
2167
+ msgstr "Amerikanische Jungferninseln"
2168
 
2169
+ #: src/Helpers.php:268
2170
+ #, fuzzy
2171
+ msgctxt "(Admin)"
2172
+ msgid "Wallis and Futuna "
2173
+ msgstr "Wallis und Futuna "
2174
 
2175
+ #: src/Helpers.php:269
2176
+ #, fuzzy
2177
+ msgctxt "(Admin)"
2178
+ msgid "Western Sahara "
2179
+ msgstr "Westsahara "
2180
 
2181
+ #: src/Helpers.php:270
2182
+ #, fuzzy
2183
+ msgctxt "(Admin)"
2184
+ msgid "Yemen "
2185
+ msgstr "Jemen "
2186
 
2187
+ #: src/Helpers.php:271
2188
+ #, fuzzy
2189
+ msgctxt "(Admin)"
2190
+ msgid "Zambia "
2191
+ msgstr "Sambia "
2192
 
2193
+ #: src/Helpers.php:272
2194
+ #, fuzzy
2195
  msgctxt "(Admin)"
2196
+ msgid "Zimbabwe "
2197
+ msgstr "Zimbabwe "
2198
 
2199
+ #: src/Helpers.php:287
2200
  msgctxt "(Admin)"
2201
+ msgid "Iceland"
2202
+ msgstr "Island"
2203
 
2204
+ #: src/Helpers.php:288
2205
  msgctxt "(Admin)"
2206
+ msgid "Norway"
2207
+ msgstr "Norway"
2208
 
2209
+ #: src/Helpers.php:289
2210
  msgctxt "(Admin)"
2211
+ msgid "Liechtenstein"
2212
+ msgstr "Liechtenstein"
2213
 
2214
+ #: src/Helpers.php:290
2215
+ msgctxt "(Admin)"
2216
+ msgid "Switzerland"
2217
+ msgstr "Schweiz"
2218
+
2219
+ #: src/Helpers.php:291
2220
+ msgctxt "(Admin)"
2221
+ msgid "United States"
2222
+ msgstr "USA"
2223
+
2224
+ #: src/Helpers.php:377
2225
+ msgid "An error has occurred. Please contact the site administrator."
2226
+ msgstr "Der opstod en fejl. Kontakt venligst webstedsadministratoren."
2227
+
2228
+ #: src/Installer/Installer.php:146
2229
+ msgctxt "(Admin)"
2230
+ msgid "Setup Wizard"
2231
+ msgstr "Installationsassistent"
2232
+
2233
+ #: src/Installer/Steps/ConfigurationPages.php:23
2234
+ #: src/Installer/Steps/ConfigurationPages.php:33
2235
+ #: src/Installer/Steps/PolicySettings.php:23
2236
+ #: src/Installer/Steps/PolicySettings.php:48
2237
+ msgctxt "(Admin)"
2238
+ msgid "&mdash; Create a new page &mdash;"
2239
+ msgstr "&mdash; Neue Seite erstellen &mdash;"
2240
 
2241
+ #: src/Installer/Steps/PolicySettings.php:38
2242
  msgctxt "(Admin)"
2243
  msgid ""
2244
+ "We have automatically selected your WooCommerce Terms & Conditions page."
 
2245
  msgstr ""
2246
+ "Wir haben automatisch Ihre Seite mit den Allgemeinen Geschäftsbedingungen "
2247
+ "von WooCommerce ausgewählt."
 
2248
 
2249
+ #: src/Modules/ContactForm7/ContactForm7.php:35
2250
  msgctxt "(Admin)"
2251
+ msgid "gdpr terms txt"
2252
+ msgstr "DSGVO Bestimmungen txt"
2253
+
2254
+ #: src/Modules/ContactForm7/Flamingo.php:23
2255
+ #: views/modules/contact-form-7/form-privacy-tab.php:1
2256
+ msgid "Privacy"
2257
+ msgstr "Datenschutz"
2258
+
2259
+ #: src/Modules/ContactForm7/Flamingo.php:67
2260
+ msgid "Form submissions: "
2261
+ msgstr "Formulareinreichungen: "
2262
+
2263
+ #: src/Modules/ContactForm7/Flamingo.php:162
2264
+ msgctxt "(Admin)"
2265
+ msgid "Do you want form to be GDPR compliance."
2266
+ msgstr "Soll das Formular DSGVO konform sein."
2267
+
2268
+ #: src/Modules/ContactForm7/Flamingo.php:163
2269
+ msgctxt "(Admin)"
2270
+ msgid ""
2271
+ "You have installed flamingo, To make this GDPR compliance in individual "
2272
+ "contact form's privacy tab check the checkbox for include data to be search "
2273
+ "on Privacy tool."
2274
+ msgstr ""
2275
+ "Um diese DSGVO Konformität für das jeweilige Kontaktformular zu erreichen, "
2276
+ "aktiviere unter \"Datenschutz\" die Option Daten für die Suche "
2277
+ "einzuschließen."
2278
+
2279
+ #: src/Modules/EddGdpr/EddGdpr.php:47
2280
+ msgid "EDD Customer Information"
2281
+ msgstr "EDD Kundeninformationen"
2282
+
2283
+ #: src/Modules/EddGdpr/EddGdpr.php:56
2284
+ #, fuzzy
2285
+ msgid "EDD Order Information"
2286
+ msgstr "EDD Bestellinformationen"
2287
 
2288
+ #: src/Modules/EddGdpr/EddGdpr.php:65
2289
+ msgid "EDD File Downloads"
2290
+ msgstr "EDD Datei Downloads"
2291
+
2292
+ #: src/Modules/EddGdpr/EddGdpr.php:74
2293
+ msgid "EDD API Access Logs"
2294
+ msgstr "EDD API Zugriffsprotokolle"
2295
+
2296
+ #: src/Modules/NewsletterGdpr/NewsletterGdpr.php:79
2297
+ msgid "Newsletter Form submissions: "
2298
+ msgstr "Newsletter Formulareinreichungen: "
2299
+
2300
+ #: src/Modules/WooCommerceGdpr/WooCommerceGdpr.php:46
2301
+ msgid "Customer Information"
2302
+ msgstr "Kundeninfo"
2303
+
2304
+ #: src/Modules/WooCommerceGdpr/WooCommerceGdpr.php:53
2305
+ msgid "Order Information"
2306
+ msgstr "Bestellinformationen"
2307
+
2308
+ #: src/Modules/WooCommerceGdpr/WooCommerceGdpr.php:162
2309
  msgid "Please acknowledge the Privacy Policy"
2310
  msgstr "Vær venlig at anerkende privatlivspolitikken"
2311
 
2312
+ #: src/Modules/WooCommerceGdpr/WooCommerceGdpr.php:177
2313
+ msgid "Privacy Policy consent is required!"
2314
+ msgstr "Deine Zustimmung zur Datenschutzerklärung ist notwendig!"
2315
+
2316
+ #: src/Router.php:80 src/Router.php:92 src/Router.php:125 src/Router.php:141
2317
+ #, php-format
2318
+ msgid "Nonce error for action \"%s\". Please go back and try again!"
2319
+ msgstr "Nonce fejl til handling \"%s \". Venligst gå tilbage og prøv igen!"
2320
+
2321
+ #: src/Router.php:149
2322
  msgctxt "(Admin)"
2323
+ msgid "You do not have the required permissions to perform this action!"
2324
+ msgstr "Du har ikke nødvendige tillatelser til at utføre denne handlingen!"
2325
+
2326
+ #: views/admin/consent.php:3
2327
+ msgctxt "(Admin)"
2328
+ msgid "Default consent types"
2329
+ msgstr "Voreingestellte Arten der Zustimmung"
2330
 
2331
+ #: views/admin/consent.php:4
2332
  msgctxt "(Admin)"
2333
  msgid ""
2334
+ "These are the consent types that have been automatically registered by the "
2335
+ "framework or a plugin."
2336
  msgstr ""
2337
+ "Dies sind die Zustimmungsarten, die automatisch durch das DSGVO Framework "
2338
+ "oder ein anderes Plugin registriert wurden."
2339
 
2340
+ #: views/admin/consent.php:7 views/admin/consent.php:53
2341
  msgctxt "(Admin)"
2342
+ msgid "Slug"
2343
+ msgstr "Slug"
2344
 
2345
+ #: views/admin/consent.php:8 views/admin/consent.php:38
2346
+ #: views/admin/consent.php:61
2347
  msgctxt "(Admin)"
2348
+ msgid "Title"
2349
+ msgstr "Titel"
2350
 
2351
+ #: views/admin/consent.php:9 views/admin/consent.php:41
2352
+ #: views/admin/consent.php:64
2353
  msgctxt "(Admin)"
2354
+ msgid "Description"
2355
+ msgstr "Beschreibung"
2356
 
2357
+ #: views/admin/consent.php:10
2358
  msgctxt "(Admin)"
2359
+ msgid "Visibility"
2360
+ msgstr "Sichtbarkeit"
2361
 
2362
+ #: views/admin/consent.php:18
2363
  msgctxt "(Admin)"
2364
+ msgid "Visible"
2365
+ msgstr "Sichtbar"
2366
 
2367
+ #: views/admin/consent.php:20
2368
  msgctxt "(Admin)"
2369
+ msgid "Hidden"
2370
+ msgstr "Verborgen"
2371
 
2372
+ #: views/admin/consent.php:29
2373
  msgctxt "(Admin)"
2374
+ msgid "Custom consent types"
2375
+ msgstr "Individuelle Zustimmungstypen"
2376
+
2377
+ #: views/admin/consent.php:30
2378
+ msgctxt "(Admin)"
2379
+ msgid ""
2380
+ "Here you can add custom consent types to track. They will not be used "
2381
+ "anywhere by default - you will need to build an integration for each of them."
2382
+ msgstr ""
2383
+ "Hier können Sie benutzerdefinierte Arten der Zustimmung hinzufügen, um sie "
2384
+ "zu verfolgen. Sie werden nigends per Voreinstellung verwendet. Sie müssen "
2385
+ "dafür jeweils eine Integration erstellen."
2386
+
2387
+ #: views/admin/consent.php:35
2388
+ msgctxt "(Admin)"
2389
+ msgid "Machine-readable slug"
2390
+ msgstr "Maschinenlesbarer Pfad"
2391
+
2392
+ #: views/admin/consent.php:44 views/admin/consent.php:69
2393
+ #, fuzzy
2394
+ #| msgctxt "(Admin)"
2395
+ #| msgid "Visible?"
2396
+ msgctxt "(Admin)"
2397
+ msgid "Visible?"
2398
+ msgstr "Sichtbar"
2399
+
2400
+ #: views/admin/consent.php:73
2401
+ msgctxt "(Admin)"
2402
+ msgid "Remove"
2403
+ msgstr "Entfernen"
2404
+
2405
+ #: views/admin/consent.php:79
2406
+ msgctxt "(Admin)"
2407
+ msgid "Show Consent types"
2408
+ msgstr "Vis samtykke-typer"
2409
 
2410
+ #: views/admin/consent.php:80
2411
  msgctxt "(Admin)"
2412
  msgid "Add consent type"
2413
+ msgstr "Zustimmungsart hinzufügen"
2414
 
2415
+ #: views/admin/consent.php:81
2416
  msgctxt "(Admin)"
2417
+ msgid "Hide consent types"
2418
+ msgstr "Skjul samtykke-typer"
2419
+
2420
+ #: views/admin/consent.php:95
2421
+ msgctxt "(Admin)"
2422
+ msgid "Additional info"
2423
+ msgstr "Zusätzliche Informationen"
2424
+
2425
+ #: views/admin/consent.php:97
2426
+ msgctxt "(Admin)"
2427
+ msgid ""
2428
+ "This text will be displayed to your data subjects on the Privacy Tools page."
2429
+ msgstr ""
2430
+ "Dieser Text wird Ihren betroffenen Personen auf der Seite der Datenschutz-"
2431
+ "Tools angezeigt."
2432
+
2433
+ #: views/admin/consent/enable-consent-until.php:11
2434
+ msgctxt "(Admin)"
2435
+ msgid " "
2436
+ msgstr " "
2437
+
2438
+ #: views/admin/data-subjects/search-form.php:2
2439
+ msgctxt "(Admin)"
2440
+ msgid ""
2441
+ "On this page, you can find which data subjects personal data you are storing "
2442
+ "and download, export or delete it."
2443
+ msgstr ""
2444
+ "Auf dieser Seite können Sie nachlesen, welche personenbezogenen Daten Sie "
2445
+ "von betroffenen Personen speichern und diese herunterladen, exportieren oder "
2446
+ "löschen."
2447
+
2448
+ #: views/admin/data-subjects/search-form.php:10
2449
+ msgctxt "(Admin)"
2450
+ msgid "Find data subject by email"
2451
+ msgstr "Betroffene Personen über die Email-Adresse finden"
2452
+
2453
+ #: views/admin/data-subjects/search-form.php:11
2454
+ msgctxt "(Admin)"
2455
+ msgid "Email address"
2456
+ msgstr "Email address"
2457
+
2458
+ #: views/admin/data-subjects/search-form.php:16
2459
+ msgctxt "(Admin)"
2460
+ msgid "Search"
2461
+ msgstr "Suche"
2462
+
2463
+ #: views/admin/data-subjects/search-results.php:7
2464
+ msgctxt "(Admin)"
2465
+ msgid "Username"
2466
+ msgstr "Benutzername"
2467
+
2468
+ #: views/admin/data-subjects/search-results.php:13
2469
+ msgctxt "(Admin)"
2470
+ msgid "Data found."
2471
+ msgstr "Daten gefunden."
2472
+
2473
+ #: views/admin/data-subjects/search-results.php:14
2474
+ msgctxt "(Admin)"
2475
+ msgid "is not a registered user."
2476
+ msgstr "ist kein registrierter Benutzer."
2477
+
2478
+ #: views/admin/data-subjects/search-results.php:21
2479
+ msgctxt "(Admin)"
2480
+ msgid "Download data (html)"
2481
+ msgstr "Download der Daten (html)"
2482
+
2483
+ #: views/admin/data-subjects/search-results.php:22
2484
+ msgctxt "(Admin)"
2485
+ msgid "Export data (json)"
2486
+ msgstr "Datenexport (json)"
2487
+
2488
+ #: views/admin/data-subjects/search-results.php:26
2489
+ msgctxt "(Admin)"
2490
+ msgid ""
2491
+ "This user has admin capabilities. Deleting data via this interface is "
2492
+ "disabled."
2493
+ msgstr ""
2494
+ "Dieser Benutzer hat die Berechtigungsstufe eines Admins. Das Löschen der "
2495
+ "Daten über diese Bedienoberfläche ist deaktiviert."
2496
+
2497
+ #: views/admin/data-subjects/search-results.php:29
2498
+ msgctxt "(Admin)"
2499
+ msgid "Anonymize data"
2500
+ msgstr "Daten anonymisieren"
2501
+
2502
+ #: views/admin/data-subjects/search-results.php:30
2503
+ msgctxt "(Admin)"
2504
+ msgid "Delete data"
2505
+ msgstr "Slett data"
2506
+
2507
+ #: views/admin/data-subjects/search-results.php:34
2508
+ msgctxt "(Admin)"
2509
+ msgid "No data found!"
2510
+ msgstr "Keine Daten gefunden!"
2511
+
2512
+ #: views/admin/data-subjects/search-results.php:41
2513
+ #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:4
2514
+ msgctxt "(Admin)"
2515
+ msgid "Consents given"
2516
+ msgstr "Erteilte Zustimmungen"
2517
+
2518
+ #: views/admin/data-subjects/search-results.php:54
2519
+ msgctxt "(Admin)"
2520
+ msgid "No consents given!"
2521
+ msgstr "Keine Zustimmungen gefunden!"
2522
 
2523
+ #: views/admin/general/custom-policy-url.php:6
2524
  msgctxt "(Admin)"
2525
  msgid "Leave blank if privacy policy page already selected"
2526
  msgstr ""
2527
+ "Lasse dieses Feld leer, wenn Du die Seite mit den Datenschutzbestimmungen "
2528
+ "bereits ausgewählt hast"
2529
+
2530
+ #: views/admin/general/custom-terms-url.php:6
2531
+ msgctxt "(Admin)"
2532
+ msgid "Leave blank if terms and condition page already selected"
2533
+ msgstr ""
2534
+ "Lasse dieses Feld leer, wenn Du die Seite mit den Allgemeinen "
2535
+ "Geschäftsbedingungen bereits ausgewählt hast"
2536
+
2537
+ #: views/admin/general/custom-tools-url.php:6
2538
+ msgctxt "(Admin)"
2539
+ msgid "Leave blank if privacy tools page already selected"
2540
+ msgstr ""
2541
+ "Lasse dieses Feld leer, wenn Du die Seite für die Datenschutzrichtlinie "
2542
+ "bereits ausgewählt hast"
2543
+
2544
+ #: views/admin/general/delete-action-email.php:5
2545
+ #: views/admin/general/export-action-email.php:5
2546
+ #: views/installer/steps/configuration-settings.php:29
2547
+ #: views/installer/steps/configuration-settings.php:79
2548
+ msgid "Email address"
2549
+ msgstr "Email adresse"
2550
+
2551
+ #: views/admin/general/delete-action-reassign.php:3
2552
+ #: views/installer/steps/configuration-settings.php:50
2553
+ msgctxt "(Admin)"
2554
+ msgid "Delete content"
2555
+ msgstr "Inhalt löschen"
2556
+
2557
+ #: views/admin/general/delete-action-reassign.php:6
2558
+ #: views/installer/steps/configuration-settings.php:53
2559
+ msgctxt "(Admin)"
2560
+ msgid "Reassign content to a user"
2561
+ msgstr "Inhalt(e) einem anderen Benutzer zuweisen"
2562
+
2563
+ #: views/admin/general/delete-action-reassign.php:10
2564
+ msgctxt "(Admin)"
2565
+ msgid ""
2566
+ "If the user has submitted any content on your site, should it be deleted or "
2567
+ "reassigned to another user?"
2568
+ msgstr ""
2569
+ "Falls der Benutzer Inhalte an Ihre Website übermittelt hat, sollen diese "
2570
+ "gelöscht oder einem anderen Benutzer zugewiesen werden?"
2571
+
2572
+ #: views/admin/general/description-data-page.php:2
2573
+ msgctxt "(Admin)"
2574
+ msgid ""
2575
+ "Select the page where users can go to control their data. This page must "
2576
+ "contain the [gdpr_privacy_tools] shortcode."
2577
+ msgstr ""
2578
+ "Wählen Sie die Seite aus, auf der Benutzer ihre Daten überprüfen können. "
2579
+ "Diese Seite muss den folgenden Shortcode enthalten: [gdpr_privacy_tools]"
2580
 
2581
  #: views/admin/general/description-delete-action.php:2
2582
  msgctxt "(Admin)"
2585
 
2586
  #: views/admin/general/description-export-action.php:2
2587
  msgctxt "(Admin)"
 
 
 
 
 
2588
  msgid ""
2589
  "What should happen if a data subject requests viewing or exporting their "
2590
  "data."
2592
  "Hvad skal der ske, hvis et registreret ønsker at se eller eksportere deres "
2593
  "data."
2594
 
2595
+ #: views/admin/general/description-position-action.php:2
2596
  msgctxt "(Admin)"
2597
+ msgid "Select position of the Popup"
2598
+ msgstr "Vælg position af popupen"
2599
 
2600
+ #: views/admin/general/description-terms-page.php:2
2601
  msgctxt "(Admin)"
2602
+ msgid "Optional. Select the page which contains your Terms & Conditions"
2603
+ msgstr "Valgfri. Vælg den side, der indeholder dine Vilkår og betingelser"
2604
 
2605
+ #: views/admin/general/description-theme-action.php:2
2606
  msgctxt "(Admin)"
2607
+ msgid "Select theme of the Popup"
2608
+ msgstr "Vælg tema for popupen"
 
 
2609
 
2610
+ #: views/admin/general/disble-checkbox.php:9
2611
  msgctxt "(Admin)"
2612
+ msgid "."
2613
+ msgstr "."
2614
 
2615
+ #: views/admin/general/edd-compatibility.php:9
2616
  msgctxt "(Admin)"
2617
+ msgid "Enable EDD data on GDPR tool."
2618
+ msgstr "Aktiviere EDD Daten für das DSGVO Tool."
2619
 
2620
+ #: views/admin/general/edd-compatibility.php:12
2621
+ #, fuzzy
2622
+ #| msgctxt "(Admin)"
2623
+ #| msgid "Will work for EDD Version 2.0.0 or later."
2624
  msgctxt "(Admin)"
2625
+ msgid "Will work for EDD Version 2.0.0 or later."
2626
+ msgstr "Vil arbejde for EDD Version 2.0.0 eller senere."
2627
+
2628
+ #: views/admin/general/enable-policy-popup.php:9
2629
+ msgctxt "(Admin)"
2630
+ msgid "Enable Policy Link On Popup"
2631
+ msgstr "Link zu den Richtlinien auf dem Popup aktivieren"
2632
+
2633
+ #: views/admin/general/enable-popup.php:12
2634
+ msgctxt "(Admin)"
2635
+ msgid ""
2636
+ "<b>Note:</b> Need to add custom content <b>gdpr_cookie_consent</b> its "
2637
+ "accepted on popup accept button."
2638
+ msgstr ""
2639
+ "<b>HINWEIS:</b> Füge individuellen Inhalt mit <b>gdpr_cookie_consent</b> "
2640
+ "hinzu. Wird über den Button \"Akzeptieren\" im Popup akzeptiert."
2641
+
2642
+ #: views/admin/general/enable-tac.php:9
2643
+ msgctxt "(Admin)"
2644
+ msgid "Enable the term and condition page."
2645
+ msgstr "Aktiviere die Seite mit den \"Allgemeinen Geschäftsbedingungen\"."
2646
+
2647
+ #: views/admin/general/enable.php:9
2648
+ msgctxt "(Admin)"
2649
+ msgid "Enable the view, export and forget functionality for users and visitors"
2650
+ msgstr ""
2651
+ "Aktivieren Sie die Ansichts-, Export- und Vergessens-Funktionalität für "
2652
+ "Benutzer und Besucher"
2653
+
2654
+ #: views/admin/general/enable.php:12
2655
+ msgctxt "(Admin)"
2656
+ msgid ""
2657
+ "Enable the Privacy Tools page on front-end and dashboard. This allows "
2658
+ "visitors to request viewing and deleting their personal data and withdraw "
2659
+ "consents."
2660
+ msgstr ""
2661
+ "Aktivieren Sie die Seite der Datenschutz-Tools im Frontend und Dashboard. "
2662
+ "Dies ermöglicht es den Besuchern, Einsicht in ihre persönlichen Daten zu "
2663
+ "verlangen, sie zu löschen und ihre Zustimmung zur Speicherung zu widerrufen."
2664
+
2665
+ #: views/admin/general/enable_popup_allow_content.php:3
2666
+ msgctxt "gdpr-framework"
2667
+ msgid "Accept"
2668
+ msgstr "Akzeptieren"
2669
+
2670
+ #: views/admin/general/enable_popup_content.php:5
2671
+ msgctxt "gdpr-framework"
2672
+ msgid ""
2673
+ "This website uses cookies to ensure you get the best experience on our "
2674
+ "website."
2675
+ msgstr ""
2676
+ "Diese Website verwendet Cookies, um sicherzustellen, dass unsere Webseite "
2677
+ "ideal nutzbar ist."
2678
+
2679
+ #: views/admin/general/enable_popup_dismiss_content.php:3
2680
+ msgctxt "gdpr-framework"
2681
+ msgid "Decline"
2682
+ msgstr "Ablehnen"
2683
+
2684
+ #: views/admin/general/enable_popup_header.php:7
2685
+ msgctxt "(Admin)"
2686
+ msgid "Leave blank if you don't want a header to get displayed."
2687
+ msgstr "Lassen Sie das Feld leer, wenn der Header nicht angezeigt werden soll."
2688
+
2689
+ #: views/admin/general/enable_popup_learnmore_content.php:3
2690
+ msgctxt "gdpr-framework"
2691
+ msgid "Learn more"
2692
+ msgstr "Mehr erfahren"
2693
+
2694
+ #: views/admin/general/popup_link_target.php:3
2695
+ msgctxt "(Admin)"
2696
+ msgid "Next Tab"
2697
+ msgstr "Nächster Tab"
2698
+
2699
+ #: views/admin/general/popup_link_target.php:6
2700
+ msgctxt "(Admin)"
2701
+ msgid "Self"
2702
+ msgstr "Selbst"
2703
+
2704
+ #: views/admin/general/stylesheet.php:9
2705
+ msgctxt "(Admin)"
2706
+ msgid "Enable basic styling for Privacy Tools page."
2707
+ msgstr "Aktivér grundlæggende styling for siden Privacy Policy."
2708
+
2709
+ #: views/admin/general/theme-compatibility.php:9
2710
+ #: views/installer/steps/integrations.php:21
2711
+ msgctxt "(Admin)"
2712
+ msgid ""
2713
+ "Automatically add Privacy Policy and Privacy Tools links to your site footer."
2714
+ msgstr ""
2715
+ "Automatisch die Links zu den Datenschutz-Richtlinien und zu den Datenschutz-"
2716
+ "Tools im Footer Ihrer Website hinzufügen."
2717
+
2718
+ #: views/admin/general/woo-compatibility.php:9
2719
+ msgctxt "(Admin)"
2720
+ msgid "Enable WooCommerce data on GDPR tool."
2721
+ msgstr "Aktiviere WooCommerce Daten im DSGVO Tool."
2722
+
2723
+ #: views/admin/general/woo-compatibility.php:12
2724
+ #, fuzzy
2725
+ #| msgctxt "(Admin)"
2726
+ #| msgid "Will work for WooCommerce Version 3.4.0 or later."
2727
+ msgctxt "(Admin)"
2728
+ msgid "Will work for WooCommerce Version 3.4.0 or later."
2729
+ msgstr "Vil arbejde for WooCommerce Version 3.4.0 eller nyere."
2730
+
2731
+ #: views/admin/notices/header-privacy-safe.php:4
2732
+ msgctxt "(Admin)"
2733
+ msgid "Privacy Safe By Data443"
2734
+ msgstr "Schutz der Privatsphäre durch Data443"
2735
+
2736
+ #: views/admin/notices/header.php:4 views/admin/settings-page.php:3
2737
+ msgctxt "(Admin)"
2738
+ msgid "The GDPR Framework By Data443"
2739
+ msgstr "Das DSGVO Framework durch Data443"
2740
+
2741
+ #: views/admin/notices/help.php:3 views/admin/settings-page.php:39
2742
+ #, php-format
2743
+ msgctxt "(Admin)"
2744
+ msgid "Need help? Take a look at our %sdocumentation%s."
2745
+ msgstr "Brauchst Du Hilfe? Wirf einen Blick in unsere %sDokumentation%s."
2746
+
2747
+ #: views/admin/notices/helper-autoinstall.php:2
2748
+ msgctxt "(Admin)"
2749
+ msgid ""
2750
+ "A Privacy Policy page has been created, but it is empty. You can generate a "
2751
+ "policy template on this page."
2752
+ msgstr ""
2753
+ "Es wurde eine Seite für die Datenschutzrichtlinien erstellt, die jedoch leer "
2754
+ "ist. Du kannst auf dieser Seite eine Richtlinienvorlage erstellen."
2755
+
2756
+ #: views/admin/notices/helper-policy.php:2
2757
+ msgctxt "(Admin)"
2758
+ msgid ""
2759
+ "Heads up - your Privacy Policy still requires some attention. Find the "
2760
+ "places marked with [TODO] and replace them with real content!"
2761
+ msgstr ""
2762
+ "Aufgepasst - Ihre Datenschutzrichtlinie erfordert noch einige "
2763
+ "Aufmerksamkeit. Finden Sie die mit [TODO] markierten Orte und ersetzen Sie "
2764
+ "sie durch echten Inhalt!"
2765
+
2766
+ #: views/admin/notices/helper-settings.php:2
2767
+ msgctxt "(Admin)"
2768
+ msgid ""
2769
+ "Heads up! The GDPR Framework is not properly configured, so it will not work "
2770
+ "just yet."
2771
+ msgstr ""
2772
+ "ACHTUNG: Das DSGVO Framework wurde noch nicht richtig konfiguriert und wird "
2773
+ "daher nicht funktionieren."
2774
+
2775
+ #: views/admin/notices/helper-settings.php:4
2776
+ #, php-format
2777
+ msgctxt "(Admin)"
2778
+ msgid "Go to %sTools > Data443 GDPR%s and make sure all fields are filled in."
2779
+ msgstr ""
2780
+ "Gehen Sie zu %sWerkzeuge > Data443 DSVGO%s und stelle sicher, dass alle "
2781
+ "Felder ausgefüllt sind."
2782
+
2783
+ #: views/admin/notices/helper-tools.php:2
2784
+ msgctxt "(Admin)"
2785
+ msgid ""
2786
+ "The contents of this page should contain the [gdpr_privacy_tools] shortcode."
2787
+ msgstr ""
2788
+ "Der Inhalt dieser Seite sollte den Shortcode [gdpr_privacy_tools] enthalten."
2789
+
2790
+ #: views/admin/privacy-manager/header.php:2
2791
+ #: views/admin/privacy-manager/header.php:21
2792
+ msgctxt "(Admin)"
2793
+ msgid "Data443™ Global Privacy Manager"
2794
+ msgstr "Data443™ Globaler Datenschutzmanager"
2795
+
2796
+ #: views/admin/privacy-manager/header.php:3
2797
+ msgctxt "(Admin)"
2798
+ msgid ""
2799
+ "ensures privacy regulation compliance, such as GDPR, CCPA, LGPD, etc, at the "
2800
+ "next level."
2801
+ msgstr ""
2802
+ "gewährleistet die Einhaltung von Datenschutzvorschriften wie DSGVO, CCPA, "
2803
+ "LGPD usw."
2804
+
2805
+ #: views/admin/privacy-manager/header.php:4
2806
+ msgctxt "(Admin)"
2807
+ msgid "Includes the following features:"
2808
+ msgstr "Enthält die folgenden Funktionen:"
2809
+
2810
+ #: views/admin/privacy-manager/header.php:6
2811
+ msgctxt "(Admin)"
2812
+ msgid ""
2813
+ "Available within minutes – designed to be deployed to your website over the "
2814
+ "phone with one link!"
2815
+ msgstr ""
2816
+ "Innerhalb von Minuten verfügbar und wurde entwickelt, um mit einem Link über "
2817
+ "das Telefon auf Deiner Website bereitgestellt zu werden!"
2818
+
2819
+ #: views/admin/privacy-manager/header.php:7
2820
+ msgctxt "(Admin)"
2821
+ msgid "Fully branded Subject Access Request Form"
2822
+ msgstr ""
2823
+ "Vollständig gebrandetes Formular für den Antrag auf Zugang zu Dokumenten"
2824
+
2825
+ #: views/admin/privacy-manager/header.php:8
2826
+ msgctxt "(Admin)"
2827
+ msgid "Custom Workflow Engine"
2828
+ msgstr "Individuelle Workflow Engine"
2829
+
2830
+ #: views/admin/privacy-manager/header.php:9
2831
+ msgctxt "(Admin)"
2832
+ msgid "Cookie and Consent Management Tracking"
2833
+ msgstr "Tracking von Cookies und Einwilligungsmanagement"
2834
+
2835
+ #: views/admin/privacy-manager/header.php:10
2836
+ msgctxt "(Admin)"
2837
+ msgid "Opt-in and Opt-out Management"
2838
+ msgstr "Opt-in und Opt-out Verwaltung"
2839
+
2840
+ #: views/admin/privacy-manager/header.php:11
2841
+ msgctxt "(Admin)"
2842
+ msgid "Do Not Sell Management Interface"
2843
+ msgstr "\"Do Not Sell\" Verwaltung"
2844
+
2845
+ #: views/admin/privacy-manager/header.php:12
2846
+ msgctxt "(Admin)"
2847
+ msgid "Full On Premise and In Cloud Data Discovery"
2848
+ msgstr "Vollständige Datenermittlung vor Ort und in der Cloud"
2849
+
2850
+ #: views/admin/privacy-manager/header.php:13
2851
+ msgctxt "(Admin)"
2852
+ msgid "Complete End to End Data Mapping"
2853
+ msgstr "Vollständige End-to-End Datenzuordnung"
2854
+
2855
+ #: views/admin/privacy-manager/header.php:14
2856
+ msgctxt "(Admin)"
2857
+ msgid "Full Data Classification and Governance"
2858
+ msgstr "Vollständige Datenklassifizierung und -verwaltung"
2859
+
2860
+ #: views/admin/privacy-manager/header.php:15
2861
+ msgctxt "(Admin)"
2862
+ msgid "Data Deletion and Monitoring Compliance Management"
2863
+ msgstr "Datenlöschung und Überwachung der Einhaltung der Vorschriften"
2864
+
2865
+ #: views/admin/privacy-manager/header.php:16
2866
+ msgctxt "(Admin)"
2867
+ msgid ""
2868
+ "Data Stores instantly available: Windows NTFS, OneDrive, Dropbox, Office365, "
2869
+ "GoogleMail, Salesforce, Quickbooks, MailChimp, Sharepoint, MySQL, MSSQL, "
2870
+ "PostGreSQL, Mongo"
2871
+ msgstr ""
2872
+ "Sofortige Verfügbarkeit von Datenspeichern: Windows NTFS, OneDrive, Dropbox, "
2873
+ "Office365, GoogleMail, Salesforce, Quickbooks, MailChimp, Sharepoint, MySQL, "
2874
+ "MSSQL, PostGreSQL, Mongo"
2875
+
2876
+ #: views/admin/privacy-manager/header.php:17
2877
+ msgctxt "(Admin)"
2878
+ msgid ""
2879
+ "Data Stores addons available: over 200 SaaS, On Premise databases & File "
2880
+ "shares"
2881
+ msgstr ""
2882
+ "Verfügbare Datenspeicher Erweiterungen: über 200 SaaS, On Premise "
2883
+ "Datenbanken & Dateifreigaben"
2884
+
2885
+ #: views/admin/privacy-manager/header.php:18
2886
+ msgctxt "(Admin)"
2887
+ msgid "PowerBI and Dashboarding"
2888
+ msgstr "PowerBI und Dashboarding"
2889
+
2890
+ #: views/admin/privacy-manager/header.php:21
2891
+ msgctxt "(Admin)"
2892
+ msgid ""
2893
+ "No matter where you are on your data privacy journey, the ultimate goal is "
2894
+ "compliance."
2895
+ msgstr ""
2896
+ "Unabhängig vom Datenschutz, ist die Einhaltung der Vorschriften das oberste "
2897
+ "Ziel."
2898
+
2899
+ #: views/admin/privacy-manager/header.php:21
2900
+ msgctxt "(Admin)"
2901
+ msgid "enables your organization to comply with all privacy regulations."
2902
+ msgstr ""
2903
+ "ermöglicht Deiner Organisation, alle Datenschutzbestimmungen einzuhalten."
2904
+
2905
+ #: views/admin/privacy-policy/description-policy-page.php:2
2906
+ msgctxt "(Admin)"
2907
+ msgid "Select the page which will contain your Privacy Policy"
2908
+ msgstr ""
2909
+ "Wählen Sie die Seite aus, die Ihre Datenschutzrichtlinien enthalten soll"
2910
+
2911
+ #: views/admin/privacy-policy/generated.php:3
2912
+ msgctxt "(Admin)"
2913
+ msgid "Your Privacy Policy has been generated."
2914
+ msgstr "Ihre Datenschutzerklärung wurde erstellt."
2915
+
2916
+ #: views/admin/privacy-policy/generated.php:20
2917
+ msgctxt "(Admin)"
2918
+ msgid "&laquo; Back"
2919
+ msgstr "&laquo; Zurück"
2920
+
2921
+ #: views/admin/privacy-policy/has-dpo.php:11
2922
+ msgctxt "(Admin)"
2923
+ msgid "I have appointed a Data Protection Officer (DPO)"
2924
+ msgstr "Ich habe einen Datenschutzbeauftragten ernannt"
2925
+
2926
+ #: views/admin/privacy-policy/header.php:2
2927
+ msgctxt "(Admin)"
2928
+ msgid ""
2929
+ "This page allows you to generate a Privacy Policy based on the information "
2930
+ "you entered below."
2931
+ msgstr ""
2932
+ "Auf dieser Seite können Sie eine Datenschutzerklärung erzeugen, die auf den "
2933
+ "Informationen basiert, die Sie unten eingegeben haben."
2934
+
2935
+ #: views/admin/privacy-safe/enable-backlink.php:11
2936
+ msgctxt "(Admin)"
2937
+ msgid ""
2938
+ "<b>Note:</b> We need your support. By selecting to support Data443, a small "
2939
+ "link is added below the privacy safe seal linking back to our product page "
2940
+ "on data443.com. Uncheck if you prefer not to have the link display on your "
2941
+ "site."
2942
+ msgstr ""
2943
+ "<b>HINWEIS:</b> Wir brauchen Deine Unterstützung. Wenn Du Data443 "
2944
+ "unterstützen willst, wird ein kleiner Link unterhalb des Datenschutzsiegels "
2945
+ "eingefügt, der auf data443.com verweist. Deaktiviere die Option, wenn Du den "
2946
+ "Link anzeigen möchtest."
2947
+
2948
+ #: views/admin/settings-page.php:8
2949
+ msgctxt "(Admin)"
2950
+ msgid "GDPR settings saved!"
2951
+ msgstr "Die DSGVO Einstellungen wurden gespeichert!"
2952
+
2953
+ #: views/admin/settings-page.php:31
2954
+ #, php-format
2955
+ msgctxt "(Admin)"
2956
+ msgid "The GDPR Framework. Built with &#9829; by %sData443%s."
2957
+ msgstr "Das DSGVO Framework. Erstellt mit &#9829; von %sData443%s."
2958
+
2959
+ #: views/admin/settings-page.php:47
2960
+ #, php-format
2961
+ msgctxt "(Admin)"
2962
+ msgid "Support our development efforts! leave a %s5-star rating%s."
2963
+ msgstr ""
2964
+ "Unterstütze unsere Entwicklungsarbeit! Hinterlasse eine %s5-Sterne Bewertung"
2965
+ "%s."
2966
+
2967
+ #: views/admin/support/contents.php:5 views/installer/steps/finish.php:10
2968
+ msgctxt "(Admin)"
2969
+ msgid "Need more info?"
2970
+ msgstr "Benötigst Du weitere Informationen?"
2971
+
2972
+ #: views/admin/support/contents.php:11 views/installer/steps/finish.php:16
2973
+ msgctxt "(Admin)"
2974
+ msgid "Site Owner's guide to GDPR"
2975
+ msgstr "DSGVO-Handbuch für Website-Besitzer"
2976
+
2977
+ #: views/admin/support/contents.php:14 views/installer/steps/finish.php:19
2978
+ msgctxt "(Admin)"
2979
+ msgid "Read the full guide on GDPR compliance."
2980
+ msgstr "Lesen Sie das vollständige Handbuch zur DSGVO-Konformität."
2981
+
2982
+ #: views/admin/support/contents.php:20 views/installer/steps/finish.php:25
2983
+ msgctxt "(Admin)"
2984
+ msgid "Knowledge base"
2985
+ msgstr "Wissensdatenbank"
2986
+
2987
+ #: views/admin/support/contents.php:23 views/installer/steps/finish.php:28
2988
+ msgctxt "(Admin)"
2989
+ msgid "Check out the knowledge base for common questions and answers."
2990
+ msgstr "In der Wissensdatenbank findest Du allgemeine Fragen und Antworten."
2991
+
2992
+ #: views/admin/support/contents.php:29 views/installer/steps/finish.php:34
2993
+ msgctxt "(Admin)"
2994
+ msgid "Developer's guide to GDPR"
2995
+ msgstr "Leitfaden für Entwickler zur DSGVO"
2996
+
2997
+ #: views/admin/support/contents.php:32 views/installer/steps/finish.php:37
2998
+ msgctxt "(Admin)"
2999
+ msgid "We have a thorough guide to help making custom sites compliant."
3000
+ msgstr ""
3001
+ "Wir haben eine umfassende Anleitung, um benutzerdefinierte Websites DSGVO-"
3002
+ "konform zu machen."
3003
+
3004
+ #: views/admin/support/contents.php:40 views/installer/steps/finish.php:45
3005
+ msgctxt "(Admin)"
3006
+ msgid "Need help?"
3007
+ msgstr "Brauchen Sie Hilfe?"
3008
+
3009
+ #: views/admin/support/contents.php:46 views/installer/steps/finish.php:51
3010
+ msgctxt "(Admin)"
3011
+ msgid "Submit a support request"
3012
+ msgstr "Erstelle ein Supportanfrage"
3013
+
3014
+ #: views/admin/support/contents.php:49 views/installer/steps/finish.php:54
3015
+ msgctxt "(Admin)"
3016
+ msgid ""
3017
+ "Found a bug or have a question about the plugin? Submit a support request "
3018
+ "and we’ll get right on it!"
3019
+ msgstr ""
3020
+ "Du hast einen Fehler gefunden oder hast eine Frage zum Plugin? Sende eine "
3021
+ "Supportanfrage und wir kümmern uns darum!"
3022
+
3023
+ #: views/admin/support/contents.php:55 views/installer/steps/finish.php:60
3024
+ msgctxt "(Admin)"
3025
+ msgid "Request a consultation"
3026
+ msgstr "Fordere eine Beratung an"
3027
+
3028
+ #: views/admin/support/contents.php:58 views/installer/steps/finish.php:63
3029
+ msgctxt "(Admin)"
3030
+ msgid "Need assistance in making your site compliant? We can help!"
3031
+ msgstr ""
3032
+ "Benötigst Du Hilfe um Deine Website kompatibel zu machen? Wir können Dir "
3033
+ "helfen!"
3034
+
3035
+ #: views/admin/wizard-buttons.php:2
3036
+ msgctxt "(Admin)"
3037
+ msgid "Restart setup wizard"
3038
+ msgstr "Installationsassistenten erneut starten"
3039
+
3040
+ #: views/email/action-export.php:8 views/email/action-forget.php:12
3041
+ msgctxt "(Admin)"
3042
+ msgid ""
3043
+ "This email is just for your information. You don't need to take any action"
3044
+ msgstr ""
3045
+ "Diese E-Mail ist nur zu Deinen Information. Du musst keine Maßnahmen "
3046
+ "ergreifen"
3047
+
3048
+ #: views/email/action-forget.php:8
3049
+ msgctxt "(Admin)"
3050
+ msgid "The data subject had a user account on your website."
3051
+ msgstr "Die betroffene Person hatte ein Benutzerkonto auf Deiner Website."
3052
+
3053
+ #: views/email/identify-data-subject.php:2
3054
+ msgid "Someone has requested access to your data on"
3055
+ msgstr "Nogen har bedt om adgang til dine data på"
3056
+
3057
+ #: views/email/identify-data-subject.php:3
3058
+ msgid "If this was a mistake, just ignore this email and nothing will happen."
3059
+ msgstr ""
3060
+ "Hvis dette var en fejl, ignorerer du bare denne email, og der sker ikke "
3061
+ "noget."
3062
+
3063
+ #: views/email/identify-data-subject.php:4
3064
+ msgid "To manage your data, visit the following address:"
3065
+ msgstr "For at administrere dine data skal du besøge følgende adresse:"
3066
+
3067
+ #: views/email/identify-data-subject.php:10
3068
+ msgid "This link is valid for 15 minutes."
3069
+ msgstr "Dette link er gyldigt i 15 minutter."
3070
+
3071
+ #: views/email/no-data.php:2
3072
+ msgid "Someone has requested information about your personal data on"
3073
+ msgstr "Nogen har bedt om oplysninger om dine personlige data på"
3074
+
3075
+ #: views/email/no-data.php:3
3076
+ msgid "None of your personal data is stored on"
3077
+ msgstr "Ingen af ​​dine personlige data gemmes på"
3078
+
3079
+ #: views/email/no-data.php:5
3080
+ msgid ""
3081
+ "If this was a mistake or you did not request this email, just ignore it and "
3082
+ "nothing will happen."
3083
+ msgstr ""
3084
+ "Hvis dette var en fejl eller du ikke anmodede om denne email, ignorerer du "
3085
+ "bare det, og intet vil ske."
3086
+
3087
+ #: views/email/request-export.php:13 views/email/request-forget.php:13
3088
+ msgctxt "(Admin)"
3089
+ msgid "As a reminder: according to GDPR, you have 30 days to comply."
3090
+ msgstr "Zur Erinnerung: Gemäß der DSGVO hast Du 30 Tage Zeit dem nachzukommen."
3091
+
3092
+ #: views/global/delete-action.php:2
3093
+ msgctxt "(Admin)"
3094
+ msgid "Automatically anonymize data"
3095
+ msgstr "Daten automatisch anonymisieren"
3096
+
3097
+ #: views/global/delete-action.php:5
3098
+ msgctxt "(Admin)"
3099
+ msgid "Automatically delete data"
3100
+ msgstr "Slett automatisk data"
3101
+
3102
+ #: views/global/delete-action.php:9
3103
+ msgctxt "(Admin)"
3104
+ msgid "Automatically anonymize data and notify me via email"
3105
+ msgstr "Daten automatisch anonymisieren und mich über Email benachrichtigen"
3106
+
3107
+ #: views/global/delete-action.php:13
3108
+ msgctxt "(Admin)"
3109
+ msgid "Automatically delete data and notify me via email"
3110
+ msgstr "Slett automatisk data og gi meg melding via epost"
3111
+
3112
+ #: views/global/delete-action.php:16 views/global/export-action.php:10
3113
+ msgctxt "(Admin)"
3114
+ msgid "Only notify me via email"
3115
+ msgstr "Mich lediglich über Email benachrichtigen"
3116
+
3117
+ #: views/global/export-action.php:2
3118
+ msgctxt "(Admin)"
3119
+ msgid "Automatically download data"
3120
+ msgstr "Daten automatisch downloaden"
3121
+
3122
+ #: views/global/export-action.php:6
3123
+ #, fuzzy
3124
+ #| msgctxt "(Admin)"
3125
+ #| msgid "Automatically download data and notify me via email"
3126
+ msgctxt "(Admin)"
3127
+ msgid "Automatically download data and notify me via email"
3128
+ msgstr "Download automatisk data og underret mig via e-mail"
3129
+
3130
+ #: views/global/position-action.php:2
3131
+ msgctxt "(Admin)"
3132
+ msgid "Banner bottom"
3133
+ msgstr "Banner unten"
3134
+
3135
+ #: views/global/position-action.php:5
3136
+ msgctxt "(Admin)"
3137
+ msgid "Floating left"
3138
+ msgstr "Schwebend links"
3139
+
3140
+ #: views/global/position-action.php:8
3141
+ msgctxt "(Admin)"
3142
+ msgid "Floating Right"
3143
+ msgstr "Rechts schwebend"
3144
+
3145
+ #: views/global/position-action.php:11
3146
+ msgctxt "(Admin)"
3147
+ msgid "Banner top"
3148
+ msgstr "Banner oben"
3149
+
3150
+ #: views/global/theme-action.php:2
3151
+ msgctxt "(Admin)"
3152
+ msgid "Default"
3153
+ msgstr "Standard"
3154
+
3155
+ #: views/global/theme-action.php:5
3156
+ msgctxt "(Admin)"
3157
+ msgid "Classic"
3158
+ msgstr "Klassisch"
3159
+
3160
+ #: views/global/theme-action.php:8
3161
+ msgctxt "(Admin)"
3162
+ msgid "Edgeless"
3163
+ msgstr "Randlos"
3164
+
3165
+ #: views/installer/continue-notice.php:2
3166
+ msgctxt "(Admin)"
3167
+ msgid "The The GDPR Framework setup has not been finalized yet."
3168
+ msgstr "Die Einrichtung des DSGVO Frameworks ist noch nicht abgeschlossen."
3169
+
3170
+ #: views/installer/continue-notice.php:3
3171
+ msgctxt "(Admin)"
3172
+ msgid "You can continue the setup at any time."
3173
+ msgstr "Sie können die Einrichtung jederzeit fortsetzen."
3174
+
3175
+ #: views/installer/continue-notice.php:6
3176
+ msgctxt "(Admin)"
3177
+ msgid "Continue the setup wizard"
3178
+ msgstr "Weiter mit dem Einrichtungsassistenten"
3179
+
3180
+ #: views/installer/continue-notice.php:9
3181
+ msgctxt "(Admin)"
3182
+ msgid "Hide this message"
3183
+ msgstr "Diese Nachricht ausblenden"
3184
+
3185
+ #: views/installer/footer.php:7
3186
+ msgid "Back"
3187
+ msgstr "Tilbage"
3188
+
3189
+ #: views/installer/header.php:7
3190
+ msgctxt "(Admin)"
3191
+ msgid "WordPress GDPR &rsaquo; Setup Wizard"
3192
+ msgstr "WordPress DSGVO &rsaquo; Fehler"
3193
+
3194
+ #: views/installer/header.php:23
3195
+ msgctxt "(Admin)"
3196
+ msgid "The GDPR Framework"
3197
+ msgstr "The GDPR Framework"
3198
+
3199
+ #: views/installer/header.php:26
3200
+ msgctxt "(Admin)"
3201
+ msgid "I need help"
3202
+ msgstr "Ich brauche Hilfe"
3203
+
3204
+ #: views/installer/header.php:29
3205
+ msgctxt "(Admin)"
3206
+ msgid "Developer Docs"
3207
+ msgstr "Entwickler Dokumentation"
3208
+
3209
+ #: views/installer/header.php:36
3210
+ msgctxt "(Admin)"
3211
+ msgid "Configuration"
3212
+ msgstr "Konfiguration"
3213
+
3214
+ #: views/installer/header.php:46
3215
+ msgctxt "(Admin)"
3216
+ msgid "Forms & Consent"
3217
+ msgstr "Formulare & Zustimmung"
3218
+
3219
+ #: views/installer/header.php:51
3220
+ msgctxt "(Admin)"
3221
+ msgid "Integrations"
3222
+ msgstr "Integrationen"
3223
+
3224
+ #: views/installer/privacy-safe-notice.php:3
3225
+ msgctxt "(Admin)"
3226
+ msgid ""
3227
+ "Strengthen your reputation. Privacy safe gives your customers total control "
3228
+ "of their private information. The privacy safe seal assures your new "
3229
+ "customers that your business is in compliance with new privacy laws and "
3230
+ "regulations. For the privacy safe seal will verify that GDPR Framework "
3231
+ "plugin is installed."
3232
+ msgstr ""
3233
+ "Stärken Sie Ihren Ruf. Das Privacy Safe-Siegel versichert Ihren Kunden, dass "
3234
+ "Ihr Unternehmen die Datenschutzgesetze und -vorschriften einhält. Das "
3235
+ "Privacy Safe-Siegel überprüft, ob das DSGVO Framework-Plugin installiert ist."
3236
+
3237
+ #: views/installer/privacy-safe-notice.php:9
3238
+ msgctxt "(Admin)"
3239
+ msgid "Learn More"
3240
+ msgstr "Mehr erfahren"
3241
+
3242
+ #: views/installer/privacy-safe-notice.php:12
3243
+ msgctxt "(Admin)"
3244
+ msgid "Maybe Later"
3245
+ msgstr "Vielleicht später"
3246
+
3247
+ #: views/installer/steps/configuration-settings.php:23
3248
+ #: views/installer/steps/configuration-settings.php:73
3249
+ msgctxt "(Admin)"
3250
+ msgid "Enter the email address to notify"
3251
+ msgstr "Gib die zu benachrichtigende E-Mail-Adresse ein"
3252
+
3253
+ #: views/installer/steps/disclaimer.php:21
3254
+ msgctxt "(Admin)"
3255
+ msgid "I accept"
3256
+ msgstr "Ich akzeptierte"
3257
+
3258
+ #: views/installer/welcome-notice.php:2
3259
+ msgctxt "(Admin)"
3260
+ msgid "The GDPR Framework has not been set up yet. Would you like to do that?"
3261
+ msgstr ""
3262
+ "Die Einrichtung des DSGVO Frameworks ist noch nicht abgeschlossen. Möchtest "
3263
+ "du das machen?"
3264
+
3265
+ #: views/installer/welcome-notice.php:3
3266
+ msgctxt "(Admin)"
3267
+ msgid "Our setup wizard will guide you through the process."
3268
+ msgstr "Unser Setup-Assistent führt Sie durch den Prozess."
3269
+
3270
+ #: views/installer/welcome-notice.php:4
3271
+ msgctxt "(Admin)"
3272
+ msgid "You can also configure the plugin manually by going to"
3273
+ msgstr "Sie können das Plugin auch manuell konfigurieren, indem Sie zu"
3274
+
3275
+ #: views/installer/welcome-notice.php:5
3276
+ msgctxt "(Admin)"
3277
+ msgid "Tools"
3278
+ msgstr "Werkzeuge"
3279
+
3280
+ #: views/installer/welcome-notice.php:10
3281
+ msgctxt "(Admin)"
3282
+ msgid "Run the setup wizard"
3283
+ msgstr "Einrichtungsassistent jetzt starten"
3284
+
3285
+ #: views/installer/welcome-notice.php:14
3286
+ msgctxt "(Admin)"
3287
+ msgid "Auto-install pages"
3288
+ msgstr "Seiten automatisch einrichten"
3289
+
3290
+ #: views/installer/welcome-notice.php:18
3291
+ msgctxt "(Admin)"
3292
+ msgid "Skip and install manually"
3293
+ msgstr "Überspringen und manuell einrichten"
3294
+
3295
+ #: views/modules/contact-form-7/form-privacy-tab.php:10
3296
+ msgctxt "(Admin)"
3297
+ msgid ""
3298
+ "Include the entries of this form when downloading or deleting a data "
3299
+ "subject's data."
3300
+ msgstr ""
3301
+ "Füge dies Formulareinträge beim Herunterladen oder Löschen der Daten einer "
3302
+ "betroffenen Person hinzu."
3303
+
3304
+ #: views/modules/contact-form-7/form-privacy-tab.php:18
3305
+ msgctxt "(Admin)"
3306
+ msgid ""
3307
+ "Select the mail-tag of the sender's email field (for example, your-email)."
3308
+ msgstr ""
3309
+ "Wähle das Mail-Tag für das E-Mail-Feld des Absenders aus. Beispiel: deine-"
3310
+ "email."
3311
+
3312
+ #: views/modules/contact-form-7/generator-privacy.php:6
3313
+ msgctxt "(Admin)"
3314
+ msgid ""
3315
+ "This tag generates the default text for Terms & Conditions and/or Privacy "
3316
+ "Policy checkbox."
3317
+ msgstr ""
3318
+ "Dieser Tag generiert den Standardtext für die Checkbox der "
3319
+ "Geschäftsbedingungen und/oder Datenschutzerklärung."
3320
+
3321
+ #: views/modules/contact-form-7/generator-privacy.php:15
3322
+ msgid "Insert"
3323
+ msgstr "Indsæt"
3324
+
3325
+ #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:3
3326
+ #: views/privacy-tools/form-consent.php:2
3327
+ msgid "Consent"
3328
+ msgstr "Samtykke"
3329
+
3330
+ #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:6
3331
+ #: views/privacy-tools/form-consent.php:6
3332
+ msgid "Here you can withdraw any consents you have given."
3333
+ msgstr "Her kan du trække eventuelle samtykker tilbage."
3334
+
3335
+ #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:8
3336
+ msgid "Consents"
3337
+ msgstr "Einwilligungen"
3338
+
3339
+ #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:23
3340
+ #: views/privacy-tools/form-consent.php:24
3341
+ msgid "Withdraw"
3342
+ msgstr "Træk"
3343
+
3344
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:5
3345
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:5
3346
+ msgctxt "(Admin)"
3347
+ msgid "Delete this user and all data"
3348
+ msgstr "Diesen Benutzer und alle Daten löschen"
3349
+
3350
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:11
3351
+ msgctxt "(Admin)"
3352
+ msgid "Delete my data"
3353
+ msgstr "Slet mine data"
3354
+
3355
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:15
3356
+ #: views/privacy-tools/form-delete.php:4 views/privacy-tools/form-delete.php:24
3357
+ msgid "Delete all data we have gathered about you."
3358
+ msgstr "Slet alle data vi har samlet om dig."
3359
+
3360
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:16
3361
+ #: views/privacy-tools/form-delete.php:5 views/privacy-tools/form-delete.php:25
3362
+ msgid "If you have a user account on our site, it will also be deleted."
3363
+ msgstr ""
3364
+ "Hvis du har en brugerkonto på vores hjemmeside, bliver den også slettet."
3365
+
3366
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:17
3367
+ #: views/privacy-tools/form-delete.php:6 views/privacy-tools/form-delete.php:26
3368
+ msgid "Be careful - this action is permanent and CANNOT be undone."
3369
+ msgstr "Pas på - denne handling er permanent og kan ikke fortrydes."
3370
+
3371
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:19
3372
+ #: views/privacy-tools/form-delete.php:8
3373
+ msgid "Note Regarding Order:"
3374
+ msgstr "Bemærkning vedrørende ordre:"
3375
+
3376
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:20
3377
+ #: views/privacy-tools/form-delete.php:9
3378
+ msgid ""
3379
+ "Your order with status Processing will not get deleted until status change."
3380
+ msgstr ""
3381
+ "Din ordre med status Behandling vil ikke blive slettet, indtil statusændring."
3382
+
3383
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:21
3384
+ #: views/privacy-tools/form-delete.php:10
3385
+ msgid "Your order with status Completed will get anonymize."
3386
+ msgstr "Din ordre med status Afsluttet vil blive anonymiseret."
3387
+
3388
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:22
3389
+ #: views/privacy-tools/form-delete.php:11
3390
+ msgid "If you delete Completed order you can't apply for refund."
3391
+ msgstr "Hvis du sletter Afsluttet ordre, kan du ikke søge om refusion."
3392
+
3393
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:28
3394
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:23
3395
+ msgctxt "(Admin)"
3396
+ msgid ""
3397
+ "You seem to have an administrator or equivalent role, so deleting/"
3398
+ "anonymizing via this page is disabled."
3399
+ msgstr ""
3400
+ "Du scheinst die Rolle eines Administrators oder eine gleichwertige Rolle zu "
3401
+ "haben, so dass löschen/anonymisieren über diese Seite deaktiviert ist."
3402
+
3403
+ #: views/modules/wordpress-user/dashboard/form-export.php:7
3404
+ #: views/privacy-tools/form-export.php:1
3405
+ msgid "Download your data"
3406
+ msgstr "Download dine data"
3407
+
3408
+ #: views/modules/wordpress-user/dashboard/form-export.php:12
3409
+ #: views/privacy-tools/form-export.php:13
3410
+ msgid "Download as table"
3411
+ msgstr "Download som tabel"
3412
+
3413
+ #: views/modules/wordpress-user/dashboard/form-export.php:15
3414
+ #: views/privacy-tools/form-export.php:22
3415
+ msgid "Export as JSON"
3416
+ msgstr "Eksporter som JSON"
3417
+
3418
+ #: views/modules/wordpress-user/dashboard/form-export.php:19
3419
+ #: views/privacy-tools/form-export.php:4
3420
+ msgid "You can download all your data formatted as a table for viewing."
3421
+ msgstr "Du kan downloade alle dine data formateret som et bord til visning."
3422
+
3423
+ #: views/modules/wordpress-user/dashboard/form-export.php:20
3424
+ #: views/privacy-tools/form-export.php:5
3425
+ msgid "Alternatively, you can export it in machine-readable JSON format."
3426
+ msgstr "Alternativt kan du eksportere det i maskinlæsbart JSON-format."
3427
+
3428
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:11
3429
+ msgctxt "(Admin)"
3430
+ msgid "Delete user and all data"
3431
+ msgstr "Diesen Benutzer und alle Daten löschen"
3432
+
3433
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:14
3434
+ msgctxt "(Admin)"
3435
+ msgid "Anonymize user and all data"
3436
+ msgstr "Diesen Benutzer und alle Daten anonymisieren"
3437
+
3438
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:18
3439
+ msgctxt "gdpr-framework"
3440
+ msgid "Be careful - this action is permanent and CANNOT be undone."
3441
+ msgstr ""
3442
+ "Sei vorsichtig - diese Aktion ist dauerhaft und kann NICHT rückgängig "
3443
+ "gemacht werden."
3444
+
3445
+ #: views/modules/wordpress-user/dashboard/profile-page/header.php:2
3446
+ msgctxt "(Admin)"
3447
+ msgid "GDPR Data"
3448
+ msgstr "DSGVO Daten"
3449
+
3450
+ #: views/modules/wordpress-user/dashboard/profile-page/header.php:6
3451
+ #, fuzzy
3452
+ #| msgctxt "(Admin)"
3453
+ #| msgid "This user has been anonymized."
3454
+ msgctxt "(Admin)"
3455
+ msgid "This user has been anonymized."
3456
+ msgstr "Denne bruger er blevet anonymiseret."
3457
+
3458
+ #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:17
3459
+ msgctxt "(Admin)"
3460
+ msgid "No consents given"
3461
+ msgstr "Ingen samtykker gitt"
3462
+
3463
+ #: views/modules/wordpress-user/dashboard/profile-page/user-logs.php:2
3464
+ msgctxt "gdpr-framework"
3465
+ msgid "GDPR User logs"
3466
+ msgstr "DSGVO Benutzerprotokolle"
3467
+
3468
+ #: views/modules/wordpress-user/dashboard/profile-page/user-logs.php:8
3469
+ #, fuzzy
3470
+ msgctxt "gdpr-framework"
3471
+ msgid "S.no"
3472
+ msgstr "S.no"
3473
+
3474
+ #: views/modules/wordpress-user/dashboard/profile-page/user-logs.php:9
3475
+ msgctxt "gdpr-framework"
3476
+ msgid "User ID"
3477
+ msgstr "Benutzer ID"
3478
+
3479
+ #: views/modules/wordpress-user/dashboard/profile-page/user-logs.php:10
3480
+ #, fuzzy
3481
+ msgctxt "gdpr-framework"
3482
+ msgid "User logs"
3483
+ msgstr "DSGVO Benutzerprotokolle"
3484
+
3485
+ #: views/modules/wordpress-user/dashboard/profile-page/user-logs.php:11
3486
+ msgctxt "gdpr-framework"
3487
+ msgid "Updated date"
3488
+ msgstr "Aktualisiertes Datum"
3489
+
3490
+ #: views/modules/wordpress-user/dashboard/profile-page/user-logs.php:50
3491
+ #, fuzzy
3492
+ msgctxt "gdpr-framework"
3493
+ msgid "No User Logs"
3494
+ msgstr "DSGVO Benutzerprotokolle"
3495
+
3496
+ #: views/privacy-tools/donotsell.php:14
3497
+ msgid "Do Not Sell Request"
3498
+ msgstr "\"Do Not Sell\" Antrag"
3499
+
3500
+ #: views/privacy-tools/donotsell.php:51
3501
+ msgid "I agree to receive other communications from "
3502
+ msgstr "Ich stimme zu, andere Mitteilungen von "
3503
+
3504
+ #: views/privacy-tools/donotsell.php:61
3505
+ msgctxt "(Admin)"
3506
+ msgid "Send Request"
3507
+ msgstr "Anfrage senden"
3508
+
3509
+ #: views/privacy-tools/form-consent.php:9
3510
+ msgid "Consent types"
3511
+ msgstr "Samtykke typer"
3512
+
3513
+ #: views/privacy-tools/form-delete.php:1
3514
+ #: views/privacy-tools/notice-admin-role.php:1
3515
+ msgid "Delete my user and data"
3516
+ msgstr "Slet min bruger og data"
3517
+
3518
+ #: views/privacy-tools/form-delete.php:18
3519
+ #: views/privacy-tools/form-delete.php:30
3520
+ msgid "Delete my data"
3521
+ msgstr "Slet mine data"
3522
+
3523
+ #: views/privacy-tools/form-identify.php:8
3524
+ #, fuzzy
3525
+ msgid "Back to front page"
3526
+ msgstr "Zurück zur Startseite"
3527
+
3528
+ #: views/privacy-tools/form-identify.php:14
3529
+ msgid "Please identify yourself via e-mail"
3530
+ msgstr "Identificer dig selv via e-mail"
3531
+
3532
+ #: views/privacy-tools/form-identify.php:17
3533
+ #: views/privacy-tools/form-identify.php:20
3534
+ msgid "Enter your email address"
3535
+ msgstr "Indtast din e-mailadresse"
3536
+
3537
+ #: views/privacy-tools/form-identify.php:23
3538
+ msgid "Send email"
3539
+ msgstr "Send e-mail"
3540
+
3541
+ #: views/privacy-tools/notice-admin-role.php:4
3542
+ msgctxt "(Admin)"
3543
+ msgid "Data deletion is disabled for administrative accounts."
3544
+ msgstr "Die Datenlöschung ist für administrative Konten deaktiviert."
3545
+
3546
+ #: views/privacy-tools/notices.php:3
3547
+ msgid ""
3548
+ "We will send you an email with the link to access your data. Please check "
3549
+ "your spam folder as well!"
3550
+ msgstr ""
3551
+ "Vi sender dig en email med linket for at få adgang til dine data. Kontroller "
3552
+ "også din spam mappe!"
3553
+
3554
+ #: views/privacy-tools/notices.php:7
3555
+ msgid "The email you entered does not appear to be a valid email."
3556
+ msgstr "Den email du indtastede ser ikke ud til at være en gyldig email."
3557
+
3558
+ #: views/privacy-tools/notices.php:11
3559
+ msgid "Sorry - the link seems to have expired. Please try again!"
3560
+ msgstr "Beklager - linket synes at være udløbet. Prøv igen!"
3561
+
3562
+ #: views/privacy-tools/notices.php:23
3563
+ msgid "Your personal data has been removed!"
3564
+ msgstr ""
3565
+ "Deine personenbezogenen Daten wurden gelöscht!Dine personlige data er blevet "
3566
+ "fjernet!"
3567
+
3568
+ #: views/privacy-tools/privacy-tools.php:5
3569
+ msgid "You are identified as"
3570
+ msgstr "Du er identificeret som"
3571
+
3572
+ #. Plugin Name of the plugin/theme
3573
+ msgid "The GDPR Framework"
3574
+ msgstr "The GDPR Framework"
3575
+
3576
+ #. Plugin URI of the plugin/theme
3577
+ msgid "https://www.data443.com/gdpr-framework/"
3578
+ msgstr "https://www.data443.com/gdpr-framework/"
3579
+
3580
+ #. Description of the plugin/theme
3581
+ msgid ""
3582
+ "Tools to help make your website GDPR-compliant. Fully documented, extendable "
3583
+ "and developer-friendly."
3584
+ msgstr ""
3585
+ "Tools, die Dir helfen, Deine Website DSGVO konform zu machen. Vollständig "
3586
+ "dokumentiert, erweiterbar und entwicklerfreundlich."
3587
+
3588
+ #. Author of the plugin/theme
3589
+ msgid "Data443"
3590
+ msgstr "Data443"
3591
+
3592
+ #. Author URI of the plugin/theme
3593
+ msgid "https://www.data443.com/"
3594
+ msgstr "https://www.data443.com/"
3595
+
3596
+ #, php-format
3597
+ #~ msgid "%sERROR:%s You need to accept the privacy policy to post a comment."
3598
+ #~ msgstr ""
3599
+ #~ "%sfejl:%s Du skal acceptere privatlivspolitikken for at skrive en "
3600
+ #~ "kommentar."
3601
+
3602
+ #~ msgctxt "(Admin)"
3603
+ #~ msgid "Rest of the world"
3604
+ #~ msgstr "Resten af ​​verdenen"
3605
+
3606
+ #~ msgctxt "(Admin)"
3607
+ #~ msgid ""
3608
+ #~ "Found a bug or problem with the plugin? Post in the wordpress.org support "
3609
+ #~ "forum."
3610
+ #~ msgstr ""
3611
+ #~ "Har du fundet en fejl eller et problem med plugin? Indsend i wordpress."
3612
+ #~ "org support forum."
3613
+
3614
+ #~ msgctxt "(Admin)"
3615
+ #~ msgid ""
3616
+ #~ "Need development or legal assistance in making your site compliant? We "
3617
+ #~ "can help!"
3618
+ #~ msgstr ""
3619
+ #~ "Har du brug for udvikling eller juridisk bistand til at gøre dit websted "
3620
+ #~ "kompatibelt? Vi kan hjælpe!"
3621
+
3622
+ #, php-format
3623
+ #~ msgid "I accept the %sTerms and Conditions%s and the %sPrivacy Policy%s"
3624
+ #~ msgstr ""
3625
+ #~ "Jeg accepterer %sVilkår og betingelser%s og %sFortrolighedspolitik%s"
3626
+
3627
+ #~ msgid "Manage consents"
3628
+ #~ msgstr "Administrer samtykker"
3629
+
3630
+ #~ msgid "Back to Privacy Tools"
3631
+ #~ msgstr "Tilbage til Privacy Tools"
3632
+
3633
+ #~ msgid "Identify yourself!"
3634
+ #~ msgstr "Identificer dig selv!"
3635
+
3636
+ #~ msgctxt "(Admin)"
3637
+ #~ msgid "This page allows you to advance integration with ClassiDocs™"
3638
+ #~ msgstr ""
3639
+ #~ "Denne side giver dig mulighed for at fremme integration med ClassiDocs™"
3640
+
3641
+ #~ msgctxt "(Admin)"
3642
+ #~ msgid "ClassiDocs Password"
3643
+ #~ msgstr "ClassiDocs Password"
3644
+
3645
+ #~ msgctxt "(Admin)"
3646
+ #~ msgid "ClassiDocs Username"
3647
+ #~ msgstr "ClassiDocs Brugernavn"
3648
+
3649
+ #~ msgctxt "(Admin)"
3650
+ #~ msgid "Enable Response with related queries?"
3651
+ #~ msgstr "Aktivér svar med relaterede forespørgsler?"
3652
+
3653
+ #~ msgctxt "(Admin)"
3654
+ #~ msgid "Submit SAR request details?"
3655
+ #~ msgstr "Indsend SAR-anmodning detaljer?"
3656
+
3657
+ #~ msgctxt "(Admin)"
3658
+ #~ msgid "Integrate with ClassiDocs?"
3659
+ #~ msgstr "Integrere med ClassiDocs?"
3660
+
3661
+ #~ msgctxt "(Admin)"
3662
+ #~ msgid "Integration Settings"
3663
+ #~ msgstr "Integrationsindstillinger"
3664
+
3665
+ #~ msgctxt "(Admin)"
3666
+ #~ msgid "Advanced Integration"
3667
+ #~ msgstr "Avanceret integration"
3668
+
3669
+ #~ msgctxt "(Admin)"
3670
+ #~ msgid "Sign up for free here"
3671
+ #~ msgstr "Tilmeld dig gratis her"
3672
+
3673
+ #~ msgctxt "(Admin)"
3674
+ #~ msgid "Click Here"
3675
+ #~ msgstr "Klik her"
3676
+
3677
+ #~ msgid "Previous Results"
3678
+ #~ msgstr "Tidligere resultater"
3679
+
3680
+ #~ msgid "Current Results"
3681
+ #~ msgstr "Nuværende resultater"
3682
+
3683
+ #~ msgid "Name"
3684
+ #~ msgstr "Navn"
3685
+
3686
+ #~ msgid "Path"
3687
+ #~ msgstr "Sti"
3688
+
3689
+ #~ msgid "Workstation"
3690
+ #~ msgstr "Workstation"
3691
+
3692
+ #~ msgid "Last Scan"
3693
+ #~ msgstr "Sidste Scan"
3694
+
3695
+ #~ msgid "No ClassiDocs data found!"
3696
+ #~ msgstr "Ingen ClassiDocs data fundet!"
3697
+
3698
+ #~ msgid "Cookies used on the website!"
3699
+ #~ msgstr "Cookies utilizadas en el sitio web!"
3700
+
3701
+ #~ msgctxt "(Admin)"
3702
+ #~ msgid ""
3703
+ #~ "In addition to DSAR tracking and management, Privacy Manager adds the "
3704
+ #~ "following features to your data protection compliance resources:"
3705
+ #~ msgstr ""
3706
+ #~ "Ud over DSAR-tracking og -administration tilføjer Privacy Manager "
3707
+ #~ "følgende funktioner til dine databeskyttelsesoverensstemmelsesressourcer:"
3708
+
3709
+ #~ msgctxt "(Admin)"
3710
+ #~ msgid "Log and store ICO breach notifications"
3711
+ #~ msgstr "Log og gem ICO krænker underretninger"
3712
+
3713
+ #~ msgctxt "(Admin)"
3714
+ #~ msgid "Keeps full record of all requests, ticketed and timeline"
3715
+ #~ msgstr "Holder fuld rekord af alle anmodninger, billet og tidslinje"
3716
+
3717
+ #~ msgctxt "(Admin)"
3718
+ #~ msgid "Gap analysis and breach notifications"
3719
+ #~ msgstr "Gap analyse og brud underretninger"
3720
+
3721
+ #~ msgctxt "(Admin)"
3722
+ #~ msgid "In depth activity log with all GDPR, CCPA, etc actions evidenced"
3723
+ #~ msgstr "I dybde aktivitets log med alle GDPR, CCPA, etc handlinger vist"
3724
+
3725
+ #~ msgctxt "(Admin)"
3726
+ #~ msgid "Highlights areas of concern and where you need to focus"
3727
+ #~ msgstr "Fremhæver områder af bekymring og hvor du skal fokusere"
3728
+
3729
+ #~ msgctxt "(Admin)"
3730
+ #~ msgid ""
3731
+ #~ "eLearning platform with access for all staff to ensure privacy regulation "
3732
+ #~ "compliance and obligations"
3733
+ #~ msgstr ""
3734
+ #~ "eLearning platform med adgang for alle medarbejdere til at sikre "
3735
+ #~ "overholdelse og forpligtelser til beskyttelse af privatlivets fred"
3736
+
3737
+ #~ msgctxt "(Admin)"
3738
+ #~ msgid "Tracks who accesses the system, when and why"
3739
+ #~ msgstr "Spor, der får adgang til systemet, hvornår og hvorfor"
3740
+
3741
+ #~ msgctxt "(Admin)"
3742
+ #~ msgid ""
3743
+ #~ "Our system enables your business to demonstrate its obligations in "
3744
+ #~ "protecting your customer data, show understanding of your business "
3745
+ #~ "activities and deliver eLearning and online tests to employees, ensuring "
3746
+ #~ "everyone in your company understands your privacy compliance rules and "
3747
+ #~ "best practices to operate."
3748
+ #~ msgstr ""
3749
+ #~ "Vores system gør det muligt for din virksomhed at demonstrere sine "
3750
+ #~ "forpligtelser med hensyn til at beskytte dine kundedata, vise forståelse "
3751
+ #~ "for dine forretningsaktiviteter og levere eLearning og online test til "
3752
+ #~ "medarbejdere, så alle i din virksomhed forstår dine regler for "
3753
+ #~ "beskyttelse af personlige oplysninger og bedste praksis til at fungere."
3754
+
3755
+ #~ msgctxt "(Admin)"
3756
+ #~ msgid "Enable WooCommerce data on GDPR tool"
3757
+ #~ msgstr "Aktivér WooCommerce-data på GDPR-værktøjet"
languages/gdpr-framework-de_DE.mo CHANGED
Binary file
languages/gdpr-framework-de_DE.po CHANGED
@@ -7,361 +7,765 @@ msgid ""
7
  msgstr ""
8
  "Project-Id-Version: The GDPR Framework 1.0\n"
9
  "Report-Msgid-Bugs-To: gdpr@codelight.eu\n"
10
- "POT-Creation-Date: 2018-04-16 10:50+0000\n"
11
- "PO-Revision-Date: 2019-09-19 12:38+0530\n"
12
  "Last-Translator: Stefan Butz <webmaster@die-blaue-eisdiele.de>\n"
 
 
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
- "X-Generator: Poedit 1.5.7\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "Language: de-DE\n"
19
- "Language-Team: Deutsch\n"
20
 
21
- #: gdpr-framework.php:26
22
  msgctxt "(Admin)"
23
  msgid "WordPress GDPR &rsaquo; Error"
24
- msgstr "WordPress GDPR &rsaquo; Fehler"
 
 
 
 
 
25
 
26
- #: gdpr-framework.php:35
27
  msgctxt "(Admin)"
28
  msgid "Invalid PHP version"
29
  msgstr "Ungültige PHP-Version"
30
 
31
- #: gdpr-framework.php:35
32
  msgctxt "(Admin)"
33
- msgid "You must be using PHP 5.6.33 or greater."
34
- msgstr "Du musst PHP 5.6.33 oder höher verwenden."
35
 
36
- #: gdpr-framework.php:42
37
  msgctxt "(Admin)"
38
  msgid "Invalid WordPress version"
39
  msgstr "Ungültige WordPress-Version"
40
 
41
- #: gdpr-framework.php:42
42
  msgctxt "(Admin)"
43
- msgid "You must be using WordPress 4.3.0 or greater."
44
- msgstr "Du musst WordPress 4.3.0 oder höher verwenden."
45
 
46
- #: gdpr-framework.php:52
47
  msgctxt "(Admin)"
48
  msgid ""
49
  "You appear to be running a development version of GDPR. You must run "
50
  "<code>composer install</code> from the plugin directory."
51
  msgstr ""
52
- "Es scheint, dass Du eine Entwicklungsversion des GDPR Framework Plugins "
53
- "verwendest. Du musst im Pluginverzeichnis <code>composer install</code> "
54
- "laufen lassen."
55
 
56
- #: gdpr-framework.php:53
57
  msgctxt "(Admin)"
58
  msgid "Autoloader not found."
59
  msgstr "Autoloader nicht gefunden."
60
 
61
- #: gdpr-framework.php:115
62
- msgctxt "(Admin)"
63
- msgid "Anonymous"
64
- msgstr "Anonym"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
65
 
66
- #: src/Admin/AdminTab.php:115
 
 
 
 
 
67
  msgctxt "(Admin)"
68
  msgid "Save"
69
  msgstr "Speichern"
70
 
71
- #: src/Admin/AdminTab.php:151
72
  msgctxt "(Admin)"
73
  msgid "Policy generated!"
74
- msgstr "Richtlinie erstellt!"
75
 
76
  #: src/Admin/AdminTabGeneral.php:11
77
  msgctxt "(Admin)"
78
  msgid "General"
79
  msgstr "Allgemein"
80
 
81
- #: src/Admin/AdminTabGeneral.php:38
82
  msgctxt "(Admin)"
83
  msgid "General Settings"
84
  msgstr "Allgemeine Einstellungen"
85
 
86
- #: src/Admin/AdminTabGeneral.php:43
87
  msgctxt "(Admin)"
88
  msgid "Enable Privacy Tools"
89
- msgstr "Datenschutz-Tools aktivieren"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
 
91
- #: src/Admin/AdminTabGeneral.php:53
92
  msgctxt "(Admin)"
93
  msgid "Pages"
94
  msgstr "Seiten"
95
 
96
- #: src/Admin/AdminTabGeneral.php:58 src/Admin/WordpressAdmin.php:151
97
  msgctxt "(Admin)"
98
  msgid "Privacy Tools Page"
99
- msgstr "Seite der Datenschutz-Tools"
 
 
 
 
 
100
 
101
- #: src/Admin/AdminTabGeneral.php:65 src/Admin/WordpressAdmin.php:147
102
  msgctxt "(Admin)"
103
  msgid "Privacy Policy Page"
104
- msgstr "Seite der Datenschutzerklärung"
105
 
106
- #: src/Admin/AdminTabGeneral.php:72
 
 
 
 
 
107
  msgctxt "(Admin)"
108
  msgid "Terms & Conditions Page"
109
- msgstr "Seite der Allgemeinen Geschäftsbedingungen"
110
 
111
- #: src/Admin/AdminTabGeneral.php:82
 
 
 
 
 
112
  msgctxt "(Admin)"
113
  msgid "View & Export Data"
114
- msgstr "Daten ansehen & exportieren"
115
 
116
- #: src/Admin/AdminTabGeneral.php:87
117
  msgctxt "(Admin)"
118
  msgid "Export action"
119
- msgstr "Export-Aktion"
120
 
121
- #: src/Admin/AdminTabGeneral.php:94 src/Admin/AdminTabGeneral.php:133
122
  msgctxt "(Admin)"
123
  msgid "Email to notify"
124
  msgstr "E-Mail für die Benachrichtigung"
125
 
126
- #: src/Admin/AdminTabGeneral.php:105
127
  msgctxt "(Admin)"
128
  msgid "Delete & Anonymize Data"
129
- msgstr "Daten löschen & anonymisieren"
130
 
131
- #: src/Admin/AdminTabGeneral.php:110
132
  msgctxt "(Admin)"
133
  msgid "Delete action"
134
- msgstr "Lösch-Aktion"
135
 
136
- #: src/Admin/AdminTabGeneral.php:117
137
  msgctxt "(Admin)"
138
  msgid "Delete or reassign content?"
139
- msgstr "Inhalt löschen oder neu zuordnen?"
140
 
141
- #: src/Admin/AdminTabGeneral.php:125
142
  msgctxt "(Admin)"
143
  msgid "Reassign content to"
144
- msgstr "Inhalt zuordnen an"
145
 
146
- #: src/Admin/AdminTabGeneral.php:145
147
  msgctxt "(Admin)"
148
  msgid "Styling"
149
- msgstr "Gestaltung"
150
 
151
- #: src/Admin/AdminTabGeneral.php:150
152
  msgctxt "(Admin)"
153
  msgid "Enable basic styling on Privacy Tools page"
154
- msgstr "Grundlegende Gestaltung auf der Seite der Datenschutz-Tools aktivieren"
155
 
156
- #: src/Admin/AdminTabGeneral.php:162
157
  msgctxt "(Admin)"
158
  msgid "Compatibility"
159
  msgstr "Kompatibilität"
160
 
161
- #: src/Admin/AdminTabGeneral.php:167
162
  msgctxt "(Admin)"
163
  msgid "Enable automatic theme compatibility"
164
- msgstr "Aktiviere die automatische Theme-Kompatibilität"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
165
 
166
- #: src/Admin/AdminTabGeneral.php:184 src/Admin/AdminTabGeneral.php:200
167
- #: src/Admin/AdminTabGeneral.php:213 src/Admin/AdminTabGeneral.php:252
 
 
 
 
 
 
168
  #: views/installer/steps/configuration-settings.php:62
169
  msgctxt "(Admin)"
170
  msgid "&mdash; Select &mdash;"
171
  msgstr "&mdash; Auswählen &mdash;"
172
 
173
- #: src/Admin/WordpressAdmin.php:65
174
  msgctxt "(Admin)"
175
  msgid "Privacy & GDPR Settings"
176
- msgstr "Datenschutz & DSGVO Einstellungen"
177
 
178
- #: src/Admin/WordpressAdmin.php:66
179
  msgctxt "(Admin)"
180
- msgid "Privacy"
181
- msgstr "Datenschutz"
 
 
 
 
 
 
 
182
 
183
  #: src/Components/Consent/AdminTabConsent.php:30
184
- #: src/Components/Consent/AdminTabConsent.php:49
185
  msgctxt "(Admin)"
186
  msgid "Consent"
187
  msgstr "Zustimmung"
188
 
189
- #: src/Components/Consent/AdminTabConsent.php:157
 
 
 
 
 
 
 
 
 
 
190
  msgctxt "(Admin)"
191
  msgid "Consent slug is a required field!"
192
- msgstr "Der Pfad zur Zustimming ist ein Pflichtfeld!"
193
 
194
- #: src/Components/Consent/AdminTabConsent.php:162
195
  msgctxt "(Admin)"
196
  msgid ""
197
  "You may only use alphanumeric characters, dash and underscore in the consent "
198
  "slug field."
199
  msgstr ""
200
- "Du darfst nur alphanumerische Zeichen, Bindestriche und Unterstriche im Feld "
201
- "für den Zustimmungs-Pfad verwenden."
202
 
203
- #: src/Components/Consent/AdminTabConsent.php:167
204
  msgctxt "(Admin)"
205
  msgid "Consent title is a required field!"
206
- msgstr "Titel der Zustimmungsseite wird benötigt!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
207
 
208
- #: src/Components/Consent/ConsentManager.php:46
209
- #: views/modules/contact-form-7/content-privacy.php:2
210
- #: views/modules/wordpress-comments/terms-checkbox.php:14
211
- #: views/modules/wordpress-user/registration-terms-checkbox.php:15
212
  #, php-format
213
  msgid "I accept the %sPrivacy Policy%s"
214
  msgstr "Ich stimme der %sDatenschutzerklärung%s zu"
215
 
216
- #: src/Components/Consent/ConsentManager.php:50
217
- #: src/Components/Consent/ConsentManager.php:69
218
  msgctxt "(Admin)"
219
  msgid ""
220
  "This consent is not visible by default. If someone wishes to withdraw it, "
221
  "they should simply request to delete all their data."
222
  msgstr ""
223
- "Diese Zustimmung ist per Voreinstellung nicht sichtbar. Wenn jemand sie "
224
- "widerrufen möchte, sollte er einfach die Löschung aller seiner Daten "
225
- "verlangen."
226
 
227
- #: src/Components/Consent/ConsentManager.php:65
228
  #, php-format
229
  msgid "I accept the %sTerms & Conditions%s"
230
  msgstr "Ich akzeptiere die %sAllgemeinen Geschäftsbedingungen%s"
231
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
232
  #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:19
233
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:61
234
  #: views/admin/privacy-policy/generated.php:1 views/installer/header.php:41
235
  msgctxt "(Admin)"
236
  msgid "Privacy Policy"
237
  msgstr "Datenschutzerklärung"
238
 
239
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:70
240
  msgctxt "(Admin)"
241
  msgid "Company information"
242
- msgstr "Firmen-Informationen"
243
 
244
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:75
245
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:209
246
  msgctxt "(Admin)"
247
  msgid "Company Name"
248
- msgstr "Name der Firma"
249
 
250
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:82
251
  msgctxt "(Admin)"
252
  msgid "Company Email"
253
- msgstr "E-Mail-Adresse der Firma"
254
 
255
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:89
256
  msgctxt "(Admin)"
257
  msgid "Company Location"
258
- msgstr "Standort der Firma"
259
 
260
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:105
261
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:245
262
  msgctxt "(Admin)"
263
  msgid "Representative Contact Name"
264
- msgstr "Name des Ansprechpartners"
265
 
266
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:112
267
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:252
268
  msgctxt "(Admin)"
269
  msgid "Representative Contact Email"
270
- msgstr "E-Mail-Adresse des Ansprechpartners"
271
 
272
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:119
273
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:259
274
  msgctxt "(Admin)"
275
  msgid "Representative Contact Phone"
276
- msgstr "Telefonnummer des Ansprechpartners"
277
 
278
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:135
279
  msgctxt "(Admin)"
280
  msgid "Data Protection Authority"
281
  msgstr "Datenschutzbehörde"
282
 
283
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:141
284
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:286
285
  msgctxt "(Admin)"
286
  msgid "Data Protection Authority Website"
287
- msgstr "Website der Datenschutzbehörde"
288
 
289
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:148
290
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:293
291
  msgctxt "(Admin)"
292
  msgid "Data Protection Authority Email"
293
- msgstr "E-Mail-Adresse der Datenschutzbehörde"
294
 
295
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:155
296
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:300
297
  msgctxt "(Admin)"
298
  msgid "Data Protection Authority Phone"
299
- msgstr "Telefonnummer der Datenschutzbehörde"
300
 
301
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:165
302
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:175
303
  msgctxt "(Admin)"
304
  msgid "Data Protection Officer"
305
  msgstr "Datenschutzbeauftragter"
306
 
307
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:168
308
  msgctxt "(Admin)"
309
  msgid "Knowledge base: Do I need to appoint a Data Protection Officer?"
310
- msgstr "Wissensdatenbank: Muss ich einen Datenschutzbeauftragten ernennen?"
311
 
312
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:182
313
  msgctxt "(Admin)"
314
  msgid "Data Protection Officer Name"
315
- msgstr "Name des Datenschutzbeauftragten"
316
 
317
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:190
318
  msgctxt "(Admin)"
319
  msgid "Data Protection Officer Email"
320
- msgstr "E-Mail-Adresse des Datenschutzbeauftragten"
 
 
 
 
 
 
 
 
 
321
 
322
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:216
323
  msgctxt "(Admin)"
324
  msgid "Contact Email"
325
- msgstr "Kontakt-E-Mail-Adresse"
326
 
327
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:235
328
  msgctxt "(Admin)"
329
  msgid "Representative Contact"
330
- msgstr "Vertretungsberechtigter Kontakt"
331
 
332
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:238
333
  msgctxt "(Admin)"
334
  msgid "Knowledge base: Do I need to appoint an EU-based representative?"
335
  msgstr ""
336
- "Wissensdatenbank: Muss ich einen Ansprechpartner bennen, der innerhalb der "
337
- "EU sitzt?"
338
 
339
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:317
340
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:324
 
 
 
 
 
341
  msgctxt "(Admin)"
342
  msgid "DPO Name"
343
- msgstr "Behördliche Datenschutzbeauftragte"
 
 
 
 
 
344
 
345
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:420
346
  msgctxt "(Admin)"
347
  msgid "Save & Generate Policy"
348
- msgstr "Speichern & Richtlinie erstellen"
349
 
350
- #: src/Components/PrivacyPolicy/PrivacyPolicy.php:82
351
- #: src/Installer/Installer.php:271 src/Installer/Steps/PolicySettings.php:199
352
  #: views/themes/storefront/footer.php:3
353
  #: views/themes/twentyseventeen/footer.php:3
354
  #: views/themes/twentysixteen/footer.php:4
355
  msgid "Privacy Policy"
356
  msgstr "Datenschutzerklärung"
357
 
358
- #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
359
  msgid "This page is currently disabled."
360
  msgstr "Diese Seite ist derzeit deaktiviert."
361
 
362
- #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:35
363
- #: src/Installer/Installer.php:279
364
- #: src/Installer/Steps/ConfigurationPages.php:55
 
 
 
 
 
365
  #: views/themes/storefront/footer.php:7
366
  #: views/themes/twentyseventeen/footer.php:7
367
  #: views/themes/twentysixteen/footer.php:9
@@ -374,13 +778,6 @@ msgctxt "(Admin)"
374
  msgid "Support"
375
  msgstr "Support"
376
 
377
- #: src/Components/WordpressComments/WordpressComments.php:90
378
- #, php-format
379
- msgid "%sERROR:%s You need to accept the privacy policy to post a comment."
380
- msgstr ""
381
- "%sFEHLER:%s Sie müssen die Datenschutzbestimmungen akzeptieren, um einen "
382
- "Kommentar posten zu können."
383
-
384
  #: src/Components/WordpressUser/Controllers/DashboardDataPageController.php:54
385
  #: views/privacy-tools/notices.php:19
386
  msgid "We have received your request and will reply within 30 days."
@@ -393,7 +790,7 @@ msgstr ""
393
  msgid "Consent withdrawn."
394
  msgstr "Zustimmung zurückgezogen."
395
 
396
- #: src/Components/WordpressUser/RegistrationForm.php:42
397
  msgid "<strong>ERROR</strong>: You must accept the terms and conditions."
398
  msgstr ""
399
  "<strong>FEHLER</strong>: Du musst die Allgemeinen Geschäftsbedingungen "
@@ -408,9 +805,15 @@ msgstr "Datenschutz-Tools"
408
 
409
  #: src/DataSubject/AdminTabDataSubject.php:27
410
  #: src/DataSubject/AdminTabDataSubject.php:41
 
 
 
411
  msgctxt "(Admin)"
412
  msgid "Data Subjects"
413
- msgstr "Betroffene Personen"
 
 
 
414
 
415
  #: src/DataSubject/DataRepository.php:143
416
  msgid "Data exported"
@@ -428,8 +831,8 @@ msgstr "Daten gelöscht"
428
  msgid "Data removal request"
429
  msgstr "Anfrage einer Datenlöschung"
430
 
431
- #: src/DataSubject/DataSubjectIdentificator.php:65
432
- #: src/DataSubject/DataSubjectIdentificator.php:82
433
  msgid "Your personal data on"
434
  msgstr "Deine personenbezogenen Daten auf"
435
 
@@ -461,7 +864,7 @@ msgstr "Zypern"
461
  #: src/Helpers.php:32
462
  msgctxt "(Admin)"
463
  msgid "Czech Republic"
464
- msgstr "Tschechische Republik"
465
 
466
  #: src/Helpers.php:33
467
  msgctxt "(Admin)"
@@ -573,1372 +976,2641 @@ msgctxt "(Admin)"
573
  msgid "United Kingdom"
574
  msgstr "Großbritannien"
575
 
576
- #: src/Helpers.php:69
 
577
  msgctxt "(Admin)"
578
- msgid "Iceland"
579
- msgstr "Island"
580
 
581
- #: src/Helpers.php:70
582
  msgctxt "(Admin)"
583
- msgid "Norway"
584
- msgstr "Norwegen"
585
 
586
- #: src/Helpers.php:71
587
  msgctxt "(Admin)"
588
- msgid "Liechtenstein"
589
- msgstr "Liechtenstein"
590
 
591
- #: src/Helpers.php:72
592
  msgctxt "(Admin)"
593
- msgid "Switzerland"
594
- msgstr "Schweiz"
595
 
596
- #: src/Helpers.php:73
 
597
  msgctxt "(Admin)"
598
- msgid "United States"
599
- msgstr "USA"
600
 
601
- #: src/Helpers.php:74
602
  msgctxt "(Admin)"
603
- msgid "Rest of the world"
604
- msgstr "Übrige Welt"
605
 
606
- #: src/Helpers.php:145
607
- msgid "An error has occurred. Please contact the site administrator."
608
- msgstr ""
609
- "Es ist ein Fehler aufgetreten. Bitte kontaktiere den Webseiten-Administrator."
610
 
611
- #: src/Installer/Installer.php:135
612
  msgctxt "(Admin)"
613
- msgid "Setup Wizard"
614
- msgstr "Einrichtungsassistent"
615
 
616
- #: src/Installer/Steps/ConfigurationPages.php:23
617
- #: src/Installer/Steps/PolicySettings.php:23
618
- #: src/Installer/Steps/PolicySettings.php:48
619
  msgctxt "(Admin)"
620
- msgid "&mdash; Create a new page &mdash;"
621
- msgstr "&mdash; Neue Seite erstellen &mdash;"
622
 
623
- #: src/Installer/Steps/PolicySettings.php:38
624
  msgctxt "(Admin)"
625
- msgid ""
626
- "We have automatically selected your WooCommerce Terms & Conditions page."
627
- msgstr ""
628
- "Wir haben automatisch Deine Seite mit den Allgemeinen Geschäftsbedingungen "
629
- "von WooCommerce ausgewählt."
630
 
631
- #: src/Modules/ContactForm7/ContactForm7.php:35
632
  msgctxt "(Admin)"
633
- msgid "gdpr terms txt"
634
- msgstr "DSGVO Bestimmungen txt"
635
 
636
- #: src/Router.php:80 src/Router.php:92 src/Router.php:125 src/Router.php:141
637
- #, php-format
638
- msgid "Nonce error for action \"%s\". Please go back and try again!"
639
- msgstr ""
640
- "Ein Fehler für die Aktion %s ist aufgetreten. Bitte gehe zurück und versuche "
641
- "es erneut!"
642
 
643
- #: src/Router.php:149
644
  msgctxt "(Admin)"
645
- msgid "You do not have the required permissions to perform this action!"
646
- msgstr ""
647
- "Du verfügst nicht über die erforderlichen Berechtigungen zum Ausführen "
648
- "dieser Aktion!"
649
 
650
- #: views/admin/consent.php:3
651
  msgctxt "(Admin)"
652
- msgid "Default consent types"
653
- msgstr "Voreingestellte Arten der Zustimmung"
654
 
655
- #: views/admin/consent.php:4
656
  msgctxt "(Admin)"
657
- msgid ""
658
- "These are the consent types that have been automatically registered by the "
659
- "framework or a plugin."
660
- msgstr ""
661
- "Dies sind die Zustimmungsarten, die automatisch durch das GDPR Framework "
662
- "oder ein anderes Plugin registriert wurden."
663
 
664
- #: views/admin/consent.php:7 views/admin/consent.php:52
665
  msgctxt "(Admin)"
666
- msgid "Slug"
667
- msgstr "Pfad"
668
 
669
- #: views/admin/consent.php:8 views/admin/consent.php:38
670
- #: views/admin/consent.php:60
671
  msgctxt "(Admin)"
672
- msgid "Title"
673
- msgstr "Titel"
674
 
675
- #: views/admin/consent.php:9 views/admin/consent.php:41
676
- #: views/admin/consent.php:63
677
  msgctxt "(Admin)"
678
- msgid "Description"
679
- msgstr "Beschreibung"
680
 
681
- #: views/admin/consent.php:10
682
  msgctxt "(Admin)"
683
- msgid "Visibility"
684
- msgstr "Sichtbarkeit"
685
 
686
- #: views/admin/consent.php:18
687
  msgctxt "(Admin)"
688
- msgid "Visible"
689
- msgstr "Sichtbar"
690
 
691
- #: views/admin/consent.php:20
692
  msgctxt "(Admin)"
693
- msgid "Hidden"
694
- msgstr "Ausgeblendet"
695
 
696
- #: views/admin/consent.php:29
697
  msgctxt "(Admin)"
698
- msgid "Custom consent types"
699
- msgstr "Benutzerdefinierte Arten der Zustimmung"
700
 
701
- #: views/admin/consent.php:30
702
  msgctxt "(Admin)"
703
- msgid ""
704
- "Here you can add custom consent types to track. They will not be used "
705
- "anywhere by default - you will need to build an integration for each of them."
706
- msgstr ""
707
- "Hier kannst Du benutzerdefinierte Arten der Zustimmung hinzufügen, um sie zu "
708
- "verfolgen. Sie werden nigends per Voreinstellung verwendet. Du musst dafür "
709
- "jeweils eine Integration erstellen."
710
 
711
- #: views/admin/consent.php:35
712
  msgctxt "(Admin)"
713
- msgid "Machine-readable slug"
714
- msgstr "Maschinenlesbarer Pfad"
715
 
716
- #: views/admin/consent.php:44 views/admin/consent.php:68
717
  msgctxt "(Admin)"
718
- msgid "Visible?"
719
- msgstr "Sichtbar?"
720
 
721
- #: views/admin/consent.php:72
722
  msgctxt "(Admin)"
723
- msgid "Remove"
724
- msgstr "Entfernen"
725
 
726
- #: views/admin/consent.php:93
727
  msgctxt "(Admin)"
728
- msgid "Additional info"
729
- msgstr "Zusätzliche Informationen"
730
 
731
- #: views/admin/consent.php:95
732
  msgctxt "(Admin)"
733
- msgid ""
734
- "This text will be displayed to your data subjects on the Privacy Tools page."
735
- msgstr ""
736
- "Dieser Text wird den betroffenen Personen auf der Seite der Datenschutz-"
737
- "Tools angezeigt."
738
 
739
- #: views/admin/data-subjects/search-form.php:2
740
  msgctxt "(Admin)"
741
- msgid ""
742
- "On this page, you can find which data subjects personal data you are storing "
743
- "and download, export or delete it."
744
- msgstr ""
745
- "Auf dieser Seite kannst Du nachlesen, welche personenbezogenen Daten Du von "
746
- "betroffenen Personen speicherst und diese herunterladen, exportieren oder "
747
- "löschen."
748
 
749
- #: views/admin/data-subjects/search-form.php:10
750
  msgctxt "(Admin)"
751
- msgid "Find data subject by email"
752
- msgstr "Betroffene Personen über die E-Mail-Adresse finden"
753
 
754
- #: views/admin/data-subjects/search-form.php:11
755
  msgctxt "(Admin)"
756
- msgid "Email address"
757
- msgstr "E-Mail-Adresse"
758
 
759
- #: views/admin/data-subjects/search-form.php:16
760
  msgctxt "(Admin)"
761
- msgid "Search"
762
- msgstr "Suchen"
763
 
764
- #: views/admin/data-subjects/search-results.php:7
765
  msgctxt "(Admin)"
766
- msgid "Username"
767
- msgstr "Benutzername"
768
 
769
- #: views/admin/data-subjects/search-results.php:12
770
  msgctxt "(Admin)"
771
- msgid "is not a registered user."
772
- msgstr "ist nicht registriert."
773
 
774
- #: views/admin/data-subjects/search-results.php:16
775
  msgctxt "(Admin)"
776
- msgid "Download data (html)"
777
- msgstr "Download der Daten (html)"
778
 
779
- #: views/admin/data-subjects/search-results.php:17
780
  msgctxt "(Admin)"
781
- msgid "Export data (json)"
782
- msgstr "Datenexport (json)"
783
 
784
- #: views/admin/data-subjects/search-results.php:21
785
  msgctxt "(Admin)"
786
- msgid ""
787
- "This user has admin capabilities. Deleting data via this interface is "
788
- "disabled."
789
- msgstr ""
790
- "Dieser Benutzer hat die Berechtigungsstufe eines Admins. Das Löschen der "
791
- "Daten über diese Bedienoberfläche ist daher deaktiviert."
792
 
793
- #: views/admin/data-subjects/search-results.php:24
794
  msgctxt "(Admin)"
795
- msgid "Anonymize data"
796
- msgstr "Daten anonymisieren"
797
 
798
- #: views/admin/data-subjects/search-results.php:25
799
  msgctxt "(Admin)"
800
- msgid "Delete data"
801
- msgstr "Daten löschen"
802
 
803
- #: views/admin/data-subjects/search-results.php:29
804
  msgctxt "(Admin)"
805
- msgid "No data found!"
806
- msgstr "Keine Daten gefunden!"
807
 
808
- #: views/admin/general/delete-action-email.php:5
809
- #: views/admin/general/export-action-email.php:5
810
- #: views/installer/steps/configuration-settings.php:29
811
- #: views/installer/steps/configuration-settings.php:79
812
- msgid "Email address"
813
- msgstr "E-Mail-Adresse"
814
 
815
- #: views/admin/general/delete-action-reassign.php:3
816
- #: views/installer/steps/configuration-settings.php:50
817
  msgctxt "(Admin)"
818
- msgid "Delete content"
819
- msgstr "Inhalt(e) löschen"
820
 
821
- #: views/admin/general/delete-action-reassign.php:6
822
- #: views/installer/steps/configuration-settings.php:53
823
  msgctxt "(Admin)"
824
- msgid "Reassign content to a user"
825
- msgstr "Inhalt(e) einem anderen Benutzer zuweisen"
826
 
827
- #: views/admin/general/delete-action-reassign.php:10
828
  msgctxt "(Admin)"
829
- msgid ""
830
- "If the user has submitted any content on your site, should it be deleted or "
831
- "reassigned to another user?"
832
- msgstr ""
833
- "Falls der Benutzer Inhalte an Deine Website übermittelt hat: Sollen diese "
834
- "gelöscht oder einem anderen Benutzer zugewiesen werden?"
835
 
836
- #: views/admin/general/description-data-page.php:2
837
  msgctxt "(Admin)"
838
- msgid ""
839
- "Select the page where users can go to control their data. This page must "
840
- "contain the [gdpr_privacy_tools] shortcode."
841
- msgstr ""
842
- "Wähle die Seite aus, auf der Benutzer ihre Daten überprüfen können. Diese "
843
- "Seite muss den folgenden Shortcode enthalten: [gdpr_privacy_tools]"
844
 
845
- #: views/admin/general/enable.php:9
846
  msgctxt "(Admin)"
847
- msgid "Enable the view, export and forget functionality for users and visitors"
848
- msgstr ""
849
- "Aktiviere die Ansichts-, Export- und Vergessens-Funktionalität für Benutzer "
850
- "und Besucher"
851
 
852
- #: views/admin/general/enable.php:12
853
  msgctxt "(Admin)"
854
- msgid ""
855
- "Enable the Privacy Tools page on front-end and dashboard. This allows "
856
- "visitors to request viewing and deleting their personal data and withdraw "
857
- "consents."
858
- msgstr ""
859
- "Aktiviere die Seite der Datenschutz-Tools im Frontend und Dashboard. Dies "
860
- "ermöglicht es den Besuchern, Einsicht in Deine persönlichen Daten zu "
861
- "verlangen, sie zu löschen und ihre Zustimmung zur Speicherung zu widerrufen."
862
 
863
- #: views/admin/general/theme-compatibility.php:9
864
- #: views/installer/steps/integrations.php:21
865
  msgctxt "(Admin)"
866
- msgid ""
867
- "Automatically add Privacy Policy and Privacy Tools links to your site footer."
868
- msgstr ""
869
- "Automatisch die Links zur Datenschutzerklärung und zu den Datenschutz-Tools "
870
- "im Footer Deiner Website hinzufügen."
871
 
872
- #: views/admin/notices/header.php:4 views/admin/settings-page.php:3
873
- #: views/installer/header.php:23
874
  msgctxt "(Admin)"
875
- msgid "The GDPR Framework"
876
- msgstr "The GDPR Framework"
877
 
878
- #: views/admin/notices/helper-autoinstall.php:2
879
  msgctxt "(Admin)"
880
- msgid ""
881
- "A Privacy Policy page has been created, but it is empty. You can generate a "
882
- "policy template on this page."
883
- msgstr ""
884
- "Eine Seite für die Datenschutzerklärung wurde erstellt, aber sie ist leer. "
885
- "Du kannst auf dieser Seite eine Vorlage für die Datenschutzerklärung "
886
- "generieren."
887
 
888
- #: views/admin/notices/helper-policy.php:2
889
  msgctxt "(Admin)"
890
- msgid ""
891
- "Heads up - your Privacy Policy still requires some attention. Find the "
892
- "places marked with [TODO] and replace them with real content!"
893
- msgstr ""
894
- "Aufgepasst - Deine Datenschutzerklärung erfordert noch einige "
895
- "Aufmerksamkeit. Finde die mit [TODO] markierten Orte und ersetzen sie durch "
896
- "echten Inhalt!"
897
 
898
- #: views/admin/notices/helper-tools.php:2
 
899
  msgctxt "(Admin)"
900
- msgid ""
901
- "The contents of this page should contain the [gdpr_privacy_tools] shortcode."
902
- msgstr ""
903
- "Der Inhalt dieser Seite sollte den Shortcode [gdpr_privacy_tools] enthalten."
904
 
905
- #: views/admin/privacy-policy/description-policy-page.php:2
906
  msgctxt "(Admin)"
907
- msgid "Select the page which will contain your Privacy Policy"
908
- msgstr "Wähle die Seite aus, die Deine Datenschutzerklärung enthalten wird"
909
 
910
- #: views/admin/privacy-policy/generated.php:3
911
  msgctxt "(Admin)"
912
- msgid "Your Privacy Policy has been generated."
913
- msgstr "Deine Datenschutzerklärung wurde erstellt."
914
 
915
- #: views/admin/privacy-policy/generated.php:20
916
  msgctxt "(Admin)"
917
- msgid "&laquo; Back"
918
- msgstr "&laquo; Zurück"
919
 
920
- #: views/admin/privacy-policy/header.php:2
921
  msgctxt "(Admin)"
922
- msgid ""
923
- "This page allows you to generate a Privacy Policy based on the information "
924
- "you entered below."
925
- msgstr ""
926
- "Auf dieser Seite kannst Du eine Datenschutzerklärung erzeugen, die auf den "
927
- "Informationen basiert, die Du unten eingegeben hast."
928
 
929
- #: views/admin/settings-page.php:31
930
- #, php-format
931
  msgctxt "(Admin)"
932
- msgid "The GDPR Framework. Built with &#9829; by %sCodelight%s."
933
- msgstr "The GDPR Framework. Built with &#9829; by %sCodelight%s."
934
 
935
- #: views/admin/support/contents.php:5 views/installer/steps/finish.php:10
936
  msgctxt "(Admin)"
937
- msgid "Need more info?"
938
- msgstr "Benötigst Du weitere Informationen?"
939
 
940
- #: views/admin/support/contents.php:11 views/installer/steps/finish.php:16
941
  msgctxt "(Admin)"
942
- msgid "Site Owner's guide to GDPR"
943
- msgstr "DSGVO-Handbuch für Website-Besitzer"
944
 
945
- #: views/admin/support/contents.php:14 views/installer/steps/finish.php:19
946
  msgctxt "(Admin)"
947
- msgid "Read the full guide on GDPR compliance."
948
- msgstr "Lies das vollständige Handbuch zur DSGVO-Konformität."
949
 
950
- #: views/admin/support/contents.php:20 views/installer/steps/finish.php:25
951
  msgctxt "(Admin)"
952
- msgid "Knowledge base"
953
- msgstr "Wissensdatenbank"
954
 
955
- #: views/admin/support/contents.php:23 views/installer/steps/finish.php:28
956
  msgctxt "(Admin)"
957
- msgid "Check out the knowledge base for common questions and answers."
958
- msgstr ""
959
- "Sieh Dir die Wissensdatenbank an, um häufige Fragen und Antworten zu lesen."
960
 
961
- #: views/admin/support/contents.php:29 views/installer/steps/finish.php:34
962
  msgctxt "(Admin)"
963
- msgid "Developer's guide to GDPR"
964
- msgstr "Entwicklerleitfaden zur DSGVO"
965
 
966
- #: views/admin/support/contents.php:32 views/installer/steps/finish.php:37
967
  msgctxt "(Admin)"
968
- msgid "We have a thorough guide to help making custom sites compliant."
969
- msgstr ""
970
- "Wir haben eine umfassende Anleitung, um benutzerdefinierte Websites DSGVO-"
971
- "konform zu machen."
972
 
973
- #: views/admin/support/contents.php:40 views/installer/steps/finish.php:45
974
  msgctxt "(Admin)"
975
- msgid "Need help?"
976
- msgstr "Brauchst Du Hilfe?"
977
 
978
- #: views/admin/support/contents.php:46 views/installer/steps/finish.php:51
979
  msgctxt "(Admin)"
980
- msgid "Submit a support request"
981
- msgstr "Supportanfrage stellen"
982
 
983
- #: views/admin/support/contents.php:49 views/installer/steps/finish.php:54
984
  msgctxt "(Admin)"
985
- msgid ""
986
- "Found a bug or problem with the plugin? Post in the wordpress.org support "
987
- "forum."
988
- msgstr ""
989
- "Du hast einen Fehler gefunden oder ein Problem mit dem Plugin? Bitte "
990
- "schreibe uns im Support-Forum von wordpress.org."
991
 
992
- #: views/admin/support/contents.php:55 views/installer/steps/finish.php:60
993
  msgctxt "(Admin)"
994
- msgid "Request a consultation"
995
- msgstr "Fordern Sie eine Beratung an"
996
 
997
- #: views/admin/support/contents.php:58 views/installer/steps/finish.php:63
998
  msgctxt "(Admin)"
999
- msgid ""
1000
- "Need development or legal assistance in making your site compliant? We can "
1001
- "help!"
1002
- msgstr ""
1003
- "Benötigst Du Unterstützung bei der Web-Entwicklung oder Rechtshilfe um Deine "
1004
- "Website DSGVO-konform einzurichten? Wir können helfen!"
1005
 
1006
- #: views/admin/wizard-buttons.php:2
1007
  msgctxt "(Admin)"
1008
- msgid "Restart setup wizard"
1009
- msgstr "Einrichtungsassistenten erneut starten"
1010
 
1011
- #: views/email/action-export.php:8 views/email/action-forget.php:12
1012
  msgctxt "(Admin)"
1013
- msgid ""
1014
- "This email is just for your information. You don't need to take any action"
1015
- msgstr ""
1016
- "Diese E-Mail dient nur zu Ihrer Information. Du musst nichts unternehmen."
1017
 
1018
- #: views/email/action-forget.php:8
1019
  msgctxt "(Admin)"
1020
- msgid "The data subject had a user account on your website."
1021
- msgstr "Die betroffene Person hatte einen Benutzer-Account auf Deiner Website."
1022
 
1023
- #: views/email/identify-data-subject.php:2
1024
- msgid "Someone has requested access to your data on"
1025
- msgstr "Jemand hat Zugriff auf Deine Daten angefordert"
 
 
1026
 
1027
- #: views/email/identify-data-subject.php:3
1028
- msgid "If this was a mistake, just ignore this email and nothing will happen."
1029
- msgstr ""
1030
- "Falls Du diese E-Mail irrtümlich erhalten hast: Ignoriere sie bitte. Es wird "
1031
- "nichts weiter passieren."
1032
 
1033
- #: views/email/identify-data-subject.php:4
1034
- msgid "To manage your data, visit the following address:"
1035
- msgstr "Um Deine Daten zu verwalten, besuche die folgende Adresse:"
 
1036
 
1037
- #: views/email/identify-data-subject.php:10
1038
- msgid "This link is valid for 15 minutes."
1039
- msgstr "Dieser Link ist 15 Minuten gültig."
 
1040
 
1041
- #: views/email/no-data.php:2
1042
- msgid "Someone has requested information about your personal data on"
1043
- msgstr "Jemand hat Auskunft über Deine personenbezogenen Daten erbeten auf"
 
 
1044
 
1045
- #: views/email/no-data.php:3
1046
- msgid "None of your personal data is stored on"
1047
- msgstr "Keine Deiner persönlichen Daten wurden gespeichert auf"
 
 
1048
 
1049
- #: views/email/no-data.php:5
1050
- msgid ""
1051
- "If this was a mistake or you did not request this email, just ignore it and "
1052
- "nothing will happen."
1053
- msgstr ""
1054
- "Falls Du diese E-Mail irrtümlich erhalten hast: Ignorieren sie bitte. Es "
1055
- "wird nichts weiter passieren."
1056
 
1057
- #: views/email/request-export.php:13 views/email/request-forget.php:13
1058
  msgctxt "(Admin)"
1059
- msgid "As a reminder: according to GDPR, you have 30 days to comply."
1060
- msgstr "Zur Erinnerung: Gemäß der DSGVO musst Du 30 Tage einhalten."
1061
 
1062
- #: views/global/delete-action.php:2
1063
  msgctxt "(Admin)"
1064
- msgid "Automatically anonymize data"
1065
- msgstr "Daten automatisch anonymisieren"
1066
 
1067
- #: views/global/delete-action.php:5
 
1068
  msgctxt "(Admin)"
1069
- msgid "Automatically delete data"
1070
- msgstr "Daten automatisch löschen"
1071
 
1072
- #: views/global/delete-action.php:9
 
1073
  msgctxt "(Admin)"
1074
- msgid "Automatically anonymize data and notify me via email"
1075
- msgstr "Daten automatisch anonymisieren und mich über E-Mail benachrichtigen"
1076
 
1077
- #: views/global/delete-action.php:13
 
1078
  msgctxt "(Admin)"
1079
- msgid "Automatically delete data and notify me via email"
1080
- msgstr "Daten automatisch löschen und mich über E-Mail benachrichtigen"
1081
 
1082
- #: views/global/delete-action.php:16 views/global/export-action.php:10
 
1083
  msgctxt "(Admin)"
1084
- msgid "Only notify me via email"
1085
- msgstr "Mich lediglich über E-Mail benachrichtigen"
1086
 
1087
- #: views/global/export-action.php:2
1088
  msgctxt "(Admin)"
1089
- msgid "Automatically download data"
1090
- msgstr "Daten automatisch herunterladen"
1091
 
1092
- #: views/global/export-action.php:6
 
1093
  msgctxt "(Admin)"
1094
- msgid "Automatically download data and notify me via email"
1095
- msgstr "Daten automatisch herunterladen und mich über E-Mail benachrichtigen"
1096
 
1097
- #: views/installer/continue-notice.php:2
 
1098
  msgctxt "(Admin)"
1099
- msgid "The The GDPR Framework setup has not been finalized yet."
1100
- msgstr "Die Einrichtung des GDPR Frameworks ist noch nicht abgeschlossen."
1101
 
1102
- #: views/installer/continue-notice.php:3
 
1103
  msgctxt "(Admin)"
1104
- msgid "You can continue the setup at any time."
1105
- msgstr "Du kannst die Einrichtung jederzeit fortsetzen."
1106
 
1107
- #: views/installer/continue-notice.php:6
 
1108
  msgctxt "(Admin)"
1109
- msgid "Continue the setup wizard"
1110
- msgstr "Setze den Einrichtungsassistenten fort"
1111
 
1112
- #: views/installer/continue-notice.php:9
 
1113
  msgctxt "(Admin)"
1114
- msgid "Hide this message"
1115
- msgstr "Diese Nachricht ausblenden"
1116
 
1117
- #: views/installer/footer.php:7
1118
- msgid "Back"
1119
- msgstr "Zurück"
 
 
1120
 
1121
- #: views/installer/header.php:26
 
1122
  msgctxt "(Admin)"
1123
- msgid "I need help"
1124
- msgstr "Ich benötige Unterstützung"
1125
 
1126
- #: views/installer/header.php:29
 
1127
  msgctxt "(Admin)"
1128
- msgid "Developer Docs"
1129
- msgstr "Entwickler-Dokumentation"
1130
 
1131
- #: views/installer/header.php:36
 
1132
  msgctxt "(Admin)"
1133
- msgid "Configuration"
1134
- msgstr "Konfiguration"
1135
 
1136
- #: views/installer/header.php:46
 
1137
  msgctxt "(Admin)"
1138
- msgid "Forms & Consent"
1139
- msgstr "Formulare & Zustimmung"
1140
 
1141
- #: views/installer/header.php:51
 
1142
  msgctxt "(Admin)"
1143
- msgid "Integrations"
1144
- msgstr "Integrationen"
1145
 
1146
- #: views/installer/steps/configuration-settings.php:23
1147
- #: views/installer/steps/configuration-settings.php:73
1148
  msgctxt "(Admin)"
1149
- msgid "Enter the email address to notify"
1150
- msgstr "Gib die zu benachrichtigende E-Mail-Adresse ein"
1151
 
1152
- #: views/installer/steps/disclaimer.php:21
 
1153
  msgctxt "(Admin)"
1154
- msgid "I accept"
1155
- msgstr "Ich akzeptiere"
1156
 
1157
- #: views/installer/welcome-notice.php:7
 
1158
  msgctxt "(Admin)"
1159
- msgid "Run the setup wizard"
1160
- msgstr "Einrichtungsassistent jetzt starten"
1161
 
1162
- #: views/installer/welcome-notice.php:11
 
1163
  msgctxt "(Admin)"
1164
- msgid "Auto-install pages"
1165
- msgstr "Seiten automatisch einrichten"
1166
 
1167
- #: views/installer/welcome-notice.php:15
 
1168
  msgctxt "(Admin)"
1169
- msgid "Skip and install manually"
1170
- msgstr "Überspringen und manuell einrichten"
1171
 
1172
- #: views/modules/contact-form-7/generator-privacy.php:6
 
1173
  msgctxt "(Admin)"
1174
- msgid ""
1175
- "This tag generates the default text for Terms & Conditions and/or Privacy "
1176
- "Policy checkbox."
1177
- msgstr ""
1178
- "Dieser Tag generiert den Standardtext für die Checkbox der "
1179
- "Geschäftsbedingungen und/oder Datenschutzerklärung."
1180
 
1181
- #: views/modules/contact-form-7/generator-privacy.php:15
1182
- msgid "Insert"
1183
- msgstr "Einfügen"
 
 
1184
 
1185
- #: views/modules/wordpress-comments/terms-checkbox.php:6
1186
- #: views/modules/wordpress-user/registration-terms-checkbox.php:7
1187
- #, php-format
1188
- msgid "I accept the %sTerms and Conditions%s and the %sPrivacy Policy%s"
1189
- msgstr ""
1190
- "Ich akzeptiere die %sAllgemeinen Geschäftsbedingungen%s und die "
1191
- "%sDatenschutzerklärung%s"
1192
 
1193
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:3
1194
- msgid "Manage consents"
1195
- msgstr "Zustimmungen verwalten"
 
 
1196
 
1197
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:6
1198
- #: views/privacy-tools/form-consent.php:6
1199
- msgid "Here you can withdraw any consents you have given."
1200
- msgstr "Hier kannst Du Deine gegebenen Einwilligungen widerrufen."
1201
 
1202
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:8
1203
- #: views/privacy-tools/form-consent.php:9
1204
- msgid "Consent types"
1205
- msgstr "Arten der Zustimmung"
 
1206
 
1207
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:23
1208
- #: views/privacy-tools/form-consent.php:24
1209
- msgid "Withdraw"
1210
- msgstr "Widerrufen"
 
1211
 
1212
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:5
1213
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:5
1214
  msgctxt "(Admin)"
1215
- msgid "Delete this user and all data"
1216
- msgstr "Diesen Benutzer und alle Daten löschen"
1217
 
1218
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:11
 
1219
  msgctxt "(Admin)"
1220
- msgid "Delete my data"
1221
- msgstr "Lösche meine Daten"
1222
 
1223
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:15
1224
- #: views/privacy-tools/form-delete.php:13
1225
- msgid "Delete all data we have gathered about you."
1226
- msgstr "Lösche alle Daten, die auf dieser Seite über Dich gesammelt wurden."
 
1227
 
1228
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:16
1229
- #: views/privacy-tools/form-delete.php:14
1230
- msgid "If you have a user account on our site, it will also be deleted."
1231
- msgstr ""
1232
- "Falls Du auf unserer Website ein Benutzerkonto hast, wird dieses ebenfalls "
1233
- "gelöscht."
1234
 
1235
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:17
1236
- #: views/privacy-tools/form-delete.php:15
1237
- msgid "Be careful - this action is permanent and CANNOT be undone."
1238
- msgstr ""
1239
- "Sei vorsichtig - diese Aktion ist dauerhaft und kann NICHT rückgängig "
1240
- "gemacht werden."
1241
 
1242
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:22
1243
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:23
1244
  msgctxt "(Admin)"
1245
- msgid ""
1246
- "You seem to have an administrator or equivalent role, so deleting/"
1247
- "anonymizing via this page is disabled."
1248
- msgstr ""
1249
- "Du scheinst die Rolle eines Administrators oder eine gleichwertige Rolle zu "
1250
- "haben, so dass löschen/anonymisieren über diese Seite deaktiviert ist."
1251
 
1252
- #: views/modules/wordpress-user/dashboard/form-export.php:7
1253
- #: views/privacy-tools/form-export.php:1
1254
- msgid "Download your data"
1255
- msgstr "Lade Deine Ihre Daten herunter"
 
1256
 
1257
- #: views/modules/wordpress-user/dashboard/form-export.php:12
1258
- #: views/privacy-tools/form-export.php:13
1259
- msgid "Download as table"
1260
- msgstr "Als Tabelle herunterladen"
 
1261
 
1262
- #: views/modules/wordpress-user/dashboard/form-export.php:15
1263
- #: views/privacy-tools/form-export.php:22
1264
- msgid "Export as JSON"
1265
- msgstr "Export als JSON"
 
1266
 
1267
- #: views/modules/wordpress-user/dashboard/form-export.php:19
1268
- #: views/privacy-tools/form-export.php:4
1269
- msgid "You can download all your data formatted as a table for viewing."
1270
- msgstr ""
1271
- "Für eine einfachere Betrachtung kannst Du all Deine Daten in Form einer "
1272
- "Tabelle herunterladen."
1273
 
1274
- #: views/modules/wordpress-user/dashboard/form-export.php:20
1275
- #: views/privacy-tools/form-export.php:5
1276
- msgid "Alternatively, you can export it in machine-readable JSON format."
1277
- msgstr "Alternativ kannst Du sie im maschinenlesbaren JSON-Format exportieren."
 
1278
 
1279
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:11
 
1280
  msgctxt "(Admin)"
1281
- msgid "Delete user and all data"
1282
- msgstr "Diesen Benutzer und alle Daten löschen"
1283
 
1284
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:14
 
1285
  msgctxt "(Admin)"
1286
- msgid "Anonymize user and all data"
1287
- msgstr "Diesen Benutzer und alle Daten anonymisieren"
1288
 
1289
- #: views/modules/wordpress-user/dashboard/profile-page/header.php:2
 
1290
  msgctxt "(Admin)"
1291
- msgid "GDPR Data"
1292
- msgstr "DSGVO Daten"
1293
 
1294
- #: views/modules/wordpress-user/dashboard/profile-page/header.php:6
 
1295
  msgctxt "(Admin)"
1296
- msgid "This user has been anonymized."
1297
- msgstr "Dieser Benutzer wurde anonymisiert."
1298
 
1299
- #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:4
 
1300
  msgctxt "(Admin)"
1301
- msgid "Consents given"
1302
- msgstr "Gegebene Zustimmungen"
1303
 
1304
- #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:17
 
1305
  msgctxt "(Admin)"
1306
- msgid "No consents given"
1307
- msgstr "Keine Zustimmungen gegeben"
1308
 
1309
- #: views/privacy-tools/form-consent.php:2
1310
- msgid "Consent"
1311
- msgstr "Zustimmung"
 
 
1312
 
1313
- #: views/privacy-tools/form-delete.php:1
1314
- #: views/privacy-tools/notice-admin-role.php:1
1315
- msgid "Delete my user and data"
1316
- msgstr "Mein Benutzerkonto und meine Daten löschen"
 
1317
 
1318
- #: views/privacy-tools/form-delete.php:7
1319
- msgid "Delete my data"
1320
- msgstr "Meine Daten löschen"
 
 
1321
 
1322
- #: views/privacy-tools/form-identify.php:8
1323
- msgid "Back to Privacy Tools"
1324
- msgstr "Zurück zu den Datenschutz-Tools"
 
 
1325
 
1326
- #: views/privacy-tools/form-identify.php:14
1327
- msgid "Identify yourself!"
1328
- msgstr "Bitte identifiziere Dich!"
 
 
1329
 
1330
- #: views/privacy-tools/form-identify.php:17
1331
- #: views/privacy-tools/form-identify.php:20
1332
- msgid "Enter your email address"
1333
- msgstr "Gib Deine E-Mail-Adresse ein"
 
1334
 
1335
- #: views/privacy-tools/form-identify.php:23
1336
- msgid "Send email"
1337
- msgstr "E-Mail senden"
 
 
1338
 
1339
- #: views/privacy-tools/notice-admin-role.php:4
 
1340
  msgctxt "(Admin)"
1341
- msgid "Data deletion is disabled for administrative accounts."
1342
- msgstr ""
1343
- "Die Löschung der Daten ist für administrative Benutzerkonten deaktiviert."
1344
 
1345
- #: views/privacy-tools/notices.php:3
1346
- msgid ""
1347
- "We will send you an email with the link to access your data. Please check "
1348
- "your spam folder as well!"
1349
- msgstr ""
1350
- "Wir senden Dir eine E-Mail mit einem Link, um auf Deine Daten zuzugreifen. "
1351
- "Bitte überprüfe auch Deinen Spam-Ordner!"
1352
 
1353
- #: views/privacy-tools/notices.php:7
1354
- msgid "The email you entered does not appear to be a valid email."
1355
- msgstr "Die eingegebene E-Mail-Adresse scheint ungültig zu sein."
 
 
1356
 
1357
- #: views/privacy-tools/notices.php:11
1358
- msgid "Sorry - the link seems to have expired. Please try again!"
1359
- msgstr ""
1360
- "Entschuldigung - der Link scheint abgelaufen zu sein. Bitte versuche es "
1361
- "erneut!"
1362
 
1363
- #: views/privacy-tools/notices.php:23
1364
- msgid "Your personal data has been removed!"
1365
- msgstr "Deine personenbezogenen Daten wurden gelöscht!"
 
1366
 
1367
- #: views/privacy-tools/privacy-tools.php:5
1368
- msgid "You are identified as"
1369
- msgstr "Du bist indentifiziert als"
 
 
1370
 
1371
- #: views\admin\general\enable-tac.php:9
 
1372
  msgctxt "(Admin)"
1373
- msgid "Enable the term and condition page."
1374
- msgstr "Aktiviere Begriffs- und Bedingungsseite."
1375
 
1376
- #: src\Admin\AdminTabGeneral.php:51
 
1377
  msgctxt "(Admin)"
1378
- msgid "Enable Term and Conditions"
1379
- msgstr "Aktiviere Bedingungen und Konditionen"
1380
 
1381
- #: gdpr-framework.php:121
1382
- msgid ""
1383
- "This website uses cookies to ensure you get the best experience on our "
1384
- "website."
1385
- msgstr ""
1386
- "Diese Website verwendet Cookies, um sicherzustellen, dass unsere Webseite "
1387
- "ideal nutzbar ist."
1388
 
1389
- #: gdpr-framework.php:121
1390
- msgid "Decline"
1391
- msgstr "Ablehnen"
 
 
1392
 
1393
- #: gdpr-framework.php:121
1394
- msgid "Accept"
1395
- msgstr "Akzeptieren"
 
 
1396
 
1397
- #: gdpr-framework.php:133
1398
- msgid "Learn more"
1399
- msgstr "Mehr erfahren"
 
 
1400
 
1401
- #: AdminTabGeneral.php:94
 
1402
  msgctxt "(Admin)"
1403
- msgid "From Email"
1404
- msgstr "Von E-Mail"
1405
 
1406
- #: AdminTabGeneral.php:87
 
1407
  msgctxt "(Admin)"
1408
- msgid "From Name"
1409
- msgstr "Von Name"
1410
 
1411
- #: AdminTabGeneral.php:82
 
1412
  msgctxt "(Admin)"
1413
- msgid "Email Setting"
1414
- msgstr "E-Mail-Einstellung"
1415
 
1416
- #: AdminTabGeneral.php:104
 
1417
  msgctxt "(Admin)"
1418
- msgid "Acceptance Popup Setting"
1419
- msgstr "Akzeptanz-Popup-Einstellung"
1420
 
1421
- #: AdminTabGeneral.php:109
 
1422
  msgctxt "(Admin)"
1423
- msgid "Popup Position"
1424
- msgstr "Popup-Position"
1425
 
1426
- #: AdminTabGeneral.php:116
 
1427
  msgctxt "(Admin)"
1428
- msgid "Popup theme"
1429
- msgstr "Popup-Thema"
1430
 
1431
- #: AdminTabGeneral.php:123
 
1432
  msgctxt "(Admin)"
1433
- msgid "Cookie Acceptance Background Color"
1434
- msgstr "Cookie-Akzeptanz-Hintergrundfarbe"
1435
 
1436
- #: AdminTabGeneral.php:130
 
1437
  msgctxt "(Admin)"
1438
- msgid "Cookie Acceptance Text Color"
1439
- msgstr "Cookie Akzeptanz Textfarbe"
1440
 
1441
- #: AdminTabGeneral.php:137
 
1442
  msgctxt "(Admin)"
1443
- msgid "Cookie Acceptance Button Backgroung Color"
1444
- msgstr "Cookie Akzeptanz Button Backgroung Farbe"
1445
 
1446
- #: AdminTabGeneral.php:144
 
1447
  msgctxt "(Admin)"
1448
- msgid "Cookie Acceptance Button Color"
1449
- msgstr "Cookie-Akzeptanz-Schaltfläche Farbe"
1450
 
1451
- #: AdminTabGeneral.php:151
 
1452
  msgctxt "(Admin)"
1453
- msgid "Cookie Acceptance Border Color"
1454
- msgstr "Akzeptanzgrenze für Cookies"
1455
 
1456
- #: AdminTabGeneral.php:67
 
1457
  msgctxt "(Admin)"
1458
- msgid "Enable Cookie Acceptance Popup"
1459
- msgstr "Aktiviere das Cookie-Akzeptanz-Popup"
1460
 
1461
- #: AdminTabGeneral.php:73
 
1462
  msgctxt "(Admin)"
1463
- msgid "Cookie Acceptance Popup Content"
1464
- msgstr "Cookie-Akzeptanz-Popup-Inhalt"
1465
 
1466
- #: description-position-action.php
 
1467
  msgctxt "(Admin)"
1468
- msgid "Select position of the Popup"
1469
- msgstr "Wähle die Position des Popups"
1470
 
1471
- #: description-theme-action.php
 
1472
  msgctxt "(Admin)"
1473
- msgid "Select theme of the Popup"
1474
- msgstr "Wähle das Thema des Popups"
1475
 
1476
- #: description-theme-action.php:69
 
1477
  msgctxt "(Admin)"
1478
- msgid "Disable Comment Checkbox"
1479
- msgstr "Kommentar deaktivieren Kontrollkästchen"
1480
 
1481
- #: description-theme-action.php:76
 
1482
  msgctxt "(Admin)"
1483
- msgid "Disable Register Form Checkbox"
1484
- msgstr "Deaktivieren Sie die Registrierungsformular-Checkbox"
1485
 
1486
- #: description-theme-action.php:312
 
1487
  msgctxt "(Admin)"
1488
- msgid "Disable Checkbox For Comments"
1489
- msgstr "Deaktiviere Kontrollkästchen für Kommentare"
1490
 
1491
- #: AdminTabGeneral.php:319
 
1492
  msgctxt "(Admin)"
1493
- msgid "Disable Checkbox For Register Form"
1494
- msgstr "Kontrollkästchen für Registrierungsformular deaktivieren"
1495
 
1496
- #: views/privacy-tools/form-identify.php:15
1497
- msgid "Please identify yourself via e-mail"
1498
- msgstr "Bitte identifiziere Dich per E-Mail"
 
 
1499
 
1500
- #: advanced-integration\header.php:2
 
1501
  msgctxt "(Admin)"
1502
- msgid "This page allows you to advance integration with ClassiDocs™"
1503
- msgstr ""
1504
- "Auf dieser Seite kannst Du die Integration mit ClassiDocs ™ vorantreiben"
1505
 
1506
- #: AdminTabAdvancedIntegration.php:97
 
1507
  msgctxt "(Admin)"
1508
- msgid "ClassiDocs Password"
1509
- msgstr "ClassiDocs Passwort"
1510
 
1511
- #: AdminTabAdvancedIntegration.php:88
 
1512
  msgctxt "(Admin)"
1513
- msgid "ClassiDocs Username"
1514
- msgstr "ClassiDocs Benutzername"
1515
 
1516
- #: AdminTabAdvancedIntegration.php:79
 
1517
  msgctxt "(Admin)"
1518
- msgid "ClassiDocs URL"
1519
- msgstr "ClassiDocs URL"
1520
 
1521
- #: AdminTabAdvancedIntegration.php:69
 
1522
  msgctxt "(Admin)"
1523
- msgid "Enable Response with related queries?"
1524
- msgstr "Antwort mit verwandten Anfragen aktivieren?"
1525
 
1526
- #: AdminTabAdvancedIntegration.php:60
 
1527
  msgctxt "(Admin)"
1528
- msgid "Submit SAR request details?"
1529
- msgstr "SAR-Anfragedetails einreichen?"
1530
 
1531
- #: AdminTabAdvancedIntegration.php:51
 
1532
  msgctxt "(Admin)"
1533
- msgid "Integrate with ClassiDocs?"
1534
- msgstr "Mit ClassiDocs integrieren?"
1535
 
1536
- #: AdminTabAdvancedIntegration.php:43
 
1537
  msgctxt "(Admin)"
1538
- msgid "Integration Settings"
1539
- msgstr "Integrationseinstellungen"
1540
 
1541
- #: AdminTabAdvancedIntegration.php:35
 
1542
  msgctxt "(Admin)"
1543
- msgid "Advanced Integration"
1544
- msgstr "Erweiterte Integration"
1545
 
1546
- #: checkbox-field.php:10
 
1547
  msgctxt "(Admin)"
1548
- msgid "Sign up for free here"
1549
- msgstr "Melde Dich hier kostenlos an"
1550
 
1551
- #: checkbox-field.php:10
 
1552
  msgctxt "(Admin)"
1553
- msgid "Click Here"
1554
- msgstr "Klick hier"
1555
 
1556
- #: ClassiDocs-results.php:12
1557
- msgid "Previous Results"
1558
- msgstr "Vorherige Ergebnisse"
 
 
1559
 
1560
- #: ClassiDocs-results.php:13
1561
- msgid "Current Results"
1562
- msgstr "Aktuelle Ergebnisse"
 
 
1563
 
1564
- #: ClassiDocs-results.php:19
1565
- msgid "Name"
1566
- msgstr "Name"
 
 
1567
 
1568
- #: ClassiDocs-results.php:22
1569
- msgid "Path"
1570
- msgstr "Pfad"
 
 
1571
 
1572
- #: ClassiDocs-results.php:34
1573
- msgid "Workstation"
1574
- msgstr "Arbeitsplatz"
 
 
1575
 
1576
- #: ClassiDocs-results.php:37
1577
- msgid "Last Scan"
1578
- msgstr "Letzter Scan"
 
 
1579
 
1580
- #: ClassiDocs-results.php:62
1581
- msgid "No ClassiDocs data found!"
1582
- msgstr "Keine ClassiDocs Daten gefunden!"
 
 
1583
 
1584
- #: enable_popup_header.php:5
1585
- msgid "Cookies used on the website!"
1586
- msgstr "Auf der Website verwendete Cookies!"
 
 
1587
 
1588
- #: enable_popup_header.php:9
1589
- msgid "Leave blank if don't want header to get display."
1590
- msgstr "Lassen Sie das Feld leer, wenn der Header nicht angezeigt werden soll."
 
 
1591
 
1592
- #: AdminTabCookiePopup.php:39
1593
  msgctxt "(Admin)"
1594
- msgid "Cookie Popup Settings"
1595
- msgstr "Cookie-Popup-Einstellungen"
1596
 
1597
- #: AdminTabCookiePopup.php:17
 
1598
  msgctxt "(Admin)"
1599
- msgid "Cookie Popup"
1600
- msgstr "Cookie-Popup"
1601
 
1602
- #: AdminTabCookiePopup.php:49
 
1603
  msgctxt "(Admin)"
1604
- msgid "Enable One Time Cookie Acceptance Popup"
1605
- msgstr "Einmalige Cookie-Akzeptanz-Popup-Funktion aktivieren"
1606
 
1607
- #: consent.php:79
 
1608
  msgctxt "(Admin)"
1609
- msgid "Show Consent types"
1610
- msgstr "Zustimmungstypen anzeigen"
1611
 
 
 
1612
  msgctxt "(Admin)"
1613
- msgid "Hide consent types"
1614
- msgstr "Zustimmungstypen ausblenden"
1615
 
 
 
1616
  msgctxt "(Admin)"
1617
- msgid "Do you want form to be GDPR compliance."
1618
- msgstr "Möchten Sie, dass das Formular der DSGVO entspricht?"
1619
 
 
 
1620
  msgctxt "(Admin)"
1621
- msgid ""
1622
- "You have installed flamingo, To make this GDPR compliance in individual "
1623
- "contact form's privacy tab check the checkbox for include data to be search "
1624
- "on Privacy tool."
1625
- msgstr ""
1626
- "Sie haben flamingo installiert. Aktivieren Sie das Kontrollkästchen \"Daten "
1627
- "einschließen\", um die Datenschutzbestimmungen für die DSDPR auf der "
1628
- "Registerkarte \"Datenschutz\" des einzelnen Kontaktformulars zu aktivieren."
1629
 
 
 
1630
  msgctxt "(Admin)"
1631
- msgid "Enable Policy Link On Popup"
1632
- msgstr "Aktivieren Sie die Richtlinienverknüpfung im Popup"
1633
 
 
 
1634
  msgctxt "(Admin)"
1635
- msgid "Enable Privacy policy on Popup"
1636
- msgstr "Aktivieren Sie die Datenschutzbestimmungen für Popup"
1637
 
1638
- #: AdminTabCookiePopup.php
 
1639
  msgctxt "(Admin)"
1640
- msgid "Cookie Acceptance Popup header"
1641
- msgstr "Cookie-Akzeptanz-Popup-Header"
1642
 
1643
- #: views\admin\privacy-manager\header.php:2
 
1644
  msgctxt "(Admin)"
1645
- msgid "Data443™ Privacy Manager"
1646
- msgstr "Data443™ Privacy Manager"
1647
 
1648
- #: views\admin\privacy-manager\header.php:3
 
1649
  msgctxt "(Admin)"
1650
- msgid ""
1651
- "ensures privacy regulation compliance, such as GDPR, CCPA, LGPD, etc, at the "
1652
- "next level."
1653
- msgstr ""
1654
- "sorgt für die Einhaltung der Datenschutzbestimmungen wie GDPR, CCPA, LGPD "
1655
- "usw. auf der nächsten Ebene."
1656
 
1657
- #: views\admin\privacy-manager\header.php:4
 
1658
  msgctxt "(Admin)"
1659
- msgid ""
1660
- "In addition to DSAR tracking and management, Privacy Manager adds the "
1661
- "following features to your data protection compliance resources:"
1662
- msgstr ""
1663
- "Zusätzlich zu DSAR-Nachverfolgung und -Verwaltung fügt Privacy Manager Ihren "
1664
- "Ressourcen zur Einhaltung des Datenschutzes die folgenden Funktionen hinzu:"
1665
 
1666
- #: views\admin\privacy-manager\header.php:6
 
1667
  msgctxt "(Admin)"
1668
- msgid "Log and store ICO breach notifications"
1669
- msgstr "ICO-Verstoßbenachrichtigungen protokollieren und speichern"
1670
 
1671
- #: views\admin\privacy-manager\header.php:7
 
1672
  msgctxt "(Admin)"
1673
- msgid "Keeps full record of all requests, ticketed and timeline"
1674
- msgstr "Zeichnet alle Anfragen auf, Ticket und Timeline"
1675
 
1676
- #: views\admin\privacy-manager\header.php:8
 
1677
  msgctxt "(Admin)"
1678
- msgid "Gap analysis and breach notifications"
1679
- msgstr "Lückenanalyse und Verstoßbenachrichtigungen"
1680
 
1681
- #: views\admin\privacy-manager\header.php:9
 
1682
  msgctxt "(Admin)"
1683
- msgid "In depth activity log with all GDPR, CCPA, etc actions evidenced"
1684
- msgstr "In depth activity log with all GDPR, CCPA, etc actions evidenced"
1685
 
1686
- #: views\admin\privacy-manager\header.php:10
 
1687
  msgctxt "(Admin)"
1688
- msgid "Highlights areas of concern and where you need to focus"
1689
- msgstr "Hebt die Problembereiche hervor, auf die Sie sich konzentrieren müssen"
1690
 
1691
- #: views\admin\privacy-manager\header.php:11
 
1692
  msgctxt "(Admin)"
1693
- msgid ""
1694
- "eLearning platform with access for all staff to ensure privacy regulation "
1695
- "compliance and obligations"
1696
- msgstr ""
1697
- "E-Learning-Plattform mit Zugang für alle Mitarbeiter, um die Einhaltung der "
1698
- "Datenschutzbestimmungen und -pflichten sicherzustellen"
1699
 
1700
- #: views\admin\privacy-manager\header.php:12
 
1701
  msgctxt "(Admin)"
1702
- msgid "Tracks who accesses the system, when and why"
1703
- msgstr "Erfasst, wer wann und warum auf das System zugreift"
1704
 
1705
- #: views\admin\privacy-manager\header.php:15
 
1706
  msgctxt "(Admin)"
1707
- msgid ""
1708
- "Our system enables your business to demonstrate its obligations in "
1709
- "protecting your customer data, show understanding of your business "
1710
- "activities and deliver eLearning and online tests to employees, ensuring "
1711
- "everyone in your company understands your privacy compliance rules and best "
1712
- "practices to operate."
1713
- msgstr ""
1714
- "Unser System ermöglicht es Ihrem Unternehmen, seine Verpflichtungen "
1715
- "hinsichtlich des Schutzes Ihrer Kundendaten zu demonstrieren, Verständnis "
1716
- "für Ihre Geschäftsaktivitäten zu vermitteln und Mitarbeitern e-Learning und "
1717
- "Online-Tests zur Verfügung zu stellen. So stellen Sie sicher, dass jeder in "
1718
- "Ihrem Unternehmen die Regeln zum Schutz Ihrer Privatsphäre und die bewährten "
1719
- "Vorgehensweisen kennt."
1720
 
1721
- #: views\admin\privacy-manager\header.php:16
 
1722
  msgctxt "(Admin)"
1723
- msgid ""
1724
- "No matter where you are on your data privacy journey, the ultimate goal is "
1725
- "compliance."
1726
- msgstr ""
1727
- "Unabhängig davon, wo Sie sich auf Ihrer Datenschutzreise befinden, ist das "
1728
- "ultimative Ziel Compliance."
1729
 
1730
- #: views\admin\privacy-manager\header.php:16
 
1731
  msgctxt "(Admin)"
1732
- msgid "enables your organization to comply with all privacy regulations."
1733
- msgstr ""
1734
- "ermöglicht Ihrem Unternehmen die Einhaltung aller Datenschutzbestimmungen."
1735
 
1736
- #: views\admin\support\contents.php:49
1737
  msgctxt "(Admin)"
1738
- msgid ""
1739
- "Found a bug or have a question about the plugin? Submit a support request "
1740
- "and we’ll get right on it!"
1741
- msgstr ""
1742
- "Fehler gefunden oder Fragen zum Plugin? Senden Sie eine Support-Anfrage und "
1743
- "wir werden sofort darauf reagieren!"
1744
 
1745
- #: views\admin\support\contents.php:58
 
1746
  msgctxt "(Admin)"
1747
- msgid "Need assistance in making your site compliant? We can help!"
1748
- msgstr ""
1749
- "Benötigen Sie Hilfe, um Ihre Website kompatibel zu machen? Wir können helfen!"
1750
 
1751
- #: views\admin\general\woo-compatibility.php:9
 
1752
  msgctxt "(Admin)"
1753
- msgid "Enable WooCommerce data on GDPR tool"
1754
- msgstr "Aktivieren Sie WooCommerce-Daten für das DSDPR-Tool"
1755
 
1756
- #: src\Admin\AdminTabGeneral.php:241
1757
  msgctxt "(Admin)"
1758
- msgid "Enable WooCommerce Compatibility"
1759
- msgstr "Aktivieren Sie die WooCommerce-Kompatibilität"
1760
 
1761
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:19
1762
- msgid "Note Regarding Order:"
1763
- msgstr "Hinweis zur Bestellung:"
 
 
1764
 
1765
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:20
1766
- msgid ""
1767
- "Your order with status Processing will not get deleted until status change."
1768
- msgstr ""
1769
- "Ihre Bestellung mit Statusverarbeitung wird erst gelöscht, wenn sich der "
1770
- "Status ändert."
1771
 
1772
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:21
1773
- msgid "Your order with status Completed will get anonymize."
1774
- msgstr "Ihre Bestellung mit dem Status Abgeschlossen wird anonymisiert."
 
 
1775
 
1776
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:22
1777
- msgid "If you delete Completed order you can't apply for refund."
1778
- msgstr ""
1779
- "Wenn Sie die abgeschlossene Bestellung löschen, können Sie keine Erstattung "
1780
- "beantragen."
1781
 
1782
- #: views\admin\general\woo-compatibility.php:12
 
1783
  msgctxt "(Admin)"
1784
- msgid "Will work for WooCommerce Version 3.4.0 or later."
1785
- msgstr "Funktioniert für WooCommerce Version 3.4.0 oder höher."
1786
 
1787
- #: views\admin\general\edd-compatibility.php:9
1788
  msgctxt "(Admin)"
1789
- msgid "Enable EDD data on GDPR tool."
1790
- msgstr "Aktivieren Sie EDD-Daten für das DSGVO-Tool."
1791
 
1792
- #: views\admin\general\edd-compatibility.php:12
1793
  msgctxt "(Admin)"
1794
- msgid "Will work for EDD Version 2.0.0 or later."
1795
- msgstr "Funktioniert für EDD Version 2.0.0 oder höher."
1796
 
1797
- #: src\Admin\AdminTabGeneral.php:262
1798
  msgctxt "(Admin)"
1799
- msgid "Enable EDD Compatibility"
1800
- msgstr "Aktivieren Sie die EDD-Kompatibilität"
1801
 
1802
- #: gdpr-framework.php:298
1803
- msgid "Cookie Policy"
1804
- msgstr "Cookie-Richtlinie"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1805
 
1806
- #: ConsentManager.php:96
1807
  msgctxt "(Admin)"
1808
  msgid ""
1809
- "This consent is visible by default on woocommerce checkout page. If someone "
1810
- "wishes to withdraw it, they should simply request to delete all their data."
1811
  msgstr ""
1812
- "Diese Einwilligung wird standardmäßig auf der Checkout-Seite von woocommerce "
1813
- "angezeigt. Wenn jemand es widerrufen möchte, sollte er einfach die Löschung "
1814
- "aller seiner Daten anfordern."
1815
 
1816
- #: ConsentManager.php:96
1817
  msgctxt "(Admin)"
1818
- msgid "Woocommerce Policy Consent"
1819
- msgstr "Zustimmung zur Woocommerce-Richtlinie"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1820
 
1821
- #: WoocommerceGdpr.php:150
 
 
 
 
 
 
 
 
 
 
 
 
1822
  msgid "Please acknowledge the Privacy Policy"
1823
  msgstr "Bitte bestätigen Sie die Datenschutzerklärung"
1824
 
1825
- #: woo-compatibility.php:9
 
 
 
 
 
 
 
 
 
 
 
1826
  msgctxt "(Admin)"
1827
- msgid "Enable WooCommerce data on GDPR tool."
1828
- msgstr "Aktivieren Sie WooCommerce-Daten im GDPR-Tool."
 
 
 
 
 
1829
 
1830
- #: views\admin\general\enable-popup.php:12
1831
  msgctxt "(Admin)"
1832
  msgid ""
1833
- "<b>Note:</b> Need to add custom content <b>gdpr_cookie_consent</b> its "
1834
- "accepted on popup accept button."
1835
  msgstr ""
1836
- "<b> Hinweis: </ b> Sie müssen benutzerdefinierten Inhalt hinzufügen. <b> "
1837
- "gdpr_cookie_consent </ b> Wird über die Schaltfläche zum Akzeptieren des "
1838
- "Popups akzeptiert."
1839
 
1840
- #: AdminTabCookiePopup.php:105
1841
  msgctxt "(Admin)"
1842
- msgid "Popup Dismiss Text"
1843
- msgstr "Popup Text schließen"
1844
 
1845
- #: AdminTabCookiePopup.php:98
 
1846
  msgctxt "(Admin)"
1847
- msgid "Popup Allow Text"
1848
- msgstr "Popup Text zulassen"
 
 
 
 
 
 
1849
 
1850
- #: AdminTabGeneral.php:241
1851
  msgctxt "(Admin)"
1852
- msgid "Woocommerce Integration"
1853
- msgstr "Woocommerce-Integration"
1854
 
1855
- #: AdminTabGeneral.php:259
1856
  msgctxt "(Admin)"
1857
- msgid "Easy Digital Download Integration"
1858
- msgstr "Einfache Integration digitaler Downloads"
1859
 
1860
- #: has-dpo.php:11
1861
  msgctxt "(Admin)"
1862
- msgid "I have appointed a Data Protection Officer (DPO)"
1863
- msgstr "Ich habe einen Datenschutzbeauftragten ernannt"
1864
 
1865
- #: views/admin/general/stylesheet.php:9
1866
  msgctxt "(Admin)"
1867
- msgid "Enable basic styling for Privacy Tools page."
 
 
 
 
 
 
 
1868
  msgstr ""
1869
- "Aktivieren Sie das grundlegende Styling für die Seite \"Datenschutz-Tools\"."
 
 
1870
 
1871
- #: AdminTabPrivacyPolicy.php:204
1872
  msgctxt "(Admin)"
1873
- msgid "Delete Text"
1874
- msgstr "Text löschen"
1875
 
1876
- #: consent.php:80
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1877
  msgctxt "(Admin)"
1878
  msgid "Add consent type"
1879
- msgstr "Zustimmungstyp hinzufügen"
1880
 
1881
- #: AdminTabGeneral.php:127
1882
  msgctxt "(Admin)"
1883
- msgid "Privacy Policy Custom URL"
1884
- msgstr "Datenschutzrichtlinie Benutzerdefinierte URL"
1885
 
1886
- #: custom-policy-url.php:6
1887
  msgctxt "(Admin)"
1888
- msgid "Leave blank if privacy policy page already selected"
1889
- msgstr ""
1890
- "Lassen Sie dieses Feld leer, wenn die Datenschutzrichtlinie bereits "
1891
- "ausgewählt ist"
1892
 
1893
- #: views/admin/general/description-delete-action.php:2
1894
  msgctxt "(Admin)"
1895
- msgid "What should happen if a data subject requests deleting their data."
 
1896
  msgstr ""
1897
- "Was soll passieren, wenn eine betroffene Person das Löschen ihrer Daten "
1898
- "anfordert?"
1899
 
1900
- #: views/admin/general/description-export-action.php:2
1901
  msgctxt "(Admin)"
1902
- msgid "Optional. Select the page which contains your Terms & Conditions"
1903
- msgstr ""
1904
- "Wahlweise. Wählen Sie die Seite aus, die Ihre Allgemeinen "
1905
- "Geschäftsbedingungen enthält"
1906
 
1907
- #: views/admin/general/description-terms-page.php:2
1908
  msgctxt "(Admin)"
1909
  msgid ""
1910
- "What should happen if a data subject requests viewing or exporting their "
1911
- "data."
1912
  msgstr ""
1913
- "Was soll passieren, wenn eine betroffene Person das Anzeigen oder "
1914
- "Exportieren ihrer Daten anfordert?"
 
1915
 
1916
- #: woo-disable_checkbox.php:9
1917
  msgctxt "(Admin)"
1918
- msgid "Disable WooCommerce Privacy Checkbox"
1919
- msgstr "Deaktivieren Sie das Kontrollkästchen für den WooCommerce-Datenschutz"
1920
 
1921
- #: AdminTabCookiePopup.php:133
1922
  msgctxt "(Admin)"
1923
- msgid "Popup Learn More Text"
1924
- msgstr "Popup Weitere Informationen Text"
1925
 
1926
- #: AdminTabGeneral.php:262
1927
  msgctxt "(Admin)"
1928
- msgid "Disable WooCommerce Register Privacy Checkbox"
1929
- msgstr "Deaktivieren Sie das Kontrollkästchen WooCommerce Register Privacy"
1930
 
1931
- #: AdminTabCookiePopup.php:121
1932
  msgctxt "(Admin)"
1933
- msgid "Cookie Acceptance link target"
1934
- msgstr "Cookie Akzeptanz Link Ziel"
1935
 
1936
- #: popup_link_target.php:3
1937
  msgctxt "(Admin)"
1938
- msgid "Next Tab"
1939
- msgstr "Nächstes Tab"
1940
 
1941
- #: popup_link_target.php:5
1942
  msgctxt "(Admin)"
1943
- msgid "Self"
1944
- msgstr "selbst"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  msgstr ""
8
  "Project-Id-Version: The GDPR Framework 1.0\n"
9
  "Report-Msgid-Bugs-To: gdpr@codelight.eu\n"
10
+ "POT-Creation-Date: 2021-10-28 11:20-0400\n"
11
+ "PO-Revision-Date: 2021-10-28 11:43-0400\n"
12
  "Last-Translator: Stefan Butz <webmaster@die-blaue-eisdiele.de>\n"
13
+ "Language-Team: Deutsch\n"
14
+ "Language: de_DE\n"
15
  "MIME-Version: 1.0\n"
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
18
+ "X-Generator: Poedit 3.0\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 
20
 
21
+ #: gdpr-framework.php:110
22
  msgctxt "(Admin)"
23
  msgid "WordPress GDPR &rsaquo; Error"
24
+ msgstr "WordPress DSGVO &rsaquo; Fehler"
25
+
26
+ #: gdpr-framework.php:121
27
+ msgctxt "(Admin)"
28
+ msgid "You must be using PHP 5.6.0 or greater."
29
+ msgstr "Du musst PHP 5.6.0 oder höher verwenden."
30
 
31
+ #: gdpr-framework.php:122
32
  msgctxt "(Admin)"
33
  msgid "Invalid PHP version"
34
  msgstr "Ungültige PHP-Version"
35
 
36
+ #: gdpr-framework.php:132
37
  msgctxt "(Admin)"
38
+ msgid "You must be using WordPress 4.3.0 or greater."
39
+ msgstr "Sie benötigen WordPress Version 4.3.0 oder neuer."
40
 
41
+ #: gdpr-framework.php:133
42
  msgctxt "(Admin)"
43
  msgid "Invalid WordPress version"
44
  msgstr "Ungültige WordPress-Version"
45
 
46
+ #: gdpr-framework.php:204
47
  msgctxt "(Admin)"
48
+ msgid "Anonymous"
49
+ msgstr "Anonym"
50
 
51
+ #: gdpr-helper-functions.php:75
52
  msgctxt "(Admin)"
53
  msgid ""
54
  "You appear to be running a development version of GDPR. You must run "
55
  "<code>composer install</code> from the plugin directory."
56
  msgstr ""
57
+ "Du verwendest eine Entwicklungsversion von DSVGO. Du musst <code>composer "
58
+ "install</code> aus dem Plugin Verzeichnis ausführen."
 
59
 
60
+ #: gdpr-helper-functions.php:80
61
  msgctxt "(Admin)"
62
  msgid "Autoloader not found."
63
  msgstr "Autoloader nicht gefunden."
64
 
65
+ #: gdpr-helper-functions.php:126
66
+ msgid ""
67
+ "This website uses cookies to ensure you get the best experience on our "
68
+ "website."
69
+ msgstr ""
70
+ "Diese Website verwendet Cookies, um sicherzustellen, dass unsere Webseite "
71
+ "ideal nutzbar ist."
72
+
73
+ #: gdpr-helper-functions.php:139
74
+ msgid "Decline"
75
+ msgstr "Ablehnen"
76
+
77
+ #: gdpr-helper-functions.php:152
78
+ msgid "Accept"
79
+ msgstr "Akzeptieren"
80
+
81
+ #: gdpr-helper-functions.php:165
82
+ msgid "Learn more"
83
+ msgstr "Mehr erfahren"
84
+
85
+ #: gdpr-helper-functions.php:220
86
+ msgid "Cookie Policy"
87
+ msgstr "Cookie-Richtlinie"
88
+
89
+ #: gdpr-helper-functions.php:258
90
+ msgid "Settings"
91
+ msgstr "Einstellungen"
92
 
93
+ #: gdpr-helper-functions.php:259
94
+ msgid "PREMIUM"
95
+ msgstr "PREMIUM"
96
+
97
+ #: src/Admin/AdminTab.php:195
98
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:114
99
  msgctxt "(Admin)"
100
  msgid "Save"
101
  msgstr "Speichern"
102
 
103
+ #: src/Admin/AdminTab.php:231
104
  msgctxt "(Admin)"
105
  msgid "Policy generated!"
106
+ msgstr "Retningslinjer generert!"
107
 
108
  #: src/Admin/AdminTabGeneral.php:11
109
  msgctxt "(Admin)"
110
  msgid "General"
111
  msgstr "Allgemein"
112
 
113
+ #: src/Admin/AdminTabGeneral.php:55
114
  msgctxt "(Admin)"
115
  msgid "General Settings"
116
  msgstr "Allgemeine Einstellungen"
117
 
118
+ #: src/Admin/AdminTabGeneral.php:60
119
  msgctxt "(Admin)"
120
  msgid "Enable Privacy Tools"
121
+ msgstr "Datenschutz aktivieren"
122
+
123
+ #: src/Admin/AdminTabGeneral.php:67
124
+ msgctxt "(Admin)"
125
+ msgid "Enable Term and Conditions"
126
+ msgstr "Allgemeinen Geschäftsbedingungen"
127
+
128
+ #: src/Admin/AdminTabGeneral.php:74
129
+ msgctxt "(Admin)"
130
+ msgid "Disable Comment Checkbox"
131
+ msgstr "Kommentare deaktivieren"
132
+
133
+ #: src/Admin/AdminTabGeneral.php:81
134
+ msgctxt "(Admin)"
135
+ msgid "Disable Register Form Checkbox"
136
+ msgstr "Registerformular deaktivieren"
137
+
138
+ #: src/Admin/AdminTabGeneral.php:91
139
+ msgctxt "(Admin)"
140
+ msgid "Email Setting"
141
+ msgstr "E-Mail-Einstellung"
142
+
143
+ #: src/Admin/AdminTabGeneral.php:96
144
+ msgctxt "(Admin)"
145
+ msgid "From Name"
146
+ msgstr "Von Name"
147
+
148
+ #: src/Admin/AdminTabGeneral.php:103
149
+ msgctxt "(Admin)"
150
+ msgid "From Email"
151
+ msgstr "Von E-Mail"
152
 
153
+ #: src/Admin/AdminTabGeneral.php:112
154
  msgctxt "(Admin)"
155
  msgid "Pages"
156
  msgstr "Seiten"
157
 
158
+ #: src/Admin/AdminTabGeneral.php:117 src/Admin/WordpressAdmin.php:166
159
  msgctxt "(Admin)"
160
  msgid "Privacy Tools Page"
161
+ msgstr "Datenschutz Seite"
162
+
163
+ #: src/Admin/AdminTabGeneral.php:124
164
+ msgctxt "(Admin)"
165
+ msgid "Privacy Tools Custom URL"
166
+ msgstr "Datenschutz individuelle URL"
167
 
168
+ #: src/Admin/AdminTabGeneral.php:131 src/Admin/WordpressAdmin.php:162
169
  msgctxt "(Admin)"
170
  msgid "Privacy Policy Page"
171
+ msgstr "Seite mit der Datenschutzerklärung"
172
 
173
+ #: src/Admin/AdminTabGeneral.php:138
174
+ msgctxt "(Admin)"
175
+ msgid "Privacy Policy Custom URL"
176
+ msgstr "Datenschutzerklärung URL"
177
+
178
+ #: src/Admin/AdminTabGeneral.php:145
179
  msgctxt "(Admin)"
180
  msgid "Terms & Conditions Page"
181
+ msgstr "Allgemeine Geschäftsbedigungen Seite"
182
 
183
+ #: src/Admin/AdminTabGeneral.php:152
184
+ msgctxt "(Admin)"
185
+ msgid "Terms & Conditions Custom URL"
186
+ msgstr "Allgemeinen Geschäftsbedingungen URL"
187
+
188
+ #: src/Admin/AdminTabGeneral.php:162
189
  msgctxt "(Admin)"
190
  msgid "View & Export Data"
191
+ msgstr "Daten anzeigen & exportieren"
192
 
193
+ #: src/Admin/AdminTabGeneral.php:167
194
  msgctxt "(Admin)"
195
  msgid "Export action"
196
+ msgstr "Exportieren"
197
 
198
+ #: src/Admin/AdminTabGeneral.php:174 src/Admin/AdminTabGeneral.php:213
199
  msgctxt "(Admin)"
200
  msgid "Email to notify"
201
  msgstr "E-Mail für die Benachrichtigung"
202
 
203
+ #: src/Admin/AdminTabGeneral.php:185
204
  msgctxt "(Admin)"
205
  msgid "Delete & Anonymize Data"
206
+ msgstr "Slett & anonymiser data"
207
 
208
+ #: src/Admin/AdminTabGeneral.php:190
209
  msgctxt "(Admin)"
210
  msgid "Delete action"
211
+ msgstr "Slett handling"
212
 
213
+ #: src/Admin/AdminTabGeneral.php:197
214
  msgctxt "(Admin)"
215
  msgid "Delete or reassign content?"
216
+ msgstr "Slett eller tilknydt innhold på nytt?"
217
 
218
+ #: src/Admin/AdminTabGeneral.php:205
219
  msgctxt "(Admin)"
220
  msgid "Reassign content to"
221
+ msgstr "Inhalt zuordnen zu"
222
 
223
+ #: src/Admin/AdminTabGeneral.php:225
224
  msgctxt "(Admin)"
225
  msgid "Styling"
226
+ msgstr "Styling"
227
 
228
+ #: src/Admin/AdminTabGeneral.php:230
229
  msgctxt "(Admin)"
230
  msgid "Enable basic styling on Privacy Tools page"
231
+ msgstr "Grundlegende Gestaltung auf der Seite der Datenschutz Tools aktivieren"
232
 
233
+ #: src/Admin/AdminTabGeneral.php:242
234
  msgctxt "(Admin)"
235
  msgid "Compatibility"
236
  msgstr "Kompatibilität"
237
 
238
+ #: src/Admin/AdminTabGeneral.php:247
239
  msgctxt "(Admin)"
240
  msgid "Enable automatic theme compatibility"
241
+ msgstr "Automatische Themenkompatibilität aktivieren"
242
+
243
+ #: src/Admin/AdminTabGeneral.php:259
244
+ msgctxt "(Admin)"
245
+ msgid "Woocommerce Integration"
246
+ msgstr "Woocommerce Integration"
247
+
248
+ #: src/Admin/AdminTabGeneral.php:264
249
+ msgctxt "(Admin)"
250
+ msgid "Enable WooCommerce Compatibility"
251
+ msgstr "WooCommerce Kompatibilität aktivieren"
252
+
253
+ #: src/Admin/AdminTabGeneral.php:271
254
+ #: views/admin/general/woo-disable_checkbox.php:10
255
+ msgctxt "(Admin)"
256
+ msgid "Disable WooCommerce Privacy Checkbox"
257
+ msgstr "WooCommerce Datenschutz deaktivieren"
258
+
259
+ #: src/Admin/AdminTabGeneral.php:278
260
+ #: views/admin/general/woo-disable_register_checkbox.php:9
261
+ msgctxt "(Admin)"
262
+ msgid "Disable WooCommerce Register Privacy Checkbox"
263
+ msgstr "WooCommerce Registrierung deaktivieren"
264
+
265
+ #: src/Admin/AdminTabGeneral.php:290
266
+ msgctxt "(Admin)"
267
+ msgid "Easy Digital Download Integration"
268
+ msgstr "Einfache Integration von digitalen Downloads"
269
+
270
+ #: src/Admin/AdminTabGeneral.php:295
271
+ msgctxt "(Admin)"
272
+ msgid "Enable EDD Compatibility"
273
+ msgstr "EDD Kompatibilität aktivieren"
274
+
275
+ #: src/Admin/AdminTabGeneral.php:322
276
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:181
277
+ msgctxt "(Admin)"
278
+ msgid "Disable Checkbox For Comments"
279
+ msgstr "Kommentare deaktivieren"
280
 
281
+ #: src/Admin/AdminTabGeneral.php:330
282
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:188
283
+ msgctxt "(Admin)"
284
+ msgid "Disable Checkbox For Register Form"
285
+ msgstr "Registrierungsformular deaktivieren"
286
+
287
+ #: src/Admin/AdminTabGeneral.php:408 src/Admin/AdminTabGeneral.php:424
288
+ #: src/Admin/AdminTabGeneral.php:449 src/Admin/AdminTabGeneral.php:506
289
  #: views/installer/steps/configuration-settings.php:62
290
  msgctxt "(Admin)"
291
  msgid "&mdash; Select &mdash;"
292
  msgstr "&mdash; Auswählen &mdash;"
293
 
294
+ #: src/Admin/WordpressAdmin.php:68
295
  msgctxt "(Admin)"
296
  msgid "Privacy & GDPR Settings"
297
+ msgstr "Personvern- & DSGVO-innstilinger"
298
 
299
+ #: src/Admin/WordpressAdmin.php:69 views/installer/welcome-notice.php:6
300
  msgctxt "(Admin)"
301
+ msgid "Data443 GDPR"
302
+ msgstr "Data443 DSGVO"
303
+
304
+ #: src/Components/AdvancedIntegration/AdminTabAdvancedIntegration.php:17
305
+ #: src/Components/AdvancedIntegration/AdminTabAdvancedIntegration.php:26
306
+ #, fuzzy
307
+ msgctxt "(Admin)"
308
+ msgid "Data Hound"
309
+ msgstr "Datenhund"
310
 
311
  #: src/Components/Consent/AdminTabConsent.php:30
312
+ #: src/Components/Consent/AdminTabConsent.php:50
313
  msgctxt "(Admin)"
314
  msgid "Consent"
315
  msgstr "Zustimmung"
316
 
317
+ #: src/Components/Consent/AdminTabConsent.php:55
318
+ msgctxt "(Admin)"
319
+ msgid "Additional Settings"
320
+ msgstr "Zusätzliche Einstellungen"
321
+
322
+ #: src/Components/Consent/AdminTabConsent.php:60
323
+ msgctxt "(Admin)"
324
+ msgid "Display Consent Calendar"
325
+ msgstr "Zustimmungskalender anzeigen"
326
+
327
+ #: src/Components/Consent/AdminTabConsent.php:172
328
  msgctxt "(Admin)"
329
  msgid "Consent slug is a required field!"
330
+ msgstr "Der Slug der Zustimmung ist ein Pflichtfeld!"
331
 
332
+ #: src/Components/Consent/AdminTabConsent.php:177
333
  msgctxt "(Admin)"
334
  msgid ""
335
  "You may only use alphanumeric characters, dash and underscore in the consent "
336
  "slug field."
337
  msgstr ""
338
+ "Sie dürfen nur alphanumerische Zeichen, Bindestriche und Unterstriche im "
339
+ "Feld für den Zustimmungs-Pfad verwenden."
340
 
341
+ #: src/Components/Consent/AdminTabConsent.php:182
342
  msgctxt "(Admin)"
343
  msgid "Consent title is a required field!"
344
+ msgstr "Der Titel der Zustimmung ist ein Pflichtfeld!"
345
+
346
+ #: src/Components/Consent/AdminTabConsent.php:194
347
+ msgid ""
348
+ "To use this website, you accepted our Privacy Policy. If you wish to "
349
+ "withdraw your acceptance, please use the \"Delete my data\" button below."
350
+ msgstr ""
351
+ "Um diese Website nutzen zu können, musst Du unsere Datenschutzbestimmungen "
352
+ "akzeptieren. Wenn Du Deine Zustimmung widerrufen möchtest, verwende den "
353
+ "Button \"Meine Daten löschen\"."
354
+
355
+ #: src/Components/Consent/AdminTabConsent.php:197
356
+ msgid ""
357
+ "Enable this feature to allow users to submit a time limit on how many months "
358
+ "their consent is given for their coments and registration."
359
+ msgstr ""
360
+ "Aktivieren Sie diese Funktion, damit Benutzer eine Frist einreichen können, "
361
+ "wie viele Monate ihre Zustimmung für ihre Anmeldung und Registrierung "
362
+ "erteilt wurde."
363
 
364
+ #: src/Components/Consent/ConsentManager.php:53
365
+ #: src/Modules/WooCommerceGdpr/WooCommerceGdpr.php:144
 
 
366
  #, php-format
367
  msgid "I accept the %sPrivacy Policy%s"
368
  msgstr "Ich stimme der %sDatenschutzerklärung%s zu"
369
 
370
+ #: src/Components/Consent/ConsentManager.php:57
371
+ #: src/Components/Consent/ConsentManager.php:78
372
  msgctxt "(Admin)"
373
  msgid ""
374
  "This consent is not visible by default. If someone wishes to withdraw it, "
375
  "they should simply request to delete all their data."
376
  msgstr ""
377
+ "Diese Zustimmung ist standardmäßig nicht sichtbar. Wenn jemand diese "
378
+ "widerrufen möchte, sollte er einfach die Löschung seiner Daten beantragen."
 
379
 
380
+ #: src/Components/Consent/ConsentManager.php:74
381
  #, php-format
382
  msgid "I accept the %sTerms & Conditions%s"
383
  msgstr "Ich akzeptiere die %sAllgemeinen Geschäftsbedingungen%s"
384
 
385
+ #: src/Components/Consent/ConsentManager.php:87
386
+ msgctxt "(Admin)"
387
+ msgid "Woocommerce Policy Consent"
388
+ msgstr "Woocommerce Zustimmung zur Richtlinie"
389
+
390
+ #: src/Components/Consent/ConsentManager.php:88
391
+ msgctxt "(Admin)"
392
+ msgid ""
393
+ "This consent is visible by default on woocommerce checkout page. If someone "
394
+ "wishes to withdraw it, they should simply request to delete all their data."
395
+ msgstr ""
396
+ "Diese Zustimmung ist standardmäßig auf der Woocommerce Checkout Seite "
397
+ "sichtbar. Wenn jemand diese widerrufen möchte, sollte er einfach die "
398
+ "Löschung seiner Daten beantragen."
399
+
400
+ #: src/Components/Consent/ConsentManager.php:389
401
+ msgid "Consent Information"
402
+ msgstr "Zustimmungsinformationen"
403
+
404
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:17
405
+ msgctxt "(Admin)"
406
+ msgid "Cookie Popup"
407
+ msgstr "Cookie Popup"
408
+
409
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:44
410
+ msgctxt "(Admin)"
411
+ msgid "Cookie Popup Settings"
412
+ msgstr "Cookie Popup Einstellungen"
413
+
414
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:48
415
+ #: views/admin/general/enable-popup.php:9
416
+ msgctxt "(Admin)"
417
+ msgid "Enable Cookie Acceptance Popup"
418
+ msgstr "Cookie Popup \"Akzeptieren\" aktivieren"
419
+
420
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:54
421
+ #: views/admin/general/enable-onetime-popup.php:9
422
+ msgctxt "(Admin)"
423
+ msgid "Enable One Time Cookie Acceptance Popup"
424
+ msgstr "Einmalig das Cookie Popup \"Akzeptieren\" aktivieren"
425
+
426
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:60
427
+ msgctxt "(Admin)"
428
+ msgid "Enable Privacy policy on Popup"
429
+ msgstr "Datenschutzrichtlinie für das Popup aktivieren"
430
+
431
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:66
432
+ msgctxt "(Admin)"
433
+ msgid "Cookie Acceptance Popup header"
434
+ msgstr "Cookie Popup \"Akzeptieren\" Header"
435
+
436
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:72
437
+ msgctxt "(Admin)"
438
+ msgid "Cookie Acceptance Popup Content"
439
+ msgstr "Cookie Popup \"Akzeptieren\" Inhalt"
440
+
441
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:81
442
+ msgctxt "(Admin)"
443
+ msgid "Acceptance Popup Setting"
444
+ msgstr "Cookie Popup \"Akzeptieren\" Einstellungen"
445
+
446
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:86
447
+ msgctxt "(Admin)"
448
+ msgid "Popup Position"
449
+ msgstr "Popup Position"
450
+
451
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:93
452
+ msgctxt "(Admin)"
453
+ msgid "Popup theme"
454
+ msgstr "Popup Theme"
455
+
456
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:100
457
+ msgctxt "(Admin)"
458
+ msgid "Popup Allow Text"
459
+ msgstr "Popup \"Zustimmen\" Text"
460
+
461
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:107
462
+ msgctxt "(Admin)"
463
+ msgid "Popup Dismiss Text"
464
+ msgstr "Popup \"Ablehnen\" Text"
465
+
466
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:114
467
+ msgctxt "(Admin)"
468
+ msgid "Popup Learn More Text"
469
+ msgstr "Popup \"Weitere Informationen\" Text"
470
+
471
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:121
472
+ msgctxt "(Admin)"
473
+ msgid "Cookie Acceptance link target"
474
+ msgstr "Cookie \"Akzeptieren\" Link Ziel"
475
+
476
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:128
477
+ msgctxt "(Admin)"
478
+ msgid "Cookie Acceptance Background Color"
479
+ msgstr "Cookie \"Akzeptieren\" Hintergrundfarbe"
480
+
481
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:135
482
+ msgctxt "(Admin)"
483
+ msgid "Cookie Acceptance Text Color"
484
+ msgstr "Cookie \"Akzeptieren\" Textfarbe"
485
+
486
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:142
487
+ msgctxt "(Admin)"
488
+ msgid "Cookie Acceptance Button Backgroung Color"
489
+ msgstr "Cookie \"Akzeptieren\" Button Hintergrundfarbe"
490
+
491
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:149
492
+ msgctxt "(Admin)"
493
+ msgid "Cookie Acceptance Button Color"
494
+ msgstr "Cookie \"Akzeptieren\" Button Textfarbe"
495
+
496
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:156
497
+ msgctxt "(Admin)"
498
+ msgid "Cookie Acceptance Border Color"
499
+ msgstr "Cookie \"Akzeptieren\" Button Randfarbe"
500
+
501
+ #: src/Components/DoNotSell/AdminTabDoNotSell.php:17
502
+ #: src/Components/DoNotSell/AdminTabDoNotSell.php:28
503
+ msgctxt "(Admin)"
504
+ msgid "Do Not Sell My Data"
505
+ msgstr "Meine Daten nicht verkaufen"
506
+
507
+ #: src/Components/DoNotSell/AdminTabDoNotSell.php:34
508
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:62
509
+ msgctxt "(Admin)"
510
+ msgid "Shortcode"
511
+ msgstr "Shortcode"
512
+
513
+ #: src/Components/DoNotSell/AdminTabDoNotSell.php:40
514
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:68
515
+ #, fuzzy
516
+ msgctxt "(Admin)"
517
+ msgid "Shortcode for PHP"
518
+ msgstr "Shortcode für PHP"
519
+
520
+ #: src/Components/DoNotSell/AdminTabDoNotSell.php:46
521
+ #, fuzzy
522
+ msgctxt "(Admin)"
523
+ msgid "View Requests"
524
+ msgstr "Anfragen anzeigen"
525
+
526
+ #: src/Components/PrivacyManager/AdminTabPrivacyManager.php:17
527
+ msgctxt "(Admin)"
528
+ msgid "Global Privacy Manager"
529
+ msgstr "Globaler Datenschutzmanager"
530
+
531
+ #: src/Components/PrivacyManager/AdminTabPrivacyManager.php:29
532
+ msgctxt "(Admin)"
533
+ msgid "Privacy Manager"
534
+ msgstr "Datenschutzmanager"
535
+
536
  #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:19
537
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:62
538
  #: views/admin/privacy-policy/generated.php:1 views/installer/header.php:41
539
  msgctxt "(Admin)"
540
  msgid "Privacy Policy"
541
  msgstr "Datenschutzerklärung"
542
 
543
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:71
544
  msgctxt "(Admin)"
545
  msgid "Company information"
546
+ msgstr "Impressum"
547
 
548
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:76
549
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:223
550
  msgctxt "(Admin)"
551
  msgid "Company Name"
552
+ msgstr "Firmenname"
553
 
554
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:84
555
  msgctxt "(Admin)"
556
  msgid "Company Email"
557
+ msgstr "Firmen Email"
558
 
559
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:91
560
  msgctxt "(Admin)"
561
  msgid "Company Location"
562
+ msgstr "Firmenstandort"
563
 
564
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:107
565
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:259
566
  msgctxt "(Admin)"
567
  msgid "Representative Contact Name"
568
+ msgstr "Representativ kontaktnavn"
569
 
570
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:114
571
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:266
572
  msgctxt "(Admin)"
573
  msgid "Representative Contact Email"
574
+ msgstr "Ansprechpartner E-Mail-Adresse"
575
 
576
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:121
577
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:273
578
  msgctxt "(Admin)"
579
  msgid "Representative Contact Phone"
580
+ msgstr "Ansprechpartner Telefonnummer"
581
 
582
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:137
583
  msgctxt "(Admin)"
584
  msgid "Data Protection Authority"
585
  msgstr "Datenschutzbehörde"
586
 
587
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:143
588
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:302
589
  msgctxt "(Admin)"
590
  msgid "Data Protection Authority Website"
591
+ msgstr "Datenschutzbehörde Website"
592
 
593
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:150
594
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:309
595
  msgctxt "(Admin)"
596
  msgid "Data Protection Authority Email"
597
+ msgstr "Datenschutzbehörde E-Mail-Adresse"
598
 
599
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:157
600
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:316
601
  msgctxt "(Admin)"
602
  msgid "Data Protection Authority Phone"
603
+ msgstr "Datenschutzbehörde Telefonnummer"
604
 
605
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:167
606
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:177
607
  msgctxt "(Admin)"
608
  msgid "Data Protection Officer"
609
  msgstr "Datenschutzbeauftragter"
610
 
611
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:170
612
  msgctxt "(Admin)"
613
  msgid "Knowledge base: Do I need to appoint a Data Protection Officer?"
614
+ msgstr "Wissensdatenbank: Muss ich einen Datenschutzbeauftragten benennen?"
615
 
616
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:184
617
  msgctxt "(Admin)"
618
  msgid "Data Protection Officer Name"
619
+ msgstr "Name des Datenschutz&shy;beauftragten"
620
 
621
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:192
622
  msgctxt "(Admin)"
623
  msgid "Data Protection Officer Email"
624
+ msgstr "Datenschutzbeauftragter E-Mail-Adresse"
625
+
626
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:204
627
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:347
628
+ #, fuzzy
629
+ #| msgctxt "(Admin)"
630
+ #| msgid "Delete Text"
631
+ msgctxt "(Admin)"
632
+ msgid "Delete Text"
633
+ msgstr "Text löschen"
634
 
635
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:230
636
  msgctxt "(Admin)"
637
  msgid "Contact Email"
638
+ msgstr "Kontakt E-Mail"
639
 
640
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:249
641
  msgctxt "(Admin)"
642
  msgid "Representative Contact"
643
+ msgstr "Representativ Kontakt"
644
 
645
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:252
646
  msgctxt "(Admin)"
647
  msgid "Knowledge base: Do I need to appoint an EU-based representative?"
648
  msgstr ""
649
+ "Wissensdatenbank: Muss ich einen Vertreter mit Sitz in der EU benennen?"
 
650
 
651
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:289
652
+ #, php-format
653
+ msgctxt "(Admin)"
654
+ msgid "See the %slist of contacts here%s."
655
+ msgstr "Sehen Sie die %sliste der Kontakte hier %s."
656
+
657
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:333
658
  msgctxt "(Admin)"
659
  msgid "DPO Name"
660
+ msgstr "Name Datenschutzbeauftragter"
661
+
662
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:340
663
+ msgctxt "(Admin)"
664
+ msgid "DPO Email"
665
+ msgstr "Email Datenschutzbeauftragter"
666
 
667
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:422
668
  msgctxt "(Admin)"
669
  msgid "Save & Generate Policy"
670
+ msgstr "Arkiver og generer retningslinjer"
671
 
672
+ #: src/Components/PrivacyPolicy/PrivacyPolicy.php:81
673
+ #: src/Installer/Installer.php:309 src/Installer/Steps/PolicySettings.php:210
674
  #: views/themes/storefront/footer.php:3
675
  #: views/themes/twentyseventeen/footer.php:3
676
  #: views/themes/twentysixteen/footer.php:4
677
  msgid "Privacy Policy"
678
  msgstr "Datenschutzerklärung"
679
 
680
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:17
681
+ msgctxt "(Admin)"
682
+ msgid "Privacy Safe"
683
+ msgstr "Schutz der Privatsphäre"
684
+
685
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:33
686
+ msgctxt "(Admin)"
687
+ msgid "Privacy Safe by Data443"
688
+ msgstr "Schutz der Privatsphäre durch Data443"
689
+
690
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:38
691
+ msgctxt "(Admin)"
692
+ msgid "Register for Privacy Safe"
693
+ msgstr "Für den Schutz der Privatsphäre registrieren"
694
+
695
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:44
696
+ msgctxt "(Admin)"
697
+ msgid "Privacy Safe Settings"
698
+ msgstr "Schutz der Privatsphäre Einstellungen"
699
+
700
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:50
701
+ msgctxt "(Admin)"
702
+ msgid "Seal Code"
703
+ msgstr "Siegelcode"
704
+
705
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:56
706
+ msgctxt "(Admin)"
707
+ msgid "Image Code"
708
+ msgstr "Bildcode"
709
+
710
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:74
711
+ msgctxt "(Admin)"
712
+ msgid "Support Data443"
713
+ msgstr "Support Data443"
714
+
715
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:83
716
+ #, fuzzy
717
+ msgctxt "(Admin)"
718
+ msgid ""
719
+ "Strengthen your reputation. The privacy safe seal assures your customers "
720
+ "that your business is in compliance with privacy laws and regulations. The "
721
+ "privacy safe seal will verify that the GDPR Framework plugin is installed."
722
+ msgstr ""
723
+ "Stärken Sie Ihren Ruf. Das Privacy Safe-Siegel versichert Ihren Kunden, dass "
724
+ "Ihr Unternehmen die Datenschutzgesetze und -vorschriften einhält. Das "
725
+ "Privacy Safe-Siegel überprüft, ob das DSGVO Framework-Plugin installiert ist."
726
+
727
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:86
728
+ #, fuzzy
729
+ msgctxt "(Admin)"
730
+ msgid ""
731
+ "Register now to activate your Privacy Safe seal. Visit the link below, "
732
+ "complete the complete the checkout process. Once approved you will recieve "
733
+ "notice to get your seal code and image code. Enter those here and save. You "
734
+ "can then place the seal where you would like on your site."
735
+ msgstr ""
736
+ "Registrieren Sie sich jetzt, um Ihr Privacy Safe-Siegel zu aktivieren. "
737
+ "Besuchen Sie den untenstehenden Link, schließen Sie den Checkout-Vorgang ab. "
738
+ "Nach der Genehmigung erhalten Sie eine Benachrichtigung, um Ihren Siegelcode "
739
+ "und Bildcode zu erhalten. Geben Sie diese hier ein und speichern Sie. Sie "
740
+ "können dann das Siegel an der gewünschten Stelle auf Ihrer Website "
741
+ "platzieren."
742
+
743
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:86
744
+ msgctxt "(Admin)"
745
+ msgid "Register Here"
746
+ msgstr "Registrieren Sie sich hier"
747
+
748
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:89
749
+ #, fuzzy
750
+ msgctxt "(Admin)"
751
+ msgid "Embed the shortcode provided to display your privacy safe seal."
752
+ msgstr ""
753
+ "Betten Sie den bereitgestellten Shortcode ein, um Ihr Datenschutzsiegel "
754
+ "anzuzeigen."
755
+
756
+ #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:22
757
+ #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:55
758
  msgid "This page is currently disabled."
759
  msgstr "Diese Seite ist derzeit deaktiviert."
760
 
761
+ #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:26
762
+ #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:59
763
+ msgid "Please configure the Privacy Tools page in the admin interface."
764
+ msgstr "Konfiguriere die Seite für die Datenschutzerklärung."
765
+
766
+ #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:42
767
+ #: src/Installer/Installer.php:318
768
+ #: src/Installer/Steps/ConfigurationPages.php:65
769
  #: views/themes/storefront/footer.php:7
770
  #: views/themes/twentyseventeen/footer.php:7
771
  #: views/themes/twentysixteen/footer.php:9
778
  msgid "Support"
779
  msgstr "Support"
780
 
 
 
 
 
 
 
 
781
  #: src/Components/WordpressUser/Controllers/DashboardDataPageController.php:54
782
  #: views/privacy-tools/notices.php:19
783
  msgid "We have received your request and will reply within 30 days."
790
  msgid "Consent withdrawn."
791
  msgstr "Zustimmung zurückgezogen."
792
 
793
+ #: src/Components/WordpressUser/RegistrationForm.php:56
794
  msgid "<strong>ERROR</strong>: You must accept the terms and conditions."
795
  msgstr ""
796
  "<strong>FEHLER</strong>: Du musst die Allgemeinen Geschäftsbedingungen "
805
 
806
  #: src/DataSubject/AdminTabDataSubject.php:27
807
  #: src/DataSubject/AdminTabDataSubject.php:41
808
+ #, fuzzy
809
+ #| msgctxt "(Admin)"
810
+ #| msgid "Data Subjects"
811
  msgctxt "(Admin)"
812
  msgid "Data Subjects"
813
+ msgstr ""
814
+ "Auf dieser Seite können Sie nachlesen, welche personenbezogenen Daten Sie "
815
+ "von betroffenen Personen speichern und diese herunterladen, exportieren oder "
816
+ "löschen."
817
 
818
  #: src/DataSubject/DataRepository.php:143
819
  msgid "Data exported"
831
  msgid "Data removal request"
832
  msgstr "Anfrage einer Datenlöschung"
833
 
834
+ #: src/DataSubject/DataSubjectIdentificator.php:78
835
+ #: src/DataSubject/DataSubjectIdentificator.php:96
836
  msgid "Your personal data on"
837
  msgstr "Deine personenbezogenen Daten auf"
838
 
864
  #: src/Helpers.php:32
865
  msgctxt "(Admin)"
866
  msgid "Czech Republic"
867
+ msgstr "Tschechien"
868
 
869
  #: src/Helpers.php:33
870
  msgctxt "(Admin)"
976
  msgid "United Kingdom"
977
  msgstr "Großbritannien"
978
 
979
+ #: src/Helpers.php:56
980
+ #, fuzzy
981
  msgctxt "(Admin)"
982
+ msgid "Afghanistan "
983
+ msgstr "Afghanistan "
984
 
985
+ #: src/Helpers.php:57
986
  msgctxt "(Admin)"
987
+ msgid "Åland Islands"
988
+ msgstr "Åland Inseln"
989
 
990
+ #: src/Helpers.php:58
991
  msgctxt "(Admin)"
992
+ msgid "Albania"
993
+ msgstr "Albanien"
994
 
995
+ #: src/Helpers.php:59
996
  msgctxt "(Admin)"
997
+ msgid "Algeria"
998
+ msgstr "Algerien"
999
 
1000
+ #: src/Helpers.php:60
1001
+ #, fuzzy
1002
  msgctxt "(Admin)"
1003
+ msgid "American Samoa "
1004
+ msgstr "Amerikanisch-Samoa "
1005
 
1006
+ #: src/Helpers.php:61
1007
  msgctxt "(Admin)"
1008
+ msgid "Andorra"
1009
+ msgstr "Andorra"
1010
 
1011
+ #: src/Helpers.php:62
1012
+ msgctxt "(Admin)"
1013
+ msgid "Angola"
1014
+ msgstr "Angola"
1015
 
1016
+ #: src/Helpers.php:63
1017
  msgctxt "(Admin)"
1018
+ msgid "Anguilla"
1019
+ msgstr "Anguilla"
1020
 
1021
+ #: src/Helpers.php:64
 
 
1022
  msgctxt "(Admin)"
1023
+ msgid "Antarctica"
1024
+ msgstr "Antarktis"
1025
 
1026
+ #: src/Helpers.php:65
1027
  msgctxt "(Admin)"
1028
+ msgid "Antigua and Barbuda"
1029
+ msgstr "Antigua und Barbuda"
 
 
 
1030
 
1031
+ #: src/Helpers.php:66
1032
  msgctxt "(Admin)"
1033
+ msgid "Argentina"
1034
+ msgstr "Argentinien"
1035
 
1036
+ #: src/Helpers.php:67
1037
+ msgctxt "(Admin)"
1038
+ msgid "Armenia"
1039
+ msgstr "Armenien"
 
 
1040
 
1041
+ #: src/Helpers.php:68
1042
  msgctxt "(Admin)"
1043
+ msgid "Aruba"
1044
+ msgstr "Aruba"
 
 
1045
 
1046
+ #: src/Helpers.php:69
1047
  msgctxt "(Admin)"
1048
+ msgid "Australia"
1049
+ msgstr "Australien"
1050
 
1051
+ #: src/Helpers.php:70
1052
  msgctxt "(Admin)"
1053
+ msgid "Azerbaijan"
1054
+ msgstr "Aserbaidschan"
 
 
 
 
1055
 
1056
+ #: src/Helpers.php:71
1057
  msgctxt "(Admin)"
1058
+ msgid "Bahrain"
1059
+ msgstr "Bahrain"
1060
 
1061
+ #: src/Helpers.php:72
 
1062
  msgctxt "(Admin)"
1063
+ msgid "Bahamas"
1064
+ msgstr "Bahamas"
1065
 
1066
+ #: src/Helpers.php:73
 
1067
  msgctxt "(Admin)"
1068
+ msgid "Bangladesh"
1069
+ msgstr "Bangladesch"
1070
 
1071
+ #: src/Helpers.php:74
1072
  msgctxt "(Admin)"
1073
+ msgid "Barbados"
1074
+ msgstr "Barbados"
1075
 
1076
+ #: src/Helpers.php:75
1077
  msgctxt "(Admin)"
1078
+ msgid "Belarus"
1079
+ msgstr "Weißrussland"
1080
 
1081
+ #: src/Helpers.php:76
1082
  msgctxt "(Admin)"
1083
+ msgid "Belize"
1084
+ msgstr "Belize"
1085
 
1086
+ #: src/Helpers.php:77
1087
  msgctxt "(Admin)"
1088
+ msgid "Benin"
1089
+ msgstr "Benin"
1090
 
1091
+ #: src/Helpers.php:78
1092
  msgctxt "(Admin)"
1093
+ msgid "Bermuda"
1094
+ msgstr "Bermuda"
 
 
 
 
 
1095
 
1096
+ #: src/Helpers.php:79
1097
  msgctxt "(Admin)"
1098
+ msgid "Bhutan"
1099
+ msgstr "Bhutan"
1100
 
1101
+ #: src/Helpers.php:80
1102
  msgctxt "(Admin)"
1103
+ msgid "Bolivia, Plurinational State of"
1104
+ msgstr "Bolivien"
1105
 
1106
+ #: src/Helpers.php:81
1107
  msgctxt "(Admin)"
1108
+ msgid "Bonaire, Sint Eustatius and Saba"
1109
+ msgstr "Bonaire, St Eustatius und Saba"
1110
 
1111
+ #: src/Helpers.php:82
1112
  msgctxt "(Admin)"
1113
+ msgid "Bosnia and Herzegovina"
1114
+ msgstr "Bosnien und Herzegowina"
1115
 
1116
+ #: src/Helpers.php:83
1117
  msgctxt "(Admin)"
1118
+ msgid "Botswana"
1119
+ msgstr "Botswana"
 
 
 
1120
 
1121
+ #: src/Helpers.php:84
1122
  msgctxt "(Admin)"
1123
+ msgid "Bouvet Island"
1124
+ msgstr "Bouvet Island"
 
 
 
 
 
1125
 
1126
+ #: src/Helpers.php:85
1127
  msgctxt "(Admin)"
1128
+ msgid "Brazil"
1129
+ msgstr "Brasilien"
1130
 
1131
+ #: src/Helpers.php:86
1132
  msgctxt "(Admin)"
1133
+ msgid "British Indian Ocean Territory"
1134
+ msgstr "Britisches Territorium im Indischen Ozean"
1135
 
1136
+ #: src/Helpers.php:87
1137
  msgctxt "(Admin)"
1138
+ msgid "Brunei Darussalam"
1139
+ msgstr "Brunei Darussalam"
1140
 
1141
+ #: src/Helpers.php:88
1142
  msgctxt "(Admin)"
1143
+ msgid "Burkina Faso"
1144
+ msgstr "Burkina Faso"
1145
 
1146
+ #: src/Helpers.php:89
1147
  msgctxt "(Admin)"
1148
+ msgid "Burundi"
1149
+ msgstr "Burundi"
1150
 
1151
+ #: src/Helpers.php:90
1152
  msgctxt "(Admin)"
1153
+ msgid "Cambodia"
1154
+ msgstr "Kambodscha"
1155
 
1156
+ #: src/Helpers.php:91
1157
  msgctxt "(Admin)"
1158
+ msgid "Cameroon"
1159
+ msgstr "Kamerun"
1160
 
1161
+ #: src/Helpers.php:92
1162
  msgctxt "(Admin)"
1163
+ msgid "Canada"
1164
+ msgstr "Kanada"
 
 
 
 
1165
 
1166
+ #: src/Helpers.php:93
1167
  msgctxt "(Admin)"
1168
+ msgid "Cape Verde"
1169
+ msgstr "Kap Verde"
1170
 
1171
+ #: src/Helpers.php:94
1172
  msgctxt "(Admin)"
1173
+ msgid "Cayman Islands"
1174
+ msgstr "Kaimaninseln"
1175
 
1176
+ #: src/Helpers.php:95
1177
  msgctxt "(Admin)"
1178
+ msgid "Central African Republic"
1179
+ msgstr "Zentralafrikanische Republik"
1180
 
1181
+ #: src/Helpers.php:96
1182
+ msgctxt "(Admin)"
1183
+ msgid "Chad"
1184
+ msgstr "Tschad"
 
 
1185
 
1186
+ #: src/Helpers.php:97
 
1187
  msgctxt "(Admin)"
1188
+ msgid "Chile"
1189
+ msgstr "Chile"
1190
 
1191
+ #: src/Helpers.php:98
 
1192
  msgctxt "(Admin)"
1193
+ msgid "China"
1194
+ msgstr "China"
1195
 
1196
+ #: src/Helpers.php:99
1197
  msgctxt "(Admin)"
1198
+ msgid "Christmas Island"
1199
+ msgstr "Weihnachtsinsel"
 
 
 
 
1200
 
1201
+ #: src/Helpers.php:100
1202
  msgctxt "(Admin)"
1203
+ msgid "Cocos (Keeling) Islands"
1204
+ msgstr "Kokosinseln"
 
 
 
 
1205
 
1206
+ #: src/Helpers.php:101
1207
  msgctxt "(Admin)"
1208
+ msgid "Colombia"
1209
+ msgstr "Kolumbien"
 
 
1210
 
1211
+ #: src/Helpers.php:102
1212
  msgctxt "(Admin)"
1213
+ msgid "Comoros"
1214
+ msgstr "Komoren"
 
 
 
 
 
 
1215
 
1216
+ #: src/Helpers.php:103
 
1217
  msgctxt "(Admin)"
1218
+ msgid "Congo"
1219
+ msgstr "Kongo"
 
 
 
1220
 
1221
+ #: src/Helpers.php:104
 
1222
  msgctxt "(Admin)"
1223
+ msgid "Congo, the Democratic Republic of the"
1224
+ msgstr "Demokratische Republik Kongo"
1225
 
1226
+ #: src/Helpers.php:105
1227
  msgctxt "(Admin)"
1228
+ msgid "Cook Islands"
1229
+ msgstr "Cookinseln"
 
 
 
 
 
1230
 
1231
+ #: src/Helpers.php:106
1232
  msgctxt "(Admin)"
1233
+ msgid "Costa Rica"
1234
+ msgstr "Costa Rica"
 
 
 
 
 
1235
 
1236
+ #: src/Helpers.php:107
1237
+ #, fuzzy
1238
  msgctxt "(Admin)"
1239
+ msgid "Côte dIvoire"
1240
+ msgstr "Côte dIvoire"
 
 
1241
 
1242
+ #: src/Helpers.php:108
1243
  msgctxt "(Admin)"
1244
+ msgid "Cuba"
1245
+ msgstr "Cuba"
1246
 
1247
+ #: src/Helpers.php:109
1248
  msgctxt "(Admin)"
1249
+ msgid "Curaçao"
1250
+ msgstr "Curaçao"
1251
 
1252
+ #: src/Helpers.php:110
1253
  msgctxt "(Admin)"
1254
+ msgid "Djibouti"
1255
+ msgstr "Dschibuti"
1256
 
1257
+ #: src/Helpers.php:111
1258
  msgctxt "(Admin)"
1259
+ msgid "Dominica"
1260
+ msgstr "Dominica"
 
 
 
 
1261
 
1262
+ #: src/Helpers.php:112
 
1263
  msgctxt "(Admin)"
1264
+ msgid "Dominican Republic"
1265
+ msgstr "Dominikanische Republik"
1266
 
1267
+ #: src/Helpers.php:113
1268
  msgctxt "(Admin)"
1269
+ msgid "Ecuador"
1270
+ msgstr "Ecuador"
1271
 
1272
+ #: src/Helpers.php:114
1273
  msgctxt "(Admin)"
1274
+ msgid "Egypt"
1275
+ msgstr "Ägypten"
1276
 
1277
+ #: src/Helpers.php:115
1278
  msgctxt "(Admin)"
1279
+ msgid "El Salvador"
1280
+ msgstr "El Salvador"
1281
 
1282
+ #: src/Helpers.php:116
1283
  msgctxt "(Admin)"
1284
+ msgid "Equatorial Guinea"
1285
+ msgstr "Äquatorialguinea"
1286
 
1287
+ #: src/Helpers.php:117
1288
  msgctxt "(Admin)"
1289
+ msgid "Eritrea"
1290
+ msgstr "Eritrea"
 
1291
 
1292
+ #: src/Helpers.php:118
1293
  msgctxt "(Admin)"
1294
+ msgid "Ethiopia"
1295
+ msgstr "Äthiopien"
1296
 
1297
+ #: src/Helpers.php:119
1298
  msgctxt "(Admin)"
1299
+ msgid "Falkland Islands (Malvinas)"
1300
+ msgstr "Falklandinseln (Malvinas)"
 
 
1301
 
1302
+ #: src/Helpers.php:120
1303
  msgctxt "(Admin)"
1304
+ msgid "Faroe Islands"
1305
+ msgstr "Färöer Inseln"
1306
 
1307
+ #: src/Helpers.php:121
1308
  msgctxt "(Admin)"
1309
+ msgid "Fiji"
1310
+ msgstr "Fidschi"
1311
 
1312
+ #: src/Helpers.php:122
1313
  msgctxt "(Admin)"
1314
+ msgid "French Guiana"
1315
+ msgstr "Französisch-Guayana"
 
 
 
 
1316
 
1317
+ #: src/Helpers.php:123
1318
  msgctxt "(Admin)"
1319
+ msgid "French Polynesia"
1320
+ msgstr "Französisch-Polynesien"
1321
 
1322
+ #: src/Helpers.php:124
1323
  msgctxt "(Admin)"
1324
+ msgid "French Southern Territories"
1325
+ msgstr "Französische Süd- und Antarktisgebiete"
 
 
 
 
1326
 
1327
+ #: src/Helpers.php:125
1328
  msgctxt "(Admin)"
1329
+ msgid "Gabon"
1330
+ msgstr "Gabun"
1331
 
1332
+ #: src/Helpers.php:126
1333
  msgctxt "(Admin)"
1334
+ msgid "Gambia"
1335
+ msgstr "Gambia"
 
 
1336
 
1337
+ #: src/Helpers.php:127
1338
  msgctxt "(Admin)"
1339
+ msgid "Georgia"
1340
+ msgstr "Georgien"
1341
 
1342
+ #: src/Helpers.php:128
1343
+ #, fuzzy
1344
+ msgctxt "(Admin)"
1345
+ msgid "Georgia "
1346
+ msgstr "Georgien"
1347
 
1348
+ #: src/Helpers.php:129
1349
+ msgctxt "(Admin)"
1350
+ msgid "Ghana"
1351
+ msgstr "Ghana"
 
1352
 
1353
+ #: src/Helpers.php:130
1354
+ msgctxt "(Admin)"
1355
+ msgid "Gibraltar"
1356
+ msgstr "Gibraltar"
1357
 
1358
+ #: src/Helpers.php:131
1359
+ msgctxt "(Admin)"
1360
+ msgid "Greenland"
1361
+ msgstr "Grönland"
1362
 
1363
+ #: src/Helpers.php:132
1364
+ #, fuzzy
1365
+ msgctxt "(Admin)"
1366
+ msgid "Grenada "
1367
+ msgstr "Grenada "
1368
 
1369
+ #: src/Helpers.php:133
1370
+ #, fuzzy
1371
+ msgctxt "(Admin)"
1372
+ msgid "Guadeloupe "
1373
+ msgstr "Guadeloupe "
1374
 
1375
+ #: src/Helpers.php:134
1376
+ msgctxt "(Admin)"
1377
+ msgid "Guam"
1378
+ msgstr "Guam"
 
 
 
1379
 
1380
+ #: src/Helpers.php:135
1381
  msgctxt "(Admin)"
1382
+ msgid "Guatemala"
1383
+ msgstr "Guatemala"
1384
 
1385
+ #: src/Helpers.php:136
1386
  msgctxt "(Admin)"
1387
+ msgid "Guernsey"
1388
+ msgstr "Guernsey"
1389
 
1390
+ #: src/Helpers.php:137
1391
+ #, fuzzy
1392
  msgctxt "(Admin)"
1393
+ msgid "Guinea "
1394
+ msgstr "Guinea "
1395
 
1396
+ #: src/Helpers.php:138
1397
+ #, fuzzy
1398
  msgctxt "(Admin)"
1399
+ msgid "Guinea-Bissau "
1400
+ msgstr "Guinea-Bissau "
1401
 
1402
+ #: src/Helpers.php:139
1403
+ #, fuzzy
1404
  msgctxt "(Admin)"
1405
+ msgid "Guyana "
1406
+ msgstr "Guyana "
1407
 
1408
+ #: src/Helpers.php:140
1409
+ #, fuzzy
1410
  msgctxt "(Admin)"
1411
+ msgid "Haiti "
1412
+ msgstr "Haiti "
1413
 
1414
+ #: src/Helpers.php:141
1415
  msgctxt "(Admin)"
1416
+ msgid "Heard Island and McDonald Islands "
1417
+ msgstr "Heard Insel und McDonald Inseln "
1418
 
1419
+ #: src/Helpers.php:142
1420
+ #, fuzzy
1421
  msgctxt "(Admin)"
1422
+ msgid "Holy See (Vatican City State) "
1423
+ msgstr "Heiliger Stuhl (Vatikanstadt) "
1424
 
1425
+ #: src/Helpers.php:143
1426
+ #, fuzzy
1427
  msgctxt "(Admin)"
1428
+ msgid "Honduras "
1429
+ msgstr "Honduras "
1430
 
1431
+ #: src/Helpers.php:144
1432
+ #, fuzzy
1433
  msgctxt "(Admin)"
1434
+ msgid "Hong Kong "
1435
+ msgstr "Hongkong "
1436
 
1437
+ #: src/Helpers.php:145
1438
+ #, fuzzy
1439
  msgctxt "(Admin)"
1440
+ msgid "India "
1441
+ msgstr "Indien "
1442
 
1443
+ #: src/Helpers.php:146
1444
+ #, fuzzy
1445
  msgctxt "(Admin)"
1446
+ msgid "Indonesia "
1447
+ msgstr "Indonesien "
1448
 
1449
+ #: src/Helpers.php:147
1450
+ #, fuzzy
1451
+ msgctxt "(Admin)"
1452
+ msgid "Iran, Islamic Republic of "
1453
+ msgstr "Iran, Islamische Republik "
1454
 
1455
+ #: src/Helpers.php:148
1456
+ #, fuzzy
1457
  msgctxt "(Admin)"
1458
+ msgid "Iraq "
1459
+ msgstr "Irak "
1460
 
1461
+ #: src/Helpers.php:149
1462
+ #, fuzzy
1463
  msgctxt "(Admin)"
1464
+ msgid "Isle of Man "
1465
+ msgstr "Insel Man "
1466
 
1467
+ #: src/Helpers.php:150
1468
+ #, fuzzy
1469
  msgctxt "(Admin)"
1470
+ msgid "Israel "
1471
+ msgstr "Israel "
1472
 
1473
+ #: src/Helpers.php:151
1474
+ #, fuzzy
1475
  msgctxt "(Admin)"
1476
+ msgid "Jamaica "
1477
+ msgstr "Jamaika "
1478
 
1479
+ #: src/Helpers.php:152
1480
+ #, fuzzy
1481
  msgctxt "(Admin)"
1482
+ msgid "Japan "
1483
+ msgstr "Japan "
1484
 
1485
+ #: src/Helpers.php:153
1486
+ #, fuzzy
1487
  msgctxt "(Admin)"
1488
+ msgid "Jersey "
1489
+ msgstr "Jersey "
1490
 
1491
+ #: src/Helpers.php:154
1492
+ #, fuzzy
1493
  msgctxt "(Admin)"
1494
+ msgid "Jordan "
1495
+ msgstr "Jordanien "
1496
 
1497
+ #: src/Helpers.php:155
1498
+ #, fuzzy
1499
  msgctxt "(Admin)"
1500
+ msgid "Kazakhstan "
1501
+ msgstr "Kasachstan "
1502
 
1503
+ #: src/Helpers.php:156
1504
+ #, fuzzy
1505
  msgctxt "(Admin)"
1506
+ msgid "Kenya "
1507
+ msgstr "Kenia "
1508
 
1509
+ #: src/Helpers.php:157
1510
+ #, fuzzy
1511
  msgctxt "(Admin)"
1512
+ msgid "Kiribati "
1513
+ msgstr "Kiribati "
1514
 
1515
+ #: src/Helpers.php:158
1516
+ #, fuzzy
1517
  msgctxt "(Admin)"
1518
+ msgid "Korea, Democratic Peoples Republic of "
1519
+ msgstr "Korea, Demokratische Volksrepublik "
 
 
 
 
1520
 
1521
+ #: src/Helpers.php:159
1522
+ #, fuzzy
1523
+ msgctxt "(Admin)"
1524
+ msgid "Korea, Republic of "
1525
+ msgstr "Korea, Republik "
1526
 
1527
+ #: src/Helpers.php:160
1528
+ #, fuzzy
1529
+ msgctxt "(Admin)"
1530
+ msgid "Kuwait "
1531
+ msgstr "Kuwait "
 
 
1532
 
1533
+ #: src/Helpers.php:161
1534
+ #, fuzzy
1535
+ msgctxt "(Admin)"
1536
+ msgid "Kyrgyzstan "
1537
+ msgstr "Kirgistan "
1538
 
1539
+ #: src/Helpers.php:162
1540
+ msgctxt "(Admin)"
1541
+ msgid "Lao Peoples Democratic Republic "
1542
+ msgstr "Volksrepublik Laos"
1543
 
1544
+ #: src/Helpers.php:163
1545
+ #, fuzzy
1546
+ msgctxt "(Admin)"
1547
+ msgid "Lebanon "
1548
+ msgstr "Libanon "
1549
 
1550
+ #: src/Helpers.php:164
1551
+ #, fuzzy
1552
+ msgctxt "(Admin)"
1553
+ msgid "Lesotho "
1554
+ msgstr "Lesotho "
1555
 
1556
+ #: src/Helpers.php:165
1557
+ #, fuzzy
1558
  msgctxt "(Admin)"
1559
+ msgid "Liberia "
1560
+ msgstr "Liberia "
1561
 
1562
+ #: src/Helpers.php:166
1563
+ #, fuzzy
1564
  msgctxt "(Admin)"
1565
+ msgid "Libya "
1566
+ msgstr "Libyen "
1567
 
1568
+ #: src/Helpers.php:167
1569
+ #, fuzzy
1570
+ msgctxt "(Admin)"
1571
+ msgid "Macao "
1572
+ msgstr "Macao "
1573
 
1574
+ #: src/Helpers.php:168
1575
+ #, fuzzy
1576
+ msgctxt "(Admin)"
1577
+ msgid "Macedonia, the Former Yugoslav Republic of "
1578
+ msgstr "Mazedonien, ehemalige jugoslawische Republik "
 
1579
 
1580
+ #: src/Helpers.php:169
1581
+ #, fuzzy
1582
+ msgctxt "(Admin)"
1583
+ msgid "Madagascar "
1584
+ msgstr "Madagaskar "
 
1585
 
1586
+ #: src/Helpers.php:170
1587
+ #, fuzzy
1588
  msgctxt "(Admin)"
1589
+ msgid "Malawi "
1590
+ msgstr "Malawi "
 
 
 
 
1591
 
1592
+ #: src/Helpers.php:171
1593
+ #, fuzzy
1594
+ msgctxt "(Admin)"
1595
+ msgid "Malaysia "
1596
+ msgstr "Malaysien "
1597
 
1598
+ #: src/Helpers.php:172
1599
+ #, fuzzy
1600
+ msgctxt "(Admin)"
1601
+ msgid "Maldives "
1602
+ msgstr "Malediven "
1603
 
1604
+ #: src/Helpers.php:173
1605
+ #, fuzzy
1606
+ msgctxt "(Admin)"
1607
+ msgid "Mali "
1608
+ msgstr "Mali "
1609
 
1610
+ #: src/Helpers.php:174
1611
+ #, fuzzy
1612
+ msgctxt "(Admin)"
1613
+ msgid "Marshall Islands "
1614
+ msgstr "Marshallinseln "
 
1615
 
1616
+ #: src/Helpers.php:175
1617
+ #, fuzzy
1618
+ msgctxt "(Admin)"
1619
+ msgid "Martinique "
1620
+ msgstr "Martinique "
1621
 
1622
+ #: src/Helpers.php:176
1623
+ #, fuzzy
1624
  msgctxt "(Admin)"
1625
+ msgid "Mauritania "
1626
+ msgstr "Mauretanien "
1627
 
1628
+ #: src/Helpers.php:177
1629
+ #, fuzzy
1630
  msgctxt "(Admin)"
1631
+ msgid "Mauritius "
1632
+ msgstr "Mauritius "
1633
 
1634
+ #: src/Helpers.php:178
1635
+ #, fuzzy
1636
  msgctxt "(Admin)"
1637
+ msgid "Mayotte "
1638
+ msgstr "Mayotte "
1639
 
1640
+ #: src/Helpers.php:179
1641
+ #, fuzzy
1642
  msgctxt "(Admin)"
1643
+ msgid "Mexico "
1644
+ msgstr "Mexiko "
1645
 
1646
+ #: src/Helpers.php:180
1647
+ #, fuzzy
1648
  msgctxt "(Admin)"
1649
+ msgid "Micronesia, Federated States of "
1650
+ msgstr "Mikronesien, Föderierte Staaten von "
1651
 
1652
+ #: src/Helpers.php:181
1653
+ #, fuzzy
1654
  msgctxt "(Admin)"
1655
+ msgid "Moldova, Republic of "
1656
+ msgstr "Moldawien, Republik "
1657
 
1658
+ #: src/Helpers.php:182
1659
+ #, fuzzy
1660
+ msgctxt "(Admin)"
1661
+ msgid "Monaco "
1662
+ msgstr "Monaco "
1663
 
1664
+ #: src/Helpers.php:183
1665
+ #, fuzzy
1666
+ msgctxt "(Admin)"
1667
+ msgid "Mongolia "
1668
+ msgstr "Mongolei "
1669
 
1670
+ #: src/Helpers.php:184
1671
+ #, fuzzy
1672
+ msgctxt "(Admin)"
1673
+ msgid "Montenegro "
1674
+ msgstr "Montenegro "
1675
 
1676
+ #: src/Helpers.php:185
1677
+ #, fuzzy
1678
+ msgctxt "(Admin)"
1679
+ msgid "Montserrat "
1680
+ msgstr "Montserrat "
1681
 
1682
+ #: src/Helpers.php:186
1683
+ #, fuzzy
1684
+ msgctxt "(Admin)"
1685
+ msgid "Morocco "
1686
+ msgstr "Marokko "
1687
 
1688
+ #: src/Helpers.php:187
1689
+ #, fuzzy
1690
+ msgctxt "(Admin)"
1691
+ msgid "Mozambique "
1692
+ msgstr "Mosambik "
1693
 
1694
+ #: src/Helpers.php:188
1695
+ #, fuzzy
1696
+ msgctxt "(Admin)"
1697
+ msgid "Myanmar "
1698
+ msgstr "Myanmar "
1699
 
1700
+ #: src/Helpers.php:189
1701
+ #, fuzzy
1702
  msgctxt "(Admin)"
1703
+ msgid "Namibia "
1704
+ msgstr "Namibia "
 
1705
 
1706
+ #: src/Helpers.php:190
1707
+ #, fuzzy
1708
+ msgctxt "(Admin)"
1709
+ msgid "Nauru "
1710
+ msgstr "Nauru "
 
 
1711
 
1712
+ #: src/Helpers.php:191
1713
+ #, fuzzy
1714
+ msgctxt "(Admin)"
1715
+ msgid "Nepal "
1716
+ msgstr "Nepal "
1717
 
1718
+ #: src/Helpers.php:192
1719
+ #, fuzzy
1720
+ msgctxt "(Admin)"
1721
+ msgid "New Caledonia "
1722
+ msgstr "Neukaledonien "
1723
 
1724
+ #: src/Helpers.php:193
1725
+ msgctxt "(Admin)"
1726
+ msgid "New Zealand "
1727
+ msgstr "Neuseeland "
1728
 
1729
+ #: src/Helpers.php:194
1730
+ #, fuzzy
1731
+ msgctxt "(Admin)"
1732
+ msgid "Nicaragua "
1733
+ msgstr "Nicaragua "
1734
 
1735
+ #: src/Helpers.php:195
1736
+ #, fuzzy
1737
  msgctxt "(Admin)"
1738
+ msgid "Niger "
1739
+ msgstr "Niger "
1740
 
1741
+ #: src/Helpers.php:196
1742
+ #, fuzzy
1743
  msgctxt "(Admin)"
1744
+ msgid "Nigeria "
1745
+ msgstr "Nigeria "
1746
 
1747
+ #: src/Helpers.php:197
1748
+ #, fuzzy
1749
+ msgctxt "(Admin)"
1750
+ msgid "Niue "
1751
+ msgstr "Niue "
 
 
1752
 
1753
+ #: src/Helpers.php:198
1754
+ #, fuzzy
1755
+ msgctxt "(Admin)"
1756
+ msgid "Norfolk Island "
1757
+ msgstr "Norfolkinsel "
1758
 
1759
+ #: src/Helpers.php:199
1760
+ #, fuzzy
1761
+ msgctxt "(Admin)"
1762
+ msgid "Northern Mariana Islands "
1763
+ msgstr "Nördliche Marianen "
1764
 
1765
+ #: src/Helpers.php:200
1766
+ #, fuzzy
1767
+ msgctxt "(Admin)"
1768
+ msgid "Oman "
1769
+ msgstr "Oman "
1770
 
1771
+ #: src/Helpers.php:201
1772
+ #, fuzzy
1773
  msgctxt "(Admin)"
1774
+ msgid "Pakistan "
1775
+ msgstr "Pakistan "
1776
 
1777
+ #: src/Helpers.php:202
1778
+ #, fuzzy
1779
  msgctxt "(Admin)"
1780
+ msgid "Palau "
1781
+ msgstr "Palau "
1782
 
1783
+ #: src/Helpers.php:203
1784
+ #, fuzzy
1785
  msgctxt "(Admin)"
1786
+ msgid "Palestine, State of "
1787
+ msgstr "Palästina, Staat "
1788
 
1789
+ #: src/Helpers.php:204
1790
+ #, fuzzy
1791
  msgctxt "(Admin)"
1792
+ msgid "Panama "
1793
+ msgstr "Panama "
1794
 
1795
+ #: src/Helpers.php:205
1796
+ #, fuzzy
1797
  msgctxt "(Admin)"
1798
+ msgid "Papua New Guinea "
1799
+ msgstr "Papua-Neuguinea "
1800
 
1801
+ #: src/Helpers.php:206
1802
+ #, fuzzy
1803
  msgctxt "(Admin)"
1804
+ msgid "Paraguay "
1805
+ msgstr "Paraguay "
1806
 
1807
+ #: src/Helpers.php:207
1808
+ #, fuzzy
1809
  msgctxt "(Admin)"
1810
+ msgid "Peru "
1811
+ msgstr "Peru "
1812
 
1813
+ #: src/Helpers.php:208
1814
+ #, fuzzy
1815
  msgctxt "(Admin)"
1816
+ msgid "Philippines "
1817
+ msgstr "Philippinen "
1818
 
1819
+ #: src/Helpers.php:209
1820
+ #, fuzzy
1821
  msgctxt "(Admin)"
1822
+ msgid "Pitcairn "
1823
+ msgstr "Pitcairn "
1824
 
1825
+ #: src/Helpers.php:210
1826
+ #, fuzzy
1827
  msgctxt "(Admin)"
1828
+ msgid "Puerto Rico "
1829
+ msgstr "Puerto Rico "
1830
 
1831
+ #: src/Helpers.php:211
1832
+ #, fuzzy
1833
  msgctxt "(Admin)"
1834
+ msgid "Qatar "
1835
+ msgstr "Katar "
1836
 
1837
+ #: src/Helpers.php:212
1838
+ #, fuzzy
1839
  msgctxt "(Admin)"
1840
+ msgid "Réunion "
1841
+ msgstr "Réunion "
1842
 
1843
+ #: src/Helpers.php:213
1844
+ #, fuzzy
1845
  msgctxt "(Admin)"
1846
+ msgid "Russian Federation "
1847
+ msgstr "Russische Föderation "
1848
 
1849
+ #: src/Helpers.php:214
1850
+ #, fuzzy
1851
  msgctxt "(Admin)"
1852
+ msgid "Rwanda "
1853
+ msgstr "Ruanda "
1854
 
1855
+ #: src/Helpers.php:215
1856
+ #, fuzzy
1857
  msgctxt "(Admin)"
1858
+ msgid "Saint Barthélemy "
1859
+ msgstr "Heilige Barthélemy "
1860
 
1861
+ #: src/Helpers.php:216
1862
+ #, fuzzy
1863
  msgctxt "(Admin)"
1864
+ msgid "Saint Helena, Ascension and Tristan da Cunha "
1865
+ msgstr "St. Helena, Ascension und Tristan da Cunha "
1866
 
1867
+ #: src/Helpers.php:217
1868
+ #, fuzzy
1869
  msgctxt "(Admin)"
1870
+ msgid "Saint Kitts and Nevis "
1871
+ msgstr "St. Kitts und Nevis "
1872
 
1873
+ #: src/Helpers.php:218
1874
+ #, fuzzy
1875
  msgctxt "(Admin)"
1876
+ msgid "Saint Lucia "
1877
+ msgstr "St. Lucia "
1878
 
1879
+ #: src/Helpers.php:219
1880
+ #, fuzzy
1881
  msgctxt "(Admin)"
1882
+ msgid "Saint Martin (French part) "
1883
+ msgstr "Saint Martin (französischer Teil) "
1884
 
1885
+ #: src/Helpers.php:220
1886
+ #, fuzzy
1887
+ msgctxt "(Admin)"
1888
+ msgid "Saint Pierre and Miquelon "
1889
+ msgstr "Saint Pierre und Miquelon "
1890
 
1891
+ #: src/Helpers.php:221
1892
+ #, fuzzy
1893
  msgctxt "(Admin)"
1894
+ msgid "Saint Vincent and the Grenadines "
1895
+ msgstr "St. Vincent und die Grenadinen "
 
1896
 
1897
+ #: src/Helpers.php:222
1898
+ #, fuzzy
1899
  msgctxt "(Admin)"
1900
+ msgid "Samoa "
1901
+ msgstr "Samoa "
1902
 
1903
+ #: src/Helpers.php:223
1904
+ #, fuzzy
1905
  msgctxt "(Admin)"
1906
+ msgid "San Marino "
1907
+ msgstr "San Marino "
1908
 
1909
+ #: src/Helpers.php:224
1910
+ #, fuzzy
1911
  msgctxt "(Admin)"
1912
+ msgid "Sao Tome and Principe "
1913
+ msgstr "Sao Tome und Principe "
1914
 
1915
+ #: src/Helpers.php:225
1916
+ #, fuzzy
1917
  msgctxt "(Admin)"
1918
+ msgid "Saudi Arabia "
1919
+ msgstr "Saudi-Arabien "
1920
 
1921
+ #: src/Helpers.php:226
1922
+ #, fuzzy
1923
  msgctxt "(Admin)"
1924
+ msgid "Senegal "
1925
+ msgstr "Senegal "
1926
 
1927
+ #: src/Helpers.php:227
1928
+ #, fuzzy
1929
  msgctxt "(Admin)"
1930
+ msgid "Serbia "
1931
+ msgstr "Serbien "
1932
 
1933
+ #: src/Helpers.php:228
1934
+ #, fuzzy
1935
  msgctxt "(Admin)"
1936
+ msgid "Seychelles "
1937
+ msgstr "Seychellen "
1938
 
1939
+ #: src/Helpers.php:229
1940
+ #, fuzzy
1941
  msgctxt "(Admin)"
1942
+ msgid "Sierra Leone "
1943
+ msgstr "Sierra Leone "
1944
 
1945
+ #: src/Helpers.php:230
1946
+ #, fuzzy
1947
  msgctxt "(Admin)"
1948
+ msgid "Singapore "
1949
+ msgstr "Singapur "
1950
 
1951
+ #: src/Helpers.php:231
1952
+ #, fuzzy
1953
  msgctxt "(Admin)"
1954
+ msgid "Sint Maarten (Dutch part) "
1955
+ msgstr "Sint Maarten (niederländischer Teil) "
1956
 
1957
+ #: src/Helpers.php:232
1958
+ #, fuzzy
1959
+ msgctxt "(Admin)"
1960
+ msgid "Solomon Islands "
1961
+ msgstr "Salomonen "
1962
 
1963
+ #: src/Helpers.php:233
1964
+ #, fuzzy
1965
+ msgctxt "(Admin)"
1966
+ msgid "Somalia "
1967
+ msgstr "Somalia "
1968
 
1969
+ #: src/Helpers.php:234
1970
+ #, fuzzy
1971
+ msgctxt "(Admin)"
1972
+ msgid "South Africa "
1973
+ msgstr "Südafrika "
1974
 
1975
+ #: src/Helpers.php:235
1976
+ #, fuzzy
1977
+ msgctxt "(Admin)"
1978
+ msgid "South Georgia and the South Sandwich Islands "
1979
+ msgstr "Südgeorgien und die Südlichen Sandwichinseln "
1980
 
1981
+ #: src/Helpers.php:236
1982
+ #, fuzzy
1983
+ msgctxt "(Admin)"
1984
+ msgid "South Sudan "
1985
+ msgstr "Südsudan "
1986
 
1987
+ #: src/Helpers.php:237
1988
+ #, fuzzy
1989
+ msgctxt "(Admin)"
1990
+ msgid "Sri Lanka "
1991
+ msgstr "Sri Lanka "
1992
 
1993
+ #: src/Helpers.php:238
1994
+ #, fuzzy
1995
+ msgctxt "(Admin)"
1996
+ msgid "Sudan "
1997
+ msgstr "Sudan "
1998
 
1999
+ #: src/Helpers.php:239
2000
+ #, fuzzy
2001
+ msgctxt "(Admin)"
2002
+ msgid "Suriname "
2003
+ msgstr "Suriname "
2004
 
2005
+ #: src/Helpers.php:240
2006
+ #, fuzzy
2007
+ msgctxt "(Admin)"
2008
+ msgid "Svalbard and Jan Mayen "
2009
+ msgstr "Svalbard und Jan Mayen "
2010
 
2011
+ #: src/Helpers.php:241
2012
  msgctxt "(Admin)"
2013
+ msgid "Swaziland "
2014
+ msgstr "Schweiz "
2015
 
2016
+ #: src/Helpers.php:242
2017
+ #, fuzzy
2018
  msgctxt "(Admin)"
2019
+ msgid "Syrian Arab Republic "
2020
+ msgstr "Arabische Republik Syrien "
2021
 
2022
+ #: src/Helpers.php:243
2023
+ #, fuzzy
2024
  msgctxt "(Admin)"
2025
+ msgid "Taiwan "
2026
+ msgstr "Taiwan "
2027
 
2028
+ #: src/Helpers.php:244
2029
+ #, fuzzy
2030
  msgctxt "(Admin)"
2031
+ msgid "Tajikistan "
2032
+ msgstr "Tadschikistan "
2033
 
2034
+ #: src/Helpers.php:245
2035
+ #, fuzzy
2036
  msgctxt "(Admin)"
2037
+ msgid "Tanzania, United Republic of "
2038
+ msgstr "Tansania, Vereinigte Republik "
2039
 
2040
+ #: src/Helpers.php:246
2041
+ #, fuzzy
2042
  msgctxt "(Admin)"
2043
+ msgid "Thailand "
2044
+ msgstr "Thailand "
2045
 
2046
+ #: src/Helpers.php:247
2047
+ #, fuzzy
2048
  msgctxt "(Admin)"
2049
+ msgid "Timor-Leste "
2050
+ msgstr "Timor-Leste "
 
 
 
 
 
 
2051
 
2052
+ #: src/Helpers.php:248
2053
+ #, fuzzy
2054
  msgctxt "(Admin)"
2055
+ msgid "Togo "
2056
+ msgstr "Togo "
2057
 
2058
+ #: src/Helpers.php:249
2059
+ #, fuzzy
2060
  msgctxt "(Admin)"
2061
+ msgid "Tokelau "
2062
+ msgstr "Tokelau "
2063
 
2064
+ #: src/Helpers.php:250
2065
+ #, fuzzy
2066
  msgctxt "(Admin)"
2067
+ msgid "Tonga "
2068
+ msgstr "Tonga "
2069
 
2070
+ #: src/Helpers.php:251
2071
+ #, fuzzy
2072
  msgctxt "(Admin)"
2073
+ msgid "Trinidad and Tobago "
2074
+ msgstr "Trinidad und Tobago "
2075
 
2076
+ #: src/Helpers.php:252
2077
+ #, fuzzy
2078
  msgctxt "(Admin)"
2079
+ msgid "Tunisia "
2080
+ msgstr "Tunesien "
 
 
 
 
2081
 
2082
+ #: src/Helpers.php:253
2083
+ #, fuzzy
2084
  msgctxt "(Admin)"
2085
+ msgid "Turkey "
2086
+ msgstr "Turkei "
 
 
 
 
2087
 
2088
+ #: src/Helpers.php:254
2089
+ #, fuzzy
2090
  msgctxt "(Admin)"
2091
+ msgid "Turkmenistan "
2092
+ msgstr "Turkmenistan "
2093
 
2094
+ #: src/Helpers.php:255
2095
+ #, fuzzy
2096
  msgctxt "(Admin)"
2097
+ msgid "Turks and Caicos Islands "
2098
+ msgstr "Turks- und Caicosinseln "
2099
 
2100
+ #: src/Helpers.php:256
2101
+ #, fuzzy
2102
  msgctxt "(Admin)"
2103
+ msgid "Tuvalu "
2104
+ msgstr "Tuvalu "
2105
 
2106
+ #: src/Helpers.php:257
2107
+ #, fuzzy
2108
  msgctxt "(Admin)"
2109
+ msgid "Uganda "
2110
+ msgstr "Uganda "
2111
 
2112
+ #: src/Helpers.php:258
2113
+ #, fuzzy
2114
  msgctxt "(Admin)"
2115
+ msgid "Ukraine "
2116
+ msgstr "Ukraine "
2117
 
2118
+ #: src/Helpers.php:259
2119
+ #, fuzzy
2120
  msgctxt "(Admin)"
2121
+ msgid "United Arab Emirates "
2122
+ msgstr "Vereinigte Arabische Emirate "
 
 
 
 
2123
 
2124
+ #: src/Helpers.php:260
2125
+ #, fuzzy
2126
  msgctxt "(Admin)"
2127
+ msgid "United States Minor Outlying Islands "
2128
+ msgstr "Vereinigte Staaten Minor Outlying Islands "
2129
 
2130
+ #: src/Helpers.php:261
2131
+ #, fuzzy
2132
  msgctxt "(Admin)"
2133
+ msgid "Uruguay "
2134
+ msgstr "Uruguay "
 
 
 
 
 
 
 
 
 
 
 
2135
 
2136
+ #: src/Helpers.php:262
2137
+ #, fuzzy
2138
  msgctxt "(Admin)"
2139
+ msgid "Uzbekistan "
2140
+ msgstr "Usbekistan "
 
 
 
 
2141
 
2142
+ #: src/Helpers.php:263
2143
+ #, fuzzy
2144
  msgctxt "(Admin)"
2145
+ msgid "Vanuatu "
2146
+ msgstr "Vanuatu "
 
2147
 
2148
+ #: src/Helpers.php:264
2149
  msgctxt "(Admin)"
2150
+ msgid "Venezuela, Bolivarian Republic of "
2151
+ msgstr "Venezuela, Bolivarische Republik"
 
 
 
 
2152
 
2153
+ #: src/Helpers.php:265
2154
+ #, fuzzy
2155
  msgctxt "(Admin)"
2156
+ msgid "Viet Nam "
2157
+ msgstr "Vietnam "
 
2158
 
2159
+ #: src/Helpers.php:266
2160
+ #, fuzzy
2161
  msgctxt "(Admin)"
2162
+ msgid "Virgin Islands, British "
2163
+ msgstr "Jungferninseln, Britisch "
2164
 
2165
+ #: src/Helpers.php:267
2166
  msgctxt "(Admin)"
2167
+ msgid "Virgin Islands, U.S. "
2168
+ msgstr "Amerikanische Jungferninseln"
2169
 
2170
+ #: src/Helpers.php:268
2171
+ #, fuzzy
2172
+ msgctxt "(Admin)"
2173
+ msgid "Wallis and Futuna "
2174
+ msgstr "Wallis und Futuna "
2175
 
2176
+ #: src/Helpers.php:269
2177
+ #, fuzzy
2178
+ msgctxt "(Admin)"
2179
+ msgid "Western Sahara "
2180
+ msgstr "Westsahara "
 
2181
 
2182
+ #: src/Helpers.php:270
2183
+ #, fuzzy
2184
+ msgctxt "(Admin)"
2185
+ msgid "Yemen "
2186
+ msgstr "Jemen "
2187
 
2188
+ #: src/Helpers.php:271
2189
+ #, fuzzy
2190
+ msgctxt "(Admin)"
2191
+ msgid "Zambia "
2192
+ msgstr "Sambia "
2193
 
2194
+ #: src/Helpers.php:272
2195
+ #, fuzzy
2196
  msgctxt "(Admin)"
2197
+ msgid "Zimbabwe "
2198
+ msgstr "Zimbabwe "
2199
 
2200
+ #: src/Helpers.php:287
2201
  msgctxt "(Admin)"
2202
+ msgid "Iceland"
2203
+ msgstr "Island"
2204
 
2205
+ #: src/Helpers.php:288
2206
  msgctxt "(Admin)"
2207
+ msgid "Norway"
2208
+ msgstr "Norway"
2209
 
2210
+ #: src/Helpers.php:289
2211
  msgctxt "(Admin)"
2212
+ msgid "Liechtenstein"
2213
+ msgstr "Liechtenstein"
2214
 
2215
+ #: src/Helpers.php:290
2216
+ msgctxt "(Admin)"
2217
+ msgid "Switzerland"
2218
+ msgstr "Schweiz"
2219
+
2220
+ #: src/Helpers.php:291
2221
+ msgctxt "(Admin)"
2222
+ msgid "United States"
2223
+ msgstr "USA"
2224
+
2225
+ #: src/Helpers.php:377
2226
+ msgid "An error has occurred. Please contact the site administrator."
2227
+ msgstr ""
2228
+ "Es ist ein Fehler aufgetreten. Bitte kontaktiere den Webseiten-Administrator."
2229
+
2230
+ #: src/Installer/Installer.php:146
2231
+ msgctxt "(Admin)"
2232
+ msgid "Setup Wizard"
2233
+ msgstr "Installationsassistent"
2234
+
2235
+ #: src/Installer/Steps/ConfigurationPages.php:23
2236
+ #: src/Installer/Steps/ConfigurationPages.php:33
2237
+ #: src/Installer/Steps/PolicySettings.php:23
2238
+ #: src/Installer/Steps/PolicySettings.php:48
2239
+ msgctxt "(Admin)"
2240
+ msgid "&mdash; Create a new page &mdash;"
2241
+ msgstr "&mdash; Neue Seite erstellen &mdash;"
2242
 
2243
+ #: src/Installer/Steps/PolicySettings.php:38
2244
  msgctxt "(Admin)"
2245
  msgid ""
2246
+ "We have automatically selected your WooCommerce Terms & Conditions page."
 
2247
  msgstr ""
2248
+ "Wir haben automatisch Ihre Seite mit den Allgemeinen Geschäftsbedingungen "
2249
+ "von WooCommerce ausgewählt."
 
2250
 
2251
+ #: src/Modules/ContactForm7/ContactForm7.php:35
2252
  msgctxt "(Admin)"
2253
+ msgid "gdpr terms txt"
2254
+ msgstr "DSGVO Bestimmungen txt"
2255
+
2256
+ #: src/Modules/ContactForm7/Flamingo.php:23
2257
+ #: views/modules/contact-form-7/form-privacy-tab.php:1
2258
+ msgid "Privacy"
2259
+ msgstr "Datenschutz"
2260
+
2261
+ #: src/Modules/ContactForm7/Flamingo.php:67
2262
+ msgid "Form submissions: "
2263
+ msgstr "Formulareinreichungen: "
2264
+
2265
+ #: src/Modules/ContactForm7/Flamingo.php:162
2266
+ msgctxt "(Admin)"
2267
+ msgid "Do you want form to be GDPR compliance."
2268
+ msgstr "Soll das Formular DSGVO konform sein."
2269
+
2270
+ #: src/Modules/ContactForm7/Flamingo.php:163
2271
+ msgctxt "(Admin)"
2272
+ msgid ""
2273
+ "You have installed flamingo, To make this GDPR compliance in individual "
2274
+ "contact form's privacy tab check the checkbox for include data to be search "
2275
+ "on Privacy tool."
2276
+ msgstr ""
2277
+ "Um diese DSGVO Konformität für das jeweilige Kontaktformular zu erreichen, "
2278
+ "aktiviere unter \"Datenschutz\" die Option Daten für die Suche "
2279
+ "einzuschließen."
2280
+
2281
+ #: src/Modules/EddGdpr/EddGdpr.php:47
2282
+ msgid "EDD Customer Information"
2283
+ msgstr "EDD Kundeninformationen"
2284
+
2285
+ #: src/Modules/EddGdpr/EddGdpr.php:56
2286
+ #, fuzzy
2287
+ msgid "EDD Order Information"
2288
+ msgstr "EDD Bestellinformationen"
2289
+
2290
+ #: src/Modules/EddGdpr/EddGdpr.php:65
2291
+ msgid "EDD File Downloads"
2292
+ msgstr "EDD Datei Downloads"
2293
+
2294
+ #: src/Modules/EddGdpr/EddGdpr.php:74
2295
+ msgid "EDD API Access Logs"
2296
+ msgstr "EDD API Zugriffsprotokolle"
2297
 
2298
+ #: src/Modules/NewsletterGdpr/NewsletterGdpr.php:79
2299
+ msgid "Newsletter Form submissions: "
2300
+ msgstr "Newsletter Formulareinreichungen: "
2301
+
2302
+ #: src/Modules/WooCommerceGdpr/WooCommerceGdpr.php:46
2303
+ msgid "Customer Information"
2304
+ msgstr "Kundeninfo"
2305
+
2306
+ #: src/Modules/WooCommerceGdpr/WooCommerceGdpr.php:53
2307
+ msgid "Order Information"
2308
+ msgstr "Bestellinformationen"
2309
+
2310
+ #: src/Modules/WooCommerceGdpr/WooCommerceGdpr.php:162
2311
  msgid "Please acknowledge the Privacy Policy"
2312
  msgstr "Bitte bestätigen Sie die Datenschutzerklärung"
2313
 
2314
+ #: src/Modules/WooCommerceGdpr/WooCommerceGdpr.php:177
2315
+ msgid "Privacy Policy consent is required!"
2316
+ msgstr "Deine Zustimmung zur Datenschutzerklärung ist notwendig!"
2317
+
2318
+ #: src/Router.php:80 src/Router.php:92 src/Router.php:125 src/Router.php:141
2319
+ #, php-format
2320
+ msgid "Nonce error for action \"%s\". Please go back and try again!"
2321
+ msgstr ""
2322
+ "Ein Fehler für die Aktion %s ist aufgetreten. Bitte gehe zurück und versuche "
2323
+ "es erneut!"
2324
+
2325
+ #: src/Router.php:149
2326
  msgctxt "(Admin)"
2327
+ msgid "You do not have the required permissions to perform this action!"
2328
+ msgstr "Du har ikke nødvendige tillatelser til at utføre denne handlingen!"
2329
+
2330
+ #: views/admin/consent.php:3
2331
+ msgctxt "(Admin)"
2332
+ msgid "Default consent types"
2333
+ msgstr "Voreingestellte Arten der Zustimmung"
2334
 
2335
+ #: views/admin/consent.php:4
2336
  msgctxt "(Admin)"
2337
  msgid ""
2338
+ "These are the consent types that have been automatically registered by the "
2339
+ "framework or a plugin."
2340
  msgstr ""
2341
+ "Dies sind die Zustimmungsarten, die automatisch durch das DSGVO Framework "
2342
+ "oder ein anderes Plugin registriert wurden."
 
2343
 
2344
+ #: views/admin/consent.php:7 views/admin/consent.php:53
2345
  msgctxt "(Admin)"
2346
+ msgid "Slug"
2347
+ msgstr "Slug"
2348
 
2349
+ #: views/admin/consent.php:8 views/admin/consent.php:38
2350
+ #: views/admin/consent.php:61
2351
  msgctxt "(Admin)"
2352
+ msgid "Title"
2353
+ msgstr "Titel"
2354
+
2355
+ #: views/admin/consent.php:9 views/admin/consent.php:41
2356
+ #: views/admin/consent.php:64
2357
+ msgctxt "(Admin)"
2358
+ msgid "Description"
2359
+ msgstr "Beschreibung"
2360
 
2361
+ #: views/admin/consent.php:10
2362
  msgctxt "(Admin)"
2363
+ msgid "Visibility"
2364
+ msgstr "Sichtbarkeit"
2365
 
2366
+ #: views/admin/consent.php:18
2367
  msgctxt "(Admin)"
2368
+ msgid "Visible"
2369
+ msgstr "Sichtbar"
2370
 
2371
+ #: views/admin/consent.php:20
2372
  msgctxt "(Admin)"
2373
+ msgid "Hidden"
2374
+ msgstr "Verborgen"
2375
 
2376
+ #: views/admin/consent.php:29
2377
  msgctxt "(Admin)"
2378
+ msgid "Custom consent types"
2379
+ msgstr "Individuelle Zustimmungstypen"
2380
+
2381
+ #: views/admin/consent.php:30
2382
+ msgctxt "(Admin)"
2383
+ msgid ""
2384
+ "Here you can add custom consent types to track. They will not be used "
2385
+ "anywhere by default - you will need to build an integration for each of them."
2386
  msgstr ""
2387
+ "Hier können Sie benutzerdefinierte Arten der Zustimmung hinzufügen, um sie "
2388
+ "zu verfolgen. Sie werden nigends per Voreinstellung verwendet. Sie müssen "
2389
+ "dafür jeweils eine Integration erstellen."
2390
 
2391
+ #: views/admin/consent.php:35
2392
  msgctxt "(Admin)"
2393
+ msgid "Machine-readable slug"
2394
+ msgstr "Maschinenlesbarer Pfad"
2395
 
2396
+ #: views/admin/consent.php:44 views/admin/consent.php:69
2397
+ #, fuzzy
2398
+ #| msgctxt "(Admin)"
2399
+ #| msgid "Visible?"
2400
+ msgctxt "(Admin)"
2401
+ msgid "Visible?"
2402
+ msgstr "Sichtbar"
2403
+
2404
+ #: views/admin/consent.php:73
2405
+ msgctxt "(Admin)"
2406
+ msgid "Remove"
2407
+ msgstr "Entfernen"
2408
+
2409
+ #: views/admin/consent.php:79
2410
+ msgctxt "(Admin)"
2411
+ msgid "Show Consent types"
2412
+ msgstr "Vis samtykke-typer"
2413
+
2414
+ #: views/admin/consent.php:80
2415
  msgctxt "(Admin)"
2416
  msgid "Add consent type"
2417
+ msgstr "Zustimmungsart hinzufügen"
2418
 
2419
+ #: views/admin/consent.php:81
2420
  msgctxt "(Admin)"
2421
+ msgid "Hide consent types"
2422
+ msgstr "Skjul samtykke-typer"
2423
 
2424
+ #: views/admin/consent.php:95
2425
  msgctxt "(Admin)"
2426
+ msgid "Additional info"
2427
+ msgstr "Zusätzliche Informationen"
 
 
2428
 
2429
+ #: views/admin/consent.php:97
2430
  msgctxt "(Admin)"
2431
+ msgid ""
2432
+ "This text will be displayed to your data subjects on the Privacy Tools page."
2433
  msgstr ""
2434
+ "Dieser Text wird Ihren betroffenen Personen auf der Seite der Datenschutz-"
2435
+ "Tools angezeigt."
2436
 
2437
+ #: views/admin/consent/enable-consent-until.php:11
2438
  msgctxt "(Admin)"
2439
+ msgid " "
2440
+ msgstr " "
 
 
2441
 
2442
+ #: views/admin/data-subjects/search-form.php:2
2443
  msgctxt "(Admin)"
2444
  msgid ""
2445
+ "On this page, you can find which data subjects personal data you are storing "
2446
+ "and download, export or delete it."
2447
  msgstr ""
2448
+ "Auf dieser Seite können Sie nachlesen, welche personenbezogenen Daten Sie "
2449
+ "von betroffenen Personen speichern und diese herunterladen, exportieren oder "
2450
+ "löschen."
2451
 
2452
+ #: views/admin/data-subjects/search-form.php:10
2453
  msgctxt "(Admin)"
2454
+ msgid "Find data subject by email"
2455
+ msgstr "Betroffene Personen über die Email-Adresse finden"
2456
 
2457
+ #: views/admin/data-subjects/search-form.php:11
2458
  msgctxt "(Admin)"
2459
+ msgid "Email address"
2460
+ msgstr "E-Mail-Adresse"
2461
 
2462
+ #: views/admin/data-subjects/search-form.php:16
2463
  msgctxt "(Admin)"
2464
+ msgid "Search"
2465
+ msgstr "Suche"
2466
 
2467
+ #: views/admin/data-subjects/search-results.php:7
2468
  msgctxt "(Admin)"
2469
+ msgid "Username"
2470
+ msgstr "Benutzername"
2471
 
2472
+ #: views/admin/data-subjects/search-results.php:13
2473
  msgctxt "(Admin)"
2474
+ msgid "Data found."
2475
+ msgstr "Daten gefunden."
2476
 
2477
+ #: views/admin/data-subjects/search-results.php:14
2478
  msgctxt "(Admin)"
2479
+ msgid "is not a registered user."
2480
+ msgstr "ist kein registrierter Benutzer."
2481
+
2482
+ #: views/admin/data-subjects/search-results.php:21
2483
+ msgctxt "(Admin)"
2484
+ msgid "Download data (html)"
2485
+ msgstr "Download der Daten (html)"
2486
+
2487
+ #: views/admin/data-subjects/search-results.php:22
2488
+ msgctxt "(Admin)"
2489
+ msgid "Export data (json)"
2490
+ msgstr "Datenexport (json)"
2491
+
2492
+ #: views/admin/data-subjects/search-results.php:26
2493
+ msgctxt "(Admin)"
2494
+ msgid ""
2495
+ "This user has admin capabilities. Deleting data via this interface is "
2496
+ "disabled."
2497
+ msgstr ""
2498
+ "Dieser Benutzer hat die Berechtigungsstufe eines Admins. Das Löschen der "
2499
+ "Daten über diese Bedienoberfläche ist deaktiviert."
2500
+
2501
+ #: views/admin/data-subjects/search-results.php:29
2502
+ msgctxt "(Admin)"
2503
+ msgid "Anonymize data"
2504
+ msgstr "Daten anonymisieren"
2505
+
2506
+ #: views/admin/data-subjects/search-results.php:30
2507
+ msgctxt "(Admin)"
2508
+ msgid "Delete data"
2509
+ msgstr "Slett data"
2510
+
2511
+ #: views/admin/data-subjects/search-results.php:34
2512
+ msgctxt "(Admin)"
2513
+ msgid "No data found!"
2514
+ msgstr "Keine Daten gefunden!"
2515
+
2516
+ #: views/admin/data-subjects/search-results.php:41
2517
+ #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:4
2518
+ msgctxt "(Admin)"
2519
+ msgid "Consents given"
2520
+ msgstr "Erteilte Zustimmungen"
2521
+
2522
+ #: views/admin/data-subjects/search-results.php:54
2523
+ msgctxt "(Admin)"
2524
+ msgid "No consents given!"
2525
+ msgstr "Keine Zustimmungen gefunden!"
2526
+
2527
+ #: views/admin/general/custom-policy-url.php:6
2528
+ msgctxt "(Admin)"
2529
+ msgid "Leave blank if privacy policy page already selected"
2530
+ msgstr ""
2531
+ "Lasse dieses Feld leer, wenn Du die Seite mit den Datenschutzbestimmungen "
2532
+ "bereits ausgewählt hast"
2533
+
2534
+ #: views/admin/general/custom-terms-url.php:6
2535
+ msgctxt "(Admin)"
2536
+ msgid "Leave blank if terms and condition page already selected"
2537
+ msgstr ""
2538
+ "Lasse dieses Feld leer, wenn Du die Seite mit den Allgemeinen "
2539
+ "Geschäftsbedingungen bereits ausgewählt hast"
2540
+
2541
+ #: views/admin/general/custom-tools-url.php:6
2542
+ msgctxt "(Admin)"
2543
+ msgid "Leave blank if privacy tools page already selected"
2544
+ msgstr ""
2545
+ "Lasse dieses Feld leer, wenn Du die Seite für die Datenschutzrichtlinie "
2546
+ "bereits ausgewählt hast"
2547
+
2548
+ #: views/admin/general/delete-action-email.php:5
2549
+ #: views/admin/general/export-action-email.php:5
2550
+ #: views/installer/steps/configuration-settings.php:29
2551
+ #: views/installer/steps/configuration-settings.php:79
2552
+ msgid "Email address"
2553
+ msgstr "E-Mail-Adresse"
2554
+
2555
+ #: views/admin/general/delete-action-reassign.php:3
2556
+ #: views/installer/steps/configuration-settings.php:50
2557
+ msgctxt "(Admin)"
2558
+ msgid "Delete content"
2559
+ msgstr "Inhalt löschen"
2560
+
2561
+ #: views/admin/general/delete-action-reassign.php:6
2562
+ #: views/installer/steps/configuration-settings.php:53
2563
+ msgctxt "(Admin)"
2564
+ msgid "Reassign content to a user"
2565
+ msgstr "Inhalt(e) einem anderen Benutzer zuweisen"
2566
+
2567
+ #: views/admin/general/delete-action-reassign.php:10
2568
+ msgctxt "(Admin)"
2569
+ msgid ""
2570
+ "If the user has submitted any content on your site, should it be deleted or "
2571
+ "reassigned to another user?"
2572
+ msgstr ""
2573
+ "Falls der Benutzer Inhalte an Ihre Website übermittelt hat, sollen diese "
2574
+ "gelöscht oder einem anderen Benutzer zugewiesen werden?"
2575
+
2576
+ #: views/admin/general/description-data-page.php:2
2577
+ msgctxt "(Admin)"
2578
+ msgid ""
2579
+ "Select the page where users can go to control their data. This page must "
2580
+ "contain the [gdpr_privacy_tools] shortcode."
2581
+ msgstr ""
2582
+ "Wählen Sie die Seite aus, auf der Benutzer ihre Daten überprüfen können. "
2583
+ "Diese Seite muss den folgenden Shortcode enthalten: [gdpr_privacy_tools]"
2584
+
2585
+ #: views/admin/general/description-delete-action.php:2
2586
+ msgctxt "(Admin)"
2587
+ msgid "What should happen if a data subject requests deleting their data."
2588
+ msgstr ""
2589
+ "Was soll passieren, wenn eine betroffene Person das Löschen ihrer Daten "
2590
+ "anfordert?"
2591
+
2592
+ #: views/admin/general/description-export-action.php:2
2593
+ msgctxt "(Admin)"
2594
+ msgid ""
2595
+ "What should happen if a data subject requests viewing or exporting their "
2596
+ "data."
2597
+ msgstr ""
2598
+ "Was soll passieren, wenn eine betroffene Person das Anzeigen oder "
2599
+ "Exportieren ihrer Daten anfordert?"
2600
+
2601
+ #: views/admin/general/description-position-action.php:2
2602
+ msgctxt "(Admin)"
2603
+ msgid "Select position of the Popup"
2604
+ msgstr "Wähle die Position des Popups"
2605
+
2606
+ #: views/admin/general/description-terms-page.php:2
2607
+ msgctxt "(Admin)"
2608
+ msgid "Optional. Select the page which contains your Terms & Conditions"
2609
+ msgstr ""
2610
+ "Wahlweise. Wählen Sie die Seite aus, die Ihre Allgemeinen "
2611
+ "Geschäftsbedingungen enthält"
2612
+
2613
+ #: views/admin/general/description-theme-action.php:2
2614
+ msgctxt "(Admin)"
2615
+ msgid "Select theme of the Popup"
2616
+ msgstr "Wähle das Thema des Popups"
2617
+
2618
+ #: views/admin/general/disble-checkbox.php:9
2619
+ msgctxt "(Admin)"
2620
+ msgid "."
2621
+ msgstr "."
2622
+
2623
+ #: views/admin/general/edd-compatibility.php:9
2624
+ msgctxt "(Admin)"
2625
+ msgid "Enable EDD data on GDPR tool."
2626
+ msgstr "Aktiviere EDD Daten für das DSGVO Tool."
2627
+
2628
+ #: views/admin/general/edd-compatibility.php:12
2629
+ #, fuzzy
2630
+ #| msgctxt "(Admin)"
2631
+ #| msgid "Will work for EDD Version 2.0.0 or later."
2632
+ msgctxt "(Admin)"
2633
+ msgid "Will work for EDD Version 2.0.0 or later."
2634
+ msgstr "Funktioniert für EDD Version 2.0.0 oder höher."
2635
+
2636
+ #: views/admin/general/enable-policy-popup.php:9
2637
+ msgctxt "(Admin)"
2638
+ msgid "Enable Policy Link On Popup"
2639
+ msgstr "Link zu den Richtlinien auf dem Popup aktivieren"
2640
+
2641
+ #: views/admin/general/enable-popup.php:12
2642
+ msgctxt "(Admin)"
2643
+ msgid ""
2644
+ "<b>Note:</b> Need to add custom content <b>gdpr_cookie_consent</b> its "
2645
+ "accepted on popup accept button."
2646
+ msgstr ""
2647
+ "<b>HINWEIS:</b> Füge individuellen Inhalt mit <b>gdpr_cookie_consent</b> "
2648
+ "hinzu. Wird über den Button \"Akzeptieren\" im Popup akzeptiert."
2649
+
2650
+ #: views/admin/general/enable-tac.php:9
2651
+ msgctxt "(Admin)"
2652
+ msgid "Enable the term and condition page."
2653
+ msgstr "Aktiviere die Seite mit den \"Allgemeinen Geschäftsbedingungen\"."
2654
+
2655
+ #: views/admin/general/enable.php:9
2656
+ msgctxt "(Admin)"
2657
+ msgid "Enable the view, export and forget functionality for users and visitors"
2658
+ msgstr ""
2659
+ "Aktivieren Sie die Ansichts-, Export- und Vergessens-Funktionalität für "
2660
+ "Benutzer und Besucher"
2661
+
2662
+ #: views/admin/general/enable.php:12
2663
+ msgctxt "(Admin)"
2664
+ msgid ""
2665
+ "Enable the Privacy Tools page on front-end and dashboard. This allows "
2666
+ "visitors to request viewing and deleting their personal data and withdraw "
2667
+ "consents."
2668
+ msgstr ""
2669
+ "Aktivieren Sie die Seite der Datenschutz-Tools im Frontend und Dashboard. "
2670
+ "Dies ermöglicht es den Besuchern, Einsicht in ihre persönlichen Daten zu "
2671
+ "verlangen, sie zu löschen und ihre Zustimmung zur Speicherung zu widerrufen."
2672
+
2673
+ #: views/admin/general/enable_popup_allow_content.php:3
2674
+ msgctxt "gdpr-framework"
2675
+ msgid "Accept"
2676
+ msgstr "Akzeptieren"
2677
+
2678
+ #: views/admin/general/enable_popup_content.php:5
2679
+ msgctxt "gdpr-framework"
2680
+ msgid ""
2681
+ "This website uses cookies to ensure you get the best experience on our "
2682
+ "website."
2683
+ msgstr ""
2684
+ "Diese Website verwendet Cookies, um sicherzustellen, dass unsere Webseite "
2685
+ "ideal nutzbar ist."
2686
+
2687
+ #: views/admin/general/enable_popup_dismiss_content.php:3
2688
+ msgctxt "gdpr-framework"
2689
+ msgid "Decline"
2690
+ msgstr "Ablehnen"
2691
+
2692
+ #: views/admin/general/enable_popup_header.php:7
2693
+ msgctxt "(Admin)"
2694
+ msgid "Leave blank if you don't want a header to get displayed."
2695
+ msgstr "Lassen Sie das Feld leer, wenn der Header nicht angezeigt werden soll."
2696
+
2697
+ #: views/admin/general/enable_popup_learnmore_content.php:3
2698
+ msgctxt "gdpr-framework"
2699
+ msgid "Learn more"
2700
+ msgstr "Mehr erfahren"
2701
+
2702
+ #: views/admin/general/popup_link_target.php:3
2703
+ msgctxt "(Admin)"
2704
+ msgid "Next Tab"
2705
+ msgstr "Nächster Tab"
2706
+
2707
+ #: views/admin/general/popup_link_target.php:6
2708
+ msgctxt "(Admin)"
2709
+ msgid "Self"
2710
+ msgstr "Selbst"
2711
+
2712
+ #: views/admin/general/stylesheet.php:9
2713
+ msgctxt "(Admin)"
2714
+ msgid "Enable basic styling for Privacy Tools page."
2715
+ msgstr ""
2716
+ "Aktivieren Sie das grundlegende Styling für die Seite \"Datenschutz-Tools\"."
2717
+
2718
+ #: views/admin/general/theme-compatibility.php:9
2719
+ #: views/installer/steps/integrations.php:21
2720
+ msgctxt "(Admin)"
2721
+ msgid ""
2722
+ "Automatically add Privacy Policy and Privacy Tools links to your site footer."
2723
+ msgstr ""
2724
+ "Automatisch die Links zu den Datenschutz-Richtlinien und zu den Datenschutz-"
2725
+ "Tools im Footer Ihrer Website hinzufügen."
2726
+
2727
+ #: views/admin/general/woo-compatibility.php:9
2728
+ msgctxt "(Admin)"
2729
+ msgid "Enable WooCommerce data on GDPR tool."
2730
+ msgstr "Aktiviere WooCommerce Daten im DSGVO Tool."
2731
+
2732
+ #: views/admin/general/woo-compatibility.php:12
2733
+ #, fuzzy
2734
+ #| msgctxt "(Admin)"
2735
+ #| msgid "Will work for WooCommerce Version 3.4.0 or later."
2736
+ msgctxt "(Admin)"
2737
+ msgid "Will work for WooCommerce Version 3.4.0 or later."
2738
+ msgstr "Funktioniert für WooCommerce Version 3.4.0 oder höher."
2739
+
2740
+ #: views/admin/notices/header-privacy-safe.php:4
2741
+ msgctxt "(Admin)"
2742
+ msgid "Privacy Safe By Data443"
2743
+ msgstr "Schutz der Privatsphäre durch Data443"
2744
+
2745
+ #: views/admin/notices/header.php:4 views/admin/settings-page.php:3
2746
+ msgctxt "(Admin)"
2747
+ msgid "The GDPR Framework By Data443"
2748
+ msgstr "Das DSGVO Framework durch Data443"
2749
+
2750
+ #: views/admin/notices/help.php:3 views/admin/settings-page.php:39
2751
+ #, php-format
2752
+ msgctxt "(Admin)"
2753
+ msgid "Need help? Take a look at our %sdocumentation%s."
2754
+ msgstr "Brauchst Du Hilfe? Wirf einen Blick in unsere %sDokumentation%s."
2755
+
2756
+ #: views/admin/notices/helper-autoinstall.php:2
2757
+ msgctxt "(Admin)"
2758
+ msgid ""
2759
+ "A Privacy Policy page has been created, but it is empty. You can generate a "
2760
+ "policy template on this page."
2761
+ msgstr ""
2762
+ "Es wurde eine Seite für die Datenschutzrichtlinien erstellt, die jedoch leer "
2763
+ "ist. Du kannst auf dieser Seite eine Richtlinienvorlage erstellen."
2764
+
2765
+ #: views/admin/notices/helper-policy.php:2
2766
+ msgctxt "(Admin)"
2767
+ msgid ""
2768
+ "Heads up - your Privacy Policy still requires some attention. Find the "
2769
+ "places marked with [TODO] and replace them with real content!"
2770
+ msgstr ""
2771
+ "Aufgepasst - Ihre Datenschutzrichtlinie erfordert noch einige "
2772
+ "Aufmerksamkeit. Finden Sie die mit [TODO] markierten Orte und ersetzen Sie "
2773
+ "sie durch echten Inhalt!"
2774
+
2775
+ #: views/admin/notices/helper-settings.php:2
2776
+ msgctxt "(Admin)"
2777
+ msgid ""
2778
+ "Heads up! The GDPR Framework is not properly configured, so it will not work "
2779
+ "just yet."
2780
+ msgstr ""
2781
+ "ACHTUNG: Das DSGVO Framework wurde noch nicht richtig konfiguriert und wird "
2782
+ "daher nicht funktionieren."
2783
+
2784
+ #: views/admin/notices/helper-settings.php:4
2785
+ #, php-format
2786
+ msgctxt "(Admin)"
2787
+ msgid "Go to %sTools > Data443 GDPR%s and make sure all fields are filled in."
2788
+ msgstr ""
2789
+ "Gehen Sie zu %sWerkzeuge > Data443 DSVGO%s und stelle sicher, dass alle "
2790
+ "Felder ausgefüllt sind."
2791
+
2792
+ #: views/admin/notices/helper-tools.php:2
2793
+ msgctxt "(Admin)"
2794
+ msgid ""
2795
+ "The contents of this page should contain the [gdpr_privacy_tools] shortcode."
2796
+ msgstr ""
2797
+ "Der Inhalt dieser Seite sollte den Shortcode [gdpr_privacy_tools] enthalten."
2798
+
2799
+ #: views/admin/privacy-manager/header.php:2
2800
+ #: views/admin/privacy-manager/header.php:21
2801
+ msgctxt "(Admin)"
2802
+ msgid "Data443™ Global Privacy Manager"
2803
+ msgstr "Data443™ Globaler Datenschutzmanager"
2804
+
2805
+ #: views/admin/privacy-manager/header.php:3
2806
+ msgctxt "(Admin)"
2807
+ msgid ""
2808
+ "ensures privacy regulation compliance, such as GDPR, CCPA, LGPD, etc, at the "
2809
+ "next level."
2810
+ msgstr ""
2811
+ "gewährleistet die Einhaltung von Datenschutzvorschriften wie DSGVO, CCPA, "
2812
+ "LGPD usw."
2813
+
2814
+ #: views/admin/privacy-manager/header.php:4
2815
+ msgctxt "(Admin)"
2816
+ msgid "Includes the following features:"
2817
+ msgstr "Enthält die folgenden Funktionen:"
2818
+
2819
+ #: views/admin/privacy-manager/header.php:6
2820
+ msgctxt "(Admin)"
2821
+ msgid ""
2822
+ "Available within minutes – designed to be deployed to your website over the "
2823
+ "phone with one link!"
2824
+ msgstr ""
2825
+ "Innerhalb von Minuten verfügbar und wurde entwickelt, um mit einem Link über "
2826
+ "das Telefon auf Deiner Website bereitgestellt zu werden!"
2827
+
2828
+ #: views/admin/privacy-manager/header.php:7
2829
+ msgctxt "(Admin)"
2830
+ msgid "Fully branded Subject Access Request Form"
2831
+ msgstr ""
2832
+ "Vollständig gebrandetes Formular für den Antrag auf Zugang zu Dokumenten"
2833
+
2834
+ #: views/admin/privacy-manager/header.php:8
2835
+ msgctxt "(Admin)"
2836
+ msgid "Custom Workflow Engine"
2837
+ msgstr "Individuelle Workflow Engine"
2838
+
2839
+ #: views/admin/privacy-manager/header.php:9
2840
+ msgctxt "(Admin)"
2841
+ msgid "Cookie and Consent Management Tracking"
2842
+ msgstr "Tracking von Cookies und Einwilligungsmanagement"
2843
+
2844
+ #: views/admin/privacy-manager/header.php:10
2845
+ msgctxt "(Admin)"
2846
+ msgid "Opt-in and Opt-out Management"
2847
+ msgstr "Opt-in und Opt-out Verwaltung"
2848
+
2849
+ #: views/admin/privacy-manager/header.php:11
2850
+ msgctxt "(Admin)"
2851
+ msgid "Do Not Sell Management Interface"
2852
+ msgstr "\"Do Not Sell\" Verwaltung"
2853
+
2854
+ #: views/admin/privacy-manager/header.php:12
2855
+ msgctxt "(Admin)"
2856
+ msgid "Full On Premise and In Cloud Data Discovery"
2857
+ msgstr "Vollständige Datenermittlung vor Ort und in der Cloud"
2858
+
2859
+ #: views/admin/privacy-manager/header.php:13
2860
+ msgctxt "(Admin)"
2861
+ msgid "Complete End to End Data Mapping"
2862
+ msgstr "Vollständige End-to-End Datenzuordnung"
2863
+
2864
+ #: views/admin/privacy-manager/header.php:14
2865
+ msgctxt "(Admin)"
2866
+ msgid "Full Data Classification and Governance"
2867
+ msgstr "Vollständige Datenklassifizierung und -verwaltung"
2868
+
2869
+ #: views/admin/privacy-manager/header.php:15
2870
+ msgctxt "(Admin)"
2871
+ msgid "Data Deletion and Monitoring Compliance Management"
2872
+ msgstr "Datenlöschung und Überwachung der Einhaltung der Vorschriften"
2873
+
2874
+ #: views/admin/privacy-manager/header.php:16
2875
+ msgctxt "(Admin)"
2876
+ msgid ""
2877
+ "Data Stores instantly available: Windows NTFS, OneDrive, Dropbox, Office365, "
2878
+ "GoogleMail, Salesforce, Quickbooks, MailChimp, Sharepoint, MySQL, MSSQL, "
2879
+ "PostGreSQL, Mongo"
2880
+ msgstr ""
2881
+ "Sofortige Verfügbarkeit von Datenspeichern: Windows NTFS, OneDrive, Dropbox, "
2882
+ "Office365, GoogleMail, Salesforce, Quickbooks, MailChimp, Sharepoint, MySQL, "
2883
+ "MSSQL, PostGreSQL, Mongo"
2884
+
2885
+ #: views/admin/privacy-manager/header.php:17
2886
+ msgctxt "(Admin)"
2887
+ msgid ""
2888
+ "Data Stores addons available: over 200 SaaS, On Premise databases & File "
2889
+ "shares"
2890
+ msgstr ""
2891
+ "Verfügbare Datenspeicher Erweiterungen: über 200 SaaS, On Premise "
2892
+ "Datenbanken & Dateifreigaben"
2893
+
2894
+ #: views/admin/privacy-manager/header.php:18
2895
+ msgctxt "(Admin)"
2896
+ msgid "PowerBI and Dashboarding"
2897
+ msgstr "PowerBI und Dashboarding"
2898
+
2899
+ #: views/admin/privacy-manager/header.php:21
2900
+ msgctxt "(Admin)"
2901
+ msgid ""
2902
+ "No matter where you are on your data privacy journey, the ultimate goal is "
2903
+ "compliance."
2904
+ msgstr ""
2905
+ "Unabhängig vom Datenschutz, ist die Einhaltung der Vorschriften das oberste "
2906
+ "Ziel."
2907
+
2908
+ #: views/admin/privacy-manager/header.php:21
2909
+ msgctxt "(Admin)"
2910
+ msgid "enables your organization to comply with all privacy regulations."
2911
+ msgstr ""
2912
+ "ermöglicht Deiner Organisation, alle Datenschutzbestimmungen einzuhalten."
2913
+
2914
+ #: views/admin/privacy-policy/description-policy-page.php:2
2915
+ msgctxt "(Admin)"
2916
+ msgid "Select the page which will contain your Privacy Policy"
2917
+ msgstr ""
2918
+ "Wählen Sie die Seite aus, die Ihre Datenschutzrichtlinien enthalten soll"
2919
+
2920
+ #: views/admin/privacy-policy/generated.php:3
2921
+ msgctxt "(Admin)"
2922
+ msgid "Your Privacy Policy has been generated."
2923
+ msgstr "Ihre Datenschutzerklärung wurde erstellt."
2924
+
2925
+ #: views/admin/privacy-policy/generated.php:20
2926
+ msgctxt "(Admin)"
2927
+ msgid "&laquo; Back"
2928
+ msgstr "&laquo; Zurück"
2929
+
2930
+ #: views/admin/privacy-policy/has-dpo.php:11
2931
+ msgctxt "(Admin)"
2932
+ msgid "I have appointed a Data Protection Officer (DPO)"
2933
+ msgstr "Ich habe einen Datenschutzbeauftragten ernannt"
2934
+
2935
+ #: views/admin/privacy-policy/header.php:2
2936
+ msgctxt "(Admin)"
2937
+ msgid ""
2938
+ "This page allows you to generate a Privacy Policy based on the information "
2939
+ "you entered below."
2940
+ msgstr ""
2941
+ "Auf dieser Seite können Sie eine Datenschutzerklärung erzeugen, die auf den "
2942
+ "Informationen basiert, die Sie unten eingegeben haben."
2943
+
2944
+ #: views/admin/privacy-safe/enable-backlink.php:11
2945
+ msgctxt "(Admin)"
2946
+ msgid ""
2947
+ "<b>Note:</b> We need your support. By selecting to support Data443, a small "
2948
+ "link is added below the privacy safe seal linking back to our product page "
2949
+ "on data443.com. Uncheck if you prefer not to have the link display on your "
2950
+ "site."
2951
+ msgstr ""
2952
+ "<b>HINWEIS:</b> Wir brauchen Deine Unterstützung. Wenn Du Data443 "
2953
+ "unterstützen willst, wird ein kleiner Link unterhalb des Datenschutzsiegels "
2954
+ "eingefügt, der auf data443.com verweist. Deaktiviere die Option, wenn Du den "
2955
+ "Link anzeigen möchtest."
2956
+
2957
+ #: views/admin/settings-page.php:8
2958
+ msgctxt "(Admin)"
2959
+ msgid "GDPR settings saved!"
2960
+ msgstr "Die DSGVO Einstellungen wurden gespeichert!"
2961
+
2962
+ #: views/admin/settings-page.php:31
2963
+ #, php-format
2964
+ msgctxt "(Admin)"
2965
+ msgid "The GDPR Framework. Built with &#9829; by %sData443%s."
2966
+ msgstr "Das DSGVO Framework. Erstellt mit &#9829; von %sData443%s."
2967
+
2968
+ #: views/admin/settings-page.php:47
2969
+ #, php-format
2970
+ msgctxt "(Admin)"
2971
+ msgid "Support our development efforts! leave a %s5-star rating%s."
2972
+ msgstr ""
2973
+ "Unterstütze unsere Entwicklungsarbeit! Hinterlasse eine %s5-Sterne Bewertung"
2974
+ "%s."
2975
+
2976
+ #: views/admin/support/contents.php:5 views/installer/steps/finish.php:10
2977
+ msgctxt "(Admin)"
2978
+ msgid "Need more info?"
2979
+ msgstr "Benötigst Du weitere Informationen?"
2980
+
2981
+ #: views/admin/support/contents.php:11 views/installer/steps/finish.php:16
2982
+ msgctxt "(Admin)"
2983
+ msgid "Site Owner's guide to GDPR"
2984
+ msgstr "DSGVO-Handbuch für Website-Besitzer"
2985
+
2986
+ #: views/admin/support/contents.php:14 views/installer/steps/finish.php:19
2987
+ msgctxt "(Admin)"
2988
+ msgid "Read the full guide on GDPR compliance."
2989
+ msgstr "Lesen Sie das vollständige Handbuch zur DSGVO-Konformität."
2990
+
2991
+ #: views/admin/support/contents.php:20 views/installer/steps/finish.php:25
2992
+ msgctxt "(Admin)"
2993
+ msgid "Knowledge base"
2994
+ msgstr "Wissensdatenbank"
2995
+
2996
+ #: views/admin/support/contents.php:23 views/installer/steps/finish.php:28
2997
+ msgctxt "(Admin)"
2998
+ msgid "Check out the knowledge base for common questions and answers."
2999
+ msgstr "In der Wissensdatenbank findest Du allgemeine Fragen und Antworten."
3000
+
3001
+ #: views/admin/support/contents.php:29 views/installer/steps/finish.php:34
3002
+ msgctxt "(Admin)"
3003
+ msgid "Developer's guide to GDPR"
3004
+ msgstr "Leitfaden für Entwickler zur DSGVO"
3005
+
3006
+ #: views/admin/support/contents.php:32 views/installer/steps/finish.php:37
3007
+ msgctxt "(Admin)"
3008
+ msgid "We have a thorough guide to help making custom sites compliant."
3009
+ msgstr ""
3010
+ "Wir haben eine umfassende Anleitung, um benutzerdefinierte Websites DSGVO-"
3011
+ "konform zu machen."
3012
+
3013
+ #: views/admin/support/contents.php:40 views/installer/steps/finish.php:45
3014
+ msgctxt "(Admin)"
3015
+ msgid "Need help?"
3016
+ msgstr "Brauchen Sie Hilfe?"
3017
+
3018
+ #: views/admin/support/contents.php:46 views/installer/steps/finish.php:51
3019
+ msgctxt "(Admin)"
3020
+ msgid "Submit a support request"
3021
+ msgstr "Erstelle ein Supportanfrage"
3022
+
3023
+ #: views/admin/support/contents.php:49 views/installer/steps/finish.php:54
3024
+ msgctxt "(Admin)"
3025
+ msgid ""
3026
+ "Found a bug or have a question about the plugin? Submit a support request "
3027
+ "and we’ll get right on it!"
3028
+ msgstr ""
3029
+ "Du hast einen Fehler gefunden oder hast eine Frage zum Plugin? Sende eine "
3030
+ "Supportanfrage und wir kümmern uns darum!"
3031
+
3032
+ #: views/admin/support/contents.php:55 views/installer/steps/finish.php:60
3033
+ msgctxt "(Admin)"
3034
+ msgid "Request a consultation"
3035
+ msgstr "Fordere eine Beratung an"
3036
+
3037
+ #: views/admin/support/contents.php:58 views/installer/steps/finish.php:63
3038
+ msgctxt "(Admin)"
3039
+ msgid "Need assistance in making your site compliant? We can help!"
3040
+ msgstr ""
3041
+ "Benötigst Du Hilfe um Deine Website kompatibel zu machen? Wir können Dir "
3042
+ "helfen!"
3043
+
3044
+ #: views/admin/wizard-buttons.php:2
3045
+ msgctxt "(Admin)"
3046
+ msgid "Restart setup wizard"
3047
+ msgstr "Installationsassistenten erneut starten"
3048
+
3049
+ #: views/email/action-export.php:8 views/email/action-forget.php:12
3050
+ msgctxt "(Admin)"
3051
+ msgid ""
3052
+ "This email is just for your information. You don't need to take any action"
3053
+ msgstr ""
3054
+ "Diese E-Mail ist nur zu Deinen Information. Du musst keine Maßnahmen "
3055
+ "ergreifen"
3056
+
3057
+ #: views/email/action-forget.php:8
3058
+ msgctxt "(Admin)"
3059
+ msgid "The data subject had a user account on your website."
3060
+ msgstr "Die betroffene Person hatte ein Benutzerkonto auf Deiner Website."
3061
+
3062
+ #: views/email/identify-data-subject.php:2
3063
+ msgid "Someone has requested access to your data on"
3064
+ msgstr "Jemand hat Zugriff auf Deine Daten angefordert"
3065
+
3066
+ #: views/email/identify-data-subject.php:3
3067
+ msgid "If this was a mistake, just ignore this email and nothing will happen."
3068
+ msgstr ""
3069
+ "Falls Du diese E-Mail irrtümlich erhalten hast: Ignoriere sie bitte. Es wird "
3070
+ "nichts weiter passieren."
3071
+
3072
+ #: views/email/identify-data-subject.php:4
3073
+ msgid "To manage your data, visit the following address:"
3074
+ msgstr "Um Deine Daten zu verwalten, besuche die folgende Adresse:"
3075
+
3076
+ #: views/email/identify-data-subject.php:10
3077
+ msgid "This link is valid for 15 minutes."
3078
+ msgstr "Dieser Link ist 15 Minuten gültig."
3079
+
3080
+ #: views/email/no-data.php:2
3081
+ msgid "Someone has requested information about your personal data on"
3082
+ msgstr "Jemand hat Auskunft über Deine personenbezogenen Daten erbeten auf"
3083
+
3084
+ #: views/email/no-data.php:3
3085
+ msgid "None of your personal data is stored on"
3086
+ msgstr "Keine Deiner persönlichen Daten wurden gespeichert auf"
3087
+
3088
+ #: views/email/no-data.php:5
3089
+ msgid ""
3090
+ "If this was a mistake or you did not request this email, just ignore it and "
3091
+ "nothing will happen."
3092
+ msgstr ""
3093
+ "Falls Du diese E-Mail irrtümlich erhalten hast: Ignorieren sie bitte. Es "
3094
+ "wird nichts weiter passieren."
3095
+
3096
+ #: views/email/request-export.php:13 views/email/request-forget.php:13
3097
+ msgctxt "(Admin)"
3098
+ msgid "As a reminder: according to GDPR, you have 30 days to comply."
3099
+ msgstr "Zur Erinnerung: Gemäß der DSGVO hast Du 30 Tage Zeit dem nachzukommen."
3100
+
3101
+ #: views/global/delete-action.php:2
3102
+ msgctxt "(Admin)"
3103
+ msgid "Automatically anonymize data"
3104
+ msgstr "Daten automatisch anonymisieren"
3105
+
3106
+ #: views/global/delete-action.php:5
3107
+ msgctxt "(Admin)"
3108
+ msgid "Automatically delete data"
3109
+ msgstr "Slett automatisk data"
3110
+
3111
+ #: views/global/delete-action.php:9
3112
+ msgctxt "(Admin)"
3113
+ msgid "Automatically anonymize data and notify me via email"
3114
+ msgstr "Daten automatisch anonymisieren und mich über Email benachrichtigen"
3115
+
3116
+ #: views/global/delete-action.php:13
3117
+ msgctxt "(Admin)"
3118
+ msgid "Automatically delete data and notify me via email"
3119
+ msgstr "Slett automatisk data og gi meg melding via epost"
3120
+
3121
+ #: views/global/delete-action.php:16 views/global/export-action.php:10
3122
+ msgctxt "(Admin)"
3123
+ msgid "Only notify me via email"
3124
+ msgstr "Mich lediglich über Email benachrichtigen"
3125
+
3126
+ #: views/global/export-action.php:2
3127
+ msgctxt "(Admin)"
3128
+ msgid "Automatically download data"
3129
+ msgstr "Daten automatisch downloaden"
3130
+
3131
+ #: views/global/export-action.php:6
3132
+ #, fuzzy
3133
+ #| msgctxt "(Admin)"
3134
+ #| msgid "Automatically download data and notify me via email"
3135
+ msgctxt "(Admin)"
3136
+ msgid "Automatically download data and notify me via email"
3137
+ msgstr "Daten automatisch herunterladen und mich über E-Mail benachrichtigen"
3138
+
3139
+ #: views/global/position-action.php:2
3140
+ msgctxt "(Admin)"
3141
+ msgid "Banner bottom"
3142
+ msgstr "Banner unten"
3143
+
3144
+ #: views/global/position-action.php:5
3145
+ msgctxt "(Admin)"
3146
+ msgid "Floating left"
3147
+ msgstr "Schwebend links"
3148
+
3149
+ #: views/global/position-action.php:8
3150
+ msgctxt "(Admin)"
3151
+ msgid "Floating Right"
3152
+ msgstr "Rechts schwebend"
3153
+
3154
+ #: views/global/position-action.php:11
3155
+ msgctxt "(Admin)"
3156
+ msgid "Banner top"
3157
+ msgstr "Banner oben"
3158
+
3159
+ #: views/global/theme-action.php:2
3160
+ msgctxt "(Admin)"
3161
+ msgid "Default"
3162
+ msgstr "Standard"
3163
+
3164
+ #: views/global/theme-action.php:5
3165
+ msgctxt "(Admin)"
3166
+ msgid "Classic"
3167
+ msgstr "Klassisch"
3168
+
3169
+ #: views/global/theme-action.php:8
3170
+ msgctxt "(Admin)"
3171
+ msgid "Edgeless"
3172
+ msgstr "Randlos"
3173
+
3174
+ #: views/installer/continue-notice.php:2
3175
+ msgctxt "(Admin)"
3176
+ msgid "The The GDPR Framework setup has not been finalized yet."
3177
+ msgstr "Die Einrichtung des DSGVO Frameworks ist noch nicht abgeschlossen."
3178
+
3179
+ #: views/installer/continue-notice.php:3
3180
+ msgctxt "(Admin)"
3181
+ msgid "You can continue the setup at any time."
3182
+ msgstr "Sie können die Einrichtung jederzeit fortsetzen."
3183
+
3184
+ #: views/installer/continue-notice.php:6
3185
+ msgctxt "(Admin)"
3186
+ msgid "Continue the setup wizard"
3187
+ msgstr "Weiter mit dem Einrichtungsassistenten"
3188
+
3189
+ #: views/installer/continue-notice.php:9
3190
+ msgctxt "(Admin)"
3191
+ msgid "Hide this message"
3192
+ msgstr "Diese Nachricht ausblenden"
3193
+
3194
+ #: views/installer/footer.php:7
3195
+ msgid "Back"
3196
+ msgstr "Zurück"
3197
+
3198
+ #: views/installer/header.php:7
3199
+ msgctxt "(Admin)"
3200
+ msgid "WordPress GDPR &rsaquo; Setup Wizard"
3201
+ msgstr "WordPress DSGVO &rsaquo; Fehler"
3202
+
3203
+ #: views/installer/header.php:23
3204
+ msgctxt "(Admin)"
3205
+ msgid "The GDPR Framework"
3206
+ msgstr "The GDPR Framework"
3207
+
3208
+ #: views/installer/header.php:26
3209
+ msgctxt "(Admin)"
3210
+ msgid "I need help"
3211
+ msgstr "Ich brauche Hilfe"
3212
+
3213
+ #: views/installer/header.php:29
3214
+ msgctxt "(Admin)"
3215
+ msgid "Developer Docs"
3216
+ msgstr "Entwickler Dokumentation"
3217
+
3218
+ #: views/installer/header.php:36
3219
+ msgctxt "(Admin)"
3220
+ msgid "Configuration"
3221
+ msgstr "Konfiguration"
3222
+
3223
+ #: views/installer/header.php:46
3224
+ msgctxt "(Admin)"
3225
+ msgid "Forms & Consent"
3226
+ msgstr "Formulare & Zustimmung"
3227
+
3228
+ #: views/installer/header.php:51
3229
+ msgctxt "(Admin)"
3230
+ msgid "Integrations"
3231
+ msgstr "Integrationen"
3232
+
3233
+ #: views/installer/privacy-safe-notice.php:3
3234
+ msgctxt "(Admin)"
3235
+ msgid ""
3236
+ "Strengthen your reputation. Privacy safe gives your customers total control "
3237
+ "of their private information. The privacy safe seal assures your new "
3238
+ "customers that your business is in compliance with new privacy laws and "
3239
+ "regulations. For the privacy safe seal will verify that GDPR Framework "
3240
+ "plugin is installed."
3241
+ msgstr ""
3242
+ "Stärken Sie Ihren Ruf. Das Privacy Safe-Siegel versichert Ihren Kunden, dass "
3243
+ "Ihr Unternehmen die Datenschutzgesetze und -vorschriften einhält. Das "
3244
+ "Privacy Safe-Siegel überprüft, ob das DSGVO Framework-Plugin installiert ist."
3245
+
3246
+ #: views/installer/privacy-safe-notice.php:9
3247
+ msgctxt "(Admin)"
3248
+ msgid "Learn More"
3249
+ msgstr "Mehr erfahren"
3250
+
3251
+ #: views/installer/privacy-safe-notice.php:12
3252
+ msgctxt "(Admin)"
3253
+ msgid "Maybe Later"
3254
+ msgstr "Vielleicht später"
3255
+
3256
+ #: views/installer/steps/configuration-settings.php:23
3257
+ #: views/installer/steps/configuration-settings.php:73
3258
+ msgctxt "(Admin)"
3259
+ msgid "Enter the email address to notify"
3260
+ msgstr "Gib die zu benachrichtigende E-Mail-Adresse ein"
3261
+
3262
+ #: views/installer/steps/disclaimer.php:21
3263
+ msgctxt "(Admin)"
3264
+ msgid "I accept"
3265
+ msgstr "Ich akzeptierte"
3266
+
3267
+ #: views/installer/welcome-notice.php:2
3268
+ msgctxt "(Admin)"
3269
+ msgid "The GDPR Framework has not been set up yet. Would you like to do that?"
3270
+ msgstr ""
3271
+ "Die Einrichtung des DSGVO Frameworks ist noch nicht abgeschlossen. Möchtest "
3272
+ "du das machen?"
3273
+
3274
+ #: views/installer/welcome-notice.php:3
3275
+ msgctxt "(Admin)"
3276
+ msgid "Our setup wizard will guide you through the process."
3277
+ msgstr "Unser Setup-Assistent führt Sie durch den Prozess."
3278
+
3279
+ #: views/installer/welcome-notice.php:4
3280
+ msgctxt "(Admin)"
3281
+ msgid "You can also configure the plugin manually by going to"
3282
+ msgstr "Sie können das Plugin auch manuell konfigurieren, indem Sie zu"
3283
+
3284
+ #: views/installer/welcome-notice.php:5
3285
+ msgctxt "(Admin)"
3286
+ msgid "Tools"
3287
+ msgstr "Werkzeuge"
3288
+
3289
+ #: views/installer/welcome-notice.php:10
3290
+ msgctxt "(Admin)"
3291
+ msgid "Run the setup wizard"
3292
+ msgstr "Einrichtungsassistent jetzt starten"
3293
+
3294
+ #: views/installer/welcome-notice.php:14
3295
+ msgctxt "(Admin)"
3296
+ msgid "Auto-install pages"
3297
+ msgstr "Seiten automatisch einrichten"
3298
+
3299
+ #: views/installer/welcome-notice.php:18
3300
+ msgctxt "(Admin)"
3301
+ msgid "Skip and install manually"
3302
+ msgstr "Überspringen und manuell einrichten"
3303
+
3304
+ #: views/modules/contact-form-7/form-privacy-tab.php:10
3305
+ msgctxt "(Admin)"
3306
+ msgid ""
3307
+ "Include the entries of this form when downloading or deleting a data "
3308
+ "subject's data."
3309
+ msgstr ""
3310
+ "Füge dies Formulareinträge beim Herunterladen oder Löschen der Daten einer "
3311
+ "betroffenen Person hinzu."
3312
+
3313
+ #: views/modules/contact-form-7/form-privacy-tab.php:18
3314
+ msgctxt "(Admin)"
3315
+ msgid ""
3316
+ "Select the mail-tag of the sender's email field (for example, your-email)."
3317
+ msgstr ""
3318
+ "Wähle das Mail-Tag für das E-Mail-Feld des Absenders aus. Beispiel: deine-"
3319
+ "email."
3320
+
3321
+ #: views/modules/contact-form-7/generator-privacy.php:6
3322
+ msgctxt "(Admin)"
3323
+ msgid ""
3324
+ "This tag generates the default text for Terms & Conditions and/or Privacy "
3325
+ "Policy checkbox."
3326
+ msgstr ""
3327
+ "Dieser Tag generiert den Standardtext für die Checkbox der "
3328
+ "Geschäftsbedingungen und/oder Datenschutzerklärung."
3329
+
3330
+ #: views/modules/contact-form-7/generator-privacy.php:15
3331
+ msgid "Insert"
3332
+ msgstr "Einfügen"
3333
+
3334
+ #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:3
3335
+ #: views/privacy-tools/form-consent.php:2
3336
+ msgid "Consent"
3337
+ msgstr "Zustimmung"
3338
+
3339
+ #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:6
3340
+ #: views/privacy-tools/form-consent.php:6
3341
+ msgid "Here you can withdraw any consents you have given."
3342
+ msgstr "Hier kannst Du Deine gegebenen Einwilligungen widerrufen."
3343
+
3344
+ #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:8
3345
+ msgid "Consents"
3346
+ msgstr "Einwilligungen"
3347
+
3348
+ #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:23
3349
+ #: views/privacy-tools/form-consent.php:24
3350
+ msgid "Withdraw"
3351
+ msgstr "Widerrufen"
3352
+
3353
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:5
3354
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:5
3355
+ msgctxt "(Admin)"
3356
+ msgid "Delete this user and all data"
3357
+ msgstr "Diesen Benutzer und alle Daten löschen"
3358
+
3359
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:11
3360
+ msgctxt "(Admin)"
3361
+ msgid "Delete my data"
3362
+ msgstr "Lösche meine Daten"
3363
+
3364
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:15
3365
+ #: views/privacy-tools/form-delete.php:4 views/privacy-tools/form-delete.php:24
3366
+ msgid "Delete all data we have gathered about you."
3367
+ msgstr "Lösche alle Daten, die auf dieser Seite über Dich gesammelt wurden."
3368
+
3369
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:16
3370
+ #: views/privacy-tools/form-delete.php:5 views/privacy-tools/form-delete.php:25
3371
+ msgid "If you have a user account on our site, it will also be deleted."
3372
+ msgstr ""
3373
+ "Falls Du auf unserer Website ein Benutzerkonto hast, wird dieses ebenfalls "
3374
+ "gelöscht."
3375
+
3376
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:17
3377
+ #: views/privacy-tools/form-delete.php:6 views/privacy-tools/form-delete.php:26
3378
+ msgid "Be careful - this action is permanent and CANNOT be undone."
3379
+ msgstr ""
3380
+ "Sei vorsichtig - diese Aktion ist dauerhaft und kann NICHT rückgängig "
3381
+ "gemacht werden."
3382
+
3383
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:19
3384
+ #: views/privacy-tools/form-delete.php:8
3385
+ msgid "Note Regarding Order:"
3386
+ msgstr "Hinweis zur Bestellung:"
3387
+
3388
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:20
3389
+ #: views/privacy-tools/form-delete.php:9
3390
+ msgid ""
3391
+ "Your order with status Processing will not get deleted until status change."
3392
+ msgstr ""
3393
+ "Ihre Bestellung mit Statusverarbeitung wird erst gelöscht, wenn sich der "
3394
+ "Status ändert."
3395
+
3396
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:21
3397
+ #: views/privacy-tools/form-delete.php:10
3398
+ msgid "Your order with status Completed will get anonymize."
3399
+ msgstr "Ihre Bestellung mit dem Status Abgeschlossen wird anonymisiert."
3400
+
3401
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:22
3402
+ #: views/privacy-tools/form-delete.php:11
3403
+ msgid "If you delete Completed order you can't apply for refund."
3404
+ msgstr ""
3405
+ "Wenn Sie die abgeschlossene Bestellung löschen, können Sie keine Erstattung "
3406
+ "beantragen."
3407
+
3408
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:28
3409
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:23
3410
+ msgctxt "(Admin)"
3411
+ msgid ""
3412
+ "You seem to have an administrator or equivalent role, so deleting/"
3413
+ "anonymizing via this page is disabled."
3414
+ msgstr ""
3415
+ "Du scheinst die Rolle eines Administrators oder eine gleichwertige Rolle zu "
3416
+ "haben, so dass löschen/anonymisieren über diese Seite deaktiviert ist."
3417
+
3418
+ #: views/modules/wordpress-user/dashboard/form-export.php:7
3419
+ #: views/privacy-tools/form-export.php:1
3420
+ msgid "Download your data"
3421
+ msgstr "Lade Deine Ihre Daten herunter"
3422
+
3423
+ #: views/modules/wordpress-user/dashboard/form-export.php:12
3424
+ #: views/privacy-tools/form-export.php:13
3425
+ msgid "Download as table"
3426
+ msgstr "Als Tabelle herunterladen"
3427
+
3428
+ #: views/modules/wordpress-user/dashboard/form-export.php:15
3429
+ #: views/privacy-tools/form-export.php:22
3430
+ msgid "Export as JSON"
3431
+ msgstr "Export als JSON"
3432
+
3433
+ #: views/modules/wordpress-user/dashboard/form-export.php:19
3434
+ #: views/privacy-tools/form-export.php:4
3435
+ msgid "You can download all your data formatted as a table for viewing."
3436
+ msgstr ""
3437
+ "Für eine einfachere Betrachtung kannst Du all Deine Daten in Form einer "
3438
+ "Tabelle herunterladen."
3439
+
3440
+ #: views/modules/wordpress-user/dashboard/form-export.php:20
3441
+ #: views/privacy-tools/form-export.php:5
3442
+ msgid "Alternatively, you can export it in machine-readable JSON format."
3443
+ msgstr "Alternativ kannst Du sie im maschinenlesbaren JSON-Format exportieren."
3444
+
3445
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:11
3446
+ msgctxt "(Admin)"
3447
+ msgid "Delete user and all data"
3448
+ msgstr "Diesen Benutzer und alle Daten löschen"
3449
+
3450
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:14
3451
+ msgctxt "(Admin)"
3452
+ msgid "Anonymize user and all data"
3453
+ msgstr "Diesen Benutzer und alle Daten anonymisieren"
3454
+
3455
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:18
3456
+ msgctxt "gdpr-framework"
3457
+ msgid "Be careful - this action is permanent and CANNOT be undone."
3458
+ msgstr ""
3459
+ "Sei vorsichtig - diese Aktion ist dauerhaft und kann NICHT rückgängig "
3460
+ "gemacht werden."
3461
+
3462
+ #: views/modules/wordpress-user/dashboard/profile-page/header.php:2
3463
+ msgctxt "(Admin)"
3464
+ msgid "GDPR Data"
3465
+ msgstr "DSGVO Daten"
3466
+
3467
+ #: views/modules/wordpress-user/dashboard/profile-page/header.php:6
3468
+ #, fuzzy
3469
+ #| msgctxt "(Admin)"
3470
+ #| msgid "This user has been anonymized."
3471
+ msgctxt "(Admin)"
3472
+ msgid "This user has been anonymized."
3473
+ msgstr "Dieser Benutzer wurde anonymisiert."
3474
+
3475
+ #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:17
3476
+ msgctxt "(Admin)"
3477
+ msgid "No consents given"
3478
+ msgstr "Ingen samtykker gitt"
3479
+
3480
+ #: views/modules/wordpress-user/dashboard/profile-page/user-logs.php:2
3481
+ msgctxt "gdpr-framework"
3482
+ msgid "GDPR User logs"
3483
+ msgstr "DSGVO Benutzerprotokolle"
3484
+
3485
+ #: views/modules/wordpress-user/dashboard/profile-page/user-logs.php:8
3486
+ #, fuzzy
3487
+ msgctxt "gdpr-framework"
3488
+ msgid "S.no"
3489
+ msgstr "S.no"
3490
+
3491
+ #: views/modules/wordpress-user/dashboard/profile-page/user-logs.php:9
3492
+ msgctxt "gdpr-framework"
3493
+ msgid "User ID"
3494
+ msgstr "Benutzer ID"
3495
+
3496
+ #: views/modules/wordpress-user/dashboard/profile-page/user-logs.php:10
3497
+ #, fuzzy
3498
+ msgctxt "gdpr-framework"
3499
+ msgid "User logs"
3500
+ msgstr "DSGVO Benutzerprotokolle"
3501
+
3502
+ #: views/modules/wordpress-user/dashboard/profile-page/user-logs.php:11
3503
+ msgctxt "gdpr-framework"
3504
+ msgid "Updated date"
3505
+ msgstr "Aktualisiertes Datum"
3506
+
3507
+ #: views/modules/wordpress-user/dashboard/profile-page/user-logs.php:50
3508
+ #, fuzzy
3509
+ msgctxt "gdpr-framework"
3510
+ msgid "No User Logs"
3511
+ msgstr "DSGVO Benutzerprotokolle"
3512
+
3513
+ #: views/privacy-tools/donotsell.php:14
3514
+ msgid "Do Not Sell Request"
3515
+ msgstr "\"Do Not Sell\" Antrag"
3516
+
3517
+ #: views/privacy-tools/donotsell.php:51
3518
+ msgid "I agree to receive other communications from "
3519
+ msgstr "Ich stimme zu, andere Mitteilungen von "
3520
+
3521
+ #: views/privacy-tools/donotsell.php:61
3522
+ msgctxt "(Admin)"
3523
+ msgid "Send Request"
3524
+ msgstr "Anfrage senden"
3525
+
3526
+ #: views/privacy-tools/form-consent.php:9
3527
+ msgid "Consent types"
3528
+ msgstr "Arten der Zustimmung"
3529
+
3530
+ #: views/privacy-tools/form-delete.php:1
3531
+ #: views/privacy-tools/notice-admin-role.php:1
3532
+ msgid "Delete my user and data"
3533
+ msgstr "Mein Benutzerkonto und meine Daten löschen"
3534
+
3535
+ #: views/privacy-tools/form-delete.php:18
3536
+ #: views/privacy-tools/form-delete.php:30
3537
+ msgid "Delete my data"
3538
+ msgstr "Meine Daten löschen"
3539
+
3540
+ #: views/privacy-tools/form-identify.php:8
3541
+ #, fuzzy
3542
+ msgid "Back to front page"
3543
+ msgstr "Zurück zur Startseite"
3544
+
3545
+ #: views/privacy-tools/form-identify.php:14
3546
+ msgid "Please identify yourself via e-mail"
3547
+ msgstr "Bitte identifiziere Dich per E-Mail"
3548
+
3549
+ #: views/privacy-tools/form-identify.php:17
3550
+ #: views/privacy-tools/form-identify.php:20
3551
+ msgid "Enter your email address"
3552
+ msgstr "Gib Deine E-Mail-Adresse ein"
3553
+
3554
+ #: views/privacy-tools/form-identify.php:23
3555
+ msgid "Send email"
3556
+ msgstr "E-Mail senden"
3557
+
3558
+ #: views/privacy-tools/notice-admin-role.php:4
3559
+ msgctxt "(Admin)"
3560
+ msgid "Data deletion is disabled for administrative accounts."
3561
+ msgstr "Die Datenlöschung ist für administrative Konten deaktiviert."
3562
+
3563
+ #: views/privacy-tools/notices.php:3
3564
+ msgid ""
3565
+ "We will send you an email with the link to access your data. Please check "
3566
+ "your spam folder as well!"
3567
+ msgstr ""
3568
+ "Wir senden Dir eine E-Mail mit einem Link, um auf Deine Daten zuzugreifen. "
3569
+ "Bitte überprüfe auch Deinen Spam-Ordner!"
3570
+
3571
+ #: views/privacy-tools/notices.php:7
3572
+ msgid "The email you entered does not appear to be a valid email."
3573
+ msgstr "Die eingegebene E-Mail-Adresse scheint ungültig zu sein."
3574
+
3575
+ #: views/privacy-tools/notices.php:11
3576
+ msgid "Sorry - the link seems to have expired. Please try again!"
3577
+ msgstr ""
3578
+ "Entschuldigung - der Link scheint abgelaufen zu sein. Bitte versuche es "
3579
+ "erneut!"
3580
+
3581
+ #: views/privacy-tools/notices.php:23
3582
+ msgid "Your personal data has been removed!"
3583
+ msgstr "Deine personenbezogenen Daten wurden gelöscht!"
3584
+
3585
+ #: views/privacy-tools/privacy-tools.php:5
3586
+ msgid "You are identified as"
3587
+ msgstr "Du bist indentifiziert als"
3588
+
3589
+ #. Plugin Name of the plugin/theme
3590
+ msgid "The GDPR Framework"
3591
+ msgstr "The GDPR Framework"
3592
+
3593
+ #. Plugin URI of the plugin/theme
3594
+ msgid "https://www.data443.com/gdpr-framework/"
3595
+ msgstr "https://www.data443.com/gdpr-framework/"
3596
+
3597
+ #. Description of the plugin/theme
3598
+ msgid ""
3599
+ "Tools to help make your website GDPR-compliant. Fully documented, extendable "
3600
+ "and developer-friendly."
3601
+ msgstr ""
3602
+ "Tools, die Dir helfen, Deine Website DSGVO konform zu machen. Vollständig "
3603
+ "dokumentiert, erweiterbar und entwicklerfreundlich."
3604
+
3605
+ #. Author of the plugin/theme
3606
+ msgid "Data443"
3607
+ msgstr "Data443"
3608
+
3609
+ #. Author URI of the plugin/theme
3610
+ msgid "https://www.data443.com/"
3611
+ msgstr "https://www.data443.com/"
3612
+
3613
+ #~ msgid "Leave blank if privacy policy page already selected"
3614
+ #~ msgstr ""
3615
+ #~ "Lasse dieses Feld leer, wenn Du die Seite mit den Datenschutzbestimmungen "
3616
+ #~ "bereits ausgewählt hast"
languages/gdpr-framework-el.mo CHANGED
Binary file
languages/gdpr-framework-el.po CHANGED
@@ -7,8 +7,8 @@ msgid ""
7
  msgstr ""
8
  "Project-Id-Version: The GDPR Framework 1.0\n"
9
  "Report-Msgid-Bugs-To: gdpr@codelight.eu\n"
10
- "POT-Creation-Date: 2018-04-16 10:50+0000\n"
11
- "PO-Revision-Date: 2019-09-19 12:39+0530\n"
12
  "Last-Translator: john maniatopoulos <webace.wp@gmail.com>\n"
13
  "Language-Team: Greek\n"
14
  "Language: el\n"
@@ -16,34 +16,51 @@ msgstr ""
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
18
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
19
- "X-Generator: Poedit 1.5.7\n"
20
 
21
- #: gdpr-framework.php:26
 
 
 
22
  msgctxt "(Admin)"
23
  msgid "WordPress GDPR &rsaquo; Error"
24
  msgstr "WordPress GDPR & rsaquo; Λάθος"
25
 
26
- #: gdpr-framework.php:35
 
 
 
 
 
 
 
 
27
  msgctxt "(Admin)"
28
  msgid "Invalid PHP version"
29
  msgstr "Μη έγκυρη έκδοση PHP"
30
 
31
- #: gdpr-framework.php:35
 
 
 
32
  msgctxt "(Admin)"
33
- msgid "You must be using PHP 5.6.33 or greater."
34
- msgstr "Πρέπει να χρησιμοποιείτε την PHP 5.6.33 ή μεγαλύτερη."
35
 
36
- #: gdpr-framework.php:42
 
 
 
37
  msgctxt "(Admin)"
38
  msgid "Invalid WordPress version"
39
  msgstr "Μη έγκυρη έκδοση WordPress"
40
 
41
- #: gdpr-framework.php:42
42
  msgctxt "(Admin)"
43
- msgid "You must be using WordPress 4.3.0 or greater."
44
- msgstr "Πρέπει να χρησιμοποιείτε WordPress 4.3.0 ή μεγαλύτερη."
45
 
46
- #: gdpr-framework.php:52
47
  msgctxt "(Admin)"
48
  msgid ""
49
  "You appear to be running a development version of GDPR. You must run "
@@ -52,22 +69,54 @@ msgstr ""
52
  "Σας φαίνεται να λειτουργεί μια έκδοση ανάπτυξης του GDPR πρέπει να "
53
  "εκτελέσετε το <code>composer install</code> από τον κατάλογο του plugin."
54
 
55
- #: gdpr-framework.php:53
 
 
 
56
  msgctxt "(Admin)"
57
  msgid "Autoloader not found."
58
  msgstr "Autoloader δεν βρέθηκε."
59
 
60
- #: gdpr-framework.php:115
61
- msgctxt "(Admin)"
62
- msgid "Anonymous"
63
- msgstr "Ανώνυμος"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64
 
65
- #: src/Admin/AdminTab.php:115
 
 
 
 
 
 
66
  msgctxt "(Admin)"
67
  msgid "Save"
68
  msgstr "Αποθήκευση"
69
 
70
- #: src/Admin/AdminTab.php:151
71
  msgctxt "(Admin)"
72
  msgid "Policy generated!"
73
  msgstr "Πολιτική που δημιουργήθηκε!"
@@ -77,120 +126,300 @@ msgctxt "(Admin)"
77
  msgid "General"
78
  msgstr "Γενικά"
79
 
80
- #: src/Admin/AdminTabGeneral.php:38
81
  msgctxt "(Admin)"
82
  msgid "General Settings"
83
- msgstr "General Settings"
84
 
85
- #: src/Admin/AdminTabGeneral.php:43
86
  msgctxt "(Admin)"
87
  msgid "Enable Privacy Tools"
88
- msgstr "Ενεργοποίηση εργαλείων προστασίας προσωπικών δεδομένων"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89
 
90
- #: src/Admin/AdminTabGeneral.php:53
91
  msgctxt "(Admin)"
92
  msgid "Pages"
93
  msgstr "Σελίδες"
94
 
95
- #: src/Admin/AdminTabGeneral.php:58 src/Admin/WordpressAdmin.php:151
 
 
 
96
  msgctxt "(Admin)"
97
  msgid "Privacy Tools Page"
98
  msgstr "Εργαλεία σελίδας απορρήτου"
99
 
100
- #: src/Admin/AdminTabGeneral.php:65 src/Admin/WordpressAdmin.php:147
 
 
 
 
 
 
 
 
101
  msgctxt "(Admin)"
102
  msgid "Privacy Policy Page"
103
- msgstr "Σελίδα Πολιτικής Απορρήτου"
 
 
 
 
 
104
 
105
- #: src/Admin/AdminTabGeneral.php:72
106
  msgctxt "(Admin)"
107
  msgid "Terms & Conditions Page"
108
  msgstr "Σελίδα Όρων & Προϋποθέσεων"
109
 
110
- #: src/Admin/AdminTabGeneral.php:82
 
 
 
 
 
 
 
 
111
  msgctxt "(Admin)"
112
  msgid "View & Export Data"
113
- msgstr "Προβολή & εξαγωγή δεδομένων"
114
 
115
- #: src/Admin/AdminTabGeneral.php:87
 
 
 
116
  msgctxt "(Admin)"
117
  msgid "Export action"
118
  msgstr "Εξαγωγή"
119
 
120
- #: src/Admin/AdminTabGeneral.php:94 src/Admin/AdminTabGeneral.php:133
121
  msgctxt "(Admin)"
122
  msgid "Email to notify"
123
  msgstr "Διεύθυνση ηλεκτρονικού ταχυδρομείου για κοινοποίηση"
124
 
125
- #: src/Admin/AdminTabGeneral.php:105
 
 
 
126
  msgctxt "(Admin)"
127
  msgid "Delete & Anonymize Data"
128
  msgstr "Διαγραφή του & ανωνυμία δεδομένων"
129
 
130
- #: src/Admin/AdminTabGeneral.php:110
 
 
 
131
  msgctxt "(Admin)"
132
  msgid "Delete action"
133
  msgstr "Διαγραφή ενέργειας"
134
 
135
- #: src/Admin/AdminTabGeneral.php:117
 
 
 
136
  msgctxt "(Admin)"
137
  msgid "Delete or reassign content?"
138
  msgstr "Διαγράψετε ή να εκχωρήσετε εκ νέου περιεχομένου;"
139
 
140
- #: src/Admin/AdminTabGeneral.php:125
 
 
 
141
  msgctxt "(Admin)"
142
  msgid "Reassign content to"
143
  msgstr "Επανατοποθετήστε περιεχόμενο σε"
144
 
145
- #: src/Admin/AdminTabGeneral.php:145
146
  msgctxt "(Admin)"
147
  msgid "Styling"
148
  msgstr "Μορφοποίηση"
149
 
150
- #: src/Admin/AdminTabGeneral.php:150
 
 
 
151
  msgctxt "(Admin)"
152
  msgid "Enable basic styling on Privacy Tools page"
153
  msgstr "Ενεργοποίηση βασικού στυλ στη σελίδα εργαλεία απορρήτου"
154
 
155
- #: src/Admin/AdminTabGeneral.php:162
156
  msgctxt "(Admin)"
157
  msgid "Compatibility"
158
  msgstr "Συμβατότητα"
159
 
160
- #: src/Admin/AdminTabGeneral.php:167
161
  msgctxt "(Admin)"
162
  msgid "Enable automatic theme compatibility"
163
  msgstr "Ενεργοποίηση αυτόματης συμβατότητας θέματος"
164
 
165
- #: src/Admin/AdminTabGeneral.php:184 src/Admin/AdminTabGeneral.php:200
166
- #: src/Admin/AdminTabGeneral.php:213 src/Admin/AdminTabGeneral.php:252
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
167
  #: views/installer/steps/configuration-settings.php:62
168
  msgctxt "(Admin)"
169
  msgid "&mdash; Select &mdash;"
170
- msgstr "&mdash; επιλέγω &mdash;"
171
 
172
- #: src/Admin/WordpressAdmin.php:65
173
  msgctxt "(Admin)"
174
  msgid "Privacy & GDPR Settings"
175
  msgstr "Απορρήτου & GDPR ρυθμίσεις"
176
 
177
- #: src/Admin/WordpressAdmin.php:66
 
178
  msgctxt "(Admin)"
179
- msgid "Privacy"
180
- msgstr "Προστασία Απορρήτου"
 
 
 
 
 
 
 
 
 
181
 
182
  #: src/Components/Consent/AdminTabConsent.php:30
183
- #: src/Components/Consent/AdminTabConsent.php:49
184
  msgctxt "(Admin)"
185
  msgid "Consent"
186
  msgstr "Συγκατάθεση"
187
 
188
- #: src/Components/Consent/AdminTabConsent.php:157
 
 
 
 
 
 
 
 
 
 
 
 
 
 
189
  msgctxt "(Admin)"
190
  msgid "Consent slug is a required field!"
191
  msgstr "Συγκατάθεση slug είναι ένα απαιτούμενο πεδίο!"
192
 
193
- #: src/Components/Consent/AdminTabConsent.php:162
 
 
 
 
 
194
  msgctxt "(Admin)"
195
  msgid ""
196
  "You may only use alphanumeric characters, dash and underscore in the consent "
@@ -199,21 +428,47 @@ msgstr ""
199
  "Μπορείτε να χρησιμοποιήσετε μόνο αλφαριθμητικούς χαρακτήρες, παύλα και "
200
  "υπογράμμιση στο πεδίο συγκατάθεσης."
201
 
202
- #: src/Components/Consent/AdminTabConsent.php:167
 
 
 
203
  msgctxt "(Admin)"
204
  msgid "Consent title is a required field!"
205
  msgstr "Συγκατάθεση τίτλος το πεδίο είναι υποχρεωτικό!"
206
 
207
- #: src/Components/Consent/ConsentManager.php:46
208
- #: views/modules/contact-form-7/content-privacy.php:2
209
- #: views/modules/wordpress-comments/terms-checkbox.php:14
210
- #: views/modules/wordpress-user/registration-terms-checkbox.php:15
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
211
  #, php-format
212
  msgid "I accept the %sPrivacy Policy%s"
213
  msgstr "Αποδέχομαι την %sΠολιτική Προστασίας Προσωπικών Δεδομένων%s"
214
 
215
- #: src/Components/Consent/ConsentManager.php:50
216
- #: src/Components/Consent/ConsentManager.php:69
 
 
 
 
 
217
  msgctxt "(Admin)"
218
  msgid ""
219
  "This consent is not visible by default. If someone wishes to withdraw it, "
@@ -222,165 +477,516 @@ msgstr ""
222
  "Αυτή η συγκατάθεση δεν είναι ορατή από προεπιλογή. Αν κάποιος επιθυμεί να "
223
  "την αποσύρει, θα πρέπει απλώς να ζητήσει τη διαγραφή όλων των δεδομένων."
224
 
225
- #: src/Components/Consent/ConsentManager.php:65
226
  #, php-format
227
  msgid "I accept the %sTerms & Conditions%s"
228
  msgstr "Αποδέχομαι τους %sΌρους & Προϋποθέσεις%s"
229
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
230
  #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:19
231
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:61
232
  #: views/admin/privacy-policy/generated.php:1 views/installer/header.php:41
233
  msgctxt "(Admin)"
234
  msgid "Privacy Policy"
235
  msgstr "Πολιτική Απορρήτου"
236
 
237
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:70
238
  msgctxt "(Admin)"
239
  msgid "Company information"
240
  msgstr "ΠΛΗΡΟΦΟΡΙΕΣ ΓΙΑ ΤΗΝ ΕΤΑΙΡΙΑ"
241
 
242
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:75
243
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:209
244
  msgctxt "(Admin)"
245
  msgid "Company Name"
246
- msgstr "Όνομα Εταιρίας"
247
 
248
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:82
249
  msgctxt "(Admin)"
250
  msgid "Company Email"
251
  msgstr "Εταιρικό email"
252
 
253
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:89
 
 
 
254
  msgctxt "(Admin)"
255
  msgid "Company Location"
256
  msgstr "Τοποθεσία της εταιρείας"
257
 
258
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:105
259
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:245
 
 
 
260
  msgctxt "(Admin)"
261
  msgid "Representative Contact Name"
262
  msgstr "Αντιπροσωπευτικό όνομα επαφής"
263
 
264
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:112
265
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:252
 
 
 
266
  msgctxt "(Admin)"
267
  msgid "Representative Contact Email"
268
  msgstr "Εκπρόσωπος επικοινωνίας Email"
269
 
270
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:119
271
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:259
 
 
 
272
  msgctxt "(Admin)"
273
  msgid "Representative Contact Phone"
274
  msgstr "Τηλέφωνο επικοινωνίας του εκπροσώπου"
275
 
276
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:135
277
  msgctxt "(Admin)"
278
  msgid "Data Protection Authority"
279
- msgstr "Αρχή προστασίας δεδομένων"
280
 
281
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:141
282
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:286
283
  msgctxt "(Admin)"
284
  msgid "Data Protection Authority Website"
285
  msgstr "Δικτυακός τόπος της αρχής προστασίας δεδομένων"
286
 
287
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:148
288
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:293
289
  msgctxt "(Admin)"
290
  msgid "Data Protection Authority Email"
291
  msgstr "Ηλεκτρονικό ταχυδρομείο αρχής προστασίας δεδομένων"
292
 
293
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:155
294
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:300
295
  msgctxt "(Admin)"
296
  msgid "Data Protection Authority Phone"
297
  msgstr "Τηλέφωνο αρχής προστασίας δεδομένων"
298
 
299
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:165
300
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:175
 
 
 
301
  msgctxt "(Admin)"
302
  msgid "Data Protection Officer"
303
  msgstr "Υπεύθυνος προστασίας δεδομένων"
304
 
305
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:168
306
  msgctxt "(Admin)"
307
  msgid "Knowledge base: Do I need to appoint a Data Protection Officer?"
308
  msgstr ""
309
  "Γνωσιακή βάση: χρειάζεται να διορίσει έναν υπεύθυνο προστασίας δεδομένων;"
310
 
311
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:182
312
  msgctxt "(Admin)"
313
  msgid "Data Protection Officer Name"
314
- msgstr "Όνομα υπευθύνου προστασίας δεδομένων"
315
 
316
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:190
317
  msgctxt "(Admin)"
318
  msgid "Data Protection Officer Email"
319
  msgstr "Ηλεκτρονικό ταχυδρομείο υπευθύνου προστασίας δεδομένων"
320
 
321
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:216
 
 
 
 
 
 
 
 
 
322
  msgctxt "(Admin)"
323
  msgid "Contact Email"
324
  msgstr "Email επικοινωνίας"
325
 
326
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:235
 
 
 
327
  msgctxt "(Admin)"
328
  msgid "Representative Contact"
329
  msgstr "Εκπρόσωπος επικοινωνίας"
330
 
331
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:238
332
  msgctxt "(Admin)"
333
  msgid "Knowledge base: Do I need to appoint an EU-based representative?"
334
  msgstr "Γνωσιακή Βάση : πρέπει να διορίζει έναν εκπρόσωπο που εδρεύει στην ΕΕ;"
335
 
336
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:317
337
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:324
 
 
 
 
 
338
  msgctxt "(Admin)"
339
  msgid "DPO Name"
340
- msgstr "Όνομα DPO"
 
 
 
 
 
341
 
342
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:420
 
 
 
343
  msgctxt "(Admin)"
344
  msgid "Save & Generate Policy"
345
  msgstr "Αποθήκευση & Δημιουργία πολιτικής"
346
 
347
- #: src/Components/PrivacyPolicy/PrivacyPolicy.php:82
348
- #: src/Installer/Installer.php:271 src/Installer/Steps/PolicySettings.php:199
349
  #: views/themes/storefront/footer.php:3
350
  #: views/themes/twentyseventeen/footer.php:3
351
  #: views/themes/twentysixteen/footer.php:4
352
  msgid "Privacy Policy"
353
  msgstr "Προσωπικά δεδομένα"
354
 
355
- #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:19
356
- msgid "This page is currently disabled."
357
- msgstr "Αυτήν τη στιγμή αυτή η σελίδα είναι απενεργοποιημένη."
 
 
 
 
358
 
359
- #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:35
360
- #: src/Installer/Installer.php:279
361
- #: src/Installer/Steps/ConfigurationPages.php:55
362
- #: views/themes/storefront/footer.php:7
363
- #: views/themes/twentyseventeen/footer.php:7
364
- #: views/themes/twentysixteen/footer.php:9
365
- msgid "Privacy Tools"
366
- msgstr "Επεξεργασία προσωπικών δεδομένων"
367
 
368
- #: src/Components/Support/AdminTabSupport.php:13
369
- #: src/Components/Support/AdminTabSupport.php:20
370
  msgctxt "(Admin)"
371
- msgid "Support"
372
- msgstr "Υποστήριξη"
373
 
374
- #: src/Components/WordpressComments/WordpressComments.php:90
375
- #, php-format
376
- msgid "%sERROR:%s You need to accept the privacy policy to post a comment."
377
- msgstr ""
378
- "%sERROR:%s Πρέπει να αποδεχτείτε την πολιτική απορρήτου για να δημοσιεύσετε "
379
- "ένα σχόλιο."
 
380
 
381
- #: src/Components/WordpressUser/Controllers/DashboardDataPageController.php:54
382
- #: views/privacy-tools/notices.php:19
383
- msgid "We have received your request and will reply within 30 days."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
384
  msgstr "Λάβαμε το αίτημά σας και θα απαντήσουμε εντός 30 ημερών."
385
 
386
  #: src/Components/WordpressUser/Controllers/DashboardDataPageController.php:59
@@ -388,7 +994,7 @@ msgstr "Λάβαμε το αίτημά σας και θα απαντήσουμε
388
  msgid "Consent withdrawn."
389
  msgstr "Η συγκατάθεση αποσύρεται."
390
 
391
- #: src/Components/WordpressUser/RegistrationForm.php:42
392
  msgid "<strong>ERROR</strong>: You must accept the terms and conditions."
393
  msgstr ""
394
  "<strong>ΣΦΑΛΜΑ</ strong>: Πρέπει να αποδεχτείτε τους όρους και τις "
@@ -403,6 +1009,9 @@ msgstr "Εργαλεία απορρήτου"
403
 
404
  #: src/DataSubject/AdminTabDataSubject.php:27
405
  #: src/DataSubject/AdminTabDataSubject.php:41
 
 
 
406
  msgctxt "(Admin)"
407
  msgid "Data Subjects"
408
  msgstr "Υποκείμενα των δεδομένων"
@@ -423,15 +1032,15 @@ msgstr "Τα δεδομένα καταργήθηκαν"
423
  msgid "Data removal request"
424
  msgstr "Αίτημα κατάργησης δεδομένων"
425
 
426
- #: src/DataSubject/DataSubjectIdentificator.php:65
427
- #: src/DataSubject/DataSubjectIdentificator.php:82
428
  msgid "Your personal data on"
429
  msgstr "Τα προσωπικά σας δεδομένα στο"
430
 
431
  #: src/Helpers.php:27
432
  msgctxt "(Admin)"
433
  msgid "Austria"
434
- msgstr "Αυστρία"
435
 
436
  #: src/Helpers.php:28
437
  msgctxt "(Admin)"
@@ -456,7 +1065,7 @@ msgstr "Κύπρος"
456
  #: src/Helpers.php:32
457
  msgctxt "(Admin)"
458
  msgid "Czech Republic"
459
- msgstr "Τσεχική Δημοκρατία"
460
 
461
  #: src/Helpers.php:33
462
  msgctxt "(Admin)"
@@ -568,1373 +1177,3141 @@ msgctxt "(Admin)"
568
  msgid "United Kingdom"
569
  msgstr "Ηνωμένο Βασίλειο"
570
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
571
  #: src/Helpers.php:69
572
  msgctxt "(Admin)"
573
- msgid "Iceland"
574
- msgstr "Ισλανδία"
575
 
576
  #: src/Helpers.php:70
577
  msgctxt "(Admin)"
578
- msgid "Norway"
579
- msgstr "Νορβηγία"
580
 
581
  #: src/Helpers.php:71
582
  msgctxt "(Admin)"
583
- msgid "Liechtenstein"
584
- msgstr "Λιχτενστάιν"
585
 
586
  #: src/Helpers.php:72
587
  msgctxt "(Admin)"
588
- msgid "Switzerland"
589
- msgstr "Ελβετία"
590
 
591
  #: src/Helpers.php:73
592
  msgctxt "(Admin)"
593
- msgid "United States"
594
- msgstr "Ηνωμένες Πολιτείες"
595
 
596
  #: src/Helpers.php:74
597
  msgctxt "(Admin)"
598
- msgid "Rest of the world"
599
- msgstr "Υπόλοιπος κόσμος"
600
 
601
- #: src/Helpers.php:145
602
- msgid "An error has occurred. Please contact the site administrator."
603
- msgstr "Παρουσιάστηκε σφάλμα. Επικοινωνήστε με τον διαχειριστή του ιστότοπου."
 
604
 
605
- #: src/Installer/Installer.php:135
606
  msgctxt "(Admin)"
607
- msgid "Setup Wizard"
608
- msgstr "Οδηγός εγκατάστασης"
609
 
610
- #: src/Installer/Steps/ConfigurationPages.php:23
611
- #: src/Installer/Steps/PolicySettings.php:23
612
- #: src/Installer/Steps/PolicySettings.php:48
613
  msgctxt "(Admin)"
614
- msgid "&mdash; Create a new page &mdash;"
615
- msgstr "&mdash; Δημιουργήστε μια νέα σελίδα &mdash;"
616
 
617
- #: src/Installer/Steps/PolicySettings.php:38
618
  msgctxt "(Admin)"
619
- msgid ""
620
- "We have automatically selected your WooCommerce Terms & Conditions page."
621
- msgstr ""
622
- "Έχουμε επιλέξει αυτόματα τη σελίδα σας όρους WooCommerce & προϋποθέσεις."
623
 
624
- #: src/Modules/ContactForm7/ContactForm7.php:35
625
  msgctxt "(Admin)"
626
- msgid "gdpr terms txt"
627
- msgstr "gdpr όρους txt"
628
 
629
- #: src/Router.php:80 src/Router.php:92 src/Router.php:125 src/Router.php:141
630
- #, php-format
631
- msgid "Nonce error for action \"%s\". Please go back and try again!"
632
- msgstr "Σφάλμα nonce για ενέργεια \"%s\". Επιστρέψτε και δοκιμάστε ξανά!"
 
633
 
634
- #: src/Router.php:149
635
  msgctxt "(Admin)"
636
- msgid "You do not have the required permissions to perform this action!"
637
- msgstr ""
638
- "Δεν έχετε τα απαιτούμενα δικαιώματα για να εκτελέσετε αυτήν την ενέργεια!"
639
 
640
- #: views/admin/consent.php:3
641
  msgctxt "(Admin)"
642
- msgid "Default consent types"
643
- msgstr "Προεπιλεγμένοι τύποι συγκατάθεσης"
644
 
645
- #: views/admin/consent.php:4
646
  msgctxt "(Admin)"
647
- msgid ""
648
- "These are the consent types that have been automatically registered by the "
649
- "framework or a plugin."
650
- msgstr ""
651
- "Αυτοί είναι οι τύποι συγκατάθεσης που έχουν καταχωρηθεί αυτόματα από το "
652
- "πλαίσιο ή από ένα πρόσθετο."
653
 
654
- #: views/admin/consent.php:7 views/admin/consent.php:52
655
  msgctxt "(Admin)"
656
- msgid "Slug"
657
- msgstr "Γυμνοσάλιαγκας"
658
 
659
- #: views/admin/consent.php:8 views/admin/consent.php:38
660
- #: views/admin/consent.php:60
661
  msgctxt "(Admin)"
662
- msgid "Title"
663
- msgstr "Τίτλος"
664
 
665
- #: views/admin/consent.php:9 views/admin/consent.php:41
666
- #: views/admin/consent.php:63
667
  msgctxt "(Admin)"
668
- msgid "Description"
669
- msgstr "Περιγραφή"
670
 
671
- #: views/admin/consent.php:10
672
  msgctxt "(Admin)"
673
- msgid "Visibility"
674
- msgstr "Εμφάνιση"
675
 
676
- #: views/admin/consent.php:18
677
  msgctxt "(Admin)"
678
- msgid "Visible"
679
- msgstr "Ορατό"
680
 
681
- #: views/admin/consent.php:20
682
  msgctxt "(Admin)"
683
- msgid "Hidden"
684
- msgstr "Κρυφό"
685
 
686
- #: views/admin/consent.php:29
687
  msgctxt "(Admin)"
688
- msgid "Custom consent types"
689
- msgstr " Προσαρμοσμένοι τύποι συγκατάθεσης"
690
 
691
- #: views/admin/consent.php:30
692
  msgctxt "(Admin)"
693
- msgid ""
694
- "Here you can add custom consent types to track. They will not be used "
695
- "anywhere by default - you will need to build an integration for each of them."
696
- msgstr ""
697
- "Εδώ μπορείτε να προσθέσετε προσαρμοσμένους τύπους συγκατάθεσης για "
698
- "παρακολούθηση. Δεν θα χρησιμοποιηθούν οπουδήποτε από προεπιλογή - θα "
699
- "χρειαστεί να οικοδομήσετε μια ενοποίηση για καθένα από αυτά."
700
 
701
- #: views/admin/consent.php:35
702
  msgctxt "(Admin)"
703
- msgid "Machine-readable slug"
704
- msgstr "Μηχανή αναγνώσιμη γυμνοσάλιαγκας"
705
 
706
- #: views/admin/consent.php:44 views/admin/consent.php:68
707
  msgctxt "(Admin)"
708
- msgid "Visible?"
709
- msgstr "Ορατός?"
710
 
711
- #: views/admin/consent.php:72
712
  msgctxt "(Admin)"
713
- msgid "Remove"
714
- msgstr "Αφαίρεση"
715
 
716
- #: views/admin/consent.php:93
717
  msgctxt "(Admin)"
718
- msgid "Additional info"
719
- msgstr "Επιπλέον πληροφορίες"
720
 
721
- #: views/admin/consent.php:95
722
  msgctxt "(Admin)"
723
- msgid ""
724
- "This text will be displayed to your data subjects on the Privacy Tools page."
725
- msgstr ""
726
- "Αυτό το κείμενο θα εμφανιστεί στα υποκείμενα των δεδομένων σας στη σελίδα "
727
- "εργαλεία απορρήτου."
728
 
729
- #: views/admin/data-subjects/search-form.php:2
730
  msgctxt "(Admin)"
731
- msgid ""
732
- "On this page, you can find which data subjects personal data you are storing "
733
- "and download, export or delete it."
734
- msgstr ""
735
- "Σε αυτή τη σελίδα μπορείτε να βρείτε ποια δεδομένα θέματα προσωπικών "
736
- "δεδομένων, μπορείτε να αποθηκεύετε και να κατεβάσετε, εξαγωγή ή να "
737
- "διαγράψετε αυτό."
738
 
739
- #: views/admin/data-subjects/search-form.php:10
740
  msgctxt "(Admin)"
741
- msgid "Find data subject by email"
742
- msgstr "Βρείτε το υποκείμενο των δεδομένων μέσω ηλεκτρονικού ταχυδρομείου"
743
 
744
- #: views/admin/data-subjects/search-form.php:11
745
  msgctxt "(Admin)"
746
- msgid "Email address"
747
- msgstr "Διεύθυνση Email"
748
 
749
- #: views/admin/data-subjects/search-form.php:16
750
  msgctxt "(Admin)"
751
- msgid "Search"
752
- msgstr "Αναζήτηση"
753
 
754
- #: views/admin/data-subjects/search-results.php:7
755
  msgctxt "(Admin)"
756
- msgid "Username"
757
- msgstr "Όνομα χρήστη"
758
 
759
- #: views/admin/data-subjects/search-results.php:12
760
  msgctxt "(Admin)"
761
- msgid "is not a registered user."
762
- msgstr "δεν είναι εγγεγραμμένος χρήστης."
763
 
764
- #: views/admin/data-subjects/search-results.php:16
765
  msgctxt "(Admin)"
766
- msgid "Download data (html)"
767
- msgstr "Λήψη δεδομένων (html)"
768
 
769
- #: views/admin/data-subjects/search-results.php:17
 
770
  msgctxt "(Admin)"
771
- msgid "Export data (json)"
772
- msgstr "Εξαγωγή δεδομένων (json)"
773
 
774
- #: views/admin/data-subjects/search-results.php:21
775
  msgctxt "(Admin)"
776
- msgid ""
777
- "This user has admin capabilities. Deleting data via this interface is "
778
- "disabled."
779
- msgstr ""
780
- "Αυτός ο χρήστης έχει τις δυνατότητες διαχείρισης. Διαγραφή δεδομένων μέσω "
781
- "αυτής της διασύνδεσης είναι απενεργοποιημένη."
782
 
783
- #: views/admin/data-subjects/search-results.php:24
784
  msgctxt "(Admin)"
785
- msgid "Anonymize data"
786
- msgstr "Ανωνυμία δεδομένων"
787
 
788
- #: views/admin/data-subjects/search-results.php:25
 
789
  msgctxt "(Admin)"
790
- msgid "Delete data"
791
- msgstr "Διαγραφή Δεδομένων"
792
 
793
- #: views/admin/data-subjects/search-results.php:29
794
  msgctxt "(Admin)"
795
- msgid "No data found!"
796
- msgstr "Δεν βρέθηκαν δεδομένα"
797
 
798
- #: views/admin/general/delete-action-email.php:5
799
- #: views/admin/general/export-action-email.php:5
800
- #: views/installer/steps/configuration-settings.php:29
801
- #: views/installer/steps/configuration-settings.php:79
802
- msgid "Email address"
803
- msgstr "Διεύθυνση ηλεκτρονικού ταχυδρομείου"
804
 
805
- #: views/admin/general/delete-action-reassign.php:3
806
- #: views/installer/steps/configuration-settings.php:50
807
  msgctxt "(Admin)"
808
- msgid "Delete content"
809
- msgstr "Διαγραφή περιεχομένου"
810
 
811
- #: views/admin/general/delete-action-reassign.php:6
812
- #: views/installer/steps/configuration-settings.php:53
813
  msgctxt "(Admin)"
814
- msgid "Reassign content to a user"
815
- msgstr "Αντιστοιχίστε εκ νέου το περιεχόμενο σε ένα χρήστη"
816
 
817
- #: views/admin/general/delete-action-reassign.php:10
818
  msgctxt "(Admin)"
819
- msgid ""
820
- "If the user has submitted any content on your site, should it be deleted or "
821
- "reassigned to another user?"
822
- msgstr ""
823
- "Εάν ο χρήστης έχει υποβάλει οποιοδήποτε περιεχόμενο στην ιστοσελίδα σας, "
824
- "πρέπει να διαγραφεί και να εκχωρηθούν σε κάποιον άλλο χρήστη;"
825
 
826
- #: views/admin/general/description-data-page.php:2
827
  msgctxt "(Admin)"
828
- msgid ""
829
- "Select the page where users can go to control their data. This page must "
830
- "contain the [gdpr_privacy_tools] shortcode."
831
- msgstr ""
832
- "Επιλέξτε τη σελίδα όπου οι χρήστες μπορούν να πάνε για τον έλεγχο των "
833
- "δεδομένων τους. Αυτή η σελίδα πρέπει να περιέχει το shortcode "
834
- "[gdpr_privacy_tools]."
835
 
836
- #: views/admin/general/enable.php:9
837
  msgctxt "(Admin)"
838
- msgid "Enable the view, export and forget functionality for users and visitors"
839
- msgstr ""
840
- "Ενεργοποιήσετε την προβολή, να εξαγάγετε και να ξεχάσετε τη λειτουργικότητα "
841
- "για τους χρήστες και επισκέπτες."
842
 
843
- #: views/admin/general/enable.php:12
844
  msgctxt "(Admin)"
845
- msgid ""
846
- "Enable the Privacy Tools page on front-end and dashboard. This allows "
847
- "visitors to request viewing and deleting their personal data and withdraw "
848
- "consents."
849
- msgstr ""
850
- "Ενεργοποίηση της σελίδας εργαλείων προστασίας προσωπικών δεδομένων για front-"
851
- "end και ταμπλό. Αυτό επιτρέπει στους επισκέπτες να ζητήσουν προβολή και "
852
- "διαγραφή των προσωπικών τους δεδομένων και να αποσύρουν τις συναινέσεις."
853
 
854
- #: views/admin/general/theme-compatibility.php:9
855
- #: views/installer/steps/integrations.php:21
856
  msgctxt "(Admin)"
857
- msgid ""
858
- "Automatically add Privacy Policy and Privacy Tools links to your site footer."
859
- msgstr ""
860
- "Αυτόματα προσθέστε πολιτική απορρήτου και προστασίας προσωπικών δεδομένων "
861
- "εργαλεία συνδέσεις υποσέλιδο ιστοσελίδα σας."
862
 
863
- #: views/admin/notices/header.php:4 views/admin/settings-page.php:3
864
- #: views/installer/header.php:23
865
  msgctxt "(Admin)"
866
- msgid "The GDPR Framework"
867
- msgstr "Το πλαίσιο GDPR"
868
 
869
- #: views/admin/notices/helper-autoinstall.php:2
870
  msgctxt "(Admin)"
871
- msgid ""
872
- "A Privacy Policy page has been created, but it is empty. You can generate a "
873
- "policy template on this page."
874
- msgstr ""
875
- "Έχει δημιουργηθεί μια σελίδα Πολιτική προστασίας προσωπικών δεδομένων, αλλά "
876
- "είναι κενή. Μπορείτε να δημιουργήσετε ένα πρότυπο πολιτικής σε αυτήν τη "
877
- "σελίδα."
878
 
879
- #: views/admin/notices/helper-policy.php:2
880
  msgctxt "(Admin)"
881
- msgid ""
882
- "Heads up - your Privacy Policy still requires some attention. Find the "
883
- "places marked with [TODO] and replace them with real content!"
884
- msgstr ""
885
- "Heads up - πολιτική απορρήτου σας εξακολουθεί να απαιτεί κάποια προσοχή. "
886
- "Βρείτε τα σημεία που σημειώνονται με [TODO] και την αντικατάστασή τους με "
887
- "πραγματικό περιεχόμενο!"
888
 
889
- #: views/admin/notices/helper-tools.php:2
890
  msgctxt "(Admin)"
891
- msgid ""
892
- "The contents of this page should contain the [gdpr_privacy_tools] shortcode."
893
- msgstr ""
894
- "Το περιεχόμενο αυτής της σελίδας θα πρέπει να περιέχει το shortcode "
895
- "[gdpr_privacy_tools]."
896
 
897
- #: views/admin/privacy-policy/description-policy-page.php:2
898
  msgctxt "(Admin)"
899
- msgid "Select the page which will contain your Privacy Policy"
900
- msgstr "Επιλέξτε τη σελίδα που θα περιέχει την πολιτική απορρήτου σας"
901
 
902
- #: views/admin/privacy-policy/generated.php:3
903
  msgctxt "(Admin)"
904
- msgid "Your Privacy Policy has been generated."
905
- msgstr "Η Πολιτική προστασίας προσωπικών δεδομένων σας έχει δημιουργηθεί."
906
 
907
- #: views/admin/privacy-policy/generated.php:20
908
  msgctxt "(Admin)"
909
- msgid "&laquo; Back"
910
- msgstr "&laquo; Πίσω"
911
 
912
- #: views/admin/privacy-policy/header.php:2
913
  msgctxt "(Admin)"
914
- msgid ""
915
- "This page allows you to generate a Privacy Policy based on the information "
916
- "you entered below."
917
- msgstr ""
918
- "Η σελίδα αυτή σας επιτρέπει να δημιουργήσετε μια πολιτική απορρήτου που "
919
- "βασίζεται στις πληροφορίες που καθορίσατε παρακάτω."
920
 
921
- #: views/admin/settings-page.php:31
922
- #, php-format
923
  msgctxt "(Admin)"
924
- msgid "The GDPR Framework. Built with &#9829; by %sCodelight%s."
925
- msgstr "Το πλαίσιο GDPR. Χτισμένο με & # 9829; κατά% sCodelight% s."
926
 
927
- #: views/admin/support/contents.php:5 views/installer/steps/finish.php:10
928
  msgctxt "(Admin)"
929
- msgid "Need more info?"
930
- msgstr "Χρειάζεστε περισσότερες πληροφορίες;"
931
 
932
- #: views/admin/support/contents.php:11 views/installer/steps/finish.php:16
933
  msgctxt "(Admin)"
934
- msgid "Site Owner's guide to GDPR"
935
- msgstr "Οδηγός ιδιοκτήτη τοποθεσίας στο GDPR"
936
 
937
- #: views/admin/support/contents.php:14 views/installer/steps/finish.php:19
 
938
  msgctxt "(Admin)"
939
- msgid "Read the full guide on GDPR compliance."
940
- msgstr "Διαβάστε τον πλήρη οδηγό σχετικά με τη συμμόρφωση του GDPR."
941
 
942
- #: views/admin/support/contents.php:20 views/installer/steps/finish.php:25
943
  msgctxt "(Admin)"
944
- msgid "Knowledge base"
945
- msgstr "Γνωσιακή Βάση"
946
 
947
- #: views/admin/support/contents.php:23 views/installer/steps/finish.php:28
948
  msgctxt "(Admin)"
949
- msgid "Check out the knowledge base for common questions and answers."
950
- msgstr "Ελέγξτε την Γνωσιακή βάση για συχνές ερωτήσεις και απαντήσεις."
951
 
952
- #: views/admin/support/contents.php:29 views/installer/steps/finish.php:34
953
  msgctxt "(Admin)"
954
- msgid "Developer's guide to GDPR"
955
- msgstr "Οδηγός για προγραμματιστές να GDPR"
956
 
957
- #: views/admin/support/contents.php:32 views/installer/steps/finish.php:37
 
958
  msgctxt "(Admin)"
959
- msgid "We have a thorough guide to help making custom sites compliant."
960
- msgstr ""
961
- "Έχουμε έναν λεπτομερή οδηγό για να βοηθήσουμε στην προσαρμογή των "
962
- "προσαρμοσμένων ιστότοπων."
963
 
964
- #: views/admin/support/contents.php:40 views/installer/steps/finish.php:45
 
965
  msgctxt "(Admin)"
966
- msgid "Need help?"
967
- msgstr "Χρειάζεστε βοήθεια;"
968
 
969
- #: views/admin/support/contents.php:46 views/installer/steps/finish.php:51
970
  msgctxt "(Admin)"
971
- msgid "Submit a support request"
972
- msgstr "Υποβάλετε ένα αίτημα υποστήριξης"
973
 
974
- #: views/admin/support/contents.php:49 views/installer/steps/finish.php:54
975
  msgctxt "(Admin)"
976
- msgid ""
977
- "Found a bug or problem with the plugin? Post in the wordpress.org support "
978
- "forum."
979
- msgstr ""
980
- "Βρέθηκε ένα bug ή πρόβλημα με το plugin; Δημοσίευση στα φόρουμ υποστήριξης "
981
- "της wordpress.org."
982
 
983
- #: views/admin/support/contents.php:55 views/installer/steps/finish.php:60
984
  msgctxt "(Admin)"
985
- msgid "Request a consultation"
986
- msgstr "Αίτηση διαβούλευσης"
987
 
988
- #: views/admin/support/contents.php:58 views/installer/steps/finish.php:63
 
989
  msgctxt "(Admin)"
990
- msgid ""
991
- "Need development or legal assistance in making your site compliant? We can "
992
- "help!"
993
- msgstr ""
994
- "Ανάγκη ανάπτυξης ή νομική βοήθεια στο να καταστεί συμβατό με το site σας; "
995
- "Μπορούμε να σας βοηθήσουμε!"
996
 
997
- #: views/admin/wizard-buttons.php:2
 
998
  msgctxt "(Admin)"
999
- msgid "Restart setup wizard"
1000
- msgstr "Κάντε επανεκκίνηση του οδηγού εγκατάστασης"
1001
 
1002
- #: views/email/action-export.php:8 views/email/action-forget.php:12
 
1003
  msgctxt "(Admin)"
1004
- msgid ""
1005
- "This email is just for your information. You don't need to take any action"
1006
- msgstr ""
1007
- "Αυτό το email είναι μόνο για τις πληροφορίες σας. Δεν χρειάζεται να προβείτε "
1008
- "σε καμία ενέργεια"
1009
 
1010
- #: views/email/action-forget.php:8
 
1011
  msgctxt "(Admin)"
1012
- msgid "The data subject had a user account on your website."
1013
- msgstr ""
1014
- "Το υποκείμενο των δεδομένων είχε ένα λογαριασμό χρήστη στην ιστοσελίδα σας."
1015
 
1016
- #: views/email/identify-data-subject.php:2
1017
- msgid "Someone has requested access to your data on"
1018
- msgstr "Κάποιος έχει ζητήσει πρόσβαση στα δεδομένα σας στο"
 
 
1019
 
1020
- #: views/email/identify-data-subject.php:3
1021
- msgid "If this was a mistake, just ignore this email and nothing will happen."
1022
- msgstr ""
1023
- "Εάν αυτό ήταν λάθος, απλά αγνοήστε αυτό το μήνυμα ηλεκτρονικού ταχυδρομείου "
1024
- "και τίποτα δεν θα συμβεί."
1025
 
1026
- #: views/email/identify-data-subject.php:4
1027
- msgid "To manage your data, visit the following address:"
1028
- msgstr ""
1029
- "Για να διαχειριστείτε τα δεδομένα σας, επισκεφθείτε την ακόλουθη διεύθυνση:"
 
1030
 
1031
- #: views/email/identify-data-subject.php:10
1032
- msgid "This link is valid for 15 minutes."
1033
- msgstr "Αυτός ο σύνδεσμος ισχύει για 15 λεπτά."
 
 
1034
 
1035
- #: views/email/no-data.php:2
1036
- msgid "Someone has requested information about your personal data on"
1037
- msgstr ""
1038
- "Κάποιος έχει ζητήσει πληροφορίες σχετικά με τα προσωπικά σας δεδομένα στο"
 
1039
 
1040
- #: views/email/no-data.php:3
1041
- msgid "None of your personal data is stored on"
1042
- msgstr "Κανένα από τα προσωπικά σας δεδομένα δεν αποθηκεύεται στο"
 
 
1043
 
1044
- #: views/email/no-data.php:5
1045
- msgid ""
1046
- "If this was a mistake or you did not request this email, just ignore it and "
1047
- "nothing will happen."
1048
- msgstr ""
1049
- "Εάν αυτό ήταν λάθος ή δεν ζητήσατε αυτό το μήνυμα ηλεκτρονικού ταχυδρομείου, "
1050
- "απλώς το αγνοήστε και δεν θα συμβεί τίποτα."
1051
 
1052
- #: views/email/request-export.php:13 views/email/request-forget.php:13
 
1053
  msgctxt "(Admin)"
1054
- msgid "As a reminder: according to GDPR, you have 30 days to comply."
1055
- msgstr ""
1056
- "Ως μια υπενθύμιση: σύμφωνα με το GDPR, έχετε 30 ημέρες για να συμμορφωθεί."
1057
 
1058
- #: views/global/delete-action.php:2
 
1059
  msgctxt "(Admin)"
1060
- msgid "Automatically anonymize data"
1061
- msgstr "Αυτόματη ανώνυμη επεξεργασία δεδομένων"
1062
 
1063
- #: views/global/delete-action.php:5
 
1064
  msgctxt "(Admin)"
1065
- msgid "Automatically delete data"
1066
- msgstr "Αυτόματη διαγραφή δεδομένων"
1067
 
1068
- #: views/global/delete-action.php:9
 
1069
  msgctxt "(Admin)"
1070
- msgid "Automatically anonymize data and notify me via email"
1071
- msgstr "Ανωνυμία δεδομένων αυτόματα και να ειδοποιούμαι μέσω e-mail"
1072
 
1073
- #: views/global/delete-action.php:13
 
1074
  msgctxt "(Admin)"
1075
- msgid "Automatically delete data and notify me via email"
1076
- msgstr "Αυτόματη διαγραφή δεδομένων και να ειδοποιούμαι μέσω e-mail"
1077
 
1078
- #: views/global/delete-action.php:16 views/global/export-action.php:10
 
1079
  msgctxt "(Admin)"
1080
- msgid "Only notify me via email"
1081
- msgstr "Να ειδοποιούμαι μόνο μέσω ηλεκτρονικού ταχυδρομείου"
1082
 
1083
- #: views/global/export-action.php:2
 
1084
  msgctxt "(Admin)"
1085
- msgid "Automatically download data"
1086
- msgstr "Αυτόματη λήψη δεδομένων"
1087
 
1088
- #: views/global/export-action.php:6
 
1089
  msgctxt "(Admin)"
1090
- msgid "Automatically download data and notify me via email"
1091
- msgstr "Αυτόματη λήψη δεδομένων και να ειδοποιούμαι μέσω e-mail"
1092
 
1093
- #: views/installer/continue-notice.php:2
 
1094
  msgctxt "(Admin)"
1095
- msgid "The The GDPR Framework setup has not been finalized yet."
1096
- msgstr "Η ρύθμιση του πλαισίου GDPR δεν έχει οριστικοποιηθεί ακόμα."
1097
 
1098
- #: views/installer/continue-notice.php:3
 
1099
  msgctxt "(Admin)"
1100
- msgid "You can continue the setup at any time."
1101
- msgstr "Μπορείτε να συνεχίσετε τη ρύθμιση οποιαδήποτε στιγμή."
1102
 
1103
- #: views/installer/continue-notice.php:6
 
1104
  msgctxt "(Admin)"
1105
- msgid "Continue the setup wizard"
1106
- msgstr "Συνεχίστε τον οδηγό ρύθμισης"
1107
 
1108
- #: views/installer/continue-notice.php:9
 
1109
  msgctxt "(Admin)"
1110
- msgid "Hide this message"
1111
- msgstr "Απόκρυψη αυτού του μηνύματος"
1112
 
1113
- #: views/installer/footer.php:7
1114
- msgid "Back"
1115
- msgstr "Πίσω"
 
 
1116
 
1117
- #: views/installer/header.php:26
 
1118
  msgctxt "(Admin)"
1119
- msgid "I need help"
1120
- msgstr "Χρειάζομαι βοήθεια"
1121
 
1122
- #: views/installer/header.php:29
 
1123
  msgctxt "(Admin)"
1124
- msgid "Developer Docs"
1125
- msgstr "Έγγραφα για developers"
1126
 
1127
- #: views/installer/header.php:36
 
1128
  msgctxt "(Admin)"
1129
- msgid "Configuration"
1130
- msgstr "Διαμόρφωση"
1131
 
1132
- #: views/installer/header.php:46
 
1133
  msgctxt "(Admin)"
1134
- msgid "Forms & Consent"
1135
- msgstr "Έντυπα συγκατάθεσης"
1136
 
1137
- #: views/installer/header.php:51
 
1138
  msgctxt "(Admin)"
1139
- msgid "Integrations"
1140
- msgstr "Ενσωματώσεις"
1141
 
1142
- #: views/installer/steps/configuration-settings.php:23
1143
- #: views/installer/steps/configuration-settings.php:73
1144
  msgctxt "(Admin)"
1145
- msgid "Enter the email address to notify"
1146
- msgstr "Εισάγετε τη διεύθυνση email για να κοινοποίηση"
1147
 
1148
- #: views/installer/steps/disclaimer.php:21
 
1149
  msgctxt "(Admin)"
1150
- msgid "I accept"
1151
- msgstr "Δέχομαι"
1152
 
1153
- #: views/installer/welcome-notice.php:7
 
1154
  msgctxt "(Admin)"
1155
- msgid "Run the setup wizard"
1156
- msgstr "Εκτελέστε τον οδηγό εγκατάστασης"
1157
 
1158
- #: views/installer/welcome-notice.php:11
 
1159
  msgctxt "(Admin)"
1160
- msgid "Auto-install pages"
1161
- msgstr "Αυτόματη εγκατάσταση σελίδων"
1162
 
1163
- #: views/installer/welcome-notice.php:15
 
1164
  msgctxt "(Admin)"
1165
- msgid "Skip and install manually"
1166
- msgstr "Χειροκίνητη εγκατάσταση"
1167
 
1168
- #: views/modules/contact-form-7/generator-privacy.php:6
 
1169
  msgctxt "(Admin)"
1170
- msgid ""
1171
- "This tag generates the default text for Terms & Conditions and/or Privacy "
1172
- "Policy checkbox."
1173
- msgstr ""
1174
- "Αυτή η ετικέτα δημιουργεί το προεπιλεγμένο κείμενο για & όροι ή/και πολιτική "
1175
- "προστασίας προσωπικών δεδομένων το πλαίσιο ελέγχου."
1176
 
1177
- #: views/modules/contact-form-7/generator-privacy.php:15
1178
- msgid "Insert"
1179
- msgstr "Εισάγετε"
 
 
1180
 
1181
- #: views/modules/wordpress-comments/terms-checkbox.php:6
1182
- #: views/modules/wordpress-user/registration-terms-checkbox.php:7
1183
- #, php-format
1184
- msgid "I accept the %sTerms and Conditions%s and the %sPrivacy Policy%s"
1185
- msgstr "δέχομαι το %sΟροι και Προϋποθέσεις%s και το %sΠολιτική Απορρήτου%s"
1186
 
1187
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:3
1188
- msgid "Manage consents"
1189
- msgstr "Διαχειριστείτε τις συγκαταθέσεις"
 
 
1190
 
1191
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:6
1192
- #: views/privacy-tools/form-consent.php:6
1193
- msgid "Here you can withdraw any consents you have given."
1194
- msgstr "Εδώ μπορείτε να αποσύρετε τυχόν συγκαταθέσεις που έχετε δώσει."
 
1195
 
1196
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:8
1197
- #: views/privacy-tools/form-consent.php:9
1198
- msgid "Consent types"
1199
- msgstr "Τύποι συγκατάθεσης"
 
1200
 
1201
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:23
1202
- #: views/privacy-tools/form-consent.php:24
1203
- msgid "Withdraw"
1204
- msgstr "Αποσύρω"
 
1205
 
1206
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:5
1207
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:5
1208
  msgctxt "(Admin)"
1209
- msgid "Delete this user and all data"
1210
- msgstr "Διαγραφή αυτού του χρήστη και όλα τα δεδομένα"
1211
 
1212
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:11
 
1213
  msgctxt "(Admin)"
1214
- msgid "Delete my data"
1215
- msgstr "Διαγράψτε τα δεδομένα μου"
1216
 
1217
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:15
1218
- #: views/privacy-tools/form-delete.php:13
1219
- msgid "Delete all data we have gathered about you."
1220
- msgstr "Διαγράψτε όλα τα δεδομένα που έχουμε συγκεντρώσει για εσάς."
 
1221
 
1222
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:16
1223
- #: views/privacy-tools/form-delete.php:14
1224
- msgid "If you have a user account on our site, it will also be deleted."
1225
- msgstr ""
1226
- "Εάν διαθέτετε λογαριασμό χρήστη στον ιστότοπό μας, θα διαγραφεί επίσης."
1227
 
1228
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:17
1229
- #: views/privacy-tools/form-delete.php:15
1230
- msgid "Be careful - this action is permanent and CANNOT be undone."
1231
- msgstr "ΠΡΟΣΟΧΗ - αυτή η ενέργεια είναι μόνιμη και ΔΕΝ μπορεί να ακυρωθεί."
 
1232
 
1233
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:22
1234
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:23
1235
  msgctxt "(Admin)"
1236
- msgid ""
1237
- "You seem to have an administrator or equivalent role, so deleting/"
1238
- "anonymizing via this page is disabled."
1239
- msgstr ""
1240
- "Φαίνεται ότι έχετε διαχειριστή ή ισοδύναμο ρόλο, οπότε η διαγραφή / "
1241
- "ανωνύμιση μέσω αυτής της σελίδας είναι απενεργοποιημένη."
1242
 
1243
- #: views/modules/wordpress-user/dashboard/form-export.php:7
1244
- #: views/privacy-tools/form-export.php:1
1245
- msgid "Download your data"
1246
- msgstr "Κατεβάστε τα δεδομένα σας"
 
1247
 
1248
- #: views/modules/wordpress-user/dashboard/form-export.php:12
1249
- #: views/privacy-tools/form-export.php:13
1250
- msgid "Download as table"
1251
- msgstr "Κάντε λήψη ως πίνακας"
 
1252
 
1253
- #: views/modules/wordpress-user/dashboard/form-export.php:15
1254
- #: views/privacy-tools/form-export.php:22
1255
- msgid "Export as JSON"
1256
- msgstr "Εξαγωγή ως JSON αρχειο"
 
1257
 
1258
- #: views/modules/wordpress-user/dashboard/form-export.php:19
1259
- #: views/privacy-tools/form-export.php:4
1260
- msgid "You can download all your data formatted as a table for viewing."
1261
- msgstr ""
1262
- "Μπορείτε να κατεβάσετε όλα τα δεδομένα σας μορφοποιημένα ως πίνακα για "
1263
- "προβολή."
1264
-
1265
- #: views/modules/wordpress-user/dashboard/form-export.php:20
1266
- #: views/privacy-tools/form-export.php:5
1267
- msgid "Alternatively, you can export it in machine-readable JSON format."
1268
- msgstr ""
1269
- "Εναλλακτικά, μπορείτε να την εξαγάγετε σε μορφή JSON αναγνώσιμη από μηχανή."
1270
-
1271
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:11
1272
  msgctxt "(Admin)"
1273
- msgid "Delete user and all data"
1274
- msgstr "Διαγραφή χρήστη και όλα τα δεδομένα"
1275
 
1276
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:14
 
1277
  msgctxt "(Admin)"
1278
- msgid "Anonymize user and all data"
1279
- msgstr "Ανωνυμία χρήστη και όλα τα δεδομένα"
1280
 
1281
- #: views/modules/wordpress-user/dashboard/profile-page/header.php:2
 
1282
  msgctxt "(Admin)"
1283
- msgid "GDPR Data"
1284
- msgstr "Δεδομένα GDPR"
1285
 
1286
- #: views/modules/wordpress-user/dashboard/profile-page/header.php:6
 
1287
  msgctxt "(Admin)"
1288
- msgid "This user has been anonymized."
1289
- msgstr "Αυτός ο χρήστης ήταν ανώνυμος."
1290
 
1291
- #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:4
 
1292
  msgctxt "(Admin)"
1293
- msgid "Consents given"
1294
- msgstr "Συναινέσεις που έχουν χορηγηθεί"
1295
 
1296
- #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:17
 
1297
  msgctxt "(Admin)"
1298
- msgid "No consents given"
1299
- msgstr "Δεν δόθηκαν συναινέσεις"
1300
 
1301
- #: views/privacy-tools/form-consent.php:2
1302
- msgid "Consent"
1303
- msgstr "Συγκατάθεση"
 
 
 
 
1304
 
1305
- #: views/privacy-tools/form-delete.php:1
1306
- #: views/privacy-tools/notice-admin-role.php:1
1307
- msgid "Delete my user and data"
1308
- msgstr "Διαγράψτε τον χρήστη και τα δεδομένα μου"
 
1309
 
1310
- #: views/privacy-tools/form-delete.php:7
1311
- msgid "Delete my data"
1312
- msgstr "Διαγράψτε τα δεδομένα μου"
 
 
1313
 
1314
- #: views/privacy-tools/form-identify.php:8
1315
- msgid "Back to Privacy Tools"
1316
- msgstr "Πίσω στην επεξεργασία προσωπικών δεδομένων"
 
 
1317
 
1318
- #: views/privacy-tools/form-identify.php:14
1319
- msgid "Identify yourself!"
1320
- msgstr "Προσδιορίστε τον εαυτό σας!"
 
 
1321
 
1322
- #: views/privacy-tools/form-identify.php:17
1323
- #: views/privacy-tools/form-identify.php:20
1324
- msgid "Enter your email address"
1325
- msgstr "Εισάγετε το email σας"
 
1326
 
1327
- #: views/privacy-tools/form-identify.php:23
1328
- msgid "Send email"
1329
- msgstr "Αποστολή email"
 
 
1330
 
1331
- #: views/privacy-tools/notice-admin-role.php:4
 
1332
  msgctxt "(Admin)"
1333
- msgid "Data deletion is disabled for administrative accounts."
1334
- msgstr "Διαγραφή δεδομένων είναι απενεργοποιημένη για λογαριασμών διαχειριστή."
1335
 
1336
- #: views/privacy-tools/notices.php:3
1337
- msgid ""
1338
- "We will send you an email with the link to access your data. Please check "
1339
- "your spam folder as well!"
1340
- msgstr ""
1341
- "Θα σας στείλουμε ένα μήνυμα ηλεκτρονικού ταχυδρομείου με το σύνδεσμο για να "
1342
- "έχετε πρόσβαση στα δεδομένα σας. Ελέγξτε επίσης το φάκελο spam σας!"
1343
 
1344
- #: views/privacy-tools/notices.php:7
1345
- msgid "The email you entered does not appear to be a valid email."
1346
- msgstr "Το email που καταχωρίσατε δεν φαίνεται να είναι έγκυρο."
 
 
1347
 
1348
- #: views/privacy-tools/notices.php:11
1349
- msgid "Sorry - the link seems to have expired. Please try again!"
1350
- msgstr ""
1351
- "Λυπούμαστε - ο σύνδεσμος φαίνεται να έχει λήξει. ΠΑΡΑΚΑΛΩ προσπαθησε ξανα!"
 
1352
 
1353
- #: views/privacy-tools/notices.php:23
1354
- msgid "Your personal data has been removed!"
1355
- msgstr "Τα προσωπικά σας δεδομένα έχουν αφαιρεθεί!"
 
 
1356
 
1357
- #: views/privacy-tools/privacy-tools.php:5
1358
- msgid "You are identified as"
1359
- msgstr "Έχετε αναγνωριστεί ως"
 
 
1360
 
1361
- #: views\admin\general\enable-tac.php:9
 
1362
  msgctxt "(Admin)"
1363
- msgid "Enable the term and condition page."
1364
- msgstr "Ενεργοποιήστε τη σελίδα όρων και προϋποθέσεων."
1365
 
1366
- #: src\Admin\AdminTabGeneral.php:51
 
1367
  msgctxt "(Admin)"
1368
- msgid "Enable Term and Conditions"
1369
- msgstr "Ενεργοποίηση όρων και προϋποθέσεων"
1370
 
1371
- #: gdpr-framework.php:121
1372
- msgid ""
1373
- "This website uses cookies to ensure you get the best experience on our "
1374
- "website."
1375
- msgstr ""
1376
- "Αυτός ο ιστότοπος χρησιμοποιεί cookies για να εξασφαλίσει ότι θα έχετε την "
1377
- "καλύτερη εμπειρία στον ιστότοπό μας."
1378
 
1379
- #: gdpr-framework.php:121
1380
- msgid "Decline"
1381
- msgstr "πτώση"
 
 
1382
 
1383
- #: gdpr-framework.php:121
1384
- msgid "Accept"
1385
- msgstr "Αποδέχομαι"
 
 
1386
 
1387
- #: gdpr-framework.php:133
1388
- msgid "Learn more"
1389
- msgstr "Μάθε περισσότερα"
 
 
1390
 
1391
- #: AdminTabGeneral.php:94
 
1392
  msgctxt "(Admin)"
1393
- msgid "From Email"
1394
- msgstr "Από το μήνυμα ηλεκτρονικού ταχυδρομείου"
1395
 
1396
- #: AdminTabGeneral.php:87
 
1397
  msgctxt "(Admin)"
1398
- msgid "From Name"
1399
- msgstr "Από όνομα"
1400
 
1401
- #: AdminTabGeneral.php:82
 
1402
  msgctxt "(Admin)"
1403
- msgid "Email Setting"
1404
- msgstr "Ρύθμιση ηλεκτρονικού ταχυδρομείου"
1405
 
1406
- #: AdminTabGeneral.php:104
 
1407
  msgctxt "(Admin)"
1408
- msgid "Acceptance Popup Setting"
1409
- msgstr "Ρύθμιση αναδυόμενης παραλαβής"
1410
 
1411
- #: AdminTabGeneral.php:109
 
1412
  msgctxt "(Admin)"
1413
- msgid "Popup Position"
1414
- msgstr "Αναδυόμενη θέση"
1415
 
1416
- #: AdminTabGeneral.php:116
 
1417
  msgctxt "(Admin)"
1418
- msgid "Popup theme"
1419
- msgstr "Θέμα popup"
1420
 
1421
- #: AdminTabGeneral.php:123
 
1422
  msgctxt "(Admin)"
1423
- msgid "Cookie Acceptance Background Color"
1424
- msgstr "Υποδοχή χρώματος φόντου cookie"
1425
 
1426
- #: AdminTabGeneral.php:130
 
1427
  msgctxt "(Admin)"
1428
- msgid "Cookie Acceptance Text Color"
1429
- msgstr "Χρώμα κειμένου αποδοχής cookie"
1430
 
1431
- #: AdminTabGeneral.php:137
 
1432
  msgctxt "(Admin)"
1433
- msgid "Cookie Acceptance Button Backgroung Color"
1434
- msgstr "Κουμπί λήψης cookie Backgroung Color"
1435
 
1436
- #: AdminTabGeneral.php:144
 
1437
  msgctxt "(Admin)"
1438
- msgid "Cookie Acceptance Button Color"
1439
- msgstr "Χρώμα κουμπιού αποδοχής cookie"
1440
 
1441
- #: AdminTabGeneral.php:151
 
1442
  msgctxt "(Admin)"
1443
- msgid "Cookie Acceptance Border Color"
1444
- msgstr "Χρώμα ορίου λήψης cookie"
1445
 
1446
- #: AdminTabGeneral.php:67
 
1447
  msgctxt "(Admin)"
1448
- msgid "Enable Cookie Acceptance Popup"
1449
- msgstr "Ενεργοποίηση αναδυόμενου παραθύρου αποδοχής cookie"
1450
 
1451
- #: AdminTabGeneral.php:73
 
1452
  msgctxt "(Admin)"
1453
- msgid "Cookie Acceptance Popup Content"
1454
- msgstr "Περιεχόμενο αναδυόμενων παραληπτών cookie"
1455
 
1456
- #: description-position-action.php
 
1457
  msgctxt "(Admin)"
1458
- msgid "Select position of the Popup"
1459
- msgstr "Επιλέξτε τη θέση του αναδυόμενου παραθύρου"
1460
 
1461
- #: description-theme-action.php
 
1462
  msgctxt "(Admin)"
1463
- msgid "Select theme of the Popup"
1464
- msgstr "Επιλέξτε θέμα του αναδυόμενου παραθύρου"
1465
 
1466
- #: description-theme-action.php:69
 
1467
  msgctxt "(Admin)"
1468
- msgid "Disable Comment Checkbox"
1469
- msgstr "Απενεργοποιήστε το πλαίσιο ελέγχου Σχόλιο"
1470
 
1471
- #: description-theme-action.php:76
 
1472
  msgctxt "(Admin)"
1473
- msgid "Disable Register Form Checkbox"
1474
- msgstr "Απενεργοποίηση πλαισίου ελέγχου φόρμας εγγραφής"
1475
 
1476
- #: description-theme-action.php:312
 
1477
  msgctxt "(Admin)"
1478
- msgid "Disable Checkbox For Comments"
1479
- msgstr "Απενεργοποιήστε το πλαίσιο ελέγχου για σχόλια"
1480
 
1481
- #: AdminTabGeneral.php:319
 
1482
  msgctxt "(Admin)"
1483
- msgid "Disable Checkbox For Register Form"
1484
- msgstr "Απενεργοποίηση του πλαισίου ελέγχου για τη φόρμα εγγραφής"
1485
 
1486
- #: views/privacy-tools/form-identify.php:15
1487
- msgid "Please identify yourself via e-mail"
1488
- msgstr "Προσδιορίστε τον εαυτό σας μέσω ηλεκτρονικού ταχυδρομείου"
 
 
1489
 
1490
- #: advanced-integration\header.php:2
 
1491
  msgctxt "(Admin)"
1492
- msgid "This page allows you to advance integration with ClassiDocs™"
1493
- msgstr ""
1494
- "Αυτή η σελίδα σάς επιτρέπει να προχωρήσετε στην ολοκλήρωση με το ClassiDocs ™"
1495
 
1496
- #: AdminTabAdvancedIntegration.php:97
 
1497
  msgctxt "(Admin)"
1498
- msgid "ClassiDocs Password"
1499
- msgstr "Κωδικός πρόσβασης ClassiDocs"
1500
 
1501
- #: AdminTabAdvancedIntegration.php:88
 
1502
  msgctxt "(Admin)"
1503
- msgid "ClassiDocs Username"
1504
- msgstr "Όνομα χρήστη ClassiDocs"
1505
 
1506
- #: AdminTabAdvancedIntegration.php:79
 
1507
  msgctxt "(Admin)"
1508
- msgid "ClassiDocs URL"
1509
- msgstr "ClassiDocs URL"
1510
 
1511
- #: AdminTabAdvancedIntegration.php:69
 
1512
  msgctxt "(Admin)"
1513
- msgid "Enable Response with related queries?"
1514
- msgstr "Ενεργοποίηση απάντησης με σχετικά ερωτήματα;"
1515
 
1516
- #: AdminTabAdvancedIntegration.php:60
 
1517
  msgctxt "(Admin)"
1518
- msgid "Submit SAR request details?"
1519
- msgstr "Υποβολή στοιχείων αιτήματος SAR;"
1520
 
1521
- #: AdminTabAdvancedIntegration.php:51
 
1522
  msgctxt "(Admin)"
1523
- msgid "Integrate with ClassiDocs?"
1524
- msgstr "Ενσωμάτωση με το ClassiDocs;"
1525
 
1526
- #: AdminTabAdvancedIntegration.php:43
 
1527
  msgctxt "(Admin)"
1528
- msgid "Integration Settings"
1529
- msgstr "Ρυθμίσεις ολοκλήρωσης"
1530
 
1531
- #: AdminTabAdvancedIntegration.php:35
 
1532
  msgctxt "(Admin)"
1533
- msgid "Advanced Integration"
1534
- msgstr "Προηγμένη ενοποίηση"
1535
 
1536
- #: checkbox-field.php:10
 
 
 
1537
  msgctxt "(Admin)"
1538
- msgid "Sign up for free here"
1539
- msgstr "Εγγραφείτε δωρεάν εδώ"
1540
 
1541
- #: checkbox-field.php:10
 
1542
  msgctxt "(Admin)"
1543
- msgid "Click Here"
1544
- msgstr "Κάντε κλικ ΕΔΩ"
1545
 
1546
- #: ClassiDocs-results.php:12
1547
- msgid "Previous Results"
1548
- msgstr "Προηγούμενα αποτελέσματα"
 
 
1549
 
1550
- #: ClassiDocs-results.php:13
1551
- msgid "Current Results"
1552
- msgstr "Τρέχοντα αποτελέσματα"
 
 
1553
 
1554
- #: ClassiDocs-results.php:19
1555
- msgid "Name"
1556
- msgstr "Ονομα"
 
 
1557
 
1558
- #: ClassiDocs-results.php:22
1559
- msgid "Path"
1560
- msgstr "Μονοπάτι"
 
 
1561
 
1562
- #: ClassiDocs-results.php:34
1563
- msgid "Workstation"
1564
- msgstr "Σταθμός εργασίας"
 
 
1565
 
1566
- #: ClassiDocs-results.php:37
1567
- msgid "Last Scan"
1568
- msgstr "Τελευταία σάρωση"
 
 
1569
 
1570
- #: ClassiDocs-results.php:62
1571
- msgid "No ClassiDocs data found!"
1572
- msgstr "Δεν βρέθηκαν δεδομένα ClassiDocs!"
 
 
1573
 
1574
- #: enable_popup_header.php:5
1575
- msgid "Cookies used on the website!"
1576
- msgstr "Τα cookies που χρησιμοποιούνται στην ιστοσελίδα!"
 
 
1577
 
1578
- #: enable_popup_header.php:9
1579
- msgid "Leave blank if don't want header to get display."
1580
- msgstr "Αφήστε κενό, εάν δεν θέλετε να εμφανίζεται η κεφαλίδα."
 
 
1581
 
1582
- #: AdminTabCookiePopup.php:39
 
1583
  msgctxt "(Admin)"
1584
- msgid "Cookie Popup Settings"
1585
- msgstr "Ρυθμίσεις popup cookie"
1586
 
1587
- #: AdminTabCookiePopup.php:17
 
1588
  msgctxt "(Admin)"
1589
- msgid "Cookie Popup"
1590
- msgstr "Εμφανίζεται το Cookie Popup"
1591
 
1592
- #: AdminTabCookiePopup.php:49
 
1593
  msgctxt "(Admin)"
1594
- msgid "Enable One Time Cookie Acceptance Popup"
1595
- msgstr "Ενεργοποίηση αναδυόμενου παραλήπτη αποδοχής cookie μιας ώρας"
1596
 
1597
- #: consent.php:79
 
1598
  msgctxt "(Admin)"
1599
- msgid "Show Consent types"
1600
- msgstr "Εμφάνιση τύπων συγκατάθεσης"
1601
 
 
 
1602
  msgctxt "(Admin)"
1603
- msgid "Hide consent types"
1604
- msgstr "Απόκρυψη τύπων συγκατάθεσης"
1605
 
 
 
1606
  msgctxt "(Admin)"
1607
- msgid "Do you want form to be GDPR compliance."
1608
- msgstr "Θέλετε να είναι η μορφή συμμόρφωσης με το GDPR."
1609
 
 
 
1610
  msgctxt "(Admin)"
1611
- msgid ""
1612
- "You have installed flamingo, To make this GDPR compliance in individual "
1613
- "contact form's privacy tab check the checkbox for include data to be search "
1614
- "on Privacy tool."
1615
- msgstr ""
1616
- "Έχετε εγκαταστήσει φλαμίνγκο, Για να κάνετε αυτή τη συμμόρφωση GDPR στην "
1617
- "προσωπική καρτέλα απορρήτου της φόρμας επαφής, επιλέξτε το πλαίσιο επιλογής "
1618
- "για να συμπεριλάβετε δεδομένα που πρέπει να αναζητηθούν στο εργαλείο "
1619
- "Απορρήτου."
1620
 
 
 
1621
  msgctxt "(Admin)"
1622
- msgid "Enable Policy Link On Popup"
1623
- msgstr "Ενεργοποίηση συνδέσμου πολιτικής στο αναδυόμενο παράθυρο"
1624
 
 
 
1625
  msgctxt "(Admin)"
1626
- msgid "Enable Privacy policy on Popup"
1627
- msgstr "Ενεργοποιήστε την πολιτική απορρήτου στο Αναδυόμενο παράθυρο"
1628
 
1629
- #: AdminTabCookiePopup.php
 
1630
  msgctxt "(Admin)"
1631
- msgid "Cookie Acceptance Popup header"
1632
- msgstr "Επικεφαλίδα αναδυόμενης παραλαβής cookie"
1633
 
1634
- #: views\admin\privacy-manager\header.php:2
 
1635
  msgctxt "(Admin)"
1636
- msgid "Data443™ Privacy Manager"
1637
- msgstr "Data443™ Privacy Manager"
1638
 
1639
- #: views\admin\privacy-manager\header.php:3
 
1640
  msgctxt "(Admin)"
1641
- msgid ""
1642
- "ensures privacy regulation compliance, such as GDPR, CCPA, LGPD, etc, at the "
1643
- "next level."
1644
- msgstr ""
1645
- "διασφαλίζει τη συμμόρφωση με τη νομοθεσία για την προστασία της ιδιωτικής "
1646
- "ζωής, όπως η GDPR, η CCPA, η LGPD κ.λπ., στο επόμενο επίπεδο."
1647
 
1648
- #: views\admin\privacy-manager\header.php:4
 
1649
  msgctxt "(Admin)"
1650
- msgid ""
1651
- "In addition to DSAR tracking and management, Privacy Manager adds the "
1652
- "following features to your data protection compliance resources:"
1653
- msgstr ""
1654
- "Εκτός από την παρακολούθηση και διαχείριση DSAR, το Privacy Manager "
1655
- "προσθέτει τις ακόλουθες δυνατότητες στους πόρους σας για την προστασία "
1656
- "δεδομένων:"
1657
 
1658
- #: views\admin\privacy-manager\header.php:6
 
1659
  msgctxt "(Admin)"
1660
- msgid "Log and store ICO breach notifications"
1661
- msgstr "Καταγράψτε και αποθηκεύστε τις ειδοποιήσεις παραβίασης του ICO"
1662
 
1663
- #: views\admin\privacy-manager\header.php:7
 
1664
  msgctxt "(Admin)"
1665
- msgid "Keeps full record of all requests, ticketed and timeline"
1666
- msgstr ""
1667
- "Διατηρεί πλήρη καταγραφή όλων των αιτημάτων, των εισιτηρίων και του "
1668
- "χρονοδιαγράμματος"
1669
 
1670
- #: views\admin\privacy-manager\header.php:8
 
1671
  msgctxt "(Admin)"
1672
- msgid "Gap analysis and breach notifications"
1673
- msgstr "Ανάλυση κενών και κοινοποιήσεις παραβίασης"
1674
 
1675
- #: views\admin\privacy-manager\header.php:9
 
1676
  msgctxt "(Admin)"
1677
- msgid "In depth activity log with all GDPR, CCPA, etc actions evidenced"
1678
- msgstr ""
1679
- "Σε βάθος καταγραφής δραστηριότητας με όλες τις ενέργειες GDPR, CCPA, κλπ"
1680
 
1681
- #: views\admin\privacy-manager\header.php:10
 
1682
  msgctxt "(Admin)"
1683
- msgid "Highlights areas of concern and where you need to focus"
1684
- msgstr "Επισημαίνει τομείς ενδιαφέροντος και όπου πρέπει να εστιάσετε"
1685
 
1686
- #: views\admin\privacy-manager\header.php:11
 
1687
  msgctxt "(Admin)"
1688
- msgid ""
1689
- "eLearning platform with access for all staff to ensure privacy regulation "
1690
- "compliance and obligations"
1691
- msgstr ""
1692
- "πλατφόρμα ηλεκτρονικής μάθησης με πρόσβαση για όλο το προσωπικό ώστε να "
1693
- "διασφαλιστεί η συμμόρφωση και οι υποχρεώσεις όσον αφορά την προστασία της "
1694
- "ιδιωτικής ζωής"
1695
 
1696
- #: views\admin\privacy-manager\header.php:12
 
1697
  msgctxt "(Admin)"
1698
- msgid "Tracks who accesses the system, when and why"
1699
- msgstr "Τραγούδια που έχουν πρόσβαση στο σύστημα, πότε και γιατί"
1700
 
1701
- #: views\admin\privacy-manager\header.php:15
 
1702
  msgctxt "(Admin)"
1703
- msgid ""
1704
- "Our system enables your business to demonstrate its obligations in "
1705
- "protecting your customer data, show understanding of your business "
1706
- "activities and deliver eLearning and online tests to employees, ensuring "
1707
- "everyone in your company understands your privacy compliance rules and best "
1708
- "practices to operate."
1709
- msgstr ""
1710
- "Το σύστημά μας επιτρέπει στην επιχείρησή σας να επιδείξει τις υποχρεώσεις "
1711
- "της όσον αφορά την προστασία των δεδομένων των πελατών σας, την κατανόηση "
1712
- "των επιχειρηματικών δραστηριοτήτων σας και την παροχή ηλεκτρονικών και "
1713
- "ηλεκτρονικών δοκιμών στους υπαλλήλους, εξασφαλίζοντας ότι όλοι στην εταιρεία "
1714
- "σας κατανοούν τους κανόνες συμμόρφωσης και τις βέλτιστες πρακτικές."
1715
 
1716
- #: views\admin\privacy-manager\header.php:16
1717
  msgctxt "(Admin)"
1718
- msgid ""
1719
- "No matter where you are on your data privacy journey, the ultimate goal is "
1720
- "compliance."
1721
- msgstr ""
1722
- "Ανεξάρτητα από το πού βρίσκεστε στο ταξίδι σας για την προστασία της "
1723
- "ιδιωτικής ζωής των δεδομένων, ο τελικός στόχος είναι η συμμόρφωση."
1724
 
1725
- #: views\admin\privacy-manager\header.php:16
1726
  msgctxt "(Admin)"
1727
- msgid "enables your organization to comply with all privacy regulations."
1728
- msgstr ""
1729
- "επιτρέπει στην εταιρεία σας να συμμορφώνεται με όλους τους κανονισμούς "
1730
- "απορρήτου."
1731
 
1732
- #: views\admin\support\contents.php:49
1733
  msgctxt "(Admin)"
1734
- msgid ""
1735
- "Found a bug or have a question about the plugin? Submit a support request "
1736
- "and we’ll get right on it!"
1737
- msgstr ""
1738
- "Βρήκατε ένα σφάλμα ή έχετε κάποια ερώτηση σχετικά με το plugin; Υποβάλετε "
1739
- "ένα αίτημα υποστήριξης και θα το πάμε σωστά!"
1740
 
1741
- #: views\admin\support\contents.php:58
1742
  msgctxt "(Admin)"
1743
- msgid "Need assistance in making your site compliant? We can help!"
1744
- msgstr ""
1745
- "Χρειάζεστε βοήθεια σχετικά με τη συμμόρφωση του ιστοτόπου σας; Μπορούμε να "
1746
- "βοηθήσουμε!"
1747
 
1748
- #: views\admin\general\woo-compatibility.php:9
1749
  msgctxt "(Admin)"
1750
- msgid "Enable WooCommerce data on GDPR tool"
1751
- msgstr "Ενεργοποιήστε τα δεδομένα του WooCommerce στο εργαλείο GDPR"
 
 
 
 
1752
 
1753
- #: src\Admin\AdminTabGeneral.php:241
1754
  msgctxt "(Admin)"
1755
- msgid "Enable WooCommerce Compatibility"
1756
- msgstr "Ενεργοποιήστε τη συμβατότητα του WooCommerce"
1757
 
1758
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:19
1759
- msgid "Note Regarding Order:"
1760
- msgstr "Σημείωση σχετικά με την παραγγελία:"
 
 
 
 
1761
 
1762
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:20
 
 
 
 
 
1763
  msgid ""
1764
- "Your order with status Processing will not get deleted until status change."
1765
  msgstr ""
1766
- "Η παραγγελία σας με την κατάσταση Επεξεργασία δεν θα διαγραφεί μέχρι την "
1767
- "αλλαγή της κατάστασης."
1768
 
1769
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:21
1770
- msgid "Your order with status Completed will get anonymize."
1771
- msgstr παραγγελία σας με την κατάσταση Ολοκληρώθηκε θα γίνει ανώνυμη."
 
 
 
 
1772
 
1773
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:22
1774
- msgid "If you delete Completed order you can't apply for refund."
1775
- msgstr ""
1776
- "Εάν διαγράψετε την ολοκλήρωση της παραγγελίας, δεν μπορείτε να υποβάλετε "
1777
- "αίτηση επιστροφής χρημάτων."
1778
 
1779
- #: views\admin\general\woo-compatibility.php:12
1780
- msgctxt "(Admin)"
1781
- msgid "Will work for WooCommerce Version 3.4.0 or later."
1782
- msgstr "Θα λειτουργήσει για το WooCommerce Έκδοση 3.4.0 ή νεότερη έκδοση."
1783
 
1784
- #: views\admin\general\edd-compatibility.php:9
 
 
 
1785
  msgctxt "(Admin)"
1786
- msgid "Enable EDD data on GDPR tool."
1787
- msgstr "Ενεργοποιήστε τα δεδομένα EDD στο εργαλείο GDPR."
1788
 
1789
- #: views\admin\general\edd-compatibility.php:12
 
 
 
 
 
 
1790
  msgctxt "(Admin)"
1791
- msgid "Will work for EDD Version 2.0.0 or later."
1792
- msgstr "Θα λειτουργήσει για EDD έκδοση 2.0.0 ή νεότερη έκδοση."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1793
 
1794
- #: src\Admin\AdminTabGeneral.php:262
 
 
 
1795
  msgctxt "(Admin)"
1796
- msgid "Enable EDD Compatibility"
1797
- msgstr "Ενεργοποίηση συμβατότητας EDD"
 
1798
 
1799
- #: gdpr-framework.php:298
1800
- msgid "Cookie Policy"
1801
- msgstr "Πολιτική cookie"
 
1802
 
1803
- #: ConsentManager.php:96
 
 
 
 
 
1804
  msgctxt "(Admin)"
1805
  msgid ""
1806
- "This consent is visible by default on woocommerce checkout page. If someone "
1807
- "wishes to withdraw it, they should simply request to delete all their data."
1808
  msgstr ""
1809
- "Αυτή η συναίνεση είναι ορατή από προεπιλογή στη σελίδα πληρωμής woocommerce. "
1810
- "Εάν κάποιος επιθυμεί να την αποσύρει, θα πρέπει απλώς να ζητήσει τη διαγραφή "
1811
- "όλων των δεδομένων."
1812
 
1813
- #: ConsentManager.php:96
1814
  msgctxt "(Admin)"
1815
- msgid "Woocommerce Policy Consent"
1816
- msgstr "Woocommerce Πολιτική συναίνεση"
1817
 
1818
- #: WoocommerceGdpr.php:150
1819
- msgid "Please acknowledge the Privacy Policy"
1820
- msgstr "Λάβετε υπόψη την Πολιτική Απορρήτου"
 
 
1821
 
1822
- #: woo-compatibility.php:9
 
1823
  msgctxt "(Admin)"
1824
- msgid "Enable WooCommerce data on GDPR tool."
1825
- msgstr "Ενεργοποιήστε τα δεδομένα του WooCommerce στο εργαλείο GDPR."
1826
 
1827
- #: views\admin\general\enable-popup.php:12
1828
  msgctxt "(Admin)"
1829
- msgid ""
1830
- "<b>Note:</b> Need to add custom content <b>gdpr_cookie_consent</b> its "
1831
- "accepted on popup accept button."
1832
- msgstr ""
1833
- "<b> Σημείωση: </ b> Πρέπει να προσθέσετε προσαρμοσμένο περιεχόμενο <b> "
1834
- "gdpr_cookie_consent </ b> το αποδεκτό κουμπί του στο αναδυόμενο παράθυρο."
1835
 
1836
- #: AdminTabCookiePopup.php:105
1837
  msgctxt "(Admin)"
1838
- msgid "Popup Dismiss Text"
1839
- msgstr "Αναδυόμενο παράθυρο κειμένου"
1840
 
1841
- #: AdminTabCookiePopup.php:98
1842
  msgctxt "(Admin)"
1843
- msgid "Popup Allow Text"
1844
- msgstr "Αναδυόμενο παράθυρο Allow Text"
1845
 
1846
- #: AdminTabGeneral.php:241
1847
  msgctxt "(Admin)"
1848
- msgid "Woocommerce Integration"
1849
- msgstr "Woocommerce Ολοκλήρωση"
1850
 
1851
- #: AdminTabGeneral.php:259
 
 
 
 
 
 
1852
  msgctxt "(Admin)"
1853
- msgid "Easy Digital Download Integration"
1854
- msgstr "Εύκολη ψηφιακή ενσωμάτωση λήψης"
 
 
 
 
 
1855
 
1856
- #: has-dpo.php:11
 
 
 
1857
  msgctxt "(Admin)"
1858
- msgid "I have appointed a Data Protection Officer (DPO)"
1859
- msgstr "Έχω ορίσει υπεύθυνο προστασίας δεδομένων (DPO)"
1860
 
1861
- #: views/admin/general/stylesheet.php:9
 
 
 
1862
  msgctxt "(Admin)"
1863
- msgid "Enable basic styling for Privacy Tools page."
1864
- msgstr "Ενεργοποιήστε το βασικό στυλ για τη σελίδα \"Εργαλεία απορρήτου\"."
1865
 
1866
- #: AdminTabPrivacyPolicy.php:204
1867
  msgctxt "(Admin)"
1868
- msgid "Delete Text"
1869
- msgstr "Διαγραφή κειμένου"
1870
 
1871
- #: consent.php:80
 
 
 
 
 
 
 
 
 
 
 
1872
  msgctxt "(Admin)"
1873
  msgid "Add consent type"
1874
  msgstr "Προσθήκη τύπου συγκατάθεσης"
1875
 
1876
- #: AdminTabGeneral.php:127
 
 
 
1877
  msgctxt "(Admin)"
1878
- msgid "Privacy Policy Custom URL"
1879
- msgstr "Προσωπική διεύθυνση URL πολιτικής απορρήτου"
1880
 
1881
- #: custom-policy-url.php:6
1882
  msgctxt "(Admin)"
1883
- msgid "Leave blank if privacy policy page already selected"
1884
- msgstr ""
1885
- "Αφήστε κενό εάν η σελίδα πολιτικής προστασίας απορρήτου έχει ήδη επιλεγεί"
1886
 
1887
- #: views/admin/general/description-delete-action.php:2
 
 
 
 
 
1888
  msgctxt "(Admin)"
1889
- msgid "What should happen if a data subject requests deleting their data."
 
1890
  msgstr ""
1891
- "Τι πρέπει να συμβεί εάν ένα υποκείμενο δεδομένων ζητήσει τη διαγραφή των "
1892
- "δεδομένων του."
1893
 
1894
- #: views/admin/general/description-export-action.php:2
1895
  msgctxt "(Admin)"
1896
- msgid "Optional. Select the page which contains your Terms & Conditions"
 
 
 
 
 
 
 
 
 
 
 
 
1897
  msgstr ""
1898
- "Προαιρετικός. Επιλέξτε τη σελίδα που περιέχει τους Όρους και τις "
1899
- "Προϋποθέσεις σας"
 
1900
 
1901
- #: views/admin/general/description-terms-page.php:2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1902
  msgctxt "(Admin)"
1903
  msgid ""
1904
- "What should happen if a data subject requests viewing or exporting their "
1905
- "data."
1906
  msgstr ""
1907
- "Τι θα συνέβαινε εάν ένα υποκείμενο δεδομένων ζητήσει την προβολή ή την "
1908
- "εξαγωγή των δεδομένων του."
1909
 
1910
- #: woo-disable_checkbox.php:9
 
 
 
1911
  msgctxt "(Admin)"
1912
- msgid "Disable WooCommerce Privacy Checkbox"
1913
- msgstr "Απενεργοποιήστε το πλαίσιο ελέγχου Απορρήτου του WooCommerce"
1914
 
1915
- #: AdminTabCookiePopup.php:133
 
 
 
1916
  msgctxt "(Admin)"
1917
- msgid "Popup Learn More Text"
1918
- msgstr "Αναδυόμενο κείμενο Μάθετε περισσότερα"
1919
 
1920
- #: AdminTabGeneral.php:262
1921
  msgctxt "(Admin)"
1922
- msgid "Disable WooCommerce Register Privacy Checkbox"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1923
  msgstr ""
1924
- "Απενεργοποιήστε το πλαίσιο ελέγχου ελέγχου ιδιωτικού απορρήτου του "
1925
- "WooCommerce"
1926
 
1927
- #: AdminTabCookiePopup.php:121
 
 
 
1928
  msgctxt "(Admin)"
1929
- msgid "Cookie Acceptance link target"
1930
- msgstr "Στόχος ζεύξης αποδοχής cookie"
 
1931
 
1932
- #: popup_link_target.php:3
 
 
 
1933
  msgctxt "(Admin)"
1934
- msgid "Next Tab"
1935
- msgstr "Επόμενη καρτέλα"
 
 
 
 
 
 
 
 
1936
 
1937
- #: popup_link_target.php:5
 
1938
  msgctxt "(Admin)"
1939
- msgid "Self"
1940
- msgstr "εαυτός"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  msgstr ""
8
  "Project-Id-Version: The GDPR Framework 1.0\n"
9
  "Report-Msgid-Bugs-To: gdpr@codelight.eu\n"
10
+ "POT-Creation-Date: 2021-10-28 11:20-0400\n"
11
+ "PO-Revision-Date: 2021-10-28 11:48-0400\n"
12
  "Last-Translator: john maniatopoulos <webace.wp@gmail.com>\n"
13
  "Language-Team: Greek\n"
14
  "Language: el\n"
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
18
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
19
+ "X-Generator: Poedit 3.0\n"
20
 
21
+ #: gdpr-framework.php:110
22
+ #, fuzzy
23
+ #| msgctxt "(Admin)"
24
+ #| msgid "WordPress GDPR &rsaquo; Error"
25
  msgctxt "(Admin)"
26
  msgid "WordPress GDPR &rsaquo; Error"
27
  msgstr "WordPress GDPR & rsaquo; Λάθος"
28
 
29
+ #: gdpr-framework.php:121
30
+ #, fuzzy
31
+ #| msgctxt "(Admin)"
32
+ #| msgid "You must be using PHP 5.6.33 or greater."
33
+ msgctxt "(Admin)"
34
+ msgid "You must be using PHP 5.6.0 or greater."
35
+ msgstr "Πρέπει να χρησιμοποιείτε την PHP 5.6.33 ή μεγαλύτερη."
36
+
37
+ #: gdpr-framework.php:122
38
  msgctxt "(Admin)"
39
  msgid "Invalid PHP version"
40
  msgstr "Μη έγκυρη έκδοση PHP"
41
 
42
+ #: gdpr-framework.php:132
43
+ #, fuzzy
44
+ #| msgctxt "(Admin)"
45
+ #| msgid "You must be using WordPress 4.3.0 or greater."
46
  msgctxt "(Admin)"
47
+ msgid "You must be using WordPress 4.3.0 or greater."
48
+ msgstr "Πρέπει να χρησιμοποιείτε WordPress 4.3.0 ή μεγαλύτερη."
49
 
50
+ #: gdpr-framework.php:133
51
+ #, fuzzy
52
+ #| msgctxt "(Admin)"
53
+ #| msgid "Invalid WordPress version"
54
  msgctxt "(Admin)"
55
  msgid "Invalid WordPress version"
56
  msgstr "Μη έγκυρη έκδοση WordPress"
57
 
58
+ #: gdpr-framework.php:204
59
  msgctxt "(Admin)"
60
+ msgid "Anonymous"
61
+ msgstr "Ανώνυμος"
62
 
63
+ #: gdpr-helper-functions.php:75
64
  msgctxt "(Admin)"
65
  msgid ""
66
  "You appear to be running a development version of GDPR. You must run "
69
  "Σας φαίνεται να λειτουργεί μια έκδοση ανάπτυξης του GDPR πρέπει να "
70
  "εκτελέσετε το <code>composer install</code> από τον κατάλογο του plugin."
71
 
72
+ #: gdpr-helper-functions.php:80
73
+ #, fuzzy
74
+ #| msgctxt "(Admin)"
75
+ #| msgid "Autoloader not found."
76
  msgctxt "(Admin)"
77
  msgid "Autoloader not found."
78
  msgstr "Autoloader δεν βρέθηκε."
79
 
80
+ #: gdpr-helper-functions.php:126
81
+ msgid ""
82
+ "This website uses cookies to ensure you get the best experience on our "
83
+ "website."
84
+ msgstr ""
85
+ "Αυτός ο ιστότοπος χρησιμοποιεί cookies για να εξασφαλίσει ότι θα έχετε την "
86
+ "καλύτερη εμπειρία στον ιστότοπό μας."
87
+
88
+ #: gdpr-helper-functions.php:139
89
+ msgid "Decline"
90
+ msgstr "πτώση"
91
+
92
+ #: gdpr-helper-functions.php:152
93
+ msgid "Accept"
94
+ msgstr "Αποδέχομαι"
95
+
96
+ #: gdpr-helper-functions.php:165
97
+ msgid "Learn more"
98
+ msgstr "Μάθε περισσότερα"
99
+
100
+ #: gdpr-helper-functions.php:220
101
+ msgid "Cookie Policy"
102
+ msgstr "Πολιτική cookie"
103
+
104
+ #: gdpr-helper-functions.php:258
105
+ msgid "Settings"
106
+ msgstr "Ρυθμίσεις"
107
 
108
+ #: gdpr-helper-functions.php:259
109
+ #, fuzzy
110
+ msgid "PREMIUM"
111
+ msgstr "ΑΣΦΆΛΙΣΤΡΟ"
112
+
113
+ #: src/Admin/AdminTab.php:195
114
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:114
115
  msgctxt "(Admin)"
116
  msgid "Save"
117
  msgstr "Αποθήκευση"
118
 
119
+ #: src/Admin/AdminTab.php:231
120
  msgctxt "(Admin)"
121
  msgid "Policy generated!"
122
  msgstr "Πολιτική που δημιουργήθηκε!"
126
  msgid "General"
127
  msgstr "Γενικά"
128
 
129
+ #: src/Admin/AdminTabGeneral.php:55
130
  msgctxt "(Admin)"
131
  msgid "General Settings"
132
+ msgstr "Γενικές Ρυθμίσεις"
133
 
134
+ #: src/Admin/AdminTabGeneral.php:60
135
  msgctxt "(Admin)"
136
  msgid "Enable Privacy Tools"
137
+ msgstr "Ενεργοποίηση εργαλείων απορρήτου"
138
+
139
+ #: src/Admin/AdminTabGeneral.php:67
140
+ #, fuzzy
141
+ #| msgctxt "(Admin)"
142
+ #| msgid "Enable Term and Conditions"
143
+ msgctxt "(Admin)"
144
+ msgid "Enable Term and Conditions"
145
+ msgstr "Ενεργοποίηση όρων και προϋποθέσεων"
146
+
147
+ #: src/Admin/AdminTabGeneral.php:74
148
+ #, fuzzy
149
+ #| msgctxt "(Admin)"
150
+ #| msgid "Disable Comment Checkbox"
151
+ msgctxt "(Admin)"
152
+ msgid "Disable Comment Checkbox"
153
+ msgstr "Απενεργοποιήστε το πλαίσιο ελέγχου Σχόλιο"
154
+
155
+ #: src/Admin/AdminTabGeneral.php:81
156
+ #, fuzzy
157
+ #| msgctxt "(Admin)"
158
+ #| msgid "Disable Register Form Checkbox"
159
+ msgctxt "(Admin)"
160
+ msgid "Disable Register Form Checkbox"
161
+ msgstr "Απενεργοποίηση πλαισίου ελέγχου φόρμας εγγραφής"
162
+
163
+ #: src/Admin/AdminTabGeneral.php:91
164
+ #, fuzzy
165
+ #| msgctxt "(Admin)"
166
+ #| msgid "Email Setting"
167
+ msgctxt "(Admin)"
168
+ msgid "Email Setting"
169
+ msgstr "Ρύθμιση ηλεκτρονικού ταχυδρομείου"
170
+
171
+ #: src/Admin/AdminTabGeneral.php:96
172
+ msgctxt "(Admin)"
173
+ msgid "From Name"
174
+ msgstr "Όνομα Αποστολέα"
175
+
176
+ #: src/Admin/AdminTabGeneral.php:103
177
+ msgctxt "(Admin)"
178
+ msgid "From Email"
179
+ msgstr "Email Αποστολέα"
180
 
181
+ #: src/Admin/AdminTabGeneral.php:112
182
  msgctxt "(Admin)"
183
  msgid "Pages"
184
  msgstr "Σελίδες"
185
 
186
+ #: src/Admin/AdminTabGeneral.php:117 src/Admin/WordpressAdmin.php:166
187
+ #, fuzzy
188
+ #| msgctxt "(Admin)"
189
+ #| msgid "Privacy Tools Page"
190
  msgctxt "(Admin)"
191
  msgid "Privacy Tools Page"
192
  msgstr "Εργαλεία σελίδας απορρήτου"
193
 
194
+ #: src/Admin/AdminTabGeneral.php:124
195
+ #, fuzzy
196
+ #| msgctxt "(Admin)"
197
+ #| msgid "Privacy Policy Custom URL"
198
+ msgctxt "(Admin)"
199
+ msgid "Privacy Tools Custom URL"
200
+ msgstr "Προσωπική διεύθυνση URL πολιτικής απορρήτου"
201
+
202
+ #: src/Admin/AdminTabGeneral.php:131 src/Admin/WordpressAdmin.php:162
203
  msgctxt "(Admin)"
204
  msgid "Privacy Policy Page"
205
+ msgstr "Πολιτική απορρήτου"
206
+
207
+ #: src/Admin/AdminTabGeneral.php:138
208
+ msgctxt "(Admin)"
209
+ msgid "Privacy Policy Custom URL"
210
+ msgstr "Προσωπική διεύθυνση URL πολιτικής απορρήτου"
211
 
212
+ #: src/Admin/AdminTabGeneral.php:145
213
  msgctxt "(Admin)"
214
  msgid "Terms & Conditions Page"
215
  msgstr "Σελίδα Όρων & Προϋποθέσεων"
216
 
217
+ #: src/Admin/AdminTabGeneral.php:152
218
+ #, fuzzy
219
+ #| msgctxt "(Admin)"
220
+ #| msgid "Terms & Conditions Page"
221
+ msgctxt "(Admin)"
222
+ msgid "Terms & Conditions Custom URL"
223
+ msgstr "Σελίδα Όρων & Προϋποθέσεων"
224
+
225
+ #: src/Admin/AdminTabGeneral.php:162
226
  msgctxt "(Admin)"
227
  msgid "View & Export Data"
228
+ msgstr "Προβολή & Εξαγωγή δεδομένων"
229
 
230
+ #: src/Admin/AdminTabGeneral.php:167
231
+ #, fuzzy
232
+ #| msgctxt "(Admin)"
233
+ #| msgid "Export action"
234
  msgctxt "(Admin)"
235
  msgid "Export action"
236
  msgstr "Εξαγωγή"
237
 
238
+ #: src/Admin/AdminTabGeneral.php:174 src/Admin/AdminTabGeneral.php:213
239
  msgctxt "(Admin)"
240
  msgid "Email to notify"
241
  msgstr "Διεύθυνση ηλεκτρονικού ταχυδρομείου για κοινοποίηση"
242
 
243
+ #: src/Admin/AdminTabGeneral.php:185
244
+ #, fuzzy
245
+ #| msgctxt "(Admin)"
246
+ #| msgid "Delete & Anonymize Data"
247
  msgctxt "(Admin)"
248
  msgid "Delete & Anonymize Data"
249
  msgstr "Διαγραφή του & ανωνυμία δεδομένων"
250
 
251
+ #: src/Admin/AdminTabGeneral.php:190
252
+ #, fuzzy
253
+ #| msgctxt "(Admin)"
254
+ #| msgid "Delete action"
255
  msgctxt "(Admin)"
256
  msgid "Delete action"
257
  msgstr "Διαγραφή ενέργειας"
258
 
259
+ #: src/Admin/AdminTabGeneral.php:197
260
+ #, fuzzy
261
+ #| msgctxt "(Admin)"
262
+ #| msgid "Delete or reassign content?"
263
  msgctxt "(Admin)"
264
  msgid "Delete or reassign content?"
265
  msgstr "Διαγράψετε ή να εκχωρήσετε εκ νέου περιεχομένου;"
266
 
267
+ #: src/Admin/AdminTabGeneral.php:205
268
+ #, fuzzy
269
+ #| msgctxt "(Admin)"
270
+ #| msgid "Reassign content to"
271
  msgctxt "(Admin)"
272
  msgid "Reassign content to"
273
  msgstr "Επανατοποθετήστε περιεχόμενο σε"
274
 
275
+ #: src/Admin/AdminTabGeneral.php:225
276
  msgctxt "(Admin)"
277
  msgid "Styling"
278
  msgstr "Μορφοποίηση"
279
 
280
+ #: src/Admin/AdminTabGeneral.php:230
281
+ #, fuzzy
282
+ #| msgctxt "(Admin)"
283
+ #| msgid "Enable basic styling on Privacy Tools page"
284
  msgctxt "(Admin)"
285
  msgid "Enable basic styling on Privacy Tools page"
286
  msgstr "Ενεργοποίηση βασικού στυλ στη σελίδα εργαλεία απορρήτου"
287
 
288
+ #: src/Admin/AdminTabGeneral.php:242
289
  msgctxt "(Admin)"
290
  msgid "Compatibility"
291
  msgstr "Συμβατότητα"
292
 
293
+ #: src/Admin/AdminTabGeneral.php:247
294
  msgctxt "(Admin)"
295
  msgid "Enable automatic theme compatibility"
296
  msgstr "Ενεργοποίηση αυτόματης συμβατότητας θέματος"
297
 
298
+ #: src/Admin/AdminTabGeneral.php:259
299
+ msgctxt "(Admin)"
300
+ msgid "Woocommerce Integration"
301
+ msgstr "Ενσωμάτωση Woocommerce"
302
+
303
+ #: src/Admin/AdminTabGeneral.php:264
304
+ #, fuzzy
305
+ #| msgctxt "(Admin)"
306
+ #| msgid "Enable WooCommerce Compatibility"
307
+ msgctxt "(Admin)"
308
+ msgid "Enable WooCommerce Compatibility"
309
+ msgstr "Ενεργοποιήστε τη συμβατότητα του WooCommerce"
310
+
311
+ #: src/Admin/AdminTabGeneral.php:271
312
+ #: views/admin/general/woo-disable_checkbox.php:10
313
+ #, fuzzy
314
+ #| msgctxt "(Admin)"
315
+ #| msgid "Disable WooCommerce Privacy Checkbox"
316
+ msgctxt "(Admin)"
317
+ msgid "Disable WooCommerce Privacy Checkbox"
318
+ msgstr "Απενεργοποιήστε το πλαίσιο ελέγχου Απορρήτου του WooCommerce"
319
+
320
+ #: src/Admin/AdminTabGeneral.php:278
321
+ #: views/admin/general/woo-disable_register_checkbox.php:9
322
+ #, fuzzy
323
+ #| msgctxt "(Admin)"
324
+ #| msgid "Disable WooCommerce Register Privacy Checkbox"
325
+ msgctxt "(Admin)"
326
+ msgid "Disable WooCommerce Register Privacy Checkbox"
327
+ msgstr ""
328
+ "Απενεργοποιήστε το πλαίσιο ελέγχου ελέγχου ιδιωτικού απορρήτου του "
329
+ "WooCommerce"
330
+
331
+ #: src/Admin/AdminTabGeneral.php:290
332
+ #, fuzzy
333
+ #| msgctxt "(Admin)"
334
+ #| msgid "Easy Digital Download Integration"
335
+ msgctxt "(Admin)"
336
+ msgid "Easy Digital Download Integration"
337
+ msgstr "Εύκολη ψηφιακή ενσωμάτωση λήψης"
338
+
339
+ #: src/Admin/AdminTabGeneral.php:295
340
+ #, fuzzy
341
+ #| msgctxt "(Admin)"
342
+ #| msgid "Enable EDD Compatibility"
343
+ msgctxt "(Admin)"
344
+ msgid "Enable EDD Compatibility"
345
+ msgstr "Ενεργοποίηση συμβατότητας EDD"
346
+
347
+ #: src/Admin/AdminTabGeneral.php:322
348
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:181
349
+ #, fuzzy
350
+ #| msgctxt "(Admin)"
351
+ #| msgid "Disable Checkbox For Comments"
352
+ msgctxt "(Admin)"
353
+ msgid "Disable Checkbox For Comments"
354
+ msgstr "Απενεργοποιήστε το πλαίσιο ελέγχου για σχόλια"
355
+
356
+ #: src/Admin/AdminTabGeneral.php:330
357
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:188
358
+ #, fuzzy
359
+ #| msgctxt "(Admin)"
360
+ #| msgid "Disable Checkbox For Register Form"
361
+ msgctxt "(Admin)"
362
+ msgid "Disable Checkbox For Register Form"
363
+ msgstr "Απενεργοποίηση του πλαισίου ελέγχου για τη φόρμα εγγραφής"
364
+
365
+ #: src/Admin/AdminTabGeneral.php:408 src/Admin/AdminTabGeneral.php:424
366
+ #: src/Admin/AdminTabGeneral.php:449 src/Admin/AdminTabGeneral.php:506
367
  #: views/installer/steps/configuration-settings.php:62
368
  msgctxt "(Admin)"
369
  msgid "&mdash; Select &mdash;"
370
+ msgstr "&mdash; Επιλέξτε &mdash;"
371
 
372
+ #: src/Admin/WordpressAdmin.php:68
373
  msgctxt "(Admin)"
374
  msgid "Privacy & GDPR Settings"
375
  msgstr "Απορρήτου & GDPR ρυθμίσεις"
376
 
377
+ #: src/Admin/WordpressAdmin.php:69 views/installer/welcome-notice.php:6
378
+ #, fuzzy
379
  msgctxt "(Admin)"
380
+ msgid "Data443 GDPR"
381
+ msgstr "Δεδομένα443 ΓΚΠΔ"
382
+
383
+ #: src/Components/AdvancedIntegration/AdminTabAdvancedIntegration.php:17
384
+ #: src/Components/AdvancedIntegration/AdminTabAdvancedIntegration.php:26
385
+ #, fuzzy
386
+ #| msgctxt "(Admin)"
387
+ #| msgid "No data found!"
388
+ msgctxt "(Admin)"
389
+ msgid "Data Hound"
390
+ msgstr "Δεν βρέθηκαν δεδομένα"
391
 
392
  #: src/Components/Consent/AdminTabConsent.php:30
393
+ #: src/Components/Consent/AdminTabConsent.php:50
394
  msgctxt "(Admin)"
395
  msgid "Consent"
396
  msgstr "Συγκατάθεση"
397
 
398
+ #: src/Components/Consent/AdminTabConsent.php:55
399
+ msgctxt "(Admin)"
400
+ msgid "Additional Settings"
401
+ msgstr "Επιπρόσθετες ρυθμίσεις"
402
+
403
+ #: src/Components/Consent/AdminTabConsent.php:60
404
+ #, fuzzy
405
+ msgctxt "(Admin)"
406
+ msgid "Display Consent Calendar"
407
+ msgstr "Εμφάνιση ημερολογίου συναίνεσης"
408
+
409
+ #: src/Components/Consent/AdminTabConsent.php:172
410
+ #, fuzzy
411
+ #| msgctxt "(Admin)"
412
+ #| msgid "Consent slug is a required field!"
413
  msgctxt "(Admin)"
414
  msgid "Consent slug is a required field!"
415
  msgstr "Συγκατάθεση slug είναι ένα απαιτούμενο πεδίο!"
416
 
417
+ #: src/Components/Consent/AdminTabConsent.php:177
418
+ #, fuzzy
419
+ #| msgctxt "(Admin)"
420
+ #| msgid ""
421
+ #| "You may only use alphanumeric characters, dash and underscore in the "
422
+ #| "consent slug field."
423
  msgctxt "(Admin)"
424
  msgid ""
425
  "You may only use alphanumeric characters, dash and underscore in the consent "
428
  "Μπορείτε να χρησιμοποιήσετε μόνο αλφαριθμητικούς χαρακτήρες, παύλα και "
429
  "υπογράμμιση στο πεδίο συγκατάθεσης."
430
 
431
+ #: src/Components/Consent/AdminTabConsent.php:182
432
+ #, fuzzy
433
+ #| msgctxt "(Admin)"
434
+ #| msgid "Consent title is a required field!"
435
  msgctxt "(Admin)"
436
  msgid "Consent title is a required field!"
437
  msgstr "Συγκατάθεση τίτλος το πεδίο είναι υποχρεωτικό!"
438
 
439
+ #: src/Components/Consent/AdminTabConsent.php:194
440
+ #, fuzzy
441
+ msgid ""
442
+ "To use this website, you accepted our Privacy Policy. If you wish to "
443
+ "withdraw your acceptance, please use the \"Delete my data\" button below."
444
+ msgstr ""
445
+ "Για να χρησιμοποιήσετε αυτόν τον ιστότοπο, αποδεχτείτε την Πολιτική "
446
+ "Απορρήτου μας. Εάν επιθυμείτε να αποσύρετε την αποδοχή σας, χρησιμοποιήστε "
447
+ "το κουμπί \"Διαγραφή των δεδομένων μου\" παρακάτω."
448
+
449
+ #: src/Components/Consent/AdminTabConsent.php:197
450
+ #, fuzzy
451
+ msgid ""
452
+ "Enable this feature to allow users to submit a time limit on how many months "
453
+ "their consent is given for their coments and registration."
454
+ msgstr ""
455
+ "Ενεργοποιήστε αυτήν τη δυνατότητα για να επιτρέψετε στους χρήστες να "
456
+ "υποβάλουν μια προθεσμία για το πόσους μήνες δίνεται η συγκατάθεσή τους για "
457
+ "τις συνενώσεις και την εγγραφή τους."
458
+
459
+ #: src/Components/Consent/ConsentManager.php:53
460
+ #: src/Modules/WooCommerceGdpr/WooCommerceGdpr.php:144
461
  #, php-format
462
  msgid "I accept the %sPrivacy Policy%s"
463
  msgstr "Αποδέχομαι την %sΠολιτική Προστασίας Προσωπικών Δεδομένων%s"
464
 
465
+ #: src/Components/Consent/ConsentManager.php:57
466
+ #: src/Components/Consent/ConsentManager.php:78
467
+ #, fuzzy
468
+ #| msgctxt "(Admin)"
469
+ #| msgid ""
470
+ #| "This consent is not visible by default. If someone wishes to withdraw it, "
471
+ #| "they should simply request to delete all their data."
472
  msgctxt "(Admin)"
473
  msgid ""
474
  "This consent is not visible by default. If someone wishes to withdraw it, "
477
  "Αυτή η συγκατάθεση δεν είναι ορατή από προεπιλογή. Αν κάποιος επιθυμεί να "
478
  "την αποσύρει, θα πρέπει απλώς να ζητήσει τη διαγραφή όλων των δεδομένων."
479
 
480
+ #: src/Components/Consent/ConsentManager.php:74
481
  #, php-format
482
  msgid "I accept the %sTerms & Conditions%s"
483
  msgstr "Αποδέχομαι τους %sΌρους & Προϋποθέσεις%s"
484
 
485
+ #: src/Components/Consent/ConsentManager.php:87
486
+ #, fuzzy
487
+ #| msgctxt "(Admin)"
488
+ #| msgid "Woocommerce Policy Consent"
489
+ msgctxt "(Admin)"
490
+ msgid "Woocommerce Policy Consent"
491
+ msgstr "Woocommerce Πολιτική συναίνεση"
492
+
493
+ #: src/Components/Consent/ConsentManager.php:88
494
+ #, fuzzy
495
+ #| msgctxt "(Admin)"
496
+ #| msgid ""
497
+ #| "This consent is visible by default on woocommerce checkout page. If "
498
+ #| "someone wishes to withdraw it, they should simply request to delete all "
499
+ #| "their data."
500
+ msgctxt "(Admin)"
501
+ msgid ""
502
+ "This consent is visible by default on woocommerce checkout page. If someone "
503
+ "wishes to withdraw it, they should simply request to delete all their data."
504
+ msgstr ""
505
+ "Αυτή η συναίνεση είναι ορατή από προεπιλογή στη σελίδα πληρωμής woocommerce. "
506
+ "Εάν κάποιος επιθυμεί να την αποσύρει, θα πρέπει απλώς να ζητήσει τη διαγραφή "
507
+ "όλων των δεδομένων."
508
+
509
+ #: src/Components/Consent/ConsentManager.php:389
510
+ #, fuzzy
511
+ #| msgctxt "(Admin)"
512
+ #| msgid "Company information"
513
+ msgid "Consent Information"
514
+ msgstr "ΠΛΗΡΟΦΟΡΙΕΣ ΓΙΑ ΤΗΝ ΕΤΑΙΡΙΑ"
515
+
516
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:17
517
+ msgctxt "(Admin)"
518
+ msgid "Cookie Popup"
519
+ msgstr "Αναδυόμενο Παράθυρο Cookie"
520
+
521
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:44
522
+ #, fuzzy
523
+ #| msgctxt "(Admin)"
524
+ #| msgid "Cookie Popup Settings"
525
+ msgctxt "(Admin)"
526
+ msgid "Cookie Popup Settings"
527
+ msgstr "Ρυθμίσεις popup cookie"
528
+
529
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:48
530
+ #: views/admin/general/enable-popup.php:9
531
+ #, fuzzy
532
+ #| msgctxt "(Admin)"
533
+ #| msgid "Enable Cookie Acceptance Popup"
534
+ msgctxt "(Admin)"
535
+ msgid "Enable Cookie Acceptance Popup"
536
+ msgstr "Ενεργοποίηση αναδυόμενου παραθύρου αποδοχής cookie"
537
+
538
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:54
539
+ #: views/admin/general/enable-onetime-popup.php:9
540
+ #, fuzzy
541
+ #| msgctxt "(Admin)"
542
+ #| msgid "Enable One Time Cookie Acceptance Popup"
543
+ msgctxt "(Admin)"
544
+ msgid "Enable One Time Cookie Acceptance Popup"
545
+ msgstr "Ενεργοποίηση αναδυόμενου παραλήπτη αποδοχής cookie μιας ώρας"
546
+
547
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:60
548
+ #, fuzzy
549
+ #| msgctxt "(Admin)"
550
+ #| msgid "Enable Privacy policy on Popup"
551
+ msgctxt "(Admin)"
552
+ msgid "Enable Privacy policy on Popup"
553
+ msgstr "Ενεργοποιήστε την πολιτική απορρήτου στο Αναδυόμενο παράθυρο"
554
+
555
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:66
556
+ #, fuzzy
557
+ #| msgctxt "(Admin)"
558
+ #| msgid "Cookie Acceptance Popup header"
559
+ msgctxt "(Admin)"
560
+ msgid "Cookie Acceptance Popup header"
561
+ msgstr "Επικεφαλίδα αναδυόμενης παραλαβής cookie"
562
+
563
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:72
564
+ #, fuzzy
565
+ #| msgctxt "(Admin)"
566
+ #| msgid "Cookie Acceptance Popup Content"
567
+ msgctxt "(Admin)"
568
+ msgid "Cookie Acceptance Popup Content"
569
+ msgstr "Περιεχόμενο αναδυόμενων παραληπτών cookie"
570
+
571
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:81
572
+ #, fuzzy
573
+ #| msgctxt "(Admin)"
574
+ #| msgid "Acceptance Popup Setting"
575
+ msgctxt "(Admin)"
576
+ msgid "Acceptance Popup Setting"
577
+ msgstr "Ρύθμιση αναδυόμενης παραλαβής"
578
+
579
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:86
580
+ msgctxt "(Admin)"
581
+ msgid "Popup Position"
582
+ msgstr "Θέση Αναδυόμενου Παραθύρου"
583
+
584
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:93
585
+ #, fuzzy
586
+ #| msgctxt "(Admin)"
587
+ #| msgid "Popup theme"
588
+ msgctxt "(Admin)"
589
+ msgid "Popup theme"
590
+ msgstr "Θέμα popup"
591
+
592
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:100
593
+ #, fuzzy
594
+ #| msgctxt "(Admin)"
595
+ #| msgid "Popup Allow Text"
596
+ msgctxt "(Admin)"
597
+ msgid "Popup Allow Text"
598
+ msgstr "Αναδυόμενο παράθυρο Allow Text"
599
+
600
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:107
601
+ #, fuzzy
602
+ #| msgctxt "(Admin)"
603
+ #| msgid "Popup Dismiss Text"
604
+ msgctxt "(Admin)"
605
+ msgid "Popup Dismiss Text"
606
+ msgstr "Αναδυόμενο παράθυρο κειμένου"
607
+
608
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:114
609
+ msgctxt "(Admin)"
610
+ msgid "Popup Learn More Text"
611
+ msgstr "Αναδυόμενο Κείμενο για το Μάθετε Περισσότερα"
612
+
613
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:121
614
+ #, fuzzy
615
+ #| msgctxt "(Admin)"
616
+ #| msgid "Cookie Acceptance link target"
617
+ msgctxt "(Admin)"
618
+ msgid "Cookie Acceptance link target"
619
+ msgstr "Στόχος ζεύξης αποδοχής cookie"
620
+
621
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:128
622
+ #, fuzzy
623
+ #| msgctxt "(Admin)"
624
+ #| msgid "Cookie Acceptance Background Color"
625
+ msgctxt "(Admin)"
626
+ msgid "Cookie Acceptance Background Color"
627
+ msgstr "Υποδοχή χρώματος φόντου cookie"
628
+
629
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:135
630
+ #, fuzzy
631
+ #| msgctxt "(Admin)"
632
+ #| msgid "Cookie Acceptance Text Color"
633
+ msgctxt "(Admin)"
634
+ msgid "Cookie Acceptance Text Color"
635
+ msgstr "Χρώμα κειμένου αποδοχής cookie"
636
+
637
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:142
638
+ #, fuzzy
639
+ #| msgctxt "(Admin)"
640
+ #| msgid "Cookie Acceptance Button Backgroung Color"
641
+ msgctxt "(Admin)"
642
+ msgid "Cookie Acceptance Button Backgroung Color"
643
+ msgstr "Κουμπί λήψης cookie Backgroung Color"
644
+
645
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:149
646
+ #, fuzzy
647
+ #| msgctxt "(Admin)"
648
+ #| msgid "Cookie Acceptance Button Color"
649
+ msgctxt "(Admin)"
650
+ msgid "Cookie Acceptance Button Color"
651
+ msgstr "Χρώμα κουμπιού αποδοχής cookie"
652
+
653
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:156
654
+ #, fuzzy
655
+ #| msgctxt "(Admin)"
656
+ #| msgid "Cookie Acceptance Border Color"
657
+ msgctxt "(Admin)"
658
+ msgid "Cookie Acceptance Border Color"
659
+ msgstr "Χρώμα ορίου λήψης cookie"
660
+
661
+ #: src/Components/DoNotSell/AdminTabDoNotSell.php:17
662
+ #: src/Components/DoNotSell/AdminTabDoNotSell.php:28
663
+ #, fuzzy
664
+ msgctxt "(Admin)"
665
+ msgid "Do Not Sell My Data"
666
+ msgstr "Μην πουλάτε τα δεδομένα μου"
667
+
668
+ #: src/Components/DoNotSell/AdminTabDoNotSell.php:34
669
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:62
670
+ msgctxt "(Admin)"
671
+ msgid "Shortcode"
672
+ msgstr "Shortcode"
673
+
674
+ #: src/Components/DoNotSell/AdminTabDoNotSell.php:40
675
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:68
676
+ #, fuzzy
677
+ msgctxt "(Admin)"
678
+ msgid "Shortcode for PHP"
679
+ msgstr "Σύντομος κώδικας για PHP"
680
+
681
+ #: src/Components/DoNotSell/AdminTabDoNotSell.php:46
682
+ #, fuzzy
683
+ msgctxt "(Admin)"
684
+ msgid "View Requests"
685
+ msgstr "Προβολή αιτημάτων"
686
+
687
+ #: src/Components/PrivacyManager/AdminTabPrivacyManager.php:17
688
+ #, fuzzy
689
+ #| msgctxt "(Admin)"
690
+ #| msgid "Data443™ Privacy Manager"
691
+ msgctxt "(Admin)"
692
+ msgid "Global Privacy Manager"
693
+ msgstr "Data443™ Privacy Manager"
694
+
695
+ #: src/Components/PrivacyManager/AdminTabPrivacyManager.php:29
696
+ #, fuzzy
697
+ #| msgctxt "(Admin)"
698
+ #| msgid "Data443™ Privacy Manager"
699
+ msgctxt "(Admin)"
700
+ msgid "Privacy Manager"
701
+ msgstr "Data443™ Privacy Manager"
702
+
703
  #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:19
704
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:62
705
  #: views/admin/privacy-policy/generated.php:1 views/installer/header.php:41
706
  msgctxt "(Admin)"
707
  msgid "Privacy Policy"
708
  msgstr "Πολιτική Απορρήτου"
709
 
710
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:71
711
  msgctxt "(Admin)"
712
  msgid "Company information"
713
  msgstr "ΠΛΗΡΟΦΟΡΙΕΣ ΓΙΑ ΤΗΝ ΕΤΑΙΡΙΑ"
714
 
715
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:76
716
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:223
717
  msgctxt "(Admin)"
718
  msgid "Company Name"
719
+ msgstr "Επωνυμία Εταιρείας"
720
 
721
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:84
722
  msgctxt "(Admin)"
723
  msgid "Company Email"
724
  msgstr "Εταιρικό email"
725
 
726
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:91
727
+ #, fuzzy
728
+ #| msgctxt "(Admin)"
729
+ #| msgid "Company Location"
730
  msgctxt "(Admin)"
731
  msgid "Company Location"
732
  msgstr "Τοποθεσία της εταιρείας"
733
 
734
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:107
735
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:259
736
+ #, fuzzy
737
+ #| msgctxt "(Admin)"
738
+ #| msgid "Representative Contact Name"
739
  msgctxt "(Admin)"
740
  msgid "Representative Contact Name"
741
  msgstr "Αντιπροσωπευτικό όνομα επαφής"
742
 
743
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:114
744
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:266
745
+ #, fuzzy
746
+ #| msgctxt "(Admin)"
747
+ #| msgid "Representative Contact Email"
748
  msgctxt "(Admin)"
749
  msgid "Representative Contact Email"
750
  msgstr "Εκπρόσωπος επικοινωνίας Email"
751
 
752
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:121
753
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:273
754
+ #, fuzzy
755
+ #| msgctxt "(Admin)"
756
+ #| msgid "Representative Contact Phone"
757
  msgctxt "(Admin)"
758
  msgid "Representative Contact Phone"
759
  msgstr "Τηλέφωνο επικοινωνίας του εκπροσώπου"
760
 
761
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:137
762
  msgctxt "(Admin)"
763
  msgid "Data Protection Authority"
764
+ msgstr "Αρχή Προστασίας Δεδομένων"
765
 
766
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:143
767
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:302
768
  msgctxt "(Admin)"
769
  msgid "Data Protection Authority Website"
770
  msgstr "Δικτυακός τόπος της αρχής προστασίας δεδομένων"
771
 
772
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:150
773
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:309
774
  msgctxt "(Admin)"
775
  msgid "Data Protection Authority Email"
776
  msgstr "Ηλεκτρονικό ταχυδρομείο αρχής προστασίας δεδομένων"
777
 
778
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:157
779
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:316
780
  msgctxt "(Admin)"
781
  msgid "Data Protection Authority Phone"
782
  msgstr "Τηλέφωνο αρχής προστασίας δεδομένων"
783
 
784
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:167
785
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:177
786
+ #, fuzzy
787
+ #| msgctxt "(Admin)"
788
+ #| msgid "Data Protection Officer"
789
  msgctxt "(Admin)"
790
  msgid "Data Protection Officer"
791
  msgstr "Υπεύθυνος προστασίας δεδομένων"
792
 
793
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:170
794
  msgctxt "(Admin)"
795
  msgid "Knowledge base: Do I need to appoint a Data Protection Officer?"
796
  msgstr ""
797
  "Γνωσιακή βάση: χρειάζεται να διορίσει έναν υπεύθυνο προστασίας δεδομένων;"
798
 
799
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:184
800
  msgctxt "(Admin)"
801
  msgid "Data Protection Officer Name"
802
+ msgstr "Υπεύθυνος Προστασίας Δεδομένων"
803
 
804
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:192
805
  msgctxt "(Admin)"
806
  msgid "Data Protection Officer Email"
807
  msgstr "Ηλεκτρονικό ταχυδρομείο υπευθύνου προστασίας δεδομένων"
808
 
809
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:204
810
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:347
811
+ #, fuzzy
812
+ #| msgctxt "(Admin)"
813
+ #| msgid "Delete Text"
814
+ msgctxt "(Admin)"
815
+ msgid "Delete Text"
816
+ msgstr "Διαγραφή κειμένου"
817
+
818
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:230
819
  msgctxt "(Admin)"
820
  msgid "Contact Email"
821
  msgstr "Email επικοινωνίας"
822
 
823
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:249
824
+ #, fuzzy
825
+ #| msgctxt "(Admin)"
826
+ #| msgid "Representative Contact"
827
  msgctxt "(Admin)"
828
  msgid "Representative Contact"
829
  msgstr "Εκπρόσωπος επικοινωνίας"
830
 
831
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:252
832
  msgctxt "(Admin)"
833
  msgid "Knowledge base: Do I need to appoint an EU-based representative?"
834
  msgstr "Γνωσιακή Βάση : πρέπει να διορίζει έναν εκπρόσωπο που εδρεύει στην ΕΕ;"
835
 
836
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:289
837
+ #, fuzzy, php-format
838
+ msgctxt "(Admin)"
839
+ msgid "See the %slist of contacts here%s."
840
+ msgstr "Δείτε τη λίστα %s επαφών εδώ%s."
841
+
842
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:333
843
  msgctxt "(Admin)"
844
  msgid "DPO Name"
845
+ msgstr "Όνομα Υπεύθυνου Προστασίας Δεδομένων"
846
+
847
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:340
848
+ msgctxt "(Admin)"
849
+ msgid "DPO Email"
850
+ msgstr "Ηλεκτρονικό Ταχυδρομείο του DPO"
851
 
852
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:422
853
+ #, fuzzy
854
+ #| msgctxt "(Admin)"
855
+ #| msgid "Save & Generate Policy"
856
  msgctxt "(Admin)"
857
  msgid "Save & Generate Policy"
858
  msgstr "Αποθήκευση & Δημιουργία πολιτικής"
859
 
860
+ #: src/Components/PrivacyPolicy/PrivacyPolicy.php:81
861
+ #: src/Installer/Installer.php:309 src/Installer/Steps/PolicySettings.php:210
862
  #: views/themes/storefront/footer.php:3
863
  #: views/themes/twentyseventeen/footer.php:3
864
  #: views/themes/twentysixteen/footer.php:4
865
  msgid "Privacy Policy"
866
  msgstr "Προσωπικά δεδομένα"
867
 
868
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:17
869
+ #, fuzzy
870
+ #| msgctxt "(Admin)"
871
+ #| msgid "Privacy"
872
+ msgctxt "(Admin)"
873
+ msgid "Privacy Safe"
874
+ msgstr "Προστασία Απορρήτου"
875
 
876
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:33
877
+ #, fuzzy
878
+ msgctxt "(Admin)"
879
+ msgid "Privacy Safe by Data443"
880
+ msgstr "Ασφαλές για την προστασία της ιδιωτικής ζωής από το Data443"
 
 
 
881
 
882
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:38
883
+ #, fuzzy
884
  msgctxt "(Admin)"
885
+ msgid "Register for Privacy Safe"
886
+ msgstr "Εγγραφείτε για ασφάλεια απορρήτου"
887
 
888
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:44
889
+ #, fuzzy
890
+ #| msgctxt "(Admin)"
891
+ #| msgid "Privacy & GDPR Settings"
892
+ msgctxt "(Admin)"
893
+ msgid "Privacy Safe Settings"
894
+ msgstr "Απορρήτου & GDPR ρυθμίσεις"
895
 
896
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:50
897
+ #, fuzzy
898
+ msgctxt "(Admin)"
899
+ msgid "Seal Code"
900
+ msgstr "Κωδικός σφραγίδας"
901
+
902
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:56
903
+ #, fuzzy
904
+ msgctxt "(Admin)"
905
+ msgid "Image Code"
906
+ msgstr "Κωδικός εικόνας"
907
+
908
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:74
909
+ #, fuzzy
910
+ #| msgctxt "(Admin)"
911
+ #| msgid "Support"
912
+ msgctxt "(Admin)"
913
+ msgid "Support Data443"
914
+ msgstr "Υποστήριξη"
915
+
916
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:83
917
+ #, fuzzy
918
+ msgctxt "(Admin)"
919
+ msgid ""
920
+ "Strengthen your reputation. The privacy safe seal assures your customers "
921
+ "that your business is in compliance with privacy laws and regulations. The "
922
+ "privacy safe seal will verify that the GDPR Framework plugin is installed."
923
+ msgstr ""
924
+ "Ενισχύστε τη φήμη σας. Η σφραγίδα ασφαλείας απορρήτου διαβεβαιώνει τους "
925
+ "πελάτες σας ότι η επιχείρησή σας συμμορφώνεται με τους νόμους και τους "
926
+ "κανονισμούς περί απορρήτου. Η ασφαλής σφραγίδα απορρήτου θα επαληθεύσει ότι "
927
+ "έχει εγκατασταθεί το πρόσθετο GDPR Framework."
928
+
929
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:86
930
+ #, fuzzy
931
+ msgctxt "(Admin)"
932
+ msgid ""
933
+ "Register now to activate your Privacy Safe seal. Visit the link below, "
934
+ "complete the complete the checkout process. Once approved you will recieve "
935
+ "notice to get your seal code and image code. Enter those here and save. You "
936
+ "can then place the seal where you would like on your site."
937
+ msgstr ""
938
+ "Εγγραφείτε τώρα για να ενεργοποιήσετε τη σφραγίδα ασφαλείας απορρήτου. "
939
+ "Επισκεφθείτε τον παρακάτω σύνδεσμο, ολοκληρώστε τη διαδικασία ολοκλήρωσης "
940
+ "αγοράς. Μόλις εγκριθεί θα λάβετε ειδοποίηση για να λάβετε τον κωδικό "
941
+ "σφραγίδας και τον κωδικό εικόνας σας. Εισάγετε αυτά εδώ και αποθηκεύστε. Στη "
942
+ "συνέχεια, μπορείτε να τοποθετήσετε τη σφραγίδα όπου θέλετε στην ιστοσελίδα "
943
+ "σας."
944
+
945
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:86
946
+ #, fuzzy
947
+ msgctxt "(Admin)"
948
+ msgid "Register Here"
949
+ msgstr "Εγγραφείτε εδώ"
950
+
951
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:89
952
+ #, fuzzy
953
+ msgctxt "(Admin)"
954
+ msgid "Embed the shortcode provided to display your privacy safe seal."
955
+ msgstr ""
956
+ "Ενσωματώστε τον σύντομο κώδικα που παρέχεται για να εμφανίσετε την ασφαλή "
957
+ "σφραγίδα απορρήτου σας."
958
+
959
+ #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:22
960
+ #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:55
961
+ msgid "This page is currently disabled."
962
+ msgstr "Αυτήν τη στιγμή αυτή η σελίδα είναι απενεργοποιημένη."
963
+
964
+ #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:26
965
+ #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:59
966
+ #, fuzzy
967
+ msgid "Please configure the Privacy Tools page in the admin interface."
968
+ msgstr ""
969
+ "Ρυθμίστε τις παραμέτρους της σελίδας Εργαλεία προστασίας προσωπικών "
970
+ "δεδομένων στο περιβάλλον εργασίας διαχειριστή."
971
+
972
+ #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:42
973
+ #: src/Installer/Installer.php:318
974
+ #: src/Installer/Steps/ConfigurationPages.php:65
975
+ #: views/themes/storefront/footer.php:7
976
+ #: views/themes/twentyseventeen/footer.php:7
977
+ #: views/themes/twentysixteen/footer.php:9
978
+ msgid "Privacy Tools"
979
+ msgstr "Επεξεργασία προσωπικών δεδομένων"
980
+
981
+ #: src/Components/Support/AdminTabSupport.php:13
982
+ #: src/Components/Support/AdminTabSupport.php:20
983
+ msgctxt "(Admin)"
984
+ msgid "Support"
985
+ msgstr "Υποστήριξη"
986
+
987
+ #: src/Components/WordpressUser/Controllers/DashboardDataPageController.php:54
988
+ #: views/privacy-tools/notices.php:19
989
+ msgid "We have received your request and will reply within 30 days."
990
  msgstr "Λάβαμε το αίτημά σας και θα απαντήσουμε εντός 30 ημερών."
991
 
992
  #: src/Components/WordpressUser/Controllers/DashboardDataPageController.php:59
994
  msgid "Consent withdrawn."
995
  msgstr "Η συγκατάθεση αποσύρεται."
996
 
997
+ #: src/Components/WordpressUser/RegistrationForm.php:56
998
  msgid "<strong>ERROR</strong>: You must accept the terms and conditions."
999
  msgstr ""
1000
  "<strong>ΣΦΑΛΜΑ</ strong>: Πρέπει να αποδεχτείτε τους όρους και τις "
1009
 
1010
  #: src/DataSubject/AdminTabDataSubject.php:27
1011
  #: src/DataSubject/AdminTabDataSubject.php:41
1012
+ #, fuzzy
1013
+ #| msgctxt "(Admin)"
1014
+ #| msgid "Data Subjects"
1015
  msgctxt "(Admin)"
1016
  msgid "Data Subjects"
1017
  msgstr "Υποκείμενα των δεδομένων"
1032
  msgid "Data removal request"
1033
  msgstr "Αίτημα κατάργησης δεδομένων"
1034
 
1035
+ #: src/DataSubject/DataSubjectIdentificator.php:78
1036
+ #: src/DataSubject/DataSubjectIdentificator.php:96
1037
  msgid "Your personal data on"
1038
  msgstr "Τα προσωπικά σας δεδομένα στο"
1039
 
1040
  #: src/Helpers.php:27
1041
  msgctxt "(Admin)"
1042
  msgid "Austria"
1043
+ msgstr "Austria"
1044
 
1045
  #: src/Helpers.php:28
1046
  msgctxt "(Admin)"
1065
  #: src/Helpers.php:32
1066
  msgctxt "(Admin)"
1067
  msgid "Czech Republic"
1068
+ msgstr "Τσεχία"
1069
 
1070
  #: src/Helpers.php:33
1071
  msgctxt "(Admin)"
1177
  msgid "United Kingdom"
1178
  msgstr "Ηνωμένο Βασίλειο"
1179
 
1180
+ #: src/Helpers.php:56
1181
+ #, fuzzy
1182
+ msgctxt "(Admin)"
1183
+ msgid "Afghanistan "
1184
+ msgstr "Αφγανιστάν "
1185
+
1186
+ #: src/Helpers.php:57
1187
+ msgctxt "(Admin)"
1188
+ msgid "Åland Islands"
1189
+ msgstr "Νήσοι Åland"
1190
+
1191
+ #: src/Helpers.php:58
1192
+ msgctxt "(Admin)"
1193
+ msgid "Albania"
1194
+ msgstr "Αλβανία"
1195
+
1196
+ #: src/Helpers.php:59
1197
+ msgctxt "(Admin)"
1198
+ msgid "Algeria"
1199
+ msgstr "Αλγερία"
1200
+
1201
+ #: src/Helpers.php:60
1202
+ #, fuzzy
1203
+ msgctxt "(Admin)"
1204
+ msgid "American Samoa "
1205
+ msgstr "Αμερικανική Σαμόα "
1206
+
1207
+ #: src/Helpers.php:61
1208
+ msgctxt "(Admin)"
1209
+ msgid "Andorra"
1210
+ msgstr "Ανδόρα"
1211
+
1212
+ #: src/Helpers.php:62
1213
+ msgctxt "(Admin)"
1214
+ msgid "Angola"
1215
+ msgstr "Αγκόλα"
1216
+
1217
+ #: src/Helpers.php:63
1218
+ msgctxt "(Admin)"
1219
+ msgid "Anguilla"
1220
+ msgstr "Ανγκουίλα"
1221
+
1222
+ #: src/Helpers.php:64
1223
+ msgctxt "(Admin)"
1224
+ msgid "Antarctica"
1225
+ msgstr "Ανταρκτική"
1226
+
1227
+ #: src/Helpers.php:65
1228
+ msgctxt "(Admin)"
1229
+ msgid "Antigua and Barbuda"
1230
+ msgstr "Αντίγκουα και Μπαρμπούντα"
1231
+
1232
+ #: src/Helpers.php:66
1233
+ msgctxt "(Admin)"
1234
+ msgid "Argentina"
1235
+ msgstr "Argentina"
1236
+
1237
+ #: src/Helpers.php:67
1238
+ msgctxt "(Admin)"
1239
+ msgid "Armenia"
1240
+ msgstr "Armenia"
1241
+
1242
+ #: src/Helpers.php:68
1243
+ msgctxt "(Admin)"
1244
+ msgid "Aruba"
1245
+ msgstr "Aruba"
1246
+
1247
  #: src/Helpers.php:69
1248
  msgctxt "(Admin)"
1249
+ msgid "Australia"
1250
+ msgstr "Australia"
1251
 
1252
  #: src/Helpers.php:70
1253
  msgctxt "(Admin)"
1254
+ msgid "Azerbaijan"
1255
+ msgstr "Αζερμπαϊτζάν"
1256
 
1257
  #: src/Helpers.php:71
1258
  msgctxt "(Admin)"
1259
+ msgid "Bahrain"
1260
+ msgstr "Μπαχρέιν"
1261
 
1262
  #: src/Helpers.php:72
1263
  msgctxt "(Admin)"
1264
+ msgid "Bahamas"
1265
+ msgstr "Μπαχάμες"
1266
 
1267
  #: src/Helpers.php:73
1268
  msgctxt "(Admin)"
1269
+ msgid "Bangladesh"
1270
+ msgstr "Μπαγκλαντές"
1271
 
1272
  #: src/Helpers.php:74
1273
  msgctxt "(Admin)"
1274
+ msgid "Barbados"
1275
+ msgstr "Μπαρμπάντος"
1276
 
1277
+ #: src/Helpers.php:75
1278
+ msgctxt "(Admin)"
1279
+ msgid "Belarus"
1280
+ msgstr "Λευκορωσία"
1281
 
1282
+ #: src/Helpers.php:76
1283
  msgctxt "(Admin)"
1284
+ msgid "Belize"
1285
+ msgstr "Μπελίσε"
1286
 
1287
+ #: src/Helpers.php:77
 
 
1288
  msgctxt "(Admin)"
1289
+ msgid "Benin"
1290
+ msgstr "Μπενίν"
1291
 
1292
+ #: src/Helpers.php:78
1293
  msgctxt "(Admin)"
1294
+ msgid "Bermuda"
1295
+ msgstr "Βερμούδες"
 
 
1296
 
1297
+ #: src/Helpers.php:79
1298
  msgctxt "(Admin)"
1299
+ msgid "Bhutan"
1300
+ msgstr "Μπουτάν"
1301
 
1302
+ #: src/Helpers.php:80
1303
+ #, fuzzy
1304
+ msgctxt "(Admin)"
1305
+ msgid "Bolivia, Plurinational State of"
1306
+ msgstr "Βολιβία, Πολυτελών Κρατών"
1307
 
1308
+ #: src/Helpers.php:81
1309
  msgctxt "(Admin)"
1310
+ msgid "Bonaire, Sint Eustatius and Saba"
1311
+ msgstr "Bonaire, Sint Eustatius και Saba"
 
1312
 
1313
+ #: src/Helpers.php:82
1314
  msgctxt "(Admin)"
1315
+ msgid "Bosnia and Herzegovina"
1316
+ msgstr "Βοσνία Ερζεγοβίνη"
1317
 
1318
+ #: src/Helpers.php:83
1319
  msgctxt "(Admin)"
1320
+ msgid "Botswana"
1321
+ msgstr "Μποτσουάνα"
 
 
 
 
1322
 
1323
+ #: src/Helpers.php:84
1324
  msgctxt "(Admin)"
1325
+ msgid "Bouvet Island"
1326
+ msgstr "Νησί Μπουβέ"
1327
 
1328
+ #: src/Helpers.php:85
 
1329
  msgctxt "(Admin)"
1330
+ msgid "Brazil"
1331
+ msgstr "Βραζιλία"
1332
 
1333
+ #: src/Helpers.php:86
 
1334
  msgctxt "(Admin)"
1335
+ msgid "British Indian Ocean Territory"
1336
+ msgstr "Βρετανικό έδαφος Ινδικού Ωκεανού"
1337
 
1338
+ #: src/Helpers.php:87
1339
  msgctxt "(Admin)"
1340
+ msgid "Brunei Darussalam"
1341
+ msgstr "Μπρουνάι Νταρουσαλάμ"
1342
 
1343
+ #: src/Helpers.php:88
1344
  msgctxt "(Admin)"
1345
+ msgid "Burkina Faso"
1346
+ msgstr "Μπουρκίνα Φάσο"
1347
 
1348
+ #: src/Helpers.php:89
1349
  msgctxt "(Admin)"
1350
+ msgid "Burundi"
1351
+ msgstr "Μπουρούντι"
1352
 
1353
+ #: src/Helpers.php:90
1354
  msgctxt "(Admin)"
1355
+ msgid "Cambodia"
1356
+ msgstr "Καμπότζη"
1357
 
1358
+ #: src/Helpers.php:91
1359
  msgctxt "(Admin)"
1360
+ msgid "Cameroon"
1361
+ msgstr "Καμερούν"
 
 
 
 
 
1362
 
1363
+ #: src/Helpers.php:92
1364
  msgctxt "(Admin)"
1365
+ msgid "Canada"
1366
+ msgstr "Καναδάς"
1367
 
1368
+ #: src/Helpers.php:93
1369
  msgctxt "(Admin)"
1370
+ msgid "Cape Verde"
1371
+ msgstr "Ακρωτήριο"
1372
 
1373
+ #: src/Helpers.php:94
1374
  msgctxt "(Admin)"
1375
+ msgid "Cayman Islands"
1376
+ msgstr "Καϋμάν"
1377
 
1378
+ #: src/Helpers.php:95
1379
  msgctxt "(Admin)"
1380
+ msgid "Central African Republic"
1381
+ msgstr "Κεντροαφρικανική Δημοκρατία"
1382
 
1383
+ #: src/Helpers.php:96
1384
  msgctxt "(Admin)"
1385
+ msgid "Chad"
1386
+ msgstr "Τσαντ"
 
 
 
1387
 
1388
+ #: src/Helpers.php:97
1389
  msgctxt "(Admin)"
1390
+ msgid "Chile"
1391
+ msgstr "Χιλή"
 
 
 
 
 
1392
 
1393
+ #: src/Helpers.php:98
1394
  msgctxt "(Admin)"
1395
+ msgid "China"
1396
+ msgstr "Κίνα"
1397
 
1398
+ #: src/Helpers.php:99
1399
  msgctxt "(Admin)"
1400
+ msgid "Christmas Island"
1401
+ msgstr "Νήσος των Χριστουγέννων"
1402
 
1403
+ #: src/Helpers.php:100
1404
  msgctxt "(Admin)"
1405
+ msgid "Cocos (Keeling) Islands"
1406
+ msgstr "Νήσοι Κόκος"
1407
 
1408
+ #: src/Helpers.php:101
1409
  msgctxt "(Admin)"
1410
+ msgid "Colombia"
1411
+ msgstr "Κολομβία"
1412
 
1413
+ #: src/Helpers.php:102
1414
  msgctxt "(Admin)"
1415
+ msgid "Comoros"
1416
+ msgstr "Κομόρες"
1417
 
1418
+ #: src/Helpers.php:103
1419
  msgctxt "(Admin)"
1420
+ msgid "Congo"
1421
+ msgstr "Κογκό"
1422
 
1423
+ #: src/Helpers.php:104
1424
+ #, fuzzy
1425
  msgctxt "(Admin)"
1426
+ msgid "Congo, the Democratic Republic of the"
1427
+ msgstr "Κονγκό, Λαϊκή Δημοκρατία της"
1428
 
1429
+ #: src/Helpers.php:105
1430
  msgctxt "(Admin)"
1431
+ msgid "Cook Islands"
1432
+ msgstr "Νήσοι Κουκ"
 
 
 
 
1433
 
1434
+ #: src/Helpers.php:106
1435
  msgctxt "(Admin)"
1436
+ msgid "Costa Rica"
1437
+ msgstr "Κόστα Ρίκα"
1438
 
1439
+ #: src/Helpers.php:107
1440
+ #, fuzzy
1441
  msgctxt "(Admin)"
1442
+ msgid "Côte dIvoire"
1443
+ msgstr "Κυανή Ακτή"
1444
 
1445
+ #: src/Helpers.php:108
1446
  msgctxt "(Admin)"
1447
+ msgid "Cuba"
1448
+ msgstr "Κούβα"
1449
 
1450
+ #: src/Helpers.php:109
1451
+ msgctxt "(Admin)"
1452
+ msgid "Curaçao"
1453
+ msgstr "Κουρασάο"
 
 
1454
 
1455
+ #: src/Helpers.php:110
 
1456
  msgctxt "(Admin)"
1457
+ msgid "Djibouti"
1458
+ msgstr "Tζιμπουτί"
1459
 
1460
+ #: src/Helpers.php:111
 
1461
  msgctxt "(Admin)"
1462
+ msgid "Dominica"
1463
+ msgstr "Δομινίκα"
1464
 
1465
+ #: src/Helpers.php:112
1466
  msgctxt "(Admin)"
1467
+ msgid "Dominican Republic"
1468
+ msgstr "Δομινικανή Δημοκρατία"
 
 
 
 
1469
 
1470
+ #: src/Helpers.php:113
1471
  msgctxt "(Admin)"
1472
+ msgid "Ecuador"
1473
+ msgstr "Ισημερινός"
 
 
 
 
 
1474
 
1475
+ #: src/Helpers.php:114
1476
  msgctxt "(Admin)"
1477
+ msgid "Egypt"
1478
+ msgstr "Αίγυπτος"
 
 
1479
 
1480
+ #: src/Helpers.php:115
1481
  msgctxt "(Admin)"
1482
+ msgid "El Salvador"
1483
+ msgstr "Ελ Σαλβαδόρ"
 
 
 
 
 
 
1484
 
1485
+ #: src/Helpers.php:116
 
1486
  msgctxt "(Admin)"
1487
+ msgid "Equatorial Guinea"
1488
+ msgstr "Ισημερινή Γουινέα"
 
 
 
1489
 
1490
+ #: src/Helpers.php:117
 
1491
  msgctxt "(Admin)"
1492
+ msgid "Eritrea"
1493
+ msgstr "Ερυθραία"
1494
 
1495
+ #: src/Helpers.php:118
1496
  msgctxt "(Admin)"
1497
+ msgid "Ethiopia"
1498
+ msgstr "Αιθιοπία"
 
 
 
 
 
1499
 
1500
+ #: src/Helpers.php:119
1501
  msgctxt "(Admin)"
1502
+ msgid "Falkland Islands (Malvinas)"
1503
+ msgstr "Νήσοι Φώκλαντ (Μαλβίνας)"
 
 
 
 
 
1504
 
1505
+ #: src/Helpers.php:120
1506
  msgctxt "(Admin)"
1507
+ msgid "Faroe Islands"
1508
+ msgstr "Νήσοι Φερόες"
 
 
 
1509
 
1510
+ #: src/Helpers.php:121
1511
  msgctxt "(Admin)"
1512
+ msgid "Fiji"
1513
+ msgstr "Φίτζι"
1514
 
1515
+ #: src/Helpers.php:122
1516
  msgctxt "(Admin)"
1517
+ msgid "French Guiana"
1518
+ msgstr "Γαλλική Γουιάνα"
1519
 
1520
+ #: src/Helpers.php:123
1521
  msgctxt "(Admin)"
1522
+ msgid "French Polynesia"
1523
+ msgstr "Γαλλική Πολυνησία"
1524
 
1525
+ #: src/Helpers.php:124
1526
  msgctxt "(Admin)"
1527
+ msgid "French Southern Territories"
1528
+ msgstr "Γαλλικά νότια εδάφη"
 
 
 
 
1529
 
1530
+ #: src/Helpers.php:125
 
1531
  msgctxt "(Admin)"
1532
+ msgid "Gabon"
1533
+ msgstr "Γκαμπόν"
1534
 
1535
+ #: src/Helpers.php:126
1536
  msgctxt "(Admin)"
1537
+ msgid "Gambia"
1538
+ msgstr "Γκάμπια"
1539
 
1540
+ #: src/Helpers.php:127
1541
  msgctxt "(Admin)"
1542
+ msgid "Georgia"
1543
+ msgstr "Γεωργία"
1544
 
1545
+ #: src/Helpers.php:128
1546
+ #, fuzzy
1547
  msgctxt "(Admin)"
1548
+ msgid "Georgia "
1549
+ msgstr "Γεωργία "
1550
 
1551
+ #: src/Helpers.php:129
1552
  msgctxt "(Admin)"
1553
+ msgid "Ghana"
1554
+ msgstr "Γκάνα"
1555
 
1556
+ #: src/Helpers.php:130
1557
  msgctxt "(Admin)"
1558
+ msgid "Gibraltar"
1559
+ msgstr "Γιβραλτάρ"
1560
 
1561
+ #: src/Helpers.php:131
1562
  msgctxt "(Admin)"
1563
+ msgid "Greenland"
1564
+ msgstr "Γροιλανδία"
1565
 
1566
+ #: src/Helpers.php:132
1567
+ #, fuzzy
1568
  msgctxt "(Admin)"
1569
+ msgid "Grenada "
1570
+ msgstr "Γρενάδα "
 
 
1571
 
1572
+ #: src/Helpers.php:133
1573
+ #, fuzzy
1574
  msgctxt "(Admin)"
1575
+ msgid "Guadeloupe "
1576
+ msgstr "Γουαδελούπη "
1577
 
1578
+ #: src/Helpers.php:134
1579
  msgctxt "(Admin)"
1580
+ msgid "Guam"
1581
+ msgstr "Γκουάμ"
1582
 
1583
+ #: src/Helpers.php:135
1584
  msgctxt "(Admin)"
1585
+ msgid "Guatemala"
1586
+ msgstr "Γουατεμάλα"
 
 
 
 
1587
 
1588
+ #: src/Helpers.php:136
1589
  msgctxt "(Admin)"
1590
+ msgid "Guernsey"
1591
+ msgstr "Guernsey"
1592
 
1593
+ #: src/Helpers.php:137
1594
+ #, fuzzy
1595
  msgctxt "(Admin)"
1596
+ msgid "Guinea "
1597
+ msgstr "Γουινέα "
 
 
 
 
1598
 
1599
+ #: src/Helpers.php:138
1600
+ #, fuzzy
1601
  msgctxt "(Admin)"
1602
+ msgid "Guinea-Bissau "
1603
+ msgstr "Γουινέα-Μπισσάου "
1604
 
1605
+ #: src/Helpers.php:139
1606
+ #, fuzzy
1607
  msgctxt "(Admin)"
1608
+ msgid "Guyana "
1609
+ msgstr "Γουιάνα "
 
 
 
1610
 
1611
+ #: src/Helpers.php:140
1612
+ #, fuzzy
1613
  msgctxt "(Admin)"
1614
+ msgid "Haiti "
1615
+ msgstr "Αϊτή "
 
1616
 
1617
+ #: src/Helpers.php:141
1618
+ #, fuzzy
1619
+ msgctxt "(Admin)"
1620
+ msgid "Heard Island and McDonald Islands "
1621
+ msgstr "Νήσοι Χερντ και Νήσοι ΜακΝτόναλντ "
1622
 
1623
+ #: src/Helpers.php:142
1624
+ #, fuzzy
1625
+ msgctxt "(Admin)"
1626
+ msgid "Holy See (Vatican City State) "
1627
+ msgstr "Αγία Έδρα (Κράτος της Πόλης του Βατικανού) "
1628
 
1629
+ #: src/Helpers.php:143
1630
+ #, fuzzy
1631
+ msgctxt "(Admin)"
1632
+ msgid "Honduras "
1633
+ msgstr "Ονδούρα "
1634
 
1635
+ #: src/Helpers.php:144
1636
+ #, fuzzy
1637
+ msgctxt "(Admin)"
1638
+ msgid "Hong Kong "
1639
+ msgstr "Χονγκ Κονγκ "
1640
 
1641
+ #: src/Helpers.php:145
1642
+ #, fuzzy
1643
+ msgctxt "(Admin)"
1644
+ msgid "India "
1645
+ msgstr "Ινδία "
1646
 
1647
+ #: src/Helpers.php:146
1648
+ #, fuzzy
1649
+ msgctxt "(Admin)"
1650
+ msgid "Indonesia "
1651
+ msgstr "Ινδονησία "
1652
 
1653
+ #: src/Helpers.php:147
1654
+ #, fuzzy
1655
+ msgctxt "(Admin)"
1656
+ msgid "Iran, Islamic Republic of "
1657
+ msgstr "Ιράν, Ισλαμική Δημοκρατία "
 
 
1658
 
1659
+ #: src/Helpers.php:148
1660
+ #, fuzzy
1661
  msgctxt "(Admin)"
1662
+ msgid "Iraq "
1663
+ msgstr "Ιράκ "
 
1664
 
1665
+ #: src/Helpers.php:149
1666
+ #, fuzzy
1667
  msgctxt "(Admin)"
1668
+ msgid "Isle of Man "
1669
+ msgstr "Νήσος του Μαν "
1670
 
1671
+ #: src/Helpers.php:150
1672
+ #, fuzzy
1673
  msgctxt "(Admin)"
1674
+ msgid "Israel "
1675
+ msgstr "Ισραήλ "
1676
 
1677
+ #: src/Helpers.php:151
1678
+ #, fuzzy
1679
  msgctxt "(Admin)"
1680
+ msgid "Jamaica "
1681
+ msgstr "Τζαμάικα "
1682
 
1683
+ #: src/Helpers.php:152
1684
+ #, fuzzy
1685
  msgctxt "(Admin)"
1686
+ msgid "Japan "
1687
+ msgstr "Ιαπωνία "
1688
 
1689
+ #: src/Helpers.php:153
1690
+ #, fuzzy
1691
  msgctxt "(Admin)"
1692
+ msgid "Jersey "
1693
+ msgstr "Τζέρσεϋ "
1694
 
1695
+ #: src/Helpers.php:154
1696
+ #, fuzzy
1697
  msgctxt "(Admin)"
1698
+ msgid "Jordan "
1699
+ msgstr "Ιορδανία "
1700
 
1701
+ #: src/Helpers.php:155
1702
+ #, fuzzy
1703
  msgctxt "(Admin)"
1704
+ msgid "Kazakhstan "
1705
+ msgstr "Καζαχστάν "
1706
 
1707
+ #: src/Helpers.php:156
1708
+ #, fuzzy
1709
  msgctxt "(Admin)"
1710
+ msgid "Kenya "
1711
+ msgstr "Κένυα "
1712
 
1713
+ #: src/Helpers.php:157
1714
+ #, fuzzy
1715
  msgctxt "(Admin)"
1716
+ msgid "Kiribati "
1717
+ msgstr "Κιριμπάτι "
1718
 
1719
+ #: src/Helpers.php:158
1720
+ #, fuzzy
1721
  msgctxt "(Admin)"
1722
+ msgid "Korea, Democratic Peoples Republic of "
1723
+ msgstr "Κορέα, Λαϊκή Δημοκρατία της Κορέας "
1724
 
1725
+ #: src/Helpers.php:159
1726
+ #, fuzzy
1727
  msgctxt "(Admin)"
1728
+ msgid "Korea, Republic of "
1729
+ msgstr "Κορέα, Δημοκρατία της "
1730
 
1731
+ #: src/Helpers.php:160
1732
+ #, fuzzy
1733
+ msgctxt "(Admin)"
1734
+ msgid "Kuwait "
1735
+ msgstr "Κουβέιτ "
1736
 
1737
+ #: src/Helpers.php:161
1738
+ #, fuzzy
1739
  msgctxt "(Admin)"
1740
+ msgid "Kyrgyzstan "
1741
+ msgstr "Κιργιστάν "
1742
 
1743
+ #: src/Helpers.php:162
1744
+ #, fuzzy
1745
  msgctxt "(Admin)"
1746
+ msgid "Lao Peoples Democratic Republic "
1747
+ msgstr "Λαϊκή Δημοκρατία του Λάος "
1748
 
1749
+ #: src/Helpers.php:163
1750
+ #, fuzzy
1751
  msgctxt "(Admin)"
1752
+ msgid "Lebanon "
1753
+ msgstr "Λίβανος "
1754
 
1755
+ #: src/Helpers.php:164
1756
+ #, fuzzy
1757
  msgctxt "(Admin)"
1758
+ msgid "Lesotho "
1759
+ msgstr "Λεσότο "
1760
 
1761
+ #: src/Helpers.php:165
1762
+ #, fuzzy
1763
  msgctxt "(Admin)"
1764
+ msgid "Liberia "
1765
+ msgstr "Λιβερία "
1766
 
1767
+ #: src/Helpers.php:166
1768
+ #, fuzzy
1769
  msgctxt "(Admin)"
1770
+ msgid "Libya "
1771
+ msgstr "Λιβύη "
1772
 
1773
+ #: src/Helpers.php:167
1774
+ #, fuzzy
1775
  msgctxt "(Admin)"
1776
+ msgid "Macao "
1777
+ msgstr "Μακάο "
1778
 
1779
+ #: src/Helpers.php:168
1780
+ #, fuzzy
1781
  msgctxt "(Admin)"
1782
+ msgid "Macedonia, the Former Yugoslav Republic of "
1783
+ msgstr "πΓΔΜ, πρώην Γιουγκοσλαβική Δημοκρατία της "
1784
 
1785
+ #: src/Helpers.php:169
1786
+ #, fuzzy
1787
  msgctxt "(Admin)"
1788
+ msgid "Madagascar "
1789
+ msgstr "Μαδαγασκάρη "
1790
 
1791
+ #: src/Helpers.php:170
1792
+ #, fuzzy
1793
  msgctxt "(Admin)"
1794
+ msgid "Malawi "
1795
+ msgstr "Μαλάουι "
1796
 
1797
+ #: src/Helpers.php:171
1798
+ #, fuzzy
1799
  msgctxt "(Admin)"
1800
+ msgid "Malaysia "
1801
+ msgstr "Μαλαισία "
 
 
 
 
1802
 
1803
+ #: src/Helpers.php:172
1804
+ #, fuzzy
1805
+ msgctxt "(Admin)"
1806
+ msgid "Maldives "
1807
+ msgstr "Μαλδίβες "
1808
 
1809
+ #: src/Helpers.php:173
1810
+ #, fuzzy
1811
+ msgctxt "(Admin)"
1812
+ msgid "Mali "
1813
+ msgstr "Μάλι "
1814
 
1815
+ #: src/Helpers.php:174
1816
+ #, fuzzy
1817
+ msgctxt "(Admin)"
1818
+ msgid "Marshall Islands "
1819
+ msgstr "Νήσοι Μάρσαλ "
1820
 
1821
+ #: src/Helpers.php:175
1822
+ #, fuzzy
1823
+ msgctxt "(Admin)"
1824
+ msgid "Martinique "
1825
+ msgstr "Μαρτινίκα "
1826
 
1827
+ #: src/Helpers.php:176
1828
+ #, fuzzy
1829
+ msgctxt "(Admin)"
1830
+ msgid "Mauritania "
1831
+ msgstr "Μαυριτανία "
1832
 
1833
+ #: src/Helpers.php:177
1834
+ #, fuzzy
1835
+ msgctxt "(Admin)"
1836
+ msgid "Mauritius "
1837
+ msgstr "Μαυρίκιος "
1838
 
1839
+ #: src/Helpers.php:178
1840
+ #, fuzzy
1841
  msgctxt "(Admin)"
1842
+ msgid "Mayotte "
1843
+ msgstr "Μαγιότ "
1844
 
1845
+ #: src/Helpers.php:179
1846
+ #, fuzzy
1847
  msgctxt "(Admin)"
1848
+ msgid "Mexico "
1849
+ msgstr "Μεξικό "
1850
 
1851
+ #: src/Helpers.php:180
1852
+ #, fuzzy
1853
+ msgctxt "(Admin)"
1854
+ msgid "Micronesia, Federated States of "
1855
+ msgstr "Μικρονησία, Ομόσπονδες Πολιτείες "
1856
 
1857
+ #: src/Helpers.php:181
1858
+ #, fuzzy
1859
+ msgctxt "(Admin)"
1860
+ msgid "Moldova, Republic of "
1861
+ msgstr "Μολδαβία, Δημοκρατία της "
1862
 
1863
+ #: src/Helpers.php:182
1864
+ #, fuzzy
1865
+ msgctxt "(Admin)"
1866
+ msgid "Monaco "
1867
+ msgstr "Μονακό "
1868
 
1869
+ #: src/Helpers.php:183
1870
+ #, fuzzy
1871
  msgctxt "(Admin)"
1872
+ msgid "Mongolia "
1873
+ msgstr "Μογγολία "
 
 
 
 
1874
 
1875
+ #: src/Helpers.php:184
1876
+ #, fuzzy
1877
+ msgctxt "(Admin)"
1878
+ msgid "Montenegro "
1879
+ msgstr "Μαυροβούνιο "
1880
 
1881
+ #: src/Helpers.php:185
1882
+ #, fuzzy
1883
+ msgctxt "(Admin)"
1884
+ msgid "Montserrat "
1885
+ msgstr "Μοντσερράτ "
1886
 
1887
+ #: src/Helpers.php:186
1888
+ #, fuzzy
1889
+ msgctxt "(Admin)"
1890
+ msgid "Morocco "
1891
+ msgstr "Μαρόκο "
1892
 
1893
+ #: src/Helpers.php:187
1894
+ #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
 
1895
  msgctxt "(Admin)"
1896
+ msgid "Mozambique "
1897
+ msgstr "Μοζαμβίκη "
1898
 
1899
+ #: src/Helpers.php:188
1900
+ #, fuzzy
1901
  msgctxt "(Admin)"
1902
+ msgid "Myanmar "
1903
+ msgstr "Μυανμάρ "
1904
 
1905
+ #: src/Helpers.php:189
1906
+ #, fuzzy
1907
  msgctxt "(Admin)"
1908
+ msgid "Namibia "
1909
+ msgstr "Ναμίμπια "
1910
 
1911
+ #: src/Helpers.php:190
1912
+ #, fuzzy
1913
  msgctxt "(Admin)"
1914
+ msgid "Nauru "
1915
+ msgstr "Ναουρού "
1916
 
1917
+ #: src/Helpers.php:191
1918
+ #, fuzzy
1919
  msgctxt "(Admin)"
1920
+ msgid "Nepal "
1921
+ msgstr "Νεπάλ "
1922
 
1923
+ #: src/Helpers.php:192
1924
+ #, fuzzy
1925
  msgctxt "(Admin)"
1926
+ msgid "New Caledonia "
1927
+ msgstr "Νέα Καληδονία "
1928
 
1929
+ #: src/Helpers.php:193
1930
+ #, fuzzy
1931
+ #| msgctxt "(Admin)"
1932
+ #| msgid "Netherlands"
1933
+ msgctxt "(Admin)"
1934
+ msgid "New Zealand "
1935
+ msgstr "Ολλανδία"
1936
 
1937
+ #: src/Helpers.php:194
1938
+ #, fuzzy
1939
+ msgctxt "(Admin)"
1940
+ msgid "Nicaragua "
1941
+ msgstr "Νικαράγουα "
1942
 
1943
+ #: src/Helpers.php:195
1944
+ #, fuzzy
1945
+ msgctxt "(Admin)"
1946
+ msgid "Niger "
1947
+ msgstr "Νίγηρας "
1948
 
1949
+ #: src/Helpers.php:196
1950
+ #, fuzzy
1951
+ msgctxt "(Admin)"
1952
+ msgid "Nigeria "
1953
+ msgstr "Νιγηρία "
1954
 
1955
+ #: src/Helpers.php:197
1956
+ #, fuzzy
1957
+ msgctxt "(Admin)"
1958
+ msgid "Niue "
1959
+ msgstr "Νιούε "
1960
 
1961
+ #: src/Helpers.php:198
1962
+ #, fuzzy
1963
+ msgctxt "(Admin)"
1964
+ msgid "Norfolk Island "
1965
+ msgstr "Νήσος Νόρφολκ "
1966
 
1967
+ #: src/Helpers.php:199
1968
+ #, fuzzy
1969
+ msgctxt "(Admin)"
1970
+ msgid "Northern Mariana Islands "
1971
+ msgstr "Βόρειες Μαριάννες Νήσοι "
1972
 
1973
+ #: src/Helpers.php:200
1974
+ #, fuzzy
1975
  msgctxt "(Admin)"
1976
+ msgid "Oman "
1977
+ msgstr "Ομάν "
1978
 
1979
+ #: src/Helpers.php:201
1980
+ #, fuzzy
1981
+ msgctxt "(Admin)"
1982
+ msgid "Pakistan "
1983
+ msgstr "Πακιστάν "
 
 
1984
 
1985
+ #: src/Helpers.php:202
1986
+ #, fuzzy
1987
+ msgctxt "(Admin)"
1988
+ msgid "Palau "
1989
+ msgstr "Παλάου "
1990
 
1991
+ #: src/Helpers.php:203
1992
+ #, fuzzy
1993
+ msgctxt "(Admin)"
1994
+ msgid "Palestine, State of "
1995
+ msgstr "Παλαιστίνη, Κράτος "
1996
 
1997
+ #: src/Helpers.php:204
1998
+ #, fuzzy
1999
+ msgctxt "(Admin)"
2000
+ msgid "Panama "
2001
+ msgstr "Παναμάς "
2002
 
2003
+ #: src/Helpers.php:205
2004
+ #, fuzzy
2005
+ msgctxt "(Admin)"
2006
+ msgid "Papua New Guinea "
2007
+ msgstr "Παπούα Νέα Γουινέα "
2008
 
2009
+ #: src/Helpers.php:206
2010
+ #, fuzzy
2011
  msgctxt "(Admin)"
2012
+ msgid "Paraguay "
2013
+ msgstr "Παραγουάη "
2014
 
2015
+ #: src/Helpers.php:207
2016
+ #, fuzzy
2017
  msgctxt "(Admin)"
2018
+ msgid "Peru "
2019
+ msgstr "Περού "
2020
 
2021
+ #: src/Helpers.php:208
2022
+ #, fuzzy
2023
+ msgctxt "(Admin)"
2024
+ msgid "Philippines "
2025
+ msgstr "Φιλιππίνες "
 
 
2026
 
2027
+ #: src/Helpers.php:209
2028
+ #, fuzzy
2029
+ msgctxt "(Admin)"
2030
+ msgid "Pitcairn "
2031
+ msgstr "Πίτκαιρν "
2032
 
2033
+ #: src/Helpers.php:210
2034
+ #, fuzzy
2035
+ msgctxt "(Admin)"
2036
+ msgid "Puerto Rico "
2037
+ msgstr "Πουέρτο Ρίκο "
2038
 
2039
+ #: src/Helpers.php:211
2040
+ #, fuzzy
2041
+ msgctxt "(Admin)"
2042
+ msgid "Qatar "
2043
+ msgstr "Κατάρ "
2044
 
2045
+ #: src/Helpers.php:212
2046
+ #, fuzzy
2047
  msgctxt "(Admin)"
2048
+ msgid "Réunion "
2049
+ msgstr "Ρενιόν "
2050
 
2051
+ #: src/Helpers.php:213
2052
+ #, fuzzy
2053
  msgctxt "(Admin)"
2054
+ msgid "Russian Federation "
2055
+ msgstr "Ρωσική Ομοσπονδία "
2056
 
2057
+ #: src/Helpers.php:214
2058
+ #, fuzzy
2059
  msgctxt "(Admin)"
2060
+ msgid "Rwanda "
2061
+ msgstr "Ρουάντα "
2062
 
2063
+ #: src/Helpers.php:215
2064
+ #, fuzzy
2065
  msgctxt "(Admin)"
2066
+ msgid "Saint Barthélemy "
2067
+ msgstr "Άγιος Βαρθολομιός "
2068
 
2069
+ #: src/Helpers.php:216
2070
+ #, fuzzy
2071
  msgctxt "(Admin)"
2072
+ msgid "Saint Helena, Ascension and Tristan da Cunha "
2073
+ msgstr "Αγία Ελένη, Ανάβαση και Τρίσταν ντα Κούνια "
2074
 
2075
+ #: src/Helpers.php:217
2076
+ #, fuzzy
2077
  msgctxt "(Admin)"
2078
+ msgid "Saint Kitts and Nevis "
2079
+ msgstr "Άγιος Χριστόφορος και Νέβις "
2080
 
2081
+ #: src/Helpers.php:218
2082
+ #, fuzzy
2083
  msgctxt "(Admin)"
2084
+ msgid "Saint Lucia "
2085
+ msgstr "Αγία Λουκία "
2086
 
2087
+ #: src/Helpers.php:219
2088
+ #, fuzzy
2089
  msgctxt "(Admin)"
2090
+ msgid "Saint Martin (French part) "
2091
+ msgstr "Άγιος Μαρτίνος (γαλλικό τμήμα) "
2092
 
2093
+ #: src/Helpers.php:220
2094
+ #, fuzzy
2095
  msgctxt "(Admin)"
2096
+ msgid "Saint Pierre and Miquelon "
2097
+ msgstr "Άγιος Πέτρος και Μικελόν "
2098
 
2099
+ #: src/Helpers.php:221
2100
+ #, fuzzy
2101
  msgctxt "(Admin)"
2102
+ msgid "Saint Vincent and the Grenadines "
2103
+ msgstr "Άγιος Βικέντιος και Γρεναδίνες "
2104
 
2105
+ #: src/Helpers.php:222
2106
+ #, fuzzy
2107
  msgctxt "(Admin)"
2108
+ msgid "Samoa "
2109
+ msgstr "Σαμόα "
2110
 
2111
+ #: src/Helpers.php:223
2112
+ #, fuzzy
2113
  msgctxt "(Admin)"
2114
+ msgid "San Marino "
2115
+ msgstr "Άγιος Μαρίνος "
2116
 
2117
+ #: src/Helpers.php:224
2118
+ #, fuzzy
2119
  msgctxt "(Admin)"
2120
+ msgid "Sao Tome and Principe "
2121
+ msgstr "Σάο Τομέ και Πρίνσιπε "
2122
 
2123
+ #: src/Helpers.php:225
2124
+ #, fuzzy
2125
  msgctxt "(Admin)"
2126
+ msgid "Saudi Arabia "
2127
+ msgstr "Σαουδική Αραβία "
2128
 
2129
+ #: src/Helpers.php:226
2130
+ #, fuzzy
2131
  msgctxt "(Admin)"
2132
+ msgid "Senegal "
2133
+ msgstr "Σενεγάλη "
2134
 
2135
+ #: src/Helpers.php:227
2136
+ #, fuzzy
2137
  msgctxt "(Admin)"
2138
+ msgid "Serbia "
2139
+ msgstr "Σερβία "
2140
 
2141
+ #: src/Helpers.php:228
2142
+ #, fuzzy
2143
  msgctxt "(Admin)"
2144
+ msgid "Seychelles "
2145
+ msgstr "Σεϋχέλλες "
2146
 
2147
+ #: src/Helpers.php:229
2148
+ #, fuzzy
2149
  msgctxt "(Admin)"
2150
+ msgid "Sierra Leone "
2151
+ msgstr "Σιέρα Λεόνε "
2152
 
2153
+ #: src/Helpers.php:230
2154
+ #, fuzzy
2155
  msgctxt "(Admin)"
2156
+ msgid "Singapore "
2157
+ msgstr "Σιγκαπούρη "
2158
 
2159
+ #: src/Helpers.php:231
2160
+ #, fuzzy
2161
+ msgctxt "(Admin)"
2162
+ msgid "Sint Maarten (Dutch part) "
2163
+ msgstr "Σιντ Μάρτεν (Ολλανδικό μέρος) "
2164
 
2165
+ #: src/Helpers.php:232
2166
+ #, fuzzy
2167
  msgctxt "(Admin)"
2168
+ msgid "Solomon Islands "
2169
+ msgstr "Νήσοι Σολομώντος "
 
2170
 
2171
+ #: src/Helpers.php:233
2172
+ #, fuzzy
2173
  msgctxt "(Admin)"
2174
+ msgid "Somalia "
2175
+ msgstr "Σομαλία "
2176
 
2177
+ #: src/Helpers.php:234
2178
+ #, fuzzy
2179
  msgctxt "(Admin)"
2180
+ msgid "South Africa "
2181
+ msgstr "Νότια Αφρική "
2182
 
2183
+ #: src/Helpers.php:235
2184
+ #, fuzzy
2185
  msgctxt "(Admin)"
2186
+ msgid "South Georgia and the South Sandwich Islands "
2187
+ msgstr "Νότια Γεωργία και Νότιες Σάντουιτς Νήσοι "
2188
 
2189
+ #: src/Helpers.php:236
2190
+ #, fuzzy
2191
  msgctxt "(Admin)"
2192
+ msgid "South Sudan "
2193
+ msgstr "Νότιο Σουδάν "
2194
 
2195
+ #: src/Helpers.php:237
2196
+ #, fuzzy
2197
  msgctxt "(Admin)"
2198
+ msgid "Sri Lanka "
2199
+ msgstr "Σρι Λάνκα "
2200
 
2201
+ #: src/Helpers.php:238
2202
+ #, fuzzy
2203
  msgctxt "(Admin)"
2204
+ msgid "Sudan "
2205
+ msgstr "Σουδάν "
2206
 
2207
+ #: src/Helpers.php:239
2208
+ #, fuzzy
2209
  msgctxt "(Admin)"
2210
+ msgid "Suriname "
2211
+ msgstr "Σουρινάμ "
2212
 
2213
+ #: src/Helpers.php:240
2214
+ #, fuzzy
2215
  msgctxt "(Admin)"
2216
+ msgid "Svalbard and Jan Mayen "
2217
+ msgstr "Σβάλμπαρντ και Γιαν Μαγιέν "
2218
 
2219
+ #: src/Helpers.php:241
2220
+ #, fuzzy
2221
+ #| msgctxt "(Admin)"
2222
+ #| msgid "Switzerland"
2223
  msgctxt "(Admin)"
2224
+ msgid "Swaziland "
2225
+ msgstr "Ελβετία"
2226
 
2227
+ #: src/Helpers.php:242
2228
+ #, fuzzy
2229
  msgctxt "(Admin)"
2230
+ msgid "Syrian Arab Republic "
2231
+ msgstr "Αραβική Δημοκρατία της Συρίας "
2232
 
2233
+ #: src/Helpers.php:243
2234
+ #, fuzzy
2235
+ msgctxt "(Admin)"
2236
+ msgid "Taiwan "
2237
+ msgstr "Ταϊβάν "
2238
 
2239
+ #: src/Helpers.php:244
2240
+ #, fuzzy
2241
+ msgctxt "(Admin)"
2242
+ msgid "Tajikistan "
2243
+ msgstr "Τατζικιστάν "
2244
 
2245
+ #: src/Helpers.php:245
2246
+ #, fuzzy
2247
+ msgctxt "(Admin)"
2248
+ msgid "Tanzania, United Republic of "
2249
+ msgstr "Τανζανία, Ηνωμένη Δημοκρατία της "
2250
 
2251
+ #: src/Helpers.php:246
2252
+ #, fuzzy
2253
+ msgctxt "(Admin)"
2254
+ msgid "Thailand "
2255
+ msgstr "Ταϊλάνδη "
2256
 
2257
+ #: src/Helpers.php:247
2258
+ #, fuzzy
2259
+ msgctxt "(Admin)"
2260
+ msgid "Timor-Leste "
2261
+ msgstr "Τιμόρ-Λέστε "
2262
 
2263
+ #: src/Helpers.php:248
2264
+ #, fuzzy
2265
+ msgctxt "(Admin)"
2266
+ msgid "Togo "
2267
+ msgstr "Τόγκο "
2268
 
2269
+ #: src/Helpers.php:249
2270
+ #, fuzzy
2271
+ msgctxt "(Admin)"
2272
+ msgid "Tokelau "
2273
+ msgstr "Τοκελάου "
2274
 
2275
+ #: src/Helpers.php:250
2276
+ #, fuzzy
2277
+ msgctxt "(Admin)"
2278
+ msgid "Tonga "
2279
+ msgstr "Τόνγκα "
2280
 
2281
+ #: src/Helpers.php:251
2282
+ #, fuzzy
2283
+ msgctxt "(Admin)"
2284
+ msgid "Trinidad and Tobago "
2285
+ msgstr "Τρινιντάντ και Τομπάγκο "
2286
 
2287
+ #: src/Helpers.php:252
2288
+ #, fuzzy
2289
  msgctxt "(Admin)"
2290
+ msgid "Tunisia "
2291
+ msgstr "Τυνησία "
2292
 
2293
+ #: src/Helpers.php:253
2294
+ #, fuzzy
2295
  msgctxt "(Admin)"
2296
+ msgid "Turkey "
2297
+ msgstr "Τουρκία "
2298
 
2299
+ #: src/Helpers.php:254
2300
+ #, fuzzy
2301
  msgctxt "(Admin)"
2302
+ msgid "Turkmenistan "
2303
+ msgstr "Τουρκμενιστάν "
2304
 
2305
+ #: src/Helpers.php:255
2306
+ #, fuzzy
2307
  msgctxt "(Admin)"
2308
+ msgid "Turks and Caicos Islands "
2309
+ msgstr "Νήσοι Τερκς και Κάικος "
2310
 
2311
+ #: src/Helpers.php:256
2312
+ #, fuzzy
2313
  msgctxt "(Admin)"
2314
+ msgid "Tuvalu "
2315
+ msgstr "Τουβαλού "
2316
 
2317
+ #: src/Helpers.php:257
2318
+ #, fuzzy
2319
  msgctxt "(Admin)"
2320
+ msgid "Uganda "
2321
+ msgstr "Ουγκάντα "
2322
 
2323
+ #: src/Helpers.php:258
2324
+ #, fuzzy
2325
  msgctxt "(Admin)"
2326
+ msgid "Ukraine "
2327
+ msgstr "Ουκρανία "
 
 
 
 
 
 
 
2328
 
2329
+ #: src/Helpers.php:259
2330
+ #, fuzzy
2331
  msgctxt "(Admin)"
2332
+ msgid "United Arab Emirates "
2333
+ msgstr "Ηνωμένα Αραβικά Εμιράτα "
2334
 
2335
+ #: src/Helpers.php:260
2336
+ #, fuzzy
2337
  msgctxt "(Admin)"
2338
+ msgid "United States Minor Outlying Islands "
2339
+ msgstr "Ηνωμένες Πολιτείες Μικρές Εξωφώρευτες Νήσοι "
2340
 
2341
+ #: src/Helpers.php:261
2342
+ #, fuzzy
2343
  msgctxt "(Admin)"
2344
+ msgid "Uruguay "
2345
+ msgstr "Ουρουγουάη "
2346
 
2347
+ #: src/Helpers.php:262
2348
+ #, fuzzy
2349
  msgctxt "(Admin)"
2350
+ msgid "Uzbekistan "
2351
+ msgstr "Ουζμπεκιστάν "
2352
 
2353
+ #: src/Helpers.php:263
2354
+ #, fuzzy
2355
  msgctxt "(Admin)"
2356
+ msgid "Vanuatu "
2357
+ msgstr "Βανουάτου "
 
 
 
 
2358
 
2359
+ #: src/Helpers.php:264
2360
+ #, fuzzy
2361
  msgctxt "(Admin)"
2362
+ msgid "Venezuela, Bolivarian Republic of "
2363
+ msgstr "Βενεζουέλα, Μπολιβαριανή Δημοκρατία της "
 
 
 
 
 
2364
 
2365
+ #: src/Helpers.php:265
2366
+ #, fuzzy
2367
  msgctxt "(Admin)"
2368
+ msgid "Viet Nam "
2369
+ msgstr "Βιετνάμ "
2370
 
2371
+ #: src/Helpers.php:266
2372
+ #, fuzzy
2373
  msgctxt "(Admin)"
2374
+ msgid "Virgin Islands, British "
2375
+ msgstr "Παρθένοι Νήσοι, Βρετανία "
 
 
2376
 
2377
+ #: src/Helpers.php:267
2378
+ #, fuzzy
2379
  msgctxt "(Admin)"
2380
+ msgid "Virgin Islands, U.S. "
2381
+ msgstr "Παρθένοι Νήσοι, Η.Π.Α. "
2382
 
2383
+ #: src/Helpers.php:268
2384
+ #, fuzzy
2385
  msgctxt "(Admin)"
2386
+ msgid "Wallis and Futuna "
2387
+ msgstr "Γουόλις και Φουτούνα "
 
2388
 
2389
+ #: src/Helpers.php:269
2390
+ #, fuzzy
2391
  msgctxt "(Admin)"
2392
+ msgid "Western Sahara "
2393
+ msgstr "Δυτική Σαχάρα "
2394
 
2395
+ #: src/Helpers.php:270
2396
+ #, fuzzy
2397
  msgctxt "(Admin)"
2398
+ msgid "Yemen "
2399
+ msgstr "Υεμένη "
 
 
 
 
 
2400
 
2401
+ #: src/Helpers.php:271
2402
+ #, fuzzy
2403
  msgctxt "(Admin)"
2404
+ msgid "Zambia "
2405
+ msgstr "Ζάμπια "
2406
 
2407
+ #: src/Helpers.php:272
2408
+ #, fuzzy
2409
  msgctxt "(Admin)"
2410
+ msgid "Zimbabwe "
2411
+ msgstr "Ζιμπάμπουε "
 
 
 
 
 
 
 
 
 
 
2412
 
2413
+ #: src/Helpers.php:287
2414
  msgctxt "(Admin)"
2415
+ msgid "Iceland"
2416
+ msgstr "Ισλανδία"
 
 
 
 
2417
 
2418
+ #: src/Helpers.php:288
2419
  msgctxt "(Admin)"
2420
+ msgid "Norway"
2421
+ msgstr "Νορβηγία"
 
 
2422
 
2423
+ #: src/Helpers.php:289
2424
  msgctxt "(Admin)"
2425
+ msgid "Liechtenstein"
2426
+ msgstr "Λιχτενστάιν"
 
 
 
 
2427
 
2428
+ #: src/Helpers.php:290
2429
  msgctxt "(Admin)"
2430
+ msgid "Switzerland"
2431
+ msgstr "Ελβετία"
 
 
2432
 
2433
+ #: src/Helpers.php:291
2434
  msgctxt "(Admin)"
2435
+ msgid "United States"
2436
+ msgstr "Ηνωμένες Πολιτείες"
2437
+
2438
+ #: src/Helpers.php:377
2439
+ msgid "An error has occurred. Please contact the site administrator."
2440
+ msgstr "Παρουσιάστηκε σφάλμα. Επικοινωνήστε με τον διαχειριστή του ιστότοπου."
2441
 
2442
+ #: src/Installer/Installer.php:146
2443
  msgctxt "(Admin)"
2444
+ msgid "Setup Wizard"
2445
+ msgstr "Οδηγός Eγκατάστασης"
2446
 
2447
+ #: src/Installer/Steps/ConfigurationPages.php:23
2448
+ #: src/Installer/Steps/ConfigurationPages.php:33
2449
+ #: src/Installer/Steps/PolicySettings.php:23
2450
+ #: src/Installer/Steps/PolicySettings.php:48
2451
+ msgctxt "(Admin)"
2452
+ msgid "&mdash; Create a new page &mdash;"
2453
+ msgstr "&mdash; Δημιουργήστε μια νέα σελίδα &mdash;"
2454
 
2455
+ #: src/Installer/Steps/PolicySettings.php:38
2456
+ #, fuzzy
2457
+ #| msgctxt "(Admin)"
2458
+ #| msgid ""
2459
+ #| "We have automatically selected your WooCommerce Terms & Conditions page."
2460
+ msgctxt "(Admin)"
2461
  msgid ""
2462
+ "We have automatically selected your WooCommerce Terms & Conditions page."
2463
  msgstr ""
2464
+ "Έχουμε επιλέξει αυτόματα τη σελίδα σας όρους WooCommerce & προϋποθέσεις."
 
2465
 
2466
+ #: src/Modules/ContactForm7/ContactForm7.php:35
2467
+ #, fuzzy
2468
+ #| msgctxt "(Admin)"
2469
+ #| msgid "gdpr terms txt"
2470
+ msgctxt "(Admin)"
2471
+ msgid "gdpr terms txt"
2472
+ msgstr "gdpr όρους txt"
2473
 
2474
+ #: src/Modules/ContactForm7/Flamingo.php:23
2475
+ #: views/modules/contact-form-7/form-privacy-tab.php:1
2476
+ msgid "Privacy"
2477
+ msgstr "Απόρρητο"
 
2478
 
2479
+ #: src/Modules/ContactForm7/Flamingo.php:67
2480
+ #, fuzzy
2481
+ msgid "Form submissions: "
2482
+ msgstr "Υποβολές εντύπου: "
2483
 
2484
+ #: src/Modules/ContactForm7/Flamingo.php:162
2485
+ #, fuzzy
2486
+ #| msgctxt "(Admin)"
2487
+ #| msgid "Do you want form to be GDPR compliance."
2488
  msgctxt "(Admin)"
2489
+ msgid "Do you want form to be GDPR compliance."
2490
+ msgstr "Θέλετε να είναι η μορφή συμμόρφωσης με το GDPR."
2491
 
2492
+ #: src/Modules/ContactForm7/Flamingo.php:163
2493
+ #, fuzzy
2494
+ #| msgctxt "(Admin)"
2495
+ #| msgid ""
2496
+ #| "You have installed flamingo, To make this GDPR compliance in individual "
2497
+ #| "contact form's privacy tab check the checkbox for include data to be "
2498
+ #| "search on Privacy tool."
2499
  msgctxt "(Admin)"
2500
+ msgid ""
2501
+ "You have installed flamingo, To make this GDPR compliance in individual "
2502
+ "contact form's privacy tab check the checkbox for include data to be search "
2503
+ "on Privacy tool."
2504
+ msgstr ""
2505
+ "Έχετε εγκαταστήσει φλαμίνγκο, Για να κάνετε αυτή τη συμμόρφωση GDPR στην "
2506
+ "προσωπική καρτέλα απορρήτου της φόρμας επαφής, επιλέξτε το πλαίσιο επιλογής "
2507
+ "για να συμπεριλάβετε δεδομένα που πρέπει να αναζητηθούν στο εργαλείο "
2508
+ "Απορρήτου."
2509
+
2510
+ #: src/Modules/EddGdpr/EddGdpr.php:47
2511
+ #, fuzzy
2512
+ #| msgctxt "(Admin)"
2513
+ #| msgid "Company information"
2514
+ msgid "EDD Customer Information"
2515
+ msgstr "ΠΛΗΡΟΦΟΡΙΕΣ ΓΙΑ ΤΗΝ ΕΤΑΙΡΙΑ"
2516
+
2517
+ #: src/Modules/EddGdpr/EddGdpr.php:56
2518
+ #, fuzzy
2519
+ msgid "EDD Order Information"
2520
+ msgstr "Πληροφορίες παραγγελίας EDD"
2521
+
2522
+ #: src/Modules/EddGdpr/EddGdpr.php:65
2523
+ #, fuzzy
2524
+ msgid "EDD File Downloads"
2525
+ msgstr "Λήψη αρχείων EDD"
2526
+
2527
+ #: src/Modules/EddGdpr/EddGdpr.php:74
2528
+ #, fuzzy
2529
+ msgid "EDD API Access Logs"
2530
+ msgstr "Αρχεία καταγραφής πρόσβασης API EDD"
2531
+
2532
+ #: src/Modules/NewsletterGdpr/NewsletterGdpr.php:79
2533
+ #, fuzzy
2534
+ msgid "Newsletter Form submissions: "
2535
+ msgstr "Υποβολές φόρμας ενημερωτικού δελτίου: "
2536
+
2537
+ #: src/Modules/WooCommerceGdpr/WooCommerceGdpr.php:46
2538
+ #, fuzzy
2539
+ #| msgctxt "(Admin)"
2540
+ #| msgid "Company information"
2541
+ msgid "Customer Information"
2542
+ msgstr "ΠΛΗΡΟΦΟΡΙΕΣ ΓΙΑ ΤΗΝ ΕΤΑΙΡΙΑ"
2543
+
2544
+ #: src/Modules/WooCommerceGdpr/WooCommerceGdpr.php:53
2545
+ msgid "Order Information"
2546
+ msgstr "Πληροφορίες Παραγγελίας"
2547
+
2548
+ #: src/Modules/WooCommerceGdpr/WooCommerceGdpr.php:162
2549
+ msgid "Please acknowledge the Privacy Policy"
2550
+ msgstr "Λάβετε υπόψη την Πολιτική Απορρήτου"
2551
+
2552
+ #: src/Modules/WooCommerceGdpr/WooCommerceGdpr.php:177
2553
+ #, fuzzy
2554
+ #| msgctxt "(Admin)"
2555
+ #| msgid "Your Privacy Policy has been generated."
2556
+ msgid "Privacy Policy consent is required!"
2557
+ msgstr "Η Πολιτική προστασίας προσωπικών δεδομένων σας έχει δημιουργηθεί."
2558
+
2559
+ #: src/Router.php:80 src/Router.php:92 src/Router.php:125 src/Router.php:141
2560
+ #, php-format
2561
+ msgid "Nonce error for action \"%s\". Please go back and try again!"
2562
+ msgstr "Σφάλμα nonce για ενέργεια \"%s\". Επιστρέψτε και δοκιμάστε ξανά!"
2563
 
2564
+ #: src/Router.php:149
2565
+ #, fuzzy
2566
+ #| msgctxt "(Admin)"
2567
+ #| msgid "You do not have the required permissions to perform this action!"
2568
  msgctxt "(Admin)"
2569
+ msgid "You do not have the required permissions to perform this action!"
2570
+ msgstr ""
2571
+ "Δεν έχετε τα απαιτούμενα δικαιώματα για να εκτελέσετε αυτήν την ενέργεια!"
2572
 
2573
+ #: views/admin/consent.php:3
2574
+ msgctxt "(Admin)"
2575
+ msgid "Default consent types"
2576
+ msgstr "Προεπιλεγμένοι τύποι συγκατάθεσης"
2577
 
2578
+ #: views/admin/consent.php:4
2579
+ #, fuzzy
2580
+ #| msgctxt "(Admin)"
2581
+ #| msgid ""
2582
+ #| "These are the consent types that have been automatically registered by "
2583
+ #| "the framework or a plugin."
2584
  msgctxt "(Admin)"
2585
  msgid ""
2586
+ "These are the consent types that have been automatically registered by the "
2587
+ "framework or a plugin."
2588
  msgstr ""
2589
+ "Αυτοί είναι οι τύποι συγκατάθεσης που έχουν καταχωρηθεί αυτόματα από το "
2590
+ "πλαίσιο ή από ένα πρόσθετο."
 
2591
 
2592
+ #: views/admin/consent.php:7 views/admin/consent.php:53
2593
  msgctxt "(Admin)"
2594
+ msgid "Slug"
2595
+ msgstr "Σύντομος τίτλος"
2596
 
2597
+ #: views/admin/consent.php:8 views/admin/consent.php:38
2598
+ #: views/admin/consent.php:61
2599
+ msgctxt "(Admin)"
2600
+ msgid "Title"
2601
+ msgstr "Τίτλος"
2602
 
2603
+ #: views/admin/consent.php:9 views/admin/consent.php:41
2604
+ #: views/admin/consent.php:64
2605
  msgctxt "(Admin)"
2606
+ msgid "Description"
2607
+ msgstr "Περιγραφή"
2608
 
2609
+ #: views/admin/consent.php:10
2610
  msgctxt "(Admin)"
2611
+ msgid "Visibility"
2612
+ msgstr "Ορατότητα"
 
 
 
 
2613
 
2614
+ #: views/admin/consent.php:18
2615
  msgctxt "(Admin)"
2616
+ msgid "Visible"
2617
+ msgstr "Ορατό"
2618
 
2619
+ #: views/admin/consent.php:20
2620
  msgctxt "(Admin)"
2621
+ msgid "Hidden"
2622
+ msgstr "Κρυφό"
2623
 
2624
+ #: views/admin/consent.php:29
2625
  msgctxt "(Admin)"
2626
+ msgid "Custom consent types"
2627
+ msgstr " Προσαρμοσμένοι τύποι συγκατάθεσης"
2628
 
2629
+ #: views/admin/consent.php:30
2630
+ #, fuzzy
2631
+ #| msgctxt "(Admin)"
2632
+ #| msgid ""
2633
+ #| "Here you can add custom consent types to track. They will not be used "
2634
+ #| "anywhere by default - you will need to build an integration for each of "
2635
+ #| "them."
2636
  msgctxt "(Admin)"
2637
+ msgid ""
2638
+ "Here you can add custom consent types to track. They will not be used "
2639
+ "anywhere by default - you will need to build an integration for each of them."
2640
+ msgstr ""
2641
+ "Εδώ μπορείτε να προσθέσετε προσαρμοσμένους τύπους συγκατάθεσης για "
2642
+ "παρακολούθηση. Δεν θα χρησιμοποιηθούν οπουδήποτε από προεπιλογή - θα "
2643
+ "χρειαστεί να οικοδομήσετε μια ενοποίηση για καθένα από αυτά."
2644
 
2645
+ #: views/admin/consent.php:35
2646
+ #, fuzzy
2647
+ #| msgctxt "(Admin)"
2648
+ #| msgid "Machine-readable slug"
2649
  msgctxt "(Admin)"
2650
+ msgid "Machine-readable slug"
2651
+ msgstr "Μηχανή αναγνώσιμη γυμνοσάλιαγκας"
2652
 
2653
+ #: views/admin/consent.php:44 views/admin/consent.php:69
2654
+ #, fuzzy
2655
+ #| msgctxt "(Admin)"
2656
+ #| msgid "Visible?"
2657
  msgctxt "(Admin)"
2658
+ msgid "Visible?"
2659
+ msgstr "Ορατός?"
2660
 
2661
+ #: views/admin/consent.php:73
2662
  msgctxt "(Admin)"
2663
+ msgid "Remove"
2664
+ msgstr "Αφαίρεση"
2665
 
2666
+ #: views/admin/consent.php:79
2667
+ #, fuzzy
2668
+ #| msgctxt "(Admin)"
2669
+ #| msgid "Show Consent types"
2670
+ msgctxt "(Admin)"
2671
+ msgid "Show Consent types"
2672
+ msgstr "Εμφάνιση τύπων συγκατάθεσης"
2673
+
2674
+ #: views/admin/consent.php:80
2675
+ #, fuzzy
2676
+ #| msgctxt "(Admin)"
2677
+ #| msgid "Add consent type"
2678
  msgctxt "(Admin)"
2679
  msgid "Add consent type"
2680
  msgstr "Προσθήκη τύπου συγκατάθεσης"
2681
 
2682
+ #: views/admin/consent.php:81
2683
+ #, fuzzy
2684
+ #| msgctxt "(Admin)"
2685
+ #| msgid "Hide consent types"
2686
  msgctxt "(Admin)"
2687
+ msgid "Hide consent types"
2688
+ msgstr "Απόκρυψη τύπων συγκατάθεσης"
2689
 
2690
+ #: views/admin/consent.php:95
2691
  msgctxt "(Admin)"
2692
+ msgid "Additional info"
2693
+ msgstr "Πρόσθετες πληροφορίες"
 
2694
 
2695
+ #: views/admin/consent.php:97
2696
+ #, fuzzy
2697
+ #| msgctxt "(Admin)"
2698
+ #| msgid ""
2699
+ #| "This text will be displayed to your data subjects on the Privacy Tools "
2700
+ #| "page."
2701
  msgctxt "(Admin)"
2702
+ msgid ""
2703
+ "This text will be displayed to your data subjects on the Privacy Tools page."
2704
  msgstr ""
2705
+ "Αυτό το κείμενο θα εμφανιστεί στα υποκείμενα των δεδομένων σας στη σελίδα "
2706
+ "εργαλεία απορρήτου."
2707
 
2708
+ #: views/admin/consent/enable-consent-until.php:11
2709
  msgctxt "(Admin)"
2710
+ msgid " "
2711
+ msgstr " "
2712
+
2713
+ #: views/admin/data-subjects/search-form.php:2
2714
+ #, fuzzy
2715
+ #| msgctxt "(Admin)"
2716
+ #| msgid ""
2717
+ #| "On this page, you can find which data subjects personal data you are "
2718
+ #| "storing and download, export or delete it."
2719
+ msgctxt "(Admin)"
2720
+ msgid ""
2721
+ "On this page, you can find which data subjects personal data you are storing "
2722
+ "and download, export or delete it."
2723
  msgstr ""
2724
+ "Σε αυτή τη σελίδα μπορείτε να βρείτε ποια δεδομένα θέματα προσωπικών "
2725
+ "δεδομένων, μπορείτε να αποθηκεύετε και να κατεβάσετε, εξαγωγή ή να "
2726
+ "διαγράψετε αυτό."
2727
 
2728
+ #: views/admin/data-subjects/search-form.php:10
2729
+ #, fuzzy
2730
+ #| msgctxt "(Admin)"
2731
+ #| msgid "Find data subject by email"
2732
+ msgctxt "(Admin)"
2733
+ msgid "Find data subject by email"
2734
+ msgstr "Βρείτε το υποκείμενο των δεδομένων μέσω ηλεκτρονικού ταχυδρομείου"
2735
+
2736
+ #: views/admin/data-subjects/search-form.php:11
2737
+ msgctxt "(Admin)"
2738
+ msgid "Email address"
2739
+ msgstr "Διεύθυνση Email"
2740
+
2741
+ #: views/admin/data-subjects/search-form.php:16
2742
+ msgctxt "(Admin)"
2743
+ msgid "Search"
2744
+ msgstr "Αναζήτηση"
2745
+
2746
+ #: views/admin/data-subjects/search-results.php:7
2747
+ msgctxt "(Admin)"
2748
+ msgid "Username"
2749
+ msgstr "Όνομα Χρήστη"
2750
+
2751
+ #: views/admin/data-subjects/search-results.php:13
2752
+ #, fuzzy
2753
+ #| msgctxt "(Admin)"
2754
+ #| msgid "No data found!"
2755
+ msgctxt "(Admin)"
2756
+ msgid "Data found."
2757
+ msgstr "Δεν βρέθηκαν δεδομένα"
2758
+
2759
+ #: views/admin/data-subjects/search-results.php:14
2760
+ #, fuzzy
2761
+ #| msgctxt "(Admin)"
2762
+ #| msgid "is not a registered user."
2763
+ msgctxt "(Admin)"
2764
+ msgid "is not a registered user."
2765
+ msgstr "δεν είναι εγγεγραμμένος χρήστης."
2766
+
2767
+ #: views/admin/data-subjects/search-results.php:21
2768
+ #, fuzzy
2769
+ #| msgctxt "(Admin)"
2770
+ #| msgid "Download data (html)"
2771
+ msgctxt "(Admin)"
2772
+ msgid "Download data (html)"
2773
+ msgstr "Λήψη δεδομένων (html)"
2774
+
2775
+ #: views/admin/data-subjects/search-results.php:22
2776
+ #, fuzzy
2777
+ #| msgctxt "(Admin)"
2778
+ #| msgid "Export data (json)"
2779
+ msgctxt "(Admin)"
2780
+ msgid "Export data (json)"
2781
+ msgstr "Εξαγωγή δεδομένων (json)"
2782
+
2783
+ #: views/admin/data-subjects/search-results.php:26
2784
+ #, fuzzy
2785
+ #| msgctxt "(Admin)"
2786
+ #| msgid ""
2787
+ #| "This user has admin capabilities. Deleting data via this interface is "
2788
+ #| "disabled."
2789
  msgctxt "(Admin)"
2790
  msgid ""
2791
+ "This user has admin capabilities. Deleting data via this interface is "
2792
+ "disabled."
2793
  msgstr ""
2794
+ "Αυτός ο χρήστης έχει τις δυνατότητες διαχείρισης. Διαγραφή δεδομένων μέσω "
2795
+ "αυτής της διασύνδεσης είναι απενεργοποιημένη."
2796
 
2797
+ #: views/admin/data-subjects/search-results.php:29
2798
+ #, fuzzy
2799
+ #| msgctxt "(Admin)"
2800
+ #| msgid "Anonymize data"
2801
  msgctxt "(Admin)"
2802
+ msgid "Anonymize data"
2803
+ msgstr "Ανωνυμία δεδομένων"
2804
 
2805
+ #: views/admin/data-subjects/search-results.php:30
2806
+ #, fuzzy
2807
+ #| msgctxt "(Admin)"
2808
+ #| msgid "Delete data"
2809
  msgctxt "(Admin)"
2810
+ msgid "Delete data"
2811
+ msgstr "Διαγραφή Δεδομένων"
2812
 
2813
+ #: views/admin/data-subjects/search-results.php:34
2814
  msgctxt "(Admin)"
2815
+ msgid "No data found!"
2816
+ msgstr "Δε βρέθηκαν δεδομένα!"
2817
+
2818
+ #: views/admin/data-subjects/search-results.php:41
2819
+ #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:4
2820
+ #, fuzzy
2821
+ #| msgctxt "(Admin)"
2822
+ #| msgid "Consents given"
2823
+ msgctxt "(Admin)"
2824
+ msgid "Consents given"
2825
+ msgstr "Συναινέσεις που έχουν χορηγηθεί"
2826
+
2827
+ #: views/admin/data-subjects/search-results.php:54
2828
+ #, fuzzy
2829
+ #| msgctxt "(Admin)"
2830
+ #| msgid "No consents given"
2831
+ msgctxt "(Admin)"
2832
+ msgid "No consents given!"
2833
+ msgstr "Δεν δόθηκαν συναινέσεις"
2834
+
2835
+ #: views/admin/general/custom-policy-url.php:6
2836
+ #, fuzzy
2837
+ #| msgctxt "(Admin)"
2838
+ #| msgid "Leave blank if privacy policy page already selected"
2839
+ msgctxt "(Admin)"
2840
+ msgid "Leave blank if privacy policy page already selected"
2841
  msgstr ""
2842
+ "Αφήστε κενό εάν η σελίδα πολιτικής προστασίας απορρήτου έχει ήδη επιλεγεί"
 
2843
 
2844
+ #: views/admin/general/custom-terms-url.php:6
2845
+ #, fuzzy
2846
+ #| msgctxt "(Admin)"
2847
+ #| msgid "Leave blank if privacy policy page already selected"
2848
  msgctxt "(Admin)"
2849
+ msgid "Leave blank if terms and condition page already selected"
2850
+ msgstr ""
2851
+ "Αφήστε κενό εάν η σελίδα πολιτικής προστασίας απορρήτου έχει ήδη επιλεγεί"
2852
 
2853
+ #: views/admin/general/custom-tools-url.php:6
2854
+ #, fuzzy
2855
+ #| msgctxt "(Admin)"
2856
+ #| msgid "Leave blank if privacy policy page already selected"
2857
  msgctxt "(Admin)"
2858
+ msgid "Leave blank if privacy tools page already selected"
2859
+ msgstr ""
2860
+ "Αφήστε κενό εάν η σελίδα πολιτικής προστασίας απορρήτου έχει ήδη επιλεγεί"
2861
+
2862
+ #: views/admin/general/delete-action-email.php:5
2863
+ #: views/admin/general/export-action-email.php:5
2864
+ #: views/installer/steps/configuration-settings.php:29
2865
+ #: views/installer/steps/configuration-settings.php:79
2866
+ msgid "Email address"
2867
+ msgstr "Διεύθυνση ηλεκτρονικού ταχυδρομείου"
2868
 
2869
+ #: views/admin/general/delete-action-reassign.php:3
2870
+ #: views/installer/steps/configuration-settings.php:50
2871
  msgctxt "(Admin)"
2872
+ msgid "Delete content"
2873
+ msgstr "Διαγραφή συγκατάθεσης"
2874
+
2875
+ #: views/admin/general/delete-action-reassign.php:6
2876
+ #: views/installer/steps/configuration-settings.php:53
2877
+ #, fuzzy
2878
+ #| msgctxt "(Admin)"
2879
+ #| msgid "Reassign content to a user"
2880
+ msgctxt "(Admin)"
2881
+ msgid "Reassign content to a user"
2882
+ msgstr "Αντιστοιχίστε εκ νέου το περιεχόμενο σε ένα χρήστη"
2883
+
2884
+ #: views/admin/general/delete-action-reassign.php:10
2885
+ #, fuzzy
2886
+ #| msgctxt "(Admin)"
2887
+ #| msgid ""
2888
+ #| "If the user has submitted any content on your site, should it be deleted "
2889
+ #| "or reassigned to another user?"
2890
+ msgctxt "(Admin)"
2891
+ msgid ""
2892
+ "If the user has submitted any content on your site, should it be deleted or "
2893
+ "reassigned to another user?"
2894
+ msgstr ""
2895
+ "Εάν ο χρήστης έχει υποβάλει οποιοδήποτε περιεχόμενο στην ιστοσελίδα σας, "
2896
+ "πρέπει να διαγραφεί και να εκχωρηθούν σε κάποιον άλλο χρήστη;"
2897
+
2898
+ #: views/admin/general/description-data-page.php:2
2899
+ msgctxt "(Admin)"
2900
+ msgid ""
2901
+ "Select the page where users can go to control their data. This page must "
2902
+ "contain the [gdpr_privacy_tools] shortcode."
2903
+ msgstr ""
2904
+ "Επιλέξτε τη σελίδα όπου οι χρήστες μπορούν να πάνε για τον έλεγχο των "
2905
+ "δεδομένων τους. Αυτή η σελίδα πρέπει να περιέχει το shortcode "
2906
+ "[gdpr_privacy_tools]."
2907
+
2908
+ #: views/admin/general/description-delete-action.php:2
2909
+ msgctxt "(Admin)"
2910
+ msgid "What should happen if a data subject requests deleting their data."
2911
+ msgstr ""
2912
+ "Τι πρέπει να συμβεί εάν ένα υποκείμενο δεδομένων ζητήσει τη διαγραφή των "
2913
+ "δεδομένων του."
2914
+
2915
+ #: views/admin/general/description-export-action.php:2
2916
+ msgctxt "(Admin)"
2917
+ msgid ""
2918
+ "What should happen if a data subject requests viewing or exporting their "
2919
+ "data."
2920
+ msgstr ""
2921
+ "Τι θα συνέβαινε εάν ένα υποκείμενο δεδομένων ζητήσει την προβολή ή την "
2922
+ "εξαγωγή των δεδομένων του."
2923
+
2924
+ #: views/admin/general/description-position-action.php:2
2925
+ msgctxt "(Admin)"
2926
+ msgid "Select position of the Popup"
2927
+ msgstr "Επιλέξτε τη θέση του αναδυόμενου παραθύρου"
2928
+
2929
+ #: views/admin/general/description-terms-page.php:2
2930
+ msgctxt "(Admin)"
2931
+ msgid "Optional. Select the page which contains your Terms & Conditions"
2932
+ msgstr ""
2933
+ "Προαιρετικός. Επιλέξτε τη σελίδα που περιέχει τους Όρους και τις "
2934
+ "Προϋποθέσεις σας"
2935
+
2936
+ #: views/admin/general/description-theme-action.php:2
2937
+ msgctxt "(Admin)"
2938
+ msgid "Select theme of the Popup"
2939
+ msgstr "Επιλέξτε θέμα του αναδυόμενου παραθύρου"
2940
+
2941
+ #: views/admin/general/disble-checkbox.php:9
2942
+ msgctxt "(Admin)"
2943
+ msgid "."
2944
+ msgstr "."
2945
+
2946
+ #: views/admin/general/edd-compatibility.php:9
2947
+ #, fuzzy
2948
+ #| msgctxt "(Admin)"
2949
+ #| msgid "Enable EDD data on GDPR tool."
2950
+ msgctxt "(Admin)"
2951
+ msgid "Enable EDD data on GDPR tool."
2952
+ msgstr "Ενεργοποιήστε τα δεδομένα EDD στο εργαλείο GDPR."
2953
+
2954
+ #: views/admin/general/edd-compatibility.php:12
2955
+ #, fuzzy
2956
+ #| msgctxt "(Admin)"
2957
+ #| msgid "Will work for EDD Version 2.0.0 or later."
2958
+ msgctxt "(Admin)"
2959
+ msgid "Will work for EDD Version 2.0.0 or later."
2960
+ msgstr "Θα λειτουργήσει για EDD έκδοση 2.0.0 ή νεότερη έκδοση."
2961
+
2962
+ #: views/admin/general/enable-policy-popup.php:9
2963
+ #, fuzzy
2964
+ #| msgctxt "(Admin)"
2965
+ #| msgid "Enable Policy Link On Popup"
2966
+ msgctxt "(Admin)"
2967
+ msgid "Enable Policy Link On Popup"
2968
+ msgstr "Ενεργοποίηση συνδέσμου πολιτικής στο αναδυόμενο παράθυρο"
2969
+
2970
+ #: views/admin/general/enable-popup.php:12
2971
+ #, fuzzy
2972
+ #| msgctxt "(Admin)"
2973
+ #| msgid ""
2974
+ #| "<b>Note:</b> Need to add custom content <b>gdpr_cookie_consent</b> its "
2975
+ #| "accepted on popup accept button."
2976
+ msgctxt "(Admin)"
2977
+ msgid ""
2978
+ "<b>Note:</b> Need to add custom content <b>gdpr_cookie_consent</b> its "
2979
+ "accepted on popup accept button."
2980
+ msgstr ""
2981
+ "<b> Σημείωση: </ b> Πρέπει να προσθέσετε προσαρμοσμένο περιεχόμενο <b> "
2982
+ "gdpr_cookie_consent </ b> το αποδεκτό κουμπί του στο αναδυόμενο παράθυρο."
2983
+
2984
+ #: views/admin/general/enable-tac.php:9
2985
+ #, fuzzy
2986
+ #| msgctxt "(Admin)"
2987
+ #| msgid "Enable the term and condition page."
2988
+ msgctxt "(Admin)"
2989
+ msgid "Enable the term and condition page."
2990
+ msgstr "Ενεργοποιήστε τη σελίδα όρων και προϋποθέσεων."
2991
+
2992
+ #: views/admin/general/enable.php:9
2993
+ #, fuzzy
2994
+ #| msgctxt "(Admin)"
2995
+ #| msgid ""
2996
+ #| "Enable the view, export and forget functionality for users and visitors"
2997
+ msgctxt "(Admin)"
2998
+ msgid "Enable the view, export and forget functionality for users and visitors"
2999
+ msgstr ""
3000
+ "Ενεργοποιήσετε την προβολή, να εξαγάγετε και να ξεχάσετε τη λειτουργικότητα "
3001
+ "για τους χρήστες και επισκέπτες."
3002
+
3003
+ #: views/admin/general/enable.php:12
3004
+ msgctxt "(Admin)"
3005
+ msgid ""
3006
+ "Enable the Privacy Tools page on front-end and dashboard. This allows "
3007
+ "visitors to request viewing and deleting their personal data and withdraw "
3008
+ "consents."
3009
+ msgstr ""
3010
+ "Ενεργοποίηση της σελίδας εργαλείων προστασίας προσωπικών δεδομένων για front-"
3011
+ "end και ταμπλό. Αυτό επιτρέπει στους επισκέπτες να ζητήσουν προβολή και "
3012
+ "διαγραφή των προσωπικών τους δεδομένων και να αποσύρουν τις συναινέσεις."
3013
+
3014
+ #: views/admin/general/enable_popup_allow_content.php:3
3015
+ msgctxt "gdpr-framework"
3016
+ msgid "Accept"
3017
+ msgstr "Αποδέχομαι"
3018
+
3019
+ #: views/admin/general/enable_popup_content.php:5
3020
+ msgctxt "gdpr-framework"
3021
+ msgid ""
3022
+ "This website uses cookies to ensure you get the best experience on our "
3023
+ "website."
3024
+ msgstr ""
3025
+ "Αυτός ο ιστότοπος χρησιμοποιεί cookies για να εξασφαλίσει ότι θα έχετε την "
3026
+ "καλύτερη εμπειρία στον ιστότοπό μας."
3027
+
3028
+ #: views/admin/general/enable_popup_dismiss_content.php:3
3029
+ msgctxt "gdpr-framework"
3030
+ msgid "Decline"
3031
+ msgstr "πτώση"
3032
+
3033
+ #: views/admin/general/enable_popup_header.php:7
3034
+ #, fuzzy
3035
+ #| msgid "Leave blank if don't want header to get display."
3036
+ msgctxt "(Admin)"
3037
+ msgid "Leave blank if you don't want a header to get displayed."
3038
+ msgstr "Αφήστε κενό, εάν δεν θέλετε να εμφανίζεται η κεφαλίδα."
3039
+
3040
+ #: views/admin/general/enable_popup_learnmore_content.php:3
3041
+ msgctxt "gdpr-framework"
3042
+ msgid "Learn more"
3043
+ msgstr "Μάθε περισσότερα"
3044
+
3045
+ #: views/admin/general/popup_link_target.php:3
3046
+ msgctxt "(Admin)"
3047
+ msgid "Next Tab"
3048
+ msgstr "Επόμενο Tab"
3049
+
3050
+ #: views/admin/general/popup_link_target.php:6
3051
+ msgctxt "(Admin)"
3052
+ msgid "Self"
3053
+ msgstr "Ίδιο"
3054
+
3055
+ #: views/admin/general/stylesheet.php:9
3056
+ msgctxt "(Admin)"
3057
+ msgid "Enable basic styling for Privacy Tools page."
3058
+ msgstr "Ενεργοποιήστε το βασικό στυλ για τη σελίδα \"Εργαλεία απορρήτου\"."
3059
+
3060
+ #: views/admin/general/theme-compatibility.php:9
3061
+ #: views/installer/steps/integrations.php:21
3062
+ #, fuzzy
3063
+ #| msgctxt "(Admin)"
3064
+ #| msgid ""
3065
+ #| "Automatically add Privacy Policy and Privacy Tools links to your site "
3066
+ #| "footer."
3067
+ msgctxt "(Admin)"
3068
+ msgid ""
3069
+ "Automatically add Privacy Policy and Privacy Tools links to your site footer."
3070
+ msgstr ""
3071
+ "Αυτόματα προσθέστε πολιτική απορρήτου και προστασίας προσωπικών δεδομένων "
3072
+ "εργαλεία συνδέσεις υποσέλιδο ιστοσελίδα σας."
3073
+
3074
+ #: views/admin/general/woo-compatibility.php:9
3075
+ #, fuzzy
3076
+ #| msgctxt "(Admin)"
3077
+ #| msgid "Enable WooCommerce data on GDPR tool."
3078
+ msgctxt "(Admin)"
3079
+ msgid "Enable WooCommerce data on GDPR tool."
3080
+ msgstr "Ενεργοποιήστε τα δεδομένα του WooCommerce στο εργαλείο GDPR."
3081
+
3082
+ #: views/admin/general/woo-compatibility.php:12
3083
+ #, fuzzy
3084
+ #| msgctxt "(Admin)"
3085
+ #| msgid "Will work for WooCommerce Version 3.4.0 or later."
3086
+ msgctxt "(Admin)"
3087
+ msgid "Will work for WooCommerce Version 3.4.0 or later."
3088
+ msgstr "Θα λειτουργήσει για το WooCommerce Έκδοση 3.4.0 ή νεότερη έκδοση."
3089
+
3090
+ #: views/admin/notices/header-privacy-safe.php:4
3091
+ #, fuzzy
3092
+ msgctxt "(Admin)"
3093
+ msgid "Privacy Safe By Data443"
3094
+ msgstr "Προστασία προσωπικών δεδομένων ασφαλές από data443"
3095
+
3096
+ #: views/admin/notices/header.php:4 views/admin/settings-page.php:3
3097
+ #, fuzzy
3098
+ #| msgctxt "(Admin)"
3099
+ #| msgid "The GDPR Framework"
3100
+ msgctxt "(Admin)"
3101
+ msgid "The GDPR Framework By Data443"
3102
+ msgstr "Το πλαίσιο GDPR"
3103
+
3104
+ #: views/admin/notices/help.php:3 views/admin/settings-page.php:39
3105
+ #, fuzzy, php-format
3106
+ msgctxt "(Admin)"
3107
+ msgid "Need help? Take a look at our %sdocumentation%s."
3108
+ msgstr "Χρειάζεσαι βοήθεια; Ρίξε μια ματιά στο %sdocumentation% μας."
3109
+
3110
+ #: views/admin/notices/helper-autoinstall.php:2
3111
+ msgctxt "(Admin)"
3112
+ msgid ""
3113
+ "A Privacy Policy page has been created, but it is empty. You can generate a "
3114
+ "policy template on this page."
3115
+ msgstr ""
3116
+ "Έχει δημιουργηθεί μια σελίδα Πολιτική προστασίας προσωπικών δεδομένων, αλλά "
3117
+ "είναι κενή. Μπορείτε να δημιουργήσετε ένα πρότυπο πολιτικής σε αυτήν τη "
3118
+ "σελίδα."
3119
+
3120
+ #: views/admin/notices/helper-policy.php:2
3121
+ msgctxt "(Admin)"
3122
+ msgid ""
3123
+ "Heads up - your Privacy Policy still requires some attention. Find the "
3124
+ "places marked with [TODO] and replace them with real content!"
3125
+ msgstr ""
3126
+ "Heads up - πολιτική απορρήτου σας εξακολουθεί να απαιτεί κάποια προσοχή. "
3127
+ "Βρείτε τα σημεία που σημειώνονται με [TODO] και την αντικατάστασή τους με "
3128
+ "πραγματικό περιεχόμενο!"
3129
+
3130
+ #: views/admin/notices/helper-settings.php:2
3131
+ #, fuzzy
3132
+ msgctxt "(Admin)"
3133
+ msgid ""
3134
+ "Heads up! The GDPR Framework is not properly configured, so it will not work "
3135
+ "just yet."
3136
+ msgstr ""
3137
+ "Ψηλά τα κεφάλια! Το πλαίσιο gdpr δεν έχει ρυθμιστεί σωστά, επομένως δεν θα "
3138
+ "λειτουργήσει ακόμα."
3139
+
3140
+ #: views/admin/notices/helper-settings.php:4
3141
+ #, fuzzy, php-format
3142
+ msgctxt "(Admin)"
3143
+ msgid "Go to %sTools > Data443 GDPR%s and make sure all fields are filled in."
3144
+ msgstr ""
3145
+ "Μεταβείτε στο %sTools > τον ΓΚΠΔ Data443%s και βεβαιωθείτε ότι όλα τα πεδία "
3146
+ "έχουν συμπληρωθεί."
3147
+
3148
+ #: views/admin/notices/helper-tools.php:2
3149
+ #, fuzzy
3150
+ #| msgctxt "(Admin)"
3151
+ #| msgid ""
3152
+ #| "The contents of this page should contain the [gdpr_privacy_tools] "
3153
+ #| "shortcode."
3154
+ msgctxt "(Admin)"
3155
+ msgid ""
3156
+ "The contents of this page should contain the [gdpr_privacy_tools] shortcode."
3157
+ msgstr ""
3158
+ "Το περιεχόμενο αυτής της σελίδας θα πρέπει να περιέχει το shortcode "
3159
+ "[gdpr_privacy_tools]."
3160
+
3161
+ #: views/admin/privacy-manager/header.php:2
3162
+ #: views/admin/privacy-manager/header.php:21
3163
+ #, fuzzy
3164
+ #| msgctxt "(Admin)"
3165
+ #| msgid "Data443™ Privacy Manager"
3166
+ msgctxt "(Admin)"
3167
+ msgid "Data443™ Global Privacy Manager"
3168
+ msgstr "Data443™ Privacy Manager"
3169
+
3170
+ #: views/admin/privacy-manager/header.php:3
3171
+ #, fuzzy
3172
+ #| msgctxt "(Admin)"
3173
+ #| msgid ""
3174
+ #| "ensures privacy regulation compliance, such as GDPR, CCPA, LGPD, etc, at "
3175
+ #| "the next level."
3176
+ msgctxt "(Admin)"
3177
+ msgid ""
3178
+ "ensures privacy regulation compliance, such as GDPR, CCPA, LGPD, etc, at the "
3179
+ "next level."
3180
+ msgstr ""
3181
+ "διασφαλίζει τη συμμόρφωση με τη νομοθεσία για την προστασία της ιδιωτικής "
3182
+ "ζωής, όπως η GDPR, η CCPA, η LGPD κ.λπ., στο επόμενο επίπεδο."
3183
+
3184
+ #: views/admin/privacy-manager/header.php:4
3185
+ #, fuzzy
3186
+ msgctxt "(Admin)"
3187
+ msgid "Includes the following features:"
3188
+ msgstr "Περιλαμβάνει τις ακόλουθες δυνατότητες:"
3189
+
3190
+ #: views/admin/privacy-manager/header.php:6
3191
+ #, fuzzy
3192
+ msgctxt "(Admin)"
3193
+ msgid ""
3194
+ "Available within minutes – designed to be deployed to your website over the "
3195
+ "phone with one link!"
3196
+ msgstr ""
3197
+ "Διαθέσιμο μέσα σε λίγα λεπτά - σχεδιασμένο για να αναπτύσσεται στον ιστότοπό "
3198
+ "σας μέσω τηλεφώνου με έναν σύνδεσμο!"
3199
+
3200
+ #: views/admin/privacy-manager/header.php:7
3201
+ #, fuzzy
3202
+ msgctxt "(Admin)"
3203
+ msgid "Fully branded Subject Access Request Form"
3204
+ msgstr "Πλήρως επώνυμη φόρμα αίτησης πρόσβασης θέματος"
3205
+
3206
+ #: views/admin/privacy-manager/header.php:8
3207
+ #, fuzzy
3208
+ msgctxt "(Admin)"
3209
+ msgid "Custom Workflow Engine"
3210
+ msgstr "Προσαρμοσμένος μηχανισμός ροής εργασίας"
3211
+
3212
+ #: views/admin/privacy-manager/header.php:9
3213
+ #, fuzzy
3214
+ msgctxt "(Admin)"
3215
+ msgid "Cookie and Consent Management Tracking"
3216
+ msgstr "Παρακολούθηση διαχείρισης cookie και συναίνεσης"
3217
+
3218
+ #: views/admin/privacy-manager/header.php:10
3219
+ #, fuzzy
3220
+ msgctxt "(Admin)"
3221
+ msgid "Opt-in and Opt-out Management"
3222
+ msgstr "Διαχείριση συμμετοχής και εξαίρεσης"
3223
+
3224
+ #: views/admin/privacy-manager/header.php:11
3225
+ #, fuzzy
3226
+ msgctxt "(Admin)"
3227
+ msgid "Do Not Sell Management Interface"
3228
+ msgstr "Μην πουλάτε περιβάλλον εργασίας διαχείρισης"
3229
+
3230
+ #: views/admin/privacy-manager/header.php:12
3231
+ #, fuzzy
3232
+ msgctxt "(Admin)"
3233
+ msgid "Full On Premise and In Cloud Data Discovery"
3234
+ msgstr "Πλήρης με την προϋπόθεση και στην ανακάλυψη δεδομένων cloud"
3235
+
3236
+ #: views/admin/privacy-manager/header.php:13
3237
+ #, fuzzy
3238
+ msgctxt "(Admin)"
3239
+ msgid "Complete End to End Data Mapping"
3240
+ msgstr "Ολοκλήρωση αντιστοίχισης δεδομένων από λήξη σε λήξη"
3241
+
3242
+ #: views/admin/privacy-manager/header.php:14
3243
+ #, fuzzy
3244
+ msgctxt "(Admin)"
3245
+ msgid "Full Data Classification and Governance"
3246
+ msgstr "Πλήρης ταξινόμηση και διακυβέρνηση δεδομένων"
3247
+
3248
+ #: views/admin/privacy-manager/header.php:15
3249
+ #, fuzzy
3250
+ msgctxt "(Admin)"
3251
+ msgid "Data Deletion and Monitoring Compliance Management"
3252
+ msgstr "Διαχείριση συμμόρφωσης διαγραφής δεδομένων και παρακολούθησης"
3253
+
3254
+ #: views/admin/privacy-manager/header.php:16
3255
+ #, fuzzy
3256
+ msgctxt "(Admin)"
3257
+ msgid ""
3258
+ "Data Stores instantly available: Windows NTFS, OneDrive, Dropbox, Office365, "
3259
+ "GoogleMail, Salesforce, Quickbooks, MailChimp, Sharepoint, MySQL, MSSQL, "
3260
+ "PostGreSQL, Mongo"
3261
+ msgstr ""
3262
+ "Καταστήματα δεδομένων άμεσα διαθέσιμα: Windows NTFS, OneDrive, Dropbox, "
3263
+ "Office365, GoogleMail, Salesforce, Γρήγορα βιβλία, MailChimp, Sharepoint, "
3264
+ "MySQL, MSSQL, PostGreSQL, Μόνγκο"
3265
+
3266
+ #: views/admin/privacy-manager/header.php:17
3267
+ #, fuzzy
3268
+ msgctxt "(Admin)"
3269
+ msgid ""
3270
+ "Data Stores addons available: over 200 SaaS, On Premise databases & File "
3271
+ "shares"
3272
+ msgstr ""
3273
+ "Διαθέσιμα πρόσθετα καταστημάτων δεδομένων: πάνω από 200 SaaS, βάσεις "
3274
+ "δεδομένων με βάση δεδομένων και κοινόχρηστα στοιχεία αρχείων"
3275
+
3276
+ #: views/admin/privacy-manager/header.php:18
3277
+ #, fuzzy
3278
+ msgctxt "(Admin)"
3279
+ msgid "PowerBI and Dashboarding"
3280
+ msgstr "PowerBI και πίνακας εργαλείων"
3281
+
3282
+ #: views/admin/privacy-manager/header.php:21
3283
+ #, fuzzy
3284
+ #| msgctxt "(Admin)"
3285
+ #| msgid ""
3286
+ #| "No matter where you are on your data privacy journey, the ultimate goal "
3287
+ #| "is compliance."
3288
+ msgctxt "(Admin)"
3289
+ msgid ""
3290
+ "No matter where you are on your data privacy journey, the ultimate goal is "
3291
+ "compliance."
3292
+ msgstr ""
3293
+ "Ανεξάρτητα από το πού βρίσκεστε στο ταξίδι σας για την προστασία της "
3294
+ "ιδιωτικής ζωής των δεδομένων, ο τελικός στόχος είναι η συμμόρφωση."
3295
+
3296
+ #: views/admin/privacy-manager/header.php:21
3297
+ #, fuzzy
3298
+ #| msgctxt "(Admin)"
3299
+ #| msgid "enables your organization to comply with all privacy regulations."
3300
+ msgctxt "(Admin)"
3301
+ msgid "enables your organization to comply with all privacy regulations."
3302
+ msgstr ""
3303
+ "επιτρέπει στην εταιρεία σας να συμμορφώνεται με όλους τους κανονισμούς "
3304
+ "απορρήτου."
3305
+
3306
+ #: views/admin/privacy-policy/description-policy-page.php:2
3307
+ #, fuzzy
3308
+ #| msgctxt "(Admin)"
3309
+ #| msgid "Select the page which will contain your Privacy Policy"
3310
+ msgctxt "(Admin)"
3311
+ msgid "Select the page which will contain your Privacy Policy"
3312
+ msgstr "Επιλέξτε τη σελίδα που θα περιέχει την πολιτική απορρήτου σας"
3313
+
3314
+ #: views/admin/privacy-policy/generated.php:3
3315
+ msgctxt "(Admin)"
3316
+ msgid "Your Privacy Policy has been generated."
3317
+ msgstr "Η Πολιτική προστασίας προσωπικών δεδομένων σας έχει δημιουργηθεί."
3318
+
3319
+ #: views/admin/privacy-policy/generated.php:20
3320
+ msgctxt "(Admin)"
3321
+ msgid "&laquo; Back"
3322
+ msgstr "&larr; Πίσω"
3323
+
3324
+ #: views/admin/privacy-policy/has-dpo.php:11
3325
+ #, fuzzy
3326
+ #| msgctxt "(Admin)"
3327
+ #| msgid "I have appointed a Data Protection Officer (DPO)"
3328
+ msgctxt "(Admin)"
3329
+ msgid "I have appointed a Data Protection Officer (DPO)"
3330
+ msgstr "Έχω ορίσει υπεύθυνο προστασίας δεδομένων (DPO)"
3331
+
3332
+ #: views/admin/privacy-policy/header.php:2
3333
+ #, fuzzy
3334
+ #| msgctxt "(Admin)"
3335
+ #| msgid ""
3336
+ #| "This page allows you to generate a Privacy Policy based on the "
3337
+ #| "information you entered below."
3338
+ msgctxt "(Admin)"
3339
+ msgid ""
3340
+ "This page allows you to generate a Privacy Policy based on the information "
3341
+ "you entered below."
3342
+ msgstr ""
3343
+ "Η σελίδα αυτή σας επιτρέπει να δημιουργήσετε μια πολιτική απορρήτου που "
3344
+ "βασίζεται στις πληροφορίες που καθορίσατε παρακάτω."
3345
+
3346
+ #: views/admin/privacy-safe/enable-backlink.php:11
3347
+ #, fuzzy
3348
+ msgctxt "(Admin)"
3349
+ msgid ""
3350
+ "<b>Note:</b> We need your support. By selecting to support Data443, a small "
3351
+ "link is added below the privacy safe seal linking back to our product page "
3352
+ "on data443.com. Uncheck if you prefer not to have the link display on your "
3353
+ "site."
3354
+ msgstr ""
3355
+ "<b>Σημείωση:</b> Χρειαζόμαστε την υποστήριξή σου. Επιλέγοντας να "
3356
+ "υποστηρίξετε το Data443, ένας μικρός σύνδεσμος προστίθεται κάτω από την "
3357
+ "ασφαλή σφραγίδα απορρήτου που συνδέεται με τη σελίδα προϊόντων μας στο "
3358
+ "data443.com. Καταργήστε την επιλογή αν προτιμάτε να μην εμφανίζεται ο "
3359
+ "σύνδεσμος στον ιστότοπό σας."
3360
+
3361
+ #: views/admin/settings-page.php:8
3362
+ #, fuzzy
3363
+ msgctxt "(Admin)"
3364
+ msgid "GDPR settings saved!"
3365
+ msgstr "Οι ρυθμίσεις GDPR αποθηκεύονται!"
3366
+
3367
+ #: views/admin/settings-page.php:31
3368
+ #, fuzzy, php-format
3369
+ #| msgctxt "(Admin)"
3370
+ #| msgid "The GDPR Framework. Built with &#9829; by %sCodelight%s."
3371
+ msgctxt "(Admin)"
3372
+ msgid "The GDPR Framework. Built with &#9829; by %sData443%s."
3373
+ msgstr "Το πλαίσιο GDPR. Χτισμένο με & # 9829; κατά% sCodelight% s."
3374
+
3375
+ #: views/admin/settings-page.php:47
3376
+ #, fuzzy, php-format
3377
+ msgctxt "(Admin)"
3378
+ msgid "Support our development efforts! leave a %s5-star rating%s."
3379
+ msgstr ""
3380
+ "Υποστηρίξτε τις αναπτυξιακές μας προσπάθειες! αφήστε μια βαθμολογία %s5 "
3381
+ "αστέρων%s."
3382
+
3383
+ #: views/admin/support/contents.php:5 views/installer/steps/finish.php:10
3384
+ #, fuzzy
3385
+ #| msgctxt "(Admin)"
3386
+ #| msgid "Need more info?"
3387
+ msgctxt "(Admin)"
3388
+ msgid "Need more info?"
3389
+ msgstr "Χρειάζεστε περισσότερες πληροφορίες;"
3390
+
3391
+ #: views/admin/support/contents.php:11 views/installer/steps/finish.php:16
3392
+ #, fuzzy
3393
+ #| msgctxt "(Admin)"
3394
+ #| msgid "Site Owner's guide to GDPR"
3395
+ msgctxt "(Admin)"
3396
+ msgid "Site Owner's guide to GDPR"
3397
+ msgstr "Οδηγός ιδιοκτήτη τοποθεσίας στο GDPR"
3398
+
3399
+ #: views/admin/support/contents.php:14 views/installer/steps/finish.php:19
3400
+ msgctxt "(Admin)"
3401
+ msgid "Read the full guide on GDPR compliance."
3402
+ msgstr "Διαβάστε τον πλήρη οδηγό σχετικά με τη συμμόρφωση του GDPR."
3403
+
3404
+ #: views/admin/support/contents.php:20 views/installer/steps/finish.php:25
3405
+ msgctxt "(Admin)"
3406
+ msgid "Knowledge base"
3407
+ msgstr "Γνωσιακή βάση"
3408
+
3409
+ #: views/admin/support/contents.php:23 views/installer/steps/finish.php:28
3410
+ #, fuzzy
3411
+ #| msgctxt "(Admin)"
3412
+ #| msgid "Check out the knowledge base for common questions and answers."
3413
+ msgctxt "(Admin)"
3414
+ msgid "Check out the knowledge base for common questions and answers."
3415
+ msgstr "Ελέγξτε την Γνωσιακή βάση για συχνές ερωτήσεις και απαντήσεις."
3416
+
3417
+ #: views/admin/support/contents.php:29 views/installer/steps/finish.php:34
3418
+ msgctxt "(Admin)"
3419
+ msgid "Developer's guide to GDPR"
3420
+ msgstr "Οδηγός για προγραμματιστές να GDPR"
3421
+
3422
+ #: views/admin/support/contents.php:32 views/installer/steps/finish.php:37
3423
+ #, fuzzy
3424
+ #| msgctxt "(Admin)"
3425
+ #| msgid "We have a thorough guide to help making custom sites compliant."
3426
+ msgctxt "(Admin)"
3427
+ msgid "We have a thorough guide to help making custom sites compliant."
3428
+ msgstr ""
3429
+ "Έχουμε έναν λεπτομερή οδηγό για να βοηθήσουμε στην προσαρμογή των "
3430
+ "προσαρμοσμένων ιστότοπων."
3431
+
3432
+ #: views/admin/support/contents.php:40 views/installer/steps/finish.php:45
3433
+ msgctxt "(Admin)"
3434
+ msgid "Need help?"
3435
+ msgstr "Χρειάζεστε βοήθεια;"
3436
+
3437
+ #: views/admin/support/contents.php:46 views/installer/steps/finish.php:51
3438
+ #, fuzzy
3439
+ #| msgctxt "(Admin)"
3440
+ #| msgid "Submit a support request"
3441
+ msgctxt "(Admin)"
3442
+ msgid "Submit a support request"
3443
+ msgstr "Υποβάλετε ένα αίτημα υποστήριξης"
3444
+
3445
+ #: views/admin/support/contents.php:49 views/installer/steps/finish.php:54
3446
+ #, fuzzy
3447
+ #| msgctxt "(Admin)"
3448
+ #| msgid ""
3449
+ #| "Found a bug or have a question about the plugin? Submit a support request "
3450
+ #| "and we’ll get right on it!"
3451
+ msgctxt "(Admin)"
3452
+ msgid ""
3453
+ "Found a bug or have a question about the plugin? Submit a support request "
3454
+ "and we’ll get right on it!"
3455
+ msgstr ""
3456
+ "Βρήκατε ένα σφάλμα ή έχετε κάποια ερώτηση σχετικά με το plugin; Υποβάλετε "
3457
+ "ένα αίτημα υποστήριξης και θα το πάμε σωστά!"
3458
+
3459
+ #: views/admin/support/contents.php:55 views/installer/steps/finish.php:60
3460
+ #, fuzzy
3461
+ #| msgctxt "(Admin)"
3462
+ #| msgid "Request a consultation"
3463
+ msgctxt "(Admin)"
3464
+ msgid "Request a consultation"
3465
+ msgstr "Αίτηση διαβούλευσης"
3466
+
3467
+ #: views/admin/support/contents.php:58 views/installer/steps/finish.php:63
3468
+ #, fuzzy
3469
+ #| msgctxt "(Admin)"
3470
+ #| msgid "Need assistance in making your site compliant? We can help!"
3471
+ msgctxt "(Admin)"
3472
+ msgid "Need assistance in making your site compliant? We can help!"
3473
+ msgstr ""
3474
+ "Χρειάζεστε βοήθεια σχετικά με τη συμμόρφωση του ιστοτόπου σας; Μπορούμε να "
3475
+ "βοηθήσουμε!"
3476
+
3477
+ #: views/admin/wizard-buttons.php:2
3478
+ msgctxt "(Admin)"
3479
+ msgid "Restart setup wizard"
3480
+ msgstr "Οδηγός Eγκατάστασης"
3481
+
3482
+ #: views/email/action-export.php:8 views/email/action-forget.php:12
3483
+ #, fuzzy
3484
+ #| msgctxt "(Admin)"
3485
+ #| msgid ""
3486
+ #| "This email is just for your information. You don't need to take any action"
3487
+ msgctxt "(Admin)"
3488
+ msgid ""
3489
+ "This email is just for your information. You don't need to take any action"
3490
+ msgstr ""
3491
+ "Αυτό το email είναι μόνο για τις πληροφορίες σας. Δεν χρειάζεται να προβείτε "
3492
+ "σε καμία ενέργεια"
3493
+
3494
+ #: views/email/action-forget.php:8
3495
+ #, fuzzy
3496
+ #| msgctxt "(Admin)"
3497
+ #| msgid "The data subject had a user account on your website."
3498
+ msgctxt "(Admin)"
3499
+ msgid "The data subject had a user account on your website."
3500
+ msgstr ""
3501
+ "Το υποκείμενο των δεδομένων είχε ένα λογαριασμό χρήστη στην ιστοσελίδα σας."
3502
+
3503
+ #: views/email/identify-data-subject.php:2
3504
+ msgid "Someone has requested access to your data on"
3505
+ msgstr "Κάποιος έχει ζητήσει πρόσβαση στα δεδομένα σας στο"
3506
+
3507
+ #: views/email/identify-data-subject.php:3
3508
+ msgid "If this was a mistake, just ignore this email and nothing will happen."
3509
+ msgstr ""
3510
+ "Εάν αυτό ήταν λάθος, απλά αγνοήστε αυτό το μήνυμα ηλεκτρονικού ταχυδρομείου "
3511
+ "και τίποτα δεν θα συμβεί."
3512
+
3513
+ #: views/email/identify-data-subject.php:4
3514
+ msgid "To manage your data, visit the following address:"
3515
+ msgstr ""
3516
+ "Για να διαχειριστείτε τα δεδομένα σας, επισκεφθείτε την ακόλουθη διεύθυνση:"
3517
+
3518
+ #: views/email/identify-data-subject.php:10
3519
+ msgid "This link is valid for 15 minutes."
3520
+ msgstr "Αυτός ο σύνδεσμος ισχύει για 15 λεπτά."
3521
+
3522
+ #: views/email/no-data.php:2
3523
+ msgid "Someone has requested information about your personal data on"
3524
+ msgstr ""
3525
+ "Κάποιος έχει ζητήσει πληροφορίες σχετικά με τα προσωπικά σας δεδομένα στο"
3526
+
3527
+ #: views/email/no-data.php:3
3528
+ msgid "None of your personal data is stored on"
3529
+ msgstr "Κανένα από τα προσωπικά σας δεδομένα δεν αποθηκεύεται στο"
3530
+
3531
+ #: views/email/no-data.php:5
3532
+ msgid ""
3533
+ "If this was a mistake or you did not request this email, just ignore it and "
3534
+ "nothing will happen."
3535
+ msgstr ""
3536
+ "Εάν αυτό ήταν λάθος ή δεν ζητήσατε αυτό το μήνυμα ηλεκτρονικού ταχυδρομείου, "
3537
+ "απλώς το αγνοήστε και δεν θα συμβεί τίποτα."
3538
+
3539
+ #: views/email/request-export.php:13 views/email/request-forget.php:13
3540
+ msgctxt "(Admin)"
3541
+ msgid "As a reminder: according to GDPR, you have 30 days to comply."
3542
+ msgstr ""
3543
+ "Ως μια υπενθύμιση: σύμφωνα με το GDPR, έχετε 30 ημέρες για να συμμορφωθεί."
3544
+
3545
+ #: views/global/delete-action.php:2
3546
+ #, fuzzy
3547
+ #| msgctxt "(Admin)"
3548
+ #| msgid "Automatically anonymize data"
3549
+ msgctxt "(Admin)"
3550
+ msgid "Automatically anonymize data"
3551
+ msgstr "Αυτόματη ανώνυμη επεξεργασία δεδομένων"
3552
+
3553
+ #: views/global/delete-action.php:5
3554
+ #, fuzzy
3555
+ #| msgctxt "(Admin)"
3556
+ #| msgid "Automatically delete data"
3557
+ msgctxt "(Admin)"
3558
+ msgid "Automatically delete data"
3559
+ msgstr "Αυτόματη διαγραφή δεδομένων"
3560
+
3561
+ #: views/global/delete-action.php:9
3562
+ #, fuzzy
3563
+ #| msgctxt "(Admin)"
3564
+ #| msgid "Automatically anonymize data and notify me via email"
3565
+ msgctxt "(Admin)"
3566
+ msgid "Automatically anonymize data and notify me via email"
3567
+ msgstr "Ανωνυμία δεδομένων αυτόματα και να ειδοποιούμαι μέσω e-mail"
3568
+
3569
+ #: views/global/delete-action.php:13
3570
+ #, fuzzy
3571
+ #| msgctxt "(Admin)"
3572
+ #| msgid "Automatically delete data and notify me via email"
3573
+ msgctxt "(Admin)"
3574
+ msgid "Automatically delete data and notify me via email"
3575
+ msgstr "Αυτόματη διαγραφή δεδομένων και να ειδοποιούμαι μέσω e-mail"
3576
+
3577
+ #: views/global/delete-action.php:16 views/global/export-action.php:10
3578
+ #, fuzzy
3579
+ #| msgctxt "(Admin)"
3580
+ #| msgid "Only notify me via email"
3581
+ msgctxt "(Admin)"
3582
+ msgid "Only notify me via email"
3583
+ msgstr "Να ειδοποιούμαι μόνο μέσω ηλεκτρονικού ταχυδρομείου"
3584
+
3585
+ #: views/global/export-action.php:2
3586
+ #, fuzzy
3587
+ #| msgctxt "(Admin)"
3588
+ #| msgid "Automatically download data"
3589
+ msgctxt "(Admin)"
3590
+ msgid "Automatically download data"
3591
+ msgstr "Αυτόματη λήψη δεδομένων"
3592
+
3593
+ #: views/global/export-action.php:6
3594
+ #, fuzzy
3595
+ #| msgctxt "(Admin)"
3596
+ #| msgid "Automatically download data and notify me via email"
3597
+ msgctxt "(Admin)"
3598
+ msgid "Automatically download data and notify me via email"
3599
+ msgstr "Αυτόματη λήψη δεδομένων και να ειδοποιούμαι μέσω e-mail"
3600
+
3601
+ #: views/global/position-action.php:2
3602
+ #, fuzzy
3603
+ msgctxt "(Admin)"
3604
+ msgid "Banner bottom"
3605
+ msgstr "Κάτω μέρος banner"
3606
+
3607
+ #: views/global/position-action.php:5
3608
+ #, fuzzy
3609
+ msgctxt "(Admin)"
3610
+ msgid "Floating left"
3611
+ msgstr "Αιωρούμενο αριστερό"
3612
+
3613
+ #: views/global/position-action.php:8
3614
+ #, fuzzy
3615
+ msgctxt "(Admin)"
3616
+ msgid "Floating Right"
3617
+ msgstr "Αιωρούμενο δικαίωμα"
3618
+
3619
+ #: views/global/position-action.php:11
3620
+ #, fuzzy
3621
+ msgctxt "(Admin)"
3622
+ msgid "Banner top"
3623
+ msgstr "Επάνω μέρος banner"
3624
+
3625
+ #: views/global/theme-action.php:2
3626
+ msgctxt "(Admin)"
3627
+ msgid "Default"
3628
+ msgstr "Προεπιλογή"
3629
+
3630
+ #: views/global/theme-action.php:5
3631
+ msgctxt "(Admin)"
3632
+ msgid "Classic"
3633
+ msgstr "Κλασικό"
3634
+
3635
+ #: views/global/theme-action.php:8
3636
+ #, fuzzy
3637
+ msgctxt "(Admin)"
3638
+ msgid "Edgeless"
3639
+ msgstr "Χωρίς άκρες"
3640
+
3641
+ #: views/installer/continue-notice.php:2
3642
+ #, fuzzy
3643
+ #| msgctxt "(Admin)"
3644
+ #| msgid "The The GDPR Framework setup has not been finalized yet."
3645
+ msgctxt "(Admin)"
3646
+ msgid "The The GDPR Framework setup has not been finalized yet."
3647
+ msgstr "Η ρύθμιση του πλαισίου GDPR δεν έχει οριστικοποιηθεί ακόμα."
3648
+
3649
+ #: views/installer/continue-notice.php:3
3650
+ #, fuzzy
3651
+ #| msgctxt "(Admin)"
3652
+ #| msgid "You can continue the setup at any time."
3653
+ msgctxt "(Admin)"
3654
+ msgid "You can continue the setup at any time."
3655
+ msgstr "Μπορείτε να συνεχίσετε τη ρύθμιση οποιαδήποτε στιγμή."
3656
+
3657
+ #: views/installer/continue-notice.php:6
3658
+ #, fuzzy
3659
+ #| msgctxt "(Admin)"
3660
+ #| msgid "Continue the setup wizard"
3661
+ msgctxt "(Admin)"
3662
+ msgid "Continue the setup wizard"
3663
+ msgstr "Συνεχίστε τον οδηγό ρύθμισης"
3664
+
3665
+ #: views/installer/continue-notice.php:9
3666
+ msgctxt "(Admin)"
3667
+ msgid "Hide this message"
3668
+ msgstr "Κρύψε αυτό το μήνυμα"
3669
+
3670
+ #: views/installer/footer.php:7
3671
+ msgid "Back"
3672
+ msgstr "Πίσω"
3673
+
3674
+ #: views/installer/header.php:7
3675
+ #, fuzzy
3676
+ #| msgctxt "(Admin)"
3677
+ #| msgid "WordPress GDPR &rsaquo; Error"
3678
+ msgctxt "(Admin)"
3679
+ msgid "WordPress GDPR &rsaquo; Setup Wizard"
3680
+ msgstr "WordPress GDPR & rsaquo; Λάθος"
3681
+
3682
+ #: views/installer/header.php:23
3683
+ #, fuzzy
3684
+ #| msgctxt "(Admin)"
3685
+ #| msgid "The GDPR Framework"
3686
+ msgctxt "(Admin)"
3687
+ msgid "The GDPR Framework"
3688
+ msgstr "Το πλαίσιο GDPR"
3689
+
3690
+ #: views/installer/header.php:26
3691
+ #, fuzzy
3692
+ #| msgctxt "(Admin)"
3693
+ #| msgid "I need help"
3694
+ msgctxt "(Admin)"
3695
+ msgid "I need help"
3696
+ msgstr "Χρειάζομαι βοήθεια"
3697
+
3698
+ #: views/installer/header.php:29
3699
+ msgctxt "(Admin)"
3700
+ msgid "Developer Docs"
3701
+ msgstr "Έγγραφα για developers"
3702
+
3703
+ #: views/installer/header.php:36
3704
+ msgctxt "(Admin)"
3705
+ msgid "Configuration"
3706
+ msgstr "Παραμετροποίηση"
3707
+
3708
+ #: views/installer/header.php:46
3709
+ msgctxt "(Admin)"
3710
+ msgid "Forms & Consent"
3711
+ msgstr "Έντυπα συγκατάθεσης"
3712
+
3713
+ #: views/installer/header.php:51
3714
+ msgctxt "(Admin)"
3715
+ msgid "Integrations"
3716
+ msgstr "Ενσωματώσεις"
3717
+
3718
+ #: views/installer/privacy-safe-notice.php:3
3719
+ #, fuzzy
3720
+ msgctxt "(Admin)"
3721
+ msgid ""
3722
+ "Strengthen your reputation. Privacy safe gives your customers total control "
3723
+ "of their private information. The privacy safe seal assures your new "
3724
+ "customers that your business is in compliance with new privacy laws and "
3725
+ "regulations. For the privacy safe seal will verify that GDPR Framework "
3726
+ "plugin is installed."
3727
+ msgstr ""
3728
+ "Ενισχύστε τη φήμη σας. Το χρηματοκιβώτιο απορρήτου δίνει στους πελάτες σας "
3729
+ "τον πλήρη έλεγχο των προσωπικών τους πληροφοριών. Η σφραγίδα ασφαλείας "
3730
+ "απορρήτου διαβεβαιώνει τους νέους πελάτες σας ότι η επιχείρησή σας "
3731
+ "συμμορφώνεται με τους νέους νόμους και κανονισμούς περί απορρήτου. Για την "
3732
+ "ασφαλή σφραγίδα απορρήτου θα επαληθεύσει ότι το πρόσθετο GDPR Framework "
3733
+ "είναι εγκατεστημένο."
3734
+
3735
+ #: views/installer/privacy-safe-notice.php:9
3736
+ msgctxt "(Admin)"
3737
+ msgid "Learn More"
3738
+ msgstr "Μάθετε περισσότερα"
3739
+
3740
+ #: views/installer/privacy-safe-notice.php:12
3741
+ msgctxt "(Admin)"
3742
+ msgid "Maybe Later"
3743
+ msgstr "Ίσως αργότερα"
3744
+
3745
+ #: views/installer/steps/configuration-settings.php:23
3746
+ #: views/installer/steps/configuration-settings.php:73
3747
+ msgctxt "(Admin)"
3748
+ msgid "Enter the email address to notify"
3749
+ msgstr "Εισάγετε τη διεύθυνση email για να κοινοποίηση"
3750
+
3751
+ #: views/installer/steps/disclaimer.php:21
3752
+ msgctxt "(Admin)"
3753
+ msgid "I accept"
3754
+ msgstr "Συμφωνώ"
3755
+
3756
+ #: views/installer/welcome-notice.php:2
3757
+ #, fuzzy
3758
+ #| msgctxt "(Admin)"
3759
+ #| msgid "The The GDPR Framework setup has not been finalized yet."
3760
+ msgctxt "(Admin)"
3761
+ msgid "The GDPR Framework has not been set up yet. Would you like to do that?"
3762
+ msgstr "Η ρύθμιση του πλαισίου GDPR δεν έχει οριστικοποιηθεί ακόμα."
3763
+
3764
+ #: views/installer/welcome-notice.php:3
3765
+ #, fuzzy
3766
+ msgctxt "(Admin)"
3767
+ msgid "Our setup wizard will guide you through the process."
3768
+ msgstr "Ο οδηγός εγκατάστασης θα σας καθοδηγήσει στη διαδικασία."
3769
+
3770
+ #: views/installer/welcome-notice.php:4
3771
+ #, fuzzy
3772
+ msgctxt "(Admin)"
3773
+ msgid "You can also configure the plugin manually by going to"
3774
+ msgstr "Μπορείτε επίσης να ρυθμίσετε το πρόσθετο με μη αυτόματο τρόπο"
3775
+
3776
+ #: views/installer/welcome-notice.php:5
3777
+ msgctxt "(Admin)"
3778
+ msgid "Tools"
3779
+ msgstr "Εργαλεία"
3780
+
3781
+ #: views/installer/welcome-notice.php:10
3782
+ #, fuzzy
3783
+ #| msgctxt "(Admin)"
3784
+ #| msgid "Run the setup wizard"
3785
+ msgctxt "(Admin)"
3786
+ msgid "Run the setup wizard"
3787
+ msgstr "Εκτελέστε τον οδηγό εγκατάστασης"
3788
+
3789
+ #: views/installer/welcome-notice.php:14
3790
+ msgctxt "(Admin)"
3791
+ msgid "Auto-install pages"
3792
+ msgstr "Αυτόματη εγκατάσταση σελίδων"
3793
+
3794
+ #: views/installer/welcome-notice.php:18
3795
+ #, fuzzy
3796
+ #| msgctxt "(Admin)"
3797
+ #| msgid "Skip and install manually"
3798
+ msgctxt "(Admin)"
3799
+ msgid "Skip and install manually"
3800
+ msgstr "Χειροκίνητη εγκατάσταση"
3801
+
3802
+ #: views/modules/contact-form-7/form-privacy-tab.php:10
3803
+ #, fuzzy
3804
+ msgctxt "(Admin)"
3805
+ msgid ""
3806
+ "Include the entries of this form when downloading or deleting a data "
3807
+ "subject's data."
3808
+ msgstr ""
3809
+ "Συμπεριλάβετε τις καταχωρήσεις αυτής της φόρμας κατά τη λήψη ή τη διαγραφή "
3810
+ "των δεδομένων ενός υποκειμένου των δεδομένων."
3811
+
3812
+ #: views/modules/contact-form-7/form-privacy-tab.php:18
3813
+ #, fuzzy
3814
+ msgctxt "(Admin)"
3815
+ msgid ""
3816
+ "Select the mail-tag of the sender's email field (for example, your-email)."
3817
+ msgstr ""
3818
+ "Επιλέξτε την ετικέτα αλληλογραφίας του πεδίου ηλεκτρονικού ταχυδρομείου του "
3819
+ "αποστολέα (για παράδειγμα, το email σας)."
3820
+
3821
+ #: views/modules/contact-form-7/generator-privacy.php:6
3822
+ #, fuzzy
3823
+ #| msgctxt "(Admin)"
3824
+ #| msgid ""
3825
+ #| "This tag generates the default text for Terms & Conditions and/or Privacy "
3826
+ #| "Policy checkbox."
3827
+ msgctxt "(Admin)"
3828
+ msgid ""
3829
+ "This tag generates the default text for Terms & Conditions and/or Privacy "
3830
+ "Policy checkbox."
3831
+ msgstr ""
3832
+ "Αυτή η ετικέτα δημιουργεί το προεπιλεγμένο κείμενο για & όροι ή/και πολιτική "
3833
+ "προστασίας προσωπικών δεδομένων το πλαίσιο ελέγχου."
3834
+
3835
+ #: views/modules/contact-form-7/generator-privacy.php:15
3836
+ msgid "Insert"
3837
+ msgstr "Εισάγετε"
3838
+
3839
+ #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:3
3840
+ #: views/privacy-tools/form-consent.php:2
3841
+ msgid "Consent"
3842
+ msgstr "Συγκατάθεση"
3843
+
3844
+ #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:6
3845
+ #: views/privacy-tools/form-consent.php:6
3846
+ msgid "Here you can withdraw any consents you have given."
3847
+ msgstr "Εδώ μπορείτε να αποσύρετε τυχόν συγκαταθέσεις που έχετε δώσει."
3848
+
3849
+ #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:8
3850
+ msgid "Consents"
3851
+ msgstr "Συναινέσεις"
3852
+
3853
+ #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:23
3854
+ #: views/privacy-tools/form-consent.php:24
3855
+ msgid "Withdraw"
3856
+ msgstr "Αποσύρω"
3857
+
3858
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:5
3859
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:5
3860
+ #, fuzzy
3861
+ #| msgctxt "(Admin)"
3862
+ #| msgid "Delete this user and all data"
3863
+ msgctxt "(Admin)"
3864
+ msgid "Delete this user and all data"
3865
+ msgstr "Διαγραφή αυτού του χρήστη και όλα τα δεδομένα"
3866
+
3867
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:11
3868
+ msgctxt "(Admin)"
3869
+ msgid "Delete my data"
3870
+ msgstr "Διαγράψτε τα δεδομένα μου"
3871
+
3872
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:15
3873
+ #: views/privacy-tools/form-delete.php:4 views/privacy-tools/form-delete.php:24
3874
+ msgid "Delete all data we have gathered about you."
3875
+ msgstr "Διαγράψτε όλα τα δεδομένα που έχουμε συγκεντρώσει για εσάς."
3876
+
3877
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:16
3878
+ #: views/privacy-tools/form-delete.php:5 views/privacy-tools/form-delete.php:25
3879
+ msgid "If you have a user account on our site, it will also be deleted."
3880
+ msgstr ""
3881
+ "Εάν διαθέτετε λογαριασμό χρήστη στον ιστότοπό μας, θα διαγραφεί επίσης."
3882
+
3883
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:17
3884
+ #: views/privacy-tools/form-delete.php:6 views/privacy-tools/form-delete.php:26
3885
+ msgid "Be careful - this action is permanent and CANNOT be undone."
3886
+ msgstr "ΠΡΟΣΟΧΗ - αυτή η ενέργεια είναι μόνιμη και ΔΕΝ μπορεί να ακυρωθεί."
3887
+
3888
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:19
3889
+ #: views/privacy-tools/form-delete.php:8
3890
+ msgid "Note Regarding Order:"
3891
+ msgstr "Σημείωση σχετικά με την παραγγελία:"
3892
+
3893
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:20
3894
+ #: views/privacy-tools/form-delete.php:9
3895
+ msgid ""
3896
+ "Your order with status Processing will not get deleted until status change."
3897
+ msgstr ""
3898
+ "Η παραγγελία σας με την κατάσταση Επεξεργασία δεν θα διαγραφεί μέχρι την "
3899
+ "αλλαγή της κατάστασης."
3900
+
3901
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:21
3902
+ #: views/privacy-tools/form-delete.php:10
3903
+ msgid "Your order with status Completed will get anonymize."
3904
+ msgstr "Η παραγγελία σας με την κατάσταση Ολοκληρώθηκε θα γίνει ανώνυμη."
3905
+
3906
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:22
3907
+ #: views/privacy-tools/form-delete.php:11
3908
+ msgid "If you delete Completed order you can't apply for refund."
3909
+ msgstr ""
3910
+ "Εάν διαγράψετε την ολοκλήρωση της παραγγελίας, δεν μπορείτε να υποβάλετε "
3911
+ "αίτηση επιστροφής χρημάτων."
3912
+
3913
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:28
3914
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:23
3915
+ #, fuzzy
3916
+ #| msgctxt "(Admin)"
3917
+ #| msgid ""
3918
+ #| "You seem to have an administrator or equivalent role, so deleting/"
3919
+ #| "anonymizing via this page is disabled."
3920
+ msgctxt "(Admin)"
3921
+ msgid ""
3922
+ "You seem to have an administrator or equivalent role, so deleting/"
3923
+ "anonymizing via this page is disabled."
3924
+ msgstr ""
3925
+ "Φαίνεται ότι έχετε διαχειριστή ή ισοδύναμο ρόλο, οπότε η διαγραφή / "
3926
+ "ανωνύμιση μέσω αυτής της σελίδας είναι απενεργοποιημένη."
3927
+
3928
+ #: views/modules/wordpress-user/dashboard/form-export.php:7
3929
+ #: views/privacy-tools/form-export.php:1
3930
+ msgid "Download your data"
3931
+ msgstr "Κατεβάστε τα δεδομένα σας"
3932
+
3933
+ #: views/modules/wordpress-user/dashboard/form-export.php:12
3934
+ #: views/privacy-tools/form-export.php:13
3935
+ msgid "Download as table"
3936
+ msgstr "Κάντε λήψη ως πίνακας"
3937
+
3938
+ #: views/modules/wordpress-user/dashboard/form-export.php:15
3939
+ #: views/privacy-tools/form-export.php:22
3940
+ msgid "Export as JSON"
3941
+ msgstr "Εξαγωγή ως JSON αρχειο"
3942
+
3943
+ #: views/modules/wordpress-user/dashboard/form-export.php:19
3944
+ #: views/privacy-tools/form-export.php:4
3945
+ msgid "You can download all your data formatted as a table for viewing."
3946
+ msgstr ""
3947
+ "Μπορείτε να κατεβάσετε όλα τα δεδομένα σας μορφοποιημένα ως πίνακα για "
3948
+ "προβολή."
3949
+
3950
+ #: views/modules/wordpress-user/dashboard/form-export.php:20
3951
+ #: views/privacy-tools/form-export.php:5
3952
+ msgid "Alternatively, you can export it in machine-readable JSON format."
3953
+ msgstr ""
3954
+ "Εναλλακτικά, μπορείτε να την εξαγάγετε σε μορφή JSON αναγνώσιμη από μηχανή."
3955
+
3956
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:11
3957
+ #, fuzzy
3958
+ #| msgctxt "(Admin)"
3959
+ #| msgid "Delete user and all data"
3960
+ msgctxt "(Admin)"
3961
+ msgid "Delete user and all data"
3962
+ msgstr "Διαγραφή χρήστη και όλα τα δεδομένα"
3963
+
3964
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:14
3965
+ #, fuzzy
3966
+ #| msgctxt "(Admin)"
3967
+ #| msgid "Anonymize user and all data"
3968
+ msgctxt "(Admin)"
3969
+ msgid "Anonymize user and all data"
3970
+ msgstr "Ανωνυμία χρήστη και όλα τα δεδομένα"
3971
+
3972
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:18
3973
+ msgctxt "gdpr-framework"
3974
+ msgid "Be careful - this action is permanent and CANNOT be undone."
3975
+ msgstr "ΠΡΟΣΟΧΗ - αυτή η ενέργεια είναι μόνιμη και ΔΕΝ μπορεί να ακυρωθεί."
3976
+
3977
+ #: views/modules/wordpress-user/dashboard/profile-page/header.php:2
3978
+ #, fuzzy
3979
+ #| msgctxt "(Admin)"
3980
+ #| msgid "GDPR Data"
3981
+ msgctxt "(Admin)"
3982
+ msgid "GDPR Data"
3983
+ msgstr "Δεδομένα GDPR"
3984
+
3985
+ #: views/modules/wordpress-user/dashboard/profile-page/header.php:6
3986
+ #, fuzzy
3987
+ #| msgctxt "(Admin)"
3988
+ #| msgid "This user has been anonymized."
3989
+ msgctxt "(Admin)"
3990
+ msgid "This user has been anonymized."
3991
+ msgstr "Αυτός ο χρήστης ήταν ανώνυμος."
3992
+
3993
+ #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:17
3994
+ #, fuzzy
3995
+ #| msgctxt "(Admin)"
3996
+ #| msgid "No consents given"
3997
+ msgctxt "(Admin)"
3998
+ msgid "No consents given"
3999
+ msgstr "Δεν δόθηκαν συναινέσεις"
4000
+
4001
+ #: views/modules/wordpress-user/dashboard/profile-page/user-logs.php:2
4002
+ #, fuzzy
4003
+ msgctxt "gdpr-framework"
4004
+ msgid "GDPR User logs"
4005
+ msgstr "Αρχεία καταγραφής χρηστών GDPR"
4006
+
4007
+ #: views/modules/wordpress-user/dashboard/profile-page/user-logs.php:8
4008
+ #, fuzzy
4009
+ msgctxt "gdpr-framework"
4010
+ msgid "S.no"
4011
+ msgstr "S.no"
4012
+
4013
+ #: views/modules/wordpress-user/dashboard/profile-page/user-logs.php:9
4014
+ msgctxt "gdpr-framework"
4015
+ msgid "User ID"
4016
+ msgstr "ID Χρήστη"
4017
+
4018
+ #: views/modules/wordpress-user/dashboard/profile-page/user-logs.php:10
4019
+ #, fuzzy
4020
+ msgctxt "gdpr-framework"
4021
+ msgid "User logs"
4022
+ msgstr "Αρχεία καταγραφής χρηστών"
4023
+
4024
+ #: views/modules/wordpress-user/dashboard/profile-page/user-logs.php:11
4025
+ #, fuzzy
4026
+ #| msgctxt "(Admin)"
4027
+ #| msgid "United States"
4028
+ msgctxt "gdpr-framework"
4029
+ msgid "Updated date"
4030
+ msgstr "Ηνωμένες Πολιτείες"
4031
+
4032
+ #: views/modules/wordpress-user/dashboard/profile-page/user-logs.php:50
4033
+ #, fuzzy
4034
+ msgctxt "gdpr-framework"
4035
+ msgid "No User Logs"
4036
+ msgstr "Δεν υπάρχουν αρχεία καταγραφής χρηστών"
4037
+
4038
+ #: views/privacy-tools/donotsell.php:14
4039
+ #, fuzzy
4040
+ #| msgid "Data removal request"
4041
+ msgid "Do Not Sell Request"
4042
+ msgstr "Αίτημα κατάργησης δεδομένων"
4043
+
4044
+ #: views/privacy-tools/donotsell.php:51
4045
+ #, fuzzy
4046
+ msgid "I agree to receive other communications from "
4047
+ msgstr "Συμφωνώ να λαμβάνω άλλες επικοινωνίες από "
4048
+
4049
+ #: views/privacy-tools/donotsell.php:61
4050
+ msgctxt "(Admin)"
4051
+ msgid "Send Request"
4052
+ msgstr "Στείλε Αίτημα"
4053
+
4054
+ #: views/privacy-tools/form-consent.php:9
4055
+ msgid "Consent types"
4056
+ msgstr "Τύποι συγκατάθεσης"
4057
+
4058
+ #: views/privacy-tools/form-delete.php:1
4059
+ #: views/privacy-tools/notice-admin-role.php:1
4060
+ msgid "Delete my user and data"
4061
+ msgstr "Διαγράψτε τον χρήστη και τα δεδομένα μου"
4062
+
4063
+ #: views/privacy-tools/form-delete.php:18
4064
+ #: views/privacy-tools/form-delete.php:30
4065
+ msgid "Delete my data"
4066
+ msgstr "Διαγράψτε τα δεδομένα μου"
4067
+
4068
+ #: views/privacy-tools/form-identify.php:8
4069
+ #, fuzzy
4070
+ msgid "Back to front page"
4071
+ msgstr "Επιστροφή στην πρώτη σελίδα"
4072
+
4073
+ #: views/privacy-tools/form-identify.php:14
4074
+ msgid "Please identify yourself via e-mail"
4075
+ msgstr "Προσδιορίστε τον εαυτό σας μέσω ηλεκτρονικού ταχυδρομείου"
4076
+
4077
+ #: views/privacy-tools/form-identify.php:17
4078
+ #: views/privacy-tools/form-identify.php:20
4079
+ msgid "Enter your email address"
4080
+ msgstr "Εισάγετε το email σας"
4081
+
4082
+ #: views/privacy-tools/form-identify.php:23
4083
+ msgid "Send email"
4084
+ msgstr "Αποστολή email"
4085
+
4086
+ #: views/privacy-tools/notice-admin-role.php:4
4087
+ #, fuzzy
4088
+ #| msgctxt "(Admin)"
4089
+ #| msgid "Data deletion is disabled for administrative accounts."
4090
+ msgctxt "(Admin)"
4091
+ msgid "Data deletion is disabled for administrative accounts."
4092
+ msgstr "Διαγραφή δεδομένων είναι απενεργοποιημένη για λογαριασμών διαχειριστή."
4093
+
4094
+ #: views/privacy-tools/notices.php:3
4095
+ msgid ""
4096
+ "We will send you an email with the link to access your data. Please check "
4097
+ "your spam folder as well!"
4098
+ msgstr ""
4099
+ "Θα σας στείλουμε ένα μήνυμα ηλεκτρονικού ταχυδρομείου με το σύνδεσμο για να "
4100
+ "έχετε πρόσβαση στα δεδομένα σας. Ελέγξτε επίσης το φάκελο spam σας!"
4101
+
4102
+ #: views/privacy-tools/notices.php:7
4103
+ msgid "The email you entered does not appear to be a valid email."
4104
+ msgstr "Το email που καταχωρίσατε δεν φαίνεται να είναι έγκυρο."
4105
+
4106
+ #: views/privacy-tools/notices.php:11
4107
+ msgid "Sorry - the link seems to have expired. Please try again!"
4108
+ msgstr ""
4109
+ "Λυπούμαστε - ο σύνδεσμος φαίνεται να έχει λήξει. ΠΑΡΑΚΑΛΩ προσπαθησε ξανα!"
4110
+
4111
+ #: views/privacy-tools/notices.php:23
4112
+ msgid "Your personal data has been removed!"
4113
+ msgstr "Τα προσωπικά σας δεδομένα έχουν αφαιρεθεί!"
4114
+
4115
+ #: views/privacy-tools/privacy-tools.php:5
4116
+ msgid "You are identified as"
4117
+ msgstr "Έχετε αναγνωριστεί ως"
4118
+
4119
+ #. Plugin Name of the plugin/theme
4120
+ #, fuzzy
4121
+ #| msgctxt "(Admin)"
4122
+ #| msgid "The GDPR Framework"
4123
+ msgid "The GDPR Framework"
4124
+ msgstr "Το πλαίσιο GDPR"
4125
+
4126
+ #. Plugin URI of the plugin/theme
4127
+ #, fuzzy
4128
+ msgid "https://www.data443.com/gdpr-framework/"
4129
+ msgstr "https://www.data443.com/gdpr-framework/"
4130
+
4131
+ #. Description of the plugin/theme
4132
+ #, fuzzy
4133
+ msgid ""
4134
+ "Tools to help make your website GDPR-compliant. Fully documented, extendable "
4135
+ "and developer-friendly."
4136
+ msgstr ""
4137
+ "Εργαλεία που θα σας βοηθήσουν να κάνετε τον ιστότοπό σας συμβατό με τον "
4138
+ "ΓΚΠΔ. Πλήρως τεκμηριωμένο, επεκτάσιμο και φιλικό προς τους προγραμματιστές."
4139
+
4140
+ #. Author of the plugin/theme
4141
+ #, fuzzy
4142
+ msgid "Data443"
4143
+ msgstr "Δεδομένα443 ΓΚΠΔ"
4144
+
4145
+ #. Author URI of the plugin/theme
4146
+ #, fuzzy
4147
+ msgid "https://www.data443.com/"
4148
+ msgstr "https://www.data443.com/"
4149
+
4150
+ #, php-format
4151
+ #~ msgid "%sERROR:%s You need to accept the privacy policy to post a comment."
4152
+ #~ msgstr ""
4153
+ #~ "%sERROR:%s Πρέπει να αποδεχτείτε την πολιτική απορρήτου για να "
4154
+ #~ "δημοσιεύσετε ένα σχόλιο."
4155
+
4156
+ #~ msgctxt "(Admin)"
4157
+ #~ msgid "Rest of the world"
4158
+ #~ msgstr "Υπόλοιπος κόσμος"
4159
+
4160
+ #~ msgctxt "(Admin)"
4161
+ #~ msgid ""
4162
+ #~ "Found a bug or problem with the plugin? Post in the wordpress.org support "
4163
+ #~ "forum."
4164
+ #~ msgstr ""
4165
+ #~ "Βρέθηκε ένα bug ή πρόβλημα με το plugin; Δημοσίευση στα φόρουμ "
4166
+ #~ "υποστήριξης της wordpress.org."
4167
+
4168
+ #~ msgctxt "(Admin)"
4169
+ #~ msgid ""
4170
+ #~ "Need development or legal assistance in making your site compliant? We "
4171
+ #~ "can help!"
4172
+ #~ msgstr ""
4173
+ #~ "Ανάγκη ανάπτυξης ή νομική βοήθεια στο να καταστεί συμβατό με το site σας; "
4174
+ #~ "Μπορούμε να σας βοηθήσουμε!"
4175
+
4176
+ #, php-format
4177
+ #~ msgid "I accept the %sTerms and Conditions%s and the %sPrivacy Policy%s"
4178
+ #~ msgstr "δέχομαι το %sΟροι και Προϋποθέσεις%s και το %sΠολιτική Απορρήτου%s"
4179
+
4180
+ #~ msgid "Manage consents"
4181
+ #~ msgstr "Διαχειριστείτε τις συγκαταθέσεις"
4182
+
4183
+ #~ msgid "Back to Privacy Tools"
4184
+ #~ msgstr "Πίσω στην επεξεργασία προσωπικών δεδομένων"
4185
+
4186
+ #~ msgid "Identify yourself!"
4187
+ #~ msgstr "Προσδιορίστε τον εαυτό σας!"
4188
+
4189
+ #~ msgctxt "(Admin)"
4190
+ #~ msgid "This page allows you to advance integration with ClassiDocs™"
4191
+ #~ msgstr ""
4192
+ #~ "Αυτή η σελίδα σάς επιτρέπει να προχωρήσετε στην ολοκλήρωση με το "
4193
+ #~ "ClassiDocs ™"
4194
+
4195
+ #~ msgctxt "(Admin)"
4196
+ #~ msgid "ClassiDocs Password"
4197
+ #~ msgstr "Κωδικός πρόσβασης ClassiDocs"
4198
+
4199
+ #~ msgctxt "(Admin)"
4200
+ #~ msgid "ClassiDocs Username"
4201
+ #~ msgstr "Όνομα χρήστη ClassiDocs"
4202
+
4203
+ #~ msgctxt "(Admin)"
4204
+ #~ msgid "Enable Response with related queries?"
4205
+ #~ msgstr "Ενεργοποίηση απάντησης με σχετικά ερωτήματα;"
4206
+
4207
+ #~ msgctxt "(Admin)"
4208
+ #~ msgid "Submit SAR request details?"
4209
+ #~ msgstr "Υποβολή στοιχείων αιτήματος SAR;"
4210
+
4211
+ #~ msgctxt "(Admin)"
4212
+ #~ msgid "Integrate with ClassiDocs?"
4213
+ #~ msgstr "Ενσωμάτωση με το ClassiDocs;"
4214
+
4215
+ #~ msgctxt "(Admin)"
4216
+ #~ msgid "Integration Settings"
4217
+ #~ msgstr "Ρυθμίσεις ολοκλήρωσης"
4218
+
4219
+ #~ msgctxt "(Admin)"
4220
+ #~ msgid "Advanced Integration"
4221
+ #~ msgstr "Προηγμένη ενοποίηση"
4222
+
4223
+ #~ msgctxt "(Admin)"
4224
+ #~ msgid "Sign up for free here"
4225
+ #~ msgstr "Εγγραφείτε δωρεάν εδώ"
4226
+
4227
+ #~ msgctxt "(Admin)"
4228
+ #~ msgid "Click Here"
4229
+ #~ msgstr "Κάντε κλικ ΕΔΩ"
4230
+
4231
+ #~ msgid "Previous Results"
4232
+ #~ msgstr "Προηγούμενα αποτελέσματα"
4233
+
4234
+ #~ msgid "Current Results"
4235
+ #~ msgstr "Τρέχοντα αποτελέσματα"
4236
+
4237
+ #~ msgid "Name"
4238
+ #~ msgstr "Ονομα"
4239
+
4240
+ #~ msgid "Path"
4241
+ #~ msgstr "Μονοπάτι"
4242
+
4243
+ #~ msgid "Workstation"
4244
+ #~ msgstr "Σταθμός εργασίας"
4245
+
4246
+ #~ msgid "Last Scan"
4247
+ #~ msgstr "Τελευταία σάρωση"
4248
+
4249
+ #~ msgid "No ClassiDocs data found!"
4250
+ #~ msgstr "Δεν βρέθηκαν δεδομένα ClassiDocs!"
4251
+
4252
+ #~ msgid "Cookies used on the website!"
4253
+ #~ msgstr "Τα cookies που χρησιμοποιούνται στην ιστοσελίδα!"
4254
+
4255
+ #~ msgctxt "(Admin)"
4256
+ #~ msgid ""
4257
+ #~ "In addition to DSAR tracking and management, Privacy Manager adds the "
4258
+ #~ "following features to your data protection compliance resources:"
4259
+ #~ msgstr ""
4260
+ #~ "Εκτός από την παρακολούθηση και διαχείριση DSAR, το Privacy Manager "
4261
+ #~ "προσθέτει τις ακόλουθες δυνατότητες στους πόρους σας για την προστασία "
4262
+ #~ "δεδομένων:"
4263
+
4264
+ #~ msgctxt "(Admin)"
4265
+ #~ msgid "Log and store ICO breach notifications"
4266
+ #~ msgstr "Καταγράψτε και αποθηκεύστε τις ειδοποιήσεις παραβίασης του ICO"
4267
+
4268
+ #~ msgctxt "(Admin)"
4269
+ #~ msgid "Keeps full record of all requests, ticketed and timeline"
4270
+ #~ msgstr ""
4271
+ #~ "Διατηρεί πλήρη καταγραφή όλων των αιτημάτων, των εισιτηρίων και του "
4272
+ #~ "χρονοδιαγράμματος"
4273
+
4274
+ #~ msgctxt "(Admin)"
4275
+ #~ msgid "Gap analysis and breach notifications"
4276
+ #~ msgstr "Ανάλυση κενών και κοινοποιήσεις παραβίασης"
4277
+
4278
+ #~ msgctxt "(Admin)"
4279
+ #~ msgid "In depth activity log with all GDPR, CCPA, etc actions evidenced"
4280
+ #~ msgstr ""
4281
+ #~ "Σε βάθος καταγραφής δραστηριότητας με όλες τις ενέργειες GDPR, CCPA, κλπ"
4282
+
4283
+ #~ msgctxt "(Admin)"
4284
+ #~ msgid "Highlights areas of concern and where you need to focus"
4285
+ #~ msgstr "Επισημαίνει τομείς ενδιαφέροντος και όπου πρέπει να εστιάσετε"
4286
+
4287
+ #~ msgctxt "(Admin)"
4288
+ #~ msgid ""
4289
+ #~ "eLearning platform with access for all staff to ensure privacy regulation "
4290
+ #~ "compliance and obligations"
4291
+ #~ msgstr ""
4292
+ #~ "πλατφόρμα ηλεκτρονικής μάθησης με πρόσβαση για όλο το προσωπικό ώστε να "
4293
+ #~ "διασφαλιστεί η συμμόρφωση και οι υποχρεώσεις όσον αφορά την προστασία της "
4294
+ #~ "ιδιωτικής ζωής"
4295
+
4296
+ #~ msgctxt "(Admin)"
4297
+ #~ msgid "Tracks who accesses the system, when and why"
4298
+ #~ msgstr "Τραγούδια που έχουν πρόσβαση στο σύστημα, πότε και γιατί"
4299
+
4300
+ #~ msgctxt "(Admin)"
4301
+ #~ msgid ""
4302
+ #~ "Our system enables your business to demonstrate its obligations in "
4303
+ #~ "protecting your customer data, show understanding of your business "
4304
+ #~ "activities and deliver eLearning and online tests to employees, ensuring "
4305
+ #~ "everyone in your company understands your privacy compliance rules and "
4306
+ #~ "best practices to operate."
4307
+ #~ msgstr ""
4308
+ #~ "Το σύστημά μας επιτρέπει στην επιχείρησή σας να επιδείξει τις υποχρεώσεις "
4309
+ #~ "της όσον αφορά την προστασία των δεδομένων των πελατών σας, την κατανόηση "
4310
+ #~ "των επιχειρηματικών δραστηριοτήτων σας και την παροχή ηλεκτρονικών και "
4311
+ #~ "ηλεκτρονικών δοκιμών στους υπαλλήλους, εξασφαλίζοντας ότι όλοι στην "
4312
+ #~ "εταιρεία σας κατανοούν τους κανόνες συμμόρφωσης και τις βέλτιστες "
4313
+ #~ "πρακτικές."
4314
+
4315
+ #~ msgctxt "(Admin)"
4316
+ #~ msgid "Enable WooCommerce data on GDPR tool"
4317
+ #~ msgstr "Ενεργοποιήστε τα δεδομένα του WooCommerce στο εργαλείο GDPR"
languages/gdpr-framework-en_CA.mo DELETED
Binary file
languages/gdpr-framework-en_CA.po DELETED
@@ -1,1907 +0,0 @@
1
- # SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) YEAR Codelight
3
- # This file is distributed under the same license as the The GDPR Framework package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
- #
6
- msgid ""
7
- msgstr ""
8
- "Project-Id-Version: The GDPR Framework 1.0\n"
9
- "Report-Msgid-Bugs-To: gdpr@codelight.eu\n"
10
- "POT-Creation-Date: 2018-05-22 15:47+0300\n"
11
- "PO-Revision-Date: 2019-09-19 12:39+0530\n"
12
- "Last-Translator: \n"
13
- "Language-Team: \n"
14
- "MIME-Version: 1.0\n"
15
- "Content-Type: text/plain; charset=UTF-8\n"
16
- "Content-Transfer-Encoding: 8bit\n"
17
- "X-Generator: Poedit 1.5.7\n"
18
-
19
- #: gdpr-framework.php:28
20
- msgctxt "(Admin)"
21
- msgid "WordPress GDPR &rsaquo; Error"
22
- msgstr "WordPress GDPR &rsaquo; Error"
23
-
24
- #: gdpr-framework.php:38
25
- msgctxt "(Admin)"
26
- msgid "You must be using PHP 5.6.0 or greater."
27
- msgstr "You must be using PHP 5.6.0 or greater."
28
-
29
- #: gdpr-framework.php:39
30
- msgctxt "(Admin)"
31
- msgid "Invalid PHP version"
32
- msgstr "Invalid PHP version"
33
-
34
- #: gdpr-framework.php:48
35
- msgctxt "(Admin)"
36
- msgid "You must be using WordPress 4.3.0 or greater."
37
- msgstr "You must be using WordPress 4.3.0 or greater."
38
-
39
- #: gdpr-framework.php:49
40
- msgctxt "(Admin)"
41
- msgid "Invalid WordPress version"
42
- msgstr "Invalid WordPress version"
43
-
44
- #: gdpr-framework.php:61
45
- msgctxt "(Admin)"
46
- msgid ""
47
- "You appear to be running a development version of GDPR. You must run "
48
- "<code>composer install</code> from the plugin directory."
49
- msgstr ""
50
- "You appear to be running a development version of GDPR. You must run "
51
- "<code>composer install</code> from the plugin directory."
52
-
53
- #: gdpr-framework.php:66
54
- msgctxt "(Admin)"
55
- msgid "Autoloader not found."
56
- msgstr "Autoloader not found."
57
-
58
- #: gdpr-framework.php:86 src/Updater/Updater.php:40
59
- msgctxt "(Admin)"
60
- msgid "Anonymous"
61
- msgstr "Anonymous"
62
-
63
- #: src/Admin/AdminTab.php:115
64
- msgctxt "(Admin)"
65
- msgid "Save"
66
- msgstr "Save"
67
-
68
- #: src/Admin/AdminTab.php:151
69
- msgctxt "(Admin)"
70
- msgid "Policy generated!"
71
- msgstr "Policy generated!"
72
-
73
- #: src/Admin/AdminTabGeneral.php:11
74
- msgctxt "(Admin)"
75
- msgid "General"
76
- msgstr "General"
77
-
78
- #: src/Admin/AdminTabGeneral.php:38
79
- msgctxt "(Admin)"
80
- msgid "General Settings"
81
- msgstr "General Settings"
82
-
83
- #: src/Admin/AdminTabGeneral.php:43
84
- msgctxt "(Admin)"
85
- msgid "Enable Privacy Tools"
86
- msgstr "Enable Privacy Tools"
87
-
88
- #: src/Admin/AdminTabGeneral.php:53
89
- msgctxt "(Admin)"
90
- msgid "Pages"
91
- msgstr "Pages"
92
-
93
- #: src/Admin/AdminTabGeneral.php:58 src/Admin/WordpressAdmin.php:151
94
- msgctxt "(Admin)"
95
- msgid "Privacy Tools Page"
96
- msgstr "Privacy Tools Page"
97
-
98
- #: src/Admin/AdminTabGeneral.php:65 src/Admin/WordpressAdmin.php:147
99
- msgctxt "(Admin)"
100
- msgid "Privacy Policy Page"
101
- msgstr "Privacy Policy Page"
102
-
103
- #: src/Admin/AdminTabGeneral.php:72
104
- msgctxt "(Admin)"
105
- msgid "Terms & Conditions Page"
106
- msgstr "Terms & Conditions Page"
107
-
108
- #: src/Admin/AdminTabGeneral.php:82
109
- msgctxt "(Admin)"
110
- msgid "View & Export Data"
111
- msgstr "View & Export Data"
112
-
113
- #: src/Admin/AdminTabGeneral.php:87
114
- msgctxt "(Admin)"
115
- msgid "Export action"
116
- msgstr "Export action"
117
-
118
- #: src/Admin/AdminTabGeneral.php:94 src/Admin/AdminTabGeneral.php:133
119
- msgctxt "(Admin)"
120
- msgid "Email to notify"
121
- msgstr "Email to notify"
122
-
123
- #: src/Admin/AdminTabGeneral.php:105
124
- msgctxt "(Admin)"
125
- msgid "Delete & Anonymize Data"
126
- msgstr "Delete & Anonymize Data"
127
-
128
- #: src/Admin/AdminTabGeneral.php:110
129
- msgctxt "(Admin)"
130
- msgid "Delete action"
131
- msgstr "Delete action"
132
-
133
- #: src/Admin/AdminTabGeneral.php:117
134
- msgctxt "(Admin)"
135
- msgid "Delete or reassign content?"
136
- msgstr "Delete or reassign content?"
137
-
138
- #: src/Admin/AdminTabGeneral.php:125
139
- msgctxt "(Admin)"
140
- msgid "Reassign content to"
141
- msgstr "Reassign content to"
142
-
143
- #: src/Admin/AdminTabGeneral.php:145
144
- msgctxt "(Admin)"
145
- msgid "Styling"
146
- msgstr "Styling"
147
-
148
- #: src/Admin/AdminTabGeneral.php:150
149
- msgctxt "(Admin)"
150
- msgid "Enable basic styling on Privacy Tools page"
151
- msgstr "Enable basic styling on Privacy Tools page"
152
-
153
- #: src/Admin/AdminTabGeneral.php:162
154
- msgctxt "(Admin)"
155
- msgid "Compatibility"
156
- msgstr "Compatibility"
157
-
158
- #: src/Admin/AdminTabGeneral.php:167
159
- msgctxt "(Admin)"
160
- msgid "Enable automatic theme compatibility"
161
- msgstr "Enable automatic theme compatibility"
162
-
163
- #: src/Admin/AdminTabGeneral.php:184 src/Admin/AdminTabGeneral.php:200
164
- #: src/Admin/AdminTabGeneral.php:213 src/Admin/AdminTabGeneral.php:252
165
- #: views/installer/steps/configuration-settings.php:62
166
- msgctxt "(Admin)"
167
- msgid "&mdash; Select &mdash;"
168
- msgstr "&mdash; Select &mdash;"
169
-
170
- #: src/Admin/WordpressAdmin.php:65
171
- msgctxt "(Admin)"
172
- msgid "Privacy & GDPR Settings"
173
- msgstr "Privacy & GDPR Settings"
174
-
175
- #: src/Admin/WordpressAdmin.php:66
176
- msgctxt "(Admin)"
177
- msgid "Privacy"
178
- msgstr "Privacy"
179
-
180
- #: src/Components/Consent/AdminTabConsent.php:30
181
- #: src/Components/Consent/AdminTabConsent.php:49
182
- msgctxt "(Admin)"
183
- msgid "Consent"
184
- msgstr "Consent"
185
-
186
- #: src/Components/Consent/AdminTabConsent.php:157
187
- msgctxt "(Admin)"
188
- msgid "Consent slug is a required field!"
189
- msgstr "Consent slug is a required field!"
190
-
191
- #: src/Components/Consent/AdminTabConsent.php:162
192
- msgctxt "(Admin)"
193
- msgid ""
194
- "You may only use alphanumeric characters, dash and underscore in the consent "
195
- "slug field."
196
- msgstr ""
197
- "You may only use alphanumeric characters, dash and underscore in the consent "
198
- "slug field."
199
-
200
- #: src/Components/Consent/AdminTabConsent.php:167
201
- msgctxt "(Admin)"
202
- msgid "Consent title is a required field!"
203
- msgstr "Consent title is a required field!"
204
-
205
- #: src/Components/Consent/AdminTabConsent.php:179
206
- msgid ""
207
- "To use this website, you accepted our Privacy Policy. If you wish to "
208
- "withdraw your acceptance, please use the \"Delete my data\" button below."
209
- msgstr ""
210
- "To use this website, you accepted our Privacy Policy. If you wish to "
211
- "withdraw your acceptance, please use the \"Delete my data\" button below."
212
-
213
- #: src/Components/Consent/ConsentManager.php:46
214
- #: views/modules/contact-form-7/content-privacy.php:2
215
- #: views/modules/wordpress-comments/terms-checkbox.php:14
216
- #: views/modules/wordpress-user/registration-terms-checkbox.php:15
217
- #, php-format
218
- msgid "I accept the %sPrivacy Policy%s"
219
- msgstr "I accept the %sPrivacy Policy%s"
220
-
221
- #: src/Components/Consent/ConsentManager.php:50
222
- #: src/Components/Consent/ConsentManager.php:69
223
- msgctxt "(Admin)"
224
- msgid ""
225
- "This consent is not visible by default. If someone wishes to withdraw it, "
226
- "they should simply request to delete all their data."
227
- msgstr ""
228
- "This consent is not visible by default. If someone wishes to withdraw it, "
229
- "they should simply request to delete all their data."
230
-
231
- #: src/Components/Consent/ConsentManager.php:65
232
- #, php-format
233
- msgid "I accept the %sTerms & Conditions%s"
234
- msgstr "I accept the %sTerms & Conditions%s"
235
-
236
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:19
237
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:61
238
- #: views/admin/privacy-policy/generated.php:1 views/installer/header.php:41
239
- msgctxt "(Admin)"
240
- msgid "Privacy Policy"
241
- msgstr "Privacy policy"
242
-
243
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:70
244
- msgctxt "(Admin)"
245
- msgid "Company information"
246
- msgstr "Company information"
247
-
248
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:75
249
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:209
250
- msgctxt "(Admin)"
251
- msgid "Company Name"
252
- msgstr "Company Name"
253
-
254
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:82
255
- msgctxt "(Admin)"
256
- msgid "Company Email"
257
- msgstr "Company Email"
258
-
259
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:89
260
- msgctxt "(Admin)"
261
- msgid "Company Location"
262
- msgstr "Company Location"
263
-
264
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:105
265
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:245
266
- msgctxt "(Admin)"
267
- msgid "Representative Contact Name"
268
- msgstr "Representative Contact Name"
269
-
270
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:112
271
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:252
272
- msgctxt "(Admin)"
273
- msgid "Representative Contact Email"
274
- msgstr "Representative Contact Email"
275
-
276
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:119
277
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:259
278
- msgctxt "(Admin)"
279
- msgid "Representative Contact Phone"
280
- msgstr "Representative Contact Phone"
281
-
282
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:135
283
- msgctxt "(Admin)"
284
- msgid "Data Protection Authority"
285
- msgstr "Data Protection Authority"
286
-
287
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:141
288
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:286
289
- msgctxt "(Admin)"
290
- msgid "Data Protection Authority Website"
291
- msgstr "Data Protection Authority Website"
292
-
293
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:148
294
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:293
295
- msgctxt "(Admin)"
296
- msgid "Data Protection Authority Email"
297
- msgstr "Data Protection Authority Email"
298
-
299
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:155
300
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:300
301
- msgctxt "(Admin)"
302
- msgid "Data Protection Authority Phone"
303
- msgstr "Data Protection Authority Phone"
304
-
305
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:165
306
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:175
307
- msgctxt "(Admin)"
308
- msgid "Data Protection Officer"
309
- msgstr "Data protection officer"
310
-
311
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:168
312
- msgctxt "(Admin)"
313
- msgid "Knowledge base: Do I need to appoint a Data Protection Officer?"
314
- msgstr "Knowledge base: Do I need to appoint a Data Protection Officer?"
315
-
316
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:182
317
- msgctxt "(Admin)"
318
- msgid "Data Protection Officer Name"
319
- msgstr "Data protection officer name"
320
-
321
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:190
322
- msgctxt "(Admin)"
323
- msgid "Data Protection Officer Email"
324
- msgstr "Data protection officer email"
325
-
326
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:216
327
- msgctxt "(Admin)"
328
- msgid "Contact Email"
329
- msgstr "Contact email"
330
-
331
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:235
332
- msgctxt "(Admin)"
333
- msgid "Representative Contact"
334
- msgstr "Representative contact"
335
-
336
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:238
337
- msgctxt "(Admin)"
338
- msgid "Knowledge base: Do I need to appoint an EU-based representative?"
339
- msgstr "Knowledge base: Do I need to appoint an EU-based representative?"
340
-
341
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:317
342
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:324
343
- msgctxt "(Admin)"
344
- msgid "DPO Name"
345
- msgstr "DPO Name"
346
-
347
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:420
348
- msgctxt "(Admin)"
349
- msgid "Save & Generate Policy"
350
- msgstr "Save & generate policy"
351
-
352
- #: src/Components/PrivacyPolicy/PrivacyPolicy.php:82
353
- #: src/Installer/Installer.php:271 src/Installer/Steps/PolicySettings.php:199
354
- #: views/themes/storefront/footer.php:3
355
- #: views/themes/twentyseventeen/footer.php:3
356
- #: views/themes/twentysixteen/footer.php:4
357
- msgid "Privacy Policy"
358
- msgstr "Privacy policy"
359
-
360
- #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:19
361
- msgid "This page is currently disabled."
362
- msgstr "This page is currently disabled."
363
-
364
- #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:35
365
- #: src/Installer/Installer.php:279
366
- #: src/Installer/Steps/ConfigurationPages.php:55
367
- #: views/themes/storefront/footer.php:7
368
- #: views/themes/twentyseventeen/footer.php:7
369
- #: views/themes/twentysixteen/footer.php:9
370
- msgid "Privacy Tools"
371
- msgstr "Privacy tools"
372
-
373
- #: src/Components/Support/AdminTabSupport.php:13
374
- #: src/Components/Support/AdminTabSupport.php:20
375
- msgctxt "(Admin)"
376
- msgid "Support"
377
- msgstr "Support"
378
-
379
- #: src/Components/WordpressComments/WordpressComments.php:90
380
- #, php-format
381
- msgid "%sERROR:%s You need to accept the privacy policy to post a comment."
382
- msgstr "%sERROR:%s You need to accept the privacy policy to post a comment."
383
-
384
- #: src/Components/WordpressUser/Controllers/DashboardDataPageController.php:54
385
- #: views/privacy-tools/notices.php:19
386
- msgid "We have received your request and will reply within 30 days."
387
- msgstr "We have received your request and will reply within 30 days."
388
-
389
- #: src/Components/WordpressUser/Controllers/DashboardDataPageController.php:59
390
- #: views/privacy-tools/notices.php:15
391
- msgid "Consent withdrawn."
392
- msgstr "Consent withdrawn."
393
-
394
- #: src/Components/WordpressUser/RegistrationForm.php:42
395
- msgid "<strong>ERROR</strong>: You must accept the terms and conditions."
396
- msgstr "<strong>ERROR</strong>: You must accept the terms and conditions."
397
-
398
- #: src/Components/WordpressUser/WordpressUser.php:63
399
- #: src/Components/WordpressUser/WordpressUser.php:64
400
- #: views/modules/wordpress-user/dashboard/data-page/header.php:2
401
- msgctxt "(Admin)"
402
- msgid "Privacy Tools"
403
- msgstr "Privacy tools"
404
-
405
- #: src/DataSubject/AdminTabDataSubject.php:27
406
- #: src/DataSubject/AdminTabDataSubject.php:41
407
- msgctxt "(Admin)"
408
- msgid "Data Subjects"
409
- msgstr "Data subjects"
410
-
411
- #: src/DataSubject/DataRepository.php:143
412
- msgid "Data exported"
413
- msgstr "Data exported"
414
-
415
- #: src/DataSubject/DataRepository.php:158
416
- msgid "Data export request"
417
- msgstr "Data export request"
418
-
419
- #: src/DataSubject/DataRepository.php:171
420
- msgid "Data removed"
421
- msgstr "Data removed"
422
-
423
- #: src/DataSubject/DataRepository.php:186
424
- msgid "Data removal request"
425
- msgstr "Data removal request"
426
-
427
- #: src/DataSubject/DataSubjectIdentificator.php:65
428
- #: src/DataSubject/DataSubjectIdentificator.php:82
429
- msgid "Your personal data on"
430
- msgstr "Your personal data on"
431
-
432
- #: src/Helpers.php:27
433
- msgctxt "(Admin)"
434
- msgid "Austria"
435
- msgstr "Austria"
436
-
437
- #: src/Helpers.php:28
438
- msgctxt "(Admin)"
439
- msgid "Belgium"
440
- msgstr "Belgium"
441
-
442
- #: src/Helpers.php:29
443
- msgctxt "(Admin)"
444
- msgid "Bulgaria"
445
- msgstr "Bulgaria"
446
-
447
- #: src/Helpers.php:30
448
- msgctxt "(Admin)"
449
- msgid "Croatia"
450
- msgstr "Croatia"
451
-
452
- #: src/Helpers.php:31
453
- msgctxt "(Admin)"
454
- msgid "Cyprus"
455
- msgstr "Cyprus"
456
-
457
- #: src/Helpers.php:32
458
- msgctxt "(Admin)"
459
- msgid "Czech Republic"
460
- msgstr "Czech Republic"
461
-
462
- #: src/Helpers.php:33
463
- msgctxt "(Admin)"
464
- msgid "Denmark"
465
- msgstr "Denmark"
466
-
467
- #: src/Helpers.php:34
468
- msgctxt "(Admin)"
469
- msgid "Estonia"
470
- msgstr "Estonia"
471
-
472
- #: src/Helpers.php:35
473
- msgctxt "(Admin)"
474
- msgid "Finland"
475
- msgstr "Finland"
476
-
477
- #: src/Helpers.php:36
478
- msgctxt "(Admin)"
479
- msgid "France"
480
- msgstr "France"
481
-
482
- #: src/Helpers.php:37
483
- msgctxt "(Admin)"
484
- msgid "Germany"
485
- msgstr "Germany"
486
-
487
- #: src/Helpers.php:38
488
- msgctxt "(Admin)"
489
- msgid "Greece"
490
- msgstr "Greece"
491
-
492
- #: src/Helpers.php:39
493
- msgctxt "(Admin)"
494
- msgid "Hungary"
495
- msgstr "Hungary"
496
-
497
- #: src/Helpers.php:40
498
- msgctxt "(Admin)"
499
- msgid "Ireland"
500
- msgstr "Ireland"
501
-
502
- #: src/Helpers.php:41
503
- msgctxt "(Admin)"
504
- msgid "Italy"
505
- msgstr "Italy"
506
-
507
- #: src/Helpers.php:42
508
- msgctxt "(Admin)"
509
- msgid "Latvia"
510
- msgstr "Latvia"
511
-
512
- #: src/Helpers.php:43
513
- msgctxt "(Admin)"
514
- msgid "Lithuania"
515
- msgstr "Lithuania"
516
-
517
- #: src/Helpers.php:44
518
- msgctxt "(Admin)"
519
- msgid "Luxembourg"
520
- msgstr "Luxembourg"
521
-
522
- #: src/Helpers.php:45
523
- msgctxt "(Admin)"
524
- msgid "Malta"
525
- msgstr "Malta"
526
-
527
- #: src/Helpers.php:46
528
- msgctxt "(Admin)"
529
- msgid "Netherlands"
530
- msgstr "Netherlands"
531
-
532
- #: src/Helpers.php:47
533
- msgctxt "(Admin)"
534
- msgid "Poland"
535
- msgstr "Poland"
536
-
537
- #: src/Helpers.php:48
538
- msgctxt "(Admin)"
539
- msgid "Portugal"
540
- msgstr "Portugal"
541
-
542
- #: src/Helpers.php:49
543
- msgctxt "(Admin)"
544
- msgid "Romania"
545
- msgstr "Romania"
546
-
547
- #: src/Helpers.php:50
548
- msgctxt "(Admin)"
549
- msgid "Slovakia"
550
- msgstr "Slovakia"
551
-
552
- #: src/Helpers.php:51
553
- msgctxt "(Admin)"
554
- msgid "Slovenia"
555
- msgstr "Slovenia"
556
-
557
- #: src/Helpers.php:52
558
- msgctxt "(Admin)"
559
- msgid "Spain"
560
- msgstr "Spain"
561
-
562
- #: src/Helpers.php:53
563
- msgctxt "(Admin)"
564
- msgid "Sweden"
565
- msgstr "Sweden"
566
-
567
- #: src/Helpers.php:54
568
- msgctxt "(Admin)"
569
- msgid "United Kingdom"
570
- msgstr "United kingdom"
571
-
572
- #: src/Helpers.php:69
573
- msgctxt "(Admin)"
574
- msgid "Iceland"
575
- msgstr "Iceland"
576
-
577
- #: src/Helpers.php:70
578
- msgctxt "(Admin)"
579
- msgid "Norway"
580
- msgstr "Norway"
581
-
582
- #: src/Helpers.php:71
583
- msgctxt "(Admin)"
584
- msgid "Liechtenstein"
585
- msgstr "Liechtenstein"
586
-
587
- #: src/Helpers.php:72
588
- msgctxt "(Admin)"
589
- msgid "Switzerland"
590
- msgstr "Switzerland"
591
-
592
- #: src/Helpers.php:73
593
- msgctxt "(Admin)"
594
- msgid "United States"
595
- msgstr "United states"
596
-
597
- #: src/Helpers.php:74
598
- msgctxt "(Admin)"
599
- msgid "Rest of the world"
600
- msgstr "Rest of the world"
601
-
602
- #: src/Helpers.php:145
603
- msgid "An error has occurred. Please contact the site administrator."
604
- msgstr "An error has occurred. Please contact the site administrator."
605
-
606
- #: src/Installer/Installer.php:135
607
- msgctxt "(Admin)"
608
- msgid "Setup Wizard"
609
- msgstr "Setup wizard"
610
-
611
- #: src/Installer/Steps/ConfigurationPages.php:23
612
- #: src/Installer/Steps/PolicySettings.php:23
613
- #: src/Installer/Steps/PolicySettings.php:48
614
- msgctxt "(Admin)"
615
- msgid "&mdash; Create a new page &mdash;"
616
- msgstr "&mdash; Create a new page &mdash;"
617
-
618
- #: src/Installer/Steps/PolicySettings.php:38
619
- msgctxt "(Admin)"
620
- msgid ""
621
- "We have automatically selected your WooCommerce Terms & Conditions page."
622
- msgstr ""
623
- "We have automatically selected your woocommerce terms & conditions page."
624
-
625
- #: src/Modules/ContactForm7/ContactForm7.php:35
626
- msgctxt "(Admin)"
627
- msgid "gdpr terms txt"
628
- msgstr "gdpr terms txt"
629
-
630
- #: src/Router.php:80 src/Router.php:92 src/Router.php:125 src/Router.php:141
631
- #, php-format
632
- msgid "Nonce error for action \"%s\". Please go back and try again!"
633
- msgstr "Nonce error for action \"%s\". Please go back and try again!"
634
-
635
- #: src/Router.php:149
636
- msgctxt "(Admin)"
637
- msgid "You do not have the required permissions to perform this action!"
638
- msgstr "You do not have the required permissions to perform this action!"
639
-
640
- #: views/admin/consent.php:3
641
- msgctxt "(Admin)"
642
- msgid "Default consent types"
643
- msgstr "Default consent types"
644
-
645
- #: views/admin/consent.php:4
646
- msgctxt "(Admin)"
647
- msgid ""
648
- "These are the consent types that have been automatically registered by the "
649
- "framework or a plugin."
650
- msgstr ""
651
- "These are the consent types that have been automatically registered by the "
652
- "framework or a plugin."
653
-
654
- #: views/admin/consent.php:7 views/admin/consent.php:52
655
- msgctxt "(Admin)"
656
- msgid "Slug"
657
- msgstr "Slug"
658
-
659
- #: views/admin/consent.php:8 views/admin/consent.php:38
660
- #: views/admin/consent.php:60
661
- msgctxt "(Admin)"
662
- msgid "Title"
663
- msgstr "Title"
664
-
665
- #: views/admin/consent.php:9 views/admin/consent.php:41
666
- #: views/admin/consent.php:63
667
- msgctxt "(Admin)"
668
- msgid "Description"
669
- msgstr "Description"
670
-
671
- #: views/admin/consent.php:10
672
- msgctxt "(Admin)"
673
- msgid "Visibility"
674
- msgstr "Visibility"
675
-
676
- #: views/admin/consent.php:18
677
- msgctxt "(Admin)"
678
- msgid "Visible"
679
- msgstr "Visible"
680
-
681
- #: views/admin/consent.php:20
682
- msgctxt "(Admin)"
683
- msgid "Hidden"
684
- msgstr "Hidden"
685
-
686
- #: views/admin/consent.php:29
687
- msgctxt "(Admin)"
688
- msgid "Custom consent types"
689
- msgstr "Custom consent types"
690
-
691
- #: views/admin/consent.php:30
692
- msgctxt "(Admin)"
693
- msgid ""
694
- "Here you can add custom consent types to track. They will not be used "
695
- "anywhere by default - you will need to build an integration for each of them."
696
- msgstr ""
697
- "Here you can add custom consent types to track. They will not be used "
698
- "anywhere by default - you will need to build an integration for each of them."
699
-
700
- #: views/admin/consent.php:35
701
- msgctxt "(Admin)"
702
- msgid "Machine-readable slug"
703
- msgstr "Machine-readable slug"
704
-
705
- #: views/admin/consent.php:44 views/admin/consent.php:68
706
- msgctxt "(Admin)"
707
- msgid "Visible?"
708
- msgstr "Visible?"
709
-
710
- #: views/admin/consent.php:72
711
- msgctxt "(Admin)"
712
- msgid "Remove"
713
- msgstr "Remove"
714
-
715
- #: views/admin/consent.php:93
716
- msgctxt "(Admin)"
717
- msgid "Additional info"
718
- msgstr "Additional info"
719
-
720
- #: views/admin/consent.php:95
721
- msgctxt "(Admin)"
722
- msgid ""
723
- "This text will be displayed to your data subjects on the Privacy Tools page."
724
- msgstr ""
725
- "This text will be displayed to your data subjects on the privacy tools page."
726
-
727
- #: views/admin/data-subjects/search-form.php:2
728
- msgctxt "(Admin)"
729
- msgid ""
730
- "On this page, you can find which data subjects personal data you are storing "
731
- "and download, export or delete it."
732
- msgstr ""
733
- "On this page, you can find which data subjects personal data you are storing "
734
- "and download, export or delete it."
735
-
736
- #: views/admin/data-subjects/search-form.php:10
737
- msgctxt "(Admin)"
738
- msgid "Find data subject by email"
739
- msgstr "Find data subject by email"
740
-
741
- #: views/admin/data-subjects/search-form.php:11
742
- msgctxt "(Admin)"
743
- msgid "Email address"
744
- msgstr "Email address"
745
-
746
- #: views/admin/data-subjects/search-form.php:16
747
- msgctxt "(Admin)"
748
- msgid "Search"
749
- msgstr "Search"
750
-
751
- #: views/admin/data-subjects/search-results.php:7
752
- msgctxt "(Admin)"
753
- msgid "Username"
754
- msgstr "Username"
755
-
756
- #: views/admin/data-subjects/search-results.php:12
757
- msgctxt "(Admin)"
758
- msgid "is not a registered user."
759
- msgstr "is not a registered user."
760
-
761
- #: views/admin/data-subjects/search-results.php:16
762
- msgctxt "(Admin)"
763
- msgid "Download data (html)"
764
- msgstr "Download data (html)"
765
-
766
- #: views/admin/data-subjects/search-results.php:17
767
- msgctxt "(Admin)"
768
- msgid "Export data (json)"
769
- msgstr "Export data (json)"
770
-
771
- #: views/admin/data-subjects/search-results.php:21
772
- msgctxt "(Admin)"
773
- msgid ""
774
- "This user has admin capabilities. Deleting data via this interface is "
775
- "disabled."
776
- msgstr ""
777
- "This user has admin capabilities. Deleting data via this interface is "
778
- "disabled."
779
-
780
- #: views/admin/data-subjects/search-results.php:24
781
- msgctxt "(Admin)"
782
- msgid "Anonymize data"
783
- msgstr "Anonymize data"
784
-
785
- #: views/admin/data-subjects/search-results.php:25
786
- msgctxt "(Admin)"
787
- msgid "Delete data"
788
- msgstr "Delete data"
789
-
790
- #: views/admin/data-subjects/search-results.php:29
791
- msgctxt "(Admin)"
792
- msgid "No data found!"
793
- msgstr "No data found!"
794
-
795
- #: views/admin/general/delete-action-email.php:5
796
- #: views/admin/general/export-action-email.php:5
797
- #: views/installer/steps/configuration-settings.php:29
798
- #: views/installer/steps/configuration-settings.php:79
799
- msgid "Email address"
800
- msgstr "Email address"
801
-
802
- #: views/admin/general/delete-action-reassign.php:3
803
- #: views/installer/steps/configuration-settings.php:50
804
- msgctxt "(Admin)"
805
- msgid "Delete content"
806
- msgstr "Delete content"
807
-
808
- #: views/admin/general/delete-action-reassign.php:6
809
- #: views/installer/steps/configuration-settings.php:53
810
- msgctxt "(Admin)"
811
- msgid "Reassign content to a user"
812
- msgstr "Reassign content to a user"
813
-
814
- #: views/admin/general/delete-action-reassign.php:10
815
- msgctxt "(Admin)"
816
- msgid ""
817
- "If the user has submitted any content on your site, should it be deleted or "
818
- "reassigned to another user?"
819
- msgstr ""
820
- "If the user has submitted any content on your site, should it be deleted or "
821
- "reassigned to another user?"
822
-
823
- #: views/admin/general/description-data-page.php:2
824
- msgctxt "(Admin)"
825
- msgid ""
826
- "Select the page where users can go to control their data. This page must "
827
- "contain the [gdpr_privacy_tools] shortcode."
828
- msgstr ""
829
- "Select the page where users can go to control their data. This page must "
830
- "contain the [gdpr_privacy_tools] shortcode."
831
-
832
- #: views/admin/general/description-delete-action.php:2
833
- msgctxt "(Admin)"
834
- msgid "What should happen if a data subject requests deleting their data."
835
- msgstr "What should happen if a data subject requests deleting their data."
836
-
837
- #: views/admin/general/description-export-action.php:2
838
- msgctxt "(Admin)"
839
- msgid ""
840
- "What should happen if a data subject requests viewing or exporting their "
841
- "data."
842
- msgstr ""
843
- "What should happen if a data subject requests viewing or exporting their "
844
- "data."
845
-
846
- #: views/admin/general/description-terms-page.php:2
847
- msgctxt "(Admin)"
848
- msgid "Optional. Select the page which contains your Terms & Conditions"
849
- msgstr "Optional. Select the page which contains your terms & conditions"
850
-
851
- #: views/admin/general/enable.php:9
852
- msgctxt "(Admin)"
853
- msgid "Enable the view, export and forget functionality for users and visitors"
854
- msgstr ""
855
- "Enable the view, export and forget functionality for users and visitors"
856
-
857
- #: views/admin/general/enable.php:12
858
- msgctxt "(Admin)"
859
- msgid ""
860
- "Enable the Privacy Tools page on front-end and dashboard. This allows "
861
- "visitors to request viewing and deleting their personal data and withdraw "
862
- "consents."
863
- msgstr ""
864
- "Enable the privacy tools page on front-end and dashboard. This allows "
865
- "visitors to request viewing and deleting their personal data and withdraw "
866
- "consents."
867
-
868
- #: views/admin/general/stylesheet.php:9
869
- msgctxt "(Admin)"
870
- msgid "Enable basic styling for Privacy Tools page."
871
- msgstr "Enable basic styling for privacy tools page."
872
-
873
- #: views/admin/general/theme-compatibility.php:9
874
- #: views/installer/steps/integrations.php:21
875
- msgctxt "(Admin)"
876
- msgid ""
877
- "Automatically add Privacy Policy and Privacy Tools links to your site footer."
878
- msgstr ""
879
- "Automatically add privacy policy and privacy tools links to your site footer."
880
-
881
- #: views/admin/notices/header.php:4 views/admin/settings-page.php:3
882
- #: views/installer/header.php:23
883
- msgctxt "(Admin)"
884
- msgid "The GDPR Framework"
885
- msgstr "The GDPR Framework"
886
-
887
- #: views/admin/notices/helper-autoinstall.php:2
888
- msgctxt "(Admin)"
889
- msgid ""
890
- "A Privacy Policy page has been created, but it is empty. You can generate a "
891
- "policy template on this page."
892
- msgstr ""
893
- "A privacy policy page has been created, but it is empty. You can generate a "
894
- "policy template on this page."
895
-
896
- #: views/admin/notices/helper-policy.php:2
897
- msgctxt "(Admin)"
898
- msgid ""
899
- "Heads up - your Privacy Policy still requires some attention. Find the "
900
- "places marked with [TODO] and replace them with real content!"
901
- msgstr ""
902
- "Heads up - your Privacy Policy still requires some attention. Find the "
903
- "places marked with [TODO] and replace them with real content!"
904
-
905
- #: views/admin/notices/helper-tools.php:2
906
- msgctxt "(Admin)"
907
- msgid ""
908
- "The contents of this page should contain the [gdpr_privacy_tools] shortcode."
909
- msgstr ""
910
- "The contents of this page should contain the [gdpr_privacy_tools] shortcode."
911
-
912
- #: views/admin/privacy-policy/description-policy-page.php:2
913
- msgctxt "(Admin)"
914
- msgid "Select the page which will contain your Privacy Policy"
915
- msgstr "Select the page which will contain your privacy policy"
916
-
917
- #: views/admin/privacy-policy/generated.php:3
918
- msgctxt "(Admin)"
919
- msgid "Your Privacy Policy has been generated."
920
- msgstr "Your Privacy Policy has been generated."
921
-
922
- #: views/admin/privacy-policy/generated.php:20
923
- msgctxt "(Admin)"
924
- msgid "&laquo; Back"
925
- msgstr "&laquo; Back"
926
-
927
- #: views/admin/privacy-policy/header.php:2
928
- msgctxt "(Admin)"
929
- msgid ""
930
- "This page allows you to generate a Privacy Policy based on the information "
931
- "you entered below."
932
- msgstr ""
933
- "This page allows you to generate a privacy policy based on the information "
934
- "you entered below."
935
-
936
- #: views/admin/settings-page.php:8
937
- msgctxt "(Admin)"
938
- msgid "GDPR settings saved!"
939
- msgstr "Gdpr settings saved!"
940
-
941
- #: views/admin/settings-page.php:31
942
- #, php-format
943
- msgctxt "(Admin)"
944
- msgid "The GDPR Framework. Built with &#9829; by %sCodelight%s."
945
- msgstr "The GDPR framework. Built with &#9829; by %sCodelight%s."
946
-
947
- #: views/admin/settings-page.php:39
948
- #, php-format
949
- msgctxt "(Admin)"
950
- msgid "Support our development efforts with a %s5-star rating%s."
951
- msgstr "Support our development efforts with a %s5-star rating%s."
952
-
953
- #: views/admin/support/contents.php:5 views/installer/steps/finish.php:10
954
- msgctxt "(Admin)"
955
- msgid "Need more info?"
956
- msgstr "Need more info?"
957
-
958
- #: views/admin/support/contents.php:11 views/installer/steps/finish.php:16
959
- msgctxt "(Admin)"
960
- msgid "Site Owner's guide to GDPR"
961
- msgstr "Site owner's guide to GDPR"
962
-
963
- #: views/admin/support/contents.php:14 views/installer/steps/finish.php:19
964
- msgctxt "(Admin)"
965
- msgid "Read the full guide on GDPR compliance."
966
- msgstr "Read the full guide on GDPR compliance."
967
-
968
- #: views/admin/support/contents.php:20 views/installer/steps/finish.php:25
969
- msgctxt "(Admin)"
970
- msgid "Knowledge base"
971
- msgstr "Knowledge base"
972
-
973
- #: views/admin/support/contents.php:23 views/installer/steps/finish.php:28
974
- msgctxt "(Admin)"
975
- msgid "Check out the knowledge base for common questions and answers."
976
- msgstr "Check eoot the knowledge base for common questions and answers."
977
-
978
- #: views/admin/support/contents.php:29 views/installer/steps/finish.php:34
979
- msgctxt "(Admin)"
980
- msgid "Developer's guide to GDPR"
981
- msgstr "Developer's guide to GDPR"
982
-
983
- #: views/admin/support/contents.php:32 views/installer/steps/finish.php:37
984
- msgctxt "(Admin)"
985
- msgid "We have a thorough guide to help making custom sites compliant."
986
- msgstr "We have a thorough guide to help making custom sites compliant."
987
-
988
- #: views/admin/support/contents.php:40 views/installer/steps/finish.php:45
989
- msgctxt "(Admin)"
990
- msgid "Need help?"
991
- msgstr "Need help?"
992
-
993
- #: views/admin/support/contents.php:46 views/installer/steps/finish.php:51
994
- msgctxt "(Admin)"
995
- msgid "Submit a support request"
996
- msgstr "Submit a support request"
997
-
998
- #: views/admin/support/contents.php:49 views/installer/steps/finish.php:54
999
- msgctxt "(Admin)"
1000
- msgid ""
1001
- "Found a bug or problem with the plugin? Post in the wordpress.org support "
1002
- "forum."
1003
- msgstr ""
1004
- "Found a bug or problem with the plugin? post in the wordpress.org support "
1005
- "forum."
1006
-
1007
- #: views/admin/support/contents.php:55 views/installer/steps/finish.php:60
1008
- msgctxt "(Admin)"
1009
- msgid "Request a consultation"
1010
- msgstr "Request a consultation"
1011
-
1012
- #: views/admin/support/contents.php:58 views/installer/steps/finish.php:63
1013
- msgctxt "(Admin)"
1014
- msgid ""
1015
- "Need development or legal assistance in making your site compliant? We can "
1016
- "help!"
1017
- msgstr ""
1018
- "Need development or legal assistance in making your site compliant? we can "
1019
- "help!"
1020
-
1021
- #: views/admin/wizard-buttons.php:2
1022
- msgctxt "(Admin)"
1023
- msgid "Restart setup wizard"
1024
- msgstr "Restart setup wizard"
1025
-
1026
- #: views/email/action-export.php:8 views/email/action-forget.php:12
1027
- msgctxt "(Admin)"
1028
- msgid ""
1029
- "This email is just for your information. You don't need to take any action"
1030
- msgstr ""
1031
- "This email is just for your information. You don't need to take any action"
1032
-
1033
- #: views/email/action-forget.php:8
1034
- msgctxt "(Admin)"
1035
- msgid "The data subject had a user account on your website."
1036
- msgstr "The data subject had a user account on your website."
1037
-
1038
- #: views/email/identify-data-subject.php:2
1039
- msgid "Someone has requested access to your data on"
1040
- msgstr "Someone has requested access to your data on"
1041
-
1042
- #: views/email/identify-data-subject.php:3
1043
- msgid "If this was a mistake, just ignore this email and nothing will happen."
1044
- msgstr "If this was a mistake, just ignore this email and nothing will happen."
1045
-
1046
- #: views/email/identify-data-subject.php:4
1047
- msgid "To manage your data, visit the following address:"
1048
- msgstr "To manage your data, visit the following address:"
1049
-
1050
- #: views/email/identify-data-subject.php:10
1051
- msgid "This link is valid for 15 minutes."
1052
- msgstr "This link is valid for 15 minutes."
1053
-
1054
- #: views/email/no-data.php:2
1055
- msgid "Someone has requested information about your personal data on"
1056
- msgstr "Someone has requested information aboot your personal data on"
1057
-
1058
- #: views/email/no-data.php:3
1059
- msgid "None of your personal data is stored on"
1060
- msgstr "None of your personal data is stored on"
1061
-
1062
- #: views/email/no-data.php:5
1063
- msgid ""
1064
- "If this was a mistake or you did not request this email, just ignore it and "
1065
- "nothing will happen."
1066
- msgstr ""
1067
- "If this was a mistake or you did not request this email, just ignore it and "
1068
- "nothing will happen."
1069
-
1070
- #: views/email/request-export.php:13 views/email/request-forget.php:13
1071
- msgctxt "(Admin)"
1072
- msgid "As a reminder: according to GDPR, you have 30 days to comply."
1073
- msgstr "As a reminder: according to GDPR, you have 30 days to comply."
1074
-
1075
- #: views/global/delete-action.php:2
1076
- msgctxt "(Admin)"
1077
- msgid "Automatically anonymize data"
1078
- msgstr "Automatically anonymize data"
1079
-
1080
- #: views/global/delete-action.php:5
1081
- msgctxt "(Admin)"
1082
- msgid "Automatically delete data"
1083
- msgstr "Automatically delete data"
1084
-
1085
- #: views/global/delete-action.php:9
1086
- msgctxt "(Admin)"
1087
- msgid "Automatically anonymize data and notify me via email"
1088
- msgstr "Automatically anonymize data and notify me via email"
1089
-
1090
- #: views/global/delete-action.php:13
1091
- msgctxt "(Admin)"
1092
- msgid "Automatically delete data and notify me via email"
1093
- msgstr "Automatically delete data and notify me via email"
1094
-
1095
- #: views/global/delete-action.php:16 views/global/export-action.php:10
1096
- msgctxt "(Admin)"
1097
- msgid "Only notify me via email"
1098
- msgstr "Only notify me via email"
1099
-
1100
- #: views/global/export-action.php:2
1101
- msgctxt "(Admin)"
1102
- msgid "Automatically download data"
1103
- msgstr "Automatically download data"
1104
-
1105
- #: views/global/export-action.php:6
1106
- msgctxt "(Admin)"
1107
- msgid "Automatically download data and notify me via email"
1108
- msgstr "Automatically download data and notify me via email"
1109
-
1110
- #: views/installer/continue-notice.php:2
1111
- msgctxt "(Admin)"
1112
- msgid "The The GDPR Framework setup has not been finalized yet."
1113
- msgstr "The The GDPR Framework setup has not been finalized yet."
1114
-
1115
- #: views/installer/continue-notice.php:3
1116
- msgctxt "(Admin)"
1117
- msgid "You can continue the setup at any time."
1118
- msgstr "You can continue the setup at any time."
1119
-
1120
- #: views/installer/continue-notice.php:6
1121
- msgctxt "(Admin)"
1122
- msgid "Continue the setup wizard"
1123
- msgstr "Continue the setup wizard"
1124
-
1125
- #: views/installer/continue-notice.php:9
1126
- msgctxt "(Admin)"
1127
- msgid "Hide this message"
1128
- msgstr "Hide this message"
1129
-
1130
- #: views/installer/footer.php:7
1131
- msgid "Back"
1132
- msgstr "Back"
1133
-
1134
- #: views/installer/header.php:26
1135
- msgctxt "(Admin)"
1136
- msgid "I need help"
1137
- msgstr "I need help"
1138
-
1139
- #: views/installer/header.php:29
1140
- msgctxt "(Admin)"
1141
- msgid "Developer Docs"
1142
- msgstr "Developer Docs"
1143
-
1144
- #: views/installer/header.php:36
1145
- msgctxt "(Admin)"
1146
- msgid "Configuration"
1147
- msgstr "Configuration"
1148
-
1149
- #: views/installer/header.php:46
1150
- msgctxt "(Admin)"
1151
- msgid "Forms & Consent"
1152
- msgstr "Forms & Consent"
1153
-
1154
- #: views/installer/header.php:51
1155
- msgctxt "(Admin)"
1156
- msgid "Integrations"
1157
- msgstr "Integrations"
1158
-
1159
- #: views/installer/steps/configuration-settings.php:23
1160
- #: views/installer/steps/configuration-settings.php:73
1161
- msgctxt "(Admin)"
1162
- msgid "Enter the email address to notify"
1163
- msgstr "Enter the email address to notify"
1164
-
1165
- #: views/installer/steps/disclaimer.php:21
1166
- msgctxt "(Admin)"
1167
- msgid "I accept"
1168
- msgstr "I accept"
1169
-
1170
- #: views/installer/welcome-notice.php:7
1171
- msgctxt "(Admin)"
1172
- msgid "Run the setup wizard"
1173
- msgstr "Run the setup wizard"
1174
-
1175
- #: views/installer/welcome-notice.php:11
1176
- msgctxt "(Admin)"
1177
- msgid "Auto-install pages"
1178
- msgstr "Auto-install pages"
1179
-
1180
- #: views/installer/welcome-notice.php:15
1181
- msgctxt "(Admin)"
1182
- msgid "Skip and install manually"
1183
- msgstr "Skip and install manually"
1184
-
1185
- #: views/modules/contact-form-7/generator-privacy.php:6
1186
- msgctxt "(Admin)"
1187
- msgid ""
1188
- "This tag generates the default text for Terms & Conditions and/or Privacy "
1189
- "Policy checkbox."
1190
- msgstr ""
1191
- "This tag generates the default text for Terms & Conditions and/or Privacy "
1192
- "Policy checkbox."
1193
-
1194
- #: views/modules/contact-form-7/generator-privacy.php:15
1195
- msgid "Insert"
1196
- msgstr "Insert"
1197
-
1198
- #: views/modules/wordpress-comments/terms-checkbox.php:6
1199
- #: views/modules/wordpress-user/registration-terms-checkbox.php:7
1200
- #, php-format
1201
- msgid "I accept the %sTerms and Conditions%s and the %sPrivacy Policy%s"
1202
- msgstr "I accept the %sTerms and Conditions%s and the %sPrivacy Policy%s"
1203
-
1204
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:3
1205
- #: views/privacy-tools/form-consent.php:2
1206
- msgid "Consent"
1207
- msgstr "Consent"
1208
-
1209
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:6
1210
- #: views/privacy-tools/form-consent.php:6
1211
- msgid "Here you can withdraw any consents you have given."
1212
- msgstr "Here you can withdraw any consents you have given."
1213
-
1214
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:8
1215
- msgid "Consents"
1216
- msgstr "Consents"
1217
-
1218
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:23
1219
- #: views/privacy-tools/form-consent.php:24
1220
- msgid "Withdraw"
1221
- msgstr "Withdraw"
1222
-
1223
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:5
1224
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:5
1225
- msgctxt "(Admin)"
1226
- msgid "Delete this user and all data"
1227
- msgstr "Delete this user and all data"
1228
-
1229
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:11
1230
- msgctxt "(Admin)"
1231
- msgid "Delete my data"
1232
- msgstr "Delete my data"
1233
-
1234
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:15
1235
- #: views/privacy-tools/form-delete.php:13
1236
- msgid "Delete all data we have gathered about you."
1237
- msgstr "Delete all data we have gathered aboot you."
1238
-
1239
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:16
1240
- #: views/privacy-tools/form-delete.php:14
1241
- msgid "If you have a user account on our site, it will also be deleted."
1242
- msgstr "If you have a user account on our site, it will also be deleted."
1243
-
1244
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:17
1245
- #: views/privacy-tools/form-delete.php:15
1246
- msgid "Be careful - this action is permanent and CANNOT be undone."
1247
- msgstr "Be careful - this action is permanent and cannot be undone."
1248
-
1249
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:22
1250
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:23
1251
- msgctxt "(Admin)"
1252
- msgid ""
1253
- "You seem to have an administrator or equivalent role, so deleting/"
1254
- "anonymizing via this page is disabled."
1255
- msgstr ""
1256
- "You seem to have an administrator or equivalent role, so deleting/"
1257
- "anonymizing via this page is disabled."
1258
-
1259
- #: views/modules/wordpress-user/dashboard/form-export.php:7
1260
- #: views/privacy-tools/form-export.php:1
1261
- msgid "Download your data"
1262
- msgstr "Download your data"
1263
-
1264
- #: views/modules/wordpress-user/dashboard/form-export.php:12
1265
- #: views/privacy-tools/form-export.php:13
1266
- msgid "Download as table"
1267
- msgstr "Download as table"
1268
-
1269
- #: views/modules/wordpress-user/dashboard/form-export.php:15
1270
- #: views/privacy-tools/form-export.php:22
1271
- msgid "Export as JSON"
1272
- msgstr "Export as JSON"
1273
-
1274
- #: views/modules/wordpress-user/dashboard/form-export.php:19
1275
- #: views/privacy-tools/form-export.php:4
1276
- msgid "You can download all your data formatted as a table for viewing."
1277
- msgstr "You can download all your data formatted as a table for viewing."
1278
-
1279
- #: views/modules/wordpress-user/dashboard/form-export.php:20
1280
- #: views/privacy-tools/form-export.php:5
1281
- msgid "Alternatively, you can export it in machine-readable JSON format."
1282
- msgstr "Alternatively, you can export it in machine-readable JSON format."
1283
-
1284
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:11
1285
- msgctxt "(Admin)"
1286
- msgid "Delete user and all data"
1287
- msgstr "Delete user and all data"
1288
-
1289
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:14
1290
- msgctxt "(Admin)"
1291
- msgid "Anonymize user and all data"
1292
- msgstr "Anonymize user and all data"
1293
-
1294
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:18
1295
- msgctxt "gdpr-framework"
1296
- msgid "Be careful - this action is permanent and CANNOT be undone."
1297
- msgstr "Be careful - this action is permanent and cannot be undone."
1298
-
1299
- #: views/modules/wordpress-user/dashboard/profile-page/header.php:2
1300
- msgctxt "(Admin)"
1301
- msgid "GDPR Data"
1302
- msgstr "GDPR Data"
1303
-
1304
- #: views/modules/wordpress-user/dashboard/profile-page/header.php:6
1305
- msgctxt "(Admin)"
1306
- msgid "This user has been anonymized."
1307
- msgstr "This user has been anonymized."
1308
-
1309
- #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:4
1310
- msgctxt "(Admin)"
1311
- msgid "Consents given"
1312
- msgstr "Consents given"
1313
-
1314
- #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:17
1315
- msgctxt "(Admin)"
1316
- msgid "No consents given"
1317
- msgstr "No consents given"
1318
-
1319
- #: views/privacy-tools/form-consent.php:9
1320
- msgid "Consent types"
1321
- msgstr "Consent types"
1322
-
1323
- #: views/privacy-tools/form-delete.php:1
1324
- #: views/privacy-tools/notice-admin-role.php:1
1325
- msgid "Delete my user and data"
1326
- msgstr "Delete my user and data"
1327
-
1328
- #: views/privacy-tools/form-delete.php:7
1329
- msgid "Delete my data"
1330
- msgstr "Delete my data"
1331
-
1332
- #: views/privacy-tools/form-identify.php:8
1333
- msgid "Back to front page"
1334
- msgstr "Back to front page"
1335
-
1336
- #: views/privacy-tools/form-identify.php:15
1337
- msgid "Please identify yourself via e-mail"
1338
- msgstr "Please identify yourself via e-mail"
1339
-
1340
- #: views/privacy-tools/form-identify.php:19
1341
- #: views/privacy-tools/form-identify.php:22
1342
- msgid "Enter your email address"
1343
- msgstr "Enter your email address"
1344
-
1345
- #: views/privacy-tools/form-identify.php:25
1346
- msgid "Send email"
1347
- msgstr "Send email"
1348
-
1349
- #: views/privacy-tools/notice-admin-role.php:4
1350
- msgctxt "(Admin)"
1351
- msgid "Data deletion is disabled for administrative accounts."
1352
- msgstr "Data deletion is disabled for administrative accounts."
1353
-
1354
- #: views/privacy-tools/notices.php:3
1355
- msgid ""
1356
- "We will send you an email with the link to access your data. Please check "
1357
- "your spam folder as well!"
1358
- msgstr ""
1359
- "We will send you an email with the link to access your data. Please check "
1360
- "your spam folder as well!"
1361
-
1362
- #: views/privacy-tools/notices.php:7
1363
- msgid "The email you entered does not appear to be a valid email."
1364
- msgstr "The email you entered does not appear to be a valid email."
1365
-
1366
- #: views/privacy-tools/notices.php:11
1367
- msgid "Sorry - the link seems to have expired. Please try again!"
1368
- msgstr "Sorry - the link seems to have expired. Please try again!"
1369
-
1370
- #: views/privacy-tools/notices.php:23
1371
- msgid "Your personal data has been removed!"
1372
- msgstr "Your personal data has been removed!"
1373
-
1374
- #: views/privacy-tools/privacy-tools.php:5
1375
- msgid "You are identified as"
1376
- msgstr "You are identified as"
1377
-
1378
- #: views\admin\general\enable-tac.php:9
1379
- msgctxt "(Admin)"
1380
- msgid "Enable the term and condition page."
1381
- msgstr "Enable the term and condition page."
1382
-
1383
- #: src\Admin\AdminTabGeneral.php:51
1384
- msgctxt "(Admin)"
1385
- msgid "Enable Term and Conditions"
1386
- msgstr "Enable Term and Conditions"
1387
-
1388
- #: gdpr-framework.php:121
1389
- msgid ""
1390
- "This website uses cookies to ensure you get the best experience on our "
1391
- "website."
1392
- msgstr ""
1393
- "This website uses cookies to ensure you get the best experience on our "
1394
- "website."
1395
-
1396
- #: gdpr-framework.php:121
1397
- msgid "Decline"
1398
- msgstr "Decline"
1399
-
1400
- #: gdpr-framework.php:121
1401
- msgid "Accept"
1402
- msgstr "Accept"
1403
-
1404
- #: gdpr-framework.php:133
1405
- msgid "Learn more"
1406
- msgstr "Learn more"
1407
-
1408
- #: AdminTabGeneral.php:94
1409
- msgctxt "(Admin)"
1410
- msgid "From Email"
1411
- msgstr "From Email"
1412
-
1413
- #: AdminTabGeneral.php:87
1414
- msgctxt "(Admin)"
1415
- msgid "From Name"
1416
- msgstr "From Name"
1417
-
1418
- #: AdminTabGeneral.php:82
1419
- msgctxt "(Admin)"
1420
- msgid "Email Setting"
1421
- msgstr "Email Setting"
1422
-
1423
- #: AdminTabGeneral.php:104
1424
- msgctxt "(Admin)"
1425
- msgid "Acceptance Popup Setting"
1426
- msgstr "Acceptance Popup Setting"
1427
-
1428
- #: AdminTabGeneral.php:109
1429
- msgctxt "(Admin)"
1430
- msgid "Popup Position"
1431
- msgstr "Popup Position"
1432
-
1433
- #: AdminTabGeneral.php:116
1434
- msgctxt "(Admin)"
1435
- msgid "Popup theme"
1436
- msgstr "Popup theme"
1437
-
1438
- #: AdminTabGeneral.php:123
1439
- msgctxt "(Admin)"
1440
- msgid "Cookie Acceptance Background Color"
1441
- msgstr "Cookie Acceptance Background Color"
1442
-
1443
- #: AdminTabGeneral.php:130
1444
- msgctxt "(Admin)"
1445
- msgid "Cookie Acceptance Text Color"
1446
- msgstr "Cookie Acceptance Text Color"
1447
-
1448
- #: AdminTabGeneral.php:137
1449
- msgctxt "(Admin)"
1450
- msgid "Cookie Acceptance Button Backgroung Color"
1451
- msgstr "Cookie Acceptance Button Backgroung Color"
1452
-
1453
- #: AdminTabGeneral.php:144
1454
- msgctxt "(Admin)"
1455
- msgid "Cookie Acceptance Button Color"
1456
- msgstr "Cookie Acceptance Button Color"
1457
-
1458
- #: AdminTabGeneral.php:151
1459
- msgctxt "(Admin)"
1460
- msgid "Cookie Acceptance Border Color"
1461
- msgstr "Cookie Acceptance Border Color"
1462
-
1463
- #: AdminTabGeneral.php:67
1464
- msgctxt "(Admin)"
1465
- msgid "Enable Cookie Acceptance Popup"
1466
- msgstr "Enable Cookie Acceptance Popup"
1467
-
1468
- #: AdminTabGeneral.php:73
1469
- msgctxt "(Admin)"
1470
- msgid "Cookie Acceptance Popup Content"
1471
- msgstr "Cookie Acceptance Popup Content"
1472
-
1473
- #: description-position-action.php
1474
- msgctxt "(Admin)"
1475
- msgid "Select position of the Popup"
1476
- msgstr "Select theme of the Popup"
1477
-
1478
- #: description-theme-action.php
1479
- msgctxt "(Admin)"
1480
- msgid "Select theme of the Popup"
1481
- msgstr "Select theme of the Popup"
1482
-
1483
- #: description-theme-action.php:69
1484
- msgctxt "(Admin)"
1485
- msgid "Disable Comment Checkbox"
1486
- msgstr "Disable Comment Checkbox"
1487
-
1488
- #: description-theme-action.php:76
1489
- msgctxt "(Admin)"
1490
- msgid "Disable Register Form Checkbox"
1491
- msgstr "Disable Register Form Checkbox"
1492
-
1493
- #: description-theme-action.php:312
1494
- msgctxt "(Admin)"
1495
- msgid "Disable Checkbox For Comments"
1496
- msgstr "Disable Checkbox For Comments"
1497
-
1498
- #: AdminTabGeneral.php:319
1499
- msgctxt "(Admin)"
1500
- msgid "Disable Checkbox For Register Form"
1501
- msgstr "Disable Checkbox For Register Form"
1502
-
1503
- #: advanced-integration\header.php:2
1504
- msgctxt "(Admin)"
1505
- msgid "This page allows you to advance integration with ClassiDocs™"
1506
- msgstr "This page allows you to advance integration with ClassiDocs™"
1507
-
1508
- #: AdminTabAdvancedIntegration.php:97
1509
- msgctxt "(Admin)"
1510
- msgid "ClassiDocs Password"
1511
- msgstr "ClassiDocs Password"
1512
-
1513
- #: AdminTabAdvancedIntegration.php:88
1514
- msgctxt "(Admin)"
1515
- msgid "ClassiDocs Username"
1516
- msgstr "ClassiDocs Username"
1517
-
1518
- #: AdminTabAdvancedIntegration.php:79
1519
- msgctxt "(Admin)"
1520
- msgid "ClassiDocs URL"
1521
- msgstr "ClassiDocs URL"
1522
-
1523
- #: AdminTabAdvancedIntegration.php:69
1524
- msgctxt "(Admin)"
1525
- msgid "Enable Response with related queries?"
1526
- msgstr "Enable Response with related queries?"
1527
-
1528
- #: AdminTabAdvancedIntegration.php:60
1529
- msgctxt "(Admin)"
1530
- msgid "Submit SAR request details?"
1531
- msgstr "Submit SAR request details?"
1532
-
1533
- #: AdminTabAdvancedIntegration.php:51
1534
- msgctxt "(Admin)"
1535
- msgid "Integrate with ClassiDocs?"
1536
- msgstr "Integrate with ClassiDocs?"
1537
-
1538
- #: AdminTabAdvancedIntegration.php:43
1539
- msgctxt "(Admin)"
1540
- msgid "Integration Settings"
1541
- msgstr "Integration Settings"
1542
-
1543
- #: AdminTabAdvancedIntegration.php:35
1544
- msgctxt "(Admin)"
1545
- msgid "Advanced Integration"
1546
- msgstr "Advanced Integration"
1547
-
1548
- #: checkbox-field.php:10
1549
- msgctxt "(Admin)"
1550
- msgid "Sign up for free here"
1551
- msgstr "Sign up for free here"
1552
-
1553
- #: checkbox-field.php:10
1554
- msgctxt "(Admin)"
1555
- msgid "Click Here"
1556
- msgstr "Click Here"
1557
-
1558
- #: ClassiDocs-results.php:12
1559
- msgid "Previous Results"
1560
- msgstr "Previous Results"
1561
-
1562
- #: ClassiDocs-results.php:13
1563
- msgid "Current Results"
1564
- msgstr "Current Results"
1565
-
1566
- #: ClassiDocs-results.php:19
1567
- msgid "Name"
1568
- msgstr "Name"
1569
-
1570
- #: ClassiDocs-results.php:22
1571
- msgid "Path"
1572
- msgstr "Path"
1573
-
1574
- #: ClassiDocs-results.php:34
1575
- msgid "Workstation"
1576
- msgstr "Workstation"
1577
-
1578
- #: ClassiDocs-results.php:37
1579
- msgid "Last Scan"
1580
- msgstr "Last Scan"
1581
-
1582
- #: ClassiDocs-results.php:62
1583
- msgid "No ClassiDocs data found!"
1584
- msgstr "No ClassiDocs data found!"
1585
-
1586
- #: enable_popup_header.php:5
1587
- msgid "Cookies used on the website!"
1588
- msgstr "Cookies used on the website!"
1589
-
1590
- #: enable_popup_header.php:9
1591
- msgid "Leave blank if don't want header to get display."
1592
- msgstr "Leave blank if don't want header to get display."
1593
-
1594
- #: AdminTabCookiePopup.php:39
1595
- msgctxt "(Admin)"
1596
- msgid "Cookie Popup Settings"
1597
- msgstr "Cookie Popup Settings"
1598
-
1599
- #: AdminTabCookiePopup.php:17
1600
- msgctxt "(Admin)"
1601
- msgid "Cookie Popup"
1602
- msgstr "Cookie Popup"
1603
-
1604
- #: AdminTabCookiePopup.php:49
1605
- msgctxt "(Admin)"
1606
- msgid "Enable One Time Cookie Acceptance Popup"
1607
- msgstr "Enable One Time Cookie Acceptance Popup"
1608
-
1609
- #: consent.php:79
1610
- msgctxt "(Admin)"
1611
- msgid "Show Consent types"
1612
- msgstr "Show Consent types"
1613
-
1614
- msgctxt "(Admin)"
1615
- msgid "Hide consent types"
1616
- msgstr "Hide consent types"
1617
-
1618
- msgctxt "(Admin)"
1619
- msgid "Do you want form to be GDPR compliance."
1620
- msgstr "Do you want form to be GDPR compliance."
1621
-
1622
- msgctxt "(Admin)"
1623
- msgid ""
1624
- "You have installed flamingo, To make this GDPR compliance in individual "
1625
- "contact form's privacy tab check the checkbox for include data to be search "
1626
- "on Privacy tool."
1627
- msgstr ""
1628
- "You have installed flamingo, To make this GDPR compliance in individual "
1629
- "contact form's privacy tab check the checkbox for include data to be search "
1630
- "on Privacy tool."
1631
-
1632
- msgctxt "(Admin)"
1633
- msgid "Enable Policy Link On Popup"
1634
- msgstr "Enable policy link on popup"
1635
-
1636
- msgctxt "(Admin)"
1637
- msgid "Enable Privacy policy on Popup"
1638
- msgstr "Enable privacy policy on popup"
1639
-
1640
- #: AdminTabCookiePopup.php
1641
- msgctxt "(Admin)"
1642
- msgid "Cookie Acceptance Popup header"
1643
- msgstr "Cookie Acceptance Popup header"
1644
-
1645
- #: views\admin\privacy-manager\header.php:2
1646
- msgctxt "(Admin)"
1647
- msgid "Data443™ Privacy Manager"
1648
- msgstr "Data443™ Privacy Manager"
1649
-
1650
- #: views\admin\privacy-manager\header.php:3
1651
- msgctxt "(Admin)"
1652
- msgid ""
1653
- "ensures privacy regulation compliance, such as GDPR, CCPA, LGPD, etc, at the "
1654
- "next level."
1655
- msgstr ""
1656
- "ensures privacy regulation compliance, such as GDPR, CCPA, LGPD, etc, at the "
1657
- "next level."
1658
-
1659
- #: views\admin\privacy-manager\header.php:4
1660
- msgctxt "(Admin)"
1661
- msgid ""
1662
- "In addition to DSAR tracking and management, Privacy Manager adds the "
1663
- "following features to your data protection compliance resources:"
1664
- msgstr ""
1665
- "In addition to DSAR tracking and management, Privacy Manager adds the "
1666
- "following features to your data protection compliance resources:"
1667
-
1668
- #: views\admin\privacy-manager\header.php:6
1669
- msgctxt "(Admin)"
1670
- msgid "Log and store ICO breach notifications"
1671
- msgstr "Log and store ICO breach notifications"
1672
-
1673
- #: views\admin\privacy-manager\header.php:7
1674
- msgctxt "(Admin)"
1675
- msgid "Keeps full record of all requests, ticketed and timeline"
1676
- msgstr "Keeps full record of all requests, ticketed and timeline"
1677
-
1678
- #: views\admin\privacy-manager\header.php:8
1679
- msgctxt "(Admin)"
1680
- msgid "Gap analysis and breach notifications"
1681
- msgstr "Gap analysis and breach notifications"
1682
-
1683
- #: views\admin\privacy-manager\header.php:9
1684
- msgctxt "(Admin)"
1685
- msgid "In depth activity log with all GDPR, CCPA, etc actions evidenced"
1686
- msgstr "In depth activity log with all GDPR, CCPA, etc actions evidenced"
1687
-
1688
- #: views\admin\privacy-manager\header.php:10
1689
- msgctxt "(Admin)"
1690
- msgid "Highlights areas of concern and where you need to focus"
1691
- msgstr "Highlights areas of concern and where you need to focus"
1692
-
1693
- #: views\admin\privacy-manager\header.php:11
1694
- msgctxt "(Admin)"
1695
- msgid ""
1696
- "eLearning platform with access for all staff to ensure privacy regulation "
1697
- "compliance and obligations"
1698
- msgstr ""
1699
- "eLearning platform with access for all staff to ensure privacy regulation "
1700
- "compliance and obligations"
1701
-
1702
- #: views\admin\privacy-manager\header.php:12
1703
- msgctxt "(Admin)"
1704
- msgid "Tracks who accesses the system, when and why"
1705
- msgstr "Tracks who accesses the system, when and why"
1706
-
1707
- #: views\admin\privacy-manager\header.php:15
1708
- msgctxt "(Admin)"
1709
- msgid ""
1710
- "Our system enables your business to demonstrate its obligations in "
1711
- "protecting your customer data, show understanding of your business "
1712
- "activities and deliver eLearning and online tests to employees, ensuring "
1713
- "everyone in your company understands your privacy compliance rules and best "
1714
- "practices to operate."
1715
- msgstr ""
1716
- "Our system enables your business to demonstrate its obligations in "
1717
- "protecting your customer data, show understanding of your business "
1718
- "activities and deliver eLearning and online tests to employees, ensuring "
1719
- "everyone in your company understands your privacy compliance rules and best "
1720
- "practices to operate."
1721
-
1722
- #: views\admin\privacy-manager\header.php:16
1723
- msgctxt "(Admin)"
1724
- msgid ""
1725
- "No matter where you are on your data privacy journey, the ultimate goal is "
1726
- "compliance."
1727
- msgstr ""
1728
- "No matter where you are on your data privacy journey, the ultimate goal is "
1729
- "compliance."
1730
-
1731
- #: views\admin\privacy-manager\header.php:16
1732
- msgctxt "(Admin)"
1733
- msgid "enables your organization to comply with all privacy regulations."
1734
- msgstr "enables your organization to comply with all privacy regulations."
1735
-
1736
- #: views\admin\support\contents.php:49
1737
- msgctxt "(Admin)"
1738
- msgid ""
1739
- "Found a bug or have a question about the plugin? Submit a support request "
1740
- "and we’ll get right on it!"
1741
- msgstr ""
1742
- "Found a bug or have a question about the plugin? Submit a support request "
1743
- "and we’ll get right on it!"
1744
-
1745
- #: views\admin\support\contents.php:58
1746
- msgctxt "(Admin)"
1747
- msgid "Need assistance in making your site compliant? We can help!"
1748
- msgstr "Need assistance in making your site compliant? We can help!"
1749
-
1750
- #: views\admin\general\woo-compatibility.php:9
1751
- msgctxt "(Admin)"
1752
- msgid "Enable WooCommerce data on GDPR tool"
1753
- msgstr "Enable WooCommerce data on GDPR tool"
1754
-
1755
- #: src\Admin\AdminTabGeneral.php:241
1756
- msgctxt "(Admin)"
1757
- msgid "Enable WooCommerce Compatibility"
1758
- msgstr "Enable WooCommerce Compatibility"
1759
-
1760
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:19
1761
- msgid "Note Regarding Order:"
1762
- msgstr "Note Regarding Order:"
1763
-
1764
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:20
1765
- msgid ""
1766
- "Your order with status Processing will not get deleted until status change."
1767
- msgstr ""
1768
- "Your order with status Processing will not get deleted until status change."
1769
-
1770
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:21
1771
- msgid "Your order with status Completed will get anonymize."
1772
- msgstr "Your order with status Completed will get anonymize."
1773
-
1774
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:22
1775
- msgid "If you delete Completed order you can't apply for refund."
1776
- msgstr "If you delete Completed order you can't apply for refund."
1777
-
1778
- #: views\admin\general\woo-compatibility.php:12
1779
- msgctxt "(Admin)"
1780
- msgid "Will work for WooCommerce Version 3.4.0 or later."
1781
- msgstr "Will work for WooCommerce Version 3.4.0 or later."
1782
-
1783
- #: views\admin\general\edd-compatibility.php:9
1784
- msgctxt "(Admin)"
1785
- msgid "Enable EDD data on GDPR tool."
1786
- msgstr "Enable EDD data on GDPR tool."
1787
-
1788
- #: views\admin\general\edd-compatibility.php:12
1789
- msgctxt "(Admin)"
1790
- msgid "Will work for EDD Version 2.0.0 or later."
1791
- msgstr "Will work for EDD Version 2.0.0 or later."
1792
-
1793
- #: src\Admin\AdminTabGeneral.php:262
1794
- msgctxt "(Admin)"
1795
- msgid "Enable EDD Compatibility"
1796
- msgstr "Enable EDD Compatibility"
1797
-
1798
- #: gdpr-framework.php:298
1799
- msgid "Cookie Policy"
1800
- msgstr "Cookie Policy"
1801
-
1802
- #: ConsentManager.php:96
1803
- msgctxt "(Admin)"
1804
- msgid ""
1805
- "This consent is visible by default on woocommerce checkout page. If someone "
1806
- "wishes to withdraw it, they should simply request to delete all their data."
1807
- msgstr ""
1808
- "This consent is visible by default on woocommerce checkout page. If someone "
1809
- "wishes to withdraw it, they should simply request to delete all their data."
1810
-
1811
- #: ConsentManager.php:96
1812
- msgctxt "(Admin)"
1813
- msgid "Woocommerce Policy Consent"
1814
- msgstr "Woocommerce Policy Consent"
1815
-
1816
- #: WoocommerceGdpr.php:150
1817
- msgid "Please acknowledge the Privacy Policy"
1818
- msgstr "Please acknowledge the Privacy Policy"
1819
-
1820
- #: woo-compatibility.php:9
1821
- msgctxt "(Admin)"
1822
- msgid "Enable WooCommerce data on GDPR tool."
1823
- msgstr "Enable WooCommerce data on GDPR tool."
1824
-
1825
- #: views\admin\general\enable-popup.php:12
1826
- msgctxt "(Admin)"
1827
- msgid ""
1828
- "<b>Note:</b> Need to add custom content <b>gdpr_cookie_consent</b> its "
1829
- "accepted on popup accept button."
1830
- msgstr ""
1831
- "<b>Note:</b> Need to add custom content <b>gdpr_cookie_consent</b> its "
1832
- "accepted on popup accept button."
1833
-
1834
- #: AdminTabCookiePopup.php:105
1835
- msgctxt "(Admin)"
1836
- msgid "Popup Dismiss Text"
1837
- msgstr "Popup Dismiss Text"
1838
-
1839
- #: AdminTabCookiePopup.php:98
1840
- msgctxt "(Admin)"
1841
- msgid "Popup Allow Text"
1842
- msgstr "Popup Allow Text"
1843
-
1844
- #: AdminTabGeneral.php:241
1845
- msgctxt "(Admin)"
1846
- msgid "Woocommerce Integration"
1847
- msgstr "Woocommerce Integration"
1848
-
1849
- #: AdminTabGeneral.php:259
1850
- msgctxt "(Admin)"
1851
- msgid "Easy Digital Download Integration"
1852
- msgstr "Easy Digital Download Integration"
1853
-
1854
- #: has-dpo.php:11
1855
- msgctxt "(Admin)"
1856
- msgid "I have appointed a Data Protection Officer (DPO)"
1857
- msgstr "I have appointed a Data Protection Officer (DPO)"
1858
-
1859
- #: AdminTabPrivacyPolicy.php:204
1860
- msgctxt "(Admin)"
1861
- msgid "Delete Text"
1862
- msgstr "Delete Text"
1863
-
1864
- #: consent.php:80
1865
- msgctxt "(Admin)"
1866
- msgid "Add consent type"
1867
- msgstr "Add consent type"
1868
-
1869
- #: AdminTabGeneral.php:127
1870
- msgctxt "(Admin)"
1871
- msgid "Privacy Policy Custom URL"
1872
- msgstr "Privacy Policy Custom URL"
1873
-
1874
- #: custom-policy-url.php:6
1875
- msgctxt "(Admin)"
1876
- msgid "Leave blank if privacy policy page already selected"
1877
- msgstr "Leave blank if privacy policy page already selected"
1878
-
1879
- #: woo-disable_checkbox.php:9
1880
- msgctxt "(Admin)"
1881
- msgid "Disable WooCommerce Privacy Checkbox"
1882
- msgstr "Disable WooCommerce Privacy Checkbox"
1883
-
1884
- #: AdminTabCookiePopup.php:133
1885
- msgctxt "(Admin)"
1886
- msgid "Popup Learn More Text"
1887
- msgstr "Popup Learn More Text"
1888
-
1889
- #: AdminTabGeneral.php:262
1890
- msgctxt "(Admin)"
1891
- msgid "Disable WooCommerce Register Privacy Checkbox"
1892
- msgstr "Disable WooCommerce Register Privacy Checkbox"
1893
-
1894
- #: AdminTabCookiePopup.php:121
1895
- msgctxt "(Admin)"
1896
- msgid "Cookie Acceptance link target"
1897
- msgstr "Cookie Acceptance link target"
1898
-
1899
- #: popup_link_target.php:3
1900
- msgctxt "(Admin)"
1901
- msgid "Next Tab"
1902
- msgstr "Next Tab"
1903
-
1904
- #: popup_link_target.php:5
1905
- msgctxt "(Admin)"
1906
- msgid "Self"
1907
- msgstr "Self"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/gdpr-framework-es_ES.mo CHANGED
Binary file
languages/gdpr-framework-es_ES.po CHANGED
@@ -7,358 +7,956 @@ msgid ""
7
  msgstr ""
8
  "Project-Id-Version: The GDPR Framework 1.0\n"
9
  "Report-Msgid-Bugs-To: gdpr@codelight.eu\n"
10
- "POT-Creation-Date: 2018-04-16 10:50+0000\n"
11
- "PO-Revision-Date: 2019-09-19 12:40+0530\n"
 
12
  "Language-Team: \n"
 
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
- "X-Generator: Poedit 1.5.7\n"
17
- "Last-Translator: \n"
18
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
19
- "Language: fr_FR\n"
20
 
21
- #: gdpr-framework.php:26
 
 
22
  msgctxt "(Admin)"
23
  msgid "WordPress GDPR &rsaquo; Error"
24
- msgstr "WordPress GDPR &rsaquo; Error"
 
 
 
 
 
25
 
26
- #: gdpr-framework.php:35
27
  msgctxt "(Admin)"
28
  msgid "Invalid PHP version"
29
- msgstr "Versión de PHP inválida"
30
 
31
- #: gdpr-framework.php:35
 
 
32
  msgctxt "(Admin)"
33
- msgid "You must be using PHP 5.6.33 or greater."
34
- msgstr "Debes estar usando PHP 5.6.33 o mayor."
35
 
36
- #: gdpr-framework.php:42
37
  msgctxt "(Admin)"
38
  msgid "Invalid WordPress version"
39
  msgstr "Versión de WordPress no válida"
40
 
41
- #: gdpr-framework.php:42
42
  msgctxt "(Admin)"
43
- msgid "You must be using WordPress 4.3.0 or greater."
44
- msgstr "Debes estar utilizando WordPress 4.3.0 o superior."
45
 
46
- #: gdpr-framework.php:52
 
 
 
 
47
  msgctxt "(Admin)"
48
  msgid ""
49
  "You appear to be running a development version of GDPR. You must run "
50
  "<code>composer install</code> from the plugin directory."
51
  msgstr ""
52
- "Pareces estar ejecutando una versión de desarrollo de GDPR. Debe ejecutar "
53
- "<code> composer install </code> desde el directorio de complementos."
54
 
55
- #: gdpr-framework.php:53
56
  msgctxt "(Admin)"
57
  msgid "Autoloader not found."
58
  msgstr "Autoloader no encontrado."
59
 
60
- #: gdpr-framework.php:115
61
- msgctxt "(Admin)"
62
- msgid "Anonymous"
63
- msgstr "Anónimo"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64
 
65
- #: src/Admin/AdminTab.php:115
 
 
 
 
 
66
  msgctxt "(Admin)"
67
  msgid "Save"
68
- msgstr "Salvar"
69
 
70
- #: src/Admin/AdminTab.php:151
71
  msgctxt "(Admin)"
72
  msgid "Policy generated!"
73
- msgstr "¡Política generada!"
74
 
75
  #: src/Admin/AdminTabGeneral.php:11
76
  msgctxt "(Admin)"
77
  msgid "General"
78
  msgstr "General"
79
 
80
- #: src/Admin/AdminTabGeneral.php:38
81
  msgctxt "(Admin)"
82
  msgid "General Settings"
83
  msgstr "Configuración general"
84
 
85
- #: src/Admin/AdminTabGeneral.php:43
 
 
86
  msgctxt "(Admin)"
87
  msgid "Enable Privacy Tools"
88
- msgstr "Habilitar herramientas de privacidad"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89
 
90
- #: src/Admin/AdminTabGeneral.php:53
91
  msgctxt "(Admin)"
92
  msgid "Pages"
93
  msgstr "Páginas"
94
 
95
- #: src/Admin/AdminTabGeneral.php:58 src/Admin/WordpressAdmin.php:151
 
 
96
  msgctxt "(Admin)"
97
  msgid "Privacy Tools Page"
98
- msgstr "Página de herramientas de privacidad"
99
 
100
- #: src/Admin/AdminTabGeneral.php:65 src/Admin/WordpressAdmin.php:147
 
 
 
 
 
 
 
101
  msgctxt "(Admin)"
102
  msgid "Privacy Policy Page"
103
- msgstr "Página de política de privacidad"
 
 
 
 
 
104
 
105
- #: src/Admin/AdminTabGeneral.php:72
106
  msgctxt "(Admin)"
107
  msgid "Terms & Conditions Page"
108
- msgstr "Página de Términos y Condiciones"
 
 
 
 
 
 
 
109
 
110
- #: src/Admin/AdminTabGeneral.php:82
 
 
111
  msgctxt "(Admin)"
112
  msgid "View & Export Data"
113
- msgstr "Ver y exportar datos"
114
 
115
- #: src/Admin/AdminTabGeneral.php:87
 
 
 
116
  msgctxt "(Admin)"
117
  msgid "Export action"
118
  msgstr "Acción de exportación"
119
 
120
- #: src/Admin/AdminTabGeneral.php:94 src/Admin/AdminTabGeneral.php:133
 
 
121
  msgctxt "(Admin)"
122
  msgid "Email to notify"
123
- msgstr "Email para notificar"
124
 
125
- #: src/Admin/AdminTabGeneral.php:105
 
 
 
126
  msgctxt "(Admin)"
127
  msgid "Delete & Anonymize Data"
128
  msgstr "Eliminar y anonimizar datos"
129
 
130
- #: src/Admin/AdminTabGeneral.php:110
 
 
131
  msgctxt "(Admin)"
132
  msgid "Delete action"
133
- msgstr "Eliminar acción"
134
 
135
- #: src/Admin/AdminTabGeneral.php:117
 
 
 
136
  msgctxt "(Admin)"
137
  msgid "Delete or reassign content?"
138
  msgstr "¿Borrar o reasignar contenido?"
139
 
140
- #: src/Admin/AdminTabGeneral.php:125
 
 
 
141
  msgctxt "(Admin)"
142
  msgid "Reassign content to"
143
  msgstr "Reasignar contenido a"
144
 
145
- #: src/Admin/AdminTabGeneral.php:145
146
  msgctxt "(Admin)"
147
  msgid "Styling"
148
  msgstr "Estilo"
149
 
150
- #: src/Admin/AdminTabGeneral.php:150
 
 
 
151
  msgctxt "(Admin)"
152
  msgid "Enable basic styling on Privacy Tools page"
153
- msgstr "Habilitar el estilo básico en la página de herramientas de privacidad"
 
154
 
155
- #: src/Admin/AdminTabGeneral.php:162
156
  msgctxt "(Admin)"
157
  msgid "Compatibility"
158
  msgstr "Compatibilidad"
159
 
160
- #: src/Admin/AdminTabGeneral.php:167
 
 
 
161
  msgctxt "(Admin)"
162
  msgid "Enable automatic theme compatibility"
163
  msgstr "Habilitar la compatibilidad automática de temas"
164
 
165
- #: src/Admin/AdminTabGeneral.php:184 src/Admin/AdminTabGeneral.php:200
166
- #: src/Admin/AdminTabGeneral.php:213 src/Admin/AdminTabGeneral.php:252
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
167
  #: views/installer/steps/configuration-settings.php:62
168
  msgctxt "(Admin)"
169
  msgid "&mdash; Select &mdash;"
170
  msgstr "&mdash; Seleccionar &mdash;"
171
 
172
- #: src/Admin/WordpressAdmin.php:65
173
  msgctxt "(Admin)"
174
  msgid "Privacy & GDPR Settings"
175
- msgstr "Configuraciones de privacidad y GDPR"
176
 
177
- #: src/Admin/WordpressAdmin.php:66
178
  msgctxt "(Admin)"
179
- msgid "Privacy"
180
- msgstr "Intimidad"
 
 
 
 
 
 
 
 
 
181
 
182
  #: src/Components/Consent/AdminTabConsent.php:30
183
- #: src/Components/Consent/AdminTabConsent.php:49
184
  msgctxt "(Admin)"
185
  msgid "Consent"
186
  msgstr "Consentimiento"
187
 
188
- #: src/Components/Consent/AdminTabConsent.php:157
 
 
 
 
 
 
 
 
 
 
 
 
189
  msgctxt "(Admin)"
190
  msgid "Consent slug is a required field!"
191
- msgstr "Slug consentimiento es un campo obligatorio!"
192
 
193
- #: src/Components/Consent/AdminTabConsent.php:162
 
 
 
 
194
  msgctxt "(Admin)"
195
  msgid ""
196
  "You may only use alphanumeric characters, dash and underscore in the consent "
197
  "slug field."
198
- msgstr ""
199
- "Solo puede usar caracteres alfanuméricos, guiones y guiones bajos en el "
200
- "campo de barra de consentimiento."
201
 
202
- #: src/Components/Consent/AdminTabConsent.php:167
203
  msgctxt "(Admin)"
204
  msgid "Consent title is a required field!"
205
- msgstr "Título de consentimiento es un campo obligatorio!"
 
 
 
 
 
 
 
 
 
206
 
207
- #: src/Components/Consent/ConsentManager.php:46
208
- #: views/modules/contact-form-7/content-privacy.php:2
209
- #: views/modules/wordpress-comments/terms-checkbox.php:14
210
- #: views/modules/wordpress-user/registration-terms-checkbox.php:15
 
 
 
 
 
 
 
 
211
  #, php-format
212
  msgid "I accept the %sPrivacy Policy%s"
213
  msgstr "acepto el %sPolítica de privacidad%s"
214
 
215
- #: src/Components/Consent/ConsentManager.php:50
216
- #: src/Components/Consent/ConsentManager.php:69
 
 
 
 
217
  msgctxt "(Admin)"
218
  msgid ""
219
  "This consent is not visible by default. If someone wishes to withdraw it, "
220
  "they should simply request to delete all their data."
221
  msgstr ""
222
- "Este consentimiento no es visible por defecto. Si alguien desea retirarlo, "
223
- "simplemente debe solicitar la eliminación de todos sus datos."
 
224
 
225
- #: src/Components/Consent/ConsentManager.php:65
226
  #, php-format
227
  msgid "I accept the %sTerms & Conditions%s"
228
  msgstr "acepto el %sTérminos y condiciones%s"
229
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
230
  #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:19
231
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:61
232
  #: views/admin/privacy-policy/generated.php:1 views/installer/header.php:41
233
  msgctxt "(Admin)"
234
  msgid "Privacy Policy"
235
  msgstr "Política de privacidad"
236
 
237
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:70
238
  msgctxt "(Admin)"
239
  msgid "Company information"
240
  msgstr "Información de la empresa"
241
 
242
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:75
243
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:209
244
  msgctxt "(Admin)"
245
  msgid "Company Name"
246
- msgstr "nombre de empresa"
247
 
248
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:82
249
  msgctxt "(Admin)"
250
  msgid "Company Email"
251
- msgstr "Email de la empresa"
252
 
253
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:89
254
  msgctxt "(Admin)"
255
  msgid "Company Location"
256
- msgstr "Ubicación de la compañía"
257
 
258
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:105
259
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:245
 
 
260
  msgctxt "(Admin)"
261
  msgid "Representative Contact Name"
262
- msgstr "Nombre de contacto del representante"
263
 
264
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:112
265
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:252
 
 
266
  msgctxt "(Admin)"
267
  msgid "Representative Contact Email"
268
- msgstr "Correo electrónico de contacto del representante"
269
 
270
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:119
271
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:259
 
 
272
  msgctxt "(Admin)"
273
  msgid "Representative Contact Phone"
274
- msgstr "Teléfono de contacto del representante"
275
 
276
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:135
 
 
277
  msgctxt "(Admin)"
278
  msgid "Data Protection Authority"
279
- msgstr "Autoridad de Protección de Datos"
280
 
281
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:141
282
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:286
 
 
283
  msgctxt "(Admin)"
284
  msgid "Data Protection Authority Website"
285
- msgstr "Sitio web de la Autoridad de Protección de Datos"
286
 
287
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:148
288
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:293
 
 
289
  msgctxt "(Admin)"
290
  msgid "Data Protection Authority Email"
291
- msgstr "Correo electrónico de la Autoridad de Protección de Datos"
292
 
293
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:155
294
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:300
 
 
295
  msgctxt "(Admin)"
296
  msgid "Data Protection Authority Phone"
297
- msgstr "Teléfono de la Autoridad de Protección de Datos"
298
 
299
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:165
300
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:175
 
 
301
  msgctxt "(Admin)"
302
  msgid "Data Protection Officer"
303
- msgstr "Oficial de protección de datos"
304
 
305
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:168
 
 
 
306
  msgctxt "(Admin)"
307
  msgid "Knowledge base: Do I need to appoint a Data Protection Officer?"
308
  msgstr ""
309
  "Base de conocimientos: ¿Necesito nombrar un Oficial de Protección de Datos?"
310
 
311
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:182
 
 
312
  msgctxt "(Admin)"
313
  msgid "Data Protection Officer Name"
314
- msgstr "Nombre del oficial de protección de datos"
315
 
316
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:190
 
 
317
  msgctxt "(Admin)"
318
  msgid "Data Protection Officer Email"
319
- msgstr "Oficial de protección de datos de correo electrónico"
 
 
 
 
 
 
320
 
321
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:216
322
  msgctxt "(Admin)"
323
  msgid "Contact Email"
324
  msgstr "Email de contacto"
325
 
326
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:235
 
 
327
  msgctxt "(Admin)"
328
  msgid "Representative Contact"
329
- msgstr "Contacto Representativo"
330
 
331
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:238
 
 
 
332
  msgctxt "(Admin)"
333
  msgid "Knowledge base: Do I need to appoint an EU-based representative?"
334
  msgstr "Base de conocimientos: ¿Debo nombrar un representante en la UE?"
335
 
336
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:317
337
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:324
 
 
 
 
 
 
 
 
338
  msgctxt "(Admin)"
339
  msgid "DPO Name"
340
- msgstr "Nombre de DPO"
 
 
 
 
 
 
 
341
 
342
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:420
 
 
343
  msgctxt "(Admin)"
344
  msgid "Save & Generate Policy"
345
- msgstr "Guardar y generar política"
346
 
347
- #: src/Components/PrivacyPolicy/PrivacyPolicy.php:82
348
- #: src/Installer/Installer.php:271 src/Installer/Steps/PolicySettings.php:199
349
  #: views/themes/storefront/footer.php:3
350
  #: views/themes/twentyseventeen/footer.php:3
351
  #: views/themes/twentysixteen/footer.php:4
352
  msgid "Privacy Policy"
353
  msgstr "Política de privacidad"
354
 
355
- #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
356
  msgid "This page is currently disabled."
357
  msgstr "Esta página está actualmente deshabilitada."
358
 
359
- #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:35
360
- #: src/Installer/Installer.php:279
361
- #: src/Installer/Steps/ConfigurationPages.php:55
 
 
 
 
 
 
 
362
  #: views/themes/storefront/footer.php:7
363
  #: views/themes/twentyseventeen/footer.php:7
364
  #: views/themes/twentysixteen/footer.php:9
@@ -369,15 +967,7 @@ msgstr "Herramientas de privacidad"
369
  #: src/Components/Support/AdminTabSupport.php:20
370
  msgctxt "(Admin)"
371
  msgid "Support"
372
- msgstr "Apoyo"
373
-
374
- #: src/Components/WordpressComments/WordpressComments.php:90
375
- #, php-format
376
- msgid ""
377
- "%sERROR:%s You need to accept the terms and conditions to post a comment."
378
- msgstr ""
379
- "%sERROR:%s Debe aceptar los términos y condiciones para publicar un "
380
- "comentario."
381
 
382
  #: src/Components/WordpressUser/Controllers/DashboardDataPageController.php:54
383
  #: views/privacy-tools/notices.php:19
@@ -389,7 +979,7 @@ msgstr "Hemos recibido su solicitud y le responderemos en un plazo de 30 días."
389
  msgid "Consent withdrawn."
390
  msgstr "Consentimiento retirado."
391
 
392
- #: src/Components/WordpressUser/RegistrationForm.php:42
393
  msgid "<strong>ERROR</strong>: You must accept the terms and conditions."
394
  msgstr "<strong>ERROR</strong>: Debe aceptar los Términos y Condiciones."
395
 
@@ -402,9 +992,11 @@ msgstr "Herramientas de privacidad"
402
 
403
  #: src/DataSubject/AdminTabDataSubject.php:27
404
  #: src/DataSubject/AdminTabDataSubject.php:41
 
 
405
  msgctxt "(Admin)"
406
  msgid "Data Subjects"
407
- msgstr "Temas de datos"
408
 
409
  #: src/DataSubject/DataRepository.php:143
410
  msgid "Data exported"
@@ -422,8 +1014,8 @@ msgstr "Datos eliminados"
422
  msgid "Data removal request"
423
  msgstr "Solicitud de eliminación de datos"
424
 
425
- #: src/DataSubject/DataSubjectIdentificator.php:65
426
- #: src/DataSubject/DataSubjectIdentificator.php:82
427
  msgid "Your personal data on"
428
  msgstr "Sus datos personales en"
429
 
@@ -455,7 +1047,7 @@ msgstr "Chipre"
455
  #: src/Helpers.php:32
456
  msgctxt "(Admin)"
457
  msgid "Czech Republic"
458
- msgstr "Republica checa"
459
 
460
  #: src/Helpers.php:33
461
  msgctxt "(Admin)"
@@ -567,1364 +1159,3146 @@ msgctxt "(Admin)"
567
  msgid "United Kingdom"
568
  msgstr "Reino Unido"
569
 
570
- #: src/Helpers.php:69
571
  msgctxt "(Admin)"
572
- msgid "Iceland"
573
- msgstr "Islandia"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
574
 
575
  #: src/Helpers.php:70
576
  msgctxt "(Admin)"
577
- msgid "Norway"
578
- msgstr "Noruega"
579
 
580
  #: src/Helpers.php:71
581
  msgctxt "(Admin)"
582
- msgid "Liechtenstein"
583
- msgstr "Liechtenstein"
584
 
585
  #: src/Helpers.php:72
586
  msgctxt "(Admin)"
587
- msgid "Switzerland"
588
- msgstr "Suiza"
589
 
590
  #: src/Helpers.php:73
591
  msgctxt "(Admin)"
592
- msgid "United States"
593
- msgstr "Estados Unidos"
594
 
595
  #: src/Helpers.php:74
596
  msgctxt "(Admin)"
597
- msgid "Rest of the world"
598
- msgstr "Resto del mundo"
599
 
600
- #: src/Helpers.php:145
601
- msgid "An error has occurred. Please contact the site administrator."
602
- msgstr ""
603
- "Se ha producido un error. Por favor contacte al administrador del sitio."
604
 
605
- #: src/Installer/Installer.php:135
606
  msgctxt "(Admin)"
607
- msgid "Setup Wizard"
608
- msgstr "Asistente de configuración"
609
 
610
- #: src/Installer/Steps/ConfigurationPages.php:23
611
- #: src/Installer/Steps/PolicySettings.php:23
612
- #: src/Installer/Steps/PolicySettings.php:48
613
  msgctxt "(Admin)"
614
- msgid "&mdash; Create a new page &mdash;"
615
- msgstr "&mdash; Crear una nueva página &mdash;"
616
 
617
- #: src/Installer/Steps/PolicySettings.php:38
618
  msgctxt "(Admin)"
619
- msgid ""
620
- "We have automatically selected your WooCommerce Terms & Conditions page."
621
- msgstr ""
622
- "Hemos seleccionado automáticamente su página de Términos y Condiciones de "
623
- "WooCommerce."
624
 
625
- #: src/Modules/ContactForm7/ContactForm7.php:35
626
  msgctxt "(Admin)"
627
- msgid "gdpr terms txt"
628
- msgstr "gdpr términos txt"
629
 
630
- #: src/Router.php:80 src/Router.php:92 src/Router.php:125 src/Router.php:141
631
- #, php-format
632
- msgid "Nonce error for action \"%s\". Please go back and try again!"
633
- msgstr ""
634
- "Error de nonce para la acción \"% s \". ¡Por favor, regrese y vuelva a "
635
- "intentarlo!"
636
 
637
- #: src/Router.php:149
638
  msgctxt "(Admin)"
639
- msgid "You do not have the required permissions to perform this action!"
640
- msgstr "¡No tiene los permisos necesarios para realizar esta acción!"
641
 
642
- #: views/admin/consent.php:3
643
  msgctxt "(Admin)"
644
- msgid "Default consent types"
645
- msgstr "Tipos de consentimiento por defecto"
646
 
647
- #: views/admin/consent.php:4
648
  msgctxt "(Admin)"
649
- msgid ""
650
- "These are the consent types that have been automatically registered by the "
651
- "framework or a plugin."
652
- msgstr ""
653
- "Estos son los tipos de consentimiento que el marco o un complemento han "
654
- "registrado automáticamente."
655
 
656
- #: views/admin/consent.php:7 views/admin/consent.php:52
657
  msgctxt "(Admin)"
658
- msgid "Slug"
659
- msgstr "Babosa"
660
 
661
- #: views/admin/consent.php:8 views/admin/consent.php:38
662
- #: views/admin/consent.php:60
663
  msgctxt "(Admin)"
664
- msgid "Title"
665
- msgstr "Título"
666
 
667
- #: views/admin/consent.php:9 views/admin/consent.php:41
668
- #: views/admin/consent.php:63
669
  msgctxt "(Admin)"
670
- msgid "Description"
671
- msgstr "Descripción"
672
 
673
- #: views/admin/consent.php:10
674
  msgctxt "(Admin)"
675
- msgid "Visibility"
676
- msgstr "Visibilidad"
677
 
678
- #: views/admin/consent.php:18
679
  msgctxt "(Admin)"
680
- msgid "Visible"
681
- msgstr "Visible"
682
 
683
- #: views/admin/consent.php:20
684
  msgctxt "(Admin)"
685
- msgid "Hidden"
686
- msgstr "Oculto"
687
 
688
- #: views/admin/consent.php:29
689
  msgctxt "(Admin)"
690
- msgid "Custom consent types"
691
- msgstr "Tipos de consentimiento personalizados"
692
 
693
- #: views/admin/consent.php:30
694
  msgctxt "(Admin)"
695
- msgid ""
696
- "Here you can add custom consent types to track. They will not be used "
697
- "anywhere by default - you will need to build an integration for each of them."
698
- msgstr ""
699
- "Aquí puede agregar tipos de consentimiento personalizados para realizar un "
700
- "seguimiento. No se utilizarán en ningún lugar de forma predeterminada; "
701
- "deberá crear una integración para cada uno de ellos."
702
 
703
- #: views/admin/consent.php:35
704
  msgctxt "(Admin)"
705
- msgid "Machine-readable slug"
706
- msgstr "Babosa legible por máquina"
707
 
708
- #: views/admin/consent.php:44 views/admin/consent.php:68
709
  msgctxt "(Admin)"
710
- msgid "Visible?"
711
- msgstr "¿Visible?"
712
 
713
- #: views/admin/consent.php:72
714
  msgctxt "(Admin)"
715
- msgid "Remove"
716
- msgstr "retirar"
717
 
718
- #: views/admin/consent.php:93
719
  msgctxt "(Admin)"
720
- msgid "Additional info"
721
- msgstr "información adicional"
722
 
723
- #: views/admin/consent.php:95
724
  msgctxt "(Admin)"
725
- msgid ""
726
- "This text will be displayed to your data subjects on the Privacy Tools page."
727
- msgstr ""
728
- "Este texto se mostrará a sus sujetos de datos en la página Herramientas de "
729
- "privacidad."
730
 
731
- #: views/admin/data-subjects/search-form.php:2
732
  msgctxt "(Admin)"
733
- msgid ""
734
- "On this page, you can find which data subjects personal data you are storing "
735
- "and download, export or delete it."
736
- msgstr ""
737
- "En esta página, puede encontrar los datos personales de los sujetos de datos "
738
- "que está almacenando y descargar, exportar o eliminar."
739
 
740
- #: views/admin/data-subjects/search-form.php:10
741
  msgctxt "(Admin)"
742
- msgid "Find data subject by email"
743
- msgstr "Encontrar los datos por correo electrónico."
744
 
745
- #: views/admin/data-subjects/search-form.php:11
746
  msgctxt "(Admin)"
747
- msgid "Email address"
748
- msgstr "Dirección de correo electrónico"
749
 
750
- #: views/admin/data-subjects/search-form.php:16
751
  msgctxt "(Admin)"
752
- msgid "Search"
753
- msgstr "Buscar"
754
 
755
- #: views/admin/data-subjects/search-results.php:7
756
  msgctxt "(Admin)"
757
- msgid "Username"
758
- msgstr "Nombre de usuario"
759
 
760
- #: views/admin/data-subjects/search-results.php:12
761
  msgctxt "(Admin)"
762
- msgid "is not a registered user."
763
- msgstr "no es un usuario registrado."
764
 
765
- #: views/admin/data-subjects/search-results.php:16
766
  msgctxt "(Admin)"
767
- msgid "Download data (html)"
768
- msgstr "Descargar datos (html)"
769
 
770
- #: views/admin/data-subjects/search-results.php:17
771
  msgctxt "(Admin)"
772
- msgid "Export data (json)"
773
- msgstr "Exportar datos (json)"
774
 
775
- #: views/admin/data-subjects/search-results.php:21
776
  msgctxt "(Admin)"
777
- msgid ""
778
- "This user has admin capabilities. Deleting data via this interface is "
779
- "disabled."
780
- msgstr ""
781
- "Este usuario tiene capacidades de administrador. La eliminación de datos a "
782
- "través de esta interfaz está deshabilitada."
783
 
784
- #: views/admin/data-subjects/search-results.php:24
785
  msgctxt "(Admin)"
786
- msgid "Anonymize data"
787
- msgstr "Anonimizar datos"
788
 
789
- #: views/admin/data-subjects/search-results.php:25
 
 
790
  msgctxt "(Admin)"
791
- msgid "Delete data"
792
- msgstr "Borrar datos"
793
 
794
- #: views/admin/data-subjects/search-results.php:29
795
  msgctxt "(Admin)"
796
- msgid "No data found!"
797
- msgstr "¡Datos no encontrados!"
798
 
799
- #: views/admin/general/delete-action-email.php:5
800
- #: views/admin/general/export-action-email.php:5
801
- #: views/installer/steps/configuration-settings.php:29
802
- #: views/installer/steps/configuration-settings.php:79
803
- msgid "Email address"
804
- msgstr "Dirección de correo electrónico"
805
 
806
- #: views/admin/general/delete-action-reassign.php:3
807
- #: views/installer/steps/configuration-settings.php:50
808
  msgctxt "(Admin)"
809
- msgid "Delete content"
810
- msgstr "Eliminar contenido"
811
 
812
- #: views/admin/general/delete-action-reassign.php:6
813
- #: views/installer/steps/configuration-settings.php:53
814
  msgctxt "(Admin)"
815
- msgid "Reassign content to a user"
816
- msgstr "Reasignar contenido a un usuario"
817
 
818
- #: views/admin/general/delete-action-reassign.php:10
819
  msgctxt "(Admin)"
820
- msgid ""
821
- "If the user has submitted any content on your site, should it be deleted or "
822
- "reassigned to another user?"
823
- msgstr ""
824
- "Si el usuario ha enviado algún contenido en su sitio, ¿debería eliminarse o "
825
- "reasignarse a otro usuario?"
826
 
827
- #: views/admin/general/description-data-page.php:2
828
  msgctxt "(Admin)"
829
- msgid ""
830
- "Select the page where users can go to control their data. This page must "
831
- "contain the [gdpr_privacy_tools] shortcode."
832
- msgstr ""
833
- "Seleccione la página donde los usuarios pueden ir para controlar sus datos. "
834
- "Esta página debe contener el shortcode [gdpr_privacy_tools]."
835
 
836
- #: views/admin/general/enable.php:9
837
  msgctxt "(Admin)"
838
- msgid "Enable the view, export and forget functionality for users and visitors"
839
- msgstr ""
840
- "Habilitar la funcionalidad de visualización, exportación y olvido para "
841
- "usuarios y visitantes."
842
 
843
- #: views/admin/general/enable.php:12
844
  msgctxt "(Admin)"
845
- msgid ""
846
- "Enable the Privacy Tools page on front-end and dashboard. This allows "
847
- "visitors to request viewing and deleting their personal data and withdraw "
848
- "consents."
849
- msgstr ""
850
- "Habilitar la página de herramientas de privacidad en el front-end y el panel "
851
- "de control. Esto permite a los visitantes solicitar la visualización y "
852
- "eliminación de sus datos personales y retirar los consentimientos."
853
 
854
- #: views/admin/general/theme-compatibility.php:9
855
- #: views/installer/steps/integrations.php:21
856
  msgctxt "(Admin)"
857
- msgid ""
858
- "Automatically add Privacy Policy and Privacy Tools links to your site footer."
859
- msgstr ""
860
- "Agregue automáticamente los vínculos de la Política de privacidad y las "
861
- "Herramientas de privacidad a su pie de página."
862
 
863
- #: views/admin/notices/header.php:4 views/admin/settings-page.php:3
864
- #: views/installer/header.php:23
865
  msgctxt "(Admin)"
866
- msgid "The GDPR Framework"
867
- msgstr "El marco GDPR"
868
 
869
- #: views/admin/notices/helper-autoinstall.php:2
870
  msgctxt "(Admin)"
871
- msgid ""
872
- "A Privacy Policy page has been created, but it is empty. You can generate a "
873
- "policy template on this page."
874
- msgstr ""
875
- "Se ha creado una página de Política de privacidad, pero está vacía. Puede "
876
- "generar una plantilla de política en esta página."
877
 
878
- #: views/admin/notices/helper-policy.php:2
879
  msgctxt "(Admin)"
880
- msgid ""
881
- "Heads up - your Privacy Policy still requires some attention. Find the "
882
- "places marked with [TODO] and replace them with real content!"
883
- msgstr ""
884
- "Heads up - su política de privacidad todavía requiere un poco de atención. "
885
- "¡Encuentre los lugares marcados con [TODO] y reemplácelos con contenido real!"
886
 
887
- #: views/admin/notices/helper-tools.php:2
888
  msgctxt "(Admin)"
889
- msgid ""
890
- "The contents of this page should contain the [gdpr_privacy_tools] shortcode."
891
- msgstr ""
892
- "El contenido de esta página debe contener el shortcode [gdpr_privacy_tools]."
893
 
894
- #: views/admin/privacy-policy/description-policy-page.php:2
895
  msgctxt "(Admin)"
896
- msgid "Select the page which will contain your Privacy Policy"
897
- msgstr "Seleccione la página que contendrá su Política de Privacidad"
898
 
899
- #: views/admin/privacy-policy/generated.php:3
900
  msgctxt "(Admin)"
901
- msgid "Your Privacy Policy has been generated."
902
- msgstr "Su política de privacidad ha sido generada."
903
 
904
- #: views/admin/privacy-policy/generated.php:20
905
  msgctxt "(Admin)"
906
- msgid "&laquo; Back"
907
- msgstr "&laquo; Espalda"
908
 
909
- #: views/admin/privacy-policy/header.php:2
910
  msgctxt "(Admin)"
911
- msgid ""
912
- "This page allows you to generate a Privacy Policy based on the information "
913
- "you entered below."
914
- msgstr ""
915
- "Esta página le permite generar una Política de privacidad basada en la "
916
- "información que ingresó a continuación."
917
 
918
- #: views/admin/settings-page.php:31
919
- #, php-format
920
  msgctxt "(Admin)"
921
- msgid "The GDPR Framework. Built with &#9829; by %sCodelight%s."
922
- msgstr "The GDPR Framework. Elaborado con &#9829; por %sCodelight%s."
923
 
924
- #: views/admin/support/contents.php:5 views/installer/steps/finish.php:10
925
  msgctxt "(Admin)"
926
- msgid "Need more info?"
927
- msgstr "¿Necesitas más información?"
928
 
929
- #: views/admin/support/contents.php:11 views/installer/steps/finish.php:16
930
  msgctxt "(Admin)"
931
- msgid "Site Owner's guide to GDPR"
932
- msgstr "Guía del propietario del sitio para GDPR"
933
 
934
- #: views/admin/support/contents.php:14 views/installer/steps/finish.php:19
 
 
935
  msgctxt "(Admin)"
936
- msgid "Read the full guide on GDPR compliance."
937
- msgstr "Lea la guía completa sobre el cumplimiento de GDPR."
938
 
939
- #: views/admin/support/contents.php:20 views/installer/steps/finish.php:25
940
  msgctxt "(Admin)"
941
- msgid "Knowledge base"
942
- msgstr "Base de conocimientos"
943
 
944
- #: views/admin/support/contents.php:23 views/installer/steps/finish.php:28
945
  msgctxt "(Admin)"
946
- msgid "Check out the knowledge base for common questions and answers."
947
- msgstr ""
948
- "Echa un vistazo a la base de conocimientos para preguntas y respuestas "
949
- "comunes."
950
 
951
- #: views/admin/support/contents.php:29 views/installer/steps/finish.php:34
952
  msgctxt "(Admin)"
953
- msgid "Developer's guide to GDPR"
954
- msgstr "Guia del desarrollador para GDPR"
955
 
956
- #: views/admin/support/contents.php:32 views/installer/steps/finish.php:37
 
 
957
  msgctxt "(Admin)"
958
- msgid "We have a thorough guide to help making custom sites compliant."
959
- msgstr ""
960
- "Tenemos una guía completa para ayudar a que los sitios personalizados sean "
961
- "compatibles."
962
 
963
- #: views/admin/support/contents.php:40 views/installer/steps/finish.php:45
 
 
964
  msgctxt "(Admin)"
965
- msgid "Need help?"
966
- msgstr "¿Necesitas ayuda?"
967
 
968
- #: views/admin/support/contents.php:46 views/installer/steps/finish.php:51
969
  msgctxt "(Admin)"
970
- msgid "Submit a support request"
971
- msgstr "Enviar una solicitud de soporte"
972
 
973
- #: views/admin/support/contents.php:49 views/installer/steps/finish.php:54
974
  msgctxt "(Admin)"
975
- msgid ""
976
- "Found a bug or problem with the plugin? Post in the wordpress.org support "
977
- "forum."
978
- msgstr ""
979
- "¿Encontró un error o problema con el plugin? Publicar en el foro de soporte "
980
- "de wordpress.org."
981
 
982
- #: views/admin/support/contents.php:55 views/installer/steps/finish.php:60
983
  msgctxt "(Admin)"
984
- msgid "Request a consultation"
985
- msgstr "Solicitar una consulta"
986
 
987
- #: views/admin/support/contents.php:58 views/installer/steps/finish.php:63
 
 
988
  msgctxt "(Admin)"
989
- msgid ""
990
- "Need development or legal assistance in making your site compliant? We can "
991
- "help!"
992
- msgstr ""
993
- "¿Necesita asistencia legal o de desarrollo para que su sitio sea compatible? "
994
- "¡Podemos ayudar!"
995
 
996
- #: views/admin/wizard-buttons.php:2
 
 
997
  msgctxt "(Admin)"
998
- msgid "Restart setup wizard"
999
- msgstr "Asistente de configuración de reinicio"
1000
 
1001
- #: views/email/action-export.php:8 views/email/action-forget.php:12
 
 
1002
  msgctxt "(Admin)"
1003
- msgid ""
1004
- "This email is just for your information. You don't need to take any action"
1005
- msgstr ""
1006
- "Este correo electrónico es sólo para su información. No necesitas tomar "
1007
- "ninguna acción."
1008
 
1009
- #: views/email/action-forget.php:8
 
 
1010
  msgctxt "(Admin)"
1011
- msgid "The data subject had a user account on your website."
1012
- msgstr "El sujeto de los datos tenía una cuenta de usuario en su sitio web."
1013
 
1014
- #: views/email/identify-data-subject.php:2
1015
- msgid "Someone has requested access to your data on"
1016
- msgstr "Alguien ha solicitado acceso a sus datos en"
 
 
 
1017
 
1018
- #: views/email/identify-data-subject.php:3
1019
- msgid "If this was a mistake, just ignore this email and nothing will happen."
1020
- msgstr ""
1021
- "Si esto fue un error, simplemente ignora este correo electrónico y no pasará "
1022
- "nada."
 
1023
 
1024
- #: views/email/identify-data-subject.php:4
1025
- msgid "To manage your data, visit the following address:"
1026
- msgstr "Para administrar sus datos, visite la siguiente dirección:"
 
 
 
1027
 
1028
- #: views/email/identify-data-subject.php:10
1029
- msgid "This link is valid for 15 minutes."
1030
- msgstr "Este enlace es válido por 15 minutos."
 
 
 
1031
 
1032
- #: views/email/no-data.php:2
1033
- msgid "Someone has requested information about your personal data on"
1034
- msgstr "Alguien ha solicitado información sobre sus datos personales en"
 
 
 
1035
 
1036
- #: views/email/no-data.php:3
1037
- msgid "None of your personal data is stored on"
1038
- msgstr "Ninguno de sus datos personales se almacena en"
 
 
 
1039
 
1040
- #: views/email/no-data.php:5
1041
- msgid ""
1042
- "If this was a mistake or you did not request this email, just ignore it and "
1043
- "nothing will happen."
1044
- msgstr ""
1045
- "Si esto fue un error o no solicitó este correo electrónico, simplemente "
1046
- "ignórelo y no pasará nada."
1047
 
1048
- #: views/email/request-export.php:13 views/email/request-forget.php:13
 
 
1049
  msgctxt "(Admin)"
1050
- msgid "As a reminder: according to GDPR, you have 30 days to comply."
1051
- msgstr ""
1052
- "Como recordatorio, y de acuerdo con el RGPD, tienes 30 días para cumplirlo."
1053
 
1054
- #: views/global/delete-action.php:2
 
 
1055
  msgctxt "(Admin)"
1056
- msgid "Automatically anonymize data"
1057
- msgstr "Anonimizar los datos de forma automática"
1058
 
1059
- #: views/global/delete-action.php:5
 
 
1060
  msgctxt "(Admin)"
1061
- msgid "Automatically delete data"
1062
- msgstr "Borrar los datos de forma automática"
1063
 
1064
- #: views/global/delete-action.php:9
 
 
1065
  msgctxt "(Admin)"
1066
- msgid "Automatically anonymize data and notify me via email"
1067
- msgstr "Anonimizar automáticamente los datos y avisar por email"
1068
 
1069
- #: views/global/delete-action.php:13
 
 
1070
  msgctxt "(Admin)"
1071
- msgid "Automatically delete data and notify me via email"
1072
- msgstr "Borrar automáticamente los datos y avisar por email"
1073
 
1074
- #: views/global/delete-action.php:16 views/global/export-action.php:10
 
 
1075
  msgctxt "(Admin)"
1076
- msgid "Only notify me via email"
1077
- msgstr "Solo avisar por email"
1078
 
1079
- #: views/global/export-action.php:2
 
 
1080
  msgctxt "(Admin)"
1081
- msgid "Automatically download data"
1082
- msgstr "Descargar automáticamente los datos"
1083
 
1084
- #: views/global/export-action.php:6
 
 
1085
  msgctxt "(Admin)"
1086
- msgid "Automatically download data and notify me via email"
1087
- msgstr "Descargar automáticamente los datos y avisar por email"
1088
 
1089
- #: views/installer/continue-notice.php:2
 
 
1090
  msgctxt "(Admin)"
1091
- msgid "The The GDPR Framework setup has not been finalized yet."
1092
- msgstr ""
1093
- "La configuración del plugin The GDPR Framework todavía no ha finalizado."
1094
 
1095
- #: views/installer/continue-notice.php:3
 
 
1096
  msgctxt "(Admin)"
1097
- msgid "You can continue the setup at any time."
1098
- msgstr "Puedes continuar con la configuración en cualquier momento."
1099
 
1100
- #: views/installer/continue-notice.php:6
 
 
1101
  msgctxt "(Admin)"
1102
- msgid "Continue the setup wizard"
1103
- msgstr "Continuar con el asistente de configuración"
1104
 
1105
- #: views/installer/continue-notice.php:9
 
 
1106
  msgctxt "(Admin)"
1107
- msgid "Hide this message"
1108
- msgstr "Ocultar este mensaje"
1109
 
1110
- #: views/installer/footer.php:7
1111
- msgid "Back"
1112
- msgstr "Volver atrás"
 
 
 
1113
 
1114
- #: views/installer/header.php:26
 
 
1115
  msgctxt "(Admin)"
1116
- msgid "I need help"
1117
- msgstr "Necesito ayuda"
1118
 
1119
- #: views/installer/header.php:29
 
 
1120
  msgctxt "(Admin)"
1121
- msgid "Developer Docs"
1122
- msgstr "Documentos para desarrolladores"
1123
 
1124
- #: views/installer/header.php:36
 
 
1125
  msgctxt "(Admin)"
1126
- msgid "Configuration"
1127
- msgstr "Configuración"
1128
 
1129
- #: views/installer/header.php:46
 
 
1130
  msgctxt "(Admin)"
1131
- msgid "Forms & Consent"
1132
- msgstr "Formularios y consentimiento"
1133
 
1134
- #: views/installer/header.php:51
 
 
1135
  msgctxt "(Admin)"
1136
- msgid "Integrations"
1137
- msgstr "Integraciones"
1138
 
1139
- #: views/installer/steps/configuration-settings.php:23
1140
- #: views/installer/steps/configuration-settings.php:73
 
1141
  msgctxt "(Admin)"
1142
- msgid "Enter the email address to notify"
1143
- msgstr "Escribe la dirección de email para notificaciones"
1144
 
1145
- #: views/installer/steps/disclaimer.php:21
 
 
1146
  msgctxt "(Admin)"
1147
- msgid "I accept"
1148
- msgstr "Acepto"
1149
 
1150
- #: views/installer/welcome-notice.php:7
 
 
1151
  msgctxt "(Admin)"
1152
- msgid "Run the setup wizard"
1153
- msgstr "Ejecutar el asistente de configuración"
1154
 
1155
- #: views/installer/welcome-notice.php:11
 
1156
  msgctxt "(Admin)"
1157
- msgid "Auto-install pages"
1158
- msgstr "Páginas de autoinstalación"
1159
 
1160
- #: views/installer/welcome-notice.php:15
 
1161
  msgctxt "(Admin)"
1162
- msgid "Skip and install manually"
1163
- msgstr "Saltar e instalar manualmente"
1164
 
1165
- #: views/modules/contact-form-7/generator-privacy.php:6
 
1166
  msgctxt "(Admin)"
1167
- msgid ""
1168
- "This tag generates the default text for Terms & Conditions and/or Privacy "
1169
- "Policy checkbox."
1170
- msgstr ""
1171
- "Esta etiqueta genera el texto predeterminado para la casilla de verificación "
1172
- "Términos y condiciones y / o Política de privacidad."
1173
 
1174
- #: views/modules/contact-form-7/generator-privacy.php:15
1175
- msgid "Insert"
1176
- msgstr "Insertar"
 
 
1177
 
1178
- #: views/modules/wordpress-comments/terms-checkbox.php:6
1179
- #: views/modules/wordpress-user/registration-terms-checkbox.php:7
1180
- #, php-format
1181
- msgid "I accept the %sTerms and Conditions%s and the %sPrivacy Policy%s"
1182
- msgstr "Acepto los %sTérminos y condiciones%s y la %sPolítica de privacidad%s"
 
1183
 
1184
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:3
1185
- msgid "Manage consents"
1186
- msgstr "Gestionar consentimientos"
 
 
1187
 
1188
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:6
1189
- #: views/privacy-tools/form-consent.php:6
1190
- msgid "Here you can withdraw any consents you have given."
1191
- msgstr "Aquí puede retirar cualquier consentimiento que haya dado."
 
1192
 
1193
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:8
1194
- #: views/privacy-tools/form-consent.php:9
1195
- msgid "Consent types"
1196
- msgstr "Tipos de consentimiento"
 
1197
 
1198
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:23
1199
- #: views/privacy-tools/form-consent.php:24
1200
- msgid "Withdraw"
1201
- msgstr "Retirar"
 
1202
 
1203
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:5
1204
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:5
1205
  msgctxt "(Admin)"
1206
- msgid "Delete this user and all data"
1207
- msgstr "Eliminar este usuario y todos los datos"
1208
 
1209
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:11
 
1210
  msgctxt "(Admin)"
1211
- msgid "Delete my data"
1212
- msgstr "Borrar mis datos"
1213
 
1214
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:15
1215
- #: views/privacy-tools/form-delete.php:13
1216
- msgid "Delete all data we have gathered about you."
1217
- msgstr "Eliminar todos los datos que hemos recopilado sobre usted."
 
1218
 
1219
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:16
1220
- #: views/privacy-tools/form-delete.php:14
1221
- msgid "If you have a user account on our site, it will also be deleted."
1222
- msgstr "Si tiene una cuenta de usuario en nuestro sitio, también se eliminará."
 
1223
 
1224
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:17
1225
- #: views/privacy-tools/form-delete.php:15
1226
- msgid "Be careful - this action is permanent and CANNOT be undone."
1227
- msgstr "Tenga cuidado: esta acción es permanente y NO SE PUEDE deshacer."
 
1228
 
1229
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:22
1230
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:23
1231
  msgctxt "(Admin)"
1232
- msgid ""
1233
- "You seem to have an administrator or equivalent role, so deleting/"
1234
- "anonymizing via this page is disabled."
1235
- msgstr ""
1236
- "Parece que tiene un rol de administrador o equivalente, por lo que la "
1237
- "eliminación / anonimización a través de esta página está deshabilitada."
1238
 
1239
- #: views/modules/wordpress-user/dashboard/form-export.php:7
1240
- #: views/privacy-tools/form-export.php:1
1241
- msgid "Download your data"
1242
- msgstr "Descarga tus datos"
 
1243
 
1244
- #: views/modules/wordpress-user/dashboard/form-export.php:12
1245
- #: views/privacy-tools/form-export.php:13
1246
- msgid "Download as table"
1247
- msgstr "Descargar como tabla"
 
1248
 
1249
- #: views/modules/wordpress-user/dashboard/form-export.php:15
1250
- #: views/privacy-tools/form-export.php:22
1251
- msgid "Export as JSON"
1252
- msgstr "Exportar como JSON"
 
1253
 
1254
- #: views/modules/wordpress-user/dashboard/form-export.php:19
1255
- #: views/privacy-tools/form-export.php:4
1256
- msgid "You can download all your data formatted as a table for viewing."
1257
- msgstr "Puede descargar todos sus datos formateados como una tabla para ver."
 
1258
 
1259
- #: views/modules/wordpress-user/dashboard/form-export.php:20
1260
- #: views/privacy-tools/form-export.php:5
1261
- msgid "Alternatively, you can export it in machine-readable JSON format."
1262
- msgstr ""
1263
- "Alternativamente, puede exportarlo en formato JSON legible por máquina."
1264
 
1265
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:11
 
1266
  msgctxt "(Admin)"
1267
- msgid "Delete user and all data"
1268
- msgstr "Eliminar usuario y todos los datos"
1269
 
1270
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:14
 
1271
  msgctxt "(Admin)"
1272
- msgid "Anonymize user and all data"
1273
- msgstr "Anonimizar usuario y todos los datos"
1274
 
1275
- #: views/modules/wordpress-user/dashboard/profile-page/header.php:2
 
1276
  msgctxt "(Admin)"
1277
- msgid "GDPR Data"
1278
- msgstr "Datos GDPR"
1279
 
1280
- #: views/modules/wordpress-user/dashboard/profile-page/header.php:6
 
1281
  msgctxt "(Admin)"
1282
- msgid "This user has been anonymized."
1283
- msgstr "Este usuario ha sido anónimo."
1284
 
1285
- #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:4
 
 
 
1286
  msgctxt "(Admin)"
1287
- msgid "Consents given"
1288
- msgstr "Consentimientos dados"
1289
 
1290
- #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:17
 
1291
  msgctxt "(Admin)"
1292
- msgid "No consents given"
1293
- msgstr "No hay consentimiento dado"
1294
 
1295
- #: views/privacy-tools/form-consent.php:2
1296
- msgid "Consent"
1297
- msgstr "Consentimiento"
 
 
1298
 
1299
- #: views/privacy-tools/form-delete.php:1
1300
- #: views/privacy-tools/notice-admin-role.php:1
1301
- msgid "Delete my user and data"
1302
- msgstr "Eliminar mi usuario y datos"
 
1303
 
1304
- #: views/privacy-tools/form-delete.php:7
1305
- msgid "Delete my data"
1306
- msgstr "Borrar mis datos"
 
 
 
1307
 
1308
- #: views/privacy-tools/form-identify.php:8
1309
- msgid "Back to Privacy Tools"
1310
- msgstr "Volver a Herramientas de privacidad"
 
 
1311
 
1312
- #: views/privacy-tools/form-identify.php:14
1313
- msgid "Identify yourself!"
1314
- msgstr "¡Identifícate!"
 
 
1315
 
1316
- #: views/privacy-tools/form-identify.php:17
1317
- #: views/privacy-tools/form-identify.php:20
1318
- msgid "Enter your email address"
1319
- msgstr "Ingrese su dirección de correo electrónico"
 
 
1320
 
1321
- #: views/privacy-tools/form-identify.php:23
1322
- msgid "Send email"
1323
- msgstr "Enviar correo electrónico"
 
 
1324
 
1325
- #: views/privacy-tools/notice-admin-role.php:4
 
1326
  msgctxt "(Admin)"
1327
- msgid "Data deletion is disabled for administrative accounts."
1328
- msgstr ""
1329
- "La eliminación de datos está deshabilitada para las cuentas administrativas."
1330
 
1331
- #: views/privacy-tools/notices.php:3
1332
- msgid ""
1333
- "We will send you an email with the link to access your data. Please check "
1334
- "your spam folder as well!"
1335
- msgstr ""
1336
- "Le enviaremos un correo electrónico con el enlace para acceder a sus datos. "
1337
- "Por favor revise su carpeta de spam también!"
1338
 
1339
- #: views/privacy-tools/notices.php:7
1340
- msgid "The email you entered does not appear to be a valid email."
1341
- msgstr ""
1342
- "El correo electrónico que ingresaste no parece ser un correo electrónico "
1343
- "válido."
1344
 
1345
- #: views/privacy-tools/notices.php:11
1346
- msgid "Sorry - the link seems to have expired. Please try again!"
1347
- msgstr "Lo sentimos, el enlace parece haber expirado. ¡Inténtalo de nuevo!"
 
 
1348
 
1349
- #: views/privacy-tools/notices.php:23
1350
- msgid "Your personal data has been removed!"
1351
- msgstr "Sus datos personales han sido eliminados!"
 
 
1352
 
1353
- #: views/privacy-tools/privacy-tools.php:5
1354
- msgid "You are identified as"
1355
- msgstr "Usted es identificado como"
 
 
 
1356
 
1357
- #: views\admin\general\enable-tac.php:9
 
1358
  msgctxt "(Admin)"
1359
- msgid "Enable the term and condition page."
1360
- msgstr "Habilitar la página de términos y condiciones."
1361
 
1362
- #: src\Admin\AdminTabGeneral.php:51
 
1363
  msgctxt "(Admin)"
1364
- msgid "Enable Term and Conditions"
1365
- msgstr "Activer le terme et les conditionsHabilitar términos y condiciones"
1366
 
1367
- #: gdpr-framework.php:121
1368
- msgid ""
1369
- "This website uses cookies to ensure you get the best experience on our "
1370
- "website."
1371
- msgstr ""
1372
- "Este sitio web utiliza cookies para garantizar que obtenga la mejor "
1373
- "experiencia en nuestro sitio web."
1374
 
1375
- #: gdpr-framework.php:121
1376
- msgid "Decline"
1377
- msgstr "Disminución"
 
 
1378
 
1379
- #: gdpr-framework.php:121
1380
- msgid "Accept"
1381
- msgstr "Aceptar"
 
 
 
1382
 
1383
- #: gdpr-framework.php:133
1384
- msgid "Learn more"
1385
- msgstr "Aprende más"
 
 
1386
 
1387
- #: AdminTabGeneral.php:94
 
1388
  msgctxt "(Admin)"
1389
- msgid "From Email"
1390
- msgstr "Desde el e-mail"
1391
 
1392
- #: AdminTabGeneral.php:87
 
 
1393
  msgctxt "(Admin)"
1394
- msgid "From Name"
1395
- msgstr "De Nombre"
1396
 
1397
- #: AdminTabGeneral.php:82
 
 
1398
  msgctxt "(Admin)"
1399
- msgid "Email Setting"
1400
- msgstr "Configuración de correo electrónico"
1401
 
1402
- #: AdminTabGeneral.php:104
 
1403
  msgctxt "(Admin)"
1404
- msgid "Acceptance Popup Setting"
1405
- msgstr "Configuración emergente de aceptación"
1406
 
1407
- #: AdminTabGeneral.php:109
 
1408
  msgctxt "(Admin)"
1409
- msgid "Popup Position"
1410
- msgstr "Posición emergente"
1411
 
1412
- #: AdminTabGeneral.php:116
 
 
1413
  msgctxt "(Admin)"
1414
- msgid "Popup theme"
1415
- msgstr "Tema emergente"
1416
 
1417
- #: AdminTabGeneral.php:123
 
1418
  msgctxt "(Admin)"
1419
- msgid "Cookie Acceptance Background Color"
1420
- msgstr "Color de fondo de aceptación de cookie"
1421
 
1422
- #: AdminTabGeneral.php:130
 
1423
  msgctxt "(Admin)"
1424
- msgid "Cookie Acceptance Text Color"
1425
- msgstr "Color de texto de aceptación de cookie"
1426
 
1427
- #: AdminTabGeneral.php:137
 
1428
  msgctxt "(Admin)"
1429
- msgid "Cookie Acceptance Button Backgroung Color"
1430
- msgstr "Botón de aceptación de galletas Color de fondo"
1431
 
1432
- #: AdminTabGeneral.php:144
 
1433
  msgctxt "(Admin)"
1434
- msgid "Cookie Acceptance Button Color"
1435
- msgstr "Color del botón de aceptación de cookie"
1436
 
1437
- #: AdminTabGeneral.php:151
 
 
1438
  msgctxt "(Admin)"
1439
- msgid "Cookie Acceptance Border Color"
1440
- msgstr "Color de borde de aceptación de cookie"
1441
 
1442
- #: AdminTabGeneral.php:67
 
1443
  msgctxt "(Admin)"
1444
- msgid "Enable Cookie Acceptance Popup"
1445
- msgstr "Habilitar ventana emergente de aceptación de cookies"
1446
 
1447
- #: AdminTabGeneral.php:73
 
1448
  msgctxt "(Admin)"
1449
- msgid "Cookie Acceptance Popup Content"
1450
- msgstr "Contenido emergente de aceptación de cookies"
1451
 
1452
- #: description-position-action.php
 
1453
  msgctxt "(Admin)"
1454
- msgid "Select position of the Popup"
1455
- msgstr "Seleccione la posición de la ventana emergente"
1456
 
1457
- #: description-theme-action.php
 
1458
  msgctxt "(Admin)"
1459
- msgid "Select theme of the Popup"
1460
- msgstr "Seleccione el tema de la ventana emergente"
1461
 
1462
- #: description-theme-action.php:69
 
1463
  msgctxt "(Admin)"
1464
- msgid "Disable Comment Checkbox"
1465
- msgstr "Desactivar casilla de verificación de comentario"
1466
 
1467
- #: description-theme-action.php:76
 
1468
  msgctxt "(Admin)"
1469
- msgid "Disable Register Form Checkbox"
1470
- msgstr "Desactivar registro de casilla de verificación"
1471
 
1472
- #: description-theme-action.php:312
 
 
1473
  msgctxt "(Admin)"
1474
- msgid "Disable Checkbox For Comments"
1475
- msgstr "Desactivar casilla de verificación para comentarios"
1476
 
1477
- #: AdminTabGeneral.php:319
 
1478
  msgctxt "(Admin)"
1479
- msgid "Disable Checkbox For Register Form"
1480
- msgstr "Desactivar la casilla de verificación para el formulario de registro"
1481
-
1482
- #: views/privacy-tools/form-identify.php:15
1483
- msgid "Please identify yourself via e-mail"
1484
- msgstr "Por favor, identifíquese por correo electrónico"
1485
 
1486
- #: advanced-integration\header.php:2
 
1487
  msgctxt "(Admin)"
1488
- msgid "This page allows you to advance integration with ClassiDocs™"
1489
- msgstr "Esta página le permite avanzar en la integración con ClassiDocs ™"
1490
 
1491
- #: AdminTabAdvancedIntegration.php:97
 
1492
  msgctxt "(Admin)"
1493
- msgid "ClassiDocs Password"
1494
- msgstr "Contraseña de ClassiDocs"
1495
 
1496
- #: AdminTabAdvancedIntegration.php:88
 
 
1497
  msgctxt "(Admin)"
1498
- msgid "ClassiDocs Username"
1499
- msgstr "Nombre de usuario de ClassiDocs"
1500
 
1501
- #: AdminTabAdvancedIntegration.php:79
 
 
1502
  msgctxt "(Admin)"
1503
- msgid "ClassiDocs URL"
1504
- msgstr "URL de ClassiDocs"
1505
 
1506
- #: AdminTabAdvancedIntegration.php:69
 
1507
  msgctxt "(Admin)"
1508
- msgid "Enable Response with related queries?"
1509
- msgstr "¿Habilitar respuesta con consultas relacionadas?"
1510
 
1511
- #: AdminTabAdvancedIntegration.php:60
 
1512
  msgctxt "(Admin)"
1513
- msgid "Submit SAR request details?"
1514
- msgstr "¿Enviar detalles de solicitud de SAR?"
1515
 
1516
- #: AdminTabAdvancedIntegration.php:51
 
1517
  msgctxt "(Admin)"
1518
- msgid "Integrate with ClassiDocs?"
1519
- msgstr "¿Integrar con ClassiDocs?"
1520
 
1521
- #: AdminTabAdvancedIntegration.php:43
 
1522
  msgctxt "(Admin)"
1523
- msgid "Integration Settings"
1524
- msgstr "Ajustes de integración"
1525
 
1526
- #: AdminTabAdvancedIntegration.php:35
 
 
 
1527
  msgctxt "(Admin)"
1528
- msgid "Advanced Integration"
1529
- msgstr "Integración avanzada"
1530
 
1531
- #: checkbox-field.php:10
 
1532
  msgctxt "(Admin)"
1533
- msgid "Sign up for free here"
1534
- msgstr "Regístrate gratis aquí"
1535
 
1536
- #: checkbox-field.php:10
 
1537
  msgctxt "(Admin)"
1538
- msgid "Click Here"
1539
- msgstr "Haga clic aquí"
1540
 
1541
- #: ClassiDocs-results.php:12
1542
- msgid "Previous Results"
1543
- msgstr "Resultados anteriores"
 
 
1544
 
1545
- #: ClassiDocs-results.php:13
1546
- msgid "Current Results"
1547
- msgstr "Resultados actuales"
 
 
1548
 
1549
- #: ClassiDocs-results.php:19
1550
- msgid "Name"
1551
- msgstr "Nombre"
 
 
1552
 
1553
- #: ClassiDocs-results.php:22
1554
- msgid "Path"
1555
- msgstr "CheminCamino"
 
 
 
1556
 
1557
- #: ClassiDocs-results.php:34
1558
- msgid "Workstation"
1559
- msgstr "Puesto de trabajo"
 
 
 
1560
 
1561
- #: ClassiDocs-results.php:37
1562
- msgid "Last Scan"
1563
- msgstr "Último vistazo"
 
 
1564
 
1565
- #: ClassiDocs-results.php:62
1566
- msgid "No ClassiDocs data found!"
1567
- msgstr "No se encontraron datos de ClassiDocs!"
 
 
1568
 
1569
- #: enable_popup_header.php:5
1570
- msgid "Cookies used on the website!"
1571
- msgstr "Cookies utilizadas en el sitio web!"
 
 
1572
 
1573
- #: enable_popup_header.php:9
1574
- msgid "Leave blank if don't want header to get display."
1575
- msgstr "Deje en blanco si no desea que el encabezado se muestre."
 
 
1576
 
1577
- #: AdminTabCookiePopup.php:39
 
1578
  msgctxt "(Admin)"
1579
- msgid "Cookie Popup Settings"
1580
- msgstr "Configuración emergente de cookies"
1581
 
1582
- #: AdminTabCookiePopup.php:17
 
1583
  msgctxt "(Admin)"
1584
- msgid "Cookie Popup"
1585
- msgstr "Cookie emergente"
1586
 
1587
- #: AdminTabCookiePopup.php:49
 
1588
  msgctxt "(Admin)"
1589
- msgid "Enable One Time Cookie Acceptance Popup"
1590
- msgstr "Habilitar una ventana emergente de aceptación de cookies"
1591
 
1592
- #: consent.php:79
 
1593
  msgctxt "(Admin)"
1594
- msgid "Show Consent types"
1595
- msgstr "Mostrar tipos de consentimiento"
1596
 
 
 
1597
  msgctxt "(Admin)"
1598
- msgid "Hide consent types"
1599
- msgstr "Ocultar tipos de consentimiento"
1600
 
 
 
1601
  msgctxt "(Admin)"
1602
- msgid "Do you want form to be GDPR compliance."
1603
- msgstr "¿Quieres que la forma sea GDPR?"
1604
 
 
 
1605
  msgctxt "(Admin)"
1606
- msgid ""
1607
- "You have installed flamingo, To make this GDPR compliance in individual "
1608
- "contact form's privacy tab check the checkbox for include data to be search "
1609
- "on Privacy tool."
1610
- msgstr ""
1611
- "Ha instalado flamingo. Para hacer que este GDPR cumpla con la pestaña de "
1612
- "privacidad del formulario de contacto individual, marque la casilla de "
1613
- "verificación para incluir los datos que se deben buscar en la herramienta de "
1614
- "Privacidad."
1615
 
 
 
1616
  msgctxt "(Admin)"
1617
- msgid "Enable Policy Link On Popup"
1618
- msgstr "Habilitar enlace de política en ventana emergente"
1619
 
 
 
1620
  msgctxt "(Admin)"
1621
- msgid "Enable Privacy policy on Popup"
1622
- msgstr "Habilitar política de privacidad en Popup"
1623
 
1624
- #: AdminTabCookiePopup.php
 
1625
  msgctxt "(Admin)"
1626
- msgid "Cookie Acceptance Popup header"
1627
- msgstr "Encabezado emergente de aceptación de cookie"
1628
 
1629
- #: views\admin\privacy-manager\header.php:2
 
1630
  msgctxt "(Admin)"
1631
- msgid "Data443™ Privacy Manager"
1632
- msgstr "Data443 ™ Privacy Manager"
1633
 
1634
- #: views\admin\privacy-manager\header.php:3
 
 
1635
  msgctxt "(Admin)"
1636
- msgid ""
1637
- "ensures privacy regulation compliance, such as GDPR, CCPA, LGPD, etc, at the "
1638
- "next level."
1639
- msgstr ""
1640
- "garantiza el cumplimiento de la normativa de privacidad, como GDPR, CCPA, "
1641
- "LGPD, etc., en el siguiente nivel."
1642
 
1643
- #: views\admin\privacy-manager\header.php:4
 
1644
  msgctxt "(Admin)"
1645
- msgid ""
1646
- "In addition to DSAR tracking and management, Privacy Manager adds the "
1647
- "following features to your data protection compliance resources:"
1648
- msgstr ""
1649
- "Además de la gestión y el seguimiento de DSAR, Privacy Manager agrega las "
1650
- "siguientes funciones a sus recursos de cumplimiento de protección de datos:"
1651
 
1652
- #: views\admin\privacy-manager\header.php:6
 
1653
  msgctxt "(Admin)"
1654
- msgid "Log and store ICO breach notifications"
1655
- msgstr "Registrar y almacenar notificaciones de incumplimiento de ICO"
1656
 
1657
- #: views\admin\privacy-manager\header.php:7
 
1658
  msgctxt "(Admin)"
1659
- msgid "Keeps full record of all requests, ticketed and timeline"
1660
- msgstr ""
1661
- "Mantiene un registro completo de todas las solicitudes, entradas y "
1662
- "cronograma."
1663
 
1664
- #: views\admin\privacy-manager\header.php:8
 
1665
  msgctxt "(Admin)"
1666
- msgid "Gap analysis and breach notifications"
1667
- msgstr "Análisis de brechas y notificaciones de incumplimiento."
1668
 
1669
- #: views\admin\privacy-manager\header.php:9
 
1670
  msgctxt "(Admin)"
1671
- msgid "In depth activity log with all GDPR, CCPA, etc actions evidenced"
1672
- msgstr ""
1673
- "Registro de actividad en profundidad con todas las acciones GDPR, CCPA, etc. "
1674
- "evidenciadas"
1675
 
1676
- #: views\admin\privacy-manager\header.php:10
 
1677
  msgctxt "(Admin)"
1678
- msgid "Highlights areas of concern and where you need to focus"
1679
- msgstr "Resalta las áreas de preocupación y donde necesita enfocarse"
1680
 
1681
- #: views\admin\privacy-manager\header.php:11
 
 
1682
  msgctxt "(Admin)"
1683
- msgid ""
1684
- "eLearning platform with access for all staff to ensure privacy regulation "
1685
- "compliance and obligations"
1686
- msgstr ""
1687
- "Plataforma de aprendizaje en línea con acceso para todo el personal para "
1688
- "garantizar el cumplimiento de las normas de privacidad y las obligaciones."
1689
 
1690
- #: views\admin\privacy-manager\header.php:12
 
 
1691
  msgctxt "(Admin)"
1692
- msgid "Tracks who accesses the system, when and why"
1693
- msgstr "Rastrea quién accede al sistema, cuándo y por qué."
1694
 
1695
- #: views\admin\privacy-manager\header.php:15
1696
  msgctxt "(Admin)"
1697
- msgid ""
1698
- "Our system enables your business to demonstrate its obligations in "
1699
- "protecting your customer data, show understanding of your business "
1700
- "activities and deliver eLearning and online tests to employees, ensuring "
1701
- "everyone in your company understands your privacy compliance rules and best "
1702
- "practices to operate."
1703
- msgstr ""
1704
- "Nuestro sistema le permite a su empresa demostrar sus obligaciones de "
1705
- "proteger los datos de sus clientes, demostrar que comprende sus actividades "
1706
- "comerciales y entregarles a sus empleados prácticas de aprendizaje en línea "
1707
- "y en línea, asegurando que todos en su empresa comprendan sus reglas de "
1708
- "cumplimiento de la privacidad y las mejores prácticas para operar."
1709
 
1710
- #: views\admin\privacy-manager\header.php:16
1711
  msgctxt "(Admin)"
1712
- msgid ""
1713
- "No matter where you are on your data privacy journey, the ultimate goal is "
1714
- "compliance."
1715
- msgstr ""
1716
- "No importa dónde se encuentre en su viaje de privacidad de datos, el "
1717
- "objetivo final es el cumplimiento."
1718
 
1719
- #: views\admin\privacy-manager\header.php:16
1720
  msgctxt "(Admin)"
1721
- msgid "enables your organization to comply with all privacy regulations."
1722
- msgstr ""
1723
- "le permite a su organización cumplir con todas las regulaciones de "
1724
- "privacidad."
1725
 
1726
- #: views\admin\support\contents.php:49
1727
  msgctxt "(Admin)"
1728
- msgid ""
1729
- "Found a bug or have a question about the plugin? Submit a support request "
1730
- "and we’ll get right on it!"
1731
- msgstr ""
1732
- "¿Encontró un error o tiene una pregunta sobre el complemento? Envíe una "
1733
- "solicitud de soporte y nos pondremos en contacto con usted."
1734
 
1735
- #: views\admin\support\contents.php:58
1736
  msgctxt "(Admin)"
1737
- msgid "Need assistance in making your site compliant? We can help!"
 
 
 
 
1738
  msgstr ""
1739
- "¿Necesita ayuda para hacer que su sitio sea compatible? ¡Podemos ayudar!"
1740
 
1741
- #: views\admin\general\woo-compatibility.php:9
1742
  msgctxt "(Admin)"
1743
- msgid "Enable WooCommerce data on GDPR tool"
1744
- msgstr "Habilitar datos de WooCommerce en la herramienta GDPR"
1745
 
1746
- #: src\Admin\AdminTabGeneral.php:241
 
 
 
 
 
1747
  msgctxt "(Admin)"
1748
- msgid "Enable WooCommerce Compatibility"
1749
- msgstr "Habilitar la compatibilidad con WooCommerce"
1750
-
1751
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:19
1752
- msgid "Note Regarding Order:"
1753
- msgstr "Nota sobre el pedido:"
1754
 
1755
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:20
 
 
 
 
1756
  msgid ""
1757
- "Your order with status Processing will not get deleted until status change."
1758
  msgstr ""
1759
- "Su orden con el procesamiento de estado no se eliminará hasta que cambie el "
1760
- "estado."
1761
 
1762
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:21
1763
- msgid "Your order with status Completed will get anonymize."
1764
- msgstr "Su pedido con estado Completado se anonimizará."
 
 
 
1765
 
1766
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:22
1767
- msgid "If you delete Completed order you can't apply for refund."
1768
- msgstr "Si elimina el pedido completado, no podrá solicitar el reembolso."
 
1769
 
1770
- #: views\admin\general\woo-compatibility.php:12
1771
- msgctxt "(Admin)"
1772
- msgid "Will work for WooCommerce Version 3.4.0 or later."
1773
- msgstr "Trabajará para WooCommerce versión 3.4.0 o posterior."
1774
 
1775
- #: views\admin\general\edd-compatibility.php:9
1776
  msgctxt "(Admin)"
1777
- msgid "Enable EDD data on GDPR tool."
1778
- msgstr "Habilitar datos EDD en la herramienta GDPR."
1779
 
1780
- #: views\admin\general\edd-compatibility.php:12
 
 
 
 
 
1781
  msgctxt "(Admin)"
1782
- msgid "Will work for EDD Version 2.0.0 or later."
1783
- msgstr "Trabajará para EDD versión 2.0.0 o posterior."
 
 
 
 
 
 
1784
 
1785
- #: src\Admin\AdminTabGeneral.php:262
1786
- msgctxt "(Admin)"
1787
- msgid "Enable EDD Compatibility"
1788
- msgstr "Habilitar compatibilidad EDD"
1789
 
1790
- #: gdpr-framework.php:298
1791
- msgid "Cookie Policy"
1792
- msgstr "Política de cookies"
1793
 
1794
- #: ConsentManager.php:96
1795
- msgctxt "(Admin)"
1796
- msgid "Woocommerce Policy Consent"
1797
- msgstr "Consentimiento de la política de Woocommerce"
 
 
 
1798
 
1799
- #: WoocommerceGdpr.php:150
 
 
 
 
 
 
 
 
 
 
 
 
1800
  msgid "Please acknowledge the Privacy Policy"
1801
  msgstr "Por favor reconozca la política de privacidad"
1802
 
1803
- #: woo-compatibility.php:9
1804
- msgctxt "(Admin)"
1805
- msgid "Enable WooCommerce data on GDPR tool."
1806
- msgstr "Habilitar los datos de WooCommerce en la herramienta GDPR."
1807
 
1808
- #: views\admin\general\enable-popup.php:12
1809
- msgctxt "(Admin)"
1810
- msgid ""
1811
- "<b>Note:</b> Need to add custom content <b>gdpr_cookie_consent</b> its "
1812
- "accepted on popup accept button."
1813
  msgstr ""
1814
- "<b> Nota: </b> es necesario agregar contenido personalizado <b> "
1815
- "gdpr_cookie_consent </b> se acepta en el botón emergente de aceptación."
1816
 
1817
- #: ConsentManager.php:96
1818
  msgctxt "(Admin)"
1819
- msgid ""
1820
- "This consent is visible by default on woocommerce checkout page. If someone "
1821
- "wishes to withdraw it, they should simply request to delete all their data."
1822
- msgstr ""
1823
- "Este consentimiento es visible por defecto en la página de pago de "
1824
- "woocommerce. Si alguien desea retirarlo, simplemente debe solicitar la "
1825
- "eliminación de todos sus datos."
1826
 
1827
- #: AdminTabCookiePopup.php:105
 
 
 
1828
  msgctxt "(Admin)"
1829
- msgid "Popup Dismiss Text"
1830
- msgstr "Popup Descartar Texto"
1831
 
1832
- #: AdminTabCookiePopup.php:98
 
 
 
 
1833
  msgctxt "(Admin)"
1834
- msgid "Popup Allow Text"
1835
- msgstr "Popup Permitir texto"
 
 
 
 
1836
 
1837
- #: AdminTabGeneral.php:241
1838
  msgctxt "(Admin)"
1839
- msgid "Woocommerce Integration"
1840
- msgstr "Integración de Woocommerce"
1841
 
1842
- #: AdminTabGeneral.php:259
 
1843
  msgctxt "(Admin)"
1844
- msgid "Easy Digital Download Integration"
1845
- msgstr "Fácil integración de descarga digital"
1846
 
1847
- #: has-dpo.php:11
 
1848
  msgctxt "(Admin)"
1849
- msgid "I have appointed a Data Protection Officer (DPO)"
1850
- msgstr "He nombrado a un Oficial de Protección de Datos (DPO)"
1851
 
1852
- #: views/admin/general/stylesheet.php:9
1853
  msgctxt "(Admin)"
1854
- msgid "Enable basic styling for Privacy Tools page."
1855
- msgstr ""
1856
- "Habilitar el estilo básico para la página de herramientas de privacidad."
1857
 
1858
- #: AdminTabPrivacyPolicy.php:204
1859
  msgctxt "(Admin)"
1860
- msgid "Delete Text"
1861
- msgstr "Eliminar texto"
1862
 
1863
- #: consent.php:80
1864
  msgctxt "(Admin)"
1865
- msgid "Add consent type"
1866
- msgstr "Añadir tipo de consentimiento"
1867
 
1868
- #: AdminTabGeneral.php:127
 
 
 
1869
  msgctxt "(Admin)"
1870
- msgid "Privacy Policy Custom URL"
1871
- msgstr "Política de privacidad URL personalizada"
1872
 
1873
- #: custom-policy-url.php:6
1874
  msgctxt "(Admin)"
1875
- msgid "Leave blank if privacy policy page already selected"
 
 
1876
  msgstr ""
1877
- "Deje en blanco si la página de política de privacidad ya está seleccionada"
 
 
1878
 
1879
- #: views/admin/general/description-delete-action.php:2
 
 
1880
  msgctxt "(Admin)"
1881
- msgid "What should happen if a data subject requests deleting their data."
1882
- msgstr ""
1883
- "O que deve acontecer se um sujeito de dados solicitar a exclusão de seus "
1884
- "dados."
1885
 
1886
- #: views/admin/general/description-export-action.php:2
 
 
1887
  msgctxt "(Admin)"
1888
- msgid "Optional. Select the page which contains your Terms & Conditions"
1889
- msgstr "Opcional. Selecione a página que contém seus Termos e Condições"
1890
 
1891
- #: views/admin/general/description-terms-page.php:2
1892
  msgctxt "(Admin)"
1893
- msgid ""
1894
- "What should happen if a data subject requests viewing or exporting their "
1895
- "data."
1896
- msgstr ""
1897
- "O que deve acontecer se um sujeito de dados solicitar a visualização ou "
1898
- "exportação de seus dados."
1899
 
1900
- #: woo-disable_checkbox.php:9
 
 
 
1901
  msgctxt "(Admin)"
1902
- msgid "Disable WooCommerce Privacy Checkbox"
1903
- msgstr "Desactivar casilla de verificación de privacidad de WooCommerce"
1904
 
1905
- #: AdminTabCookiePopup.php:133
 
 
 
1906
  msgctxt "(Admin)"
1907
- msgid "Popup Learn More Text"
1908
- msgstr "Ventana emergente Más información Texto"
1909
 
1910
- #: AdminTabGeneral.php:262
 
 
 
1911
  msgctxt "(Admin)"
1912
- msgid "Disable WooCommerce Register Privacy Checkbox"
1913
- msgstr ""
1914
- "Desactivar la casilla de verificación de privacidad del registro de "
1915
- "WooCommerce"
1916
 
1917
- #: AdminTabCookiePopup.php:121
1918
  msgctxt "(Admin)"
1919
- msgid "Cookie Acceptance link target"
1920
- msgstr "Objetivo de enlace de aceptación de cookies"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1921
 
1922
- #: popup_link_target.php:3
1923
  msgctxt "(Admin)"
1924
  msgid "Next Tab"
1925
- msgstr "Pestaña siguiente"
1926
 
1927
- #: popup_link_target.php:5
1928
  msgctxt "(Admin)"
1929
  msgid "Self"
1930
- msgstr "yo"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  msgstr ""
8
  "Project-Id-Version: The GDPR Framework 1.0\n"
9
  "Report-Msgid-Bugs-To: gdpr@codelight.eu\n"
10
+ "POT-Creation-Date: 2021-10-28 11:20-0400\n"
11
+ "PO-Revision-Date: 2021-10-28 11:52-0400\n"
12
+ "Last-Translator: \n"
13
  "Language-Team: \n"
14
+ "Language: es_ES\n"
15
  "MIME-Version: 1.0\n"
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
18
+ "X-Generator: Poedit 3.0\n"
 
19
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
20
 
21
+ #: gdpr-framework.php:110
22
+ #, fuzzy
23
+ #| msgid "WordPress GDPR &rsaquo; Error"
24
  msgctxt "(Admin)"
25
  msgid "WordPress GDPR &rsaquo; Error"
26
+ msgstr "WordPress GDPR &rsaquo; Erreur"
27
+
28
+ #: gdpr-framework.php:121
29
+ msgctxt "(Admin)"
30
+ msgid "You must be using PHP 5.6.0 or greater."
31
+ msgstr "Debes utilizar la versión 5.6.0 de PHP o superior."
32
 
33
+ #: gdpr-framework.php:122
34
  msgctxt "(Admin)"
35
  msgid "Invalid PHP version"
36
+ msgstr "Versión de PHP no válida"
37
 
38
+ #: gdpr-framework.php:132
39
+ #, fuzzy
40
+ #| msgid "You must be using WordPress 4.3.0 or greater."
41
  msgctxt "(Admin)"
42
+ msgid "You must be using WordPress 4.3.0 or greater."
43
+ msgstr "Vous devez utiliser WordPress 4.3.0 ou supérieur."
44
 
45
+ #: gdpr-framework.php:133
46
  msgctxt "(Admin)"
47
  msgid "Invalid WordPress version"
48
  msgstr "Versión de WordPress no válida"
49
 
50
+ #: gdpr-framework.php:204
51
  msgctxt "(Admin)"
52
+ msgid "Anonymous"
53
+ msgstr "Anónimo"
54
 
55
+ #: gdpr-helper-functions.php:75
56
+ #, fuzzy
57
+ #| msgid ""
58
+ #| "You appear to be running a development version of GDPR. You must run "
59
+ #| "<code>composer install</code> from the plugin directory."
60
  msgctxt "(Admin)"
61
  msgid ""
62
  "You appear to be running a development version of GDPR. You must run "
63
  "<code>composer install</code> from the plugin directory."
64
  msgstr ""
65
+ "Vous semblez utiliser une version de développement de GDPR. Vous devez "
66
+ "exécuter <code>composer install</code> depuis le répertoire du plugin."
67
 
68
+ #: gdpr-helper-functions.php:80
69
  msgctxt "(Admin)"
70
  msgid "Autoloader not found."
71
  msgstr "Autoloader no encontrado."
72
 
73
+ #: gdpr-helper-functions.php:126
74
+ msgid ""
75
+ "This website uses cookies to ensure you get the best experience on our "
76
+ "website."
77
+ msgstr ""
78
+ "Este sitio web utiliza cookies para garantizar que obtenga la mejor "
79
+ "experiencia en nuestro sitio web."
80
+
81
+ #: gdpr-helper-functions.php:139
82
+ msgid "Decline"
83
+ msgstr "Disminución"
84
+
85
+ #: gdpr-helper-functions.php:152
86
+ msgid "Accept"
87
+ msgstr "Aceptar"
88
+
89
+ #: gdpr-helper-functions.php:165
90
+ msgid "Learn more"
91
+ msgstr "Aprende más"
92
+
93
+ #: gdpr-helper-functions.php:220
94
+ msgid "Cookie Policy"
95
+ msgstr "Política de cookies"
96
+
97
+ #: gdpr-helper-functions.php:258
98
+ msgid "Settings"
99
+ msgstr "Paramètres"
100
 
101
+ #: gdpr-helper-functions.php:259
102
+ msgid "PREMIUM"
103
+ msgstr "PREMIUM"
104
+
105
+ #: src/Admin/AdminTab.php:195
106
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:114
107
  msgctxt "(Admin)"
108
  msgid "Save"
109
+ msgstr "Guardar"
110
 
111
+ #: src/Admin/AdminTab.php:231
112
  msgctxt "(Admin)"
113
  msgid "Policy generated!"
114
+ msgstr "¡La política ha sido generada!"
115
 
116
  #: src/Admin/AdminTabGeneral.php:11
117
  msgctxt "(Admin)"
118
  msgid "General"
119
  msgstr "General"
120
 
121
+ #: src/Admin/AdminTabGeneral.php:55
122
  msgctxt "(Admin)"
123
  msgid "General Settings"
124
  msgstr "Configuración general"
125
 
126
+ #: src/Admin/AdminTabGeneral.php:60
127
+ #, fuzzy
128
+ #| msgid "Enable Privacy Tools"
129
  msgctxt "(Admin)"
130
  msgid "Enable Privacy Tools"
131
+ msgstr "Outils de confidentialité"
132
+
133
+ #: src/Admin/AdminTabGeneral.php:67
134
+ #, fuzzy
135
+ #| msgid "Enable Term and Conditions"
136
+ msgctxt "(Admin)"
137
+ msgid "Enable Term and Conditions"
138
+ msgstr "Termes et conditions"
139
+
140
+ #: src/Admin/AdminTabGeneral.php:74
141
+ #, fuzzy
142
+ #| msgid "Disable Comment Checkbox"
143
+ msgctxt "(Admin)"
144
+ msgid "Disable Comment Checkbox"
145
+ msgstr "Case à cocher Commentaire"
146
+
147
+ #: src/Admin/AdminTabGeneral.php:81
148
+ #, fuzzy
149
+ #| msgid "Disable Register Form Checkbox"
150
+ msgctxt "(Admin)"
151
+ msgid "Disable Register Form Checkbox"
152
+ msgstr "Case à cocher du formulaire d’inscription"
153
+
154
+ #: src/Admin/AdminTabGeneral.php:91
155
+ msgctxt "(Admin)"
156
+ msgid "Email Setting"
157
+ msgstr "Configuración de Email"
158
+
159
+ #: src/Admin/AdminTabGeneral.php:96
160
+ msgctxt "(Admin)"
161
+ msgid "From Name"
162
+ msgstr "De Nombre"
163
+
164
+ #: src/Admin/AdminTabGeneral.php:103
165
+ msgctxt "(Admin)"
166
+ msgid "From Email"
167
+ msgstr "Desde Email"
168
 
169
+ #: src/Admin/AdminTabGeneral.php:112
170
  msgctxt "(Admin)"
171
  msgid "Pages"
172
  msgstr "Páginas"
173
 
174
+ #: src/Admin/AdminTabGeneral.php:117 src/Admin/WordpressAdmin.php:166
175
+ #, fuzzy
176
+ #| msgid "Privacy Tools Page"
177
  msgctxt "(Admin)"
178
  msgid "Privacy Tools Page"
179
+ msgstr "Page des outils de confidentialité"
180
 
181
+ #: src/Admin/AdminTabGeneral.php:124
182
+ #, fuzzy
183
+ #| msgid "Privacy Tools Custom URL"
184
+ msgctxt "(Admin)"
185
+ msgid "Privacy Tools Custom URL"
186
+ msgstr "URL personnalisée de la Politique de confidentialité"
187
+
188
+ #: src/Admin/AdminTabGeneral.php:131 src/Admin/WordpressAdmin.php:162
189
  msgctxt "(Admin)"
190
  msgid "Privacy Policy Page"
191
+ msgstr "Página Política de Privacidad"
192
+
193
+ #: src/Admin/AdminTabGeneral.php:138
194
+ msgctxt "(Admin)"
195
+ msgid "Privacy Policy Custom URL"
196
+ msgstr "Política de privacidad"
197
 
198
+ #: src/Admin/AdminTabGeneral.php:145
199
  msgctxt "(Admin)"
200
  msgid "Terms & Conditions Page"
201
+ msgstr "Página de términos y condiciones"
202
+
203
+ #: src/Admin/AdminTabGeneral.php:152
204
+ #, fuzzy
205
+ #| msgid "Terms & Conditions Custom URL"
206
+ msgctxt "(Admin)"
207
+ msgid "Terms & Conditions Custom URL"
208
+ msgstr "URL personnalisée des Conditions générales"
209
 
210
+ #: src/Admin/AdminTabGeneral.php:162
211
+ #, fuzzy
212
+ #| msgid "View & Export Data"
213
  msgctxt "(Admin)"
214
  msgid "View & Export Data"
215
+ msgstr "Voir et exporter les données"
216
 
217
+ #: src/Admin/AdminTabGeneral.php:167
218
+ #, fuzzy
219
+ #| msgctxt "(Admin)"
220
+ #| msgid "Export action"
221
  msgctxt "(Admin)"
222
  msgid "Export action"
223
  msgstr "Acción de exportación"
224
 
225
+ #: src/Admin/AdminTabGeneral.php:174 src/Admin/AdminTabGeneral.php:213
226
+ #, fuzzy
227
+ #| msgid "Email to notify"
228
  msgctxt "(Admin)"
229
  msgid "Email to notify"
230
+ msgstr "E-mail à notifier"
231
 
232
+ #: src/Admin/AdminTabGeneral.php:185
233
+ #, fuzzy
234
+ #| msgctxt "(Admin)"
235
+ #| msgid "Delete & Anonymize Data"
236
  msgctxt "(Admin)"
237
  msgid "Delete & Anonymize Data"
238
  msgstr "Eliminar y anonimizar datos"
239
 
240
+ #: src/Admin/AdminTabGeneral.php:190
241
+ #, fuzzy
242
+ #| msgid "Delete action"
243
  msgctxt "(Admin)"
244
  msgid "Delete action"
245
+ msgstr "Supprimer le projet"
246
 
247
+ #: src/Admin/AdminTabGeneral.php:197
248
+ #, fuzzy
249
+ #| msgctxt "(Admin)"
250
+ #| msgid "Delete or reassign content?"
251
  msgctxt "(Admin)"
252
  msgid "Delete or reassign content?"
253
  msgstr "¿Borrar o reasignar contenido?"
254
 
255
+ #: src/Admin/AdminTabGeneral.php:205
256
+ #, fuzzy
257
+ #| msgctxt "(Admin)"
258
+ #| msgid "Reassign content to"
259
  msgctxt "(Admin)"
260
  msgid "Reassign content to"
261
  msgstr "Reasignar contenido a"
262
 
263
+ #: src/Admin/AdminTabGeneral.php:225
264
  msgctxt "(Admin)"
265
  msgid "Styling"
266
  msgstr "Estilo"
267
 
268
+ #: src/Admin/AdminTabGeneral.php:230
269
+ #, fuzzy
270
+ #| msgctxt "(Admin)"
271
+ #| msgid "Enable basic styling on Privacy Tools page"
272
  msgctxt "(Admin)"
273
  msgid "Enable basic styling on Privacy Tools page"
274
+ msgstr ""
275
+ "Habilitar el estilo básico para la página de herramientas de privacidad."
276
 
277
+ #: src/Admin/AdminTabGeneral.php:242
278
  msgctxt "(Admin)"
279
  msgid "Compatibility"
280
  msgstr "Compatibilidad"
281
 
282
+ #: src/Admin/AdminTabGeneral.php:247
283
+ #, fuzzy
284
+ #| msgctxt "(Admin)"
285
+ #| msgid "Enable automatic theme compatibility"
286
  msgctxt "(Admin)"
287
  msgid "Enable automatic theme compatibility"
288
  msgstr "Habilitar la compatibilidad automática de temas"
289
 
290
+ #: src/Admin/AdminTabGeneral.php:259
291
+ msgctxt "(Admin)"
292
+ msgid "Woocommerce Integration"
293
+ msgstr "Integración con WooCommerce"
294
+
295
+ #: src/Admin/AdminTabGeneral.php:264
296
+ #, fuzzy
297
+ #| msgctxt "(Admin)"
298
+ #| msgid "Enable WooCommerce Compatibility"
299
+ msgctxt "(Admin)"
300
+ msgid "Enable WooCommerce Compatibility"
301
+ msgstr "Habilitar la compatibilidad con WooCommerce"
302
+
303
+ #: src/Admin/AdminTabGeneral.php:271
304
+ #: views/admin/general/woo-disable_checkbox.php:10
305
+ #, fuzzy
306
+ #| msgid "Disable WooCommerce Privacy Checkbox"
307
+ msgctxt "(Admin)"
308
+ msgid "Disable WooCommerce Privacy Checkbox"
309
+ msgstr "Désactiver la case à cocher Commentaire"
310
+
311
+ #: src/Admin/AdminTabGeneral.php:278
312
+ #: views/admin/general/woo-disable_register_checkbox.php:9
313
+ #, fuzzy
314
+ #| msgid "Disable WooCommerce Register Privacy Checkbox"
315
+ msgctxt "(Admin)"
316
+ msgid "Disable WooCommerce Register Privacy Checkbox"
317
+ msgstr "Désactiver la case à cocher de confidentialité de WooCommerce"
318
+
319
+ #: src/Admin/AdminTabGeneral.php:290
320
+ #, fuzzy
321
+ #| msgctxt "(Admin)"
322
+ #| msgid "Easy Digital Download Integration"
323
+ msgctxt "(Admin)"
324
+ msgid "Easy Digital Download Integration"
325
+ msgstr "Fácil integración de descarga digital"
326
+
327
+ #: src/Admin/AdminTabGeneral.php:295
328
+ #, fuzzy
329
+ #| msgctxt "(Admin)"
330
+ #| msgid "Enable EDD Compatibility"
331
+ msgctxt "(Admin)"
332
+ msgid "Enable EDD Compatibility"
333
+ msgstr "Habilitar compatibilidad EDD"
334
+
335
+ #: src/Admin/AdminTabGeneral.php:322
336
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:181
337
+ #, fuzzy
338
+ #| msgctxt "(Admin)"
339
+ #| msgid "Disable Checkbox For Comments"
340
+ msgctxt "(Admin)"
341
+ msgid "Disable Checkbox For Comments"
342
+ msgstr "Desactivar casilla de verificación para comentarios"
343
+
344
+ #: src/Admin/AdminTabGeneral.php:330
345
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:188
346
+ #, fuzzy
347
+ #| msgid "Disable Checkbox For Register Form"
348
+ msgctxt "(Admin)"
349
+ msgid "Disable Checkbox For Register Form"
350
+ msgstr "Désactiver la case à cocher pour le formulaire d’inscription"
351
+
352
+ #: src/Admin/AdminTabGeneral.php:408 src/Admin/AdminTabGeneral.php:424
353
+ #: src/Admin/AdminTabGeneral.php:449 src/Admin/AdminTabGeneral.php:506
354
  #: views/installer/steps/configuration-settings.php:62
355
  msgctxt "(Admin)"
356
  msgid "&mdash; Select &mdash;"
357
  msgstr "&mdash; Seleccionar &mdash;"
358
 
359
+ #: src/Admin/WordpressAdmin.php:68
360
  msgctxt "(Admin)"
361
  msgid "Privacy & GDPR Settings"
362
+ msgstr "Privacidad y configuración de RGPD"
363
 
364
+ #: src/Admin/WordpressAdmin.php:69 views/installer/welcome-notice.php:6
365
  msgctxt "(Admin)"
366
+ msgid "Data443 GDPR"
367
+ msgstr "Data443 RGPD"
368
+
369
+ #: src/Components/AdvancedIntegration/AdminTabAdvancedIntegration.php:17
370
+ #: src/Components/AdvancedIntegration/AdminTabAdvancedIntegration.php:26
371
+ #, fuzzy
372
+ #| msgctxt "(Admin)"
373
+ #| msgid "No data found!"
374
+ msgctxt "(Admin)"
375
+ msgid "Data Hound"
376
+ msgstr "¡Datos no encontrados!"
377
 
378
  #: src/Components/Consent/AdminTabConsent.php:30
379
+ #: src/Components/Consent/AdminTabConsent.php:50
380
  msgctxt "(Admin)"
381
  msgid "Consent"
382
  msgstr "Consentimiento"
383
 
384
+ #: src/Components/Consent/AdminTabConsent.php:55
385
+ msgctxt "(Admin)"
386
+ msgid "Additional Settings"
387
+ msgstr "Ajustes Adicionales"
388
+
389
+ #: src/Components/Consent/AdminTabConsent.php:60
390
+ #, fuzzy
391
+ #| msgid "Display Consent Calendar"
392
+ msgctxt "(Admin)"
393
+ msgid "Display Consent Calendar"
394
+ msgstr "Afficher le calendrier des consentements"
395
+
396
+ #: src/Components/Consent/AdminTabConsent.php:172
397
  msgctxt "(Admin)"
398
  msgid "Consent slug is a required field!"
399
+ msgstr "¡El slug del consentimiento es un campo obligatorio!"
400
 
401
+ #: src/Components/Consent/AdminTabConsent.php:177
402
+ #, fuzzy
403
+ #| msgid ""
404
+ #| "You may only use alphanumeric characters, dash and underscore in the "
405
+ #| "consent slug field."
406
  msgctxt "(Admin)"
407
  msgid ""
408
  "You may only use alphanumeric characters, dash and underscore in the consent "
409
  "slug field."
410
+ msgstr "Caractères alphanumériques, tiret et soulignement seulement."
 
 
411
 
412
+ #: src/Components/Consent/AdminTabConsent.php:182
413
  msgctxt "(Admin)"
414
  msgid "Consent title is a required field!"
415
+ msgstr "¡El título del consentimiento es un campo obligatorio!"
416
+
417
+ #: src/Components/Consent/AdminTabConsent.php:194
418
+ msgid ""
419
+ "To use this website, you accepted our Privacy Policy. If you wish to "
420
+ "withdraw your acceptance, please use the \"Delete my data\" button below."
421
+ msgstr ""
422
+ "En utilisant ce site web, vous avez accepté la politique de confidentialité. "
423
+ "Si vous souhaitez retirer votre acceptation, veuillez utiliser le bouton "
424
+ "\"supprimer mes données\" ci-dessous."
425
 
426
+ #: src/Components/Consent/AdminTabConsent.php:197
427
+ #, fuzzy
428
+ msgid ""
429
+ "Enable this feature to allow users to submit a time limit on how many months "
430
+ "their consent is given for their coments and registration."
431
+ msgstr ""
432
+ "Habilite esta función para permitir a los usuarios enviar un límite de "
433
+ "tiempo sobre cuántos meses se da su consentimiento para sus comentarios y "
434
+ "registro."
435
+
436
+ #: src/Components/Consent/ConsentManager.php:53
437
+ #: src/Modules/WooCommerceGdpr/WooCommerceGdpr.php:144
438
  #, php-format
439
  msgid "I accept the %sPrivacy Policy%s"
440
  msgstr "acepto el %sPolítica de privacidad%s"
441
 
442
+ #: src/Components/Consent/ConsentManager.php:57
443
+ #: src/Components/Consent/ConsentManager.php:78
444
+ #, fuzzy
445
+ #| msgid ""
446
+ #| "This consent is not visible by default. If someone wishes to withdraw it, "
447
+ #| "they should simply request to delete all their data."
448
  msgctxt "(Admin)"
449
  msgid ""
450
  "This consent is not visible by default. If someone wishes to withdraw it, "
451
  "they should simply request to delete all their data."
452
  msgstr ""
453
+ "Le consentement n’est pas visible par défaut. Si quelqu’un souhaite le "
454
+ "révoquer, il doit simplement demander l’effacement de ses données "
455
+ "personnelles."
456
 
457
+ #: src/Components/Consent/ConsentManager.php:74
458
  #, php-format
459
  msgid "I accept the %sTerms & Conditions%s"
460
  msgstr "acepto el %sTérminos y condiciones%s"
461
 
462
+ #: src/Components/Consent/ConsentManager.php:87
463
+ #, fuzzy
464
+ #| msgid "Woocommerce Policy Consent"
465
+ msgctxt "(Admin)"
466
+ msgid "Woocommerce Policy Consent"
467
+ msgstr "Consentement à la politique de Woocommerce"
468
+
469
+ #: src/Components/Consent/ConsentManager.php:88
470
+ #, fuzzy
471
+ #| msgctxt "(Admin)"
472
+ #| msgid ""
473
+ #| "This consent is visible by default on woocommerce checkout page. If "
474
+ #| "someone wishes to withdraw it, they should simply request to delete all "
475
+ #| "their data."
476
+ msgctxt "(Admin)"
477
+ msgid ""
478
+ "This consent is visible by default on woocommerce checkout page. If someone "
479
+ "wishes to withdraw it, they should simply request to delete all their data."
480
+ msgstr ""
481
+ "Este consentimiento es visible por defecto en la página de pago de "
482
+ "woocommerce. Si alguien desea retirarlo, simplemente debe solicitar la "
483
+ "eliminación de todos sus datos."
484
+
485
+ #: src/Components/Consent/ConsentManager.php:389
486
+ #, fuzzy
487
+ #| msgctxt "(Admin)"
488
+ #| msgid "Company information"
489
+ msgid "Consent Information"
490
+ msgstr "Información de la empresa"
491
+
492
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:17
493
+ msgctxt "(Admin)"
494
+ msgid "Cookie Popup"
495
+ msgstr "Cookie Popup"
496
+
497
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:44
498
+ #, fuzzy
499
+ #| msgid "Cookie Popup Settings"
500
+ msgctxt "(Admin)"
501
+ msgid "Cookie Popup Settings"
502
+ msgstr "Réglages de la fenêtre modale de cookie"
503
+
504
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:48
505
+ #: views/admin/general/enable-popup.php:9
506
+ #, fuzzy
507
+ #| msgctxt "(Admin)"
508
+ #| msgid "Enable Cookie Acceptance Popup"
509
+ msgctxt "(Admin)"
510
+ msgid "Enable Cookie Acceptance Popup"
511
+ msgstr "Habilitar ventana emergente de aceptación de cookies"
512
+
513
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:54
514
+ #: views/admin/general/enable-onetime-popup.php:9
515
+ #, fuzzy
516
+ #| msgctxt "(Admin)"
517
+ #| msgid "Enable One Time Cookie Acceptance Popup"
518
+ msgctxt "(Admin)"
519
+ msgid "Enable One Time Cookie Acceptance Popup"
520
+ msgstr "Habilitar una ventana emergente de aceptación de cookies"
521
+
522
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:60
523
+ #, fuzzy
524
+ #| msgctxt "(Admin)"
525
+ #| msgid "Enable Privacy policy on Popup"
526
+ msgctxt "(Admin)"
527
+ msgid "Enable Privacy policy on Popup"
528
+ msgstr "Habilitar política de privacidad en Popup"
529
+
530
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:66
531
+ #, fuzzy
532
+ #| msgctxt "(Admin)"
533
+ #| msgid "Cookie Acceptance Popup header"
534
+ msgctxt "(Admin)"
535
+ msgid "Cookie Acceptance Popup header"
536
+ msgstr "Encabezado emergente de aceptación de cookie"
537
+
538
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:72
539
+ #, fuzzy
540
+ #| msgctxt "(Admin)"
541
+ #| msgid "Cookie Acceptance Popup Content"
542
+ msgctxt "(Admin)"
543
+ msgid "Cookie Acceptance Popup Content"
544
+ msgstr "Contenido emergente de aceptación de cookies"
545
+
546
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:81
547
+ #, fuzzy
548
+ #| msgid "Acceptance Popup Setting"
549
+ msgctxt "(Admin)"
550
+ msgid "Acceptance Popup Setting"
551
+ msgstr "Réglage de fenêtre modale de consentement"
552
+
553
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:86
554
+ #, fuzzy
555
+ #| msgid "Popup Position"
556
+ msgctxt "(Admin)"
557
+ msgid "Popup Position"
558
+ msgstr "Position du popup"
559
+
560
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:93
561
+ #, fuzzy
562
+ #| msgctxt "(Admin)"
563
+ #| msgid "Popup theme"
564
+ msgctxt "(Admin)"
565
+ msgid "Popup theme"
566
+ msgstr "Tema emergente"
567
+
568
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:100
569
+ #, fuzzy
570
+ #| msgctxt "(Admin)"
571
+ #| msgid "Popup Allow Text"
572
+ msgctxt "(Admin)"
573
+ msgid "Popup Allow Text"
574
+ msgstr "Popup Permitir texto"
575
+
576
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:107
577
+ #, fuzzy
578
+ #| msgctxt "(Admin)"
579
+ #| msgid "Popup Dismiss Text"
580
+ msgctxt "(Admin)"
581
+ msgid "Popup Dismiss Text"
582
+ msgstr "Popup Descartar Texto"
583
+
584
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:114
585
+ #, fuzzy
586
+ #| msgid "Popup Learn More Text"
587
+ msgctxt "(Admin)"
588
+ msgid "Popup Learn More Text"
589
+ msgstr "Fenêtre modale En savoir plus"
590
+
591
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:121
592
+ #, fuzzy
593
+ #| msgctxt "(Admin)"
594
+ #| msgid "Cookie Acceptance link target"
595
+ msgctxt "(Admin)"
596
+ msgid "Cookie Acceptance link target"
597
+ msgstr "Objetivo de enlace de aceptación de cookies"
598
+
599
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:128
600
+ #, fuzzy
601
+ #| msgctxt "(Admin)"
602
+ #| msgid "Cookie Acceptance Background Color"
603
+ msgctxt "(Admin)"
604
+ msgid "Cookie Acceptance Background Color"
605
+ msgstr "Color de fondo de aceptación de cookie"
606
+
607
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:135
608
+ #, fuzzy
609
+ #| msgctxt "(Admin)"
610
+ #| msgid "Cookie Acceptance Text Color"
611
+ msgctxt "(Admin)"
612
+ msgid "Cookie Acceptance Text Color"
613
+ msgstr "Color de texto de aceptación de cookie"
614
+
615
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:142
616
+ #, fuzzy
617
+ #| msgctxt "(Admin)"
618
+ #| msgid "Cookie Acceptance Button Backgroung Color"
619
+ msgctxt "(Admin)"
620
+ msgid "Cookie Acceptance Button Backgroung Color"
621
+ msgstr "Botón de aceptación de galletas Color de fondo"
622
+
623
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:149
624
+ #, fuzzy
625
+ #| msgctxt "(Admin)"
626
+ #| msgid "Cookie Acceptance Button Color"
627
+ msgctxt "(Admin)"
628
+ msgid "Cookie Acceptance Button Color"
629
+ msgstr "Color del botón de aceptación de cookie"
630
+
631
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:156
632
+ #, fuzzy
633
+ #| msgid "Cookie Acceptance Border Color"
634
+ msgctxt "(Admin)"
635
+ msgid "Cookie Acceptance Border Color"
636
+ msgstr "Couleur DE bordure d’acceptation de cookie"
637
+
638
+ #: src/Components/DoNotSell/AdminTabDoNotSell.php:17
639
+ #: src/Components/DoNotSell/AdminTabDoNotSell.php:28
640
+ #, fuzzy
641
+ #| msgid "Do Not Sell My Data"
642
+ msgctxt "(Admin)"
643
+ msgid "Do Not Sell My Data"
644
+ msgstr "Partage des données"
645
+
646
+ #: src/Components/DoNotSell/AdminTabDoNotSell.php:34
647
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:62
648
+ msgctxt "(Admin)"
649
+ msgid "Shortcode"
650
+ msgstr "Shortcode"
651
+
652
+ #: src/Components/DoNotSell/AdminTabDoNotSell.php:40
653
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:68
654
+ #, fuzzy
655
+ #| msgid "Shortcode for PHP"
656
+ msgctxt "(Admin)"
657
+ msgid "Shortcode for PHP"
658
+ msgstr "Code court pour PHP"
659
+
660
+ #: src/Components/DoNotSell/AdminTabDoNotSell.php:46
661
+ msgctxt "(Admin)"
662
+ msgid "View Requests"
663
+ msgstr "Ver Solicitudes"
664
+
665
+ #: src/Components/PrivacyManager/AdminTabPrivacyManager.php:17
666
+ #, fuzzy
667
+ #| msgctxt "(Admin)"
668
+ #| msgid "Data443™ Privacy Manager"
669
+ msgctxt "(Admin)"
670
+ msgid "Global Privacy Manager"
671
+ msgstr "Data443 ™ Privacy Manager"
672
+
673
+ #: src/Components/PrivacyManager/AdminTabPrivacyManager.php:29
674
+ #, fuzzy
675
+ #| msgid "Privacy Manager"
676
+ msgctxt "(Admin)"
677
+ msgid "Privacy Manager"
678
+ msgstr "Responsable Confidentialité"
679
+
680
  #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:19
681
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:62
682
  #: views/admin/privacy-policy/generated.php:1 views/installer/header.php:41
683
  msgctxt "(Admin)"
684
  msgid "Privacy Policy"
685
  msgstr "Política de privacidad"
686
 
687
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:71
688
  msgctxt "(Admin)"
689
  msgid "Company information"
690
  msgstr "Información de la empresa"
691
 
692
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:76
693
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:223
694
  msgctxt "(Admin)"
695
  msgid "Company Name"
696
+ msgstr "Nombre de la empresa"
697
 
698
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:84
699
  msgctxt "(Admin)"
700
  msgid "Company Email"
701
+ msgstr "Email de l'entreprise"
702
 
703
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:91
704
  msgctxt "(Admin)"
705
  msgid "Company Location"
706
+ msgstr "Sede Empresa"
707
 
708
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:107
709
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:259
710
+ #, fuzzy
711
+ #| msgid "Representative Contact Name"
712
  msgctxt "(Admin)"
713
  msgid "Representative Contact Name"
714
+ msgstr "Nom du responsable"
715
 
716
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:114
717
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:266
718
+ #, fuzzy
719
+ #| msgid "Representative Contact Email"
720
  msgctxt "(Admin)"
721
  msgid "Representative Contact Email"
722
+ msgstr "E-mail de contact du représentant"
723
 
724
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:121
725
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:273
726
+ #, fuzzy
727
+ #| msgid "Representative Contact Phone"
728
  msgctxt "(Admin)"
729
  msgid "Representative Contact Phone"
730
+ msgstr " de téléphone de contact du représentant"
731
 
732
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:137
733
+ #, fuzzy
734
+ #| msgid "Data Protection Authority"
735
  msgctxt "(Admin)"
736
  msgid "Data Protection Authority"
737
+ msgstr "Autorité chargée de la protection des données"
738
 
739
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:143
740
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:302
741
+ #, fuzzy
742
+ #| msgid "Data Protection Authority Website"
743
  msgctxt "(Admin)"
744
  msgid "Data Protection Authority Website"
745
+ msgstr "Site web de l’autorité chargée de la protection des données"
746
 
747
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:150
748
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:309
749
+ #, fuzzy
750
+ #| msgid "Data Protection Authority Email"
751
  msgctxt "(Admin)"
752
  msgid "Data Protection Authority Email"
753
+ msgstr "Email de l’autorité chargée de la protection des données"
754
 
755
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:157
756
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:316
757
+ #, fuzzy
758
+ #| msgid "Data Protection Authority Phone"
759
  msgctxt "(Admin)"
760
  msgid "Data Protection Authority Phone"
761
+ msgstr "Téléphone de l’autorité chargée de la protection des données"
762
 
763
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:167
764
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:177
765
+ #, fuzzy
766
+ #| msgid "Data Protection Officer"
767
  msgctxt "(Admin)"
768
  msgid "Data Protection Officer"
769
+ msgstr "Délégué à la Protection des Données"
770
 
771
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:170
772
+ #, fuzzy
773
+ #| msgctxt "(Admin)"
774
+ #| msgid "Knowledge base: Do I need to appoint a Data Protection Officer?"
775
  msgctxt "(Admin)"
776
  msgid "Knowledge base: Do I need to appoint a Data Protection Officer?"
777
  msgstr ""
778
  "Base de conocimientos: ¿Necesito nombrar un Oficial de Protección de Datos?"
779
 
780
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:184
781
+ #, fuzzy
782
+ #| msgid "Data Protection Officer Name"
783
  msgctxt "(Admin)"
784
  msgid "Data Protection Officer Name"
785
+ msgstr "Nom du responsable RGPD"
786
 
787
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:192
788
+ #, fuzzy
789
+ #| msgid "Data Protection Officer Email"
790
  msgctxt "(Admin)"
791
  msgid "Data Protection Officer Email"
792
+ msgstr "Email de la personne déléguée à la protection des données"
793
+
794
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:204
795
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:347
796
+ msgctxt "(Admin)"
797
+ msgid "Delete Text"
798
+ msgstr "Eliminar texto"
799
 
800
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:230
801
  msgctxt "(Admin)"
802
  msgid "Contact Email"
803
  msgstr "Email de contacto"
804
 
805
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:249
806
+ #, fuzzy
807
+ #| msgid "Representative Contact"
808
  msgctxt "(Admin)"
809
  msgid "Representative Contact"
810
+ msgstr "Nom de contact du représentant légal"
811
 
812
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:252
813
+ #, fuzzy
814
+ #| msgctxt "(Admin)"
815
+ #| msgid "Knowledge base: Do I need to appoint an EU-based representative?"
816
  msgctxt "(Admin)"
817
  msgid "Knowledge base: Do I need to appoint an EU-based representative?"
818
  msgstr "Base de conocimientos: ¿Debo nombrar un representante en la UE?"
819
 
820
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:289
821
+ #, fuzzy, php-format
822
+ #| msgid "See the %slist of contacts here%s."
823
+ msgctxt "(Admin)"
824
+ msgid "See the %slist of contacts here%s."
825
+ msgstr "Voir la %sliste de contacts ici%s."
826
+
827
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:333
828
+ #, fuzzy
829
+ #| msgid "DPO Name"
830
  msgctxt "(Admin)"
831
  msgid "DPO Name"
832
+ msgstr "Nom du DPO"
833
+
834
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:340
835
+ #, fuzzy
836
+ #| msgid "DPO Email"
837
+ msgctxt "(Admin)"
838
+ msgid "DPO Email"
839
+ msgstr "Email DPO du Droit à l'oubli"
840
 
841
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:422
842
+ #, fuzzy
843
+ #| msgid "Save & Generate Policy"
844
  msgctxt "(Admin)"
845
  msgid "Save & Generate Policy"
846
+ msgstr "Enregistrer et générer la Politique de confidentialité"
847
 
848
+ #: src/Components/PrivacyPolicy/PrivacyPolicy.php:81
849
+ #: src/Installer/Installer.php:309 src/Installer/Steps/PolicySettings.php:210
850
  #: views/themes/storefront/footer.php:3
851
  #: views/themes/twentyseventeen/footer.php:3
852
  #: views/themes/twentysixteen/footer.php:4
853
  msgid "Privacy Policy"
854
  msgstr "Política de privacidad"
855
 
856
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:17
857
+ #, fuzzy
858
+ #| msgid "Privacy Safe"
859
+ msgctxt "(Admin)"
860
+ msgid "Privacy Safe"
861
+ msgstr "Protection de la vie privée (Privacy safe)"
862
+
863
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:33
864
+ #, fuzzy
865
+ #| msgid "Privacy Safe by Data443"
866
+ msgctxt "(Admin)"
867
+ msgid "Privacy Safe by Data443"
868
+ msgstr "Sécurité de la vie privée par Data443"
869
+
870
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:38
871
+ #, fuzzy
872
+ msgctxt "(Admin)"
873
+ msgid "Register for Privacy Safe"
874
+ msgstr "Inscrivez-vous à Privacy Safe"
875
+
876
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:44
877
+ #, fuzzy
878
+ #| msgid "Privacy Safe Settings"
879
+ msgctxt "(Admin)"
880
+ msgid "Privacy Safe Settings"
881
+ msgstr "Réglages de la sécurité de la vie privée"
882
+
883
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:50
884
+ #, fuzzy
885
+ #| msgid "Seal Code"
886
+ msgctxt "(Admin)"
887
+ msgid "Seal Code"
888
+ msgstr "Code du sceau"
889
+
890
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:56
891
+ #, fuzzy
892
+ #| msgid "Image Code"
893
+ msgctxt "(Admin)"
894
+ msgid "Image Code"
895
+ msgstr "Code de l'image"
896
+
897
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:74
898
+ #, fuzzy
899
+ #| msgid "Support Data443"
900
+ msgctxt "(Admin)"
901
+ msgid "Support Data443"
902
+ msgstr "Support Data443"
903
+
904
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:83
905
+ #, fuzzy
906
+ msgctxt "(Admin)"
907
+ msgid ""
908
+ "Strengthen your reputation. The privacy safe seal assures your customers "
909
+ "that your business is in compliance with privacy laws and regulations. The "
910
+ "privacy safe seal will verify that the GDPR Framework plugin is installed."
911
+ msgstr ""
912
+ "Fortalece tu reputación. El sello de seguridad de privacidad asegura a sus "
913
+ "clientes que su negocio cumple con las leyes y regulaciones de privacidad. "
914
+ "El sello de seguridad de privacidad verificará que el complemento GDPR "
915
+ "Framework esté instalado."
916
+
917
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:86
918
+ #, fuzzy
919
+ msgctxt "(Admin)"
920
+ msgid ""
921
+ "Register now to activate your Privacy Safe seal. Visit the link below, "
922
+ "complete the complete the checkout process. Once approved you will recieve "
923
+ "notice to get your seal code and image code. Enter those here and save. You "
924
+ "can then place the seal where you would like on your site."
925
+ msgstr ""
926
+ "Regístrese ahora para activar su sello Privacy Safe. Visite el siguiente "
927
+ "enlace, complete el proceso de pago completo. Una vez aprobado, recibirá un "
928
+ "aviso para obtener su código de sello y código de imagen. Introdúzquelos "
929
+ "aquí y guárdelos. A continuación, puede colocar el sello donde desee en su "
930
+ "sitio."
931
+
932
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:86
933
+ msgctxt "(Admin)"
934
+ msgid "Register Here"
935
+ msgstr "Regístrese aquí"
936
+
937
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:89
938
+ #, fuzzy
939
+ msgctxt "(Admin)"
940
+ msgid "Embed the shortcode provided to display your privacy safe seal."
941
+ msgstr ""
942
+ "Inserte el shortcode proporcionado para mostrar su sello de seguridad de "
943
+ "privacidad."
944
+
945
+ #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:22
946
+ #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:55
947
  msgid "This page is currently disabled."
948
  msgstr "Esta página está actualmente deshabilitada."
949
 
950
+ #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:26
951
+ #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:59
952
+ msgid "Please configure the Privacy Tools page in the admin interface."
953
+ msgstr ""
954
+ "Veuillez configurer la page Outils de confidentialité dans l’interface "
955
+ "d’administration."
956
+
957
+ #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:42
958
+ #: src/Installer/Installer.php:318
959
+ #: src/Installer/Steps/ConfigurationPages.php:65
960
  #: views/themes/storefront/footer.php:7
961
  #: views/themes/twentyseventeen/footer.php:7
962
  #: views/themes/twentysixteen/footer.php:9
967
  #: src/Components/Support/AdminTabSupport.php:20
968
  msgctxt "(Admin)"
969
  msgid "Support"
970
+ msgstr "Soporte"
 
 
 
 
 
 
 
 
971
 
972
  #: src/Components/WordpressUser/Controllers/DashboardDataPageController.php:54
973
  #: views/privacy-tools/notices.php:19
979
  msgid "Consent withdrawn."
980
  msgstr "Consentimiento retirado."
981
 
982
+ #: src/Components/WordpressUser/RegistrationForm.php:56
983
  msgid "<strong>ERROR</strong>: You must accept the terms and conditions."
984
  msgstr "<strong>ERROR</strong>: Debe aceptar los Términos y Condiciones."
985
 
992
 
993
  #: src/DataSubject/AdminTabDataSubject.php:27
994
  #: src/DataSubject/AdminTabDataSubject.php:41
995
+ #, fuzzy
996
+ #| msgid "Data Subjects"
997
  msgctxt "(Admin)"
998
  msgid "Data Subjects"
999
+ msgstr "Données personnelles"
1000
 
1001
  #: src/DataSubject/DataRepository.php:143
1002
  msgid "Data exported"
1014
  msgid "Data removal request"
1015
  msgstr "Solicitud de eliminación de datos"
1016
 
1017
+ #: src/DataSubject/DataSubjectIdentificator.php:78
1018
+ #: src/DataSubject/DataSubjectIdentificator.php:96
1019
  msgid "Your personal data on"
1020
  msgstr "Sus datos personales en"
1021
 
1047
  #: src/Helpers.php:32
1048
  msgctxt "(Admin)"
1049
  msgid "Czech Republic"
1050
+ msgstr "República Checa"
1051
 
1052
  #: src/Helpers.php:33
1053
  msgctxt "(Admin)"
1159
  msgid "United Kingdom"
1160
  msgstr "Reino Unido"
1161
 
1162
+ #: src/Helpers.php:56
1163
  msgctxt "(Admin)"
1164
+ msgid "Afghanistan "
1165
+ msgstr "Afganistán "
1166
+
1167
+ #: src/Helpers.php:57
1168
+ msgctxt "(Admin)"
1169
+ msgid "Åland Islands"
1170
+ msgstr "Islas Åland"
1171
+
1172
+ #: src/Helpers.php:58
1173
+ msgctxt "(Admin)"
1174
+ msgid "Albania"
1175
+ msgstr "Albania"
1176
+
1177
+ #: src/Helpers.php:59
1178
+ msgctxt "(Admin)"
1179
+ msgid "Algeria"
1180
+ msgstr "Argelia"
1181
+
1182
+ #: src/Helpers.php:60
1183
+ msgctxt "(Admin)"
1184
+ msgid "American Samoa "
1185
+ msgstr "Samoa Americana "
1186
+
1187
+ #: src/Helpers.php:61
1188
+ msgctxt "(Admin)"
1189
+ msgid "Andorra"
1190
+ msgstr "Andorra"
1191
+
1192
+ #: src/Helpers.php:62
1193
+ msgctxt "(Admin)"
1194
+ msgid "Angola"
1195
+ msgstr "Angola"
1196
+
1197
+ #: src/Helpers.php:63
1198
+ msgctxt "(Admin)"
1199
+ msgid "Anguilla"
1200
+ msgstr "Anguilla"
1201
+
1202
+ #: src/Helpers.php:64
1203
+ msgctxt "(Admin)"
1204
+ msgid "Antarctica"
1205
+ msgstr "Antártida"
1206
+
1207
+ #: src/Helpers.php:65
1208
+ msgctxt "(Admin)"
1209
+ msgid "Antigua and Barbuda"
1210
+ msgstr "Antigua y Barbuda"
1211
+
1212
+ #: src/Helpers.php:66
1213
+ msgctxt "(Admin)"
1214
+ msgid "Argentina"
1215
+ msgstr "Argentina"
1216
+
1217
+ #: src/Helpers.php:67
1218
+ msgctxt "(Admin)"
1219
+ msgid "Armenia"
1220
+ msgstr "Armenia"
1221
+
1222
+ #: src/Helpers.php:68
1223
+ #, fuzzy
1224
+ #| msgid "Aruba"
1225
+ msgctxt "(Admin)"
1226
+ msgid "Aruba"
1227
+ msgstr "Aruba"
1228
+
1229
+ #: src/Helpers.php:69
1230
+ msgctxt "(Admin)"
1231
+ msgid "Australia"
1232
+ msgstr "Australia"
1233
 
1234
  #: src/Helpers.php:70
1235
  msgctxt "(Admin)"
1236
+ msgid "Azerbaijan"
1237
+ msgstr "Azerbaiyán"
1238
 
1239
  #: src/Helpers.php:71
1240
  msgctxt "(Admin)"
1241
+ msgid "Bahrain"
1242
+ msgstr "Baréin"
1243
 
1244
  #: src/Helpers.php:72
1245
  msgctxt "(Admin)"
1246
+ msgid "Bahamas"
1247
+ msgstr "Bahamas"
1248
 
1249
  #: src/Helpers.php:73
1250
  msgctxt "(Admin)"
1251
+ msgid "Bangladesh"
1252
+ msgstr "Bangladesh"
1253
 
1254
  #: src/Helpers.php:74
1255
  msgctxt "(Admin)"
1256
+ msgid "Barbados"
1257
+ msgstr "Barbados"
1258
 
1259
+ #: src/Helpers.php:75
1260
+ msgctxt "(Admin)"
1261
+ msgid "Belarus"
1262
+ msgstr "Bielorrusia"
1263
 
1264
+ #: src/Helpers.php:76
1265
  msgctxt "(Admin)"
1266
+ msgid "Belize"
1267
+ msgstr "Belice"
1268
 
1269
+ #: src/Helpers.php:77
 
 
1270
  msgctxt "(Admin)"
1271
+ msgid "Benin"
1272
+ msgstr "Benín"
1273
 
1274
+ #: src/Helpers.php:78
1275
  msgctxt "(Admin)"
1276
+ msgid "Bermuda"
1277
+ msgstr "Bermuda"
 
 
 
1278
 
1279
+ #: src/Helpers.php:79
1280
  msgctxt "(Admin)"
1281
+ msgid "Bhutan"
1282
+ msgstr "Bután"
1283
 
1284
+ #: src/Helpers.php:80
1285
+ msgctxt "(Admin)"
1286
+ msgid "Bolivia, Plurinational State of"
1287
+ msgstr "Bolivia"
 
 
1288
 
1289
+ #: src/Helpers.php:81
1290
  msgctxt "(Admin)"
1291
+ msgid "Bonaire, Sint Eustatius and Saba"
1292
+ msgstr "Bonaire, Sint Eustatius and Saba"
1293
 
1294
+ #: src/Helpers.php:82
1295
  msgctxt "(Admin)"
1296
+ msgid "Bosnia and Herzegovina"
1297
+ msgstr "Bosnia y Herzegovina"
1298
 
1299
+ #: src/Helpers.php:83
1300
  msgctxt "(Admin)"
1301
+ msgid "Botswana"
1302
+ msgstr "Botsuana"
 
 
 
 
1303
 
1304
+ #: src/Helpers.php:84
1305
  msgctxt "(Admin)"
1306
+ msgid "Bouvet Island"
1307
+ msgstr "Isla Bouvet"
1308
 
1309
+ #: src/Helpers.php:85
 
1310
  msgctxt "(Admin)"
1311
+ msgid "Brazil"
1312
+ msgstr "Brasil"
1313
 
1314
+ #: src/Helpers.php:86
 
1315
  msgctxt "(Admin)"
1316
+ msgid "British Indian Ocean Territory"
1317
+ msgstr "Territorio Británico del Océano Índico"
1318
 
1319
+ #: src/Helpers.php:87
1320
  msgctxt "(Admin)"
1321
+ msgid "Brunei Darussalam"
1322
+ msgstr "Brunei Darussalam"
1323
 
1324
+ #: src/Helpers.php:88
1325
  msgctxt "(Admin)"
1326
+ msgid "Burkina Faso"
1327
+ msgstr "Burkina Faso"
1328
 
1329
+ #: src/Helpers.php:89
1330
  msgctxt "(Admin)"
1331
+ msgid "Burundi"
1332
+ msgstr "Burundi"
1333
 
1334
+ #: src/Helpers.php:90
1335
  msgctxt "(Admin)"
1336
+ msgid "Cambodia"
1337
+ msgstr "Camboya"
1338
 
1339
+ #: src/Helpers.php:91
1340
  msgctxt "(Admin)"
1341
+ msgid "Cameroon"
1342
+ msgstr "Camerún"
 
 
 
 
 
1343
 
1344
+ #: src/Helpers.php:92
1345
  msgctxt "(Admin)"
1346
+ msgid "Canada"
1347
+ msgstr "Canadá"
1348
 
1349
+ #: src/Helpers.php:93
1350
  msgctxt "(Admin)"
1351
+ msgid "Cape Verde"
1352
+ msgstr "Cabo Verde"
1353
 
1354
+ #: src/Helpers.php:94
1355
  msgctxt "(Admin)"
1356
+ msgid "Cayman Islands"
1357
+ msgstr "Islas Caimán"
1358
 
1359
+ #: src/Helpers.php:95
1360
  msgctxt "(Admin)"
1361
+ msgid "Central African Republic"
1362
+ msgstr "República Centroafricana"
1363
 
1364
+ #: src/Helpers.php:96
1365
  msgctxt "(Admin)"
1366
+ msgid "Chad"
1367
+ msgstr "Chad"
 
 
 
1368
 
1369
+ #: src/Helpers.php:97
1370
  msgctxt "(Admin)"
1371
+ msgid "Chile"
1372
+ msgstr "Chile"
 
 
 
 
1373
 
1374
+ #: src/Helpers.php:98
1375
  msgctxt "(Admin)"
1376
+ msgid "China"
1377
+ msgstr "China"
1378
 
1379
+ #: src/Helpers.php:99
1380
  msgctxt "(Admin)"
1381
+ msgid "Christmas Island"
1382
+ msgstr "Isla de Pascua"
1383
 
1384
+ #: src/Helpers.php:100
1385
  msgctxt "(Admin)"
1386
+ msgid "Cocos (Keeling) Islands"
1387
+ msgstr "Islas Cocos"
1388
 
1389
+ #: src/Helpers.php:101
1390
  msgctxt "(Admin)"
1391
+ msgid "Colombia"
1392
+ msgstr "Colombia"
1393
 
1394
+ #: src/Helpers.php:102
1395
  msgctxt "(Admin)"
1396
+ msgid "Comoros"
1397
+ msgstr "Comores"
1398
 
1399
+ #: src/Helpers.php:103
1400
  msgctxt "(Admin)"
1401
+ msgid "Congo"
1402
+ msgstr "Congo"
1403
 
1404
+ #: src/Helpers.php:104
1405
  msgctxt "(Admin)"
1406
+ msgid "Congo, the Democratic Republic of the"
1407
+ msgstr "República Democrática del Congo"
1408
 
1409
+ #: src/Helpers.php:105
1410
  msgctxt "(Admin)"
1411
+ msgid "Cook Islands"
1412
+ msgstr "Islas Cook"
 
 
 
 
1413
 
1414
+ #: src/Helpers.php:106
1415
  msgctxt "(Admin)"
1416
+ msgid "Costa Rica"
1417
+ msgstr "Costa Rica"
1418
 
1419
+ #: src/Helpers.php:107
1420
+ #, fuzzy
1421
+ #| msgid "Côte dIvoire"
1422
  msgctxt "(Admin)"
1423
+ msgid "Côte dIvoire"
1424
+ msgstr "Côte d’Ivoire"
1425
 
1426
+ #: src/Helpers.php:108
1427
  msgctxt "(Admin)"
1428
+ msgid "Cuba"
1429
+ msgstr "Cuba"
1430
 
1431
+ #: src/Helpers.php:109
1432
+ msgctxt "(Admin)"
1433
+ msgid "Curaçao"
1434
+ msgstr "Curaçao"
 
 
1435
 
1436
+ #: src/Helpers.php:110
 
1437
  msgctxt "(Admin)"
1438
+ msgid "Djibouti"
1439
+ msgstr "Yibuti"
1440
 
1441
+ #: src/Helpers.php:111
 
1442
  msgctxt "(Admin)"
1443
+ msgid "Dominica"
1444
+ msgstr "Dominica"
1445
 
1446
+ #: src/Helpers.php:112
1447
  msgctxt "(Admin)"
1448
+ msgid "Dominican Republic"
1449
+ msgstr "República Dominicana"
 
 
 
 
1450
 
1451
+ #: src/Helpers.php:113
1452
  msgctxt "(Admin)"
1453
+ msgid "Ecuador"
1454
+ msgstr "Ecuador"
 
 
 
 
1455
 
1456
+ #: src/Helpers.php:114
1457
  msgctxt "(Admin)"
1458
+ msgid "Egypt"
1459
+ msgstr "Egipto"
 
 
1460
 
1461
+ #: src/Helpers.php:115
1462
  msgctxt "(Admin)"
1463
+ msgid "El Salvador"
1464
+ msgstr "El Salvador"
 
 
 
 
 
 
1465
 
1466
+ #: src/Helpers.php:116
 
1467
  msgctxt "(Admin)"
1468
+ msgid "Equatorial Guinea"
1469
+ msgstr "Guinea Ecuatorial"
 
 
 
1470
 
1471
+ #: src/Helpers.php:117
 
1472
  msgctxt "(Admin)"
1473
+ msgid "Eritrea"
1474
+ msgstr "Eritrea"
1475
 
1476
+ #: src/Helpers.php:118
1477
  msgctxt "(Admin)"
1478
+ msgid "Ethiopia"
1479
+ msgstr "Etiopía"
 
 
 
 
1480
 
1481
+ #: src/Helpers.php:119
1482
  msgctxt "(Admin)"
1483
+ msgid "Falkland Islands (Malvinas)"
1484
+ msgstr "Islas Malvinas"
 
 
 
 
1485
 
1486
+ #: src/Helpers.php:120
1487
  msgctxt "(Admin)"
1488
+ msgid "Faroe Islands"
1489
+ msgstr "Islas Feroe"
 
 
1490
 
1491
+ #: src/Helpers.php:121
1492
  msgctxt "(Admin)"
1493
+ msgid "Fiji"
1494
+ msgstr "Fiji"
1495
 
1496
+ #: src/Helpers.php:122
1497
  msgctxt "(Admin)"
1498
+ msgid "French Guiana"
1499
+ msgstr "Guyana Francesa"
1500
 
1501
+ #: src/Helpers.php:123
1502
  msgctxt "(Admin)"
1503
+ msgid "French Polynesia"
1504
+ msgstr "Polinesia Francesa"
1505
 
1506
+ #: src/Helpers.php:124
1507
  msgctxt "(Admin)"
1508
+ msgid "French Southern Territories"
1509
+ msgstr "Territorios Australes Franceses"
 
 
 
 
1510
 
1511
+ #: src/Helpers.php:125
 
1512
  msgctxt "(Admin)"
1513
+ msgid "Gabon"
1514
+ msgstr "Gabón"
1515
 
1516
+ #: src/Helpers.php:126
1517
  msgctxt "(Admin)"
1518
+ msgid "Gambia"
1519
+ msgstr "Gambia"
1520
 
1521
+ #: src/Helpers.php:127
1522
  msgctxt "(Admin)"
1523
+ msgid "Georgia"
1524
+ msgstr "Georgia"
1525
 
1526
+ #: src/Helpers.php:128
1527
+ #, fuzzy
1528
+ #| msgid "Georgia "
1529
  msgctxt "(Admin)"
1530
+ msgid "Georgia "
1531
+ msgstr "Géorgie "
1532
 
1533
+ #: src/Helpers.php:129
1534
  msgctxt "(Admin)"
1535
+ msgid "Ghana"
1536
+ msgstr "Ghana"
1537
 
1538
+ #: src/Helpers.php:130
1539
  msgctxt "(Admin)"
1540
+ msgid "Gibraltar"
1541
+ msgstr "Gibraltar"
 
 
1542
 
1543
+ #: src/Helpers.php:131
1544
  msgctxt "(Admin)"
1545
+ msgid "Greenland"
1546
+ msgstr "Groenlandia"
1547
 
1548
+ #: src/Helpers.php:132
1549
+ #, fuzzy
1550
+ #| msgid "Grenada "
1551
  msgctxt "(Admin)"
1552
+ msgid "Grenada "
1553
+ msgstr "Grenade "
 
 
1554
 
1555
+ #: src/Helpers.php:133
1556
+ #, fuzzy
1557
+ #| msgid "Guadeloupe "
1558
  msgctxt "(Admin)"
1559
+ msgid "Guadeloupe "
1560
+ msgstr "Guadeloupe "
1561
 
1562
+ #: src/Helpers.php:134
1563
  msgctxt "(Admin)"
1564
+ msgid "Guam"
1565
+ msgstr "Guam"
1566
 
1567
+ #: src/Helpers.php:135
1568
  msgctxt "(Admin)"
1569
+ msgid "Guatemala"
1570
+ msgstr "Guatemala"
 
 
 
 
1571
 
1572
+ #: src/Helpers.php:136
1573
  msgctxt "(Admin)"
1574
+ msgid "Guernsey"
1575
+ msgstr "Guernsey"
1576
 
1577
+ #: src/Helpers.php:137
1578
+ #, fuzzy
1579
+ #| msgid "Guinea "
1580
  msgctxt "(Admin)"
1581
+ msgid "Guinea "
1582
+ msgstr "Guinée "
 
 
 
 
1583
 
1584
+ #: src/Helpers.php:138
1585
+ #, fuzzy
1586
+ #| msgid "Guinea-Bissau "
1587
  msgctxt "(Admin)"
1588
+ msgid "Guinea-Bissau "
1589
+ msgstr "Guinée-Bissau "
1590
 
1591
+ #: src/Helpers.php:139
1592
+ #, fuzzy
1593
+ #| msgid "Guyana "
1594
  msgctxt "(Admin)"
1595
+ msgid "Guyana "
1596
+ msgstr "Guyana "
 
 
 
1597
 
1598
+ #: src/Helpers.php:140
1599
+ #, fuzzy
1600
+ #| msgid "Haiti "
1601
  msgctxt "(Admin)"
1602
+ msgid "Haiti "
1603
+ msgstr "Haïti "
1604
 
1605
+ #: src/Helpers.php:141
1606
+ #, fuzzy
1607
+ #| msgid "Heard Island and McDonald Islands "
1608
+ msgctxt "(Admin)"
1609
+ msgid "Heard Island and McDonald Islands "
1610
+ msgstr "Île Heard et îles McDonald "
1611
 
1612
+ #: src/Helpers.php:142
1613
+ #, fuzzy
1614
+ #| msgid "Holy See (Vatican City State) "
1615
+ msgctxt "(Admin)"
1616
+ msgid "Holy See (Vatican City State) "
1617
+ msgstr "Saint-Siège (état de la cité du Vatican) "
1618
 
1619
+ #: src/Helpers.php:143
1620
+ #, fuzzy
1621
+ #| msgid "Honduras "
1622
+ msgctxt "(Admin)"
1623
+ msgid "Honduras "
1624
+ msgstr "Honduras "
1625
 
1626
+ #: src/Helpers.php:144
1627
+ #, fuzzy
1628
+ #| msgid "Hong Kong "
1629
+ msgctxt "(Admin)"
1630
+ msgid "Hong Kong "
1631
+ msgstr "Hong Kong "
1632
 
1633
+ #: src/Helpers.php:145
1634
+ #, fuzzy
1635
+ #| msgid "India "
1636
+ msgctxt "(Admin)"
1637
+ msgid "India "
1638
+ msgstr "Inde "
1639
 
1640
+ #: src/Helpers.php:146
1641
+ #, fuzzy
1642
+ #| msgid "Indonesia "
1643
+ msgctxt "(Admin)"
1644
+ msgid "Indonesia "
1645
+ msgstr "Indonésie "
1646
 
1647
+ #: src/Helpers.php:147
1648
+ #, fuzzy
1649
+ #| msgid "Iran, Islamic Republic of "
1650
+ msgctxt "(Admin)"
1651
+ msgid "Iran, Islamic Republic of "
1652
+ msgstr "Iran, République islamique "
 
1653
 
1654
+ #: src/Helpers.php:148
1655
+ #, fuzzy
1656
+ #| msgid "Iraq "
1657
  msgctxt "(Admin)"
1658
+ msgid "Iraq "
1659
+ msgstr "Irak "
 
1660
 
1661
+ #: src/Helpers.php:149
1662
+ #, fuzzy
1663
+ #| msgid "Isle of Man "
1664
  msgctxt "(Admin)"
1665
+ msgid "Isle of Man "
1666
+ msgstr "Ile de Man "
1667
 
1668
+ #: src/Helpers.php:150
1669
+ #, fuzzy
1670
+ #| msgid "Israel "
1671
  msgctxt "(Admin)"
1672
+ msgid "Israel "
1673
+ msgstr "Israël "
1674
 
1675
+ #: src/Helpers.php:151
1676
+ #, fuzzy
1677
+ #| msgid "Jamaica "
1678
  msgctxt "(Admin)"
1679
+ msgid "Jamaica "
1680
+ msgstr "Jamaïque "
1681
 
1682
+ #: src/Helpers.php:152
1683
+ #, fuzzy
1684
+ #| msgid "Japan "
1685
  msgctxt "(Admin)"
1686
+ msgid "Japan "
1687
+ msgstr "Japon "
1688
 
1689
+ #: src/Helpers.php:153
1690
+ #, fuzzy
1691
+ #| msgid "Jersey "
1692
  msgctxt "(Admin)"
1693
+ msgid "Jersey "
1694
+ msgstr "Jersey "
1695
 
1696
+ #: src/Helpers.php:154
1697
+ #, fuzzy
1698
+ #| msgid "Jordan "
1699
  msgctxt "(Admin)"
1700
+ msgid "Jordan "
1701
+ msgstr "Jordanie "
1702
 
1703
+ #: src/Helpers.php:155
1704
+ #, fuzzy
1705
+ #| msgid "Kazakhstan "
1706
  msgctxt "(Admin)"
1707
+ msgid "Kazakhstan "
1708
+ msgstr "Kazakhstan "
1709
 
1710
+ #: src/Helpers.php:156
1711
+ #, fuzzy
1712
+ #| msgid "Kenya "
1713
  msgctxt "(Admin)"
1714
+ msgid "Kenya "
1715
+ msgstr "Kenya "
 
1716
 
1717
+ #: src/Helpers.php:157
1718
+ #, fuzzy
1719
+ #| msgid "Kiribati "
1720
  msgctxt "(Admin)"
1721
+ msgid "Kiribati "
1722
+ msgstr "Kiribati "
1723
 
1724
+ #: src/Helpers.php:158
1725
+ #, fuzzy
1726
+ #| msgid "Korea, Democratic Peoples Republic of "
1727
  msgctxt "(Admin)"
1728
+ msgid "Korea, Democratic Peoples Republic of "
1729
+ msgstr "Corée, République populaire démocratique de "
1730
 
1731
+ #: src/Helpers.php:159
1732
+ #, fuzzy
1733
+ #| msgid "Korea, Republic of "
1734
  msgctxt "(Admin)"
1735
+ msgid "Korea, Republic of "
1736
+ msgstr "Corée, République de "
1737
 
1738
+ #: src/Helpers.php:160
1739
+ #, fuzzy
1740
+ #| msgid "Kuwait "
1741
+ msgctxt "(Admin)"
1742
+ msgid "Kuwait "
1743
+ msgstr "Koweït "
1744
 
1745
+ #: src/Helpers.php:161
1746
+ #, fuzzy
1747
+ #| msgid "Kyrgyzstan "
1748
  msgctxt "(Admin)"
1749
+ msgid "Kyrgyzstan "
1750
+ msgstr "Kirghizistan "
1751
 
1752
+ #: src/Helpers.php:162
1753
+ #, fuzzy
1754
+ #| msgid "Lao Peoples Democratic Republic "
1755
  msgctxt "(Admin)"
1756
+ msgid "Lao Peoples Democratic Republic "
1757
+ msgstr "République démocratique des peuples lao "
1758
 
1759
+ #: src/Helpers.php:163
1760
+ #, fuzzy
1761
+ #| msgid "Lebanon "
1762
  msgctxt "(Admin)"
1763
+ msgid "Lebanon "
1764
+ msgstr "Liban "
1765
 
1766
+ #: src/Helpers.php:164
1767
+ #, fuzzy
1768
+ #| msgid "Lesotho "
1769
  msgctxt "(Admin)"
1770
+ msgid "Lesotho "
1771
+ msgstr "Lesotho "
1772
 
1773
+ #: src/Helpers.php:165
1774
+ #, fuzzy
1775
+ #| msgid "Liberia "
1776
  msgctxt "(Admin)"
1777
+ msgid "Liberia "
1778
+ msgstr "Libéria "
1779
 
1780
+ #: src/Helpers.php:166
1781
+ #, fuzzy
1782
+ #| msgid "Libya "
1783
  msgctxt "(Admin)"
1784
+ msgid "Libya "
1785
+ msgstr "Libye "
1786
 
1787
+ #: src/Helpers.php:167
1788
+ #, fuzzy
1789
+ #| msgid "Macao "
1790
  msgctxt "(Admin)"
1791
+ msgid "Macao "
1792
+ msgstr "Macao "
1793
 
1794
+ #: src/Helpers.php:168
1795
+ #, fuzzy
1796
+ #| msgid "Macedonia, the Former Yugoslav Republic of "
1797
  msgctxt "(Admin)"
1798
+ msgid "Macedonia, the Former Yugoslav Republic of "
1799
+ msgstr "Macédoine"
1800
 
1801
+ #: src/Helpers.php:169
1802
+ #, fuzzy
1803
  msgctxt "(Admin)"
1804
+ msgid "Madagascar "
1805
+ msgstr "Madagascar "
1806
 
1807
+ #: src/Helpers.php:170
1808
+ #, fuzzy
1809
  msgctxt "(Admin)"
1810
+ msgid "Malawi "
1811
+ msgstr "Malawi "
1812
 
1813
+ #: src/Helpers.php:171
1814
+ #, fuzzy
1815
  msgctxt "(Admin)"
1816
+ msgid "Malaysia "
1817
+ msgstr "Malaisie "
 
 
 
 
1818
 
1819
+ #: src/Helpers.php:172
1820
+ #, fuzzy
1821
+ msgctxt "(Admin)"
1822
+ msgid "Maldives "
1823
+ msgstr "Maldives "
1824
 
1825
+ #: src/Helpers.php:173
1826
+ #, fuzzy
1827
+ #| msgid "Mali "
1828
+ msgctxt "(Admin)"
1829
+ msgid "Mali "
1830
+ msgstr "Mali "
1831
 
1832
+ #: src/Helpers.php:174
1833
+ #, fuzzy
1834
+ msgctxt "(Admin)"
1835
+ msgid "Marshall Islands "
1836
+ msgstr "Îles Marshall "
1837
 
1838
+ #: src/Helpers.php:175
1839
+ #, fuzzy
1840
+ msgctxt "(Admin)"
1841
+ msgid "Martinique "
1842
+ msgstr "Martinique "
1843
 
1844
+ #: src/Helpers.php:176
1845
+ #, fuzzy
1846
+ msgctxt "(Admin)"
1847
+ msgid "Mauritania "
1848
+ msgstr "Mauritanie "
1849
 
1850
+ #: src/Helpers.php:177
1851
+ #, fuzzy
1852
+ msgctxt "(Admin)"
1853
+ msgid "Mauritius "
1854
+ msgstr "Maurice "
1855
 
1856
+ #: src/Helpers.php:178
1857
+ #, fuzzy
1858
  msgctxt "(Admin)"
1859
+ msgid "Mayotte "
1860
+ msgstr "Mayotte "
1861
 
1862
+ #: src/Helpers.php:179
1863
+ #, fuzzy
1864
  msgctxt "(Admin)"
1865
+ msgid "Mexico "
1866
+ msgstr "Mexique "
1867
 
1868
+ #: src/Helpers.php:180
1869
+ #, fuzzy
1870
+ msgctxt "(Admin)"
1871
+ msgid "Micronesia, Federated States of "
1872
+ msgstr "Micronésie, États fédérés de "
1873
 
1874
+ #: src/Helpers.php:181
1875
+ #, fuzzy
1876
+ msgctxt "(Admin)"
1877
+ msgid "Moldova, Republic of "
1878
+ msgstr "Moldova, République de "
1879
 
1880
+ #: src/Helpers.php:182
1881
+ #, fuzzy
1882
+ msgctxt "(Admin)"
1883
+ msgid "Monaco "
1884
+ msgstr "Monaco "
1885
 
1886
+ #: src/Helpers.php:183
1887
+ #, fuzzy
1888
  msgctxt "(Admin)"
1889
+ msgid "Mongolia "
1890
+ msgstr "Mongolie "
 
 
 
 
1891
 
1892
+ #: src/Helpers.php:184
1893
+ #, fuzzy
1894
+ msgctxt "(Admin)"
1895
+ msgid "Montenegro "
1896
+ msgstr "Monténégro "
1897
 
1898
+ #: src/Helpers.php:185
1899
+ #, fuzzy
1900
+ msgctxt "(Admin)"
1901
+ msgid "Montserrat "
1902
+ msgstr "Montserrat "
1903
 
1904
+ #: src/Helpers.php:186
1905
+ #, fuzzy
1906
+ msgctxt "(Admin)"
1907
+ msgid "Morocco "
1908
+ msgstr "Maroc "
1909
 
1910
+ #: src/Helpers.php:187
1911
+ #, fuzzy
1912
+ msgctxt "(Admin)"
1913
+ msgid "Mozambique "
1914
+ msgstr "Mozambique "
1915
 
1916
+ #: src/Helpers.php:188
1917
+ #, fuzzy
1918
+ msgctxt "(Admin)"
1919
+ msgid "Myanmar "
1920
+ msgstr "Myanmar "
1921
 
1922
+ #: src/Helpers.php:189
1923
+ #, fuzzy
1924
  msgctxt "(Admin)"
1925
+ msgid "Namibia "
1926
+ msgstr "Namibie "
1927
 
1928
+ #: src/Helpers.php:190
1929
+ #, fuzzy
1930
  msgctxt "(Admin)"
1931
+ msgid "Nauru "
1932
+ msgstr "Nauru "
1933
 
1934
+ #: src/Helpers.php:191
1935
+ #, fuzzy
1936
  msgctxt "(Admin)"
1937
+ msgid "Nepal "
1938
+ msgstr "Népal "
1939
 
1940
+ #: src/Helpers.php:192
1941
+ #, fuzzy
1942
  msgctxt "(Admin)"
1943
+ msgid "New Caledonia "
1944
+ msgstr "Nouvelle-Calédonie "
1945
 
1946
+ #: src/Helpers.php:193
1947
+ #, fuzzy
1948
+ #| msgctxt "(Admin)"
1949
+ #| msgid "Netherlands"
1950
  msgctxt "(Admin)"
1951
+ msgid "New Zealand "
1952
+ msgstr "Países Bajos"
1953
 
1954
+ #: src/Helpers.php:194
1955
+ #, fuzzy
1956
  msgctxt "(Admin)"
1957
+ msgid "Nicaragua "
1958
+ msgstr "Nicaragua "
1959
 
1960
+ #: src/Helpers.php:195
1961
+ #, fuzzy
1962
+ msgctxt "(Admin)"
1963
+ msgid "Niger "
1964
+ msgstr "Niger "
1965
 
1966
+ #: src/Helpers.php:196
1967
+ #, fuzzy
1968
+ msgctxt "(Admin)"
1969
+ msgid "Nigeria "
1970
+ msgstr "Nigéria "
1971
 
1972
+ #: src/Helpers.php:197
1973
+ #, fuzzy
1974
+ #| msgid "Niue "
1975
+ msgctxt "(Admin)"
1976
+ msgid "Niue "
1977
+ msgstr "Niue "
1978
 
1979
+ #: src/Helpers.php:198
1980
+ #, fuzzy
1981
+ msgctxt "(Admin)"
1982
+ msgid "Norfolk Island "
1983
+ msgstr "Île Norfolk "
1984
 
1985
+ #: src/Helpers.php:199
1986
+ #, fuzzy
1987
+ msgctxt "(Admin)"
1988
+ msgid "Northern Mariana Islands "
1989
+ msgstr "Îles Mariannes du Nord "
1990
 
1991
+ #: src/Helpers.php:200
1992
+ #, fuzzy
1993
+ #| msgid "Oman "
1994
+ msgctxt "(Admin)"
1995
+ msgid "Oman "
1996
+ msgstr "Oman "
1997
 
1998
+ #: src/Helpers.php:201
1999
+ #, fuzzy
2000
+ msgctxt "(Admin)"
2001
+ msgid "Pakistan "
2002
+ msgstr "Pakistan "
2003
 
2004
+ #: src/Helpers.php:202
2005
+ #, fuzzy
2006
  msgctxt "(Admin)"
2007
+ msgid "Palau "
2008
+ msgstr "Palaos "
 
2009
 
2010
+ #: src/Helpers.php:203
2011
+ #, fuzzy
2012
+ #| msgid "Palestine, State of "
2013
+ msgctxt "(Admin)"
2014
+ msgid "Palestine, State of "
2015
+ msgstr "Palestine, État de "
 
2016
 
2017
+ #: src/Helpers.php:204
2018
+ #, fuzzy
2019
+ msgctxt "(Admin)"
2020
+ msgid "Panama "
2021
+ msgstr "Panama "
2022
 
2023
+ #: src/Helpers.php:205
2024
+ #, fuzzy
2025
+ msgctxt "(Admin)"
2026
+ msgid "Papua New Guinea "
2027
+ msgstr "Papouasie-Nouvelle-Guinée "
2028
 
2029
+ #: src/Helpers.php:206
2030
+ #, fuzzy
2031
+ msgctxt "(Admin)"
2032
+ msgid "Paraguay "
2033
+ msgstr "Paraguay "
2034
 
2035
+ #: src/Helpers.php:207
2036
+ #, fuzzy
2037
+ #| msgid "Peru "
2038
+ msgctxt "(Admin)"
2039
+ msgid "Peru "
2040
+ msgstr "Pérou "
2041
 
2042
+ #: src/Helpers.php:208
2043
+ #, fuzzy
2044
  msgctxt "(Admin)"
2045
+ msgid "Philippines "
2046
+ msgstr "Philippines "
2047
 
2048
+ #: src/Helpers.php:209
2049
+ #, fuzzy
2050
  msgctxt "(Admin)"
2051
+ msgid "Pitcairn "
2052
+ msgstr "Pitcairn "
2053
 
2054
+ #: src/Helpers.php:210
2055
+ #, fuzzy
2056
+ msgctxt "(Admin)"
2057
+ msgid "Puerto Rico "
2058
+ msgstr "Porto Rico "
 
 
2059
 
2060
+ #: src/Helpers.php:211
2061
+ #, fuzzy
2062
+ msgctxt "(Admin)"
2063
+ msgid "Qatar "
2064
+ msgstr "Qatar "
2065
 
2066
+ #: src/Helpers.php:212
2067
+ #, fuzzy
2068
+ #| msgid "Réunion "
2069
+ msgctxt "(Admin)"
2070
+ msgid "Réunion "
2071
+ msgstr "Réunion "
2072
 
2073
+ #: src/Helpers.php:213
2074
+ #, fuzzy
2075
+ msgctxt "(Admin)"
2076
+ msgid "Russian Federation "
2077
+ msgstr "Fédération de Russie "
2078
 
2079
+ #: src/Helpers.php:214
2080
+ #, fuzzy
2081
  msgctxt "(Admin)"
2082
+ msgid "Rwanda "
2083
+ msgstr "Rwanda "
2084
 
2085
+ #: src/Helpers.php:215
2086
+ #, fuzzy
2087
+ #| msgid "Saint Barthélemy "
2088
  msgctxt "(Admin)"
2089
+ msgid "Saint Barthélemy "
2090
+ msgstr "Saint Barthélemy "
2091
 
2092
+ #: src/Helpers.php:216
2093
+ #, fuzzy
2094
+ #| msgid "Saint Helena, Ascension and Tristan da Cunha "
2095
  msgctxt "(Admin)"
2096
+ msgid "Saint Helena, Ascension and Tristan da Cunha "
2097
+ msgstr "Sainte-Hélène, Ascension et Tristan da Cunha "
2098
 
2099
+ #: src/Helpers.php:217
2100
+ #, fuzzy
2101
  msgctxt "(Admin)"
2102
+ msgid "Saint Kitts and Nevis "
2103
+ msgstr "Saint-Kitts-et-Nevis "
2104
 
2105
+ #: src/Helpers.php:218
2106
+ #, fuzzy
2107
  msgctxt "(Admin)"
2108
+ msgid "Saint Lucia "
2109
+ msgstr "Sainte-Lucie "
2110
 
2111
+ #: src/Helpers.php:219
2112
+ #, fuzzy
2113
+ #| msgid "Saint Martin (French part) "
2114
  msgctxt "(Admin)"
2115
+ msgid "Saint Martin (French part) "
2116
+ msgstr "Saint Martin (partie française) "
2117
 
2118
+ #: src/Helpers.php:220
2119
+ #, fuzzy
2120
  msgctxt "(Admin)"
2121
+ msgid "Saint Pierre and Miquelon "
2122
+ msgstr "Saint-Pierre-et-Miquelon "
2123
 
2124
+ #: src/Helpers.php:221
2125
+ #, fuzzy
2126
  msgctxt "(Admin)"
2127
+ msgid "Saint Vincent and the Grenadines "
2128
+ msgstr "Saint-Vincent-et-les Grenadines "
2129
 
2130
+ #: src/Helpers.php:222
2131
+ #, fuzzy
2132
  msgctxt "(Admin)"
2133
+ msgid "Samoa "
2134
+ msgstr "Samoa "
2135
 
2136
+ #: src/Helpers.php:223
2137
+ #, fuzzy
2138
  msgctxt "(Admin)"
2139
+ msgid "San Marino "
2140
+ msgstr "Saint-Marin "
2141
 
2142
+ #: src/Helpers.php:224
2143
+ #, fuzzy
2144
+ #| msgid "Sao Tome and Principe "
2145
  msgctxt "(Admin)"
2146
+ msgid "Sao Tome and Principe "
2147
+ msgstr "Sao Tomé et Principe "
2148
 
2149
+ #: src/Helpers.php:225
2150
+ #, fuzzy
2151
  msgctxt "(Admin)"
2152
+ msgid "Saudi Arabia "
2153
+ msgstr "Arabie Saoudite "
2154
 
2155
+ #: src/Helpers.php:226
2156
+ #, fuzzy
2157
  msgctxt "(Admin)"
2158
+ msgid "Senegal "
2159
+ msgstr "Sénégal "
2160
 
2161
+ #: src/Helpers.php:227
2162
+ #, fuzzy
2163
  msgctxt "(Admin)"
2164
+ msgid "Serbia "
2165
+ msgstr "Serbie "
2166
 
2167
+ #: src/Helpers.php:228
2168
+ #, fuzzy
2169
  msgctxt "(Admin)"
2170
+ msgid "Seychelles "
2171
+ msgstr "Seychelles "
2172
 
2173
+ #: src/Helpers.php:229
2174
+ #, fuzzy
2175
  msgctxt "(Admin)"
2176
+ msgid "Sierra Leone "
2177
+ msgstr "Sierra Leone "
2178
 
2179
+ #: src/Helpers.php:230
2180
+ #, fuzzy
2181
  msgctxt "(Admin)"
2182
+ msgid "Singapore "
2183
+ msgstr "Singapour "
2184
 
2185
+ #: src/Helpers.php:231
2186
+ #, fuzzy
2187
+ #| msgid "Sint Maarten (Dutch part) "
2188
  msgctxt "(Admin)"
2189
+ msgid "Sint Maarten (Dutch part) "
2190
+ msgstr "Sint Maarten (partie néerlandaise) "
2191
 
2192
+ #: src/Helpers.php:232
2193
+ #, fuzzy
2194
  msgctxt "(Admin)"
2195
+ msgid "Solomon Islands "
2196
+ msgstr "Îles Salomon "
 
 
 
 
2197
 
2198
+ #: src/Helpers.php:233
2199
+ #, fuzzy
2200
  msgctxt "(Admin)"
2201
+ msgid "Somalia "
2202
+ msgstr "Somalie "
2203
 
2204
+ #: src/Helpers.php:234
2205
+ #, fuzzy
2206
  msgctxt "(Admin)"
2207
+ msgid "South Africa "
2208
+ msgstr "Afrique du Sud "
2209
 
2210
+ #: src/Helpers.php:235
2211
+ #, fuzzy
2212
+ #| msgid "South Georgia and the South Sandwich Islands "
2213
  msgctxt "(Admin)"
2214
+ msgid "South Georgia and the South Sandwich Islands "
2215
+ msgstr "Géorgie du Sud et les îles Sandwich du Sud "
2216
 
2217
+ #: src/Helpers.php:236
2218
+ #, fuzzy
2219
+ #| msgid "South Sudan "
2220
  msgctxt "(Admin)"
2221
+ msgid "South Sudan "
2222
+ msgstr "Sud-Soudan"
2223
 
2224
+ #: src/Helpers.php:237
2225
+ #, fuzzy
2226
  msgctxt "(Admin)"
2227
+ msgid "Sri Lanka "
2228
+ msgstr "Sri Lanka "
2229
 
2230
+ #: src/Helpers.php:238
2231
+ #, fuzzy
2232
  msgctxt "(Admin)"
2233
+ msgid "Sudan "
2234
+ msgstr "Soudan "
2235
 
2236
+ #: src/Helpers.php:239
2237
+ #, fuzzy
2238
  msgctxt "(Admin)"
2239
+ msgid "Suriname "
2240
+ msgstr "Suriname "
2241
 
2242
+ #: src/Helpers.php:240
2243
+ #, fuzzy
2244
  msgctxt "(Admin)"
2245
+ msgid "Svalbard and Jan Mayen "
2246
+ msgstr "Svalbard et Jan Mayen "
2247
 
2248
+ #: src/Helpers.php:241
2249
+ #, fuzzy
2250
+ #| msgctxt "(Admin)"
2251
+ #| msgid "Switzerland"
2252
  msgctxt "(Admin)"
2253
+ msgid "Swaziland "
2254
+ msgstr "Suiza"
2255
 
2256
+ #: src/Helpers.php:242
2257
+ #, fuzzy
2258
  msgctxt "(Admin)"
2259
+ msgid "Syrian Arab Republic "
2260
+ msgstr "République arabe syrienne "
2261
 
2262
+ #: src/Helpers.php:243
2263
+ #, fuzzy
2264
  msgctxt "(Admin)"
2265
+ msgid "Taiwan "
2266
+ msgstr "Taiwan "
2267
 
2268
+ #: src/Helpers.php:244
2269
+ #, fuzzy
2270
+ msgctxt "(Admin)"
2271
+ msgid "Tajikistan "
2272
+ msgstr "Tadjikistan "
2273
 
2274
+ #: src/Helpers.php:245
2275
+ #, fuzzy
2276
+ msgctxt "(Admin)"
2277
+ msgid "Tanzania, United Republic of "
2278
+ msgstr "Tanzanie, République-Unie de "
2279
 
2280
+ #: src/Helpers.php:246
2281
+ #, fuzzy
2282
+ msgctxt "(Admin)"
2283
+ msgid "Thailand "
2284
+ msgstr "Thaïlande "
2285
 
2286
+ #: src/Helpers.php:247
2287
+ #, fuzzy
2288
+ #| msgid "Timor-Leste "
2289
+ msgctxt "(Admin)"
2290
+ msgid "Timor-Leste "
2291
+ msgstr "Timor-Leste"
2292
 
2293
+ #: src/Helpers.php:248
2294
+ #, fuzzy
2295
+ #| msgid "Togo "
2296
+ msgctxt "(Admin)"
2297
+ msgid "Togo "
2298
+ msgstr "Togo"
2299
 
2300
+ #: src/Helpers.php:249
2301
+ #, fuzzy
2302
+ msgctxt "(Admin)"
2303
+ msgid "Tokelau "
2304
+ msgstr "Tokélaou "
2305
 
2306
+ #: src/Helpers.php:250
2307
+ #, fuzzy
2308
+ msgctxt "(Admin)"
2309
+ msgid "Tonga "
2310
+ msgstr "Tonga "
2311
 
2312
+ #: src/Helpers.php:251
2313
+ #, fuzzy
2314
+ msgctxt "(Admin)"
2315
+ msgid "Trinidad and Tobago "
2316
+ msgstr "Trinité-et-Tobago "
2317
 
2318
+ #: src/Helpers.php:252
2319
+ #, fuzzy
2320
+ msgctxt "(Admin)"
2321
+ msgid "Tunisia "
2322
+ msgstr "Tunisie "
2323
 
2324
+ #: src/Helpers.php:253
2325
+ #, fuzzy
2326
  msgctxt "(Admin)"
2327
+ msgid "Turkey "
2328
+ msgstr "Turquie "
2329
 
2330
+ #: src/Helpers.php:254
2331
+ #, fuzzy
2332
  msgctxt "(Admin)"
2333
+ msgid "Turkmenistan "
2334
+ msgstr "Turkménistan "
2335
 
2336
+ #: src/Helpers.php:255
2337
+ #, fuzzy
2338
  msgctxt "(Admin)"
2339
+ msgid "Turks and Caicos Islands "
2340
+ msgstr "Îles Turques et Caïques "
2341
 
2342
+ #: src/Helpers.php:256
2343
+ #, fuzzy
2344
  msgctxt "(Admin)"
2345
+ msgid "Tuvalu "
2346
+ msgstr "Tuvalu "
2347
 
2348
+ #: src/Helpers.php:257
2349
+ #, fuzzy
2350
  msgctxt "(Admin)"
2351
+ msgid "Uganda "
2352
+ msgstr "Ouganda "
2353
 
2354
+ #: src/Helpers.php:258
2355
+ #, fuzzy
2356
  msgctxt "(Admin)"
2357
+ msgid "Ukraine "
2358
+ msgstr "Ukraine "
2359
 
2360
+ #: src/Helpers.php:259
2361
+ #, fuzzy
2362
  msgctxt "(Admin)"
2363
+ msgid "United Arab Emirates "
2364
+ msgstr "Émirats arabes unis "
 
 
 
 
 
 
 
2365
 
2366
+ #: src/Helpers.php:260
2367
+ #, fuzzy
2368
  msgctxt "(Admin)"
2369
+ msgid "United States Minor Outlying Islands "
2370
+ msgstr "Îles mineures éloignées des États-Unis "
2371
 
2372
+ #: src/Helpers.php:261
2373
+ #, fuzzy
2374
  msgctxt "(Admin)"
2375
+ msgid "Uruguay "
2376
+ msgstr "Uruguay "
2377
 
2378
+ #: src/Helpers.php:262
2379
+ #, fuzzy
2380
  msgctxt "(Admin)"
2381
+ msgid "Uzbekistan "
2382
+ msgstr "Ouzbékistan "
2383
 
2384
+ #: src/Helpers.php:263
2385
+ #, fuzzy
2386
  msgctxt "(Admin)"
2387
+ msgid "Vanuatu "
2388
+ msgstr "Vanuatu "
2389
 
2390
+ #: src/Helpers.php:264
2391
+ #, fuzzy
2392
+ #| msgid "Venezuela, Bolivarian Republic of "
2393
  msgctxt "(Admin)"
2394
+ msgid "Venezuela, Bolivarian Republic of "
2395
+ msgstr "Venezuela, République bolivarienne du"
 
 
 
 
2396
 
2397
+ #: src/Helpers.php:265
2398
+ #, fuzzy
2399
  msgctxt "(Admin)"
2400
+ msgid "Viet Nam "
2401
+ msgstr "Vietnam "
 
 
 
 
2402
 
2403
+ #: src/Helpers.php:266
2404
+ #, fuzzy
2405
  msgctxt "(Admin)"
2406
+ msgid "Virgin Islands, British "
2407
+ msgstr "Îles Vierges, Britanniques "
2408
 
2409
+ #: src/Helpers.php:267
2410
+ #, fuzzy
2411
  msgctxt "(Admin)"
2412
+ msgid "Virgin Islands, U.S. "
2413
+ msgstr "Îles Vierges, États-Unis "
 
 
2414
 
2415
+ #: src/Helpers.php:268
2416
+ #, fuzzy
2417
  msgctxt "(Admin)"
2418
+ msgid "Wallis and Futuna "
2419
+ msgstr "Wallis-et-Futuna "
2420
 
2421
+ #: src/Helpers.php:269
2422
+ #, fuzzy
2423
  msgctxt "(Admin)"
2424
+ msgid "Western Sahara "
2425
+ msgstr "Sahara occidental "
 
 
2426
 
2427
+ #: src/Helpers.php:270
2428
+ #, fuzzy
2429
  msgctxt "(Admin)"
2430
+ msgid "Yemen "
2431
+ msgstr "Yémen "
2432
 
2433
+ #: src/Helpers.php:271
2434
+ #, fuzzy
2435
+ #| msgid "Zambia "
2436
  msgctxt "(Admin)"
2437
+ msgid "Zambia "
2438
+ msgstr "Zambie "
 
 
 
 
2439
 
2440
+ #: src/Helpers.php:272
2441
+ #, fuzzy
2442
+ #| msgid "Zimbabwe "
2443
  msgctxt "(Admin)"
2444
+ msgid "Zimbabwe "
2445
+ msgstr "Zimbabwe "
2446
 
2447
+ #: src/Helpers.php:287
2448
  msgctxt "(Admin)"
2449
+ msgid "Iceland"
2450
+ msgstr "Islandia"
 
 
 
 
 
 
 
 
 
 
2451
 
2452
+ #: src/Helpers.php:288
2453
  msgctxt "(Admin)"
2454
+ msgid "Norway"
2455
+ msgstr "Noruega"
 
 
 
 
2456
 
2457
+ #: src/Helpers.php:289
2458
  msgctxt "(Admin)"
2459
+ msgid "Liechtenstein"
2460
+ msgstr "Liechtenstein"
 
 
2461
 
2462
+ #: src/Helpers.php:290
2463
  msgctxt "(Admin)"
2464
+ msgid "Switzerland"
2465
+ msgstr "Suiza"
 
 
 
 
2466
 
2467
+ #: src/Helpers.php:291
2468
  msgctxt "(Admin)"
2469
+ msgid "United States"
2470
+ msgstr "Estados Unidos"
2471
+
2472
+ #: src/Helpers.php:377
2473
+ msgid "An error has occurred. Please contact the site administrator."
2474
  msgstr ""
2475
+ "Se ha producido un error. Por favor contacte al administrador del sitio."
2476
 
2477
+ #: src/Installer/Installer.php:146
2478
  msgctxt "(Admin)"
2479
+ msgid "Setup Wizard"
2480
+ msgstr "Asistente de configuración"
2481
 
2482
+ #: src/Installer/Steps/ConfigurationPages.php:23
2483
+ #: src/Installer/Steps/ConfigurationPages.php:33
2484
+ #: src/Installer/Steps/PolicySettings.php:23
2485
+ #: src/Installer/Steps/PolicySettings.php:48
2486
+ #, fuzzy
2487
+ #| msgid "&mdash; Create a new page &mdash;"
2488
  msgctxt "(Admin)"
2489
+ msgid "&mdash; Create a new page &mdash;"
2490
+ msgstr "&mdash; Créer une nouvelle page &mdash;"
 
 
 
 
2491
 
2492
+ #: src/Installer/Steps/PolicySettings.php:38
2493
+ #, fuzzy
2494
+ #| msgid ""
2495
+ #| "We have automatically selected your WooCommerce Terms & Conditions page."
2496
+ msgctxt "(Admin)"
2497
  msgid ""
2498
+ "We have automatically selected your WooCommerce Terms & Conditions page."
2499
  msgstr ""
2500
+ "Nous avons automatiquement sélectionné la page Conditions générales de "
2501
+ "WooCommerce."
2502
 
2503
+ #: src/Modules/ContactForm7/ContactForm7.php:35
2504
+ #, fuzzy
2505
+ #| msgid "gdpr terms txt"
2506
+ msgctxt "(Admin)"
2507
+ msgid "gdpr terms txt"
2508
+ msgstr "rgpd termes txt"
2509
 
2510
+ #: src/Modules/ContactForm7/Flamingo.php:23
2511
+ #: views/modules/contact-form-7/form-privacy-tab.php:1
2512
+ msgid "Privacy"
2513
+ msgstr "Confidentialité"
2514
 
2515
+ #: src/Modules/ContactForm7/Flamingo.php:67
2516
+ msgid "Form submissions: "
2517
+ msgstr "Présentation des formulaires: "
 
2518
 
2519
+ #: src/Modules/ContactForm7/Flamingo.php:162
2520
  msgctxt "(Admin)"
2521
+ msgid "Do you want form to be GDPR compliance."
2522
+ msgstr "¿Quiere que el formulario cumpla con el RGPD?"
2523
 
2524
+ #: src/Modules/ContactForm7/Flamingo.php:163
2525
+ #, fuzzy
2526
+ #| msgid ""
2527
+ #| "You have installed flamingo, To make this GDPR compliance in individual "
2528
+ #| "contact form's privacy tab check the checkbox for include data to be "
2529
+ #| "search on Privacy tool."
2530
  msgctxt "(Admin)"
2531
+ msgid ""
2532
+ "You have installed flamingo, To make this GDPR compliance in individual "
2533
+ "contact form's privacy tab check the checkbox for include data to be search "
2534
+ "on Privacy tool."
2535
+ msgstr ""
2536
+ "Vous avez installé flamingo. Pour rendre cette conformité RGPD conforme à "
2537
+ "l'onglet Confidentialité du formulaire de contact individuel, cochez la case "
2538
+ "en regard des données à rechercher dans l'outil Confidentialité."
2539
 
2540
+ #: src/Modules/EddGdpr/EddGdpr.php:47
2541
+ msgid "EDD Customer Information"
2542
+ msgstr "Informations pour les clients des EDD"
 
2543
 
2544
+ #: src/Modules/EddGdpr/EddGdpr.php:56
2545
+ msgid "EDD Order Information"
2546
+ msgstr "Informations sur les commandes EDD"
2547
 
2548
+ #: src/Modules/EddGdpr/EddGdpr.php:65
2549
+ msgid "EDD File Downloads"
2550
+ msgstr "Téléchargement des fichiers EDD"
2551
+
2552
+ #: src/Modules/EddGdpr/EddGdpr.php:74
2553
+ msgid "EDD API Access Logs"
2554
+ msgstr "Journaux d'accès à l'API EDD"
2555
 
2556
+ #: src/Modules/NewsletterGdpr/NewsletterGdpr.php:79
2557
+ msgid "Newsletter Form submissions: "
2558
+ msgstr "Envois du formulaire de newsletter : "
2559
+
2560
+ #: src/Modules/WooCommerceGdpr/WooCommerceGdpr.php:46
2561
+ msgid "Customer Information"
2562
+ msgstr "Information du Client"
2563
+
2564
+ #: src/Modules/WooCommerceGdpr/WooCommerceGdpr.php:53
2565
+ msgid "Order Information"
2566
+ msgstr "Informations sur la commande"
2567
+
2568
+ #: src/Modules/WooCommerceGdpr/WooCommerceGdpr.php:162
2569
  msgid "Please acknowledge the Privacy Policy"
2570
  msgstr "Por favor reconozca la política de privacidad"
2571
 
2572
+ #: src/Modules/WooCommerceGdpr/WooCommerceGdpr.php:177
2573
+ msgid "Privacy Policy consent is required!"
2574
+ msgstr "Le consentement de la politique de confidentialité est requis!"
 
2575
 
2576
+ #: src/Router.php:80 src/Router.php:92 src/Router.php:125 src/Router.php:141
2577
+ #, php-format
2578
+ msgid "Nonce error for action \"%s\". Please go back and try again!"
 
 
2579
  msgstr ""
2580
+ "Error de nonce para la acción \"% s \". ¡Por favor, regrese y vuelva a "
2581
+ "intentarlo!"
2582
 
2583
+ #: src/Router.php:149
2584
  msgctxt "(Admin)"
2585
+ msgid "You do not have the required permissions to perform this action!"
2586
+ msgstr "¡No tienes los permisos necesarios para realizar esta acción!"
 
 
 
 
 
2587
 
2588
+ #: views/admin/consent.php:3
2589
+ #, fuzzy
2590
+ #| msgctxt "(Admin)"
2591
+ #| msgid "Default consent types"
2592
  msgctxt "(Admin)"
2593
+ msgid "Default consent types"
2594
+ msgstr "Tipos de consentimiento por defecto"
2595
 
2596
+ #: views/admin/consent.php:4
2597
+ #, fuzzy
2598
+ #| msgid ""
2599
+ #| "These are the consent types that have been automatically registered by "
2600
+ #| "the framework or a plugin."
2601
  msgctxt "(Admin)"
2602
+ msgid ""
2603
+ "These are the consent types that have been automatically registered by the "
2604
+ "framework or a plugin."
2605
+ msgstr ""
2606
+ "Ce sont les types de consentement qui ont été automatiquement enregistrés "
2607
+ "par le framework ou une extension."
2608
 
2609
+ #: views/admin/consent.php:7 views/admin/consent.php:53
2610
  msgctxt "(Admin)"
2611
+ msgid "Slug"
2612
+ msgstr "Slug"
2613
 
2614
+ #: views/admin/consent.php:8 views/admin/consent.php:38
2615
+ #: views/admin/consent.php:61
2616
  msgctxt "(Admin)"
2617
+ msgid "Title"
2618
+ msgstr "Título"
2619
 
2620
+ #: views/admin/consent.php:9 views/admin/consent.php:41
2621
+ #: views/admin/consent.php:64
2622
  msgctxt "(Admin)"
2623
+ msgid "Description"
2624
+ msgstr "Descripción"
2625
 
2626
+ #: views/admin/consent.php:10
2627
  msgctxt "(Admin)"
2628
+ msgid "Visibility"
2629
+ msgstr "Visibilidad"
 
2630
 
2631
+ #: views/admin/consent.php:18
2632
  msgctxt "(Admin)"
2633
+ msgid "Visible"
2634
+ msgstr "Visible"
2635
 
2636
+ #: views/admin/consent.php:20
2637
  msgctxt "(Admin)"
2638
+ msgid "Hidden"
2639
+ msgstr "Oculto"
2640
 
2641
+ #: views/admin/consent.php:29
2642
+ #, fuzzy
2643
+ #| msgctxt "(Admin)"
2644
+ #| msgid "Custom consent types"
2645
  msgctxt "(Admin)"
2646
+ msgid "Custom consent types"
2647
+ msgstr "Tipos de consentimiento personalizados"
2648
 
2649
+ #: views/admin/consent.php:30
2650
  msgctxt "(Admin)"
2651
+ msgid ""
2652
+ "Here you can add custom consent types to track. They will not be used "
2653
+ "anywhere by default - you will need to build an integration for each of them."
2654
  msgstr ""
2655
+ "Aquí puede agregar tipos de consentimiento personalizado para realizar un "
2656
+ "seguimiento. No se usarán en ningún lugar de forma predeterminada; deberá "
2657
+ "compilar una integración para cada uno de ellos."
2658
 
2659
+ #: views/admin/consent.php:35
2660
+ #, fuzzy
2661
+ #| msgid "Machine-readable slug"
2662
  msgctxt "(Admin)"
2663
+ msgid "Machine-readable slug"
2664
+ msgstr "Identifiant de la machine lisible"
 
 
2665
 
2666
+ #: views/admin/consent.php:44 views/admin/consent.php:69
2667
+ #, fuzzy
2668
+ #| msgid "Visible?"
2669
  msgctxt "(Admin)"
2670
+ msgid "Visible?"
2671
+ msgstr "Visible?"
2672
 
2673
+ #: views/admin/consent.php:73
2674
  msgctxt "(Admin)"
2675
+ msgid "Remove"
2676
+ msgstr "Eliminar"
 
 
 
 
2677
 
2678
+ #: views/admin/consent.php:79
2679
+ #, fuzzy
2680
+ #| msgctxt "(Admin)"
2681
+ #| msgid "Show Consent types"
2682
  msgctxt "(Admin)"
2683
+ msgid "Show Consent types"
2684
+ msgstr "Mostrar tipos de consentimiento"
2685
 
2686
+ #: views/admin/consent.php:80
2687
+ #, fuzzy
2688
+ #| msgctxt "(Admin)"
2689
+ #| msgid "Add consent type"
2690
  msgctxt "(Admin)"
2691
+ msgid "Add consent type"
2692
+ msgstr "Añadir tipo de consentimiento"
2693
 
2694
+ #: views/admin/consent.php:81
2695
+ #, fuzzy
2696
+ #| msgctxt "(Admin)"
2697
+ #| msgid "Hide consent types"
2698
  msgctxt "(Admin)"
2699
+ msgid "Hide consent types"
2700
+ msgstr "Ocultar tipos de consentimiento"
 
 
2701
 
2702
+ #: views/admin/consent.php:95
2703
  msgctxt "(Admin)"
2704
+ msgid "Additional info"
2705
+ msgstr "Información adicional"
2706
+
2707
+ #: views/admin/consent.php:97
2708
+ #, fuzzy
2709
+ #| msgid ""
2710
+ #| "This text will be displayed to your data subjects on the Privacy Tools "
2711
+ #| "page."
2712
+ msgctxt "(Admin)"
2713
+ msgid ""
2714
+ "This text will be displayed to your data subjects on the Privacy Tools page."
2715
+ msgstr ""
2716
+ "Ce texte s'affichera sur les sujets de données sur la page de "
2717
+ "confidentialité."
2718
+
2719
+ #: views/admin/consent/enable-consent-until.php:11
2720
+ msgctxt "(Admin)"
2721
+ msgid " "
2722
+ msgstr " "
2723
+
2724
+ #: views/admin/data-subjects/search-form.php:2
2725
+ #, fuzzy
2726
+ #| msgid ""
2727
+ #| "On this page, you can find which data subjects personal data you are "
2728
+ #| "storing and download, export or delete it."
2729
+ msgctxt "(Admin)"
2730
+ msgid ""
2731
+ "On this page, you can find which data subjects personal data you are storing "
2732
+ "and download, export or delete it."
2733
+ msgstr ""
2734
+ "Sur cette page, vous trouverez les données personnelles des personnes "
2735
+ "concernées.Vous pouvez les télécharger, les exporter ou les supprimer."
2736
+
2737
+ #: views/admin/data-subjects/search-form.php:10
2738
+ msgctxt "(Admin)"
2739
+ msgid "Find data subject by email"
2740
+ msgstr "Encuentre el sujeto de los datos por correo electrónico"
2741
+
2742
+ #: views/admin/data-subjects/search-form.php:11
2743
+ msgctxt "(Admin)"
2744
+ msgid "Email address"
2745
+ msgstr "Dirección de correo electrónico"
2746
+
2747
+ #: views/admin/data-subjects/search-form.php:16
2748
+ msgctxt "(Admin)"
2749
+ msgid "Search"
2750
+ msgstr "Buscar"
2751
+
2752
+ #: views/admin/data-subjects/search-results.php:7
2753
+ msgctxt "(Admin)"
2754
+ msgid "Username"
2755
+ msgstr "Nombre de usuario"
2756
+
2757
+ #: views/admin/data-subjects/search-results.php:13
2758
+ msgctxt "(Admin)"
2759
+ msgid "Data found."
2760
+ msgstr "Datos encontrados."
2761
+
2762
+ #: views/admin/data-subjects/search-results.php:14
2763
+ #, fuzzy
2764
+ #| msgid "is not a registered user."
2765
+ msgctxt "(Admin)"
2766
+ msgid "is not a registered user."
2767
+ msgstr "utilisateur non enregistré."
2768
+
2769
+ #: views/admin/data-subjects/search-results.php:21
2770
+ #, fuzzy
2771
+ #| msgid "Download data (html)"
2772
+ msgctxt "(Admin)"
2773
+ msgid "Download data (html)"
2774
+ msgstr "Télécharger les données (format html)"
2775
+
2776
+ #: views/admin/data-subjects/search-results.php:22
2777
+ #, fuzzy
2778
+ #| msgctxt "(Admin)"
2779
+ #| msgid "Export data (json)"
2780
+ msgctxt "(Admin)"
2781
+ msgid "Export data (json)"
2782
+ msgstr "Exportar datos (json)"
2783
+
2784
+ #: views/admin/data-subjects/search-results.php:26
2785
+ #, fuzzy
2786
+ #| msgid ""
2787
+ #| "This user has admin capabilities. Deleting data via this interface is "
2788
+ #| "disabled."
2789
+ msgctxt "(Admin)"
2790
+ msgid ""
2791
+ "This user has admin capabilities. Deleting data via this interface is "
2792
+ "disabled."
2793
+ msgstr ""
2794
+ "Cet utilisateur est un administrateur. L'effacement des données n'est pas "
2795
+ "possible."
2796
+
2797
+ #: views/admin/data-subjects/search-results.php:29
2798
+ #, fuzzy
2799
+ #| msgid "Anonymize data"
2800
+ msgctxt "(Admin)"
2801
+ msgid "Anonymize data"
2802
+ msgstr "Anonymiser les données"
2803
+
2804
+ #: views/admin/data-subjects/search-results.php:30
2805
+ msgctxt "(Admin)"
2806
+ msgid "Delete data"
2807
+ msgstr "Borrar datos"
2808
+
2809
+ #: views/admin/data-subjects/search-results.php:34
2810
+ msgctxt "(Admin)"
2811
+ msgid "No data found!"
2812
+ msgstr "¡No se ha encontrado ningún dato!"
2813
+
2814
+ #: views/admin/data-subjects/search-results.php:41
2815
+ #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:4
2816
+ #, fuzzy
2817
+ #| msgid "Consents given"
2818
+ msgctxt "(Admin)"
2819
+ msgid "Consents given"
2820
+ msgstr "Consentement accordé"
2821
+
2822
+ #: views/admin/data-subjects/search-results.php:54
2823
+ msgctxt "(Admin)"
2824
+ msgid "No consents given!"
2825
+ msgstr "¡No se ha otorgado ningún consentimiento!"
2826
+
2827
+ #: views/admin/general/custom-policy-url.php:6
2828
+ #, fuzzy
2829
+ #| msgctxt "(Admin)"
2830
+ #| msgid "Leave blank if privacy policy page already selected"
2831
+ msgctxt "(Admin)"
2832
+ msgid "Leave blank if privacy policy page already selected"
2833
+ msgstr ""
2834
+ "Deje en blanco si la página de política de privacidad ya está seleccionada"
2835
+
2836
+ #: views/admin/general/custom-terms-url.php:6
2837
+ #, fuzzy
2838
+ #| msgctxt "(Admin)"
2839
+ #| msgid "Leave blank if privacy policy page already selected"
2840
+ msgctxt "(Admin)"
2841
+ msgid "Leave blank if terms and condition page already selected"
2842
+ msgstr ""
2843
+ "Deje en blanco si la página de política de privacidad ya está seleccionada"
2844
+
2845
+ #: views/admin/general/custom-tools-url.php:6
2846
+ #, fuzzy
2847
+ #| msgid "Leave blank if privacy tools page already selected"
2848
+ msgctxt "(Admin)"
2849
+ msgid "Leave blank if privacy tools page already selected"
2850
+ msgstr ""
2851
+ "Laisser en blanc si la page de politique de confidentialité est déjà "
2852
+ "sélectionnée"
2853
+
2854
+ #: views/admin/general/delete-action-email.php:5
2855
+ #: views/admin/general/export-action-email.php:5
2856
+ #: views/installer/steps/configuration-settings.php:29
2857
+ #: views/installer/steps/configuration-settings.php:79
2858
+ msgid "Email address"
2859
+ msgstr "Dirección de correo electrónico"
2860
+
2861
+ #: views/admin/general/delete-action-reassign.php:3
2862
+ #: views/installer/steps/configuration-settings.php:50
2863
+ #, fuzzy
2864
+ #| msgid "Delete content"
2865
+ msgctxt "(Admin)"
2866
+ msgid "Delete content"
2867
+ msgstr "Supprimer le contenu"
2868
+
2869
+ #: views/admin/general/delete-action-reassign.php:6
2870
+ #: views/installer/steps/configuration-settings.php:53
2871
+ #, fuzzy
2872
+ #| msgctxt "(Admin)"
2873
+ #| msgid "Reassign content to a user"
2874
+ msgctxt "(Admin)"
2875
+ msgid "Reassign content to a user"
2876
+ msgstr "Reasignar contenido a un usuario"
2877
+
2878
+ #: views/admin/general/delete-action-reassign.php:10
2879
+ #, fuzzy
2880
+ #| msgid ""
2881
+ #| "If the user has submitted any content on your site, should it be deleted "
2882
+ #| "or reassigned to another user?"
2883
+ msgctxt "(Admin)"
2884
+ msgid ""
2885
+ "If the user has submitted any content on your site, should it be deleted or "
2886
+ "reassigned to another user?"
2887
+ msgstr ""
2888
+ "Si un utilisateur a soumis un contenu sur votre site, dois-je le supprimer "
2889
+ "ou l’assigner à un autre utilisateur ?"
2890
+
2891
+ #: views/admin/general/description-data-page.php:2
2892
+ #, fuzzy
2893
+ #| msgid ""
2894
+ #| "Select the page where users can go to control their data. This page must "
2895
+ #| "contain the [gdpr_privacy_tools] shortcode."
2896
+ msgctxt "(Admin)"
2897
+ msgid ""
2898
+ "Select the page where users can go to control their data. This page must "
2899
+ "contain the [gdpr_privacy_tools] shortcode."
2900
+ msgstr ""
2901
+ "Sélectionnez la page où les utilisateurs doivent se rendre pour contrôler "
2902
+ "leurs données. Cette page doit contenir le short code [gdpr_privacy_tools]."
2903
+
2904
+ #: views/admin/general/description-delete-action.php:2
2905
+ msgctxt "(Admin)"
2906
+ msgid "What should happen if a data subject requests deleting their data."
2907
+ msgstr ""
2908
+ "O que deve acontecer se um sujeito de dados solicitar a exclusão de seus "
2909
+ "dados."
2910
+
2911
+ #: views/admin/general/description-export-action.php:2
2912
+ msgctxt "(Admin)"
2913
+ msgid ""
2914
+ "What should happen if a data subject requests viewing or exporting their "
2915
+ "data."
2916
+ msgstr ""
2917
+ "O que deve acontecer se um sujeito de dados solicitar a visualização ou "
2918
+ "exportação de seus dados."
2919
+
2920
+ #: views/admin/general/description-position-action.php:2
2921
+ msgctxt "(Admin)"
2922
+ msgid "Select position of the Popup"
2923
+ msgstr "Seleccione la posición de la ventana emergente"
2924
+
2925
+ #: views/admin/general/description-terms-page.php:2
2926
+ msgctxt "(Admin)"
2927
+ msgid "Optional. Select the page which contains your Terms & Conditions"
2928
+ msgstr "Opcional. Selecione a página que contém seus Termos e Condições"
2929
+
2930
+ #: views/admin/general/description-theme-action.php:2
2931
+ msgctxt "(Admin)"
2932
+ msgid "Select theme of the Popup"
2933
+ msgstr "Seleccione el tema de la ventana emergente"
2934
+
2935
+ #: views/admin/general/disble-checkbox.php:9
2936
+ msgctxt "(Admin)"
2937
+ msgid "."
2938
+ msgstr "."
2939
+
2940
+ #: views/admin/general/edd-compatibility.php:9
2941
+ #, fuzzy
2942
+ #| msgctxt "(Admin)"
2943
+ #| msgid "Enable EDD data on GDPR tool."
2944
+ msgctxt "(Admin)"
2945
+ msgid "Enable EDD data on GDPR tool."
2946
+ msgstr "Habilitar datos EDD en la herramienta GDPR."
2947
+
2948
+ #: views/admin/general/edd-compatibility.php:12
2949
+ #, fuzzy
2950
+ #| msgctxt "(Admin)"
2951
+ #| msgid "Will work for EDD Version 2.0.0 or later."
2952
+ msgctxt "(Admin)"
2953
+ msgid "Will work for EDD Version 2.0.0 or later."
2954
+ msgstr "Trabajará para EDD versión 2.0.0 o posterior."
2955
+
2956
+ #: views/admin/general/enable-policy-popup.php:9
2957
+ #, fuzzy
2958
+ #| msgctxt "(Admin)"
2959
+ #| msgid "Enable Policy Link On Popup"
2960
+ msgctxt "(Admin)"
2961
+ msgid "Enable Policy Link On Popup"
2962
+ msgstr "Habilitar enlace de política en ventana emergente"
2963
+
2964
+ #: views/admin/general/enable-popup.php:12
2965
+ #, fuzzy
2966
+ #| msgid ""
2967
+ #| "<b>Note:</b> Need to add custom content <b>gdpr_cookie_consent</b> its "
2968
+ #| "accepted on popup accept button."
2969
+ msgctxt "(Admin)"
2970
+ msgid ""
2971
+ "<b>Note:</b> Need to add custom content <b>gdpr_cookie_consent</b> its "
2972
+ "accepted on popup accept button."
2973
+ msgstr ""
2974
+ "<b>Remarque : </b>Vous devez ajouter un contenu personnalisé "
2975
+ "<b>gdpr_cookie_consent</b> accepté sur le bouton d’acceptation contextuel."
2976
+
2977
+ #: views/admin/general/enable-tac.php:9
2978
+ #, fuzzy
2979
+ #| msgid "Enable the term and condition page."
2980
+ msgctxt "(Admin)"
2981
+ msgid "Enable the term and condition page."
2982
+ msgstr "Activer la page des termes et conditions."
2983
+
2984
+ #: views/admin/general/enable.php:9
2985
+ #, fuzzy
2986
+ #| msgid ""
2987
+ #| "Enable the view, export and forget functionality for users and visitors"
2988
+ msgctxt "(Admin)"
2989
+ msgid "Enable the view, export and forget functionality for users and visitors"
2990
+ msgstr ""
2991
+ "Activer la fonctionnalité d’affichage, d’exportation et d’oubli pour les "
2992
+ "utilisateurs et les visiteurs."
2993
+
2994
+ #: views/admin/general/enable.php:12
2995
+ #, fuzzy
2996
+ #| msgid ""
2997
+ #| "Enable the Privacy Tools page on front-end and dashboard. This allows "
2998
+ #| "visitors to request viewing and deleting their personal data and withdraw "
2999
+ #| "consents."
3000
+ msgctxt "(Admin)"
3001
+ msgid ""
3002
+ "Enable the Privacy Tools page on front-end and dashboard. This allows "
3003
+ "visitors to request viewing and deleting their personal data and withdraw "
3004
+ "consents."
3005
+ msgstr ""
3006
+ "Activer la page de confidentialité sur le Font-end et la tableau de bord. "
3007
+ "Ceci permet aux visiteurs de voir et de supprimer les données personnelles "
3008
+ "et de révoquer leur consentement."
3009
+
3010
+ #: views/admin/general/enable_popup_allow_content.php:3
3011
+ msgctxt "gdpr-framework"
3012
+ msgid "Accept"
3013
+ msgstr "Aceptar"
3014
+
3015
+ #: views/admin/general/enable_popup_content.php:5
3016
+ msgctxt "gdpr-framework"
3017
+ msgid ""
3018
+ "This website uses cookies to ensure you get the best experience on our "
3019
+ "website."
3020
+ msgstr ""
3021
+ "Este sitio web utiliza cookies para garantizar que tenga la mejor "
3022
+ "experiencia de navegación."
3023
+
3024
+ #: views/admin/general/enable_popup_dismiss_content.php:3
3025
+ msgctxt "gdpr-framework"
3026
+ msgid "Decline"
3027
+ msgstr "Rechazar"
3028
+
3029
+ #: views/admin/general/enable_popup_header.php:7
3030
+ #, fuzzy
3031
+ #| msgid "Leave blank if don't want header to get display."
3032
+ msgctxt "(Admin)"
3033
+ msgid "Leave blank if you don't want a header to get displayed."
3034
+ msgstr "Deje en blanco si no desea que el encabezado se muestre."
3035
+
3036
+ #: views/admin/general/enable_popup_learnmore_content.php:3
3037
+ msgctxt "gdpr-framework"
3038
+ msgid "Learn more"
3039
+ msgstr "Saber más"
3040
 
3041
+ #: views/admin/general/popup_link_target.php:3
3042
  msgctxt "(Admin)"
3043
  msgid "Next Tab"
3044
+ msgstr "Pestaña Siguiente"
3045
 
3046
+ #: views/admin/general/popup_link_target.php:6
3047
  msgctxt "(Admin)"
3048
  msgid "Self"
3049
+ msgstr "El mismo"
3050
+
3051
+ #: views/admin/general/stylesheet.php:9
3052
+ msgctxt "(Admin)"
3053
+ msgid "Enable basic styling for Privacy Tools page."
3054
+ msgstr ""
3055
+ "Habilitar el estilo básico para la página de herramientas de privacidad."
3056
+
3057
+ #: views/admin/general/theme-compatibility.php:9
3058
+ #: views/installer/steps/integrations.php:21
3059
+ #, fuzzy
3060
+ #| msgid ""
3061
+ #| "Automatically add Privacy Policy and Privacy Tools links to your site "
3062
+ #| "footer."
3063
+ msgctxt "(Admin)"
3064
+ msgid ""
3065
+ "Automatically add Privacy Policy and Privacy Tools links to your site footer."
3066
+ msgstr ""
3067
+ "Ajouter automatiquement les liens Politique de confidentialité et Outils de "
3068
+ "confidentialité en pied de page du site."
3069
+
3070
+ #: views/admin/general/woo-compatibility.php:9
3071
+ #, fuzzy
3072
+ #| msgid "Enable WooCommerce data on GDPR tool."
3073
+ msgctxt "(Admin)"
3074
+ msgid "Enable WooCommerce data on GDPR tool."
3075
+ msgstr "ActiveR les données WooCommerce dans l’outil RGPD."
3076
+
3077
+ #: views/admin/general/woo-compatibility.php:12
3078
+ #, fuzzy
3079
+ #| msgid "Will work for WooCommerce Version 3.4.0 or later."
3080
+ msgctxt "(Admin)"
3081
+ msgid "Will work for WooCommerce Version 3.4.0 or later."
3082
+ msgstr "Fonctionnera pour WooCommerce Version 3.4.0 ou version ultérieure."
3083
+
3084
+ #: views/admin/notices/header-privacy-safe.php:4
3085
+ #, fuzzy
3086
+ #| msgid "Privacy Safe By Data443"
3087
+ msgctxt "(Admin)"
3088
+ msgid "Privacy Safe By Data443"
3089
+ msgstr "Sécurité de la vie privée par Data443"
3090
+
3091
+ #: views/admin/notices/header.php:4 views/admin/settings-page.php:3
3092
+ #, fuzzy
3093
+ #| msgid "The GDPR Framework By Data443"
3094
+ msgctxt "(Admin)"
3095
+ msgid "The GDPR Framework By Data443"
3096
+ msgstr "The GDPR Framework"
3097
+
3098
+ #: views/admin/notices/help.php:3 views/admin/settings-page.php:39
3099
+ #, php-format
3100
+ msgctxt "(Admin)"
3101
+ msgid "Need help? Take a look at our %sdocumentation%s."
3102
+ msgstr "¿Necesitas ayuda? Echa un vistazo a nuestros %sdocumentation%s."
3103
+
3104
+ #: views/admin/notices/helper-autoinstall.php:2
3105
+ #, fuzzy
3106
+ #| msgid ""
3107
+ #| "A Privacy Policy page has been created, but it is empty. You can generate "
3108
+ #| "a policy template on this page."
3109
+ msgctxt "(Admin)"
3110
+ msgid ""
3111
+ "A Privacy Policy page has been created, but it is empty. You can generate a "
3112
+ "policy template on this page."
3113
+ msgstr ""
3114
+ "Une page de Politique de confidentialité a été créée, mais elle est vide. "
3115
+ "Vous pouvez générer un modèle de politique sur cette page."
3116
+
3117
+ #: views/admin/notices/helper-policy.php:2
3118
+ msgctxt "(Admin)"
3119
+ msgid ""
3120
+ "Heads up - your Privacy Policy still requires some attention. Find the "
3121
+ "places marked with [TODO] and replace them with real content!"
3122
+ msgstr ""
3123
+ "Atención: tu página de política de privacidad todavía requiere atención. "
3124
+ "¡Encuentra los lugares marcados con [TODO] y sustitúyelos por contenido real!"
3125
+
3126
+ #: views/admin/notices/helper-settings.php:2
3127
+ msgctxt "(Admin)"
3128
+ msgid ""
3129
+ "Heads up! The GDPR Framework is not properly configured, so it will not work "
3130
+ "just yet."
3131
+ msgstr ""
3132
+ "¡Aviso! El Framework GDPR no está configurado correctamente, por lo que no "
3133
+ "funcionará todavía."
3134
+
3135
+ #: views/admin/notices/helper-settings.php:4
3136
+ #, fuzzy, php-format
3137
+ #| msgid ""
3138
+ #| "Go to %sTools > Data443 GDPR%s and make sure all fields are filled in."
3139
+ msgctxt "(Admin)"
3140
+ msgid "Go to %sTools > Data443 GDPR%s and make sure all fields are filled in."
3141
+ msgstr ""
3142
+ "Allez à %sOutils > Data443 GDPR%s et assurez-vous que tous les champs sont "
3143
+ "remplis."
3144
+
3145
+ #: views/admin/notices/helper-tools.php:2
3146
+ #, fuzzy
3147
+ #| msgid ""
3148
+ #| "The contents of this page should contain the [gdpr_privacy_tools] "
3149
+ #| "shortcode."
3150
+ msgctxt "(Admin)"
3151
+ msgid ""
3152
+ "The contents of this page should contain the [gdpr_privacy_tools] shortcode."
3153
+ msgstr ""
3154
+ "Le contenu de cette page doit contenir le code court [gdpr_privacy_tools]."
3155
+
3156
+ #: views/admin/privacy-manager/header.php:2
3157
+ #: views/admin/privacy-manager/header.php:21
3158
+ #, fuzzy
3159
+ #| msgctxt "(Admin)"
3160
+ #| msgid "Data443™ Privacy Manager"
3161
+ msgctxt "(Admin)"
3162
+ msgid "Data443™ Global Privacy Manager"
3163
+ msgstr "Data443 ™ Privacy Manager"
3164
+
3165
+ #: views/admin/privacy-manager/header.php:3
3166
+ #, fuzzy
3167
+ #| msgctxt "(Admin)"
3168
+ #| msgid ""
3169
+ #| "ensures privacy regulation compliance, such as GDPR, CCPA, LGPD, etc, at "
3170
+ #| "the next level."
3171
+ msgctxt "(Admin)"
3172
+ msgid ""
3173
+ "ensures privacy regulation compliance, such as GDPR, CCPA, LGPD, etc, at the "
3174
+ "next level."
3175
+ msgstr ""
3176
+ "garantiza el cumplimiento de la normativa de privacidad, como GDPR, CCPA, "
3177
+ "LGPD, etc., en el siguiente nivel."
3178
+
3179
+ #: views/admin/privacy-manager/header.php:4
3180
+ #, fuzzy
3181
+ #| msgid "Includes the following features:"
3182
+ msgctxt "(Admin)"
3183
+ msgid "Includes the following features:"
3184
+ msgstr "Comprend les caractéristiques suivantes :"
3185
+
3186
+ #: views/admin/privacy-manager/header.php:6
3187
+ #, fuzzy
3188
+ #| msgid ""
3189
+ #| "Available within minutes – designed to be deployed to your website over "
3190
+ #| "the phone with one link!"
3191
+ msgctxt "(Admin)"
3192
+ msgid ""
3193
+ "Available within minutes – designed to be deployed to your website over the "
3194
+ "phone with one link!"
3195
+ msgstr ""
3196
+ "Disponible en quelques minutes - Conçu pour être déployé sur votre site Web "
3197
+ "par téléphone avec un lien !"
3198
+
3199
+ #: views/admin/privacy-manager/header.php:7
3200
+ #, fuzzy
3201
+ #| msgid "Fully branded Subject Access Request Form"
3202
+ msgctxt "(Admin)"
3203
+ msgid "Fully branded Subject Access Request Form"
3204
+ msgstr "Formulaire de demande d'accès à un sujet entièrement marqué"
3205
+
3206
+ #: views/admin/privacy-manager/header.php:8
3207
+ #, fuzzy
3208
+ #| msgid "Custom Workflow Engine"
3209
+ msgctxt "(Admin)"
3210
+ msgid "Custom Workflow Engine"
3211
+ msgstr "Moteur de flux de travail personnalisé"
3212
+
3213
+ #: views/admin/privacy-manager/header.php:9
3214
+ #, fuzzy
3215
+ #| msgid "Cookie and Consent Management Tracking"
3216
+ msgctxt "(Admin)"
3217
+ msgid "Cookie and Consent Management Tracking"
3218
+ msgstr "Suivi de la gestion des cookies et du consentement"
3219
+
3220
+ #: views/admin/privacy-manager/header.php:10
3221
+ #, fuzzy
3222
+ #| msgid "Opt-in and Opt-out Management"
3223
+ msgctxt "(Admin)"
3224
+ msgid "Opt-in and Opt-out Management"
3225
+ msgstr "Gestion de l'opt-in et de l'opt-out"
3226
+
3227
+ #: views/admin/privacy-manager/header.php:11
3228
+ #, fuzzy
3229
+ #| msgid "Do Not Sell Management Interface"
3230
+ msgctxt "(Admin)"
3231
+ msgid "Do Not Sell Management Interface"
3232
+ msgstr "Interface de gestion « Ne pas vendre »"
3233
+
3234
+ #: views/admin/privacy-manager/header.php:12
3235
+ #, fuzzy
3236
+ #| msgid "Full On Premise and In Cloud Data Discovery"
3237
+ msgctxt "(Admin)"
3238
+ msgid "Full On Premise and In Cloud Data Discovery"
3239
+ msgstr "Découverte complète des données sur place et dans le nuage"
3240
+
3241
+ #: views/admin/privacy-manager/header.php:13
3242
+ #, fuzzy
3243
+ #| msgid "Complete End to End Data Mapping"
3244
+ msgctxt "(Admin)"
3245
+ msgid "Complete End to End Data Mapping"
3246
+ msgstr "Cartographie complète des données de bout en bout"
3247
+
3248
+ #: views/admin/privacy-manager/header.php:14
3249
+ #, fuzzy
3250
+ #| msgid "Full Data Classification and Governance"
3251
+ msgctxt "(Admin)"
3252
+ msgid "Full Data Classification and Governance"
3253
+ msgstr "Classification complète des données et gouvernance"
3254
+
3255
+ #: views/admin/privacy-manager/header.php:15
3256
+ #, fuzzy
3257
+ #| msgid "Data Deletion and Monitoring Compliance Management"
3258
+ msgctxt "(Admin)"
3259
+ msgid "Data Deletion and Monitoring Compliance Management"
3260
+ msgstr "Suppression des données et contrôle de la gestion de la conformité"
3261
+
3262
+ #: views/admin/privacy-manager/header.php:16
3263
+ #, fuzzy
3264
+ #| msgid ""
3265
+ #| "Data Stores instantly available: Windows NTFS, OneDrive, Dropbox, "
3266
+ #| "Office365, GoogleMail, Salesforce, Quickbooks, MailChimp, Sharepoint, "
3267
+ #| "MySQL, MSSQL, PostGreSQL, Mongo"
3268
+ msgctxt "(Admin)"
3269
+ msgid ""
3270
+ "Data Stores instantly available: Windows NTFS, OneDrive, Dropbox, Office365, "
3271
+ "GoogleMail, Salesforce, Quickbooks, MailChimp, Sharepoint, MySQL, MSSQL, "
3272
+ "PostGreSQL, Mongo"
3273
+ msgstr ""
3274
+ "Les magasins de données sont disponibles instantanément : Windows NTFS, "
3275
+ "OneDrive, Dropbox, Office365, GoogleMail, Salesforce, Quickbooks, MailChimp, "
3276
+ "Sharepoint, MySQL, MSSQL, PostGreSQL, Mongo"
3277
+
3278
+ #: views/admin/privacy-manager/header.php:17
3279
+ #, fuzzy
3280
+ #| msgid ""
3281
+ #| "Data Stores addons available: over 200 SaaS, On Premise databases & File "
3282
+ #| "shares"
3283
+ msgctxt "(Admin)"
3284
+ msgid ""
3285
+ "Data Stores addons available: over 200 SaaS, On Premise databases & File "
3286
+ "shares"
3287
+ msgstr ""
3288
+ "Addons Data Stores disponibles : plus de 200 bases de données SaaS, On "
3289
+ "Premise & File shares"
3290
+
3291
+ #: views/admin/privacy-manager/header.php:18
3292
+ #, fuzzy
3293
+ #| msgid "PowerBI and Dashboarding"
3294
+ msgctxt "(Admin)"
3295
+ msgid "PowerBI and Dashboarding"
3296
+ msgstr "PowerBI et tableau de bord"
3297
+
3298
+ #: views/admin/privacy-manager/header.php:21
3299
+ #, fuzzy
3300
+ #| msgctxt "(Admin)"
3301
+ #| msgid ""
3302
+ #| "No matter where you are on your data privacy journey, the ultimate goal "
3303
+ #| "is compliance."
3304
+ msgctxt "(Admin)"
3305
+ msgid ""
3306
+ "No matter where you are on your data privacy journey, the ultimate goal is "
3307
+ "compliance."
3308
+ msgstr ""
3309
+ "No importa dónde se encuentre en su viaje de privacidad de datos, el "
3310
+ "objetivo final es el cumplimiento."
3311
+
3312
+ #: views/admin/privacy-manager/header.php:21
3313
+ #, fuzzy
3314
+ #| msgctxt "(Admin)"
3315
+ #| msgid "enables your organization to comply with all privacy regulations."
3316
+ msgctxt "(Admin)"
3317
+ msgid "enables your organization to comply with all privacy regulations."
3318
+ msgstr ""
3319
+ "le permite a su organización cumplir con todas las regulaciones de "
3320
+ "privacidad."
3321
+
3322
+ #: views/admin/privacy-policy/description-policy-page.php:2
3323
+ msgctxt "(Admin)"
3324
+ msgid "Select the page which will contain your Privacy Policy"
3325
+ msgstr "Selecciona la página que contendrá tu política de privacidad"
3326
+
3327
+ #: views/admin/privacy-policy/generated.php:3
3328
+ #, fuzzy
3329
+ #| msgid "Your Privacy Policy has been generated."
3330
+ msgctxt "(Admin)"
3331
+ msgid "Your Privacy Policy has been generated."
3332
+ msgstr "Votre Politique de confidentialité a été générée."
3333
+
3334
+ #: views/admin/privacy-policy/generated.php:20
3335
+ msgctxt "(Admin)"
3336
+ msgid "&laquo; Back"
3337
+ msgstr "&laquo; Anterior"
3338
+
3339
+ #: views/admin/privacy-policy/has-dpo.php:11
3340
+ #, fuzzy
3341
+ #| msgid "I have appointed a Data Protection Officer (DPO)"
3342
+ msgctxt "(Admin)"
3343
+ msgid "I have appointed a Data Protection Officer (DPO)"
3344
+ msgstr "J’ai nommé un délégué à la protection des données (DPO)"
3345
+
3346
+ #: views/admin/privacy-policy/header.php:2
3347
+ #, fuzzy
3348
+ #| msgid ""
3349
+ #| "This page allows you to generate a Privacy Policy based on the "
3350
+ #| "information you entered below."
3351
+ msgctxt "(Admin)"
3352
+ msgid ""
3353
+ "This page allows you to generate a Privacy Policy based on the information "
3354
+ "you entered below."
3355
+ msgstr ""
3356
+ "Cette page vous permet de générer une Politique de confidentialité basée sur "
3357
+ "les informations que vous avez saisies ci-dessous."
3358
+
3359
+ #: views/admin/privacy-safe/enable-backlink.php:11
3360
+ #, fuzzy
3361
+ #| msgid ""
3362
+ #| "<b>Note:</b> We need your support. By selecting to support Data443, a "
3363
+ #| "small link is added below the privacy safe seal linking back to our "
3364
+ #| "product page on data443.com. Uncheck if you prefer not to have the link "
3365
+ #| "display on your site."
3366
+ msgctxt "(Admin)"
3367
+ msgid ""
3368
+ "<b>Note:</b> We need your support. By selecting to support Data443, a small "
3369
+ "link is added below the privacy safe seal linking back to our product page "
3370
+ "on data443.com. Uncheck if you prefer not to have the link display on your "
3371
+ "site."
3372
+ msgstr ""
3373
+ "<b>Note :</b> Nous avons besoin de votre soutien. En choisissant de soutenir "
3374
+ "Data443, un petit lien est ajouté sous le sceau de protection de la vie "
3375
+ "privée renvoyant à notre page produit sur data443.com. Décochez si vous "
3376
+ "préférez que le lien ne soit pas affiché sur votre site."
3377
+
3378
+ #: views/admin/settings-page.php:8
3379
+ msgctxt "(Admin)"
3380
+ msgid "GDPR settings saved!"
3381
+ msgstr "¡La configuración de RGPD ha sido guardada!"
3382
+
3383
+ #: views/admin/settings-page.php:31
3384
+ #, php-format
3385
+ msgctxt "(Admin)"
3386
+ msgid "The GDPR Framework. Built with &#9829; by %sData443%s."
3387
+ msgstr "El Marco RGPD. Construido con ♥ por %sData443%s."
3388
+
3389
+ #: views/admin/settings-page.php:47
3390
+ #, fuzzy, php-format
3391
+ #| msgid "Support our development efforts! leave a %s5-star rating%s."
3392
+ msgctxt "(Admin)"
3393
+ msgid "Support our development efforts! leave a %s5-star rating%s."
3394
+ msgstr "Soutenez nos efforts de développement! laisser une note %s5-étoile%s."
3395
+
3396
+ #: views/admin/support/contents.php:5 views/installer/steps/finish.php:10
3397
+ #, fuzzy
3398
+ #| msgid "Need more info?"
3399
+ msgctxt "(Admin)"
3400
+ msgid "Need more info?"
3401
+ msgstr "Besoin de plus d'informations ?"
3402
+
3403
+ #: views/admin/support/contents.php:11 views/installer/steps/finish.php:16
3404
+ #, fuzzy
3405
+ #| msgid "Site Owner's guide to GDPR"
3406
+ msgctxt "(Admin)"
3407
+ msgid "Site Owner's guide to GDPR"
3408
+ msgstr "Guide du propriétaire de site sur le RGPD"
3409
+
3410
+ #: views/admin/support/contents.php:14 views/installer/steps/finish.php:19
3411
+ #, fuzzy
3412
+ #| msgid "Read the full guide on GDPR compliance."
3413
+ msgctxt "(Admin)"
3414
+ msgid "Read the full guide on GDPR compliance."
3415
+ msgstr "Cliquez ici pour le guide complet."
3416
+
3417
+ #: views/admin/support/contents.php:20 views/installer/steps/finish.php:25
3418
+ msgctxt "(Admin)"
3419
+ msgid "Knowledge base"
3420
+ msgstr "Base de conocimiento"
3421
+
3422
+ #: views/admin/support/contents.php:23 views/installer/steps/finish.php:28
3423
+ #, fuzzy
3424
+ #| msgid "Check out the knowledge base for common questions and answers."
3425
+ msgctxt "(Admin)"
3426
+ msgid "Check out the knowledge base for common questions and answers."
3427
+ msgstr ""
3428
+ "Consulter la base de connaissances pour trouver des questions et des "
3429
+ "réponses courantes."
3430
+
3431
+ #: views/admin/support/contents.php:29 views/installer/steps/finish.php:34
3432
+ #, fuzzy
3433
+ #| msgid "Developer's guide to GDPR"
3434
+ msgctxt "(Admin)"
3435
+ msgid "Developer's guide to GDPR"
3436
+ msgstr "Guide du développeur pour le RGPD"
3437
+
3438
+ #: views/admin/support/contents.php:32 views/installer/steps/finish.php:37
3439
+ #, fuzzy
3440
+ #| msgctxt "(Admin)"
3441
+ #| msgid "We have a thorough guide to help making custom sites compliant."
3442
+ msgctxt "(Admin)"
3443
+ msgid "We have a thorough guide to help making custom sites compliant."
3444
+ msgstr ""
3445
+ "Tenemos una guía completa para ayudar a que los sitios personalizados sean "
3446
+ "compatibles."
3447
+
3448
+ #: views/admin/support/contents.php:40 views/installer/steps/finish.php:45
3449
+ msgctxt "(Admin)"
3450
+ msgid "Need help?"
3451
+ msgstr "¿Necesitas ayuda?"
3452
+
3453
+ #: views/admin/support/contents.php:46 views/installer/steps/finish.php:51
3454
+ #, fuzzy
3455
+ #| msgid "Submit a support request"
3456
+ msgctxt "(Admin)"
3457
+ msgid "Submit a support request"
3458
+ msgstr "Envoyer une demande de support"
3459
+
3460
+ #: views/admin/support/contents.php:49 views/installer/steps/finish.php:54
3461
+ #, fuzzy
3462
+ #| msgctxt "(Admin)"
3463
+ #| msgid ""
3464
+ #| "Found a bug or have a question about the plugin? Submit a support request "
3465
+ #| "and we’ll get right on it!"
3466
+ msgctxt "(Admin)"
3467
+ msgid ""
3468
+ "Found a bug or have a question about the plugin? Submit a support request "
3469
+ "and we’ll get right on it!"
3470
+ msgstr ""
3471
+ "¿Encontró un error o tiene una pregunta sobre el complemento? Envíe una "
3472
+ "solicitud de soporte y nos pondremos en contacto con usted."
3473
+
3474
+ #: views/admin/support/contents.php:55 views/installer/steps/finish.php:60
3475
+ #, fuzzy
3476
+ #| msgctxt "(Admin)"
3477
+ #| msgid "Request a consultation"
3478
+ msgctxt "(Admin)"
3479
+ msgid "Request a consultation"
3480
+ msgstr "Solicitar una consulta"
3481
+
3482
+ #: views/admin/support/contents.php:58 views/installer/steps/finish.php:63
3483
+ #, fuzzy
3484
+ #| msgctxt "(Admin)"
3485
+ #| msgid "Need assistance in making your site compliant? We can help!"
3486
+ msgctxt "(Admin)"
3487
+ msgid "Need assistance in making your site compliant? We can help!"
3488
+ msgstr ""
3489
+ "¿Necesita ayuda para hacer que su sitio sea compatible? ¡Podemos ayudar!"
3490
+
3491
+ #: views/admin/wizard-buttons.php:2
3492
+ #, fuzzy
3493
+ #| msgid "Restart setup wizard"
3494
+ msgctxt "(Admin)"
3495
+ msgid "Restart setup wizard"
3496
+ msgstr "Redémarrer l’assistant de configuration"
3497
+
3498
+ #: views/email/action-export.php:8 views/email/action-forget.php:12
3499
+ msgctxt "(Admin)"
3500
+ msgid ""
3501
+ "This email is just for your information. You don't need to take any action"
3502
+ msgstr ""
3503
+ "Este email es solo para tu información. No tienes que llevar a cabo ninguna "
3504
+ "acción"
3505
+
3506
+ #: views/email/action-forget.php:8
3507
+ #, fuzzy
3508
+ #| msgid "The data subject had a user account on your website."
3509
+ msgctxt "(Admin)"
3510
+ msgid "The data subject had a user account on your website."
3511
+ msgstr "Ce sujet de donnée a un conte utilisateur dans votre site."
3512
+
3513
+ #: views/email/identify-data-subject.php:2
3514
+ msgid "Someone has requested access to your data on"
3515
+ msgstr "Alguien ha solicitado acceso a sus datos en"
3516
+
3517
+ #: views/email/identify-data-subject.php:3
3518
+ msgid "If this was a mistake, just ignore this email and nothing will happen."
3519
+ msgstr ""
3520
+ "Si esto fue un error, simplemente ignora este correo electrónico y no pasará "
3521
+ "nada."
3522
+
3523
+ #: views/email/identify-data-subject.php:4
3524
+ msgid "To manage your data, visit the following address:"
3525
+ msgstr "Para administrar sus datos, visite la siguiente dirección:"
3526
+
3527
+ #: views/email/identify-data-subject.php:10
3528
+ msgid "This link is valid for 15 minutes."
3529
+ msgstr "Este enlace es válido por 15 minutos."
3530
+
3531
+ #: views/email/no-data.php:2
3532
+ msgid "Someone has requested information about your personal data on"
3533
+ msgstr "Alguien ha solicitado información sobre sus datos personales en"
3534
+
3535
+ #: views/email/no-data.php:3
3536
+ msgid "None of your personal data is stored on"
3537
+ msgstr "Ninguno de sus datos personales se almacena en"
3538
+
3539
+ #: views/email/no-data.php:5
3540
+ msgid ""
3541
+ "If this was a mistake or you did not request this email, just ignore it and "
3542
+ "nothing will happen."
3543
+ msgstr ""
3544
+ "Si esto fue un error o no solicitó este correo electrónico, simplemente "
3545
+ "ignórelo y no pasará nada."
3546
+
3547
+ #: views/email/request-export.php:13 views/email/request-forget.php:13
3548
+ #, fuzzy
3549
+ #| msgid "As a reminder: according to GDPR, you have 30 days to comply."
3550
+ msgctxt "(Admin)"
3551
+ msgid "As a reminder: according to GDPR, you have 30 days to comply."
3552
+ msgstr "Rappel : selon GPRD, vous avez 30 jours pour vous conformer."
3553
+
3554
+ #: views/global/delete-action.php:2
3555
+ #, fuzzy
3556
+ #| msgctxt "(Admin)"
3557
+ #| msgid "Automatically anonymize data"
3558
+ msgctxt "(Admin)"
3559
+ msgid "Automatically anonymize data"
3560
+ msgstr "Anonimizar los datos de forma automática"
3561
+
3562
+ #: views/global/delete-action.php:5
3563
+ #, fuzzy
3564
+ #| msgid "Automatically delete data"
3565
+ msgctxt "(Admin)"
3566
+ msgid "Automatically delete data"
3567
+ msgstr "Suppression automatique des anciennes données de mesure"
3568
+
3569
+ #: views/global/delete-action.php:9
3570
+ #, fuzzy
3571
+ #| msgid "Automatically anonymize data and notify me via email"
3572
+ msgctxt "(Admin)"
3573
+ msgid "Automatically anonymize data and notify me via email"
3574
+ msgstr "Anonymiser automatiquement les données et prévenir par e-mail"
3575
+
3576
+ #: views/global/delete-action.php:13
3577
+ #, fuzzy
3578
+ #| msgid "Automatically delete data and notify me via email"
3579
+ msgctxt "(Admin)"
3580
+ msgid "Automatically delete data and notify me via email"
3581
+ msgstr "Effacer automatiquement les données et me notifier par email"
3582
+
3583
+ #: views/global/delete-action.php:16 views/global/export-action.php:10
3584
+ #, fuzzy
3585
+ #| msgid "Only notify me via email"
3586
+ msgctxt "(Admin)"
3587
+ msgid "Only notify me via email"
3588
+ msgstr "M’informer uniquement par e-mail"
3589
+
3590
+ #: views/global/export-action.php:2
3591
+ #, fuzzy
3592
+ #| msgctxt "(Admin)"
3593
+ #| msgid "Automatically download data"
3594
+ msgctxt "(Admin)"
3595
+ msgid "Automatically download data"
3596
+ msgstr "Descargar automáticamente los datos"
3597
+
3598
+ #: views/global/export-action.php:6
3599
+ #, fuzzy
3600
+ #| msgid "Automatically download data and notify me via email"
3601
+ msgctxt "(Admin)"
3602
+ msgid "Automatically download data and notify me via email"
3603
+ msgstr "Télécharger automatiquement les données et avertir par e-mail"
3604
+
3605
+ #: views/global/position-action.php:2
3606
+ #, fuzzy
3607
+ #| msgid "Banner bottom"
3608
+ msgctxt "(Admin)"
3609
+ msgid "Banner bottom"
3610
+ msgstr "Banner du bas"
3611
+
3612
+ #: views/global/position-action.php:5
3613
+ #, fuzzy
3614
+ #| msgid "Floating left"
3615
+ msgctxt "(Admin)"
3616
+ msgid "Floating left"
3617
+ msgstr "Flottant à gauche"
3618
+
3619
+ #: views/global/position-action.php:8
3620
+ #, fuzzy
3621
+ #| msgid "Floating Right"
3622
+ msgctxt "(Admin)"
3623
+ msgid "Floating Right"
3624
+ msgstr "Flottant droit"
3625
+
3626
+ #: views/global/position-action.php:11
3627
+ msgctxt "(Admin)"
3628
+ msgid "Banner top"
3629
+ msgstr "Banner arriba"
3630
+
3631
+ #: views/global/theme-action.php:2
3632
+ msgctxt "(Admin)"
3633
+ msgid "Default"
3634
+ msgstr "Por defecto"
3635
+
3636
+ #: views/global/theme-action.php:5
3637
+ msgctxt "(Admin)"
3638
+ msgid "Classic"
3639
+ msgstr "Clásico"
3640
+
3641
+ #: views/global/theme-action.php:8
3642
+ #, fuzzy
3643
+ #| msgid "Edgeless"
3644
+ msgctxt "(Admin)"
3645
+ msgid "Edgeless"
3646
+ msgstr "Sans bord"
3647
+
3648
+ #: views/installer/continue-notice.php:2
3649
+ #, fuzzy
3650
+ #| msgid "The The GDPR Framework setup has not been finalized yet."
3651
+ msgctxt "(Admin)"
3652
+ msgid "The The GDPR Framework setup has not been finalized yet."
3653
+ msgstr "La configuration de GPRD Framework est terminée."
3654
+
3655
+ #: views/installer/continue-notice.php:3
3656
+ #, fuzzy
3657
+ #| msgctxt "(Admin)"
3658
+ #| msgid "You can continue the setup at any time."
3659
+ msgctxt "(Admin)"
3660
+ msgid "You can continue the setup at any time."
3661
+ msgstr "Puedes continuar con la configuración en cualquier momento."
3662
+
3663
+ #: views/installer/continue-notice.php:6
3664
+ #, fuzzy
3665
+ #| msgctxt "(Admin)"
3666
+ #| msgid "Continue the setup wizard"
3667
+ msgctxt "(Admin)"
3668
+ msgid "Continue the setup wizard"
3669
+ msgstr "Continuar con el asistente de configuración"
3670
+
3671
+ #: views/installer/continue-notice.php:9
3672
+ msgctxt "(Admin)"
3673
+ msgid "Hide this message"
3674
+ msgstr "Ocultar este mensaje"
3675
+
3676
+ #: views/installer/footer.php:7
3677
+ msgid "Back"
3678
+ msgstr "Volver atrás"
3679
+
3680
+ #: views/installer/header.php:7
3681
+ #, fuzzy
3682
+ #| msgid "WordPress GDPR &rsaquo; Setup Wizard"
3683
+ msgctxt "(Admin)"
3684
+ msgid "WordPress GDPR &rsaquo; Setup Wizard"
3685
+ msgstr "WordPress RGPD &rsaquo; Setup Wizard"
3686
+
3687
+ #: views/installer/header.php:23
3688
+ msgctxt "(Admin)"
3689
+ msgid "The GDPR Framework"
3690
+ msgstr "The GDPR Framework"
3691
+
3692
+ #: views/installer/header.php:26
3693
+ msgctxt "(Admin)"
3694
+ msgid "I need help"
3695
+ msgstr "Necesito ayuda"
3696
+
3697
+ #: views/installer/header.php:29
3698
+ #, fuzzy
3699
+ #| msgctxt "(Admin)"
3700
+ #| msgid "Developer Docs"
3701
+ msgctxt "(Admin)"
3702
+ msgid "Developer Docs"
3703
+ msgstr "Documentos para desarrolladores"
3704
+
3705
+ #: views/installer/header.php:36
3706
+ msgctxt "(Admin)"
3707
+ msgid "Configuration"
3708
+ msgstr "Configuración"
3709
+
3710
+ #: views/installer/header.php:46
3711
+ #, fuzzy
3712
+ #| msgctxt "(Admin)"
3713
+ #| msgid "Forms & Consent"
3714
+ msgctxt "(Admin)"
3715
+ msgid "Forms & Consent"
3716
+ msgstr "Formularios y consentimiento"
3717
+
3718
+ #: views/installer/header.php:51
3719
+ msgctxt "(Admin)"
3720
+ msgid "Integrations"
3721
+ msgstr "Integraciones"
3722
+
3723
+ #: views/installer/privacy-safe-notice.php:3
3724
+ #, fuzzy
3725
+ msgctxt "(Admin)"
3726
+ msgid ""
3727
+ "Strengthen your reputation. Privacy safe gives your customers total control "
3728
+ "of their private information. The privacy safe seal assures your new "
3729
+ "customers that your business is in compliance with new privacy laws and "
3730
+ "regulations. For the privacy safe seal will verify that GDPR Framework "
3731
+ "plugin is installed."
3732
+ msgstr ""
3733
+ "Fortalece tu reputación. La seguridad de la privacidad brinda a sus clientes "
3734
+ "el control total de su información privada. El sello de seguridad de "
3735
+ "privacidad asegura a sus nuevos clientes que su negocio cumple con las "
3736
+ "nuevas leyes y regulaciones de privacidad. Para la privacidad, el sello "
3737
+ "seguro verificará que el complemento GDPR Framework esté instalado."
3738
+
3739
+ #: views/installer/privacy-safe-notice.php:9
3740
+ msgctxt "(Admin)"
3741
+ msgid "Learn More"
3742
+ msgstr "Aprende más"
3743
+
3744
+ #: views/installer/privacy-safe-notice.php:12
3745
+ msgctxt "(Admin)"
3746
+ msgid "Maybe Later"
3747
+ msgstr "Quizá más tarde"
3748
+
3749
+ #: views/installer/steps/configuration-settings.php:23
3750
+ #: views/installer/steps/configuration-settings.php:73
3751
+ #, fuzzy
3752
+ #| msgid "Enter the email address to notify"
3753
+ msgctxt "(Admin)"
3754
+ msgid "Enter the email address to notify"
3755
+ msgstr "Saisir l’adresse e-mail à notifier"
3756
+
3757
+ #: views/installer/steps/disclaimer.php:21
3758
+ msgctxt "(Admin)"
3759
+ msgid "I accept"
3760
+ msgstr "Acepto"
3761
+
3762
+ #: views/installer/welcome-notice.php:2
3763
+ #, fuzzy
3764
+ #| msgid "The The GDPR Framework setup has not been finalized yet."
3765
+ msgctxt "(Admin)"
3766
+ msgid "The GDPR Framework has not been set up yet. Would you like to do that?"
3767
+ msgstr "La configuration de GPRD Framework est terminée."
3768
+
3769
+ #: views/installer/welcome-notice.php:3
3770
+ #, fuzzy
3771
+ msgctxt "(Admin)"
3772
+ msgid "Our setup wizard will guide you through the process."
3773
+ msgstr "Nuestro asistente de configuración lo guiará a través del proceso."
3774
+
3775
+ #: views/installer/welcome-notice.php:4
3776
+ #, fuzzy
3777
+ msgctxt "(Admin)"
3778
+ msgid "You can also configure the plugin manually by going to"
3779
+ msgstr "También puede configurar el complemento manualmente yendo a"
3780
+
3781
+ #: views/installer/welcome-notice.php:5
3782
+ msgctxt "(Admin)"
3783
+ msgid "Tools"
3784
+ msgstr "Herramientas"
3785
+
3786
+ #: views/installer/welcome-notice.php:10
3787
+ #, fuzzy
3788
+ #| msgid "Run the setup wizard"
3789
+ msgctxt "(Admin)"
3790
+ msgid "Run the setup wizard"
3791
+ msgstr "Démarrer l'assistant d'installation"
3792
+
3793
+ #: views/installer/welcome-notice.php:14
3794
+ #, fuzzy
3795
+ #| msgid "Auto-install pages"
3796
+ msgctxt "(Admin)"
3797
+ msgid "Auto-install pages"
3798
+ msgstr "Installation automatique des pages"
3799
+
3800
+ #: views/installer/welcome-notice.php:18
3801
+ #, fuzzy
3802
+ #| msgid "Skip and install manually"
3803
+ msgctxt "(Admin)"
3804
+ msgid "Skip and install manually"
3805
+ msgstr "Ignorer et installer manuellement"
3806
+
3807
+ #: views/modules/contact-form-7/form-privacy-tab.php:10
3808
+ #, fuzzy
3809
+ msgctxt "(Admin)"
3810
+ msgid ""
3811
+ "Include the entries of this form when downloading or deleting a data "
3812
+ "subject's data."
3813
+ msgstr ""
3814
+ "Incluya las entradas de este formulario al descargar o eliminar los datos de "
3815
+ "un interesado."
3816
+
3817
+ #: views/modules/contact-form-7/form-privacy-tab.php:18
3818
+ #, fuzzy
3819
+ msgctxt "(Admin)"
3820
+ msgid ""
3821
+ "Select the mail-tag of the sender's email field (for example, your-email)."
3822
+ msgstr ""
3823
+ "Seleccione la etiqueta de correo del campo de correo electrónico del "
3824
+ "remitente (por ejemplo, su correo electrónico)."
3825
+
3826
+ #: views/modules/contact-form-7/generator-privacy.php:6
3827
+ #, fuzzy
3828
+ #| msgctxt "(Admin)"
3829
+ #| msgid ""
3830
+ #| "This tag generates the default text for Terms & Conditions and/or Privacy "
3831
+ #| "Policy checkbox."
3832
+ msgctxt "(Admin)"
3833
+ msgid ""
3834
+ "This tag generates the default text for Terms & Conditions and/or Privacy "
3835
+ "Policy checkbox."
3836
+ msgstr ""
3837
+ "Esta etiqueta genera el texto predeterminado para la casilla de verificación "
3838
+ "Términos y condiciones y / o Política de privacidad."
3839
+
3840
+ #: views/modules/contact-form-7/generator-privacy.php:15
3841
+ msgid "Insert"
3842
+ msgstr "Insertar"
3843
+
3844
+ #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:3
3845
+ #: views/privacy-tools/form-consent.php:2
3846
+ msgid "Consent"
3847
+ msgstr "Consentimiento"
3848
+
3849
+ #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:6
3850
+ #: views/privacy-tools/form-consent.php:6
3851
+ msgid "Here you can withdraw any consents you have given."
3852
+ msgstr "Aquí puede retirar cualquier consentimiento que haya dado."
3853
+
3854
+ #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:8
3855
+ msgid "Consents"
3856
+ msgstr "Consentements"
3857
+
3858
+ #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:23
3859
+ #: views/privacy-tools/form-consent.php:24
3860
+ msgid "Withdraw"
3861
+ msgstr "Retirar"
3862
+
3863
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:5
3864
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:5
3865
+ #, fuzzy
3866
+ #| msgid "Delete this user and all data"
3867
+ msgctxt "(Admin)"
3868
+ msgid "Delete this user and all data"
3869
+ msgstr "Supprimer cet utilisateur et toutes ses données"
3870
+
3871
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:11
3872
+ msgctxt "(Admin)"
3873
+ msgid "Delete my data"
3874
+ msgstr "Borrar mis datos"
3875
+
3876
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:15
3877
+ #: views/privacy-tools/form-delete.php:4 views/privacy-tools/form-delete.php:24
3878
+ msgid "Delete all data we have gathered about you."
3879
+ msgstr "Eliminar todos los datos que hemos recopilado sobre usted."
3880
+
3881
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:16
3882
+ #: views/privacy-tools/form-delete.php:5 views/privacy-tools/form-delete.php:25
3883
+ msgid "If you have a user account on our site, it will also be deleted."
3884
+ msgstr "Si tiene una cuenta de usuario en nuestro sitio, también se eliminará."
3885
+
3886
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:17
3887
+ #: views/privacy-tools/form-delete.php:6 views/privacy-tools/form-delete.php:26
3888
+ msgid "Be careful - this action is permanent and CANNOT be undone."
3889
+ msgstr "Tenga cuidado: esta acción es permanente y NO SE PUEDE deshacer."
3890
+
3891
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:19
3892
+ #: views/privacy-tools/form-delete.php:8
3893
+ msgid "Note Regarding Order:"
3894
+ msgstr "Nota sobre el pedido:"
3895
+
3896
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:20
3897
+ #: views/privacy-tools/form-delete.php:9
3898
+ msgid ""
3899
+ "Your order with status Processing will not get deleted until status change."
3900
+ msgstr ""
3901
+ "Su orden con el procesamiento de estado no se eliminará hasta que cambie el "
3902
+ "estado."
3903
+
3904
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:21
3905
+ #: views/privacy-tools/form-delete.php:10
3906
+ msgid "Your order with status Completed will get anonymize."
3907
+ msgstr "Su pedido con estado Completado se anonimizará."
3908
+
3909
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:22
3910
+ #: views/privacy-tools/form-delete.php:11
3911
+ msgid "If you delete Completed order you can't apply for refund."
3912
+ msgstr "Si elimina el pedido completado, no podrá solicitar el reembolso."
3913
+
3914
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:28
3915
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:23
3916
+ #, fuzzy
3917
+ #| msgid ""
3918
+ #| "You seem to have an administrator or equivalent role, so deleting/"
3919
+ #| "anonymizing via this page is disabled."
3920
+ msgctxt "(Admin)"
3921
+ msgid ""
3922
+ "You seem to have an administrator or equivalent role, so deleting/"
3923
+ "anonymizing via this page is disabled."
3924
+ msgstr ""
3925
+ "Vous semblez avoir un rôle d’administrateur ou équivalent, donc la "
3926
+ "suppression/anonymisation via cette page est désactivée."
3927
+
3928
+ #: views/modules/wordpress-user/dashboard/form-export.php:7
3929
+ #: views/privacy-tools/form-export.php:1
3930
+ msgid "Download your data"
3931
+ msgstr "Descarga tus datos"
3932
+
3933
+ #: views/modules/wordpress-user/dashboard/form-export.php:12
3934
+ #: views/privacy-tools/form-export.php:13
3935
+ msgid "Download as table"
3936
+ msgstr "Descargar como tabla"
3937
+
3938
+ #: views/modules/wordpress-user/dashboard/form-export.php:15
3939
+ #: views/privacy-tools/form-export.php:22
3940
+ msgid "Export as JSON"
3941
+ msgstr "Exportar como JSON"
3942
+
3943
+ #: views/modules/wordpress-user/dashboard/form-export.php:19
3944
+ #: views/privacy-tools/form-export.php:4
3945
+ msgid "You can download all your data formatted as a table for viewing."
3946
+ msgstr "Puede descargar todos sus datos formateados como una tabla para ver."
3947
+
3948
+ #: views/modules/wordpress-user/dashboard/form-export.php:20
3949
+ #: views/privacy-tools/form-export.php:5
3950
+ msgid "Alternatively, you can export it in machine-readable JSON format."
3951
+ msgstr ""
3952
+ "Alternativamente, puede exportarlo en formato JSON legible por máquina."
3953
+
3954
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:11
3955
+ #, fuzzy
3956
+ #| msgctxt "(Admin)"
3957
+ #| msgid "Delete user and all data"
3958
+ msgctxt "(Admin)"
3959
+ msgid "Delete user and all data"
3960
+ msgstr "Eliminar usuario y todos los datos"
3961
+
3962
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:14
3963
+ #, fuzzy
3964
+ #| msgid "Anonymize user and all data"
3965
+ msgctxt "(Admin)"
3966
+ msgid "Anonymize user and all data"
3967
+ msgstr "Anonymiser utilisateur et toutes les données"
3968
+
3969
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:18
3970
+ msgctxt "gdpr-framework"
3971
+ msgid "Be careful - this action is permanent and CANNOT be undone."
3972
+ msgstr ""
3973
+ "Por favor, ten cuidado: esta acción es permanente y NO SE PUEDE deshacer."
3974
+
3975
+ #: views/modules/wordpress-user/dashboard/profile-page/header.php:2
3976
+ #, fuzzy
3977
+ #| msgid "GDPR Data"
3978
+ msgctxt "(Admin)"
3979
+ msgid "GDPR Data"
3980
+ msgstr "Données RGPD"
3981
+
3982
+ #: views/modules/wordpress-user/dashboard/profile-page/header.php:6
3983
+ #, fuzzy
3984
+ #| msgid "This user has been anonymized."
3985
+ msgctxt "(Admin)"
3986
+ msgid "This user has been anonymized."
3987
+ msgstr "Un utilisateur a été anonymisé."
3988
+
3989
+ #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:17
3990
+ #, fuzzy
3991
+ #| msgid "No consents given"
3992
+ msgctxt "(Admin)"
3993
+ msgid "No consents given"
3994
+ msgstr "Aucun consentement n’a été donné"
3995
+
3996
+ #: views/modules/wordpress-user/dashboard/profile-page/user-logs.php:2
3997
+ #, fuzzy
3998
+ #| msgid "GDPR User logs"
3999
+ msgctxt "gdpr-framework"
4000
+ msgid "GDPR User logs"
4001
+ msgstr "Données GDPR utilisateur"
4002
+
4003
+ #: views/modules/wordpress-user/dashboard/profile-page/user-logs.php:8
4004
+ msgctxt "gdpr-framework"
4005
+ msgid "S.no"
4006
+ msgstr "S.no"
4007
+
4008
+ #: views/modules/wordpress-user/dashboard/profile-page/user-logs.php:9
4009
+ msgctxt "gdpr-framework"
4010
+ msgid "User ID"
4011
+ msgstr "ID de Usuario"
4012
+
4013
+ #: views/modules/wordpress-user/dashboard/profile-page/user-logs.php:10
4014
+ #, fuzzy
4015
+ #| msgid "User logs"
4016
+ msgctxt "gdpr-framework"
4017
+ msgid "User logs"
4018
+ msgstr "Journaux des utilisateurs"
4019
+
4020
+ #: views/modules/wordpress-user/dashboard/profile-page/user-logs.php:11
4021
+ msgctxt "gdpr-framework"
4022
+ msgid "Updated date"
4023
+ msgstr "Fecha actualizada"
4024
+
4025
+ #: views/modules/wordpress-user/dashboard/profile-page/user-logs.php:50
4026
+ #, fuzzy
4027
+ #| msgid "No User Logs"
4028
+ msgctxt "gdpr-framework"
4029
+ msgid "No User Logs"
4030
+ msgstr "Pas de journaux d'utilisateurs"
4031
+
4032
+ #: views/privacy-tools/donotsell.php:14
4033
+ msgid "Do Not Sell Request"
4034
+ msgstr "Requête de « ne pas vendre »"
4035
+
4036
+ #: views/privacy-tools/donotsell.php:51
4037
+ msgid "I agree to receive other communications from "
4038
+ msgstr "J’accepte de recevoir d’autres communications de "
4039
+
4040
+ #: views/privacy-tools/donotsell.php:61
4041
+ msgctxt "(Admin)"
4042
+ msgid "Send Request"
4043
+ msgstr "Enviar solicitud"
4044
+
4045
+ #: views/privacy-tools/form-consent.php:9
4046
+ msgid "Consent types"
4047
+ msgstr "Tipos de consentimiento"
4048
+
4049
+ #: views/privacy-tools/form-delete.php:1
4050
+ #: views/privacy-tools/notice-admin-role.php:1
4051
+ msgid "Delete my user and data"
4052
+ msgstr "Eliminar mi usuario y datos"
4053
+
4054
+ #: views/privacy-tools/form-delete.php:18
4055
+ #: views/privacy-tools/form-delete.php:30
4056
+ msgid "Delete my data"
4057
+ msgstr "Borrar mis datos"
4058
+
4059
+ #: views/privacy-tools/form-identify.php:8
4060
+ msgid "Back to front page"
4061
+ msgstr "Retour à la page d’accueil"
4062
+
4063
+ #: views/privacy-tools/form-identify.php:14
4064
+ msgid "Please identify yourself via e-mail"
4065
+ msgstr "Por favor, identifíquese por correo electrónico"
4066
+
4067
+ #: views/privacy-tools/form-identify.php:17
4068
+ #: views/privacy-tools/form-identify.php:20
4069
+ msgid "Enter your email address"
4070
+ msgstr "Ingrese su dirección de correo electrónico"
4071
+
4072
+ #: views/privacy-tools/form-identify.php:23
4073
+ msgid "Send email"
4074
+ msgstr "Enviar correo electrónico"
4075
+
4076
+ #: views/privacy-tools/notice-admin-role.php:4
4077
+ #, fuzzy
4078
+ #| msgid "Data deletion is disabled for administrative accounts."
4079
+ msgctxt "(Admin)"
4080
+ msgid "Data deletion is disabled for administrative accounts."
4081
+ msgstr "Cette opération est désactivée pour les administrateurs."
4082
+
4083
+ #: views/privacy-tools/notices.php:3
4084
+ msgid ""
4085
+ "We will send you an email with the link to access your data. Please check "
4086
+ "your spam folder as well!"
4087
+ msgstr ""
4088
+ "Le enviaremos un correo electrónico con el enlace para acceder a sus datos. "
4089
+ "Por favor revise su carpeta de spam también!"
4090
+
4091
+ #: views/privacy-tools/notices.php:7
4092
+ msgid "The email you entered does not appear to be a valid email."
4093
+ msgstr ""
4094
+ "El correo electrónico que ingresaste no parece ser un correo electrónico "
4095
+ "válido."
4096
+
4097
+ #: views/privacy-tools/notices.php:11
4098
+ msgid "Sorry - the link seems to have expired. Please try again!"
4099
+ msgstr "Lo sentimos, el enlace parece haber expirado. ¡Inténtalo de nuevo!"
4100
+
4101
+ #: views/privacy-tools/notices.php:23
4102
+ msgid "Your personal data has been removed!"
4103
+ msgstr "Sus datos personales han sido eliminados!"
4104
+
4105
+ #: views/privacy-tools/privacy-tools.php:5
4106
+ msgid "You are identified as"
4107
+ msgstr "Usted es identificado como"
4108
+
4109
+ #. Plugin Name of the plugin/theme
4110
+ msgid "The GDPR Framework"
4111
+ msgstr "La boite à outils GDPR"
4112
+
4113
+ #. Plugin URI of the plugin/theme
4114
+ #, fuzzy
4115
+ msgid "https://www.data443.com/gdpr-framework/"
4116
+ msgstr "https://www.data443.com/gdpr-framework/"
4117
+
4118
+ #. Description of the plugin/theme
4119
+ msgid ""
4120
+ "Tools to help make your website GDPR-compliant. Fully documented, extendable "
4121
+ "and developer-friendly."
4122
+ msgstr ""
4123
+ "Herramientas para ayudar a que su sitio web cumpla con RGPD. Completamente "
4124
+ "documentado, extensible y amigable para el desarrollador."
4125
+
4126
+ #. Author of the plugin/theme
4127
+ #, fuzzy
4128
+ #| msgid "Data443 GDPR"
4129
+ msgid "Data443"
4130
+ msgstr "Data443 GDPR"
4131
+
4132
+ #. Author URI of the plugin/theme
4133
+ #, fuzzy
4134
+ msgid "https://www.data443.com/"
4135
+ msgstr "https://www.data443.com/"
4136
+
4137
+ #, php-format
4138
+ #~ msgid ""
4139
+ #~ "%sERROR:%s You need to accept the terms and conditions to post a comment."
4140
+ #~ msgstr ""
4141
+ #~ "%sERROR:%s Debe aceptar los términos y condiciones para publicar un "
4142
+ #~ "comentario."
4143
+
4144
+ #~ msgctxt "(Admin)"
4145
+ #~ msgid "Rest of the world"
4146
+ #~ msgstr "Resto del mundo"
4147
+
4148
+ #~ msgctxt "(Admin)"
4149
+ #~ msgid ""
4150
+ #~ "Found a bug or problem with the plugin? Post in the wordpress.org support "
4151
+ #~ "forum."
4152
+ #~ msgstr ""
4153
+ #~ "¿Encontró un error o problema con el plugin? Publicar en el foro de "
4154
+ #~ "soporte de wordpress.org."
4155
+
4156
+ #~ msgctxt "(Admin)"
4157
+ #~ msgid ""
4158
+ #~ "Need development or legal assistance in making your site compliant? We "
4159
+ #~ "can help!"
4160
+ #~ msgstr ""
4161
+ #~ "¿Necesita asistencia legal o de desarrollo para que su sitio sea "
4162
+ #~ "compatible? ¡Podemos ayudar!"
4163
+
4164
+ #, php-format
4165
+ #~ msgid "I accept the %sTerms and Conditions%s and the %sPrivacy Policy%s"
4166
+ #~ msgstr ""
4167
+ #~ "Acepto los %sTérminos y condiciones%s y la %sPolítica de privacidad%s"
4168
+
4169
+ #~ msgid "Manage consents"
4170
+ #~ msgstr "Gestionar consentimientos"
4171
+
4172
+ #~ msgid "Back to Privacy Tools"
4173
+ #~ msgstr "Volver a Herramientas de privacidad"
4174
+
4175
+ #~ msgid "Identify yourself!"
4176
+ #~ msgstr "¡Identifícate!"
4177
+
4178
+ #~ msgctxt "(Admin)"
4179
+ #~ msgid "This page allows you to advance integration with ClassiDocs™"
4180
+ #~ msgstr "Esta página le permite avanzar en la integración con ClassiDocs ™"
4181
+
4182
+ #~ msgctxt "(Admin)"
4183
+ #~ msgid "ClassiDocs Password"
4184
+ #~ msgstr "Contraseña de ClassiDocs"
4185
+
4186
+ #~ msgctxt "(Admin)"
4187
+ #~ msgid "ClassiDocs Username"
4188
+ #~ msgstr "Nombre de usuario de ClassiDocs"
4189
+
4190
+ #~ msgctxt "(Admin)"
4191
+ #~ msgid "Enable Response with related queries?"
4192
+ #~ msgstr "¿Habilitar respuesta con consultas relacionadas?"
4193
+
4194
+ #~ msgctxt "(Admin)"
4195
+ #~ msgid "Submit SAR request details?"
4196
+ #~ msgstr "¿Enviar detalles de solicitud de SAR?"
4197
+
4198
+ #~ msgctxt "(Admin)"
4199
+ #~ msgid "Integrate with ClassiDocs?"
4200
+ #~ msgstr "¿Integrar con ClassiDocs?"
4201
+
4202
+ #~ msgctxt "(Admin)"
4203
+ #~ msgid "Integration Settings"
4204
+ #~ msgstr "Ajustes de integración"
4205
+
4206
+ #~ msgctxt "(Admin)"
4207
+ #~ msgid "Advanced Integration"
4208
+ #~ msgstr "Integración avanzada"
4209
+
4210
+ #~ msgctxt "(Admin)"
4211
+ #~ msgid "Sign up for free here"
4212
+ #~ msgstr "Regístrate gratis aquí"
4213
+
4214
+ #~ msgctxt "(Admin)"
4215
+ #~ msgid "Click Here"
4216
+ #~ msgstr "Haga clic aquí"
4217
+
4218
+ #~ msgid "Previous Results"
4219
+ #~ msgstr "Resultados anteriores"
4220
+
4221
+ #~ msgid "Current Results"
4222
+ #~ msgstr "Resultados actuales"
4223
+
4224
+ #~ msgid "Name"
4225
+ #~ msgstr "Nombre"
4226
+
4227
+ #~ msgid "Path"
4228
+ #~ msgstr "CheminCamino"
4229
+
4230
+ #~ msgid "Workstation"
4231
+ #~ msgstr "Puesto de trabajo"
4232
+
4233
+ #~ msgid "Last Scan"
4234
+ #~ msgstr "Último vistazo"
4235
+
4236
+ #~ msgid "No ClassiDocs data found!"
4237
+ #~ msgstr "No se encontraron datos de ClassiDocs!"
4238
+
4239
+ #~ msgid "Cookies used on the website!"
4240
+ #~ msgstr "Cookies utilizadas en el sitio web!"
4241
+
4242
+ #~ msgctxt "(Admin)"
4243
+ #~ msgid ""
4244
+ #~ "In addition to DSAR tracking and management, Privacy Manager adds the "
4245
+ #~ "following features to your data protection compliance resources:"
4246
+ #~ msgstr ""
4247
+ #~ "Además de la gestión y el seguimiento de DSAR, Privacy Manager agrega las "
4248
+ #~ "siguientes funciones a sus recursos de cumplimiento de protección de "
4249
+ #~ "datos:"
4250
+
4251
+ #~ msgctxt "(Admin)"
4252
+ #~ msgid "Log and store ICO breach notifications"
4253
+ #~ msgstr "Registrar y almacenar notificaciones de incumplimiento de ICO"
4254
+
4255
+ #~ msgctxt "(Admin)"
4256
+ #~ msgid "Keeps full record of all requests, ticketed and timeline"
4257
+ #~ msgstr ""
4258
+ #~ "Mantiene un registro completo de todas las solicitudes, entradas y "
4259
+ #~ "cronograma."
4260
+
4261
+ #~ msgctxt "(Admin)"
4262
+ #~ msgid "Gap analysis and breach notifications"
4263
+ #~ msgstr "Análisis de brechas y notificaciones de incumplimiento."
4264
+
4265
+ #~ msgctxt "(Admin)"
4266
+ #~ msgid "In depth activity log with all GDPR, CCPA, etc actions evidenced"
4267
+ #~ msgstr ""
4268
+ #~ "Registro de actividad en profundidad con todas las acciones GDPR, CCPA, "
4269
+ #~ "etc. evidenciadas"
4270
+
4271
+ #~ msgctxt "(Admin)"
4272
+ #~ msgid "Highlights areas of concern and where you need to focus"
4273
+ #~ msgstr "Resalta las áreas de preocupación y donde necesita enfocarse"
4274
+
4275
+ #~ msgctxt "(Admin)"
4276
+ #~ msgid ""
4277
+ #~ "eLearning platform with access for all staff to ensure privacy regulation "
4278
+ #~ "compliance and obligations"
4279
+ #~ msgstr ""
4280
+ #~ "Plataforma de aprendizaje en línea con acceso para todo el personal para "
4281
+ #~ "garantizar el cumplimiento de las normas de privacidad y las obligaciones."
4282
+
4283
+ #~ msgctxt "(Admin)"
4284
+ #~ msgid "Tracks who accesses the system, when and why"
4285
+ #~ msgstr "Rastrea quién accede al sistema, cuándo y por qué."
4286
+
4287
+ #~ msgctxt "(Admin)"
4288
+ #~ msgid ""
4289
+ #~ "Our system enables your business to demonstrate its obligations in "
4290
+ #~ "protecting your customer data, show understanding of your business "
4291
+ #~ "activities and deliver eLearning and online tests to employees, ensuring "
4292
+ #~ "everyone in your company understands your privacy compliance rules and "
4293
+ #~ "best practices to operate."
4294
+ #~ msgstr ""
4295
+ #~ "Nuestro sistema le permite a su empresa demostrar sus obligaciones de "
4296
+ #~ "proteger los datos de sus clientes, demostrar que comprende sus "
4297
+ #~ "actividades comerciales y entregarles a sus empleados prácticas de "
4298
+ #~ "aprendizaje en línea y en línea, asegurando que todos en su empresa "
4299
+ #~ "comprendan sus reglas de cumplimiento de la privacidad y las mejores "
4300
+ #~ "prácticas para operar."
4301
+
4302
+ #~ msgctxt "(Admin)"
4303
+ #~ msgid "Enable WooCommerce data on GDPR tool"
4304
+ #~ msgstr "Habilitar datos de WooCommerce en la herramienta GDPR"
languages/gdpr-framework-et.mo CHANGED
Binary file
languages/gdpr-framework-et.po CHANGED
@@ -7,43 +7,60 @@ msgid ""
7
  msgstr ""
8
  "Project-Id-Version: The GDPR Framework 1.0\n"
9
  "Report-Msgid-Bugs-To: gdpr@codelight.eu\n"
10
- "POT-Creation-Date: 2018-05-22 15:47+0300\n"
11
- "PO-Revision-Date: 2019-09-19 12:40+0530\n"
12
  "Last-Translator: Codelight <team@codelight.eu>\n"
13
  "Language-Team: \n"
14
- "Language: et_EE\n"
15
  "MIME-Version: 1.0\n"
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
18
- "X-Generator: Poedit 1.5.7\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
 
21
- #: gdpr-framework.php:28
 
22
  msgctxt "(Admin)"
23
  msgid "WordPress GDPR &rsaquo; Error"
24
- msgstr ""
25
 
26
- #: gdpr-framework.php:38
 
 
 
27
  msgctxt "(Admin)"
28
  msgid "You must be using PHP 5.6.0 or greater."
29
  msgstr "Peate kasutama PHP 5.6.0 või uuemat versiooni."
30
 
31
- #: gdpr-framework.php:39
32
  msgctxt "(Admin)"
33
  msgid "Invalid PHP version"
34
- msgstr "Kehtetu PHP versioon"
35
 
36
- #: gdpr-framework.php:48
 
 
 
37
  msgctxt "(Admin)"
38
  msgid "You must be using WordPress 4.3.0 or greater."
39
  msgstr "Peate kasutama WordPressi versiooni 4.3.0 või uuemat versiooni."
40
 
41
- #: gdpr-framework.php:49
42
  msgctxt "(Admin)"
43
  msgid "Invalid WordPress version"
44
- msgstr "Kehtetu WordPressi versioon"
 
 
 
 
 
45
 
46
- #: gdpr-framework.php:61
 
 
 
 
 
47
  msgctxt "(Admin)"
48
  msgid ""
49
  "You appear to be running a development version of GDPR. You must run "
@@ -52,314 +69,920 @@ msgstr ""
52
  "Tundub, et teil on GDPR-i arendusversioon. Peate käivitama pluginate "
53
  "kataloogi <code> composer install </ code>."
54
 
55
- #: gdpr-framework.php:66
 
56
  msgctxt "(Admin)"
57
  msgid "Autoloader not found."
58
- msgstr ""
59
 
60
- #: gdpr-framework.php:86 src/Updater/Updater.php:40
61
- msgctxt "(Admin)"
62
- msgid "Anonymous"
 
63
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64
 
65
- #: src/Admin/AdminTab.php:115
 
66
  msgctxt "(Admin)"
67
  msgid "Save"
68
- msgstr ""
69
 
70
- #: src/Admin/AdminTab.php:151
 
71
  msgctxt "(Admin)"
72
  msgid "Policy generated!"
73
- msgstr ""
74
 
75
  #: src/Admin/AdminTabGeneral.php:11
76
  msgctxt "(Admin)"
77
  msgid "General"
78
- msgstr ""
79
 
80
- #: src/Admin/AdminTabGeneral.php:38
81
  msgctxt "(Admin)"
82
  msgid "General Settings"
83
- msgstr ""
84
 
85
- #: src/Admin/AdminTabGeneral.php:43
 
 
86
  msgctxt "(Admin)"
87
  msgid "Enable Privacy Tools"
88
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89
 
90
- #: src/Admin/AdminTabGeneral.php:53
91
  msgctxt "(Admin)"
92
  msgid "Pages"
93
- msgstr ""
94
 
95
- #: src/Admin/AdminTabGeneral.php:58 src/Admin/WordpressAdmin.php:151
 
 
96
  msgctxt "(Admin)"
97
  msgid "Privacy Tools Page"
98
- msgstr ""
 
 
 
 
 
 
 
 
99
 
100
- #: src/Admin/AdminTabGeneral.php:65 src/Admin/WordpressAdmin.php:147
 
 
101
  msgctxt "(Admin)"
102
  msgid "Privacy Policy Page"
103
- msgstr ""
 
 
 
 
 
 
 
 
104
 
105
- #: src/Admin/AdminTabGeneral.php:72
106
  msgctxt "(Admin)"
107
  msgid "Terms & Conditions Page"
108
- msgstr ""
 
 
 
 
 
 
109
 
110
- #: src/Admin/AdminTabGeneral.php:82
 
111
  msgctxt "(Admin)"
112
  msgid "View & Export Data"
113
- msgstr ""
114
 
115
- #: src/Admin/AdminTabGeneral.php:87
 
 
 
116
  msgctxt "(Admin)"
117
  msgid "Export action"
118
- msgstr ""
119
 
120
- #: src/Admin/AdminTabGeneral.php:94 src/Admin/AdminTabGeneral.php:133
 
 
 
121
  msgctxt "(Admin)"
122
  msgid "Email to notify"
123
- msgstr ""
124
 
125
- #: src/Admin/AdminTabGeneral.php:105
 
 
 
126
  msgctxt "(Admin)"
127
  msgid "Delete & Anonymize Data"
128
- msgstr ""
129
 
130
- #: src/Admin/AdminTabGeneral.php:110
 
 
 
131
  msgctxt "(Admin)"
132
  msgid "Delete action"
133
- msgstr ""
134
 
135
- #: src/Admin/AdminTabGeneral.php:117
 
 
 
136
  msgctxt "(Admin)"
137
  msgid "Delete or reassign content?"
138
- msgstr ""
139
 
140
- #: src/Admin/AdminTabGeneral.php:125
 
 
 
141
  msgctxt "(Admin)"
142
  msgid "Reassign content to"
143
- msgstr ""
144
 
145
- #: src/Admin/AdminTabGeneral.php:145
146
  msgctxt "(Admin)"
147
  msgid "Styling"
148
- msgstr ""
149
 
150
- #: src/Admin/AdminTabGeneral.php:150
 
 
 
151
  msgctxt "(Admin)"
152
  msgid "Enable basic styling on Privacy Tools page"
153
- msgstr ""
154
 
155
- #: src/Admin/AdminTabGeneral.php:162
 
 
 
156
  msgctxt "(Admin)"
157
  msgid "Compatibility"
158
- msgstr ""
159
 
160
- #: src/Admin/AdminTabGeneral.php:167
 
 
 
161
  msgctxt "(Admin)"
162
  msgid "Enable automatic theme compatibility"
163
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
164
 
165
- #: src/Admin/AdminTabGeneral.php:184 src/Admin/AdminTabGeneral.php:200
166
- #: src/Admin/AdminTabGeneral.php:213 src/Admin/AdminTabGeneral.php:252
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
167
  #: views/installer/steps/configuration-settings.php:62
168
  msgctxt "(Admin)"
169
  msgid "&mdash; Select &mdash;"
170
- msgstr ""
171
 
172
- #: src/Admin/WordpressAdmin.php:65
 
173
  msgctxt "(Admin)"
174
  msgid "Privacy & GDPR Settings"
175
- msgstr ""
176
 
177
- #: src/Admin/WordpressAdmin.php:66
 
178
  msgctxt "(Admin)"
179
- msgid "Privacy"
180
- msgstr ""
 
 
 
 
 
 
 
 
 
181
 
182
  #: src/Components/Consent/AdminTabConsent.php:30
183
- #: src/Components/Consent/AdminTabConsent.php:49
184
  msgctxt "(Admin)"
185
  msgid "Consent"
186
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
187
 
188
- #: src/Components/Consent/AdminTabConsent.php:157
 
189
  msgctxt "(Admin)"
190
  msgid "Consent slug is a required field!"
191
- msgstr ""
192
 
193
- #: src/Components/Consent/AdminTabConsent.php:162
 
194
  msgctxt "(Admin)"
195
  msgid ""
196
  "You may only use alphanumeric characters, dash and underscore in the consent "
197
  "slug field."
198
  msgstr ""
 
 
199
 
200
- #: src/Components/Consent/AdminTabConsent.php:167
 
201
  msgctxt "(Admin)"
202
  msgid "Consent title is a required field!"
203
- msgstr ""
204
 
205
- #: src/Components/Consent/AdminTabConsent.php:179
 
206
  msgid ""
207
  "To use this website, you accepted our Privacy Policy. If you wish to "
208
  "withdraw your acceptance, please use the \"Delete my data\" button below."
209
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
210
 
211
- #: src/Components/Consent/ConsentManager.php:46
212
- #: views/modules/contact-form-7/content-privacy.php:2
213
- #: views/modules/wordpress-comments/terms-checkbox.php:14
214
- #: views/modules/wordpress-user/registration-terms-checkbox.php:15
215
  #, php-format
216
  msgid "I accept the %sPrivacy Policy%s"
217
  msgstr "Nõustun %sprivaatsustingimustega%s"
218
 
219
- #: src/Components/Consent/ConsentManager.php:50
220
- #: src/Components/Consent/ConsentManager.php:69
 
 
 
 
 
 
221
  msgctxt "(Admin)"
222
  msgid ""
223
  "This consent is not visible by default. If someone wishes to withdraw it, "
224
  "they should simply request to delete all their data."
225
  msgstr ""
 
 
 
226
 
227
- #: src/Components/Consent/ConsentManager.php:65
228
  #, php-format
229
  msgid "I accept the %sTerms & Conditions%s"
230
  msgstr "Nõustun %stingimustega%s"
231
 
232
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:19
233
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:61
234
- #: views/admin/privacy-policy/generated.php:1 views/installer/header.php:41
 
235
  msgctxt "(Admin)"
236
- msgid "Privacy Policy"
237
- msgstr ""
238
 
239
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:70
 
 
 
 
 
 
240
  msgctxt "(Admin)"
241
- msgid "Company information"
 
 
242
  msgstr ""
 
 
 
 
 
 
 
 
 
 
243
 
244
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:75
245
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:209
 
 
246
  msgctxt "(Admin)"
247
- msgid "Company Name"
248
- msgstr ""
249
 
250
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:82
 
 
 
251
  msgctxt "(Admin)"
252
- msgid "Company Email"
253
- msgstr ""
254
 
255
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:89
 
 
 
 
256
  msgctxt "(Admin)"
257
- msgid "Company Location"
258
- msgstr ""
259
 
260
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:105
261
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:245
 
 
 
262
  msgctxt "(Admin)"
263
- msgid "Representative Contact Name"
264
- msgstr ""
265
 
266
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:112
267
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:252
 
 
268
  msgctxt "(Admin)"
269
- msgid "Representative Contact Email"
270
- msgstr ""
271
 
272
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:119
273
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:259
 
 
274
  msgctxt "(Admin)"
275
- msgid "Representative Contact Phone"
276
- msgstr ""
277
 
278
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:135
 
 
 
279
  msgctxt "(Admin)"
280
- msgid "Data Protection Authority"
281
- msgstr ""
282
 
283
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:141
284
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:286
 
 
285
  msgctxt "(Admin)"
286
- msgid "Data Protection Authority Website"
287
- msgstr ""
288
 
289
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:148
290
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:293
 
 
291
  msgctxt "(Admin)"
292
- msgid "Data Protection Authority Email"
293
- msgstr ""
294
 
295
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:155
296
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:300
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
297
  msgctxt "(Admin)"
298
  msgid "Data Protection Authority Phone"
299
- msgstr ""
300
 
301
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:165
302
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:175
 
 
 
303
  msgctxt "(Admin)"
304
  msgid "Data Protection Officer"
305
- msgstr ""
306
 
307
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:168
 
 
 
308
  msgctxt "(Admin)"
309
  msgid "Knowledge base: Do I need to appoint a Data Protection Officer?"
310
- msgstr ""
311
 
312
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:182
 
 
 
313
  msgctxt "(Admin)"
314
  msgid "Data Protection Officer Name"
315
- msgstr ""
316
 
317
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:190
 
 
 
318
  msgctxt "(Admin)"
319
  msgid "Data Protection Officer Email"
320
- msgstr ""
 
 
 
 
 
 
 
 
 
321
 
322
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:216
323
  msgctxt "(Admin)"
324
  msgid "Contact Email"
325
- msgstr ""
326
 
327
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:235
 
328
  msgctxt "(Admin)"
329
  msgid "Representative Contact"
330
- msgstr ""
331
 
332
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:238
 
333
  msgctxt "(Admin)"
334
  msgid "Knowledge base: Do I need to appoint an EU-based representative?"
335
- msgstr ""
 
 
 
 
 
 
336
 
337
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:317
338
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:324
 
339
  msgctxt "(Admin)"
340
  msgid "DPO Name"
341
- msgstr ""
 
 
 
 
 
 
 
 
342
 
343
- #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:420
 
344
  msgctxt "(Admin)"
345
  msgid "Save & Generate Policy"
346
- msgstr ""
347
 
348
- #: src/Components/PrivacyPolicy/PrivacyPolicy.php:82
349
- #: src/Installer/Installer.php:271 src/Installer/Steps/PolicySettings.php:199
350
  #: views/themes/storefront/footer.php:3
351
  #: views/themes/twentyseventeen/footer.php:3
352
  #: views/themes/twentysixteen/footer.php:4
353
  msgid "Privacy Policy"
354
  msgstr "Privaatsustingimused"
355
 
356
- #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
357
  msgid "This page is currently disabled."
358
  msgstr "See leht on hetkel välja lülitatud."
359
 
360
- #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:35
361
- #: src/Installer/Installer.php:279
362
- #: src/Installer/Steps/ConfigurationPages.php:55
 
 
 
 
 
 
363
  #: views/themes/storefront/footer.php:7
364
  #: views/themes/twentyseventeen/footer.php:7
365
  #: views/themes/twentysixteen/footer.php:9
@@ -370,13 +993,7 @@ msgstr "Privaatsustööriistad"
370
  #: src/Components/Support/AdminTabSupport.php:20
371
  msgctxt "(Admin)"
372
  msgid "Support"
373
- msgstr ""
374
-
375
- #: src/Components/WordpressComments/WordpressComments.php:90
376
- #, php-format
377
- msgid "%sERROR:%s You need to accept the privacy policy to post a comment."
378
- msgstr ""
379
- "%sVIGA%s Kommentaari postitamiseks peate nõustuma privaatsuseeskirjadega."
380
 
381
  #: src/Components/WordpressUser/Controllers/DashboardDataPageController.php:54
382
  #: views/privacy-tools/notices.php:19
@@ -388,7 +1005,7 @@ msgstr "Saime teie taotluse kätte ning vastame 30 päeva jooksul."
388
  msgid "Consent withdrawn."
389
  msgstr "Nõusolek tagasi võetud."
390
 
391
- #: src/Components/WordpressUser/RegistrationForm.php:42
392
  msgid "<strong>ERROR</strong>: You must accept the terms and conditions."
393
  msgstr "<strong>VIGA</strong>: Tingimustega nõustumine on kohustuslik."
394
 
@@ -397,13 +1014,14 @@ msgstr "<strong>VIGA</strong>: Tingimustega nõustumine on kohustuslik."
397
  #: views/modules/wordpress-user/dashboard/data-page/header.php:2
398
  msgctxt "(Admin)"
399
  msgid "Privacy Tools"
400
- msgstr ""
401
 
402
  #: src/DataSubject/AdminTabDataSubject.php:27
403
  #: src/DataSubject/AdminTabDataSubject.php:41
 
404
  msgctxt "(Admin)"
405
  msgid "Data Subjects"
406
- msgstr ""
407
 
408
  #: src/DataSubject/DataRepository.php:143
409
  msgid "Data exported"
@@ -421,1485 +1039,3349 @@ msgstr "Andmed kustutatud"
421
  msgid "Data removal request"
422
  msgstr "Andmete kustutamise taotlus"
423
 
424
- #: src/DataSubject/DataSubjectIdentificator.php:65
425
- #: src/DataSubject/DataSubjectIdentificator.php:82
426
  msgid "Your personal data on"
427
  msgstr "Sinu isiklikud andmed lehel"
428
 
429
  #: src/Helpers.php:27
 
430
  msgctxt "(Admin)"
431
  msgid "Austria"
432
- msgstr ""
433
 
434
  #: src/Helpers.php:28
435
  msgctxt "(Admin)"
436
  msgid "Belgium"
437
- msgstr ""
438
 
439
  #: src/Helpers.php:29
440
  msgctxt "(Admin)"
441
  msgid "Bulgaria"
442
- msgstr ""
443
 
444
  #: src/Helpers.php:30
445
  msgctxt "(Admin)"
446
  msgid "Croatia"
447
- msgstr ""
448
 
449
  #: src/Helpers.php:31
450
  msgctxt "(Admin)"
451
  msgid "Cyprus"
452
- msgstr ""
453
 
454
  #: src/Helpers.php:32
455
  msgctxt "(Admin)"
456
  msgid "Czech Republic"
457
- msgstr ""
458
 
459
  #: src/Helpers.php:33
460
  msgctxt "(Admin)"
461
  msgid "Denmark"
462
- msgstr ""
463
 
464
  #: src/Helpers.php:34
465
  msgctxt "(Admin)"
466
  msgid "Estonia"
467
- msgstr ""
468
 
469
  #: src/Helpers.php:35
470
  msgctxt "(Admin)"
471
  msgid "Finland"
472
- msgstr ""
473
 
474
  #: src/Helpers.php:36
475
  msgctxt "(Admin)"
476
  msgid "France"
477
- msgstr ""
478
 
479
  #: src/Helpers.php:37
480
  msgctxt "(Admin)"
481
  msgid "Germany"
482
- msgstr ""
483
 
484
  #: src/Helpers.php:38
485
  msgctxt "(Admin)"
486
  msgid "Greece"
487
- msgstr ""
488
 
489
  #: src/Helpers.php:39
 
490
  msgctxt "(Admin)"
491
  msgid "Hungary"
492
- msgstr ""
493
 
494
  #: src/Helpers.php:40
495
  msgctxt "(Admin)"
496
  msgid "Ireland"
497
- msgstr ""
498
 
499
  #: src/Helpers.php:41
500
  msgctxt "(Admin)"
501
  msgid "Italy"
502
- msgstr ""
503
 
504
  #: src/Helpers.php:42
505
  msgctxt "(Admin)"
506
  msgid "Latvia"
507
- msgstr ""
508
 
509
  #: src/Helpers.php:43
510
  msgctxt "(Admin)"
511
  msgid "Lithuania"
512
- msgstr ""
513
 
514
  #: src/Helpers.php:44
515
  msgctxt "(Admin)"
516
  msgid "Luxembourg"
517
- msgstr ""
518
 
519
  #: src/Helpers.php:45
 
520
  msgctxt "(Admin)"
521
  msgid "Malta"
522
- msgstr ""
523
 
524
  #: src/Helpers.php:46
525
  msgctxt "(Admin)"
526
  msgid "Netherlands"
527
- msgstr ""
528
 
529
  #: src/Helpers.php:47
530
  msgctxt "(Admin)"
531
  msgid "Poland"
532
- msgstr ""
533
 
534
  #: src/Helpers.php:48
 
535
  msgctxt "(Admin)"
536
  msgid "Portugal"
537
- msgstr ""
538
 
539
  #: src/Helpers.php:49
540
  msgctxt "(Admin)"
541
  msgid "Romania"
542
- msgstr ""
543
 
544
  #: src/Helpers.php:50
 
545
  msgctxt "(Admin)"
546
  msgid "Slovakia"
547
- msgstr ""
548
 
549
  #: src/Helpers.php:51
550
  msgctxt "(Admin)"
551
  msgid "Slovenia"
552
- msgstr ""
553
 
554
  #: src/Helpers.php:52
555
  msgctxt "(Admin)"
556
  msgid "Spain"
557
- msgstr ""
558
 
559
  #: src/Helpers.php:53
560
  msgctxt "(Admin)"
561
  msgid "Sweden"
562
- msgstr ""
563
 
564
  #: src/Helpers.php:54
565
  msgctxt "(Admin)"
566
  msgid "United Kingdom"
567
- msgstr ""
568
 
569
- #: src/Helpers.php:69
 
570
  msgctxt "(Admin)"
571
- msgid "Iceland"
572
- msgstr ""
573
 
574
- #: src/Helpers.php:70
 
575
  msgctxt "(Admin)"
576
- msgid "Norway"
577
- msgstr ""
578
 
579
- #: src/Helpers.php:71
580
  msgctxt "(Admin)"
581
- msgid "Liechtenstein"
582
- msgstr ""
583
 
584
- #: src/Helpers.php:72
585
  msgctxt "(Admin)"
586
- msgid "Switzerland"
587
- msgstr ""
588
 
589
- #: src/Helpers.php:73
 
590
  msgctxt "(Admin)"
591
- msgid "United States"
592
- msgstr ""
593
 
594
- #: src/Helpers.php:74
 
595
  msgctxt "(Admin)"
596
- msgid "Rest of the world"
597
- msgstr "Ülejäänud maailm"
598
 
599
- #: src/Helpers.php:145
600
- msgid "An error has occurred. Please contact the site administrator."
601
- msgstr "Süsteemis tekkis viga. Palun võtke ühendust lehe haldajaga."
 
 
602
 
603
- #: src/Installer/Installer.php:135
 
604
  msgctxt "(Admin)"
605
- msgid "Setup Wizard"
606
- msgstr "Häälestusviisard"
607
 
608
- #: src/Installer/Steps/ConfigurationPages.php:23
609
- #: src/Installer/Steps/PolicySettings.php:23
610
- #: src/Installer/Steps/PolicySettings.php:48
611
  msgctxt "(Admin)"
612
- msgid "&mdash; Create a new page &mdash;"
613
- msgstr "&mdash; Uue lehe loomine &mdash;"
614
 
615
- #: src/Installer/Steps/PolicySettings.php:38
 
616
  msgctxt "(Admin)"
617
- msgid ""
618
- "We have automatically selected your WooCommerce Terms & Conditions page."
619
- msgstr ""
620
- "Me oleme automaatselt valinud oma WooCommerce'i nõuete ja tingimuste lehe."
621
 
622
- #: src/Modules/ContactForm7/ContactForm7.php:35
623
  msgctxt "(Admin)"
624
- msgid "gdpr terms txt"
625
- msgstr "gdpr tingimused txt"
626
 
627
- #: src/Router.php:80 src/Router.php:92 src/Router.php:125 src/Router.php:141
628
- #, php-format
629
- msgid "Nonce error for action \"%s\". Please go back and try again!"
630
- msgstr "VIGA \"%s\". Palun minge tagasi ja proovige uuesti!"
631
 
632
- #: src/Router.php:149
 
633
  msgctxt "(Admin)"
634
- msgid "You do not have the required permissions to perform this action!"
635
- msgstr "Teil ei ole selleks vajalikke õigusi!"
636
 
637
- #: views/admin/consent.php:3
638
  msgctxt "(Admin)"
639
- msgid "Default consent types"
640
- msgstr "Vaikimisi nõusoleku tüübid"
641
 
642
- #: views/admin/consent.php:4
643
  msgctxt "(Admin)"
644
- msgid ""
645
- "These are the consent types that have been automatically registered by the "
646
- "framework or a plugin."
647
- msgstr ""
648
- "Need on nõusoleku tüübid, mida raamistik või pistikprogramm on automaatselt "
649
- "registreerinud."
650
 
651
- #: views/admin/consent.php:7 views/admin/consent.php:52
 
652
  msgctxt "(Admin)"
653
- msgid "Slug"
654
- msgstr "Slug"
655
 
656
- #: views/admin/consent.php:8 views/admin/consent.php:38
657
- #: views/admin/consent.php:60
658
  msgctxt "(Admin)"
659
- msgid "Title"
660
- msgstr "Pealkiri"
661
 
662
- #: views/admin/consent.php:9 views/admin/consent.php:41
663
- #: views/admin/consent.php:63
664
  msgctxt "(Admin)"
665
- msgid "Description"
666
- msgstr "Kirjeldus"
667
 
668
- #: views/admin/consent.php:10
 
669
  msgctxt "(Admin)"
670
- msgid "Visibility"
671
- msgstr "Nähtavus"
672
 
673
- #: views/admin/consent.php:18
 
674
  msgctxt "(Admin)"
675
- msgid "Visible"
676
- msgstr "Nähtav"
677
 
678
- #: views/admin/consent.php:20
 
679
  msgctxt "(Admin)"
680
- msgid "Hidden"
681
- msgstr "Varjatud"
682
 
683
- #: views/admin/consent.php:29
 
684
  msgctxt "(Admin)"
685
- msgid "Custom consent types"
686
- msgstr "Kohandatud nõusoleku tüübid"
687
 
688
- #: views/admin/consent.php:30
 
689
  msgctxt "(Admin)"
690
- msgid ""
691
- "Here you can add custom consent types to track. They will not be used "
692
- "anywhere by default - you will need to build an integration for each of them."
693
- msgstr ""
694
- "Siin saate jälgida kohandatud nõusoleku tüüpe. Neid ei kasutata vaikimisi "
695
- "igatahes - igaüks neist peab integreerima."
696
 
697
- #: views/admin/consent.php:35
 
698
  msgctxt "(Admin)"
699
- msgid "Machine-readable slug"
700
- msgstr "Masinloetav liblikas"
701
 
702
- #: views/admin/consent.php:44 views/admin/consent.php:68
 
703
  msgctxt "(Admin)"
704
- msgid "Visible?"
705
- msgstr "Nähtav?"
706
 
707
- #: views/admin/consent.php:72
 
708
  msgctxt "(Admin)"
709
- msgid "Remove"
710
- msgstr "Eemalda"
711
 
712
- #: views/admin/consent.php:93
713
  msgctxt "(Admin)"
714
- msgid "Additional info"
715
- msgstr "Lisainfo"
716
 
717
- #: views/admin/consent.php:95
 
718
  msgctxt "(Admin)"
719
- msgid ""
720
- "This text will be displayed to your data subjects on the Privacy Tools page."
721
- msgstr ""
722
- "See tekst kuvatakse teie andmesubjektidele privaatsuse tööriistade lehel."
723
 
724
- #: views/admin/data-subjects/search-form.php:2
725
  msgctxt "(Admin)"
726
- msgid ""
727
- "On this page, you can find which data subjects personal data you are storing "
728
- "and download, export or delete it."
729
- msgstr ""
730
- "Sellel lehel saate teada, millised andmesubjektide isikuandmed salvestatakse "
731
- "ja laadite alla, eksportige või kustutate."
732
 
733
- #: views/admin/data-subjects/search-form.php:10
 
734
  msgctxt "(Admin)"
735
- msgid "Find data subject by email"
736
- msgstr "Andme subjekti leiate e-posti teel"
737
 
738
- #: views/admin/data-subjects/search-form.php:11
 
739
  msgctxt "(Admin)"
740
- msgid "Email address"
741
- msgstr "E-posti aadress"
742
 
743
- #: views/admin/data-subjects/search-form.php:16
 
744
  msgctxt "(Admin)"
745
- msgid "Search"
746
- msgstr "Otsing"
747
 
748
- #: views/admin/data-subjects/search-results.php:7
 
749
  msgctxt "(Admin)"
750
- msgid "Username"
751
- msgstr "Kasutajanimi"
752
 
753
- #: views/admin/data-subjects/search-results.php:12
 
754
  msgctxt "(Admin)"
755
- msgid "is not a registered user."
756
- msgstr "ei ole registreeritud kasutaja."
757
 
758
- #: views/admin/data-subjects/search-results.php:16
759
  msgctxt "(Admin)"
760
- msgid "Download data (html)"
761
- msgstr "Andmete allalaadimine (html)"
762
 
763
- #: views/admin/data-subjects/search-results.php:17
 
764
  msgctxt "(Admin)"
765
- msgid "Export data (json)"
766
- msgstr "Ekspordi andmed (json)"
767
 
768
- #: views/admin/data-subjects/search-results.php:21
 
769
  msgctxt "(Admin)"
770
- msgid ""
771
- "This user has admin capabilities. Deleting data via this interface is "
772
- "disabled."
773
- msgstr ""
774
- "Sellel kasutajal on administraatori võimalused. Selle liidese kaudu andmete "
775
- "kustutamine on keelatud."
776
 
777
- #: views/admin/data-subjects/search-results.php:24
 
778
  msgctxt "(Admin)"
779
- msgid "Anonymize data"
780
- msgstr "Anonüümsed andmed"
781
 
782
- #: views/admin/data-subjects/search-results.php:25
 
783
  msgctxt "(Admin)"
784
- msgid "Delete data"
785
- msgstr "Andmete kustutamine"
786
 
787
- #: views/admin/data-subjects/search-results.php:29
 
788
  msgctxt "(Admin)"
789
- msgid "No data found!"
790
- msgstr "Andmeid ei leitud!"
791
 
792
- #: views/admin/general/delete-action-email.php:5
793
- #: views/admin/general/export-action-email.php:5
794
- #: views/installer/steps/configuration-settings.php:29
795
- #: views/installer/steps/configuration-settings.php:79
796
- msgid "Email address"
797
- msgstr "E-maili aadress"
798
 
799
- #: views/admin/general/delete-action-reassign.php:3
800
- #: views/installer/steps/configuration-settings.php:50
801
  msgctxt "(Admin)"
802
- msgid "Delete content"
803
- msgstr "Sisu kustutamine"
804
 
805
- #: views/admin/general/delete-action-reassign.php:6
806
- #: views/installer/steps/configuration-settings.php:53
807
  msgctxt "(Admin)"
808
- msgid "Reassign content to a user"
809
- msgstr "Kasutajale sisu teisaldamine"
810
 
811
- #: views/admin/general/delete-action-reassign.php:10
812
  msgctxt "(Admin)"
813
- msgid ""
814
- "If the user has submitted any content on your site, should it be deleted or "
815
- "reassigned to another user?"
816
- msgstr ""
817
- "Kui kasutaja on oma saidil oma sisu esitanud, kas see tuleb kustutada või "
818
- "teisele kasutajale ümber anda?"
819
 
820
- #: views/admin/general/description-data-page.php:2
821
  msgctxt "(Admin)"
822
- msgid ""
823
- "Select the page where users can go to control their data. This page must "
824
- "contain the [gdpr_privacy_tools] shortcode."
825
- msgstr ""
826
- "Valige leht, kus kasutajad saavad oma andmeid juhtida. Sellel lehel peab "
827
- "olema [gdpr_privacy_tools] lühinumber."
828
 
829
- #: views/admin/general/description-delete-action.php:2
 
830
  msgctxt "(Admin)"
831
- msgid "What should happen if a data subject requests deleting their data."
832
- msgstr "Mis peaks juhtuma, kui andmesubjekt taotleb nende andmete kustutamist."
833
 
834
- #: views/admin/general/description-export-action.php:2
835
  msgctxt "(Admin)"
836
- msgid ""
837
- "What should happen if a data subject requests viewing or exporting their "
838
- "data."
839
- msgstr ""
840
- "Mis peaks juhtuma, kui andmesubjekt taotleb andmete vaatamist või "
841
- "eksportimist?"
842
 
843
- #: views/admin/general/description-terms-page.php:2
 
844
  msgctxt "(Admin)"
845
- msgid "Optional. Select the page which contains your Terms & Conditions"
846
- msgstr "Valikuline. Valige leht, mis sisaldab teie kasutustingimusi"
847
 
848
- #: views/admin/general/enable.php:9
 
849
  msgctxt "(Admin)"
850
- msgid "Enable the view, export and forget functionality for users and visitors"
851
- msgstr "Kasutajate ja külastajate vaate lubamine, eksport ja unustamine"
852
 
853
- #: views/admin/general/enable.php:12
 
854
  msgctxt "(Admin)"
855
- msgid ""
856
- "Enable the Privacy Tools page on front-end and dashboard. This allows "
857
- "visitors to request viewing and deleting their personal data and withdraw "
858
- "consents."
859
- msgstr ""
860
- "Luba privaatsusriistade leht esiotsa ja juhtpaneelil. See võimaldab "
861
- "külastajatel taotleda nende isikuandmete vaatamist ja kustutamist ning "
862
- "nõusolekute tagasivõtmist."
863
 
864
- #: views/admin/general/stylesheet.php:9
 
865
  msgctxt "(Admin)"
866
- msgid "Enable basic styling for Privacy Tools page."
867
- msgstr "Luba Privaatsus Tööriistade lehe põhiline stiil."
868
 
869
- #: views/admin/general/theme-compatibility.php:9
870
- #: views/installer/steps/integrations.php:21
871
  msgctxt "(Admin)"
872
- msgid ""
873
- "Automatically add Privacy Policy and Privacy Tools links to your site footer."
874
- msgstr ""
875
- "Lisage automaatselt privaatsuse ja privaatsusriistade linke saidi jalusesse."
876
 
877
- #: views/admin/notices/header.php:4 views/admin/settings-page.php:3
878
- #: views/installer/header.php:23
879
  msgctxt "(Admin)"
880
- msgid "The GDPR Framework"
881
- msgstr "GDPR raamistik"
882
 
883
- #: views/admin/notices/helper-autoinstall.php:2
 
884
  msgctxt "(Admin)"
885
- msgid ""
886
- "A Privacy Policy page has been created, but it is empty. You can generate a "
887
- "policy template on this page."
888
- msgstr ""
889
- "Privaatsuseeskirjade leht on loodud, kuid see on tühi. Saate sellel lehel "
890
- "luua poliitikamalli."
891
 
892
- #: views/admin/notices/helper-policy.php:2
 
893
  msgctxt "(Admin)"
894
- msgid ""
895
- "Heads up - your Privacy Policy still requires some attention. Find the "
896
- "places marked with [TODO] and replace them with real content!"
897
- msgstr ""
898
- "Heads up - teie privaatsuspoliitika nõuab ikkagi mõnda tähelepanu. Leidke "
899
- "[TODO] tähistatud kohad ja asendage need reaalse sisuga!"
900
 
901
- #: views/admin/notices/helper-tools.php:2
 
902
  msgctxt "(Admin)"
903
- msgid ""
904
- "The contents of this page should contain the [gdpr_privacy_tools] shortcode."
905
- msgstr "Selle lehe sisu peab sisaldama [gdpr_privacy_tools] lühinumbrit."
906
 
907
- #: views/admin/privacy-policy/description-policy-page.php:2
 
908
  msgctxt "(Admin)"
909
- msgid "Select the page which will contain your Privacy Policy"
910
- msgstr "Valige leht, mis sisaldab teie privaatsuseeskirju"
911
 
912
- #: views/admin/privacy-policy/generated.php:3
913
  msgctxt "(Admin)"
914
- msgid "Your Privacy Policy has been generated."
915
- msgstr "Teie privaatsuspoliitikat on loodud."
916
 
917
- #: views/admin/privacy-policy/generated.php:20
 
918
  msgctxt "(Admin)"
919
- msgid "&laquo; Back"
920
- msgstr "&laquo; tagasi"
921
 
922
- #: views/admin/privacy-policy/header.php:2
 
923
  msgctxt "(Admin)"
924
- msgid ""
925
- "This page allows you to generate a Privacy Policy based on the information "
926
- "you entered below."
927
- msgstr ""
928
- "Sellel lehel saate luua privaatsuseeskirja, mis põhineb allpool sisestatud "
929
- "teabel."
930
 
931
- #: views/admin/settings-page.php:8
932
  msgctxt "(Admin)"
933
- msgid "GDPR settings saved!"
934
- msgstr "GDPR seaded salvestatud!"
935
 
936
- #: views/admin/settings-page.php:31
937
- #, php-format
938
  msgctxt "(Admin)"
939
- msgid "The GDPR Framework. Built with &#9829; by %sCodelight%s."
940
- msgstr ""
941
 
942
- #: views/admin/settings-page.php:39
943
- #, php-format
944
  msgctxt "(Admin)"
945
- msgid "Support our development efforts with a %s5-star rating%s."
946
- msgstr "Toetage oma arenguprotsessi %s5 tärni-reitinguga%s."
947
 
948
- #: views/admin/support/contents.php:5 views/installer/steps/finish.php:10
949
  msgctxt "(Admin)"
950
- msgid "Need more info?"
951
- msgstr "Vajad rohkem infot?"
952
 
953
- #: views/admin/support/contents.php:11 views/installer/steps/finish.php:16
954
  msgctxt "(Admin)"
955
- msgid "Site Owner's guide to GDPR"
956
- msgstr "Saidi omaniku juhend GDPR-le"
957
 
958
- #: views/admin/support/contents.php:14 views/installer/steps/finish.php:19
 
959
  msgctxt "(Admin)"
960
- msgid "Read the full guide on GDPR compliance."
961
- msgstr "Lugege täielikku juhendit GDPR nõuetele vastavuse kohta."
962
 
963
- #: views/admin/support/contents.php:20 views/installer/steps/finish.php:25
 
964
  msgctxt "(Admin)"
965
- msgid "Knowledge base"
966
- msgstr "Teadmistepagas"
967
 
968
- #: views/admin/support/contents.php:23 views/installer/steps/finish.php:28
 
969
  msgctxt "(Admin)"
970
- msgid "Check out the knowledge base for common questions and answers."
971
- msgstr "Tutvuge teadmistebaasi tavapäraste küsimuste ja vastustega."
972
 
973
- #: views/admin/support/contents.php:29 views/installer/steps/finish.php:34
974
  msgctxt "(Admin)"
975
- msgid "Developer's guide to GDPR"
976
- msgstr "GDPR-i arendaja juhend"
977
 
978
- #: views/admin/support/contents.php:32 views/installer/steps/finish.php:37
 
979
  msgctxt "(Admin)"
980
- msgid "We have a thorough guide to help making custom sites compliant."
981
- msgstr ""
982
- "Meil on põhjalik juhend, mis aitab kohandatud saitidel ühilduvust luua."
983
 
984
- #: views/admin/support/contents.php:40 views/installer/steps/finish.php:45
 
985
  msgctxt "(Admin)"
986
- msgid "Need help?"
987
- msgstr "Abi vajama?"
988
 
989
- #: views/admin/support/contents.php:46 views/installer/steps/finish.php:51
990
  msgctxt "(Admin)"
991
- msgid "Submit a support request"
992
- msgstr "Esitage tugiteenuse taotlus"
993
 
994
- #: views/admin/support/contents.php:49 views/installer/steps/finish.php:54
 
995
  msgctxt "(Admin)"
996
- msgid ""
997
- "Found a bug or problem with the plugin? Post in the wordpress.org support "
998
- "forum."
999
- msgstr ""
1000
- "Kas leidsite pistikprogrammiga viga või probleemi? Postitage wordpress.org "
1001
- "toe foorum."
1002
 
1003
- #: views/admin/support/contents.php:55 views/installer/steps/finish.php:60
 
1004
  msgctxt "(Admin)"
1005
- msgid "Request a consultation"
1006
- msgstr "Taotle konsultatsiooni"
1007
 
1008
- #: views/admin/support/contents.php:58 views/installer/steps/finish.php:63
 
1009
  msgctxt "(Admin)"
1010
- msgid ""
1011
- "Need development or legal assistance in making your site compliant? We can "
1012
- "help!"
1013
- msgstr ""
1014
- "Kas soovite saidi nõuetele vastavat arendust või õigusabi? Me saame aidata!"
1015
 
1016
- #: views/admin/wizard-buttons.php:2
1017
  msgctxt "(Admin)"
1018
- msgid "Restart setup wizard"
1019
- msgstr "Taaskäivitage häälestusviisard"
1020
 
1021
- #: views/email/action-export.php:8 views/email/action-forget.php:12
 
1022
  msgctxt "(Admin)"
1023
- msgid ""
1024
- "This email is just for your information. You don't need to take any action"
1025
- msgstr "See e-kiri on ainult teie informatsiooniks. Te ei pea midagi tegema"
1026
 
1027
- #: views/email/action-forget.php:8
 
1028
  msgctxt "(Admin)"
1029
- msgid "The data subject had a user account on your website."
1030
- msgstr "Andmesubjektil oli teie veebisaidil kasutajakonto."
1031
 
1032
- #: views/email/identify-data-subject.php:2
1033
- msgid "Someone has requested access to your data on"
1034
- msgstr "Keegi on taotlenud ligipääsu teie andmetele leheküljel"
 
 
1035
 
1036
- #: views/email/identify-data-subject.php:3
1037
- msgid "If this was a mistake, just ignore this email and nothing will happen."
1038
- msgstr ""
1039
- "Kui see oli viga, siis lihtsalt ignoreerige seda kirja ning mitte midagi ei "
1040
- "juhtu."
1041
 
1042
- #: views/email/identify-data-subject.php:4
1043
- msgid "To manage your data, visit the following address:"
1044
- msgstr "Kui soovite oma andmeid hallata, külastage järgnevat aadress:"
 
 
1045
 
1046
- #: views/email/identify-data-subject.php:10
1047
- msgid "This link is valid for 15 minutes."
1048
- msgstr "See link on aktiivne 15 minutit."
 
 
1049
 
1050
- #: views/email/no-data.php:2
1051
- msgid "Someone has requested information about your personal data on"
1052
- msgstr "Keegi on taotlenud infot teie isiklike andmete kohta leheküljel"
 
 
1053
 
1054
- #: views/email/no-data.php:3
1055
- msgid "None of your personal data is stored on"
1056
- msgstr "Leheküljel ei ole kohta isiklikke andmeid"
 
 
1057
 
1058
- #: views/email/no-data.php:5
1059
- msgid ""
1060
- "If this was a mistake or you did not request this email, just ignore it and "
1061
- "nothing will happen."
1062
- msgstr ""
1063
- "Kui see oli viga, siis lihtsalt ignoreerige seda kirja ning mitte midagi ei "
1064
- "juhtu."
1065
 
1066
- #: views/email/request-export.php:13 views/email/request-forget.php:13
 
1067
  msgctxt "(Admin)"
1068
- msgid "As a reminder: according to GDPR, you have 30 days to comply."
1069
- msgstr "Meeldetuletuseks: vastavalt GDPR-le on teil 30 päeva täidetud."
1070
 
1071
- #: views/global/delete-action.php:2
 
1072
  msgctxt "(Admin)"
1073
- msgid "Automatically anonymize data"
1074
- msgstr "Andmete automaatne anonüümimine"
1075
 
1076
- #: views/global/delete-action.php:5
 
1077
  msgctxt "(Admin)"
1078
- msgid "Automatically delete data"
1079
- msgstr "Andmete automaatne kustutamine"
1080
 
1081
- #: views/global/delete-action.php:9
 
1082
  msgctxt "(Admin)"
1083
- msgid "Automatically anonymize data and notify me via email"
1084
- msgstr "Andke automaatselt anonüümseks ja teavita mind e-posti teel"
1085
 
1086
- #: views/global/delete-action.php:13
 
1087
  msgctxt "(Admin)"
1088
- msgid "Automatically delete data and notify me via email"
1089
- msgstr "Andmete automaatne kustutamine ja meili teavitamine"
1090
 
1091
- #: views/global/delete-action.php:16 views/global/export-action.php:10
 
1092
  msgctxt "(Admin)"
1093
- msgid "Only notify me via email"
1094
- msgstr "Teatage mulle ainult e-posti teel"
1095
 
1096
- #: views/global/export-action.php:2
 
1097
  msgctxt "(Admin)"
1098
- msgid "Automatically download data"
1099
- msgstr "Andmete automaatne allalaadimine"
1100
 
1101
- #: views/global/export-action.php:6
 
1102
  msgctxt "(Admin)"
1103
- msgid "Automatically download data and notify me via email"
1104
- msgstr "Andmete automaatne allalaadimine ja meili teavitamine"
1105
 
1106
- #: views/installer/continue-notice.php:2
 
1107
  msgctxt "(Admin)"
1108
- msgid "The The GDPR Framework setup has not been finalized yet."
1109
- msgstr "GDPR raamistiku seadistamine pole veel lõppenud."
1110
 
1111
- #: views/installer/continue-notice.php:3
 
1112
  msgctxt "(Admin)"
1113
- msgid "You can continue the setup at any time."
1114
- msgstr "Saate seadeid igal ajal jätkata."
1115
 
1116
- #: views/installer/continue-notice.php:6
 
1117
  msgctxt "(Admin)"
1118
- msgid "Continue the setup wizard"
1119
- msgstr "Jätkake häälestusviisardit"
1120
 
1121
- #: views/installer/continue-notice.php:9
 
1122
  msgctxt "(Admin)"
1123
- msgid "Hide this message"
1124
- msgstr "Peida see sõnum"
1125
 
1126
- #: views/installer/footer.php:7
1127
- msgid "Back"
1128
- msgstr "Tagasi"
 
 
1129
 
1130
- #: views/installer/header.php:26
 
1131
  msgctxt "(Admin)"
1132
- msgid "I need help"
1133
- msgstr "ma vajan abi"
1134
 
1135
- #: views/installer/header.php:29
 
1136
  msgctxt "(Admin)"
1137
- msgid "Developer Docs"
1138
- msgstr "Arendaja dokumendid"
1139
 
1140
- #: views/installer/header.php:36
 
1141
  msgctxt "(Admin)"
1142
- msgid "Configuration"
1143
- msgstr "Konfiguratsioon"
1144
 
1145
- #: views/installer/header.php:46
 
1146
  msgctxt "(Admin)"
1147
- msgid "Forms & Consent"
1148
- msgstr "Vormid ja nõusolek"
1149
 
1150
- #: views/installer/header.php:51
 
1151
  msgctxt "(Admin)"
1152
- msgid "Integrations"
1153
- msgstr "Integratsioonid"
1154
 
1155
- #: views/installer/steps/configuration-settings.php:23
1156
- #: views/installer/steps/configuration-settings.php:73
1157
  msgctxt "(Admin)"
1158
- msgid "Enter the email address to notify"
1159
- msgstr "Sisestage teavitamiseks olev e-posti aadress"
1160
 
1161
- #: views/installer/steps/disclaimer.php:21
 
1162
  msgctxt "(Admin)"
1163
- msgid "I accept"
1164
- msgstr "I accept"
1165
 
1166
- #: views/installer/welcome-notice.php:7
 
1167
  msgctxt "(Admin)"
1168
- msgid "Run the setup wizard"
1169
- msgstr "Käivitage häälestusviisard"
1170
 
1171
- #: views/installer/welcome-notice.php:11
 
1172
  msgctxt "(Admin)"
1173
- msgid "Auto-install pages"
1174
- msgstr "Auto-installi lehed"
1175
 
1176
- #: views/installer/welcome-notice.php:15
 
1177
  msgctxt "(Admin)"
1178
- msgid "Skip and install manually"
1179
- msgstr "Jätke vahele ja installige käsitsi"
1180
 
1181
- #: views/modules/contact-form-7/generator-privacy.php:6
 
1182
  msgctxt "(Admin)"
1183
- msgid ""
1184
- "This tag generates the default text for Terms & Conditions and/or Privacy "
1185
- "Policy checkbox."
1186
- msgstr ""
1187
- "See silt genereerib Tingimuste ja tingimuste ja / või privaatsuseeskirjade "
1188
- "vaikekirja."
1189
 
1190
- #: views/modules/contact-form-7/generator-privacy.php:15
1191
- msgid "Insert"
1192
- msgstr "Sisesta"
 
 
1193
 
1194
- #: views/modules/wordpress-comments/terms-checkbox.php:6
1195
- #: views/modules/wordpress-user/registration-terms-checkbox.php:7
1196
- #, php-format
1197
- msgid "I accept the %sTerms and Conditions%s and the %sPrivacy Policy%s"
1198
- msgstr "Nõustun %sKasutustingimustega%s ja %sPrivaatsustingimustega%s"
1199
 
1200
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:3
1201
- #: views/privacy-tools/form-consent.php:2
1202
- msgid "Consent"
1203
- msgstr "Nõusolek"
 
1204
 
1205
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:6
1206
- #: views/privacy-tools/form-consent.php:6
1207
- msgid "Here you can withdraw any consents you have given."
1208
- msgstr "Siin saate tagasi võtta kõik antud nõusolekud"
 
1209
 
1210
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:8
1211
- msgid "Consents"
1212
- msgstr "Nõusolekud"
 
 
1213
 
1214
- #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:23
1215
- #: views/privacy-tools/form-consent.php:24
1216
- msgid "Withdraw"
1217
- msgstr "Võta tagasi"
 
1218
 
1219
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:5
1220
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:5
1221
  msgctxt "(Admin)"
1222
- msgid "Delete this user and all data"
1223
- msgstr "Kustuta see kasutaja ja kõik andmed"
1224
 
1225
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:11
 
1226
  msgctxt "(Admin)"
1227
- msgid "Delete my data"
1228
- msgstr "Kustuta oma andmed"
1229
 
1230
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:15
1231
- #: views/privacy-tools/form-delete.php:13
1232
- msgid "Delete all data we have gathered about you."
1233
- msgstr "Kogu info teie kohta kustutatakse."
 
1234
 
1235
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:16
1236
- #: views/privacy-tools/form-delete.php:14
1237
- msgid "If you have a user account on our site, it will also be deleted."
1238
- msgstr "Kui teil on meie lehel kasutajakonto, siis ka see kustutatakse."
 
1239
 
1240
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:17
1241
- #: views/privacy-tools/form-delete.php:15
1242
- msgid "Be careful - this action is permanent and CANNOT be undone."
1243
- msgstr "Ettevaatust - seda tegevust EI SAA tagasi võtta."
 
1244
 
1245
- #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:22
1246
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:23
1247
  msgctxt "(Admin)"
1248
- msgid ""
1249
- "You seem to have an administrator or equivalent role, so deleting/"
1250
- "anonymizing via this page is disabled."
1251
- msgstr ""
1252
- "Tundub, et teil on administraator või samaväärne roll, nii et selle lehe "
1253
- "kustutamine / anonüümimine on keelatud."
1254
 
1255
- #: views/modules/wordpress-user/dashboard/form-export.php:7
1256
- #: views/privacy-tools/form-export.php:1
1257
- msgid "Download your data"
1258
- msgstr "Lae oma andmed alla"
 
1259
 
1260
- #: views/modules/wordpress-user/dashboard/form-export.php:12
1261
- #: views/privacy-tools/form-export.php:13
1262
- msgid "Download as table"
1263
- msgstr "Lae oma andmed tabelina alla"
 
1264
 
1265
- #: views/modules/wordpress-user/dashboard/form-export.php:15
1266
- #: views/privacy-tools/form-export.php:22
1267
- msgid "Export as JSON"
1268
- msgstr "Ekspordi JSON failina"
 
1269
 
1270
- #: views/modules/wordpress-user/dashboard/form-export.php:19
1271
- #: views/privacy-tools/form-export.php:4
1272
- msgid "You can download all your data formatted as a table for viewing."
1273
- msgstr "Saate oma andmed tabeli kujul alla laadida"
 
1274
 
1275
- #: views/modules/wordpress-user/dashboard/form-export.php:20
1276
- #: views/privacy-tools/form-export.php:5
1277
- msgid "Alternatively, you can export it in machine-readable JSON format."
1278
- msgstr "Alternatiivselt saate eksportida faili masinloetavas JSON formaadis."
 
1279
 
1280
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:11
 
1281
  msgctxt "(Admin)"
1282
- msgid "Delete user and all data"
1283
- msgstr "Kustuta kasutaja ja kõik andmed"
1284
 
1285
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:14
 
1286
  msgctxt "(Admin)"
1287
- msgid "Anonymize user and all data"
1288
- msgstr "Anonüümutage kasutaja ja kõik andmed"
1289
 
1290
- #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:18
1291
  #, fuzzy
1292
- #| msgid "Be careful - this action is permanent and CANNOT be undone."
1293
- msgctxt "gdpr-framework"
1294
- msgid "Be careful - this action is permanent and CANNOT be undone."
1295
- msgstr "Ettevaatust - seda tegevust EI SAA tagasi võtta."
1296
 
1297
- #: views/modules/wordpress-user/dashboard/profile-page/header.php:2
 
1298
  msgctxt "(Admin)"
1299
- msgid "GDPR Data"
1300
- msgstr "GDPR-i andmed"
1301
 
1302
- #: views/modules/wordpress-user/dashboard/profile-page/header.php:6
 
1303
  msgctxt "(Admin)"
1304
- msgid "This user has been anonymized."
1305
- msgstr "See kasutaja on anonüümseks saanud."
1306
 
1307
- #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:4
 
1308
  msgctxt "(Admin)"
1309
- msgid "Consents given"
1310
- msgstr "Antud nõusolek"
1311
 
1312
- #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:17
 
1313
  msgctxt "(Admin)"
1314
- msgid "No consents given"
1315
- msgstr "Pole antud nõusolekut"
1316
 
1317
- #: views/privacy-tools/form-consent.php:9
1318
- msgid "Consent types"
1319
- msgstr "Nõusoleku tüübid"
 
 
1320
 
1321
- #: views/privacy-tools/form-delete.php:1
1322
- #: views/privacy-tools/notice-admin-role.php:1
1323
- msgid "Delete my user and data"
1324
- msgstr "Kustuta minu kasutaja ja andmed"
 
1325
 
1326
- #: views/privacy-tools/form-delete.php:7
1327
- msgid "Delete my data"
1328
- msgstr "Kustuta minu andmed"
 
 
1329
 
1330
- #: views/privacy-tools/form-identify.php:8
1331
- msgid "Back to front page"
1332
- msgstr "Tagasi esilehele"
 
 
1333
 
1334
- #: views/privacy-tools/form-identify.php:15
1335
  #, fuzzy
1336
- #| msgid "Identify yourself!"
1337
- msgid "Please identify yourself via e-mail"
1338
- msgstr "Tuvasta ennast!"
1339
 
1340
- #: views/privacy-tools/form-identify.php:19
1341
- #: views/privacy-tools/form-identify.php:22
1342
- msgid "Enter your email address"
1343
- msgstr "Sisestage oma e-maili aadress"
 
1344
 
1345
- #: views/privacy-tools/form-identify.php:25
1346
- msgid "Send email"
1347
- msgstr "Saada e-mail"
 
 
1348
 
1349
- #: views/privacy-tools/notice-admin-role.php:4
 
1350
  msgctxt "(Admin)"
1351
- msgid "Data deletion is disabled for administrative accounts."
1352
- msgstr "Andmete kustutamine on administraatorikontode puhul keelatud."
1353
 
1354
- #: views/privacy-tools/notices.php:3
1355
- msgid ""
1356
- "We will send you an email with the link to access your data. Please check "
1357
- "your spam folder as well!"
1358
- msgstr ""
1359
- "Saadame teile e-maili koos lingiga mis võimaldab teie isiklikele andmetele "
1360
- "ligi pääseda. Palun kontrollige ka oma rämpsposti!"
1361
 
1362
- #: views/privacy-tools/notices.php:7
1363
- msgid "The email you entered does not appear to be a valid email."
1364
- msgstr "Sisestatud e-mail on vigane."
 
 
1365
 
1366
- #: views/privacy-tools/notices.php:11
1367
- msgid "Sorry - the link seems to have expired. Please try again!"
1368
- msgstr "Vabandame - see link on aegunud. Palun proovige uuesti!"
 
 
1369
 
1370
- #: views/privacy-tools/notices.php:23
1371
- msgid "Your personal data has been removed!"
1372
- msgstr "Teie isiklikud andmed on kustutatud!"
 
 
1373
 
1374
- #: views/privacy-tools/privacy-tools.php:5
1375
- msgid "You are identified as"
1376
- msgstr "Te olete tuvastatud e-maili aadressiga"
 
 
1377
 
1378
- #: views\admin\general\enable-tac.php:9
 
1379
  msgctxt "(Admin)"
1380
- msgid "Enable the term and condition page."
1381
- msgstr "Käyttöön termi ja kunto-sivulle."
1382
 
1383
- #: src\Admin\AdminTabGeneral.php:51
 
1384
  msgctxt "(Admin)"
1385
- msgid "Enable Term and Conditions"
1386
- msgstr "Ota ehdot ja säännöt"
1387
 
1388
- #: gdpr-framework.php:121
1389
- msgid ""
1390
- "This website uses cookies to ensure you get the best experience on our "
1391
- "website."
1392
- msgstr ""
1393
- "See veebisait kasutab küpsiseid, et tagada meie veebisaidil parim kogemus."
1394
 
1395
- #: gdpr-framework.php:121
1396
- msgid "Decline"
1397
- msgstr "Langema"
 
 
1398
 
1399
- #: gdpr-framework.php:121
1400
- msgid "Accept"
1401
- msgstr "Nõustun"
 
 
1402
 
1403
- #: gdpr-framework.php:133
1404
- msgid "Learn more"
1405
- msgstr "Lisateave"
 
 
1406
 
1407
- #: AdminTabGeneral.php:94
 
1408
  msgctxt "(Admin)"
1409
- msgid "From Email"
1410
- msgstr "E-posti teel"
1411
 
1412
- #: AdminTabGeneral.php:87
 
1413
  msgctxt "(Admin)"
1414
- msgid "From Name"
1415
- msgstr "Nime järgi"
1416
 
1417
- #: AdminTabGeneral.php:82
 
1418
  msgctxt "(Admin)"
1419
- msgid "Email Setting"
1420
- msgstr "E-posti seadistamine"
1421
 
1422
- #: AdminTabGeneral.php:104
 
1423
  msgctxt "(Admin)"
1424
- msgid "Acceptance Popup Setting"
1425
- msgstr "Vastuvõtmise hüpikaknad"
1426
 
1427
- #: AdminTabGeneral.php:109
 
1428
  msgctxt "(Admin)"
1429
- msgid "Popup Position"
1430
- msgstr "Popup-positsioon"
1431
 
1432
- #: AdminTabGeneral.php:116
 
1433
  msgctxt "(Admin)"
1434
- msgid "Popup theme"
1435
- msgstr "Hüpikakna teema"
1436
 
1437
- #: AdminTabGeneral.php:123
 
1438
  msgctxt "(Admin)"
1439
- msgid "Cookie Acceptance Background Color"
1440
- msgstr "Prääniku aktsepteerimise taustavärv"
1441
 
1442
- #: AdminTabGeneral.php:130
 
1443
  msgctxt "(Admin)"
1444
- msgid "Cookie Acceptance Text Color"
1445
- msgstr "Küpsise vastuvõtu teksti värv"
1446
 
1447
- #: AdminTabGeneral.php:137
 
1448
  msgctxt "(Admin)"
1449
- msgid "Cookie Acceptance Button Backgroung Color"
1450
- msgstr "Prääniku aktsepteerimise nupp Backgroung värv"
1451
 
1452
- #: AdminTabGeneral.php:144
 
1453
  msgctxt "(Admin)"
1454
- msgid "Cookie Acceptance Button Color"
1455
- msgstr "Küpsiseadme vastuvõtmise nupu värv"
1456
 
1457
- #: AdminTabGeneral.php:151
 
1458
  msgctxt "(Admin)"
1459
- msgid "Cookie Acceptance Border Color"
1460
- msgstr "Prääniku vastuvõtu piirvärv"
1461
 
1462
- #: AdminTabGeneral.php:67
 
1463
  msgctxt "(Admin)"
1464
- msgid "Enable Cookie Acceptance Popup"
1465
- msgstr "Lubage küpsiste aktsepteerimise hüpikaken"
1466
 
1467
- #: AdminTabGeneral.php:73
 
1468
  msgctxt "(Admin)"
1469
- msgid "Cookie Acceptance Popup Content"
1470
- msgstr "Küpsiseanssi aktsepteerimise hüpikakna sisu"
1471
 
1472
- #: description-position-action.php
 
1473
  msgctxt "(Admin)"
1474
- msgid "Select position of the Popup"
1475
- msgstr "Valige hüpikakna positsioon"
1476
 
1477
- #: description-theme-action.php
 
1478
  msgctxt "(Admin)"
1479
- msgid "Select theme of the Popup"
1480
- msgstr "Valige hüpikakna teema"
1481
 
1482
- #: description-theme-action.php:69
 
1483
  msgctxt "(Admin)"
1484
- msgid "Disable Comment Checkbox"
1485
- msgstr "Märkeruut Keela Comment"
1486
 
1487
- #: description-theme-action.php:76
 
1488
  msgctxt "(Admin)"
1489
- msgid "Disable Register Form Checkbox"
1490
- msgstr "Keela registervormi märkeruut"
1491
 
1492
- #: description-theme-action.php:312
 
1493
  msgctxt "(Admin)"
1494
- msgid "Disable Checkbox For Comments"
1495
- msgstr "Keela kommentaaride märkeruut"
1496
 
1497
- #: AdminTabGeneral.php:319
 
1498
  msgctxt "(Admin)"
1499
- msgid "Disable Checkbox For Register Form"
1500
- msgstr "Keela registreerimisvormi märkeruut"
1501
 
1502
- #: advanced-integration\header.php:2
 
1503
  msgctxt "(Admin)"
1504
- msgid "This page allows you to advance integration with ClassiDocs™"
1505
- msgstr "See leht võimaldab teil integreerida edasi ClassiDocs™"
1506
 
1507
- #: AdminTabAdvancedIntegration.php:97
 
1508
  msgctxt "(Admin)"
1509
- msgid "ClassiDocs Password"
1510
- msgstr "ClassiDocs parool"
1511
 
1512
- #: AdminTabAdvancedIntegration.php:88
 
1513
  msgctxt "(Admin)"
1514
- msgid "ClassiDocs Username"
1515
- msgstr "ClassiDocs kasutajanimi"
1516
 
1517
- #: AdminTabAdvancedIntegration.php:79
 
1518
  msgctxt "(Admin)"
1519
- msgid "ClassiDocs URL"
1520
- msgstr "ClassiDocs URL"
1521
 
1522
- #: AdminTabAdvancedIntegration.php:69
 
1523
  msgctxt "(Admin)"
1524
- msgid "Enable Response with related queries?"
1525
- msgstr "Kas lubada vastust seotud päringutega?"
1526
 
1527
- #: AdminTabAdvancedIntegration.php:60
 
1528
  msgctxt "(Admin)"
1529
- msgid "Submit SAR request details?"
1530
- msgstr "Esitage SAR-i teabe üksikasjad?"
1531
 
1532
- #: AdminTabAdvancedIntegration.php:51
 
1533
  msgctxt "(Admin)"
1534
- msgid "Integrate with ClassiDocs?"
1535
- msgstr "Integreeri ClassiDocsiga?"
1536
 
1537
- #: AdminTabAdvancedIntegration.php:43
 
1538
  msgctxt "(Admin)"
1539
- msgid "Integration Settings"
1540
- msgstr "Integreerimise seaded"
1541
 
1542
- #: AdminTabAdvancedIntegration.php:35
 
1543
  msgctxt "(Admin)"
1544
- msgid "Advanced Integration"
1545
- msgstr "Täiustatud integratsioon"
1546
 
1547
- #: checkbox-field.php:10
 
1548
  msgctxt "(Admin)"
1549
- msgid "Sign up for free here"
1550
- msgstr "Registreeruge siin tasuta"
1551
 
1552
- #: checkbox-field.php:10
 
1553
  msgctxt "(Admin)"
1554
- msgid "Click Here"
1555
- msgstr "Kliki siia"
1556
 
1557
- #: ClassiDocs-results.php:12
1558
- msgid "Previous Results"
1559
- msgstr "Eelmised tulemused"
 
 
1560
 
1561
- #: ClassiDocs-results.php:13
1562
- msgid "Current Results"
1563
- msgstr "Praegused tulemused"
 
 
1564
 
1565
- #: ClassiDocs-results.php:19
1566
- msgid "Name"
1567
- msgstr "Nimi"
 
 
1568
 
1569
- #: ClassiDocs-results.php:22
1570
- msgid "Path"
1571
- msgstr "Tee"
 
 
1572
 
1573
- #: ClassiDocs-results.php:34
1574
- msgid "Workstation"
1575
- msgstr "Tööjaam"
 
 
1576
 
1577
- #: ClassiDocs-results.php:37
1578
- msgid "Last Scan"
1579
- msgstr "Viimane skannimine"
 
 
1580
 
1581
- #: ClassiDocs-results.php:62
1582
- msgid "No ClassiDocs data found!"
1583
- msgstr "KlassiDocsi andmeid ei leitud!"
 
 
1584
 
1585
- #: enable_popup_header.php:5
1586
- msgid "Cookies used on the website!"
1587
- msgstr "Veebisaidil kasutatud küpsised!"
 
 
1588
 
1589
- #: enable_popup_header.php:9
1590
- msgid "Leave blank if don't want header to get display."
1591
- msgstr "Jäta tühjaks, kui ei soovi, et päis näitaks."
1592
-
1593
- #: AdminTabCookiePopup.php:39
1594
  msgctxt "(Admin)"
1595
- msgid "Cookie Popup Settings"
1596
- msgstr "Küpsiseanssi hüpikakna seaded"
1597
 
1598
- #: AdminTabCookiePopup.php:17
 
1599
  msgctxt "(Admin)"
1600
- msgid "Cookie Popup"
1601
- msgstr "Küpsis-hüpikaken"
1602
 
1603
- #: AdminTabCookiePopup.php:49
 
1604
  msgctxt "(Admin)"
1605
- msgid "Enable One Time Cookie Acceptance Popup"
1606
- msgstr "Lubage ühekordne küpsise aktsepteerimise hüpikaken"
1607
 
1608
- #: consent.php:79
 
1609
  msgctxt "(Admin)"
1610
- msgid "Show Consent types"
1611
- msgstr "Mostrar tipos de consentimiento"
1612
 
 
 
1613
  msgctxt "(Admin)"
1614
- msgid "Hide consent types"
1615
- msgstr "Ocultar tipos de consentimiento"
1616
 
 
 
1617
  msgctxt "(Admin)"
1618
- msgid "Do you want form to be GDPR compliance."
1619
- msgstr "Kas soovite vormi olla GDPR vastavusse."
1620
 
 
 
1621
  msgctxt "(Admin)"
1622
- msgid ""
1623
- "You have installed flamingo, To make this GDPR compliance in individual "
1624
- "contact form's privacy tab check the checkbox for include data to be search "
1625
- "on Privacy tool."
1626
- msgstr ""
1627
- "Olete installinud flamingo, Selle GDPR-i vastavuse tagamiseks individuaalse "
1628
- "kontakti vormi privaatsustekaardil märkige ruut, et lisada andmeid, mida "
1629
- "soovite otsida privaatsuse tööriist."
1630
 
 
 
1631
  msgctxt "(Admin)"
1632
- msgid "Enable Policy Link On Popup"
1633
- msgstr "Lubage hüpikaknasse poliitikateade"
1634
 
 
 
1635
  msgctxt "(Admin)"
1636
- msgid "Enable Privacy policy on Popup"
1637
- msgstr "Hüpikakna privaatsuspoliitika lubamine"
1638
 
1639
- #: AdminTabCookiePopup.php
 
1640
  msgctxt "(Admin)"
1641
- msgid "Cookie Acceptance Popup header"
1642
- msgstr "Küpsiseadme aktsepteerimise hüpikakna päis"
1643
 
1644
- #: views\admin\privacy-manager\header.php:2
 
1645
  msgctxt "(Admin)"
1646
- msgid "Data443™ Privacy Manager"
1647
- msgstr "Data443™ privaatsuse haldur"
1648
 
1649
- #: views\admin\privacy-manager\header.php:3
 
1650
  msgctxt "(Admin)"
1651
- msgid ""
1652
- "ensures privacy regulation compliance, such as GDPR, CCPA, LGPD, etc, at the "
1653
- "next level."
1654
- msgstr ""
1655
- "tagab eraelu puutumatuse eeskirjade järgimise, näiteks GDPR, CCPA, LGPD jne."
1656
 
1657
- #: views\admin\privacy-manager\header.php:4
 
1658
  msgctxt "(Admin)"
1659
- msgid ""
1660
- "In addition to DSAR tracking and management, Privacy Manager adds the "
1661
- "following features to your data protection compliance resources:"
1662
- msgstr ""
1663
- "Lisaks DSAR-i jälgimisele ja haldamisele lisab Privacy Manager teie "
1664
- "andmekaitse nõuetele vastavuse ressurssidele järgmised funktsioonid:"
1665
 
1666
- #: views\admin\privacy-manager\header.php:6
 
1667
  msgctxt "(Admin)"
1668
- msgid "Log and store ICO breach notifications"
1669
- msgstr "Logige ja salvestage ICO rikkumise teatised"
1670
 
1671
- #: views\admin\privacy-manager\header.php:7
 
1672
  msgctxt "(Admin)"
1673
- msgid "Keeps full record of all requests, ticketed and timeline"
1674
- msgstr "Salvestab kõik taotlused, piletid ja ajakava"
1675
 
1676
- #: views\admin\privacy-manager\header.php:8
 
1677
  msgctxt "(Admin)"
1678
- msgid "Gap analysis and breach notifications"
1679
- msgstr "Lünga analüüs ja rikkumisest teatamine"
1680
 
1681
- #: views\admin\privacy-manager\header.php:9
 
1682
  msgctxt "(Admin)"
1683
- msgid "In depth activity log with all GDPR, CCPA, etc actions evidenced"
1684
- msgstr ""
1685
- "Tõestatud on põhjalik tegevuslogi koos kõigi GDPR, CCPA jne toimingutega"
1686
 
1687
- #: views\admin\privacy-manager\header.php:10
 
1688
  msgctxt "(Admin)"
1689
- msgid "Highlights areas of concern and where you need to focus"
1690
- msgstr "Tõstab esile murettekitavad valdkonnad ja selle, kuhu peate keskenduma"
1691
 
1692
- #: views\admin\privacy-manager\header.php:11
 
1693
  msgctxt "(Admin)"
1694
- msgid ""
1695
- "eLearning platform with access for all staff to ensure privacy regulation "
1696
- "compliance and obligations"
1697
- msgstr ""
1698
- "e-õppe platvorm, millel on juurdepääs kõigile töötajatele, et tagada eraelu "
1699
- "puutumatuse eeskirjade järgimine ja kohustused"
1700
 
1701
- #: views\admin\privacy-manager\header.php:12
 
1702
  msgctxt "(Admin)"
1703
- msgid "Tracks who accesses the system, when and why"
1704
- msgstr "Süsteemile ligipääsud, millal ja miks"
1705
 
1706
- #: views\admin\privacy-manager\header.php:15
 
1707
  msgctxt "(Admin)"
1708
- msgid ""
1709
- "Our system enables your business to demonstrate its obligations in "
1710
- "protecting your customer data, show understanding of your business "
1711
- "activities and deliver eLearning and online tests to employees, ensuring "
1712
- "everyone in your company understands your privacy compliance rules and best "
1713
- "practices to operate."
1714
- msgstr ""
1715
- "Meie süsteem võimaldab teie ettevõttel näidata oma kohustusi oma "
1716
- "kliendiandmete kaitsmisel, näidata oma äritegevuse mõistmist ning pakkuda "
1717
- "töötajatele e-õppe ja online-teste, tagades, et igaüks teie ettevõttes "
1718
- "mõistab teie privaatsuse järgimise eeskirju ja parimaid tavasid."
1719
 
1720
- #: views\admin\privacy-manager\header.php:16
 
1721
  msgctxt "(Admin)"
1722
- msgid ""
1723
- "No matter where you are on your data privacy journey, the ultimate goal is "
1724
- "compliance."
1725
- msgstr ""
1726
- "Ükskõik, kus te olete oma privaatsuse teekonnal, on lõppeesmärk vastavus."
1727
 
1728
- #: views\admin\privacy-manager\header.php:16
 
1729
  msgctxt "(Admin)"
1730
- msgid "enables your organization to comply with all privacy regulations."
1731
- msgstr "võimaldab teie organisatsioonil täita kõiki privaatsuseeskirju."
1732
 
1733
- #: views\admin\support\contents.php:49
 
1734
  msgctxt "(Admin)"
1735
- msgid ""
1736
- "Found a bug or have a question about the plugin? Submit a support request "
1737
- "and we’ll get right on it!"
1738
- msgstr ""
1739
- "Kas leidsite vea või teil on küsimus pluginaga? Esitage toetustaotlus ja me "
1740
- "saame selle õigesti!"
1741
 
1742
- #: views\admin\support\contents.php:58
 
1743
  msgctxt "(Admin)"
1744
- msgid "Need assistance in making your site compliant? We can help!"
1745
- msgstr "Vajad abi saidi ühildamiseks? Me saame aidata!"
1746
 
1747
- #: views\admin\general\woo-compatibility.php:9
 
1748
  msgctxt "(Admin)"
1749
- msgid "Enable WooCommerce data on GDPR tool"
1750
- msgstr "Luba WooCommerce andmed GDPR-vahendil"
1751
 
1752
- #: src\Admin\AdminTabGeneral.php:241
 
1753
  msgctxt "(Admin)"
1754
- msgid "Enable WooCommerce Compatibility"
1755
- msgstr "WooCommerce-ühilduvuse lubamine"
1756
-
1757
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:19
1758
- msgid "Note Regarding Order:"
1759
- msgstr "Märkus tellimuse kohta:"
1760
-
1761
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:20
1762
- msgid ""
1763
- "Your order with status Processing will not get deleted until status change."
1764
- msgstr ""
1765
- "Teie tellimus olekuga Töötlemine ei kustutata enne, kui staatus muutub."
1766
 
1767
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:21
1768
- msgid "Your order with status Completed will get anonymize."
1769
- msgstr "Teie tellimus olekuga Lõpetatud saab anonüümseks."
 
1770
 
1771
- #: views\modules\wordpress-user\dashboard\data-page\form-delete.php:22
1772
- msgid "If you delete Completed order you can't apply for refund."
1773
- msgstr "Kui olete kustutatud tellimuse kustutanud, ei saa te toetust taotleda."
 
1774
 
1775
- #: views\admin\general\woo-compatibility.php:12
 
1776
  msgctxt "(Admin)"
1777
- msgid "Will work for WooCommerce Version 3.4.0 or later."
1778
- msgstr "Töötab WooCommerce'i versiooni 3.4.0 või uuema versiooniga."
1779
 
1780
- #: views\admin\general\edd-compatibility.php:9
1781
  msgctxt "(Admin)"
1782
- msgid "Enable EDD data on GDPR tool."
1783
- msgstr "Luba EDD andmed GDPR-vahendil."
1784
 
1785
- #: views\admin\general\edd-compatibility.php:12
 
1786
  msgctxt "(Admin)"
1787
- msgid "Will work for EDD Version 2.0.0 or later."
1788
- msgstr "Töötab EDD versiooni 2.0.0 või uuema versiooni puhul."
 
 
 
 
1789
 
1790
- #: src\Admin\AdminTabGeneral.php:262
 
 
 
1791
  msgctxt "(Admin)"
1792
- msgid "Enable EDD Compatibility"
1793
- msgstr "EDD-ühilduvuse lubamine"
1794
 
1795
- #: gdpr-framework.php:298
1796
- msgid "Cookie Policy"
1797
- msgstr "Prääniku poliitika"
 
 
 
 
 
 
 
1798
 
1799
- #: ConsentManager.php:96
 
 
 
 
1800
  msgctxt "(Admin)"
1801
  msgid ""
1802
- "This consent is visible by default on woocommerce checkout page. If someone "
1803
- "wishes to withdraw it, they should simply request to delete all their data."
1804
  msgstr ""
1805
- "See nõusolek on vaikimisi nähtav woocommerce kassasse lehel. Kui keegi "
1806
- "soovib selle tagasi võtta, peaksid nad lihtsalt paluma kustutada kõik oma "
1807
- "andmed."
1808
 
1809
- #: ConsentManager.php:96
 
 
 
1810
  msgctxt "(Admin)"
1811
- msgid "Woocommerce Policy Consent"
1812
- msgstr "Woocommerce poliitika nõusolek"
1813
 
1814
- #: WoocommerceGdpr.php:150
1815
- msgid "Please acknowledge the Privacy Policy"
1816
- msgstr "Palun kinnitage privaatsuspoliitikat"
 
 
 
 
 
 
1817
 
1818
- #: woo-compatibility.php:9
 
 
 
1819
  msgctxt "(Admin)"
1820
- msgid "Enable WooCommerce data on GDPR tool."
1821
- msgstr "Luba WooCommerce andmed GDPR-vahendil."
1822
 
1823
- #: views\admin\general\enable-popup.php:12
 
 
 
 
 
 
1824
  msgctxt "(Admin)"
1825
  msgid ""
1826
- "<b>Note:</b> Need to add custom content <b>gdpr_cookie_consent</b> its "
1827
- "accepted on popup accept button."
 
1828
  msgstr ""
1829
- "<b>Märge:</b> Vajadus kohandatud sisu lisamiseks <b>gdpr_cookie_consent</b> "
1830
- "selle aktsepteeritud hüpikakna aktsepteerimisnupul."
 
1831
 
1832
- #: AdminTabCookiePopup.php:105
1833
- msgctxt "(Admin)"
1834
- msgid "Popup Dismiss Text"
1835
- msgstr "Hüpikakna tekst"
1836
 
1837
- #: AdminTabCookiePopup.php:98
1838
- msgctxt "(Admin)"
1839
- msgid "Popup Allow Text"
1840
- msgstr "Hüpikakna lubamine"
1841
 
1842
- #: AdminTabGeneral.php:241
1843
- msgctxt "(Admin)"
1844
- msgid "Woocommerce Integration"
1845
- msgstr "Woocommerce integratsioon"
1846
 
1847
- #: AdminTabGeneral.php:259
1848
- msgctxt "(Admin)"
1849
- msgid "Easy Digital Download Integration"
1850
- msgstr "Lihtne digitaalne allalaadimise integreerimine"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1851
 
1852
- #: has-dpo.php:11
 
 
 
1853
  msgctxt "(Admin)"
1854
- msgid "I have appointed a Data Protection Officer (DPO)"
1855
- msgstr "Olen määranud andmekaitseametniku"
1856
 
1857
- #: AdminTabPrivacyPolicy.php:204
 
 
 
1858
  msgctxt "(Admin)"
1859
- msgid "Delete Text"
1860
- msgstr "Kustuta tekst"
1861
 
1862
- #: consent.php:80
 
 
 
 
 
1863
  msgctxt "(Admin)"
1864
- msgid "Add consent type"
1865
- msgstr "Lisa nõusoleku tüüp"
 
 
 
 
1866
 
1867
- #: AdminTabGeneral.php:127
1868
  msgctxt "(Admin)"
1869
- msgid "Privacy Policy Custom URL"
1870
- msgstr "Privaatsuspoliitika kohandatud URL"
1871
 
1872
- #: custom-policy-url.php:6
 
1873
  msgctxt "(Admin)"
1874
- msgid "Leave blank if privacy policy page already selected"
1875
- msgstr "Kui privaatsuspoliitika lehekülg on juba valitud, jätke see tühjaks"
1876
 
1877
- #: woo-disable_checkbox.php:9
 
1878
  msgctxt "(Admin)"
1879
- msgid "Disable WooCommerce Privacy Checkbox"
1880
- msgstr "Keela WooCommerce'i privaatsuse märkeruut"
1881
 
1882
- #: AdminTabCookiePopup.php:133
1883
  msgctxt "(Admin)"
1884
- msgid "Popup Learn More Text"
1885
- msgstr "Hüpik Lisateave teksti kohta"
1886
 
1887
- #: AdminTabGeneral.php:262
1888
  msgctxt "(Admin)"
1889
- msgid "Disable WooCommerce Register Privacy Checkbox"
1890
- msgstr "Keela WooCommerce Registreeri privaatsuse märkeruut"
1891
 
1892
- #: AdminTabCookiePopup.php:121
1893
  msgctxt "(Admin)"
1894
- msgid "Cookie Acceptance link target"
1895
- msgstr "Küpsise vastuvõtmise lingi sihtmärk"
1896
 
1897
- #: popup_link_target.php:3
 
 
 
1898
  msgctxt "(Admin)"
1899
- msgid "Next Tab"
1900
- msgstr "Järgmine vahekaart"
1901
 
1902
- #: popup_link_target.php:5
 
 
 
 
 
 
1903
  msgctxt "(Admin)"
1904
- msgid "Self"
1905
- msgstr "ise"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  msgstr ""
8
  "Project-Id-Version: The GDPR Framework 1.0\n"
9
  "Report-Msgid-Bugs-To: gdpr@codelight.eu\n"
10
+ "POT-Creation-Date: 2021-10-28 11:20-0400\n"
11
+ "PO-Revision-Date: 2021-10-28 12:02-0400\n"
12
  "Last-Translator: Codelight <team@codelight.eu>\n"
13
  "Language-Team: \n"
14
+ "Language: et\n"
15
  "MIME-Version: 1.0\n"
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
18
+ "X-Generator: Poedit 3.0\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
 
21
+ #: gdpr-framework.php:110
22
+ #, fuzzy
23
  msgctxt "(Admin)"
24
  msgid "WordPress GDPR &rsaquo; Error"
25
+ msgstr "WordPressi GDPR › Viga"
26
 
27
+ #: gdpr-framework.php:121
28
+ #, fuzzy
29
+ #| msgctxt "(Admin)"
30
+ #| msgid "You must be using PHP 5.6.0 or greater."
31
  msgctxt "(Admin)"
32
  msgid "You must be using PHP 5.6.0 or greater."
33
  msgstr "Peate kasutama PHP 5.6.0 või uuemat versiooni."
34
 
35
+ #: gdpr-framework.php:122
36
  msgctxt "(Admin)"
37
  msgid "Invalid PHP version"
38
+ msgstr "Vale PHP versioon"
39
 
40
+ #: gdpr-framework.php:132
41
+ #, fuzzy
42
+ #| msgctxt "(Admin)"
43
+ #| msgid "You must be using WordPress 4.3.0 or greater."
44
  msgctxt "(Admin)"
45
  msgid "You must be using WordPress 4.3.0 or greater."
46
  msgstr "Peate kasutama WordPressi versiooni 4.3.0 või uuemat versiooni."
47
 
48
+ #: gdpr-framework.php:133
49
  msgctxt "(Admin)"
50
  msgid "Invalid WordPress version"
51
+ msgstr "Vale WordPressi versioon"
52
+
53
+ #: gdpr-framework.php:204
54
+ msgctxt "(Admin)"
55
+ msgid "Anonymous"
56
+ msgstr "Anonüümne"
57
 
58
+ #: gdpr-helper-functions.php:75
59
+ #, fuzzy
60
+ #| msgctxt "(Admin)"
61
+ #| msgid ""
62
+ #| "You appear to be running a development version of GDPR. You must run "
63
+ #| "<code>composer install</code> from the plugin directory."
64
  msgctxt "(Admin)"
65
  msgid ""
66
  "You appear to be running a development version of GDPR. You must run "
69
  "Tundub, et teil on GDPR-i arendusversioon. Peate käivitama pluginate "
70
  "kataloogi <code> composer install </ code>."
71
 
72
+ #: gdpr-helper-functions.php:80
73
+ #, fuzzy
74
  msgctxt "(Admin)"
75
  msgid "Autoloader not found."
76
+ msgstr "Automaatlaadurit ei leitud."
77
 
78
+ #: gdpr-helper-functions.php:126
79
+ msgid ""
80
+ "This website uses cookies to ensure you get the best experience on our "
81
+ "website."
82
  msgstr ""
83
+ "See veebisait kasutab küpsiseid, et tagada meie veebisaidil parim kogemus."
84
+
85
+ #: gdpr-helper-functions.php:139
86
+ msgid "Decline"
87
+ msgstr "Langema"
88
+
89
+ #: gdpr-helper-functions.php:152
90
+ msgid "Accept"
91
+ msgstr "Nõustun"
92
+
93
+ #: gdpr-helper-functions.php:165
94
+ msgid "Learn more"
95
+ msgstr "Lisateave"
96
+
97
+ #: gdpr-helper-functions.php:220
98
+ msgid "Cookie Policy"
99
+ msgstr "Prääniku poliitika"
100
+
101
+ #: gdpr-helper-functions.php:258
102
+ msgid "Settings"
103
+ msgstr "Seaded"
104
+
105
+ #: gdpr-helper-functions.php:259
106
+ #, fuzzy
107
+ msgid "PREMIUM"
108
+ msgstr "PREMIUM"
109
 
110
+ #: src/Admin/AdminTab.php:195
111
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:114
112
  msgctxt "(Admin)"
113
  msgid "Save"
114
+ msgstr "Salvesta"
115
 
116
+ #: src/Admin/AdminTab.php:231
117
+ #, fuzzy
118
  msgctxt "(Admin)"
119
  msgid "Policy generated!"
120
+ msgstr "Poliitika loodud!"
121
 
122
  #: src/Admin/AdminTabGeneral.php:11
123
  msgctxt "(Admin)"
124
  msgid "General"
125
+ msgstr "Üldine"
126
 
127
+ #: src/Admin/AdminTabGeneral.php:55
128
  msgctxt "(Admin)"
129
  msgid "General Settings"
130
+ msgstr "Üldised seaded"
131
 
132
+ #: src/Admin/AdminTabGeneral.php:60
133
+ #, fuzzy
134
+ #| msgid "Privacy Tools"
135
  msgctxt "(Admin)"
136
  msgid "Enable Privacy Tools"
137
+ msgstr "Privaatsustööriistad"
138
+
139
+ #: src/Admin/AdminTabGeneral.php:67
140
+ #, fuzzy
141
+ #| msgctxt "(Admin)"
142
+ #| msgid "Enable Term and Conditions"
143
+ msgctxt "(Admin)"
144
+ msgid "Enable Term and Conditions"
145
+ msgstr "Ota ehdot ja säännöt"
146
+
147
+ #: src/Admin/AdminTabGeneral.php:74
148
+ #, fuzzy
149
+ #| msgctxt "(Admin)"
150
+ #| msgid "Disable Comment Checkbox"
151
+ msgctxt "(Admin)"
152
+ msgid "Disable Comment Checkbox"
153
+ msgstr "Märkeruut Keela Comment"
154
+
155
+ #: src/Admin/AdminTabGeneral.php:81
156
+ #, fuzzy
157
+ #| msgctxt "(Admin)"
158
+ #| msgid "Disable Register Form Checkbox"
159
+ msgctxt "(Admin)"
160
+ msgid "Disable Register Form Checkbox"
161
+ msgstr "Keela registervormi märkeruut"
162
+
163
+ #: src/Admin/AdminTabGeneral.php:91
164
+ msgctxt "(Admin)"
165
+ msgid "Email Setting"
166
+ msgstr "E-posti seaded"
167
+
168
+ #: src/Admin/AdminTabGeneral.php:96
169
+ msgctxt "(Admin)"
170
+ msgid "From Name"
171
+ msgstr "Saatja nimi"
172
+
173
+ #: src/Admin/AdminTabGeneral.php:103
174
+ msgctxt "(Admin)"
175
+ msgid "From Email"
176
+ msgstr "Saatja e-post"
177
 
178
+ #: src/Admin/AdminTabGeneral.php:112
179
  msgctxt "(Admin)"
180
  msgid "Pages"
181
+ msgstr "Lehed"
182
 
183
+ #: src/Admin/AdminTabGeneral.php:117 src/Admin/WordpressAdmin.php:166
184
+ #, fuzzy
185
+ #| msgid "Privacy Tools"
186
  msgctxt "(Admin)"
187
  msgid "Privacy Tools Page"
188
+ msgstr "Privaatsustööriistad"
189
+
190
+ #: src/Admin/AdminTabGeneral.php:124
191
+ #, fuzzy
192
+ #| msgctxt "(Admin)"
193
+ #| msgid "Privacy Policy Custom URL"
194
+ msgctxt "(Admin)"
195
+ msgid "Privacy Tools Custom URL"
196
+ msgstr "Privaatsuspoliitika kohandatud URL"
197
 
198
+ #: src/Admin/AdminTabGeneral.php:131 src/Admin/WordpressAdmin.php:162
199
+ #, fuzzy
200
+ #| msgid "Privacy Policy"
201
  msgctxt "(Admin)"
202
  msgid "Privacy Policy Page"
203
+ msgstr "Privaatsustingimused"
204
+
205
+ #: src/Admin/AdminTabGeneral.php:138
206
+ #, fuzzy
207
+ #| msgctxt "(Admin)"
208
+ #| msgid "Privacy Policy Custom URL"
209
+ msgctxt "(Admin)"
210
+ msgid "Privacy Policy Custom URL"
211
+ msgstr "Privaatsuspoliitika kohandatud URL"
212
 
213
+ #: src/Admin/AdminTabGeneral.php:145
214
  msgctxt "(Admin)"
215
  msgid "Terms & Conditions Page"
216
+ msgstr "Tingimuste lehekülg"
217
+
218
+ #: src/Admin/AdminTabGeneral.php:152
219
+ #, fuzzy
220
+ msgctxt "(Admin)"
221
+ msgid "Terms & Conditions Custom URL"
222
+ msgstr "Tingimused Kohandatud URL"
223
 
224
+ #: src/Admin/AdminTabGeneral.php:162
225
+ #, fuzzy
226
  msgctxt "(Admin)"
227
  msgid "View & Export Data"
228
+ msgstr "Andmete kuvamine ja eksportimine"
229
 
230
+ #: src/Admin/AdminTabGeneral.php:167
231
+ #, fuzzy
232
+ #| msgctxt "(Admin)"
233
+ #| msgid "Export data (json)"
234
  msgctxt "(Admin)"
235
  msgid "Export action"
236
+ msgstr "Ekspordi andmed (json)"
237
 
238
+ #: src/Admin/AdminTabGeneral.php:174 src/Admin/AdminTabGeneral.php:213
239
+ #, fuzzy
240
+ #| msgctxt "(Admin)"
241
+ #| msgid "Email Setting"
242
  msgctxt "(Admin)"
243
  msgid "Email to notify"
244
+ msgstr "E-posti seadistamine"
245
 
246
+ #: src/Admin/AdminTabGeneral.php:185
247
+ #, fuzzy
248
+ #| msgctxt "(Admin)"
249
+ #| msgid "Anonymize data"
250
  msgctxt "(Admin)"
251
  msgid "Delete & Anonymize Data"
252
+ msgstr "Anonüümsed andmed"
253
 
254
+ #: src/Admin/AdminTabGeneral.php:190
255
+ #, fuzzy
256
+ #| msgctxt "(Admin)"
257
+ #| msgid "Delete data"
258
  msgctxt "(Admin)"
259
  msgid "Delete action"
260
+ msgstr "Andmete kustutamine"
261
 
262
+ #: src/Admin/AdminTabGeneral.php:197
263
+ #, fuzzy
264
+ #| msgctxt "(Admin)"
265
+ #| msgid "Delete content"
266
  msgctxt "(Admin)"
267
  msgid "Delete or reassign content?"
268
+ msgstr "Sisu kustutamine"
269
 
270
+ #: src/Admin/AdminTabGeneral.php:205
271
+ #, fuzzy
272
+ #| msgctxt "(Admin)"
273
+ #| msgid "Reassign content to a user"
274
  msgctxt "(Admin)"
275
  msgid "Reassign content to"
276
+ msgstr "Kasutajale sisu teisaldamine"
277
 
278
+ #: src/Admin/AdminTabGeneral.php:225
279
  msgctxt "(Admin)"
280
  msgid "Styling"
281
+ msgstr "Kujundus"
282
 
283
+ #: src/Admin/AdminTabGeneral.php:230
284
+ #, fuzzy
285
+ #| msgctxt "(Admin)"
286
+ #| msgid "Enable basic styling for Privacy Tools page."
287
  msgctxt "(Admin)"
288
  msgid "Enable basic styling on Privacy Tools page"
289
+ msgstr "Luba Privaatsus Tööriistade lehe põhiline stiil."
290
 
291
+ #: src/Admin/AdminTabGeneral.php:242
292
+ #, fuzzy
293
+ #| msgctxt "(Admin)"
294
+ #| msgid "Enable EDD Compatibility"
295
  msgctxt "(Admin)"
296
  msgid "Compatibility"
297
+ msgstr "EDD-ühilduvuse lubamine"
298
 
299
+ #: src/Admin/AdminTabGeneral.php:247
300
+ #, fuzzy
301
+ #| msgctxt "(Admin)"
302
+ #| msgid "Enable WooCommerce Compatibility"
303
  msgctxt "(Admin)"
304
  msgid "Enable automatic theme compatibility"
305
+ msgstr "WooCommerce-ühilduvuse lubamine"
306
+
307
+ #: src/Admin/AdminTabGeneral.php:259
308
+ msgctxt "(Admin)"
309
+ msgid "Woocommerce Integration"
310
+ msgstr "WooCommerce integratsioon"
311
+
312
+ #: src/Admin/AdminTabGeneral.php:264
313
+ #, fuzzy
314
+ #| msgctxt "(Admin)"
315
+ #| msgid "Enable WooCommerce Compatibility"
316
+ msgctxt "(Admin)"
317
+ msgid "Enable WooCommerce Compatibility"
318
+ msgstr "WooCommerce-ühilduvuse lubamine"
319
+
320
+ #: src/Admin/AdminTabGeneral.php:271
321
+ #: views/admin/general/woo-disable_checkbox.php:10
322
+ #, fuzzy
323
+ #| msgctxt "(Admin)"
324
+ #| msgid "Disable WooCommerce Privacy Checkbox"
325
+ msgctxt "(Admin)"
326
+ msgid "Disable WooCommerce Privacy Checkbox"
327
+ msgstr "Keela WooCommerce'i privaatsuse märkeruut"
328
+
329
+ #: src/Admin/AdminTabGeneral.php:278
330
+ #: views/admin/general/woo-disable_register_checkbox.php:9
331
+ #, fuzzy
332
+ #| msgctxt "(Admin)"
333
+ #| msgid "Disable WooCommerce Register Privacy Checkbox"
334
+ msgctxt "(Admin)"
335
+ msgid "Disable WooCommerce Register Privacy Checkbox"
336
+ msgstr "Keela WooCommerce Registreeri privaatsuse märkeruut"
337
+
338
+ #: src/Admin/AdminTabGeneral.php:290
339
+ #, fuzzy
340
+ #| msgctxt "(Admin)"
341
+ #| msgid "Easy Digital Download Integration"
342
+ msgctxt "(Admin)"
343
+ msgid "Easy Digital Download Integration"
344
+ msgstr "Lihtne digitaalne allalaadimise integreerimine"
345
 
346
+ #: src/Admin/AdminTabGeneral.php:295
347
+ #, fuzzy
348
+ #| msgctxt "(Admin)"
349
+ #| msgid "Enable EDD Compatibility"
350
+ msgctxt "(Admin)"
351
+ msgid "Enable EDD Compatibility"
352
+ msgstr "EDD-ühilduvuse lubamine"
353
+
354
+ #: src/Admin/AdminTabGeneral.php:322
355
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:181
356
+ #, fuzzy
357
+ #| msgctxt "(Admin)"
358
+ #| msgid "Disable Checkbox For Comments"
359
+ msgctxt "(Admin)"
360
+ msgid "Disable Checkbox For Comments"
361
+ msgstr "Keela kommentaaride märkeruut"
362
+
363
+ #: src/Admin/AdminTabGeneral.php:330
364
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:188
365
+ #, fuzzy
366
+ #| msgctxt "(Admin)"
367
+ #| msgid "Disable Checkbox For Register Form"
368
+ msgctxt "(Admin)"
369
+ msgid "Disable Checkbox For Register Form"
370
+ msgstr "Keela registreerimisvormi märkeruut"
371
+
372
+ #: src/Admin/AdminTabGeneral.php:408 src/Admin/AdminTabGeneral.php:424
373
+ #: src/Admin/AdminTabGeneral.php:449 src/Admin/AdminTabGeneral.php:506
374
  #: views/installer/steps/configuration-settings.php:62
375
  msgctxt "(Admin)"
376
  msgid "&mdash; Select &mdash;"
377
+ msgstr "&mdash; Vali &mdash;"
378
 
379
+ #: src/Admin/WordpressAdmin.php:68
380
+ #, fuzzy
381
  msgctxt "(Admin)"
382
  msgid "Privacy & GDPR Settings"
383
+ msgstr "Privaatsus ja GDPR-i sätted"
384
 
385
+ #: src/Admin/WordpressAdmin.php:69 views/installer/welcome-notice.php:6
386
+ #, fuzzy
387
  msgctxt "(Admin)"
388
+ msgid "Data443 GDPR"
389
+ msgstr "Andmed443 GDPR"
390
+
391
+ #: src/Components/AdvancedIntegration/AdminTabAdvancedIntegration.php:17
392
+ #: src/Components/AdvancedIntegration/AdminTabAdvancedIntegration.php:26
393
+ #, fuzzy
394
+ #| msgctxt "(Admin)"
395
+ #| msgid "No data found!"
396
+ msgctxt "(Admin)"
397
+ msgid "Data Hound"
398
+ msgstr "Andmeid ei leitud!"
399
 
400
  #: src/Components/Consent/AdminTabConsent.php:30
401
+ #: src/Components/Consent/AdminTabConsent.php:50
402
  msgctxt "(Admin)"
403
  msgid "Consent"
404
+ msgstr "Nõusolek"
405
+
406
+ #: src/Components/Consent/AdminTabConsent.php:55
407
+ msgctxt "(Admin)"
408
+ msgid "Additional Settings"
409
+ msgstr "Lisaseaded"
410
+
411
+ #: src/Components/Consent/AdminTabConsent.php:60
412
+ #, fuzzy
413
+ msgctxt "(Admin)"
414
+ msgid "Display Consent Calendar"
415
+ msgstr "Kuva nõusoleku kalender"
416
 
417
+ #: src/Components/Consent/AdminTabConsent.php:172
418
+ #, fuzzy
419
  msgctxt "(Admin)"
420
  msgid "Consent slug is a required field!"
421
+ msgstr "Nõusoleku nälkjas on kohustuslik väli!"
422
 
423
+ #: src/Components/Consent/AdminTabConsent.php:177
424
+ #, fuzzy
425
  msgctxt "(Admin)"
426
  msgid ""
427
  "You may only use alphanumeric characters, dash and underscore in the consent "
428
  "slug field."
429
  msgstr ""
430
+ "Nõusoleku nälkjas väljal võite kasutada ainult tähtnumbrilisi märke, kriipsu "
431
+ "ja allkriipsu."
432
 
433
+ #: src/Components/Consent/AdminTabConsent.php:182
434
+ #, fuzzy
435
  msgctxt "(Admin)"
436
  msgid "Consent title is a required field!"
437
+ msgstr "Nõusoleku tiitel on kohustuslik väli!"
438
 
439
+ #: src/Components/Consent/AdminTabConsent.php:194
440
+ #, fuzzy
441
  msgid ""
442
  "To use this website, you accepted our Privacy Policy. If you wish to "
443
  "withdraw your acceptance, please use the \"Delete my data\" button below."
444
  msgstr ""
445
+ "Selle veebisaidi kasutamiseks nõustusite meie privaatsuspoliitikaga. Kui "
446
+ "soovite oma nõusoleku tagasi võtta, kasutage allolevat nuppu \"Kustuta minu "
447
+ "andmed\"."
448
+
449
+ #: src/Components/Consent/AdminTabConsent.php:197
450
+ #, fuzzy
451
+ msgid ""
452
+ "Enable this feature to allow users to submit a time limit on how many months "
453
+ "their consent is given for their coments and registration."
454
+ msgstr ""
455
+ "Lubage sellel funktsioonil lubada kasutajatel esitada tähtaeg selle kohta, "
456
+ "mitu kuud on nende nõusolek nende kaaslaste ja registreerimise jaoks antud."
457
 
458
+ #: src/Components/Consent/ConsentManager.php:53
459
+ #: src/Modules/WooCommerceGdpr/WooCommerceGdpr.php:144
 
 
460
  #, php-format
461
  msgid "I accept the %sPrivacy Policy%s"
462
  msgstr "Nõustun %sprivaatsustingimustega%s"
463
 
464
+ #: src/Components/Consent/ConsentManager.php:57
465
+ #: src/Components/Consent/ConsentManager.php:78
466
+ #, fuzzy
467
+ #| msgctxt "(Admin)"
468
+ #| msgid ""
469
+ #| "This consent is visible by default on woocommerce checkout page. If "
470
+ #| "someone wishes to withdraw it, they should simply request to delete all "
471
+ #| "their data."
472
  msgctxt "(Admin)"
473
  msgid ""
474
  "This consent is not visible by default. If someone wishes to withdraw it, "
475
  "they should simply request to delete all their data."
476
  msgstr ""
477
+ "See nõusolek on vaikimisi nähtav woocommerce kassasse lehel. Kui keegi "
478
+ "soovib selle tagasi võtta, peaksid nad lihtsalt paluma kustutada kõik oma "
479
+ "andmed."
480
 
481
+ #: src/Components/Consent/ConsentManager.php:74
482
  #, php-format
483
  msgid "I accept the %sTerms & Conditions%s"
484
  msgstr "Nõustun %stingimustega%s"
485
 
486
+ #: src/Components/Consent/ConsentManager.php:87
487
+ #, fuzzy
488
+ #| msgctxt "(Admin)"
489
+ #| msgid "Woocommerce Policy Consent"
490
  msgctxt "(Admin)"
491
+ msgid "Woocommerce Policy Consent"
492
+ msgstr "Woocommerce poliitika nõusolek"
493
 
494
+ #: src/Components/Consent/ConsentManager.php:88
495
+ #, fuzzy
496
+ #| msgctxt "(Admin)"
497
+ #| msgid ""
498
+ #| "This consent is visible by default on woocommerce checkout page. If "
499
+ #| "someone wishes to withdraw it, they should simply request to delete all "
500
+ #| "their data."
501
  msgctxt "(Admin)"
502
+ msgid ""
503
+ "This consent is visible by default on woocommerce checkout page. If someone "
504
+ "wishes to withdraw it, they should simply request to delete all their data."
505
  msgstr ""
506
+ "See nõusolek on vaikimisi nähtav woocommerce kassasse lehel. Kui keegi "
507
+ "soovib selle tagasi võtta, peaksid nad lihtsalt paluma kustutada kõik oma "
508
+ "andmed."
509
+
510
+ #: src/Components/Consent/ConsentManager.php:389
511
+ #, fuzzy
512
+ #| msgctxt "(Admin)"
513
+ #| msgid "Configuration"
514
+ msgid "Consent Information"
515
+ msgstr "Konfiguratsioon"
516
 
517
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:17
518
+ #, fuzzy
519
+ #| msgctxt "(Admin)"
520
+ #| msgid "Cookie Popup"
521
  msgctxt "(Admin)"
522
+ msgid "Cookie Popup"
523
+ msgstr "Küpsis-hüpikaken"
524
 
525
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:44
526
+ #, fuzzy
527
+ #| msgctxt "(Admin)"
528
+ #| msgid "Cookie Popup Settings"
529
  msgctxt "(Admin)"
530
+ msgid "Cookie Popup Settings"
531
+ msgstr "Küpsiseanssi hüpikakna seaded"
532
 
533
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:48
534
+ #: views/admin/general/enable-popup.php:9
535
+ #, fuzzy
536
+ #| msgctxt "(Admin)"
537
+ #| msgid "Enable Cookie Acceptance Popup"
538
  msgctxt "(Admin)"
539
+ msgid "Enable Cookie Acceptance Popup"
540
+ msgstr "Lubage küpsiste aktsepteerimise hüpikaken"
541
 
542
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:54
543
+ #: views/admin/general/enable-onetime-popup.php:9
544
+ #, fuzzy
545
+ #| msgctxt "(Admin)"
546
+ #| msgid "Enable One Time Cookie Acceptance Popup"
547
  msgctxt "(Admin)"
548
+ msgid "Enable One Time Cookie Acceptance Popup"
549
+ msgstr "Lubage ühekordne küpsise aktsepteerimise hüpikaken"
550
 
551
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:60
552
+ #, fuzzy
553
+ #| msgctxt "(Admin)"
554
+ #| msgid "Enable Privacy policy on Popup"
555
  msgctxt "(Admin)"
556
+ msgid "Enable Privacy policy on Popup"
557
+ msgstr "Hüpikakna privaatsuspoliitika lubamine"
558
 
559
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:66
560
+ #, fuzzy
561
+ #| msgctxt "(Admin)"
562
+ #| msgid "Cookie Acceptance Popup header"
563
  msgctxt "(Admin)"
564
+ msgid "Cookie Acceptance Popup header"
565
+ msgstr "Küpsiseadme aktsepteerimise hüpikakna päis"
566
 
567
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:72
568
+ #, fuzzy
569
+ #| msgctxt "(Admin)"
570
+ #| msgid "Cookie Acceptance Popup Content"
571
  msgctxt "(Admin)"
572
+ msgid "Cookie Acceptance Popup Content"
573
+ msgstr "Küpsiseanssi aktsepteerimise hüpikakna sisu"
574
 
575
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:81
576
+ #, fuzzy
577
+ #| msgctxt "(Admin)"
578
+ #| msgid "Acceptance Popup Setting"
579
  msgctxt "(Admin)"
580
+ msgid "Acceptance Popup Setting"
581
+ msgstr "Vastuvõtmise hüpikaknad"
582
 
583
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:86
584
+ #, fuzzy
585
+ #| msgctxt "(Admin)"
586
+ #| msgid "Popup Position"
587
  msgctxt "(Admin)"
588
+ msgid "Popup Position"
589
+ msgstr "Popup-positsioon"
590
 
591
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:93
592
+ #, fuzzy
593
+ #| msgctxt "(Admin)"
594
+ #| msgid "Popup theme"
595
+ msgctxt "(Admin)"
596
+ msgid "Popup theme"
597
+ msgstr "Hüpikakna teema"
598
+
599
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:100
600
+ #, fuzzy
601
+ #| msgctxt "(Admin)"
602
+ #| msgid "Popup Allow Text"
603
+ msgctxt "(Admin)"
604
+ msgid "Popup Allow Text"
605
+ msgstr "Hüpikakna lubamine"
606
+
607
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:107
608
+ #, fuzzy
609
+ #| msgctxt "(Admin)"
610
+ #| msgid "Popup Dismiss Text"
611
+ msgctxt "(Admin)"
612
+ msgid "Popup Dismiss Text"
613
+ msgstr "Hüpikakna tekst"
614
+
615
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:114
616
+ #, fuzzy
617
+ #| msgctxt "(Admin)"
618
+ #| msgid "Popup Learn More Text"
619
+ msgctxt "(Admin)"
620
+ msgid "Popup Learn More Text"
621
+ msgstr "Hüpik Lisateave teksti kohta"
622
+
623
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:121
624
+ #, fuzzy
625
+ #| msgctxt "(Admin)"
626
+ #| msgid "Cookie Acceptance link target"
627
+ msgctxt "(Admin)"
628
+ msgid "Cookie Acceptance link target"
629
+ msgstr "Küpsise vastuvõtmise lingi sihtmärk"
630
+
631
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:128
632
+ #, fuzzy
633
+ #| msgctxt "(Admin)"
634
+ #| msgid "Cookie Acceptance Background Color"
635
+ msgctxt "(Admin)"
636
+ msgid "Cookie Acceptance Background Color"
637
+ msgstr "Prääniku aktsepteerimise taustavärv"
638
+
639
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:135
640
+ #, fuzzy
641
+ #| msgctxt "(Admin)"
642
+ #| msgid "Cookie Acceptance Text Color"
643
+ msgctxt "(Admin)"
644
+ msgid "Cookie Acceptance Text Color"
645
+ msgstr "Küpsise vastuvõtu teksti värv"
646
+
647
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:142
648
+ #, fuzzy
649
+ #| msgctxt "(Admin)"
650
+ #| msgid "Cookie Acceptance Button Backgroung Color"
651
+ msgctxt "(Admin)"
652
+ msgid "Cookie Acceptance Button Backgroung Color"
653
+ msgstr "Prääniku aktsepteerimise nupp Backgroung värv"
654
+
655
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:149
656
+ #, fuzzy
657
+ #| msgctxt "(Admin)"
658
+ #| msgid "Cookie Acceptance Button Color"
659
+ msgctxt "(Admin)"
660
+ msgid "Cookie Acceptance Button Color"
661
+ msgstr "Küpsiseadme vastuvõtmise nupu värv"
662
+
663
+ #: src/Components/CookiePopup/AdminTabCookiePopup.php:156
664
+ #, fuzzy
665
+ #| msgctxt "(Admin)"
666
+ #| msgid "Cookie Acceptance Border Color"
667
+ msgctxt "(Admin)"
668
+ msgid "Cookie Acceptance Border Color"
669
+ msgstr "Prääniku vastuvõtu piirvärv"
670
+
671
+ #: src/Components/DoNotSell/AdminTabDoNotSell.php:17
672
+ #: src/Components/DoNotSell/AdminTabDoNotSell.php:28
673
+ #, fuzzy
674
+ msgctxt "(Admin)"
675
+ msgid "Do Not Sell My Data"
676
+ msgstr "Ära müü minu andmeid"
677
+
678
+ #: src/Components/DoNotSell/AdminTabDoNotSell.php:34
679
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:62
680
+ msgctxt "(Admin)"
681
+ msgid "Shortcode"
682
+ msgstr "Lühikood"
683
+
684
+ #: src/Components/DoNotSell/AdminTabDoNotSell.php:40
685
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:68
686
+ #, fuzzy
687
+ msgctxt "(Admin)"
688
+ msgid "Shortcode for PHP"
689
+ msgstr "Php lühikood"
690
+
691
+ #: src/Components/DoNotSell/AdminTabDoNotSell.php:46
692
+ #, fuzzy
693
+ msgctxt "(Admin)"
694
+ msgid "View Requests"
695
+ msgstr "Vaata taotlusi"
696
+
697
+ #: src/Components/PrivacyManager/AdminTabPrivacyManager.php:17
698
+ #, fuzzy
699
+ #| msgctxt "(Admin)"
700
+ #| msgid "Data443™ Privacy Manager"
701
+ msgctxt "(Admin)"
702
+ msgid "Global Privacy Manager"
703
+ msgstr "Data443™ privaatsuse haldur"
704
+
705
+ #: src/Components/PrivacyManager/AdminTabPrivacyManager.php:29
706
+ #, fuzzy
707
+ #| msgctxt "(Admin)"
708
+ #| msgid "Data443™ Privacy Manager"
709
+ msgctxt "(Admin)"
710
+ msgid "Privacy Manager"
711
+ msgstr "Data443™ privaatsuse haldur"
712
+
713
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:19
714
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:62
715
+ #: views/admin/privacy-policy/generated.php:1 views/installer/header.php:41
716
+ msgctxt "(Admin)"
717
+ msgid "Privacy Policy"
718
+ msgstr "Privaatsustingimused"
719
+
720
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:71
721
+ #, fuzzy
722
+ #| msgctxt "(Admin)"
723
+ #| msgid "Configuration"
724
+ msgctxt "(Admin)"
725
+ msgid "Company information"
726
+ msgstr "Konfiguratsioon"
727
+
728
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:76
729
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:223
730
+ msgctxt "(Admin)"
731
+ msgid "Company Name"
732
+ msgstr "Ettevõtte nimi"
733
+
734
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:84
735
+ #, fuzzy
736
+ #| msgctxt "(Admin)"
737
+ #| msgid "From Email"
738
+ msgctxt "(Admin)"
739
+ msgid "Company Email"
740
+ msgstr "E-posti teel"
741
+
742
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:91
743
+ #, fuzzy
744
+ msgctxt "(Admin)"
745
+ msgid "Company Location"
746
+ msgstr "Ettevõtte asukoht"
747
+
748
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:107
749
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:259
750
+ #, fuzzy
751
+ msgctxt "(Admin)"
752
+ msgid "Representative Contact Name"
753
+ msgstr "Esindaja kontakti nimi"
754
+
755
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:114
756
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:266
757
+ #, fuzzy
758
+ msgctxt "(Admin)"
759
+ msgid "Representative Contact Email"
760
+ msgstr "Esindaja Kontakt E-post"
761
+
762
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:121
763
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:273
764
+ #, fuzzy
765
+ msgctxt "(Admin)"
766
+ msgid "Representative Contact Phone"
767
+ msgstr "Esindaja Kontakttelefon"
768
+
769
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:137
770
+ #, fuzzy
771
+ msgctxt "(Admin)"
772
+ msgid "Data Protection Authority"
773
+ msgstr "Andmekaitse amet"
774
+
775
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:143
776
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:302
777
+ #, fuzzy
778
+ msgctxt "(Admin)"
779
+ msgid "Data Protection Authority Website"
780
+ msgstr "Andmekaitseasutuse veebisait"
781
+
782
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:150
783
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:309
784
+ #, fuzzy
785
+ msgctxt "(Admin)"
786
+ msgid "Data Protection Authority Email"
787
+ msgstr "Andmekaitseameti e-post"
788
+
789
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:157
790
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:316
791
+ #, fuzzy
792
  msgctxt "(Admin)"
793
  msgid "Data Protection Authority Phone"
794
+ msgstr "Andmekaitseameti telefon"
795
 
796
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:167
797
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:177
798
+ #, fuzzy
799
+ #| msgctxt "(Admin)"
800
+ #| msgid "I have appointed a Data Protection Officer (DPO)"
801
  msgctxt "(Admin)"
802
  msgid "Data Protection Officer"
803
+ msgstr "Olen määranud andmekaitseametniku"
804
 
805
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:170
806
+ #, fuzzy
807
+ #| msgctxt "(Admin)"
808
+ #| msgid "I have appointed a Data Protection Officer (DPO)"
809
  msgctxt "(Admin)"
810
  msgid "Knowledge base: Do I need to appoint a Data Protection Officer?"
811
+ msgstr "Olen määranud andmekaitseametniku"
812
 
813
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:184
814
+ #, fuzzy
815
+ #| msgctxt "(Admin)"
816
+ #| msgid "I have appointed a Data Protection Officer (DPO)"
817
  msgctxt "(Admin)"
818
  msgid "Data Protection Officer Name"
819
+ msgstr "Olen määranud andmekaitseametniku"
820
 
821
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:192
822
+ #, fuzzy
823
+ #| msgctxt "(Admin)"
824
+ #| msgid "I have appointed a Data Protection Officer (DPO)"
825
  msgctxt "(Admin)"
826
  msgid "Data Protection Officer Email"
827
+ msgstr "Olen määranud andmekaitseametniku"
828
+
829
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:204
830
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:347
831
+ #, fuzzy
832
+ #| msgctxt "(Admin)"
833
+ #| msgid "Delete Text"
834
+ msgctxt "(Admin)"
835
+ msgid "Delete Text"
836
+ msgstr "Kustuta tekst"
837
 
838
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:230
839
  msgctxt "(Admin)"
840
  msgid "Contact Email"
841
+ msgstr "Kontakt e-posti aadress"
842
 
843
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:249
844
+ #, fuzzy
845
  msgctxt "(Admin)"
846
  msgid "Representative Contact"
847
+ msgstr "Esindaja kontakt"
848
 
849
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:252
850
+ #, fuzzy
851
  msgctxt "(Admin)"
852
  msgid "Knowledge base: Do I need to appoint an EU-based representative?"
853
+ msgstr "Teadmusbaas: kas ma pean määrama ELis asuva esindaja?"
854
+
855
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:289
856
+ #, fuzzy, php-format
857
+ msgctxt "(Admin)"
858
+ msgid "See the %slist of contacts here%s."
859
+ msgstr "Vaata kontaktide %s nimekirja siit%s."
860
 
861
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:333
862
+ #, fuzzy
863
+ #| msgid "Name"
864
  msgctxt "(Admin)"
865
  msgid "DPO Name"
866
+ msgstr "Nimi"
867
+
868
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:340
869
+ #, fuzzy
870
+ #| msgctxt "(Admin)"
871
+ #| msgid "From Email"
872
+ msgctxt "(Admin)"
873
+ msgid "DPO Email"
874
+ msgstr "E-posti teel"
875
 
876
+ #: src/Components/PrivacyPolicy/AdminTabPrivacyPolicy.php:422
877
+ #, fuzzy
878
  msgctxt "(Admin)"
879
  msgid "Save & Generate Policy"
880
+ msgstr "Salvesta ja loo poliitika"
881
 
882
+ #: src/Components/PrivacyPolicy/PrivacyPolicy.php:81
883
+ #: src/Installer/Installer.php:309 src/Installer/Steps/PolicySettings.php:210
884
  #: views/themes/storefront/footer.php:3
885
  #: views/themes/twentyseventeen/footer.php:3
886
  #: views/themes/twentysixteen/footer.php:4
887
  msgid "Privacy Policy"
888
  msgstr "Privaatsustingimused"
889
 
890
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:17
891
+ #, fuzzy
892
+ #| msgid "Privacy Tools"
893
+ msgctxt "(Admin)"
894
+ msgid "Privacy Safe"
895
+ msgstr "Privaatsustööriistad"
896
+
897
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:33
898
+ #, fuzzy
899
+ msgctxt "(Admin)"
900
+ msgid "Privacy Safe by Data443"
901
+ msgstr "Privaatsus kaitstud andmete järgi443"
902
+
903
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:38
904
+ #, fuzzy
905
+ msgctxt "(Admin)"
906
+ msgid "Register for Privacy Safe"
907
+ msgstr "Registreeri privaatsusturvalisse kohta"
908
+
909
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:44
910
+ #, fuzzy
911
+ msgctxt "(Admin)"
912
+ msgid "Privacy Safe Settings"
913
+ msgstr "Privaatsuse turvasätted"
914
+
915
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:50
916
+ #, fuzzy
917
+ msgctxt "(Admin)"
918
+ msgid "Seal Code"
919
+ msgstr "Pitseri kood"
920
+
921
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:56
922
+ #, fuzzy
923
+ msgctxt "(Admin)"
924
+ msgid "Image Code"
925
+ msgstr "Pildi kood"
926
+
927
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:74
928
+ #, fuzzy
929
+ msgctxt "(Admin)"
930
+ msgid "Support Data443"
931
+ msgstr "Tugiandmed443"
932
+
933
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:83
934
+ #, fuzzy
935
+ msgctxt "(Admin)"
936
+ msgid ""
937
+ "Strengthen your reputation. The privacy safe seal assures your customers "
938
+ "that your business is in compliance with privacy laws and regulations. The "
939
+ "privacy safe seal will verify that the GDPR Framework plugin is installed."
940
+ msgstr ""
941
+ "Tugevdage oma mainet. Privaatsuse turvaplomm tagab teie klientidele, et teie "
942
+ "ettevõte vastab privaatsusseadustele ja -määrustele. Privaatsuse turvaplomm "
943
+ "kontrollib, kas GDPR Frameworki lisandmoodul on installitud."
944
+
945
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:86
946
+ #, fuzzy
947
+ msgctxt "(Admin)"
948
+ msgid ""
949
+ "Register now to activate your Privacy Safe seal. Visit the link below, "
950
+ "complete the complete the checkout process. Once approved you will recieve "
951
+ "notice to get your seal code and image code. Enter those here and save. You "
952
+ "can then place the seal where you would like on your site."
953
+ msgstr ""
954
+ "Registreeruge kohe, et aktiveerida oma privaatsusturvaline pitser. Külastage "
955
+ "allolevat linki, viige väljamöllimise protsess lõpule. Kui see on "
956
+ "kinnitatud, saate teate oma plommikoodi ja pildikoodi saamise kohta. "
957
+ "Sisestage need siia ja salvestage. Seejärel saate pitseri paigutada sinna, "
958
+ "kuhu soovite oma saidil."
959
+
960
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:86
961
+ #, fuzzy
962
+ msgctxt "(Admin)"
963
+ msgid "Register Here"
964
+ msgstr "Registreeru siin"
965
+
966
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:89
967
+ #, fuzzy
968
+ msgctxt "(Admin)"
969
+ msgid "Embed the shortcode provided to display your privacy safe seal."
970
+ msgstr "Manustage privaatsuse turvaplommi kuvamiseks esitatud lühikood."
971
+
972
+ #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:22
973
+ #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:55
974
  msgid "This page is currently disabled."
975
  msgstr "See leht on hetkel välja lülitatud."
976
 
977
+ #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:26
978
+ #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:59
979
+ #, fuzzy
980
+ msgid "Please configure the Privacy Tools page in the admin interface."
981
+ msgstr "Konfigureerige administraatoriliideses leht Privaatsusriistad."
982
+
983
+ #: src/Components/PrivacyToolsPage/PrivacyToolsPageShortcode.php:42
984
+ #: src/Installer/Installer.php:318
985
+ #: src/Installer/Steps/ConfigurationPages.php:65
986
  #: views/themes/storefront/footer.php:7
987
  #: views/themes/twentyseventeen/footer.php:7
988
  #: views/themes/twentysixteen/footer.php:9
993
  #: src/Components/Support/AdminTabSupport.php:20
994
  msgctxt "(Admin)"
995
  msgid "Support"
996
+ msgstr "Tugi"
 
 
 
 
 
 
997
 
998
  #: src/Components/WordpressUser/Controllers/DashboardDataPageController.php:54
999
  #: views/privacy-tools/notices.php:19
1005
  msgid "Consent withdrawn."
1006
  msgstr "Nõusolek tagasi võetud."
1007
 
1008
+ #: src/Components/WordpressUser/RegistrationForm.php:56
1009
  msgid "<strong>ERROR</strong>: You must accept the terms and conditions."
1010
  msgstr "<strong>VIGA</strong>: Tingimustega nõustumine on kohustuslik."
1011
 
1014
  #: views/modules/wordpress-user/dashboard/data-page/header.php:2
1015
  msgctxt "(Admin)"
1016
  msgid "Privacy Tools"
1017
+ msgstr "Privaatsustööriistad"
1018
 
1019
  #: src/DataSubject/AdminTabDataSubject.php:27
1020
  #: src/DataSubject/AdminTabDataSubject.php:41
1021
+ #, fuzzy
1022
  msgctxt "(Admin)"
1023
  msgid "Data Subjects"
1024
+ msgstr "Andmesubjektide"
1025
 
1026
  #: src/DataSubject/DataRepository.php:143
1027
  msgid "Data exported"
1039
  msgid "Data removal request"
1040
  msgstr "Andmete kustutamise taotlus"
1041
 
1042
+ #: src/DataSubject/DataSubjectIdentificator.php:78
1043
+ #: src/DataSubject/DataSubjectIdentificator.php:96
1044
  msgid "Your personal data on"
1045
  msgstr "Sinu isiklikud andmed lehel"
1046
 
1047
  #: src/Helpers.php:27
1048
+ #, fuzzy
1049
  msgctxt "(Admin)"
1050
  msgid "Austria"
1051
+ msgstr "Austria"
1052
 
1053
  #: src/Helpers.php:28
1054
  msgctxt "(Admin)"
1055
  msgid "Belgium"
1056
+ msgstr "Belgia"
1057
 
1058
  #: src/Helpers.php:29
1059
  msgctxt "(Admin)"
1060
  msgid "Bulgaria"
1061
+ msgstr "Bulgaaria"
1062
 
1063
  #: src/Helpers.php:30
1064
  msgctxt "(Admin)"
1065
  msgid "Croatia"
1066
+ msgstr "Horvaatia"
1067
 
1068
  #: src/Helpers.php:31
1069
  msgctxt "(Admin)"
1070
  msgid "Cyprus"
1071
+ msgstr "Küpros"
1072
 
1073
  #: src/Helpers.php:32
1074
  msgctxt "(Admin)"
1075
  msgid "Czech Republic"
1076
+ msgstr "Tšehhi Vabariik"
1077
 
1078
  #: src/Helpers.php:33
1079
  msgctxt "(Admin)"
1080
  msgid "Denmark"
1081
+ msgstr "Taani"
1082
 
1083
  #: src/Helpers.php:34
1084
  msgctxt "(Admin)"
1085
  msgid "Estonia"
1086
+ msgstr "Eesti"
1087
 
1088
  #: src/Helpers.php:35
1089
  msgctxt "(Admin)"
1090
  msgid "Finland"
1091
+ msgstr "Soome"
1092
 
1093
  #: src/Helpers.php:36
1094
  msgctxt "(Admin)"
1095
  msgid "France"
1096
+ msgstr "Prantsusmaa"
1097
 
1098
  #: src/Helpers.php:37
1099
  msgctxt "(Admin)"
1100
  msgid "Germany"
1101
+ msgstr "Saksamaa"
1102
 
1103
  #: src/Helpers.php:38
1104
  msgctxt "(Admin)"
1105
  msgid "Greece"
1106
+ msgstr "Kreeka"
1107
 
1108
  #: src/Helpers.php:39
1109
+ #, fuzzy
1110
  msgctxt "(Admin)"
1111
  msgid "Hungary"
1112
+ msgstr "Ungari"
1113
 
1114
  #: src/Helpers.php:40
1115
  msgctxt "(Admin)"
1116
  msgid "Ireland"
1117
+ msgstr "Iirimaa"
1118
 
1119
  #: src/Helpers.php:41
1120
  msgctxt "(Admin)"
1121
  msgid "Italy"
1122
+ msgstr "Itaalia"
1123
 
1124
  #: src/Helpers.php:42
1125
  msgctxt "(Admin)"
1126
  msgid "Latvia"
1127
+ msgstr "Läti"
1128
 
1129
  #: src/Helpers.php:43
1130
  msgctxt "(Admin)"
1131
  msgid "Lithuania"
1132
+ msgstr "Leedu"
1133
 
1134
  #: src/Helpers.php:44
1135
  msgctxt "(Admin)"
1136
  msgid "Luxembourg"
1137
+ msgstr "Luksemburg"
1138
 
1139
  #: src/Helpers.php:45
1140
+ #, fuzzy
1141
  msgctxt "(Admin)"
1142
  msgid "Malta"
1143
+ msgstr "Malta"
1144
 
1145
  #: src/Helpers.php:46
1146
  msgctxt "(Admin)"
1147
  msgid "Netherlands"
1148
+ msgstr "Holland"
1149
 
1150
  #: src/Helpers.php:47
1151
  msgctxt "(Admin)"
1152
  msgid "Poland"
1153
+ msgstr "Poola"
1154
 
1155
  #: src/Helpers.php:48
1156
+ #, fuzzy
1157
  msgctxt "(Admin)"
1158
  msgid "Portugal"
1159
+ msgstr "Portugal"
1160
 
1161
  #: src/Helpers.php:49
1162
  msgctxt "(Admin)"
1163
  msgid "Romania"
1164
+ msgstr "Rumeenia"
1165
 
1166
  #: src/Helpers.php:50
1167
+ #, fuzzy
1168
  msgctxt "(Admin)"
1169
  msgid "Slovakia"
1170
+ msgstr "Slovakkia"
1171
 
1172
  #: src/Helpers.php:51
1173
  msgctxt "(Admin)"
1174
  msgid "Slovenia"
1175
+ msgstr "Sloveenia"
1176
 
1177
  #: src/Helpers.php:52
1178
  msgctxt "(Admin)"
1179
  msgid "Spain"
1180
+ msgstr "Hispaania"
1181
 
1182
  #: src/Helpers.php:53
1183
  msgctxt "(Admin)"
1184
  msgid "Sweden"
1185
+ msgstr "Rootsi"
1186
 
1187
  #: src/Helpers.php:54
1188
  msgctxt "(Admin)"
1189
  msgid "United Kingdom"
1190
+ msgstr "Suur Britannia"
1191
 
1192
+ #: src/Helpers.php:56
1193
+ #, fuzzy
1194
  msgctxt "(Admin)"
1195
+ msgid "Afghanistan "
1196
+ msgstr "Afganistan "
1197
 
1198
+ #: src/Helpers.php:57
1199
+ #, fuzzy
1200
  msgctxt "(Admin)"
1201
+ msgid "Åland Islands"
1202
+ msgstr "Ahvenamaa saared"
1203
 
1204
+ #: src/Helpers.php:58
1205
  msgctxt "(Admin)"
1206
+ msgid "Albania"
1207
+ msgstr "Albaania"
1208
 
1209
+ #: src/Helpers.php:59
1210
  msgctxt "(Admin)"
1211
+ msgid "Algeria"
1212
+ msgstr "Alžeeria"
1213
 
1214
+ #: src/Helpers.php:60
1215
+ #, fuzzy
1216
  msgctxt "(Admin)"
1217
+ msgid "American Samoa "
1218
+ msgstr "Ameerika Samoa "
1219
 
1220
+ #: src/Helpers.php:61
1221
+ #, fuzzy
1222
  msgctxt "(Admin)"
1223
+ msgid "Andorra"
1224
+ msgstr "Andorra"
1225
 
1226
+ #: src/Helpers.php:62
1227
+ #, fuzzy
1228
+ msgctxt "(Admin)"
1229
+ msgid "Angola"
1230
+ msgstr "Angola"
1231
 
1232
+ #: src/Helpers.php:63
1233
+ #, fuzzy
1234
  msgctxt "(Admin)"
1235
+ msgid "Anguilla"
1236
+ msgstr "Anguilla"
1237
 
1238
+ #: src/Helpers.php:64
 
 
1239
  msgctxt "(Admin)"
1240
+ msgid "Antarctica"
1241
+ msgstr "Antarktis"
1242
 
1243
+ #: src/Helpers.php:65
1244
+ #, fuzzy
1245
  msgctxt "(Admin)"
1246
+ msgid "Antigua and Barbuda"
1247
+ msgstr "Antigua ja Barbuda"
 
 
1248
 
1249
+ #: src/Helpers.php:66
1250
  msgctxt "(Admin)"
1251
+ msgid "Argentina"
1252
+ msgstr "Argentiina"
1253
 
1254
+ #: src/Helpers.php:67
1255
+ msgctxt "(Admin)"
1256
+ msgid "Armenia"
1257
+ msgstr "Armeenia"
1258
 
1259
+ #: src/Helpers.php:68
1260
+ #, fuzzy
1261
  msgctxt "(Admin)"
1262
+ msgid "Aruba"
1263
+ msgstr "Aruba"
1264
 
1265
+ #: src/Helpers.php:69
1266
  msgctxt "(Admin)"
1267
+ msgid "Australia"
1268
+ msgstr "Austraalia"
1269
 
1270
+ #: src/Helpers.php:70
1271
  msgctxt "(Admin)"
1272
+ msgid "Azerbaijan"
1273
+ msgstr "Aserbaidžaan"
 
 
 
 
1274
 
1275
+ #: src/Helpers.php:71
1276
+ #, fuzzy
1277
  msgctxt "(Admin)"
1278
+ msgid "Bahrain"
1279
+ msgstr "Bahrein"
1280
 
1281
+ #: src/Helpers.php:72
 
1282
  msgctxt "(Admin)"
1283
+ msgid "Bahamas"
1284
+ msgstr "Bahama"
1285
 
1286
+ #: src/Helpers.php:73
1287
+ #, fuzzy
1288
  msgctxt "(Admin)"
1289
+ msgid "Bangladesh"
1290
+ msgstr "Bangladesh"
1291
 
1292
+ #: src/Helpers.php:74
1293
+ #, fuzzy
1294
  msgctxt "(Admin)"
1295
+ msgid "Barbados"
1296
+ msgstr "Barbadose"
1297
 
1298
+ #: src/Helpers.php:75
1299
+ #, fuzzy
1300
  msgctxt "(Admin)"
1301
+ msgid "Belarus"
1302
+ msgstr "Valgevene"
1303
 
1304
+ #: src/Helpers.php:76
1305
+ #, fuzzy
1306
  msgctxt "(Admin)"
1307
+ msgid "Belize"
1308
+ msgstr "Belize"
1309
 
1310
+ #: src/Helpers.php:77
1311
+ #, fuzzy
1312
  msgctxt "(Admin)"
1313
+ msgid "Benin"
1314
+ msgstr "Benin"
1315
 
1316
+ #: src/Helpers.php:78
1317
+ #, fuzzy
1318
  msgctxt "(Admin)"
1319
+ msgid "Bermuda"
1320
+ msgstr "Bermuda"
 
 
 
 
1321
 
1322
+ #: src/Helpers.php:79
1323
+ #, fuzzy
1324
  msgctxt "(Admin)"
1325
+ msgid "Bhutan"
1326
+ msgstr "Bhutan"
1327
 
1328
+ #: src/Helpers.php:80
1329
+ #, fuzzy
1330
  msgctxt "(Admin)"
1331
+ msgid "Bolivia, Plurinational State of"
1332
+ msgstr "Boliivia, Plurinational State of"
1333
 
1334
+ #: src/Helpers.php:81
1335
+ #, fuzzy
1336
  msgctxt "(Admin)"
1337
+ msgid "Bonaire, Sint Eustatius and Saba"
1338
+ msgstr "Bonaire, Sint Eustatius ja Saba"
1339
 
1340
+ #: src/Helpers.php:82
1341
  msgctxt "(Admin)"
1342
+ msgid "Bosnia and Herzegovina"
1343
+ msgstr "Bosnia ja Hertsegoviina"
1344
 
1345
+ #: src/Helpers.php:83
1346
+ #, fuzzy
1347
  msgctxt "(Admin)"
1348
+ msgid "Botswana"
1349
+ msgstr "Botswana"
 
 
1350
 
1351
+ #: src/Helpers.php:84
1352
  msgctxt "(Admin)"
1353
+ msgid "Bouvet Island"
1354
+ msgstr "Bouvet saar"
 
 
 
 
1355
 
1356
+ #: src/Helpers.php:85
1357
+ #, fuzzy
1358
  msgctxt "(Admin)"
1359
+ msgid "Brazil"
1360
+ msgstr "Brasiilia"
1361
 
1362
+ #: src/Helpers.php:86
1363
+ #, fuzzy
1364
  msgctxt "(Admin)"
1365
+ msgid "British Indian Ocean Territory"
1366
+ msgstr "Briti India ookeani territoorium"
1367
 
1368
+ #: src/Helpers.php:87
1369
+ #, fuzzy
1370
  msgctxt "(Admin)"
1371
+ msgid "Brunei Darussalam"
1372
+ msgstr "Brunei"
1373
 
1374
+ #: src/Helpers.php:88
1375
+ #, fuzzy
1376
  msgctxt "(Admin)"
1377
+ msgid "Burkina Faso"
1378
+ msgstr "Burkina Faso"
1379
 
1380
+ #: src/Helpers.php:89
1381
+ #, fuzzy
1382
  msgctxt "(Admin)"
1383
+ msgid "Burundi"
1384
+ msgstr "Burundi"
1385
 
1386
+ #: src/Helpers.php:90
1387
  msgctxt "(Admin)"
1388
+ msgid "Cambodia"
1389
+ msgstr "Kambodža"
1390
 
1391
+ #: src/Helpers.php:91
1392
+ #, fuzzy
1393
  msgctxt "(Admin)"
1394
+ msgid "Cameroon"
1395
+ msgstr "Kamerun"
1396
 
1397
+ #: src/Helpers.php:92
1398
+ #, fuzzy
1399
  msgctxt "(Admin)"
1400
+ msgid "Canada"
1401
+ msgstr "Kanada"
 
 
 
 
1402
 
1403
+ #: src/Helpers.php:93
1404
+ #, fuzzy
1405
  msgctxt "(Admin)"
1406
+ msgid "Cape Verde"
1407
+ msgstr "Cabo Verde"
1408
 
1409
+ #: src/Helpers.php:94
1410
+ #, fuzzy
1411
  msgctxt "(Admin)"
1412
+ msgid "Cayman Islands"
1413
+ msgstr "Kaimanisaared"
1414
 
1415
+ #: src/Helpers.php:95
1416
+ #, fuzzy
1417
  msgctxt "(Admin)"
1418
+ msgid "Central African Republic"
1419
+ msgstr "Kesk-Aafrika Vabariik"
1420
 
1421
+ #: src/Helpers.php:96
1422
+ #, fuzzy
1423
+ msgctxt "(Admin)"
1424
+ msgid "Chad"
1425
+ msgstr "Tšaad"
 
1426
 
1427
+ #: src/Helpers.php:97
1428
+ #, fuzzy
1429
  msgctxt "(Admin)"
1430
+ msgid "Chile"
1431
+ msgstr "Tšiili"
1432
 
1433
+ #: src/Helpers.php:98
1434
+ #, fuzzy
1435
  msgctxt "(Admin)"
1436
+ msgid "China"
1437
+ msgstr "Hiina"
1438
 
1439
+ #: src/Helpers.php:99
1440
  msgctxt "(Admin)"
1441
+ msgid "Christmas Island"
1442
+ msgstr "Jõulusaar"
 
 
 
 
1443
 
1444
+ #: src/Helpers.php:100
1445
  msgctxt "(Admin)"
1446
+ msgid "Cocos (Keeling) Islands"
1447
+ msgstr "Cocos (Keelingi) saared"
 
 
 
 
1448
 
1449
+ #: src/Helpers.php:101
1450
+ #, fuzzy
1451
  msgctxt "(Admin)"
1452
+ msgid "Colombia"
1453
+ msgstr "Colombia"
1454
 
1455
+ #: src/Helpers.php:102
1456
  msgctxt "(Admin)"
1457
+ msgid "Comoros"
1458
+ msgstr "Komoorid"
 
 
 
 
1459
 
1460
+ #: src/Helpers.php:103
1461
+ #, fuzzy
1462
  msgctxt "(Admin)"
1463
+ msgid "Congo"
1464
+ msgstr "Kongo"
1465
 
1466
+ #: src/Helpers.php:104
1467
+ #, fuzzy
1468
  msgctxt "(Admin)"
1469
+ msgid "Congo, the Democratic Republic of the"
1470
+ msgstr "Kongo, Euroopa Liidu Demokraatlik Vabariik"
1471
 
1472
+ #: src/Helpers.php:105
1473
+ #, fuzzy
1474
  msgctxt "(Admin)"
1475
+ msgid "Cook Islands"
1476
+ msgstr "Cooki saared"
 
 
 
 
 
 
1477
 
1478
+ #: src/Helpers.php:106
1479
+ #, fuzzy
1480
  msgctxt "(Admin)"
1481
+ msgid "Costa Rica"
1482
+ msgstr "Costa Rica"
1483
 
1484
+ #: src/Helpers.php:107
1485
+ #, fuzzy
1486
  msgctxt "(Admin)"
1487
+ msgid "Côte dIvoire"
1488
+ msgstr "Côte dIvoire"
 
 
1489
 
1490
+ #: src/Helpers.php:108
1491
+ #, fuzzy
1492
  msgctxt "(Admin)"
1493
+ msgid "Cuba"
1494
+ msgstr "Kuuba"
1495
 
1496
+ #: src/Helpers.php:109
1497
+ #, fuzzy
1498
  msgctxt "(Admin)"
1499
+ msgid "Curaçao"
1500
+ msgstr "Curaçao"
 
 
 
 
1501
 
1502
+ #: src/Helpers.php:110
1503
+ #, fuzzy
1504
  msgctxt "(Admin)"
1505
+ msgid "Djibouti"
1506
+ msgstr "Djibouti"
 
 
 
 
1507
 
1508
+ #: src/Helpers.php:111
1509
+ #, fuzzy
1510
  msgctxt "(Admin)"
1511
+ msgid "Dominica"
1512
+ msgstr "Dominica"
 
1513
 
1514
+ #: src/Helpers.php:112
1515
+ #, fuzzy
1516
  msgctxt "(Admin)"
1517
+ msgid "Dominican Republic"
1518
+ msgstr "Dominikaani Vabariik"
1519
 
1520
+ #: src/Helpers.php:113
1521
  msgctxt "(Admin)"
1522
+ msgid "Ecuador"
1523
+ msgstr "Ecuador"
1524
 
1525
+ #: src/Helpers.php:114
1526
+ #, fuzzy
1527
  msgctxt "(Admin)"
1528
+ msgid "Egypt"
1529
+ msgstr "Egiptus"
1530
 
1531
+ #: src/Helpers.php:115
1532
+ #, fuzzy
1533
  msgctxt "(Admin)"
1534
+ msgid "El Salvador"
1535
+ msgstr "El Salvador"
 
 
 
 
1536
 
1537
+ #: src/Helpers.php:116
1538
  msgctxt "(Admin)"
1539
+ msgid "Equatorial Guinea"
1540
+ msgstr "Ekvatoriaal-Guinea"
1541
 
1542
+ #: src/Helpers.php:117
1543
+ #, fuzzy
1544
  msgctxt "(Admin)"
1545
+ msgid "Eritrea"
1546
+ msgstr "Eritrea"
1547
 
1548
+ #: src/Helpers.php:118
1549
+ #, fuzzy
1550
  msgctxt "(Admin)"
1551
+ msgid "Ethiopia"
1552
+ msgstr "Etioopia"
1553
 
1554
+ #: src/Helpers.php:119
1555
  msgctxt "(Admin)"
1556
+ msgid "Falkland Islands (Malvinas)"
1557
+ msgstr "Falklandi saared (Malviini)"
1558
 
1559
+ #: src/Helpers.php:120
1560
  msgctxt "(Admin)"
1561
+ msgid "Faroe Islands"
1562
+ msgstr "Fääri saared"
1563
 
1564
+ #: src/Helpers.php:121
1565
+ #, fuzzy
1566
  msgctxt "(Admin)"
1567
+ msgid "Fiji"
1568
+ msgstr "Fidži"
1569
 
1570
+ #: src/Helpers.php:122
1571
+ #, fuzzy
1572
  msgctxt "(Admin)"
1573
+ msgid "French Guiana"
1574
+ msgstr "Prantsuse Guajaana"
1575
 
1576
+ #: src/Helpers.php:123
1577
+ #, fuzzy
1578
  msgctxt "(Admin)"
1579
+ msgid "French Polynesia"
1580
+ msgstr "Prantsuse Polüneesia"
1581
 
1582
+ #: src/Helpers.php:124
1583
  msgctxt "(Admin)"
1584
+ msgid "French Southern Territories"
1585
+ msgstr "Prantsuse Lõunaalad"
1586
 
1587
+ #: src/Helpers.php:125
1588
+ #, fuzzy
1589
  msgctxt "(Admin)"
1590
+ msgid "Gabon"
1591
+ msgstr "Gaboni"
 
1592
 
1593
+ #: src/Helpers.php:126
1594
+ #, fuzzy
1595
  msgctxt "(Admin)"
1596
+ msgid "Gambia"
1597
+ msgstr "Gambia"
1598
 
1599
+ #: src/Helpers.php:127
1600
  msgctxt "(Admin)"
1601
+ msgid "Georgia"
1602
+ msgstr "Gruusia"
1603
 
1604
+ #: src/Helpers.php:128
1605
+ #, fuzzy
1606
  msgctxt "(Admin)"
1607
+ msgid "Georgia "
1608
+ msgstr "Gruusia "
 
 
 
 
1609
 
1610
+ #: src/Helpers.php:129
1611
+ #, fuzzy
1612
  msgctxt "(Admin)"
1613
+ msgid "Ghana"
1614
+ msgstr "Ghana"
1615
 
1616
+ #: src/Helpers.php:130
1617
+ #, fuzzy
1618
  msgctxt "(Admin)"
1619
+ msgid "Gibraltar"
1620
+ msgstr "Gibraltari"
 
 
 
1621
 
1622
+ #: src/Helpers.php:131
1623
  msgctxt "(Admin)"
1624
+ msgid "Greenland"
1625
+ msgstr "Gröönimaa"
1626
 
1627
+ #: src/Helpers.php:132
1628
+ #, fuzzy
1629
  msgctxt "(Admin)"
1630
+ msgid "Grenada "
1631
+ msgstr "Grenada "
 
1632
 
1633
+ #: src/Helpers.php:133
1634
+ #, fuzzy
1635
  msgctxt "(Admin)"
1636
+ msgid "Guadeloupe "
1637
+ msgstr "Guadeloupe "
1638
 
1639
+ #: src/Helpers.php:134
1640
+ #, fuzzy
1641
+ msgctxt "(Admin)"
1642
+ msgid "Guam"
1643
+ msgstr "Guam"
1644
 
1645
+ #: src/Helpers.php:135
1646
+ msgctxt "(Admin)"
1647
+ msgid "Guatemala"
1648
+ msgstr "Guatemala"
 
1649
 
1650
+ #: src/Helpers.php:136
1651
+ #, fuzzy
1652
+ msgctxt "(Admin)"
1653
+ msgid "Guernsey"
1654
+ msgstr "Guernsey"
1655
 
1656
+ #: src/Helpers.php:137
1657
+ #, fuzzy
1658
+ msgctxt "(Admin)"
1659
+ msgid "Guinea "
1660
+ msgstr "Guinea "
1661
 
1662
+ #: src/Helpers.php:138
1663
+ #, fuzzy
1664
+ msgctxt "(Admin)"
1665
+ msgid "Guinea-Bissau "
1666
+ msgstr "Guinea-bissau "
1667
 
1668
+ #: src/Helpers.php:139
1669
+ #, fuzzy
1670
+ msgctxt "(Admin)"
1671
+ msgid "Guyana "
1672
+ msgstr "Guyana "
1673
 
1674
+ #: src/Helpers.php:140
1675
+ #, fuzzy
1676
+ msgctxt "(Admin)"
1677
+ msgid "Haiti "
1678
+ msgstr "Haiti "
 
 
1679
 
1680
+ #: src/Helpers.php:141
1681
+ #, fuzzy
1682
  msgctxt "(Admin)"
1683
+ msgid "Heard Island and McDonald Islands "
1684
+ msgstr "Heardi saar ja McDonaldi saared "
1685
 
1686
+ #: src/Helpers.php:142
1687
+ #, fuzzy
1688
  msgctxt "(Admin)"
1689
+ msgid "Holy See (Vatican City State) "
1690
+ msgstr "Püha Tool (Vatikani Linnriik) "
1691
 
1692
+ #: src/Helpers.php:143
1693
+ #, fuzzy
1694
  msgctxt "(Admin)"
1695
+ msgid "Honduras "
1696
+ msgstr "Honduras "
1697
 
1698
+ #: src/Helpers.php:144
1699
+ #, fuzzy
1700
  msgctxt "(Admin)"
1701
+ msgid "Hong Kong "
1702
+ msgstr "Hongkong "
1703
 
1704
+ #: src/Helpers.php:145
1705
+ #, fuzzy
1706
  msgctxt "(Admin)"
1707
+ msgid "India "
1708
+ msgstr "India "
1709
 
1710
+ #: src/Helpers.php:146
1711
+ #, fuzzy
1712
  msgctxt "(Admin)"
1713
+ msgid "Indonesia "
1714
+ msgstr "Indoneesia "
1715
 
1716
+ #: src/Helpers.php:147
1717
+ #, fuzzy
1718
  msgctxt "(Admin)"
1719
+ msgid "Iran, Islamic Republic of "
1720
+ msgstr "Iraan, Islamivabariik "
1721
 
1722
+ #: src/Helpers.php:148
1723
+ #, fuzzy
1724
  msgctxt "(Admin)"
1725
+ msgid "Iraq "
1726
+ msgstr "Iraak "
1727
 
1728
+ #: src/Helpers.php:149
1729
+ #, fuzzy
1730
  msgctxt "(Admin)"
1731
+ msgid "Isle of Man "
1732
+ msgstr "Mani saar "
1733
 
1734
+ #: src/Helpers.php:150
1735
+ #, fuzzy
1736
  msgctxt "(Admin)"
1737
+ msgid "Israel "
1738
+ msgstr "Iisrael "
1739
 
1740
+ #: src/Helpers.php:151
1741
+ #, fuzzy
1742
  msgctxt "(Admin)"
1743
+ msgid "Jamaica "
1744
+ msgstr "Jamaica "
1745
 
1746
+ #: src/Helpers.php:152
1747
+ #, fuzzy
1748
  msgctxt "(Admin)"
1749
+ msgid "Japan "
1750
+ msgstr "Jaapan "
1751
 
1752
+ #: src/Helpers.php:153
1753
+ #, fuzzy
1754
+ msgctxt "(Admin)"
1755
+ msgid "Jersey "
1756
+ msgstr "Jersey "
1757
 
1758
+ #: src/Helpers.php:154
1759
+ #, fuzzy
1760
  msgctxt "(Admin)"
1761
+ msgid "Jordan "
1762
+ msgstr "Jordaania "
1763
 
1764
+ #: src/Helpers.php:155
1765
+ #, fuzzy
1766
  msgctxt "(Admin)"
1767
+ msgid "Kazakhstan "
1768
+ msgstr "Kasahstan "
1769
 
1770
+ #: src/Helpers.php:156
1771
+ #, fuzzy
1772
  msgctxt "(Admin)"
1773
+ msgid "Kenya "
1774
+ msgstr "Kenya "
1775
 
1776
+ #: src/Helpers.php:157
1777
+ #, fuzzy
1778
  msgctxt "(Admin)"
1779
+ msgid "Kiribati "
1780
+ msgstr "Kiribati "
1781
 
1782
+ #: src/Helpers.php:158
1783
+ #, fuzzy
1784
  msgctxt "(Admin)"
1785
+ msgid "Korea, Democratic Peoples Republic of "
1786
+ msgstr "Korea, Euroopa Rahvademokraatlik Vabariik "
1787
 
1788
+ #: src/Helpers.php:159
1789
+ #, fuzzy
1790
  msgctxt "(Admin)"
1791
+ msgid "Korea, Republic of "
1792
+ msgstr "Korea, Korea Vabariik "
1793
 
1794
+ #: src/Helpers.php:160
1795
+ #, fuzzy
1796
  msgctxt "(Admin)"
1797
+ msgid "Kuwait "
1798
+ msgstr "Kuveit "
1799
 
1800
+ #: src/Helpers.php:161
1801
+ #, fuzzy
1802
  msgctxt "(Admin)"
1803
+ msgid "Kyrgyzstan "
1804
+ msgstr "Kõrgõzstan "
1805
 
1806
+ #: src/Helpers.php:162
1807
+ #, fuzzy
1808
  msgctxt "(Admin)"
1809
+ msgid "Lao Peoples Democratic Republic "
1810
+ msgstr "Laose Demokraatlik Rahvavabariik "
1811
 
1812
+ #: src/Helpers.php:163
1813
+ #, fuzzy
1814
  msgctxt "(Admin)"
1815
+ msgid "Lebanon "
1816
+ msgstr "Liibanon "
1817
 
1818
+ #: src/Helpers.php:164
1819
+ #, fuzzy
1820
  msgctxt "(Admin)"
1821
+ msgid "Lesotho "
1822
+ msgstr "Lesotho "
 
 
 
 
1823
 
1824
+ #: src/Helpers.php:165
1825
+ #, fuzzy
1826
+ msgctxt "(Admin)"
1827
+ msgid "Liberia "
1828
+ msgstr "Libeeria "
1829
 
1830
+ #: src/Helpers.php:166
1831
+ #, fuzzy
1832
+ msgctxt "(Admin)"
1833
+ msgid "Libya "
1834
+ msgstr "Liibüa "
1835
 
1836
+ #: src/Helpers.php:167
1837
+ #, fuzzy
1838
+ msgctxt "(Admin)"
1839
+ msgid "Macao "
1840
+ msgstr "Macao "
1841
 
1842
+ #: src/Helpers.php:168
1843
+ #, fuzzy
1844
+ msgctxt "(Admin)"
1845
+ msgid "Macedonia, the Former Yugoslav Republic of "
1846
+ msgstr "Makedoonia, endine Jugoslaavia Makedoonia Vabariik "
1847
 
1848
+ #: src/Helpers.php:169
1849
+ #, fuzzy
1850
+ msgctxt "(Admin)"
1851
+ msgid "Madagascar "
1852
+ msgstr "Madagaskar "
1853
 
1854
+ #: src/Helpers.php:170
1855
+ #, fuzzy
1856
+ msgctxt "(Admin)"
1857
+ msgid "Malawi "
1858
+ msgstr "Malawi "
1859
 
1860
+ #: src/Helpers.php:171
1861
+ #, fuzzy
1862
  msgctxt "(Admin)"
1863
+ msgid "Malaysia "
1864
+ msgstr "Malaisia "
1865
 
1866
+ #: src/Helpers.php:172
1867
+ #, fuzzy
1868
  msgctxt "(Admin)"
1869
+ msgid "Maldives "
1870
+ msgstr "Maldiivid "
1871
 
1872
+ #: src/Helpers.php:173
1873
+ #, fuzzy
1874
+ msgctxt "(Admin)"
1875
+ msgid "Mali "
1876
+ msgstr "Mali "
1877
 
1878
+ #: src/Helpers.php:174
1879
+ #, fuzzy
1880
+ msgctxt "(Admin)"
1881
+ msgid "Marshall Islands "
1882
+ msgstr "Marshalli saared "
1883
 
1884
+ #: src/Helpers.php:175
1885
+ #, fuzzy
1886
+ msgctxt "(Admin)"
1887
+ msgid "Martinique "
1888
+ msgstr "Martinique "
1889
 
1890
+ #: src/Helpers.php:176
1891
+ #, fuzzy
1892
  msgctxt "(Admin)"
1893
+ msgid "Mauritania "
1894
+ msgstr "Mauritaania "
 
 
 
 
1895
 
1896
+ #: src/Helpers.php:177
1897
+ #, fuzzy
1898
+ msgctxt "(Admin)"
1899
+ msgid "Mauritius "
1900
+ msgstr "Mauritiuse "
1901
 
1902
+ #: src/Helpers.php:178
1903
+ #, fuzzy
1904
+ msgctxt "(Admin)"
1905
+ msgid "Mayotte "
1906
+ msgstr "Mayotte "
1907
 
1908
+ #: src/Helpers.php:179
1909
+ #, fuzzy
1910
+ msgctxt "(Admin)"
1911
+ msgid "Mexico "
1912
+ msgstr "Mehhiko "
1913
 
1914
+ #: src/Helpers.php:180
1915
+ #, fuzzy
1916
+ msgctxt "(Admin)"
1917
+ msgid "Micronesia, Federated States of "
1918
+ msgstr "Mikroneesia, "
1919
 
1920
+ #: src/Helpers.php:181
1921
+ #, fuzzy
1922
+ msgctxt "(Admin)"
1923
+ msgid "Moldova, Republic of "
1924
+ msgstr "Moldova, Vabariik "
1925
 
1926
+ #: src/Helpers.php:182
1927
+ #, fuzzy
1928
  msgctxt "(Admin)"
1929
+ msgid "Monaco "
1930
+ msgstr "Monaco "
1931
 
1932
+ #: src/Helpers.php:183
1933
+ #, fuzzy
1934
  msgctxt "(Admin)"
1935
+ msgid "Mongolia "
1936
+ msgstr "Mongoolia "
1937
 
1938
+ #: src/Helpers.php:184
1939
  #, fuzzy
1940
+ msgctxt "(Admin)"
1941
+ msgid "Montenegro "
1942
+ msgstr "Montenegro "
 
1943
 
1944
+ #: src/Helpers.php:185
1945
+ #, fuzzy
1946
  msgctxt "(Admin)"
1947
+ msgid "Montserrat "
1948
+ msgstr "Montserrat "
1949
 
1950
+ #: src/Helpers.php:186
1951
+ #, fuzzy
1952
  msgctxt "(Admin)"
1953
+ msgid "Morocco "
1954
+ msgstr "Maroko "
1955
 
1956
+ #: src/Helpers.php:187
1957
+ #, fuzzy
1958
  msgctxt "(Admin)"
1959
+ msgid "Mozambique "
1960
+ msgstr "Mosambiik "
1961
 
1962
+ #: src/Helpers.php:188
1963
+ #, fuzzy
1964
  msgctxt "(Admin)"
1965
+ msgid "Myanmar "
1966
+ msgstr "Myanmar "
1967
 
1968
+ #: src/Helpers.php:189
1969
+ #, fuzzy
1970
+ msgctxt "(Admin)"
1971
+ msgid "Namibia "
1972
+ msgstr "Namiibia "
1973
 
1974
+ #: src/Helpers.php:190
1975
+ #, fuzzy
1976
+ msgctxt "(Admin)"
1977
+ msgid "Nauru "
1978
+ msgstr "Nauru "
1979
 
1980
+ #: src/Helpers.php:191
1981
+ #, fuzzy
1982
+ msgctxt "(Admin)"
1983
+ msgid "Nepal "
1984
+ msgstr "Nepal "
1985
 
1986
+ #: src/Helpers.php:192
1987
+ #, fuzzy
1988
+ msgctxt "(Admin)"
1989
+ msgid "New Caledonia "
1990
+ msgstr "Uus-Kaledoonia "
1991
 
1992
+ #: src/Helpers.php:193
1993
  #, fuzzy
1994
+ msgctxt "(Admin)"
1995
+ msgid "New Zealand "
1996
+ msgstr "Uus-Meremaa "
1997
 
1998
+ #: src/Helpers.php:194
1999
+ #, fuzzy
2000
+ msgctxt "(Admin)"
2001
+ msgid "Nicaragua "
2002
+ msgstr "Nicaragua "
2003
 
2004
+ #: src/Helpers.php:195
2005
+ #, fuzzy
2006
+ msgctxt "(Admin)"
2007
+ msgid "Niger "
2008
+ msgstr "Niger "
2009
 
2010
+ #: src/Helpers.php:196
2011
+ #, fuzzy
2012
  msgctxt "(Admin)"
2013
+ msgid "Nigeria "
2014
+ msgstr "Nigeeria "
2015
 
2016
+ #: src/Helpers.php:197
2017
+ #, fuzzy
2018
+ msgctxt "(Admin)"
2019
+ msgid "Niue "
2020
+ msgstr "Niue "
 
 
2021
 
2022
+ #: src/Helpers.php:198
2023
+ #, fuzzy
2024
+ msgctxt "(Admin)"
2025
+ msgid "Norfolk Island "
2026
+ msgstr "Norfolki saar "
2027
 
2028
+ #: src/Helpers.php:199
2029
+ #, fuzzy
2030
+ msgctxt "(Admin)"
2031
+ msgid "Northern Mariana Islands "
2032
+ msgstr "Põhja-Mariaanid "
2033
 
2034
+ #: src/Helpers.php:200
2035
+ #, fuzzy
2036
+ msgctxt "(Admin)"
2037
+ msgid "Oman "
2038
+ msgstr "Omaan "
2039
 
2040
+ #: src/Helpers.php:201
2041
+ #, fuzzy
2042
+ msgctxt "(Admin)"
2043
+ msgid "Pakistan "
2044
+ msgstr "Pakistani "
2045
 
2046
+ #: src/Helpers.php:202
2047
+ #, fuzzy
2048
  msgctxt "(Admin)"
2049
+ msgid "Palau "
2050
+ msgstr "Palau "
2051
 
2052
+ #: src/Helpers.php:203
2053
+ #, fuzzy
2054
  msgctxt "(Admin)"
2055
+ msgid "Palestine, State of "
2056
+ msgstr "Palestiina, "
2057
 
2058
+ #: src/Helpers.php:204
2059
+ #, fuzzy
2060
+ msgctxt "(Admin)"
2061
+ msgid "Panama "
2062
+ msgstr "Panama "
 
2063
 
2064
+ #: src/Helpers.php:205
2065
+ #, fuzzy
2066
+ msgctxt "(Admin)"
2067
+ msgid "Papua New Guinea "
2068
+ msgstr "Paapua Uus-Guinea "
2069
 
2070
+ #: src/Helpers.php:206
2071
+ #, fuzzy
2072
+ msgctxt "(Admin)"
2073
+ msgid "Paraguay "
2074
+ msgstr "Paraguay "
2075
 
2076
+ #: src/Helpers.php:207
2077
+ #, fuzzy
2078
+ msgctxt "(Admin)"
2079
+ msgid "Peru "
2080
+ msgstr "Peruu "
2081
 
2082
+ #: src/Helpers.php:208
2083
+ #, fuzzy
2084
  msgctxt "(Admin)"
2085
+ msgid "Philippines "
2086
+ msgstr "Filipiinid "
2087
 
2088
+ #: src/Helpers.php:209
2089
+ #, fuzzy
2090
  msgctxt "(Admin)"
2091
+ msgid "Pitcairn "
2092
+ msgstr "Pitcairn "
2093
 
2094
+ #: src/Helpers.php:210
2095
+ #, fuzzy
2096
  msgctxt "(Admin)"
2097
+ msgid "Puerto Rico "
2098
+ msgstr "Puerto Rico "
2099
 
2100
+ #: src/Helpers.php:211
2101
+ #, fuzzy
2102
  msgctxt "(Admin)"
2103
+ msgid "Qatar "
2104
+ msgstr "Katar "
2105
 
2106
+ #: src/Helpers.php:212
2107
+ #, fuzzy
2108
  msgctxt "(Admin)"
2109
+ msgid "Réunion "
2110
+ msgstr "Réunion "
2111
 
2112
+ #: src/Helpers.php:213
2113
+ #, fuzzy
2114
  msgctxt "(Admin)"
2115
+ msgid "Russian Federation "
2116
+ msgstr "Venemaa Föderatsioon "
2117
 
2118
+ #: src/Helpers.php:214
2119
+ #, fuzzy
2120
  msgctxt "(Admin)"
2121
+ msgid "Rwanda "
2122
+ msgstr "Rwanda "
2123
 
2124
+ #: src/Helpers.php:215
2125
+ #, fuzzy
2126
  msgctxt "(Admin)"
2127
+ msgid "Saint Barthélemy "
2128
+ msgstr "Saint Barthélemy "
2129
 
2130
+ #: src/Helpers.php:216
2131
+ #, fuzzy
2132
  msgctxt "(Admin)"
2133
+ msgid "Saint Helena, Ascension and Tristan da Cunha "
2134
+ msgstr "Saint Helena, Ülestõus ja Tristan da Cunha "
2135
 
2136
+ #: src/Helpers.php:217
2137
+ #, fuzzy
2138
  msgctxt "(Admin)"
2139
+ msgid "Saint Kitts and Nevis "
2140
+ msgstr "Saint Kitts ja Nevis "
2141
 
2142
+ #: src/Helpers.php:218
2143
+ #, fuzzy
2144
  msgctxt "(Admin)"
2145
+ msgid "Saint Lucia "
2146
+ msgstr "Saint Lucia "
2147
 
2148
+ #: src/Helpers.php:219
2149
+ #, fuzzy
2150
  msgctxt "(Admin)"
2151
+ msgid "Saint Martin (French part) "
2152
+ msgstr "Saint Martin (prantsuse osa) "
2153
 
2154
+ #: src/Helpers.php:220
2155
+ #, fuzzy
2156
  msgctxt "(Admin)"
2157
+ msgid "Saint Pierre and Miquelon "
2158
+ msgstr "Saint Pierre ja Miquelon "
2159
 
2160
+ #: src/Helpers.php:221
2161
+ #, fuzzy
2162
  msgctxt "(Admin)"
2163
+ msgid "Saint Vincent and the Grenadines "
2164
+ msgstr "Saint Vincent ja Grenadiinid "
2165
 
2166
+ #: src/Helpers.php:222
2167
+ #, fuzzy
2168
  msgctxt "(Admin)"
2169
+ msgid "Samoa "
2170
+ msgstr "Samoa "
2171
 
2172
+ #: src/Helpers.php:223
2173
+ #, fuzzy
2174
  msgctxt "(Admin)"
2175
+ msgid "San Marino "
2176
+ msgstr "San Marino "
2177
 
2178
+ #: src/Helpers.php:224
2179
+ #, fuzzy
2180
  msgctxt "(Admin)"
2181
+ msgid "Sao Tome and Principe "
2182
+ msgstr "Sao Tome ja Principe "
2183
 
2184
+ #: src/Helpers.php:225
2185
+ #, fuzzy
2186
  msgctxt "(Admin)"
2187
+ msgid "Saudi Arabia "
2188
+ msgstr "Saudi Araabia "
2189
 
2190
+ #: src/Helpers.php:226
2191
+ #, fuzzy
2192
  msgctxt "(Admin)"
2193
+ msgid "Senegal "
2194
+ msgstr "Senegal "
2195
 
2196
+ #: src/Helpers.php:227
2197
+ #, fuzzy
2198
  msgctxt "(Admin)"
2199
+ msgid "Serbia "
2200
+ msgstr "Serbia "
2201
 
2202
+ #: src/Helpers.php:228
2203
+ #, fuzzy
2204
  msgctxt "(Admin)"
2205
+ msgid "Seychelles "
2206
+ msgstr "Seišellid "
2207
 
2208
+ #: src/Helpers.php:229
2209
+ #, fuzzy
2210
  msgctxt "(Admin)"
2211
+ msgid "Sierra Leone "
2212
+ msgstr "Sierra Leone "
2213
 
2214
+ #: src/Helpers.php:230
2215
+ #, fuzzy
2216
  msgctxt "(Admin)"
2217
+ msgid "Singapore "
2218
+ msgstr "Singapur "
2219
 
2220
+ #: src/Helpers.php:231
2221
+ #, fuzzy
2222
  msgctxt "(Admin)"
2223
+ msgid "Sint Maarten (Dutch part) "
2224
+ msgstr "Sint Maarten (hollandi osa) "
2225
 
2226
+ #: src/Helpers.php:232
2227
+ #, fuzzy
2228
  msgctxt "(Admin)"
2229
+ msgid "Solomon Islands "
2230
+ msgstr "Saalomoni Saared "
2231
 
2232
+ #: src/Helpers.php:233
2233
+ #, fuzzy
2234
  msgctxt "(Admin)"
2235
+ msgid "Somalia "
2236
+ msgstr "Somaalia "
2237
 
2238
+ #: src/Helpers.php:234
2239
+ #, fuzzy
2240
  msgctxt "(Admin)"
2241
+ msgid "South Africa "
2242
+ msgstr "Lõuna-Aafrika "
2243
 
2244
+ #: src/Helpers.php:235
2245
+ #, fuzzy
2246
  msgctxt "(Admin)"
2247
+ msgid "South Georgia and the South Sandwich Islands "
2248
+ msgstr "Lõuna-Georgia ja Lõuna-Sandwichi saared "
2249
 
2250
+ #: src/Helpers.php:236
2251
+ #, fuzzy
2252
  msgctxt "(Admin)"
2253
+ msgid "South Sudan "
2254
+ msgstr "Lõuna-Sudaan "
2255
 
2256
+ #: src/Helpers.php:237
2257
+ #, fuzzy
2258
  msgctxt "(Admin)"
2259
+ msgid "Sri Lanka "
2260
+ msgstr "Sri Lanka "
2261
 
2262
+ #: src/Helpers.php:238
2263
+ #, fuzzy
2264
+ msgctxt "(Admin)"
2265
+ msgid "Sudan "
2266
+ msgstr "Sudaan "
2267
 
2268
+ #: src/Helpers.php:239
2269
+ #, fuzzy
2270
+ msgctxt "(Admin)"
2271
+ msgid "Suriname "
2272
+ msgstr "Suriname "
2273
 
2274
+ #: src/Helpers.php:240
2275
+ #, fuzzy
2276
+ msgctxt "(Admin)"
2277
+ msgid "Svalbard and Jan Mayen "
2278
+ msgstr "Svalbard ja Jan Mayen "
2279
 
2280
+ #: src/Helpers.php:241
2281
+ #, fuzzy
2282
+ msgctxt "(Admin)"
2283
+ msgid "Swaziland "
2284
+ msgstr "Svaasimaa "
2285
 
2286
+ #: src/Helpers.php:242
2287
+ #, fuzzy
2288
+ msgctxt "(Admin)"
2289
+ msgid "Syrian Arab Republic "
2290
+ msgstr "Süüria Araabia Vabariik "
2291
 
2292
+ #: src/Helpers.php:243
2293
+ #, fuzzy
2294
+ msgctxt "(Admin)"
2295
+ msgid "Taiwan "
2296
+ msgstr "Taiwan "
2297
 
2298
+ #: src/Helpers.php:244
2299
+ #, fuzzy
2300
+ msgctxt "(Admin)"
2301
+ msgid "Tajikistan "
2302
+ msgstr "Tadžikistan "
2303
 
2304
+ #: src/Helpers.php:245
2305
+ #, fuzzy
2306
+ msgctxt "(Admin)"
2307
+ msgid "Tanzania, United Republic of "
2308
+ msgstr "Tansaania, Ameerika Ühendriikide "
2309
 
2310
+ #: src/Helpers.php:246
2311
+ #, fuzzy
 
 
 
2312
  msgctxt "(Admin)"
2313
+ msgid "Thailand "
2314
+ msgstr "Tai "
2315
 
2316
+ #: src/Helpers.php:247
2317
+ #, fuzzy
2318
  msgctxt "(Admin)"
2319
+ msgid "Timor-Leste "
2320
+ msgstr "Timor-Leste "
2321
 
2322
+ #: src/Helpers.php:248
2323
+ #, fuzzy
2324
  msgctxt "(Admin)"
2325
+ msgid "Togo "
2326
+ msgstr "Togo "
2327
 
2328
+ #: src/Helpers.php:249
2329
+ #, fuzzy
2330
  msgctxt "(Admin)"
2331
+ msgid "Tokelau "
2332
+ msgstr "Tokelau "
2333
 
2334
+ #: src/Helpers.php:250
2335
+ #, fuzzy
2336
  msgctxt "(Admin)"
2337
+ msgid "Tonga "
2338
+ msgstr "Tonga "
2339
 
2340
+ #: src/Helpers.php:251
2341
+ #, fuzzy
2342
  msgctxt "(Admin)"
2343
+ msgid "Trinidad and Tobago "
2344
+ msgstr "Trinidad ja Tobago "
2345
 
2346
+ #: src/Helpers.php:252
2347
+ #, fuzzy
2348
  msgctxt "(Admin)"
2349
+ msgid "Tunisia "
2350
+ msgstr "Tuneesia "
 
 
 
 
 
 
2351
 
2352
+ #: src/Helpers.php:253
2353
+ #, fuzzy
2354
  msgctxt "(Admin)"
2355
+ msgid "Turkey "
2356
+ msgstr "Türgi "
2357
 
2358
+ #: src/Helpers.php:254
2359
+ #, fuzzy
2360
  msgctxt "(Admin)"
2361
+ msgid "Turkmenistan "
2362
+ msgstr "Türkmenistan "
2363
 
2364
+ #: src/Helpers.php:255
2365
+ #, fuzzy
2366
  msgctxt "(Admin)"
2367
+ msgid "Turks and Caicos Islands "
2368
+ msgstr "Türklased ja Caicose saared "
2369
 
2370
+ #: src/Helpers.php:256
2371
+ #, fuzzy
2372
  msgctxt "(Admin)"
2373
+ msgid "Tuvalu "
2374
+ msgstr "Tuvalu "
2375
 
2376
+ #: src/Helpers.php:257
2377
+ #, fuzzy
2378
  msgctxt "(Admin)"
2379
+ msgid "Uganda "
2380
+ msgstr "Uganda "
 
 
 
2381
 
2382
+ #: src/Helpers.php:258
2383
+ #, fuzzy
2384
  msgctxt "(Admin)"
2385
+ msgid "Ukraine "
2386
+ msgstr "Ukraina "
 
 
 
 
2387
 
2388
+ #: src/Helpers.php:259
2389
+ #, fuzzy
2390
  msgctxt "(Admin)"
2391
+ msgid "United Arab Emirates "
2392
+ msgstr "Araabia Ühendemiraadid "
2393
 
2394
+ #: src/Helpers.php:260
2395
+ #, fuzzy
2396
  msgctxt "(Admin)"
2397
+ msgid "United States Minor Outlying Islands "
2398
+ msgstr "Ameerika Ühendriikide väikesed äärmised saared "
2399
 
2400
+ #: src/Helpers.php:261
2401
+ #, fuzzy
2402
  msgctxt "(Admin)"
2403
+ msgid "Uruguay "
2404
+ msgstr "Uruguay "
2405
 
2406
+ #: src/Helpers.php:262
2407
+ #, fuzzy
2408
  msgctxt "(Admin)"
2409
+ msgid "Uzbekistan "
2410
+ msgstr "Usbekistan "
 
2411
 
2412
+ #: src/Helpers.php:263
2413
+ #, fuzzy
2414
  msgctxt "(Admin)"
2415
+ msgid "Vanuatu "
2416
+ msgstr "Vanuatu "
2417
 
2418
+ #: src/Helpers.php:264
2419
+ #, fuzzy
2420
  msgctxt "(Admin)"
2421
+ msgid "Venezuela, Bolivarian Republic of "
2422
+ msgstr "Venezuela, Bolivari Vabariik "
 
 
 
 
2423
 
2424
+ #: src/Helpers.php:265
2425
+ #, fuzzy
2426
  msgctxt "(Admin)"
2427
+ msgid "Viet Nam "
2428
+ msgstr "Vietnam "
2429
 
2430
+ #: src/Helpers.php:266
2431
+ #, fuzzy
2432
  msgctxt "(Admin)"
2433
+ msgid "Virgin Islands, British "
2434
+ msgstr "Neitsisaared, Briti "
 
 
 
 
 
 
 
 
 
2435
 
2436
+ #: src/Helpers.php:267
2437
+ #, fuzzy
2438
  msgctxt "(Admin)"
2439
+ msgid "Virgin Islands, U.S. "
2440
+ msgstr "Neitsisaared, USA "
 
 
 
2441
 
2442
+ #: src/Helpers.php:268
2443
+ #, fuzzy
2444
  msgctxt "(Admin)"
2445
+ msgid "Wallis and Futuna "
2446
+ msgstr "Wallis ja Futuna "
2447
 
2448
+ #: src/Helpers.php:269
2449
+ #, fuzzy
2450
  msgctxt "(Admin)"
2451
+ msgid "Western Sahara "
2452
+ msgstr "Lääne-Sahara "
 
 
 
 
2453
 
2454
+ #: src/Helpers.php:270
2455
+ #, fuzzy
2456
  msgctxt "(Admin)"
2457
+ msgid "Yemen "
2458
+ msgstr "Jeemen "
2459
 
2460
+ #: src/Helpers.php:271
2461
+ #, fuzzy
2462
  msgctxt "(Admin)"
2463
+ msgid "Zambia "
2464
+ msgstr "Sambia "
2465
 
2466
+ #: src/Helpers.php:272
2467
+ #, fuzzy
2468
  msgctxt "(Admin)"
2469
+ msgid "Zimbabwe "
2470
+ msgstr "Zimbabwe "
 
 
 
 
 
 
 
 
 
 
2471
 
2472
+ #: src/Helpers.php:287
2473
+ msgctxt "(Admin)"
2474
+ msgid "Iceland"
2475
+ msgstr "Island"
2476
 
2477
+ #: src/Helpers.php:288
2478
+ msgctxt "(Admin)"
2479
+ msgid "Norway"
2480
+ msgstr "Norra"
2481
 
2482
+ #: src/Helpers.php:289
2483
+ #, fuzzy
2484
  msgctxt "(Admin)"
2485
+ msgid "Liechtenstein"
2486
+ msgstr "Liechtenstein"
2487
 
2488
+ #: src/Helpers.php:290
2489
  msgctxt "(Admin)"
2490
+ msgid "Switzerland"
2491
+ msgstr "Šveits"
2492
 
2493
+ #: src/Helpers.php:291
2494
+ #, fuzzy
2495
  msgctxt "(Admin)"
2496
+ msgid "United States"
2497
+ msgstr "Ameerika Ühendriigid"
2498
+
2499
+ #: src/Helpers.php:377
2500
+ msgid "An error has occurred. Please contact the site administrator."
2501
+ msgstr "Süsteemis tekkis viga. Palun võtke ühendust lehe haldajaga."
2502
 
2503
+ #: src/Installer/Installer.php:146
2504
+ #, fuzzy
2505
+ #| msgctxt "(Admin)"
2506
+ #| msgid "Setup Wizard"
2507
  msgctxt "(Admin)"
2508
+ msgid "Setup Wizard"
2509
+ msgstr "Häälestusviisard"
2510
 
2511
+ #: src/Installer/Steps/ConfigurationPages.php:23
2512
+ #: src/Installer/Steps/ConfigurationPages.php:33
2513
+ #: src/Installer/Steps/PolicySettings.php:23
2514
+ #: src/Installer/Steps/PolicySettings.php:48
2515
+ #, fuzzy
2516
+ #| msgctxt "(Admin)"
2517
+ #| msgid "&mdash; Create a new page &mdash;"
2518
+ msgctxt "(Admin)"
2519
+ msgid "&mdash; Create a new page &mdash;"
2520
+ msgstr "&mdash; Uue lehe loomine &mdash;"
2521
 
2522
+ #: src/Installer/Steps/PolicySettings.php:38
2523
+ #, fuzzy
2524
+ #| msgctxt "(Admin)"
2525
+ #| msgid ""
2526
+ #| "We have automatically selected your WooCommerce Terms & Conditions page."
2527
  msgctxt "(Admin)"
2528
  msgid ""
2529
+ "We have automatically selected your WooCommerce Terms & Conditions page."
 
2530
  msgstr ""
2531
+ "Me oleme automaatselt valinud oma WooCommerce'i nõuete ja tingimuste lehe."
 
 
2532
 
2533
+ #: src/Modules/ContactForm7/ContactForm7.php:35
2534
+ #, fuzzy
2535
+ #| msgctxt "(Admin)"
2536
+ #| msgid "gdpr terms txt"
2537
  msgctxt "(Admin)"
2538
+ msgid "gdpr terms txt"
2539
+ msgstr "gdpr tingimused txt"
2540
 
2541
+ #: src/Modules/ContactForm7/Flamingo.php:23
2542
+ #: views/modules/contact-form-7/form-privacy-tab.php:1
2543
+ msgid "Privacy"
2544
+ msgstr "Privaatsus"
2545
+
2546
+ #: src/Modules/ContactForm7/Flamingo.php:67
2547
+ #, fuzzy
2548
+ msgid "Form submissions: "
2549
+ msgstr "Vormi esitamised: "
2550
 
2551
+ #: src/Modules/ContactForm7/Flamingo.php:162
2552
+ #, fuzzy
2553
+ #| msgctxt "(Admin)"
2554
+ #| msgid "Do you want form to be GDPR compliance."
2555
  msgctxt "(Admin)"
2556
+ msgid "Do you want form to be GDPR compliance."
2557
+ msgstr "Kas soovite vormi olla GDPR vastavusse."
2558
 
2559
+ #: src/Modules/ContactForm7/Flamingo.php:163
2560
+ #, fuzzy
2561
+ #| msgctxt "(Admin)"
2562
+ #| msgid ""
2563
+ #| "You have installed flamingo, To make this GDPR compliance in individual "
2564
+ #| "contact form's privacy tab check the checkbox for include data to be "
2565
+ #| "search on Privacy tool."
2566
  msgctxt "(Admin)"
2567
  msgid ""
2568
+ "You have installed flamingo, To make this GDPR compliance in individual "
2569
+ "contact form's privacy tab check the checkbox for include data to be search "
2570
+ "on Privacy tool."
2571
  msgstr ""
2572
+ "Olete installinud flamingo, Selle GDPR-i vastavuse tagamiseks individuaalse "
2573
+ "kontakti vormi privaatsustekaardil märkige ruut, et lisada andmeid, mida "
2574
+ "soovite otsida privaatsuse tööriist."
2575
 
2576
+ #: src/Modules/EddGdpr/EddGdpr.php:47
2577
+ #, fuzzy
2578
+ msgid "EDD Customer Information"
2579
+ msgstr "EDD klienditeave"
2580
 
2581
+ #: src/Modules/EddGdpr/EddGdpr.php:56
2582
+ #, fuzzy
2583
+ msgid "EDD Order Information"
2584
+ msgstr "EDD tellimuse teave"
2585
 
2586
+ #: src/Modules/EddGdpr/EddGdpr.php:65
2587
+ #, fuzzy
2588
+ msgid "EDD File Downloads"
2589
+ msgstr "EDD-failide allalaadimine"
2590
 
2591
+ #: src/Modules/EddGdpr/EddGdpr.php:74
2592
+ #, fuzzy
2593
+ msgid "EDD API Access Logs"
2594
+ msgstr "EDD API juurdepääsulogid"
2595
+
2596
+ #: src/Modules/NewsletterGdpr/NewsletterGdpr.php:79
2597
+ #, fuzzy
2598
+ msgid "Newsletter Form submissions: "
2599
+ msgstr "Uudiskirja vormi esitamised: "
2600
+
2601
+ #: src/Modules/WooCommerceGdpr/WooCommerceGdpr.php:46
2602
+ msgid "Customer Information"
2603
+ msgstr "Kliendi andmed"
2604
+
2605
+ #: src/Modules/WooCommerceGdpr/WooCommerceGdpr.php:53
2606
+ #, fuzzy
2607
+ msgid "Order Information"
2608
+ msgstr "Tellimuse teave"
2609
+
2610
+ #: src/Modules/WooCommerceGdpr/WooCommerceGdpr.php:162
2611
+ msgid "Please acknowledge the Privacy Policy"
2612
+ msgstr "Palun kinnitage privaatsuspoliitikat"
2613
+
2614
+ #: src/Modules/WooCommerceGdpr/WooCommerceGdpr.php:177
2615
+ #, fuzzy
2616
+ #| msgctxt "(Admin)"
2617
+ #| msgid "Your Privacy Policy has been generated."
2618
+ msgid "Privacy Policy consent is required!"
2619
+ msgstr "Teie privaatsuspoliitikat on loodud."
2620
+
2621
+ #: src/Router.php:80 src/Router.php:92 src/Router.php:125 src/Router.php:141
2622
+ #, php-format
2623
+ msgid "Nonce error for action \"%s\". Please go back and try again!"
2624
+ msgstr "VIGA \"%s\". Palun minge tagasi ja proovige uuesti!"
2625
 
2626
+ #: src/Router.php:149
2627
+ #, fuzzy
2628
+ #| msgctxt "(Admin)"
2629
+ #| msgid "You do not have the required permissions to perform this action!"
2630
  msgctxt "(Admin)"
2631
+ msgid "You do not have the required permissions to perform this action!"
2632
+ msgstr "Teil ei ole selleks vajalikke õigusi!"
2633
 
2634
+ #: views/admin/consent.php:3
2635
+ #, fuzzy
2636
+ #| msgctxt "(Admin)"
2637
+ #| msgid "Default consent types"
2638
  msgctxt "(Admin)"
2639
+ msgid "Default consent types"
2640
+ msgstr "Vaikimisi nõusoleku tüübid"
2641
 
2642
+ #: views/admin/consent.php:4
2643
+ #, fuzzy
2644
+ #| msgctxt "(Admin)"
2645
+ #| msgid ""
2646
+ #| "These are the consent types that have been automatically registered by "
2647
+ #| "the framework or a plugin."
2648
  msgctxt "(Admin)"
2649
+ msgid ""
2650
+ "These are the consent types that have been automatically registered by the "
2651
+ "framework or a plugin."
2652
+ msgstr ""
2653
+ "Need on nõusoleku tüübid, mida raamistik või pistikprogramm on automaatselt "
2654
+ "registreerinud."
2655
 
2656
+ #: views/admin/consent.php:7 views/admin/consent.php:53
2657
  msgctxt "(Admin)"
2658
+ msgid "Slug"
2659
+ msgstr "Slug"
2660
 
2661
+ #: views/admin/consent.php:8 views/admin/consent.php:38
2662
+ #: views/admin/consent.php:61
2663
  msgctxt "(Admin)"
2664
+ msgid "Title"
2665
+ msgstr "Pealkiri"
2666
 
2667
+ #: views/admin/consent.php:9 views/admin/consent.php:41
2668
+ #: views/admin/consent.php:64
2669
  msgctxt "(Admin)"
2670
+ msgid "Description"
2671
+ msgstr "Kirjeldus"
2672
 
2673
+ #: views/admin/consent.php:10
2674
  msgctxt "(Admin)"
2675
+ msgid "Visibility"
2676
+ msgstr "Nähtavus"
2677
 
2678
+ #: views/admin/consent.php:18
2679
  msgctxt "(Admin)"
2680
+ msgid "Visible"
2681
+ msgstr "Nähtav"
2682
 
2683
+ #: views/admin/consent.php:20
2684
  msgctxt "(Admin)"
2685
+ msgid "Hidden"
2686
+ msgstr "Peidetud"
2687
 
2688
+ #: views/admin/consent.php:29
2689
+ #, fuzzy
2690
+ #| msgctxt "(Admin)"
2691
+ #| msgid "Custom consent types"
2692
  msgctxt "(Admin)"
2693
+ msgid "Custom consent types"
2694
+ msgstr "Kohandatud nõusoleku tüübid"
2695
 
2696
+ #: views/admin/consent.php:30
2697
+ #, fuzzy
2698
+ #| msgctxt "(Admin)"
2699
+ #| msgid ""
2700
+ #| "Here you can add custom consent types to track. They will not be used "
2701
+ #| "anywhere by default - you will need to build an integration for each of "
2702
+ #| "them."
2703
  msgctxt "(Admin)"
2704
+ msgid ""
2705
+ "Here you can add custom consent types to track. They will not be used "
2706
+ "anywhere by default - you will need to build an integration for each of them."
2707
+ msgstr ""
2708
+ "Siin saate jälgida kohandatud nõusoleku tüüpe. Neid ei kasutata vaikimisi "
2709
+ "igatahes - igaüks neist peab integreerima."
2710
+
2711
+ #: views/admin/consent.php:35
2712
+ #, fuzzy
2713
+ #| msgctxt "(Admin)"
2714
+ #| msgid "Machine-readable slug"
2715
+ msgctxt "(Admin)"
2716
+ msgid "Machine-readable slug"
2717
+ msgstr "Masinloetav liblikas"
2718
+
2719
+ #: views/admin/consent.php:44 views/admin/consent.php:69
2720
+ #, fuzzy
2721
+ #| msgctxt "(Admin)"
2722
+ #| msgid "Visible?"
2723
+ msgctxt "(Admin)"
2724
+ msgid "Visible?"
2725
+ msgstr "Nähtav?"
2726
+
2727
+ #: views/admin/consent.php:73
2728
+ msgctxt "(Admin)"
2729
+ msgid "Remove"
2730
+ msgstr "Eemalda"
2731
+
2732
+ #: views/admin/consent.php:79
2733
+ #, fuzzy
2734
+ #| msgctxt "(Admin)"
2735
+ #| msgid "Show Consent types"
2736
+ msgctxt "(Admin)"
2737
+ msgid "Show Consent types"
2738
+ msgstr "Mostrar tipos de consentimiento"
2739
+
2740
+ #: views/admin/consent.php:80
2741
+ #, fuzzy
2742
+ #| msgctxt "(Admin)"
2743
+ #| msgid "Add consent type"
2744
+ msgctxt "(Admin)"
2745
+ msgid "Add consent type"
2746
+ msgstr "Lisa nõusoleku tüüp"
2747
+
2748
+ #: views/admin/consent.php:81
2749
+ #, fuzzy
2750
+ #| msgctxt "(Admin)"
2751
+ #| msgid "Hide consent types"
2752
+ msgctxt "(Admin)"
2753
+ msgid "Hide consent types"
2754
+ msgstr "Ocultar tipos de consentimiento"
2755
+
2756
+ #: views/admin/consent.php:95
2757
+ #, fuzzy
2758
+ #| msgctxt "(Admin)"
2759
+ #| msgid "Additional info"
2760
+ msgctxt "(Admin)"
2761
+ msgid "Additional info"
2762
+ msgstr "Lisainfo"
2763
+
2764
+ #: views/admin/consent.php:97
2765
+ #, fuzzy
2766
+ #| msgctxt "(Admin)"
2767
+ #| msgid ""
2768
+ #| "This text will be displayed to your data subjects on the Privacy Tools "
2769
+ #| "page."
2770
+ msgctxt "(Admin)"
2771
+ msgid ""
2772
+ "This text will be displayed to your data subjects on the Privacy Tools page."
2773
+ msgstr ""
2774
+ "See tekst kuvatakse teie andmesubjektidele privaatsuse tööriistade lehel."
2775
+
2776
+ #: views/admin/consent/enable-consent-until.php:11
2777
+ msgctxt "(Admin)"
2778
+ msgid " "
2779
+ msgstr " "
2780
+
2781
+ #: views/admin/data-subjects/search-form.php:2
2782
+ #, fuzzy
2783
+ #| msgctxt "(Admin)"
2784
+ #| msgid ""
2785
+ #| "On this page, you can find which data subjects personal data you are "
2786
+ #| "storing and download, export or delete it."
2787
+ msgctxt "(Admin)"
2788
+ msgid ""
2789
+ "On this page, you can find which data subjects personal data you are storing "
2790
+ "and download, export or delete it."
2791
+ msgstr ""
2792
+ "Sellel lehel saate teada, millised andmesubjektide isikuandmed salvestatakse "
2793
+ "ja laadite alla, eksportige või kustutate."
2794
+
2795
+ #: views/admin/data-subjects/search-form.php:10
2796
+ #, fuzzy
2797
+ #| msgctxt "(Admin)"
2798
+ #| msgid "Find data subject by email"
2799
+ msgctxt "(Admin)"
2800
+ msgid "Find data subject by email"
2801
+ msgstr "Andme subjekti leiate e-posti teel"
2802
+
2803
+ #: views/admin/data-subjects/search-form.php:11
2804
+ msgctxt "(Admin)"
2805
+ msgid "Email address"
2806
+ msgstr "E-posti aadress"
2807
+
2808
+ #: views/admin/data-subjects/search-form.php:16
2809
+ msgctxt "(Admin)"
2810
+ msgid "Search"
2811
+ msgstr "Otsi"
2812
+
2813
+ #: views/admin/data-subjects/search-results.php:7
2814
+ msgctxt "(Admin)"
2815
+ msgid "Username"
2816
+ msgstr "Kasutajanimi"
2817
+
2818
+ #: views/admin/data-subjects/search-results.php:13
2819
+ #, fuzzy
2820
+ #| msgctxt "(Admin)"
2821
+ #| msgid "No data found!"
2822
+ msgctxt "(Admin)"
2823
+ msgid "Data found."
2824
+ msgstr "Andmeid ei leitud!"
2825
+
2826
+ #: views/admin/data-subjects/search-results.php:14
2827
+ #, fuzzy
2828
+ #| msgctxt "(Admin)"
2829
+ #| msgid "is not a registered user."
2830
+ msgctxt "(Admin)"
2831
+ msgid "is not a registered user."
2832
+ msgstr "ei ole registreeritud kasutaja."
2833
+
2834
+ #: views/admin/data-subjects/search-results.php:21
2835
+ #, fuzzy
2836
+ #| msgctxt "(Admin)"
2837
+ #| msgid "Download data (html)"
2838
+ msgctxt "(Admin)"
2839
+ msgid "Download data (html)"
2840
+ msgstr "Andmete allalaadimine (html)"
2841
+
2842
+ #: views/admin/data-subjects/search-results.php:22
2843
+ #, fuzzy
2844
+ #| msgctxt "(Admin)"
2845
+ #| msgid "Export data (json)"
2846
+ msgctxt "(Admin)"
2847
+ msgid "Export data (json)"
2848
+ msgstr "Ekspordi andmed (json)"
2849
+
2850
+ #: views/admin/data-subjects/search-results.php:26
2851
+ #, fuzzy
2852
+ #| msgctxt "(Admin)"
2853
+ #| msgid ""
2854
+ #| "This user has admin capabilities. Deleting data via this interface is "
2855
+ #| "disabled."
2856
+ msgctxt "(Admin)"
2857
+ msgid ""
2858
+ "This user has admin capabilities. Deleting data via this interface is "
2859
+ "disabled."
2860
+ msgstr ""
2861
+ "Sellel kasutajal on administraatori võimalused. Selle liidese kaudu andmete "
2862
+ "kustutamine on keelatud."
2863
+
2864
+ #: views/admin/data-subjects/search-results.php:29
2865
+ #, fuzzy
2866
+ #| msgctxt "(Admin)"
2867
+ #| msgid "Anonymize data"
2868
+ msgctxt "(Admin)"
2869
+ msgid "Anonymize data"
2870
+ msgstr "Anonüümsed andmed"
2871
+
2872
+ #: views/admin/data-subjects/search-results.php:30
2873
+ #, fuzzy
2874
+ #| msgctxt "(Admin)"
2875
+ #| msgid "Delete data"
2876
+ msgctxt "(Admin)"
2877
+ msgid "Delete data"
2878
+ msgstr "Andmete kustutamine"
2879
+
2880
+ #: views/admin/data-subjects/search-results.php:34
2881
+ #, fuzzy
2882
+ #| msgctxt "(Admin)"
2883
+ #| msgid "No data found!"
2884
+ msgctxt "(Admin)"
2885
+ msgid "No data found!"
2886
+ msgstr "Andmeid ei leitud!"
2887
+
2888
+ #: views/admin/data-subjects/search-results.php:41
2889
+ #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:4
2890
+ #, fuzzy
2891
+ #| msgctxt "(Admin)"
2892
+ #| msgid "Consents given"
2893
+ msgctxt "(Admin)"
2894
+ msgid "Consents given"
2895
+ msgstr "Antud nõusolek"
2896
+
2897
+ #: views/admin/data-subjects/search-results.php:54
2898
+ #, fuzzy
2899
+ #| msgctxt "(Admin)"
2900
+ #| msgid "No consents given"
2901
+ msgctxt "(Admin)"
2902
+ msgid "No consents given!"
2903
+ msgstr "Pole antud nõusolekut"
2904
+
2905
+ #: views/admin/general/custom-policy-url.php:6
2906
+ #, fuzzy
2907
+ #| msgctxt "(Admin)"
2908
+ #| msgid "Leave blank if privacy policy page already selected"
2909
+ msgctxt "(Admin)"
2910
+ msgid "Leave blank if privacy policy page already selected"
2911
+ msgstr "Kui privaatsuspoliitika lehekülg on juba valitud, jätke see tühjaks"
2912
+
2913
+ #: views/admin/general/custom-terms-url.php:6
2914
+ #, fuzzy
2915
+ #| msgctxt "(Admin)"
2916
+ #| msgid "Leave blank if privacy policy page already selected"
2917
+ msgctxt "(Admin)"
2918
+ msgid "Leave blank if terms and condition page already selected"
2919
+ msgstr "Kui privaatsuspoliitika lehekülg on juba valitud, jätke see tühjaks"
2920
+
2921
+ #: views/admin/general/custom-tools-url.php:6
2922
+ #, fuzzy
2923
+ #| msgctxt "(Admin)"
2924
+ #| msgid "Leave blank if privacy policy page already selected"
2925
+ msgctxt "(Admin)"
2926
+ msgid "Leave blank if privacy tools page already selected"
2927
+ msgstr "Kui privaatsuspoliitika lehekülg on juba valitud, jätke see tühjaks"
2928
+
2929
+ #: views/admin/general/delete-action-email.php:5
2930
+ #: views/admin/general/export-action-email.php:5
2931
+ #: views/installer/steps/configuration-settings.php:29
2932
+ #: views/installer/steps/configuration-settings.php:79
2933
+ msgid "Email address"
2934
+ msgstr "E-maili aadress"
2935
+
2936
+ #: views/admin/general/delete-action-reassign.php:3
2937
+ #: views/installer/steps/configuration-settings.php:50
2938
+ #, fuzzy
2939
+ #| msgctxt "(Admin)"
2940
+ #| msgid "Delete content"
2941
+ msgctxt "(Admin)"
2942
+ msgid "Delete content"
2943
+ msgstr "Sisu kustutamine"
2944
+
2945
+ #: views/admin/general/delete-action-reassign.php:6
2946
+ #: views/installer/steps/configuration-settings.php:53
2947
+ #, fuzzy
2948
+ #| msgctxt "(Admin)"
2949
+ #| msgid "Reassign content to a user"
2950
+ msgctxt "(Admin)"
2951
+ msgid "Reassign content to a user"
2952
+ msgstr "Kasutajale sisu teisaldamine"
2953
+
2954
+ #: views/admin/general/delete-action-reassign.php:10
2955
+ #, fuzzy
2956
+ #| msgctxt "(Admin)"
2957
+ #| msgid ""
2958
+ #| "If the user has submitted any content on your site, should it be deleted "
2959
+ #| "or reassigned to another user?"
2960
+ msgctxt "(Admin)"
2961
+ msgid ""
2962
+ "If the user has submitted any content on your site, should it be deleted or "
2963
+ "reassigned to another user?"
2964
+ msgstr ""
2965
+ "Kui kasutaja on oma saidil oma sisu esitanud, kas see tuleb kustutada või "
2966
+ "teisele kasutajale ümber anda?"
2967
+
2968
+ #: views/admin/general/description-data-page.php:2
2969
+ #, fuzzy
2970
+ #| msgctxt "(Admin)"
2971
+ #| msgid ""
2972
+ #| "Select the page where users can go to control their data. This page must "
2973
+ #| "contain the [gdpr_privacy_tools] shortcode."
2974
+ msgctxt "(Admin)"
2975
+ msgid ""
2976
+ "Select the page where users can go to control their data. This page must "
2977
+ "contain the [gdpr_privacy_tools] shortcode."
2978
+ msgstr ""
2979
+ "Valige leht, kus kasutajad saavad oma andmeid juhtida. Sellel lehel peab "
2980
+ "olema [gdpr_privacy_tools] lühinumber."
2981
+
2982
+ #: views/admin/general/description-delete-action.php:2
2983
+ msgctxt "(Admin)"
2984
+ msgid "What should happen if a data subject requests deleting their data."
2985
+ msgstr "Mis peaks juhtuma, kui andmesubjekt taotleb nende andmete kustutamist."
2986
+
2987
+ #: views/admin/general/description-export-action.php:2
2988
+ msgctxt "(Admin)"
2989
+ msgid ""
2990
+ "What should happen if a data subject requests viewing or exporting their "
2991
+ "data."
2992
+ msgstr ""
2993
+ "Mis peaks juhtuma, kui andmesubjekt taotleb andmete vaatamist või "
2994
+ "eksportimist?"
2995
+
2996
+ #: views/admin/general/description-position-action.php:2
2997
+ msgctxt "(Admin)"
2998
+ msgid "Select position of the Popup"
2999
+ msgstr "Valige hüpikakna positsioon"
3000
+
3001
+ #: views/admin/general/description-terms-page.php:2
3002
+ msgctxt "(Admin)"
3003
+ msgid "Optional. Select the page which contains your Terms & Conditions"
3004
+ msgstr "Valikuline. Valige leht, mis sisaldab teie kasutustingimusi"
3005
+
3006
+ #: views/admin/general/description-theme-action.php:2
3007
+ msgctxt "(Admin)"
3008
+ msgid "Select theme of the Popup"
3009
+ msgstr "Valige hüpikakna teema"
3010
+
3011
+ #: views/admin/general/disble-checkbox.php:9
3012
+ #, fuzzy
3013
+ msgctxt "(Admin)"
3014
+ msgid "."
3015
+ msgstr "."
3016
+
3017
+ #: views/admin/general/edd-compatibility.php:9
3018
+ #, fuzzy
3019
+ #| msgctxt "(Admin)"
3020
+ #| msgid "Enable EDD data on GDPR tool."
3021
+ msgctxt "(Admin)"
3022
+ msgid "Enable EDD data on GDPR tool."
3023
+ msgstr "Luba EDD andmed GDPR-vahendil."
3024
+
3025
+ #: views/admin/general/edd-compatibility.php:12
3026
+ #, fuzzy
3027
+ #| msgctxt "(Admin)"
3028
+ #| msgid "Will work for EDD Version 2.0.0 or later."
3029
+ msgctxt "(Admin)"
3030
+ msgid "Will work for EDD Version 2.0.0 or later."
3031
+ msgstr "Töötab EDD versiooni 2.0.0 või uuema versiooni puhul."
3032
+
3033
+ #: views/admin/general/enable-policy-popup.php:9
3034
+ #, fuzzy
3035
+ #| msgctxt "(Admin)"
3036
+ #| msgid "Enable Policy Link On Popup"
3037
+ msgctxt "(Admin)"
3038
+ msgid "Enable Policy Link On Popup"
3039
+ msgstr "Lubage hüpikaknasse poliitikateade"
3040
+
3041
+ #: views/admin/general/enable-popup.php:12
3042
+ #, fuzzy
3043
+ #| msgctxt "(Admin)"
3044
+ #| msgid ""
3045
+ #| "<b>Note:</b> Need to add custom content <b>gdpr_cookie_consent</b> its "
3046
+ #| "accepted on popup accept button."
3047
+ msgctxt "(Admin)"
3048
+ msgid ""
3049
+ "<b>Note:</b> Need to add custom content <b>gdpr_cookie_consent</b> its "
3050
+ "accepted on popup accept button."
3051
+ msgstr ""
3052
+ "<b>Märge:</b> Vajadus kohandatud sisu lisamiseks <b>gdpr_cookie_consent</b> "
3053
+ "selle aktsepteeritud hüpikakna aktsepteerimisnupul."
3054
+
3055
+ #: views/admin/general/enable-tac.php:9
3056
+ #, fuzzy
3057
+ #| msgctxt "(Admin)"
3058
+ #| msgid "Enable the term and condition page."
3059
+ msgctxt "(Admin)"
3060
+ msgid "Enable the term and condition page."
3061
+ msgstr "Käyttöön termi ja kunto-sivulle."
3062
+
3063
+ #: views/admin/general/enable.php:9
3064
+ #, fuzzy
3065
+ #| msgctxt "(Admin)"
3066
+ #| msgid ""
3067
+ #| "Enable the view, export and forget functionality for users and visitors"
3068
+ msgctxt "(Admin)"
3069
+ msgid "Enable the view, export and forget functionality for users and visitors"
3070
+ msgstr "Kasutajate ja külastajate vaate lubamine, eksport ja unustamine"
3071
+
3072
+ #: views/admin/general/enable.php:12
3073
+ #, fuzzy
3074
+ #| msgctxt "(Admin)"
3075
+ #| msgid ""
3076
+ #| "Enable the Privacy Tools page on front-end and dashboard. This allows "
3077
+ #| "visitors to request viewing and deleting their personal data and withdraw "
3078
+ #| "consents."
3079
+ msgctxt "(Admin)"
3080
+ msgid ""
3081
+ "Enable the Privacy Tools page on front-end and dashboard. This allows "
3082
+ "visitors to request viewing and deleting their personal data and withdraw "
3083
+ "consents."
3084
+ msgstr ""
3085
+ "Luba privaatsusriistade leht esiotsa ja juhtpaneelil. See võimaldab "
3086
+ "külastajatel taotleda nende isikuandmete vaatamist ja kustutamist ning "
3087
+ "nõusolekute tagasivõtmist."
3088
+
3089
+ #: views/admin/general/enable_popup_allow_content.php:3
3090
+ msgctxt "gdpr-framework"
3091
+ msgid "Accept"
3092
+ msgstr "Nõustun"
3093
+
3094
+ #: views/admin/general/enable_popup_content.php:5
3095
+ msgctxt "gdpr-framework"
3096
+ msgid ""
3097
+ "This website uses cookies to ensure you get the best experience on our "
3098
+ "website."
3099
+ msgstr ""
3100
+ "See veebisait kasutab küpsiseid, et tagada meie veebisaidil parim kogemus."
3101
+
3102
+ #: views/admin/general/enable_popup_dismiss_content.php:3
3103
+ msgctxt "gdpr-framework"
3104
+ msgid "Decline"
3105
+ msgstr "Langema"
3106
+
3107
+ #: views/admin/general/enable_popup_header.php:7
3108
+ #, fuzzy
3109
+ #| msgid "Leave blank if don't want header to get display."
3110
+ msgctxt "(Admin)"
3111
+ msgid "Leave blank if you don't want a header to get displayed."
3112
+ msgstr "Jäta tühjaks, kui ei soovi, et päis näitaks."
3113
+
3114
+ #: views/admin/general/enable_popup_learnmore_content.php:3
3115
+ msgctxt "gdpr-framework"
3116
+ msgid "Learn more"
3117
+ msgstr "Lisateave"
3118
+
3119
+ #: views/admin/general/popup_link_target.php:3
3120
+ #, fuzzy
3121
+ #| msgctxt "(Admin)"
3122
+ #| msgid "Next Tab"
3123
+ msgctxt "(Admin)"
3124
+ msgid "Next Tab"
3125
+ msgstr "Järgmine vahekaart"
3126
+
3127
+ #: views/admin/general/popup_link_target.php:6
3128
+ #, fuzzy
3129
+ #| msgctxt "(Admin)"
3130
+ #| msgid "Self"
3131
+ msgctxt "(Admin)"
3132
+ msgid "Self"
3133
+ msgstr "ise"
3134
+
3135
+ #: views/admin/general/stylesheet.php:9
3136
+ #, fuzzy
3137
+ #| msgctxt "(Admin)"
3138
+ #| msgid "Enable basic styling for Privacy Tools page."
3139
+ msgctxt "(Admin)"
3140
+ msgid "Enable basic styling for Privacy Tools page."
3141
+ msgstr "Luba Privaatsus Tööriistade lehe põhiline stiil."
3142
+
3143
+ #: views/admin/general/theme-compatibility.php:9
3144
+ #: views/installer/steps/integrations.php:21
3145
+ #, fuzzy
3146
+ #| msgctxt "(Admin)"
3147
+ #| msgid ""
3148
+ #| "Automatically add Privacy Policy and Privacy Tools links to your site "
3149
+ #| "footer."
3150
+ msgctxt "(Admin)"
3151
+ msgid ""
3152
+ "Automatically add Privacy Policy and Privacy Tools links to your site footer."
3153
+ msgstr ""
3154
+ "Lisage automaatselt privaatsuse ja privaatsusriistade linke saidi jalusesse."
3155
+
3156
+ #: views/admin/general/woo-compatibility.php:9
3157
+ #, fuzzy
3158
+ #| msgctxt "(Admin)"
3159
+ #| msgid "Enable WooCommerce data on GDPR tool."
3160
+ msgctxt "(Admin)"
3161
+ msgid "Enable WooCommerce data on GDPR tool."
3162
+ msgstr "Luba WooCommerce andmed GDPR-vahendil."
3163
+
3164
+ #: views/admin/general/woo-compatibility.php:12
3165
+ #, fuzzy
3166
+ #| msgctxt "(Admin)"
3167
+ #| msgid "Will work for WooCommerce Version 3.4.0 or later."
3168
+ msgctxt "(Admin)"
3169
+ msgid "Will work for WooCommerce Version 3.4.0 or later."
3170
+ msgstr "Töötab WooCommerce'i versiooni 3.4.0 või uuema versiooniga."
3171
+
3172
+ #: views/admin/notices/header-privacy-safe.php:4
3173
+ #, fuzzy
3174
+ msgctxt "(Admin)"
3175
+ msgid "Privacy Safe By Data443"
3176
+ msgstr "Privaatsus kaitstud andmete järgi443"
3177
+
3178
+ #: views/admin/notices/header.php:4 views/admin/settings-page.php:3
3179
+ #, fuzzy
3180
+ #| msgctxt "(Admin)"
3181
+ #| msgid "The GDPR Framework"
3182
+ msgctxt "(Admin)"
3183
+ msgid "The GDPR Framework By Data443"
3184
+ msgstr "GDPR raamistik"
3185
+
3186
+ #: views/admin/notices/help.php:3 views/admin/settings-page.php:39
3187
+ #, fuzzy, php-format
3188
+ msgctxt "(Admin)"
3189
+ msgid "Need help? Take a look at our %sdocumentation%s."
3190
+ msgstr "Vajad abi? Vaata meie %sdocumentation%."
3191
+
3192
+ #: views/admin/notices/helper-autoinstall.php:2
3193
+ #, fuzzy
3194
+ #| msgctxt "(Admin)"
3195
+ #| msgid ""
3196
+ #| "A Privacy Policy page has been created, but it is empty. You can generate "
3197
+ #| "a policy template on this page."
3198
+ msgctxt "(Admin)"
3199
+ msgid ""
3200
+ "A Privacy Policy page has been created, but it is empty. You can generate a "
3201
+ "policy template on this page."
3202
+ msgstr ""
3203
+ "Privaatsuseeskirjade leht on loodud, kuid see on tühi. Saate sellel lehel "
3204
+ "luua poliitikamalli."
3205
+
3206
+ #: views/admin/notices/helper-policy.php:2
3207
+ #, fuzzy
3208
+ #| msgctxt "(Admin)"
3209
+ #| msgid ""
3210
+ #| "Heads up - your Privacy Policy still requires some attention. Find the "
3211
+ #| "places marked with [TODO] and replace them with real content!"
3212
+ msgctxt "(Admin)"
3213
+ msgid ""
3214
+ "Heads up - your Privacy Policy still requires some attention. Find the "
3215
+ "places marked with [TODO] and replace them with real content!"
3216
+ msgstr ""
3217
+ "Heads up - teie privaatsuspoliitika nõuab ikkagi mõnda tähelepanu. Leidke "
3218
+ "[TODO] tähistatud kohad ja asendage need reaalse sisuga!"
3219
+
3220
+ #: views/admin/notices/helper-settings.php:2
3221
+ #, fuzzy
3222
+ msgctxt "(Admin)"
3223
+ msgid ""
3224
+ "Heads up! The GDPR Framework is not properly configured, so it will not work "
3225
+ "just yet."
3226
+ msgstr ""
3227
+ "Pead püsti! GDPR-raamistik ei ole korralikult konfigureeritud, nii et see ei "
3228
+ "tööta veel."
3229
+
3230
+ #: views/admin/notices/helper-settings.php:4
3231
+ #, fuzzy, php-format
3232
+ msgctxt "(Admin)"
3233
+ msgid "Go to %sTools > Data443 GDPR%s and make sure all fields are filled in."
3234
+ msgstr ""
3235
+ "Avage %sTools > Data443 GDPR%s ja veenduge, et kõik väljad on täidetud."
3236
+
3237
+ #: views/admin/notices/helper-tools.php:2
3238
+ #, fuzzy
3239
+ #| msgctxt "(Admin)"
3240
+ #| msgid ""
3241
+ #| "The contents of this page should contain the [gdpr_privacy_tools] "
3242
+ #| "shortcode."
3243
+ msgctxt "(Admin)"
3244
+ msgid ""
3245
+ "The contents of this page should contain the [gdpr_privacy_tools] shortcode."
3246
+ msgstr "Selle lehe sisu peab sisaldama [gdpr_privacy_tools] lühinumbrit."
3247
+
3248
+ #: views/admin/privacy-manager/header.php:2
3249
+ #: views/admin/privacy-manager/header.php:21
3250
+ #, fuzzy
3251
+ #| msgctxt "(Admin)"
3252
+ #| msgid "Data443™ Privacy Manager"
3253
+ msgctxt "(Admin)"
3254
+ msgid "Data443™ Global Privacy Manager"
3255
+ msgstr "Data443™ privaatsuse haldur"
3256
+
3257
+ #: views/admin/privacy-manager/header.php:3
3258
+ #, fuzzy
3259
+ #| msgctxt "(Admin)"
3260
+ #| msgid ""
3261
+ #| "ensures privacy regulation compliance, such as GDPR, CCPA, LGPD, etc, at "
3262
+ #| "the next level."
3263
+ msgctxt "(Admin)"
3264
+ msgid ""
3265
+ "ensures privacy regulation compliance, such as GDPR, CCPA, LGPD, etc, at the "
3266
+ "next level."
3267
+ msgstr ""
3268
+ "tagab eraelu puutumatuse eeskirjade järgimise, näiteks GDPR, CCPA, LGPD jne."
3269
+
3270
+ #: views/admin/privacy-manager/header.php:4
3271
+ #, fuzzy
3272
+ msgctxt "(Admin)"
3273
+ msgid "Includes the following features:"
3274
+ msgstr "Sisaldab järgmisi funktsioone:"
3275
+
3276
+ #: views/admin/privacy-manager/header.php:6
3277
+ #, fuzzy
3278
+ msgctxt "(Admin)"
3279
+ msgid ""
3280
+ "Available within minutes – designed to be deployed to your website over the "
3281
+ "phone with one link!"
3282
+ msgstr ""
3283
+ "Saadaval mõne minuti jooksul - mõeldud juurutamiseks teie veebisaidile "
3284
+ "telefoni teel ühe lingiga!"
3285
+
3286
+ #: views/admin/privacy-manager/header.php:7
3287
+ #, fuzzy
3288
+ msgctxt "(Admin)"
3289
+ msgid "Fully branded Subject Access Request Form"
3290
+ msgstr "Täielikult kaubamärgiga teemajuurdepääsu taotluse vorm"
3291
+
3292
+ #: views/admin/privacy-manager/header.php:8
3293
+ #, fuzzy
3294
+ msgctxt "(Admin)"
3295
+ msgid "Custom Workflow Engine"
3296
+ msgstr "Kohandatud töövoomootor"
3297
+
3298
+ #: views/admin/privacy-manager/header.php:9
3299
+ #, fuzzy
3300
+ msgctxt "(Admin)"
3301
+ msgid "Cookie and Consent Management Tracking"
3302
+ msgstr "Küpsiste ja nõusoleku halduse jälgimine"
3303
+
3304
+ #: views/admin/privacy-manager/header.php:10
3305
+ #, fuzzy
3306
+ msgctxt "(Admin)"
3307
+ msgid "Opt-in and Opt-out Management"
3308
+ msgstr "Opt-in ja opt-out haldus"
3309
+
3310
+ #: views/admin/privacy-manager/header.php:11
3311
+ #, fuzzy
3312
+ msgctxt "(Admin)"
3313
+ msgid "Do Not Sell Management Interface"
3314
+ msgstr "Ära müü haldusliidest"
3315
+
3316
+ #: views/admin/privacy-manager/header.php:12
3317
+ #, fuzzy
3318
+ msgctxt "(Admin)"
3319
+ msgid "Full On Premise and In Cloud Data Discovery"
3320
+ msgstr "Täielik eeldus ja pilveandmete tuvastamine"
3321
+
3322
+ #: views/admin/privacy-manager/header.php:13
3323
+ #, fuzzy
3324
+ msgctxt "(Admin)"
3325
+ msgid "Complete End to End Data Mapping"
3326
+ msgstr "Lõpeta andmete vastendamine lõpetatakse"
3327
+
3328
+ #: views/admin/privacy-manager/header.php:14
3329
+ #, fuzzy
3330
+ msgctxt "(Admin)"
3331
+ msgid "Full Data Classification and Governance"
3332
+ msgstr "Täielik andmete klassifitseerimine ja juhtimine"
3333
+
3334
+ #: views/admin/privacy-manager/header.php:15
3335
+ #, fuzzy
3336
+ msgctxt "(Admin)"
3337
+ msgid "Data Deletion and Monitoring Compliance Management"
3338
+ msgstr "Andmete kustutamine ja nõuetele vastavuse halduse jälgimine"
3339
+
3340
+ #: views/admin/privacy-manager/header.php:16
3341
+ #, fuzzy
3342
+ msgctxt "(Admin)"
3343
+ msgid ""
3344
+ "Data Stores instantly available: Windows NTFS, OneDrive, Dropbox, Office365, "
3345
+ "GoogleMail, Salesforce, Quickbooks, MailChimp, Sharepoint, MySQL, MSSQL, "
3346
+ "PostGreSQL, Mongo"
3347
+ msgstr ""
3348
+ "Andmepoed on koheselt saadaval: Windows NTFS, OneDrive, Dropbox, Office365, "
3349
+ "GoogleMail, Salesforce, Quickbooks, MailChimp, Sharepoint, MySQL, MSSQL, "
3350
+ "PostGreSQL, Mongo"
3351
+
3352
+ #: views/admin/privacy-manager/header.php:17
3353
+ #, fuzzy
3354
+ msgctxt "(Admin)"
3355
+ msgid ""
3356
+ "Data Stores addons available: over 200 SaaS, On Premise databases & File "
3357
+ "shares"
3358
+ msgstr ""
3359
+ "Andmepoodide lisad saadaval: üle 200 SaaS, On Premise andmebaasid & "
3360
+ "failikettad"
3361
+
3362
+ #: views/admin/privacy-manager/header.php:18
3363
+ #, fuzzy
3364
+ msgctxt "(Admin)"
3365
+ msgid "PowerBI and Dashboarding"
3366
+ msgstr "PowerBI ja armatuurlaud"
3367
+
3368
+ #: views/admin/privacy-manager/header.php:21
3369
+ #, fuzzy
3370
+ #| msgctxt "(Admin)"
3371
+ #| msgid ""
3372
+ #| "No matter where you are on your data privacy journey, the ultimate goal "
3373
+ #| "is compliance."
3374
+ msgctxt "(Admin)"
3375
+ msgid ""
3376
+ "No matter where you are on your data privacy journey, the ultimate goal is "
3377
+ "compliance."
3378
+ msgstr ""
3379
+ "Ükskõik, kus te olete oma privaatsuse teekonnal, on lõppeesmärk vastavus."
3380
+
3381
+ #: views/admin/privacy-manager/header.php:21
3382
+ #, fuzzy
3383
+ #| msgctxt "(Admin)"
3384
+ #| msgid "enables your organization to comply with all privacy regulations."
3385
+ msgctxt "(Admin)"
3386
+ msgid "enables your organization to comply with all privacy regulations."
3387
+ msgstr "võimaldab teie organisatsioonil täita kõiki privaatsuseeskirju."
3388
+
3389
+ #: views/admin/privacy-policy/description-policy-page.php:2
3390
+ #, fuzzy
3391
+ #| msgctxt "(Admin)"
3392
+ #| msgid "Select the page which will contain your Privacy Policy"
3393
+ msgctxt "(Admin)"
3394
+ msgid "Select the page which will contain your Privacy Policy"
3395
+ msgstr "Valige leht, mis sisaldab teie privaatsuseeskirju"
3396
+
3397
+ #: views/admin/privacy-policy/generated.php:3
3398
+ #, fuzzy
3399
+ #| msgctxt "(Admin)"
3400
+ #| msgid "Your Privacy Policy has been generated."
3401
+ msgctxt "(Admin)"
3402
+ msgid "Your Privacy Policy has been generated."
3403
+ msgstr "Teie privaatsuspoliitikat on loodud."
3404
+
3405
+ #: views/admin/privacy-policy/generated.php:20
3406
+ #, fuzzy
3407
+ #| msgctxt "(Admin)"
3408
+ #| msgid "&laquo; Back"
3409
+ msgctxt "(Admin)"
3410
+ msgid "&laquo; Back"
3411
+ msgstr "&laquo; tagasi"
3412
+
3413
+ #: views/admin/privacy-policy/has-dpo.php:11
3414
+ #, fuzzy
3415
+ #| msgctxt "(Admin)"
3416
+ #| msgid "I have appointed a Data Protection Officer (DPO)"
3417
+ msgctxt "(Admin)"
3418
+ msgid "I have appointed a Data Protection Officer (DPO)"
3419
+ msgstr "Olen määranud andmekaitseametniku"
3420
+
3421
+ #: views/admin/privacy-policy/header.php:2
3422
+ #, fuzzy
3423
+ #| msgctxt "(Admin)"
3424
+ #| msgid ""
3425
+ #| "This page allows you to generate a Privacy Policy based on the "
3426
+ #| "information you entered below."
3427
+ msgctxt "(Admin)"
3428
+ msgid ""
3429
+ "This page allows you to generate a Privacy Policy based on the information "
3430
+ "you entered below."
3431
+ msgstr ""
3432
+ "Sellel lehel saate luua privaatsuseeskirja, mis põhineb allpool sisestatud "
3433
+ "teabel."
3434
+
3435
+ #: views/admin/privacy-safe/enable-backlink.php:11
3436
+ #, fuzzy
3437
+ msgctxt "(Admin)"
3438
+ msgid ""
3439
+ "<b>Note:</b> We need your support. By selecting to support Data443, a small "
3440
+ "link is added below the privacy safe seal linking back to our product page "
3441
+ "on data443.com. Uncheck if you prefer not to have the link display on your "
3442
+ "site."
3443
+ msgstr ""
3444
+ "<b>Märkus:</b> Me vajame teie toetust. Valides data443 toetamiseks, "
3445
+ "lisatakse privaatsuse turvaplommi alla väike link, mis lingib tagasi meie "
3446
+ "tootelehele data443.com. Tühjendage ruut, kui eelistate, et link ei kuvataks "
3447
+ "teie saidil."
3448
+
3449
+ #: views/admin/settings-page.php:8
3450
+ msgctxt "(Admin)"
3451
+ msgid "GDPR settings saved!"
3452
+ msgstr "GDPR seaded salvestatud!"
3453
+
3454
+ #: views/admin/settings-page.php:31
3455
+ #, fuzzy, php-format
3456
+ msgctxt "(Admin)"
3457
+ msgid "The GDPR Framework. Built with &#9829; by %sData443%s."
3458
+ msgstr "GDPR-raamistik. Ehitatud ♥ %sData443% poolt."
3459
+
3460
+ #: views/admin/settings-page.php:47
3461
+ #, fuzzy, php-format
3462
+ #| msgctxt "(Admin)"
3463
+ #| msgid "Support our development efforts with a %s5-star rating%s."
3464
+ msgctxt "(Admin)"
3465
+ msgid "Support our development efforts! leave a %s5-star rating%s."
3466
+ msgstr "Toetage oma arenguprotsessi %s5 tärni-reitinguga%s."
3467
+
3468
+ #: views/admin/support/contents.php:5 views/installer/steps/finish.php:10
3469
+ #, fuzzy
3470
+ #| msgctxt "(Admin)"
3471
+ #| msgid "Need more info?"
3472
+ msgctxt "(Admin)"
3473
+ msgid "Need more info?"
3474
+ msgstr "Vajad rohkem infot?"
3475
+
3476
+ #: views/admin/support/contents.php:11 views/installer/steps/finish.php:16
3477
+ #, fuzzy
3478
+ #| msgctxt "(Admin)"
3479
+ #| msgid "Site Owner's guide to GDPR"
3480
+ msgctxt "(Admin)"
3481
+ msgid "Site Owner's guide to GDPR"
3482
+ msgstr "Saidi omaniku juhend GDPR-le"
3483
+
3484
+ #: views/admin/support/contents.php:14 views/installer/steps/finish.php:19
3485
+ #, fuzzy
3486
+ #| msgctxt "(Admin)"
3487
+ #| msgid "Read the full guide on GDPR compliance."
3488
+ msgctxt "(Admin)"
3489
+ msgid "Read the full guide on GDPR compliance."
3490
+ msgstr "Lugege täielikku juhendit GDPR nõuetele vastavuse kohta."
3491
+
3492
+ #: views/admin/support/contents.php:20 views/installer/steps/finish.php:25
3493
+ msgctxt "(Admin)"
3494
+ msgid "Knowledge base"
3495
+ msgstr "Teadmistebaas"
3496
+
3497
+ #: views/admin/support/contents.php:23 views/installer/steps/finish.php:28
3498
+ #, fuzzy
3499
+ #| msgctxt "(Admin)"
3500
+ #| msgid "Check out the knowledge base for common questions and answers."
3501
+ msgctxt "(Admin)"
3502
+ msgid "Check out the knowledge base for common questions and answers."
3503
+ msgstr "Tutvuge teadmistebaasi tavapäraste küsimuste ja vastustega."
3504
+
3505
+ #: views/admin/support/contents.php:29 views/installer/steps/finish.php:34
3506
+ #, fuzzy
3507
+ #| msgctxt "(Admin)"
3508
+ #| msgid "Developer's guide to GDPR"
3509
+ msgctxt "(Admin)"
3510
+ msgid "Developer's guide to GDPR"
3511
+ msgstr "GDPR-i arendaja juhend"
3512
+
3513
+ #: views/admin/support/contents.php:32 views/installer/steps/finish.php:37
3514
+ #, fuzzy
3515
+ #| msgctxt "(Admin)"
3516
+ #| msgid "We have a thorough guide to help making custom sites compliant."
3517
+ msgctxt "(Admin)"
3518
+ msgid "We have a thorough guide to help making custom sites compliant."
3519
+ msgstr ""
3520
+ "Meil on põhjalik juhend, mis aitab kohandatud saitidel ühilduvust luua."
3521
+
3522
+ #: views/admin/support/contents.php:40 views/installer/steps/finish.php:45
3523
+ #, fuzzy
3524
+ #| msgctxt "(Admin)"
3525
+ #| msgid "Need help?"
3526
+ msgctxt "(Admin)"
3527
+ msgid "Need help?"
3528
+ msgstr "Abi vajama?"
3529
+
3530
+ #: views/admin/support/contents.php:46 views/installer/steps/finish.php:51
3531
+ #, fuzzy
3532
+ #| msgctxt "(Admin)"
3533
+ #| msgid "Submit a support request"
3534
+ msgctxt "(Admin)"
3535
+ msgid "Submit a support request"
3536
+ msgstr "Esitage tugiteenuse taotlus"
3537
+
3538
+ #: views/admin/support/contents.php:49 views/installer/steps/finish.php:54
3539
+ #, fuzzy
3540
+ #| msgctxt "(Admin)"
3541
+ #| msgid ""
3542
+ #| "Found a bug or have a question about the plugin? Submit a support request "
3543
+ #| "and we’ll get right on it!"
3544
+ msgctxt "(Admin)"
3545
+ msgid ""
3546
+ "Found a bug or have a question about the plugin? Submit a support request "
3547
+ "and we’ll get right on it!"
3548
+ msgstr ""
3549
+ "Kas leidsite vea või teil on küsimus pluginaga? Esitage toetustaotlus ja me "
3550
+ "saame selle õigesti!"
3551
+
3552
+ #: views/admin/support/contents.php:55 views/installer/steps/finish.php:60
3553
+ #, fuzzy
3554
+ #| msgctxt "(Admin)"
3555
+ #| msgid "Request a consultation"
3556
+ msgctxt "(Admin)"
3557
+ msgid "Request a consultation"
3558
+ msgstr "Taotle konsultatsiooni"
3559
+
3560
+ #: views/admin/support/contents.php:58 views/installer/steps/finish.php:63
3561
+ #, fuzzy
3562
+ #| msgctxt "(Admin)"
3563
+ #| msgid "Need assistance in making your site compliant? We can help!"
3564
+ msgctxt "(Admin)"
3565
+ msgid "Need assistance in making your site compliant? We can help!"
3566
+ msgstr "Vajad abi saidi ühildamiseks? Me saame aidata!"
3567
+
3568
+ #: views/admin/wizard-buttons.php:2
3569
+ #, fuzzy
3570
+ #| msgctxt "(Admin)"
3571
+ #| msgid "Restart setup wizard"
3572
+ msgctxt "(Admin)"
3573
+ msgid "Restart setup wizard"
3574
+ msgstr "Taaskäivitage häälestusviisard"
3575
+
3576
+ #: views/email/action-export.php:8 views/email/action-forget.php:12
3577
+ #, fuzzy
3578
+ #| msgctxt "(Admin)"
3579
+ #| msgid ""
3580
+ #| "This email is just for your information. You don't need to take any action"
3581
+ msgctxt "(Admin)"
3582
+ msgid ""
3583
+ "This email is just for your information. You don't need to take any action"
3584
+ msgstr "See e-kiri on ainult teie informatsiooniks. Te ei pea midagi tegema"
3585
+
3586
+ #: views/email/action-forget.php:8
3587
+ #, fuzzy
3588
+ #| msgctxt "(Admin)"
3589
+ #| msgid "The data subject had a user account on your website."
3590
+ msgctxt "(Admin)"
3591
+ msgid "The data subject had a user account on your website."
3592
+ msgstr "Andmesubjektil oli teie veebisaidil kasutajakonto."
3593
+
3594
+ #: views/email/identify-data-subject.php:2
3595
+ msgid "Someone has requested access to your data on"
3596
+ msgstr "Keegi on taotlenud ligipääsu teie andmetele leheküljel"
3597
+
3598
+ #: views/email/identify-data-subject.php:3
3599
+ msgid "If this was a mistake, just ignore this email and nothing will happen."
3600
+ msgstr ""
3601
+ "Kui see oli viga, siis lihtsalt ignoreerige seda kirja ning mitte midagi ei "
3602
+ "juhtu."
3603
+
3604
+ #: views/email/identify-data-subject.php:4
3605
+ msgid "To manage your data, visit the following address:"
3606
+ msgstr "Kui soovite oma andmeid hallata, külastage järgnevat aadress:"
3607
+
3608
+ #: views/email/identify-data-subject.php:10
3609
+ msgid "This link is valid for 15 minutes."
3610
+ msgstr "See link on aktiivne 15 minutit."
3611
+
3612
+ #: views/email/no-data.php:2
3613
+ msgid "Someone has requested information about your personal data on"
3614
+ msgstr "Keegi on taotlenud infot teie isiklike andmete kohta leheküljel"
3615
+
3616
+ #: views/email/no-data.php:3
3617
+ msgid "None of your personal data is stored on"
3618
+ msgstr "Leheküljel ei ole kohta isiklikke andmeid"
3619
+
3620
+ #: views/email/no-data.php:5
3621
+ msgid ""
3622
+ "If this was a mistake or you did not request this email, just ignore it and "
3623
+ "nothing will happen."
3624
+ msgstr ""
3625
+ "Kui see oli viga, siis lihtsalt ignoreerige seda kirja ning mitte midagi ei "
3626
+ "juhtu."
3627
+
3628
+ #: views/email/request-export.php:13 views/email/request-forget.php:13
3629
+ #, fuzzy
3630
+ #| msgctxt "(Admin)"
3631
+ #| msgid "As a reminder: according to GDPR, you have 30 days to comply."
3632
+ msgctxt "(Admin)"
3633
+ msgid "As a reminder: according to GDPR, you have 30 days to comply."
3634
+ msgstr "Meeldetuletuseks: vastavalt GDPR-le on teil 30 päeva täidetud."
3635
+
3636
+ #: views/global/delete-action.php:2
3637
+ #, fuzzy
3638
+ #| msgctxt "(Admin)"
3639
+ #| msgid "Automatically anonymize data"
3640
+ msgctxt "(Admin)"
3641
+ msgid "Automatically anonymize data"
3642
+ msgstr "Andmete automaatne anonüümimine"
3643
+
3644
+ #: views/global/delete-action.php:5
3645
+ #, fuzzy
3646
+ #| msgctxt "(Admin)"
3647
+ #| msgid "Automatically delete data"
3648
+ msgctxt "(Admin)"
3649
+ msgid "Automatically delete data"
3650
+ msgstr "Andmete automaatne kustutamine"
3651
+
3652
+ #: views/global/delete-action.php:9
3653
+ #, fuzzy
3654
+ #| msgctxt "(Admin)"
3655
+ #| msgid "Automatically anonymize data and notify me via email"
3656
+ msgctxt "(Admin)"
3657
+ msgid "Automatically anonymize data and notify me via email"
3658
+ msgstr "Andke automaatselt anonüümseks ja teavita mind e-posti teel"
3659
+
3660
+ #: views/global/delete-action.php:13
3661
+ #, fuzzy
3662
+ #| msgctxt "(Admin)"
3663
+ #| msgid "Automatically delete data and notify me via email"
3664
+ msgctxt "(Admin)"
3665
+ msgid "Automatically delete data and notify me via email"
3666
+ msgstr "Andmete automaatne kustutamine ja meili teavitamine"
3667
+
3668
+ #: views/global/delete-action.php:16 views/global/export-action.php:10
3669
+ #, fuzzy
3670
+ #| msgctxt "(Admin)"
3671
+ #| msgid "Only notify me via email"
3672
+ msgctxt "(Admin)"
3673
+ msgid "Only notify me via email"
3674
+ msgstr "Teatage mulle ainult e-posti teel"
3675
+
3676
+ #: views/global/export-action.php:2
3677
+ #, fuzzy
3678
+ #| msgctxt "(Admin)"
3679
+ #| msgid "Automatically download data"
3680
+ msgctxt "(Admin)"
3681
+ msgid "Automatically download data"
3682
+ msgstr "Andmete automaatne allalaadimine"
3683
+
3684
+ #: views/global/export-action.php:6
3685
+ #, fuzzy
3686
+ #| msgctxt "(Admin)"
3687
+ #| msgid "Automatically download data and notify me via email"
3688
+ msgctxt "(Admin)"
3689
+ msgid "Automatically download data and notify me via email"
3690
+ msgstr "Andmete automaatne allalaadimine ja meili teavitamine"
3691
+
3692
+ #: views/global/position-action.php:2
3693
+ #, fuzzy
3694
+ msgctxt "(Admin)"
3695
+ msgid "Banner bottom"
3696
+ msgstr "Bänneri põhi"
3697
+
3698
+ #: views/global/position-action.php:5
3699
+ #, fuzzy
3700
+ msgctxt "(Admin)"
3701
+ msgid "Floating left"
3702
+ msgstr "Ujuv vasakule"
3703
+
3704
+ #: views/global/position-action.php:8
3705
+ #, fuzzy
3706
+ msgctxt "(Admin)"
3707
+ msgid "Floating Right"
3708
+ msgstr "Ujuv paremal"
3709
+
3710
+ #: views/global/position-action.php:11
3711
+ #, fuzzy
3712
+ msgctxt "(Admin)"
3713
+ msgid "Banner top"
3714
+ msgstr "Bänneri ülaosa"
3715
+
3716
+ #: views/global/theme-action.php:2
3717
+ msgctxt "(Admin)"
3718
+ msgid "Default"
3719
+ msgstr "Vaikimisi"
3720
+
3721
+ #: views/global/theme-action.php:5
3722
+ msgctxt "(Admin)"
3723
+ msgid "Classic"
3724
+ msgstr "Klassikaline"
3725
+
3726
+ #: views/global/theme-action.php:8
3727
+ #, fuzzy
3728
+ msgctxt "(Admin)"
3729
+ msgid "Edgeless"
3730
+ msgstr "Servatu"
3731
+
3732
+ #: views/installer/continue-notice.php:2
3733
+ #, fuzzy
3734
+ #| msgctxt "(Admin)"
3735
+ #| msgid "The The GDPR Framework setup has not been finalized yet."
3736
+ msgctxt "(Admin)"
3737
+ msgid "The The GDPR Framework setup has not been finalized yet."
3738
+ msgstr "GDPR raamistiku seadistamine pole veel lõppenud."
3739
+
3740
+ #: views/installer/continue-notice.php:3
3741
+ #, fuzzy
3742
+ #| msgctxt "(Admin)"
3743
+ #| msgid "You can continue the setup at any time."
3744
+ msgctxt "(Admin)"
3745
+ msgid "You can continue the setup at any time."
3746
+ msgstr "Saate seadeid igal ajal jätkata."
3747
+
3748
+ #: views/installer/continue-notice.php:6
3749
+ #, fuzzy
3750
+ #| msgctxt "(Admin)"
3751
+ #| msgid "Continue the setup wizard"
3752
+ msgctxt "(Admin)"
3753
+ msgid "Continue the setup wizard"
3754
+ msgstr "Jätkake häälestusviisardit"
3755
+
3756
+ #: views/installer/continue-notice.php:9
3757
+ msgctxt "(Admin)"
3758
+ msgid "Hide this message"
3759
+ msgstr "Peida see sõnum"
3760
+
3761
+ #: views/installer/footer.php:7
3762
+ msgid "Back"
3763
+ msgstr "Tagasi"
3764
+
3765
+ #: views/installer/header.php:7
3766
+ #, fuzzy
3767
+ msgctxt "(Admin)"
3768
+ msgid "WordPress GDPR &rsaquo; Setup Wizard"
3769
+ msgstr "WordPressi GDPR › Häälestusviisard"
3770
+
3771
+ #: views/installer/header.php:23
3772
+ #, fuzzy
3773
+ #| msgctxt "(Admin)"
3774
+ #| msgid "The GDPR Framework"
3775
+ msgctxt "(Admin)"
3776
+ msgid "The GDPR Framework"
3777
+ msgstr "GDPR raamistik"
3778
+
3779
+ #: views/installer/header.php:26
3780
+ #, fuzzy
3781
+ #| msgctxt "(Admin)"
3782
+ #| msgid "I need help"
3783
+ msgctxt "(Admin)"
3784
+ msgid "I need help"
3785
+ msgstr "ma vajan abi"
3786
+
3787
+ #: views/installer/header.php:29
3788
+ #, fuzzy
3789
+ #| msgctxt "(Admin)"
3790
+ #| msgid "Developer Docs"
3791
+ msgctxt "(Admin)"
3792
+ msgid "Developer Docs"
3793
+ msgstr "Arendaja dokumendid"
3794
+
3795
+ #: views/installer/header.php:36
3796
+ msgctxt "(Admin)"
3797
+ msgid "Configuration"
3798
+ msgstr "Konfiguratsioon"
3799
+
3800
+ #: views/installer/header.php:46
3801
+ #, fuzzy
3802
+ #| msgctxt "(Admin)"
3803
+ #| msgid "Forms & Consent"
3804
+ msgctxt "(Admin)"
3805
+ msgid "Forms & Consent"
3806
+ msgstr "Vormid ja nõusolek"
3807
+
3808
+ #: views/installer/header.php:51
3809
+ msgctxt "(Admin)"
3810
+ msgid "Integrations"
3811
+ msgstr "Integratsioonid"
3812
+
3813
+ #: views/installer/privacy-safe-notice.php:3
3814
+ #, fuzzy
3815
+ msgctxt "(Admin)"
3816
+ msgid ""
3817
+ "Strengthen your reputation. Privacy safe gives your customers total control "
3818
+ "of their private information. The privacy safe seal assures your new "
3819
+ "customers that your business is in compliance with new privacy laws and "
3820
+ "regulations. For the privacy safe seal will verify that GDPR Framework "
3821
+ "plugin is installed."
3822
+ msgstr ""
3823
+ "Tugevdage oma mainet. Privaatsusturvaline turvalisus annab teie klientidele "
3824
+ "täieliku kontrolli oma privaatse teabe üle. Privaatsuse turvaplomm kinnitab "
3825
+ "teie uutele klientidele, et teie ettevõte vastab uutele privaatsusseadustele "
3826
+ "ja -määrustele. Privaatsuse turvaplommi puhul kontrollitakse, kas GDPR "
3827
+ "Frameworki lisandmoodul on installitud."
3828
+
3829
+ #: views/installer/privacy-safe-notice.php:9
3830
+ msgctxt "(Admin)"
3831
+ msgid "Learn More"
3832
+ msgstr "Saa rohkem teada"
3833
+
3834
+ #: views/installer/privacy-safe-notice.php:12
3835
+ #, fuzzy
3836
+ msgctxt "(Admin)"
3837
+ msgid "Maybe Later"
3838
+ msgstr "Võib-olla hiljem"
3839
+
3840
+ #: views/installer/steps/configuration-settings.php:23
3841
+ #: views/installer/steps/configuration-settings.php:73
3842
+ #, fuzzy
3843
+ #| msgctxt "(Admin)"
3844
+ #| msgid "Enter the email address to notify"
3845
+ msgctxt "(Admin)"
3846
+ msgid "Enter the email address to notify"
3847
+ msgstr "Sisestage teavitamiseks olev e-posti aadress"
3848
+
3849
+ #: views/installer/steps/disclaimer.php:21
3850
+ #, fuzzy
3851
+ #| msgctxt "(Admin)"
3852
+ #| msgid "I accept"
3853
+ msgctxt "(Admin)"
3854
+ msgid "I accept"
3855
+ msgstr "I accept"
3856
+
3857
+ #: views/installer/welcome-notice.php:2
3858
+ #, fuzzy
3859
+ #| msgctxt "(Admin)"
3860
+ #| msgid "The The GDPR Framework setup has not been finalized yet."
3861
+ msgctxt "(Admin)"
3862
+ msgid "The GDPR Framework has not been set up yet. Would you like to do that?"
3863
+ msgstr "GDPR raamistiku seadistamine pole veel lõppenud."
3864
+
3865
+ #: views/installer/welcome-notice.php:3
3866
+ #, fuzzy
3867
+ msgctxt "(Admin)"
3868
+ msgid "Our setup wizard will guide you through the process."
3869
+ msgstr "Meie häälestusviisard juhendab teid protsessis."
3870
+
3871
+ #: views/installer/welcome-notice.php:4
3872
+ #, fuzzy
3873
+ msgctxt "(Admin)"
3874
+ msgid "You can also configure the plugin manually by going to"
3875
+ msgstr "Plugina saate konfigureerida ka käsitsi, minnes"
3876
+
3877
+ #: views/installer/welcome-notice.php:5
3878
+ msgctxt "(Admin)"
3879
+ msgid "Tools"
3880
+ msgstr "Tööriistad"
3881
+
3882
+ #: views/installer/welcome-notice.php:10
3883
+ #, fuzzy
3884
+ #| msgctxt "(Admin)"
3885
+ #| msgid "Run the setup wizard"
3886
+ msgctxt "(Admin)"
3887
+ msgid "Run the setup wizard"
3888
+ msgstr "Käivitage häälestusviisard"
3889
+
3890
+ #: views/installer/welcome-notice.php:14
3891
+ #, fuzzy
3892
+ #| msgctxt "(Admin)"
3893
+ #| msgid "Auto-install pages"
3894
+ msgctxt "(Admin)"
3895
+ msgid "Auto-install pages"
3896
+ msgstr "Auto-installi lehed"
3897
+
3898
+ #: views/installer/welcome-notice.php:18
3899
+ #, fuzzy
3900
+ #| msgctxt "(Admin)"
3901
+ #| msgid "Skip and install manually"
3902
+ msgctxt "(Admin)"
3903
+ msgid "Skip and install manually"
3904
+ msgstr "Jätke vahele ja installige käsitsi"
3905
+
3906
+ #: views/modules/contact-form-7/form-privacy-tab.php:10
3907
+ #, fuzzy
3908
+ msgctxt "(Admin)"
3909
+ msgid ""
3910
+ "Include the entries of this form when downloading or deleting a data "
3911
+ "subject's data."
3912
+ msgstr ""
3913
+ "Saate andmesubjekti andmete allalaadimisel või kustutamisel kaasata selle "
3914
+ "vormi kirjed."
3915
+
3916
+ #: views/modules/contact-form-7/form-privacy-tab.php:18
3917
+ #, fuzzy
3918
+ msgctxt "(Admin)"
3919
+ msgid ""
3920
+ "Select the mail-tag of the sender's email field (for example, your-email)."
3921
+ msgstr "Valige saatja meilivälja meilisilt (nt teie meilisõnum)."
3922
+
3923
+ #: views/modules/contact-form-7/generator-privacy.php:6
3924
+ #, fuzzy
3925
+ #| msgctxt "(Admin)"
3926
+ #| msgid ""
3927
+ #| "This tag generates the default text for Terms & Conditions and/or Privacy "
3928
+ #| "Policy checkbox."
3929
+ msgctxt "(Admin)"
3930
+ msgid ""
3931
+ "This tag generates the default text for Terms & Conditions and/or Privacy "
3932
+ "Policy checkbox."
3933
+ msgstr ""
3934
+ "See silt genereerib Tingimuste ja tingimuste ja / või privaatsuseeskirjade "
3935
+ "vaikekirja."
3936
+
3937
+ #: views/modules/contact-form-7/generator-privacy.php:15
3938
+ msgid "Insert"
3939
+ msgstr "Sisesta"
3940
+
3941
+ #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:3
3942
+ #: views/privacy-tools/form-consent.php:2
3943
+ msgid "Consent"
3944
+ msgstr "Nõusolek"
3945
+
3946
+ #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:6
3947
+ #: views/privacy-tools/form-consent.php:6
3948
+ msgid "Here you can withdraw any consents you have given."
3949
+ msgstr "Siin saate tagasi võtta kõik antud nõusolekud"
3950
+
3951
+ #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:8
3952
+ msgid "Consents"
3953
+ msgstr "Nõusolekud"
3954
+
3955
+ #: views/modules/wordpress-user/dashboard/data-page/form-consent.php:23
3956
+ #: views/privacy-tools/form-consent.php:24
3957
+ msgid "Withdraw"
3958
+ msgstr "Võta tagasi"
3959
+
3960
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:5
3961
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:5
3962
+ #, fuzzy
3963
+ #| msgctxt "(Admin)"
3964
+ #| msgid "Delete this user and all data"
3965
+ msgctxt "(Admin)"
3966
+ msgid "Delete this user and all data"
3967
+ msgstr "Kustuta see kasutaja ja kõik andmed"
3968
+
3969
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:11
3970
+ msgctxt "(Admin)"
3971
+ msgid "Delete my data"
3972
+ msgstr "Kustuta oma andmed"
3973
+
3974
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:15
3975
+ #: views/privacy-tools/form-delete.php:4 views/privacy-tools/form-delete.php:24
3976
+ msgid "Delete all data we have gathered about you."
3977
+ msgstr "Kogu info teie kohta kustutatakse."
3978
+
3979
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:16
3980
+ #: views/privacy-tools/form-delete.php:5 views/privacy-tools/form-delete.php:25
3981
+ msgid "If you have a user account on our site, it will also be deleted."
3982
+ msgstr "Kui teil on meie lehel kasutajakonto, siis ka see kustutatakse."
3983
+
3984
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:17
3985
+ #: views/privacy-tools/form-delete.php:6 views/privacy-tools/form-delete.php:26
3986
+ msgid "Be careful - this action is permanent and CANNOT be undone."
3987
+ msgstr "Ettevaatust - seda tegevust EI SAA tagasi võtta."
3988
+
3989
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:19
3990
+ #: views/privacy-tools/form-delete.php:8
3991
+ msgid "Note Regarding Order:"
3992
+ msgstr "Märkus tellimuse kohta:"
3993
+
3994
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:20
3995
+ #: views/privacy-tools/form-delete.php:9
3996
+ msgid ""
3997
+ "Your order with status Processing will not get deleted until status change."
3998
+ msgstr ""
3999
+ "Teie tellimus olekuga Töötlemine ei kustutata enne, kui staatus muutub."
4000
+
4001
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:21
4002
+ #: views/privacy-tools/form-delete.php:10
4003
+ msgid "Your order with status Completed will get anonymize."
4004
+ msgstr "Teie tellimus olekuga Lõpetatud saab anonüümseks."
4005
+
4006
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:22
4007
+ #: views/privacy-tools/form-delete.php:11
4008
+ msgid "If you delete Completed order you can't apply for refund."
4009
+ msgstr "Kui olete kustutatud tellimuse kustutanud, ei saa te toetust taotleda."
4010
+
4011
+ #: views/modules/wordpress-user/dashboard/data-page/form-delete.php:28
4012
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:23
4013
+ #, fuzzy
4014
+ #| msgctxt "(Admin)"
4015
+ #| msgid ""
4016
+ #| "You seem to have an administrator or equivalent role, so deleting/"
4017
+ #| "anonymizing via this page is disabled."
4018
+ msgctxt "(Admin)"
4019
+ msgid ""
4020
+ "You seem to have an administrator or equivalent role, so deleting/"
4021
+ "anonymizing via this page is disabled."
4022
+ msgstr ""
4023
+ "Tundub, et teil on administraator või samaväärne roll, nii et selle lehe "
4024
+ "kustutamine / anonüümimine on keelatud."
4025
+
4026
+ #: views/modules/wordpress-user/dashboard/form-export.php:7
4027
+ #: views/privacy-tools/form-export.php:1
4028
+ msgid "Download your data"
4029
+ msgstr "Lae oma andmed alla"
4030
+
4031
+ #: views/modules/wordpress-user/dashboard/form-export.php:12
4032
+ #: views/privacy-tools/form-export.php:13
4033
+ msgid "Download as table"
4034
+ msgstr "Lae oma andmed tabelina alla"
4035
+
4036
+ #: views/modules/wordpress-user/dashboard/form-export.php:15
4037
+ #: views/privacy-tools/form-export.php:22
4038
+ msgid "Export as JSON"
4039
+ msgstr "Ekspordi JSON failina"
4040
+
4041
+ #: views/modules/wordpress-user/dashboard/form-export.php:19
4042
+ #: views/privacy-tools/form-export.php:4
4043
+ msgid "You can download all your data formatted as a table for viewing."
4044
+ msgstr "Saate oma andmed tabeli kujul alla laadida"
4045
+
4046
+ #: views/modules/wordpress-user/dashboard/form-export.php:20
4047
+ #: views/privacy-tools/form-export.php:5
4048
+ msgid "Alternatively, you can export it in machine-readable JSON format."
4049
+ msgstr "Alternatiivselt saate eksportida faili masinloetavas JSON formaadis."
4050
+
4051
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:11
4052
+ #, fuzzy
4053
+ #| msgctxt "(Admin)"
4054
+ #| msgid "Delete user and all data"
4055
+ msgctxt "(Admin)"
4056
+ msgid "Delete user and all data"
4057
+ msgstr "Kustuta kasutaja ja kõik andmed"
4058
+
4059
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:14
4060
+ #, fuzzy
4061
+ #| msgctxt "(Admin)"
4062
+ #| msgid "Anonymize user and all data"
4063
+ msgctxt "(Admin)"
4064
+ msgid "Anonymize user and all data"
4065
+ msgstr "Anonüümutage kasutaja ja kõik andmed"
4066
+
4067
+ #: views/modules/wordpress-user/dashboard/profile-page/form-delete.php:18
4068
+ msgctxt "gdpr-framework"
4069
+ msgid "Be careful - this action is permanent and CANNOT be undone."
4070
+ msgstr "Ettevaatust - seda tegevust EI SAA tagasi võtta."
4071
+
4072
+ #: views/modules/wordpress-user/dashboard/profile-page/header.php:2
4073
+ #, fuzzy
4074
+ #| msgctxt "(Admin)"
4075
+ #| msgid "GDPR Data"
4076
+ msgctxt "(Admin)"
4077
+ msgid "GDPR Data"
4078
+ msgstr "GDPR-i andmed"
4079
+
4080
+ #: views/modules/wordpress-user/dashboard/profile-page/header.php:6
4081
+ #, fuzzy
4082
+ #| msgctxt "(Admin)"
4083
+ #| msgid "This user has been anonymized."
4084
+ msgctxt "(Admin)"
4085
+ msgid "This user has been anonymized."
4086
+ msgstr "See kasutaja on anonüümseks saanud."
4087
+
4088
+ #: views/modules/wordpress-user/dashboard/profile-page/table-consent.php:17
4089
+ #, fuzzy
4090
+ #| msgctxt "(Admin)"
4091
+ #| msgid "No consents given"
4092
+ msgctxt "(Admin)"
4093
+ msgid "No consents given"
4094
+ msgstr "Pole antud nõusolekut"
4095
+
4096
+ #: views/modules/wordpress-user/dashboard/profile-page/user-logs.php:2
4097
+ #, fuzzy
4098
+ msgctxt "gdpr-framework"
4099
+ msgid "GDPR User logs"
4100
+ msgstr "GDPR-i kasutajalogid"
4101
+
4102
+ #: views/modules/wordpress-user/dashboard/profile-page/user-logs.php:8
4103
+ #, fuzzy
4104
+ msgctxt "gdpr-framework"
4105
+ msgid "S.no"
4106
+ msgstr "S.no"
4107
+
4108
+ #: views/modules/wordpress-user/dashboard/profile-page/user-logs.php:9
4109
+ #, fuzzy
4110
+ msgctxt "gdpr-framework"
4111
+ msgid "User ID"
4112
+ msgstr "Kasutaja ID"
4113
+
4114
+ #: views/modules/wordpress-user/dashboard/profile-page/user-logs.php:10
4115
+ #, fuzzy
4116
+ msgctxt "gdpr-framework"
4117
+ msgid "User logs"
4118
+ msgstr "Kasutaja logid"
4119
+
4120
+ #: views/modules/wordpress-user/dashboard/profile-page/user-logs.php:11
4121
+ #, fuzzy
4122
+ msgctxt "gdpr-framework"
4123
+ msgid "Updated date"
4124
+ msgstr "Värskendatud kuupäev"
4125
+
4126
+ #: views/modules/wordpress-user/dashboard/profile-page/user-logs.php:50
4127
+ #, fuzzy
4128
+ msgctxt "gdpr-framework"
4129
+ msgid "No User Logs"
4130
+ msgstr "Kasutajalogisid pole"
4131
+
4132
+ #: views/privacy-tools/donotsell.php:14
4133
+ #, fuzzy
4134
+ #| msgid "Data removal request"
4135
+ msgid "Do Not Sell Request"
4136
+ msgstr "Andmete kustutamise taotlus"
4137
+
4138
+ #: views/privacy-tools/donotsell.php:51
4139
+ #, fuzzy
4140
+ msgid "I agree to receive other communications from "
4141
+ msgstr "Nõustun saama muid teateid "
4142
+
4143
+ #: views/privacy-tools/donotsell.php:61
4144
+ msgctxt "(Admin)"
4145
+ msgid "Send Request"
4146
+ msgstr "Saada taotlus"
4147
+
4148
+ #: views/privacy-tools/form-consent.php:9
4149
+ msgid "Consent types"
4150
+ msgstr "Nõusoleku tüübid"
4151
+
4152
+ #: views/privacy-tools/form-delete.php:1
4153
+ #: views/privacy-tools/notice-admin-role.php:1
4154
+ msgid "Delete my user and data"
4155
+ msgstr "Kustuta minu kasutaja ja andmed"
4156
+
4157
+ #: views/privacy-tools/form-delete.php:18
4158
+ #: views/privacy-tools/form-delete.php:30
4159
+ msgid "Delete my data"
4160
+ msgstr "Kustuta minu andmed"
4161
+
4162
+ #: views/privacy-tools/form-identify.php:8
4163
+ msgid "Back to front page"
4164
+ msgstr "Tagasi esilehele"
4165
+
4166
+ #: views/privacy-tools/form-identify.php:14
4167
+ #, fuzzy
4168
+ #| msgid "Identify yourself!"
4169
+ msgid "Please identify yourself via e-mail"
4170
+ msgstr "Tuvasta ennast!"
4171
+
4172
+ #: views/privacy-tools/form-identify.php:17
4173
+ #: views/privacy-tools/form-identify.php:20
4174
+ msgid "Enter your email address"
4175
+ msgstr "Sisestage oma e-maili aadress"
4176
+
4177
+ #: views/privacy-tools/form-identify.php:23
4178
+ msgid "Send email"
4179
+ msgstr "Saada e-mail"
4180
+
4181
+ #: views/privacy-tools/notice-admin-role.php:4
4182
+ #, fuzzy
4183
+ #| msgctxt "(Admin)"
4184
+ #| msgid "Data deletion is disabled for administrative accounts."
4185
+ msgctxt "(Admin)"
4186
+ msgid "Data deletion is disabled for administrative accounts."
4187
+ msgstr "Andmete kustutamine on administraatorikontode puhul keelatud."
4188
+
4189
+ #: views/privacy-tools/notices.php:3
4190
+ msgid ""
4191
+ "We will send you an email with the link to access your data. Please check "
4192
+ "your spam folder as well!"
4193
+ msgstr ""
4194
+ "Saadame teile e-maili koos lingiga mis võimaldab teie isiklikele andmetele "
4195
+ "ligi pääseda. Palun kontrollige ka oma rämpsposti!"
4196
+
4197
+ #: views/privacy-tools/notices.php:7
4198
+ msgid "The email you entered does not appear to be a valid email."
4199
+ msgstr "Sisestatud e-mail on vigane."
4200
+
4201
+ #: views/privacy-tools/notices.php:11
4202
+ msgid "Sorry - the link seems to have expired. Please try again!"
4203
+ msgstr "Vabandame - see link on aegunud. Palun proovige uuesti!"
4204
+
4205
+ #: views/privacy-tools/notices.php:23
4206
+ msgid "Your personal data has been removed!"
4207
+ msgstr "Teie isiklikud andmed on kustutatud!"
4208
+
4209
+ #: views/privacy-tools/privacy-tools.php:5
4210
+ msgid "You are identified as"
4211
+ msgstr "Te olete tuvastatud e-maili aadressiga"
4212
+
4213
+ #. Plugin Name of the plugin/theme
4214
+ #, fuzzy
4215
+ #| msgctxt "(Admin)"
4216
+ #| msgid "The GDPR Framework"
4217
+ msgid "The GDPR Framework"
4218
+ msgstr "GDPR raamistik"
4219
+
4220
+ #. Plugin URI of the plugin/theme
4221
+ #, fuzzy
4222
+ msgid "https://www.data443.com/gdpr-framework/"
4223
+ msgstr "https://www.data443.com/gdpr-framework/"
4224
+
4225
+ #. Description of the plugin/theme
4226
+ #, fuzzy
4227
+ msgid ""
4228
+ "Tools to help make your website GDPR-compliant. Fully documented, extendable "
4229
+ "and developer-friendly."
4230
+ msgstr ""
4231
+ "Tööriistad, mis aitavad muuta teie veebisaidi GDPR-iga ühilduvaks. "
4232
+ "Täielikult dokumenteeritud, laiendatav ja arendajasõbralik."
4233
+
4234
+ #. Author of the plugin/theme
4235
+ #, fuzzy
4236
+ msgid "Data443"
4237
+ msgstr "Andmed443 GDPR"
4238
+
4239
+ #. Author URI of the plugin/theme
4240
+ #, fuzzy
4241
+ msgid "https://www.data443.com/"
4242
+ msgstr "https://www.data443.com/"
4243
+
4244
+ #, php-format
4245
+ #~ msgid "%sERROR:%s You need to accept the privacy policy to post a comment."
4246
+ #~ msgstr ""
4247
+ #~ "%sVIGA%s Kommentaari postitamiseks peate nõustuma privaatsuseeskirjadega."
4248
+
4249
+ #~ msgctxt "(Admin)"
4250
+ #~ msgid "Rest of the world"
4251
+ #~ msgstr "Ülejäänud maailm"
4252
+
4253
+ #~ msgctxt "(Admin)"
4254
+ #~ msgid ""
4255
+ #~ "Found a bug or problem with the plugin? Post in the wordpress.org support "
4256
+ #~ "forum."
4257
+ #~ msgstr ""
4258
+ #~ "Kas leidsite pistikprogrammiga viga või probleemi? Postitage wordpress."
4259
+ #~ "org toe foorum."
4260
+
4261
+ #~ msgctxt "(Admin)"
4262
+ #~ msgid ""
4263
+ #~ "Need development or legal assistance in making your site compliant? We "
4264
+ #~ "can help!"
4265
+ #~ msgstr ""
4266
+ #~ "Kas soovite saidi nõuetele vastavat arendust või õigusabi? Me saame "
4267
+ #~ "aidata!"
4268
+
4269
+ #, php-format
4270
+ #~ msgid "I accept the %sTerms and Conditions%s and the %sPrivacy Policy%s"
4271
+ #~ msgstr "Nõustun %sKasutustingimustega%s ja %sPrivaatsustingimustega%s"
4272
+
4273
+ #~ msgctxt "(Admin)"
4274
+ #~ msgid "This page allows you to advance integration with ClassiDocs™"
4275
+ #~ msgstr "See leht võimaldab teil integreerida edasi ClassiDocs™"
4276
+
4277
+ #~ msgctxt "(Admin)"
4278
+ #~ msgid "ClassiDocs Password"
4279
+ #~ msgstr "ClassiDocs parool"
4280
+
4281
+ #~ msgctxt "(Admin)"
4282
+ #~ msgid "ClassiDocs Username"
4283
+ #~ msgstr "ClassiDocs kasutajanimi"
4284
+
4285
+ #~ msgctxt "(Admin)"
4286
+ #~ msgid "Enable Response with related queries?"
4287
+ #~ msgstr "Kas lubada vastust seotud päringutega?"
4288
+
4289
+ #~ msgctxt "(Admin)"
4290
+ #~ msgid "Submit SAR request details?"
4291
+ #~ msgstr "Esitage SAR-i teabe üksikasjad?"
4292
+
4293
+ #~ msgctxt "(Admin)"
4294
+ #~ msgid "Integrate with ClassiDocs?"
4295
+ #~ msgstr "Integreeri ClassiDocsiga?"
4296
+
4297
+ #~ msgctxt "(Admin)"
4298
+ #~ msgid "Advanced Integration"
4299
+ #~ msgstr "Täiustatud integratsioon"
4300
+
4301
+ #~ msgctxt "(Admin)"
4302
+ #~ msgid "Sign up for free here"
4303
+ #~ msgstr "Registreeruge siin tasuta"
4304
+
4305
+ #~ msgctxt "(Admin)"
4306
+ #~ msgid "Click Here"
4307
+ #~ msgstr "Kliki siia"
4308
+
4309
+ #~ msgid "Previous Results"
4310
+ #~ msgstr "Eelmised tulemused"
4311
+
4312
+ #~ msgid "Current Results"
4313
+ #~ msgstr "Praegused tulemused"
4314
+
4315
+ #~ msgid "Path"
4316
+ #~ msgstr "Tee"
4317
+
4318
+ #~ msgid "Workstation"
4319
+ #~ msgstr "Tööjaam"
4320
+
4321
+ #~ msgid "Last Scan"
4322
+ #~ msgstr "Viimane skannimine"
4323
+
4324
+ #~ msgid "No ClassiDocs data found!"
4325
+ #~ msgstr "KlassiDocsi andmeid ei leitud!"
4326
+
4327
+ #~ msgid "Cookies used on the website!"
4328
+ #~ msgstr "Veebisaidil kasutatud küpsised!"
4329
+
4330
+ #~ msgctxt "(Admin)"
4331
+ #~ msgid ""
4332
+ #~ "In addition to DSAR tracking and management, Privacy Manager adds the "
4333
+ #~ "following features to your data protection compliance resources:"
4334
+ #~ msgstr ""
4335
+ #~ "Lisaks DSAR-i jälgimisele ja haldamisele lisab Privacy Manager teie "
4336
+ #~ "andmekaitse nõuetele vastavuse ressurssidele järgmised funktsioonid:"
4337
+
4338
+ #~ msgctxt "(Admin)"
4339
+ #~ msgid "Log and store ICO breach notifications"
4340
+ #~ msgstr "Logige ja salvestage ICO rikkumise teatised"
4341
+
4342
+ #~ msgctxt "(Admin)"
4343
+ #~ msgid "Keeps full record of all requests, ticketed and timeline"
4344
+ #~ msgstr "Salvestab kõik taotlused, piletid ja ajakava"
4345
+
4346
+ #~ msgctxt "(Admin)"
4347
+ #~ msgid "Gap analysis and breach notifications"
4348
+ #~ msgstr "Lünga analüüs ja rikkumisest teatamine"
4349
+
4350
+ #~ msgctxt "(Admin)"
4351
+ #~ msgid "In depth activity log with all GDPR, CCPA, etc actions evidenced"
4352
+ #~ msgstr ""
4353
+ #~ "Tõestatud on põhjalik tegevuslogi koos kõigi GDPR, CCPA jne toimingutega"
4354
+
4355
+ #~ msgctxt "(Admin)"
4356
+ #~ msgid "Highlights areas of concern and where you need to focus"
4357
+ #~ msgstr ""
4358
+ #~ "Tõstab esile murettekitavad valdkonnad ja selle, kuhu peate keskenduma"
4359
+
4360
+ #~ msgctxt "(Admin)"
4361
+ #~ msgid ""
4362
+ #~ "eLearning platform with access for all staff to ensure privacy regulation "
4363
+ #~ "compliance and obligations"
4364
+ #~ msgstr ""
4365
+ #~ "e-õppe platvorm, millel on juurdepääs kõigile töötajatele, et tagada "
4366
+ #~ "eraelu puutumatuse eeskirjade järgimine ja kohustused"
4367
+
4368
+ #~ msgctxt "(Admin)"
4369
+ #~ msgid "Tracks who accesses the system, when and why"
4370
+ #~ msgstr "Süsteemile ligipääsud, millal ja miks"
4371
+
4372
+ #~ msgctxt "(Admin)"
4373
+ #~ msgid ""
4374
+ #~ "Our system enables your business to demonstrate its obligations in "
4375
+ #~ "protecting your customer data, show understanding of your business "
4376
+ #~ "activities and deliver eLearning and online tests to employees, ensuring "
4377
+ #~ "everyone in your company understands your privacy compliance rules and "
4378
+ #~ "best practices to operate."
4379
+ #~ msgstr ""
4380
+ #~ "Meie süsteem võimaldab teie ettevõttel näidata oma kohustusi oma "
4381
+ #~ "kliendiandmete kaitsmisel, näidata oma äritegevuse mõistmist ning pakkuda "
4382
+ #~ "töötajatele e-õppe ja online-teste, tagades, et igaüks teie ettevõttes "
4383
+ #~ "mõistab teie privaatsuse järgimise eeskirju ja parimaid tavasid."
4384
+
4385
+ #~ msgctxt "(Admin)"
4386
+ #~ msgid "Enable WooCommerce data on GDPR tool"
4387
+ #~ msgstr "Luba WooCommerce andmed GDPR-vahendil"
languages/gdpr-framework-fr_FR.mo CHANGED
Binary file
languages/gdpr-framework-fr_FR.po CHANGED
@@ -7,68 +7,100 @@ msgid ""
7
  msgstr ""
8
  "Project-Id-Version: The GDPR Framework 1.0\n"
9
  "Report-Msgid-Bugs-To: gdpr@codelight.eu\n"
10
- "POT-Creation-Date: 2018-04-16 10:50+0000\n"
11
- "PO-Revision-Date: 2019-09-19 12:41+0530\n"
 
12
  "Language-Team: \n"
 
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
- "X-Generator: Poedit 1.5.7\n"
17
- "Last-Translator: \n"
18
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
19
- "Language: fr_FR\n"
20
 
21
- #: gdpr-framework.php:26
22
  msgctxt "(Admin)"
23
  msgid "WordPress GDPR &rsaquo; Error"
24
- msgstr "WordPress GDPR &rsaquo; Error"
25
 
26
- #: gdpr-framework.php:35
 
 
 
 
 
27
  msgctxt "(Admin)"
28
  msgid "Invalid PHP version"
29
  msgstr "Version PHP n’est pas valide"
30
 
31
- #: gdpr-framework.php:35
32
  msgctxt "(Admin)"
33
- msgid "You must be using PHP 5.6.33 or greater."
34
- msgstr "Vous devez utiliser PHP PHP 5.6.33 or supérieur."
35
 
36
- #: gdpr-framework.php:42
37
  msgctxt "(Admin)"
38
  msgid "Invalid WordPress version"
39
- msgstr "Version WordPress incorrecte"
40
 
41
- #: gdpr-framework.php:42
42
  msgctxt "(Admin)"
43
- msgid "You must be using WordPress 4.3.0 or greater."
44
- msgstr "You must be using WordPress 4.3.0 or supérieur."
45
 
46
- #: gdpr-framework.php:52
47
  msgctxt "(Admin)"
48
  msgid ""
49
  "You appear to be running a development version of GDPR. You must run "
50
  "<code>composer install</code> from the plugin directory."
51
  msgstr ""
52
- "Vous semblez exécuter une version de développement de GDPR. Vous devez "
53
- "exécuter l' <code>composer install</code> de <code>composer install</code> "
54
- "partir du répertoire du plugin."
55
 
56
- #: gdpr-framework.php:53
57
  msgctxt "(Admin)"
58
  msgid "Autoloader not found."
59
  msgstr "Autoloader n’est pas trouvé."
60
 
61
- #: gdpr-framework.php:115
62
- msgctxt "(Admin)"
63
- msgid "Anonymous"
64
- msgstr "Anonyme"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
65
 
66
- #: src/Admin/AdminTab.php:115
 
 
 
 
 
67
  msgctxt "(Admin)"
68
  msgid "Save"
69
- msgstr "Enregistrer"
70
 
71
- #: src/Admin/AdminTab.php:151
72
  msgctxt "(Admin)"
73
  msgid "Policy generated!"
74
  msgstr "Politique de confidentialité générée !"
@@ -78,141 +110,296 @@ msgctxt "(Admin)"
78
  msgid "General"
79
  msgstr "Général"
80
 
81
- #: src/Admin/AdminTabGeneral.php:38
82
  msgctxt "(Admin)"
83
  msgid "General Settings"
84
  msgstr "Réglages généraux"
85
 
86
- #: src/Admin/AdminTabGeneral.php:43
87
  msgctxt "(Admin)"
88
  msgid "Enable Privacy Tools"
89
- msgstr "Activer le mode de confidentialité"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
 
91
- #: src/Admin/AdminTabGeneral.php:53
 
 
 
 
 
 
 
 
 
 
92
  msgctxt "(Admin)"
93
  msgid "Pages"
94
  msgstr "Pages"
95
 
96
- #: src/Admin/AdminTabGeneral.php:58 src/Admin/WordpressAdmin.php:151
97
  msgctxt "(Admin)"
98
  msgid "Privacy Tools Page"
99
- msgstr "Déclaration de confidentialité"
 
 
 
 
 
100
 
101
- #: src/Admin/AdminTabGeneral.php:65 src/Admin/WordpressAdmin.php:147
102
  msgctxt "(Admin)"
103
  msgid "Privacy Policy Page"
104
- msgstr "Page de Politique de confidentialité"
 
 
 
 
 
105
 
106
- #: src/Admin/AdminTabGeneral.php:72
107
  msgctxt "(Admin)"
108
  msgid "Terms & Conditions Page"
109
- msgstr "Conditions générales"
 
 
 
 
 
110
 
111
- #: src/Admin/AdminTabGeneral.php:82
112
  msgctxt "(Admin)"
113
  msgid "View & Export Data"
114
  msgstr "Voir et exporter les données"
115
 
116
- #: src/Admin/AdminTabGeneral.php:87
 
 
 
117
  msgctxt "(Admin)"
118
  msgid "Export action"
119
  msgstr "Exporter"
120
 
121
- #: src/Admin/AdminTabGeneral.php:94 src/Admin/AdminTabGeneral.php:133
122
  msgctxt "(Admin)"
123
  msgid "Email to notify"
124
- msgstr "Adresse de messagerie"
125
 
126
- #: src/Admin/AdminTabGeneral.php:105
 
 
 
127
  msgctxt "(Admin)"
128
  msgid "Delete & Anonymize Data"
129
  msgstr "Rendre anonyme les données"
130
 
131
- #: src/Admin/AdminTabGeneral.php:110
132
  msgctxt "(Admin)"
133
  msgid "Delete action"
134
- msgstr "Supprimer"
135
 
136
- #: src/Admin/AdminTabGeneral.php:117
 
 
 
137
  msgctxt "(Admin)"
138
  msgid "Delete or reassign content?"
139
  msgstr "Supprimer ou réaffecter du contenu?"
140
 
141
- #: src/Admin/AdminTabGeneral.php:125
 
 
 
142
  msgctxt "(Admin)"
143
  msgid "Reassign content to"
144
  msgstr "Réaffecter le contenu à"
145
 
146
- #: src/Admin/AdminTabGeneral.php:145
147
  msgctxt "(Admin)"
148
  msgid "Styling"
149
- msgstr "Mise en forme"
150
 
151
- #: src/Admin/AdminTabGeneral.php:150
 
 
 
152
  msgctxt "(Admin)"
153
  msgid "Enable basic styling on Privacy Tools page"
154
  msgstr "Activer les styles de base à la page Privacy Tools"
155
 
156
- #: src/Admin/AdminTabGeneral.php:162
157
  msgctxt "(Admin)"
158
  msgid "Compatibility"
159
  msgstr "Compatibilité"
160
 
161
- #: src/Admin/AdminTabGeneral.php:167
 
 
 
162
  msgctxt "(Admin)"
163
  msgid "Enable automatic theme compatibility"
164
  msgstr "Activer la compatibilité avec thème automatique"
165
 
166
- #: src/Admin/AdminTabGeneral.php:184 src/Admin/AdminTabGeneral.php:200
167
- #: src/Admin/AdminTabGeneral.php:213 src/Admin/AdminTabGeneral.php:252
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  msgstr ""
8
  "Project-Id-Version: The GDPR Framework 1.0\n"
9
  "Report-Msgid-Bugs-To: gdpr@codelight.eu\n"
10
+ "POT-Creation-Date: 2021-10-28 11:20-0400\n"
11
+ "PO-Revision-Date: 2021-10-28 11:48-0400\n"
12
+ "Last-Translator: \n"
13
  "Language-Team: \n"
14
+ "Language: fr_FR\n"
15
  "MIME-Version: 1.0\n"
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
18
+ "X-Generator: Poedit 3.0\n"
 
19
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
20
 
21
+ #: gdpr-framework.php:110
22
  msgctxt "(Admin)"
23
  msgid "WordPress GDPR &rsaquo; Error"
24
+ msgstr "WordPress GDPR &rsaquo; Erreur"
25
 
26
+ #: gdpr-framework.php:121
27
+ msgctxt "(Admin)"
28
+ msgid "You must be using PHP 5.6.0 or greater."
29
+ msgstr "Vous devez utiliser PHP 5.6.0 ou supérieur."
30
+
31
+ #: gdpr-framework.php:122
32
  msgctxt "(Admin)"
33
  msgid "Invalid PHP version"
34
  msgstr "Version PHP n’est pas valide"
35
 
36
+ #: gdpr-framework.php:132
37
  msgctxt "(Admin)"
38
+ msgid "You must be using WordPress 4.3.0 or greater."
39
+ msgstr "Vous devez utiliser WordPress 4.3.0 ou supérieur."
40
 
41
+ #: gdpr-framework.php:133
42
  msgctxt "(Admin)"
43
  msgid "Invalid WordPress version"
44
+ msgstr "Version de WordPress incorrecte"
45
 
46
+ #: gdpr-framework.php:204
47
  msgctxt "(Admin)"
48
+ msgid "Anonymous"
49
+ msgstr "Anonyme"
50
 
51
+ #: gdpr-helper-functions.php:75
52
  msgctxt "(Admin)"
53
  msgid ""
54
  "You appear to be running a development version of GDPR. You must run "
55
  "<code>composer install</code> from the plugin directory."
56
  msgstr ""
57
+ "Vous semblez utiliser une version de développement de GDPR. Vous devez "
58
+ "exécuter <code>composer install</code> depuis le répertoire du plugin."
 
59
 
60
+ #: gdpr-helper-functions.php:80
61
  msgctxt "(Admin)"
62
  msgid "Autoloader not found."
63
  msgstr "Autoloader n’est pas trouvé."
64
 
65
+ #: gdpr-helper-functions.php:126
66
+ msgid ""
67
+ "This website uses cookies to ensure you get the best experience on our "
68
+ "website."
69
+ msgstr ""
70
+ "Ce site utilise des cookies pour vous garantir la meilleure expérience sur "
71
+ "notre site."
72
+
73
+ #: gdpr-helper-functions.php:139
74
+ msgid "Decline"
75
+ msgstr "déclin"
76
+
77
+ #: gdpr-helper-functions.php:152
78
+ msgid "Accept"
79
+ msgstr "Acceptez"
80
+
81
+ #: gdpr-helper-functions.php:165
82
+ msgid "Learn more"
83
+ msgstr "Apprendre encore plus"
84
+
85
+ #: gdpr-helper-functions.php:220
86
+ msgid "Cookie Policy"
87
+ msgstr "Politique de cookie"
88
+
89
+ #: gdpr-helper-functions.php:258
90
+ msgid "Settings"
91
+ msgstr "Paramètres"
92
 
93
+ #: gdpr-helper-functions.php:259
94
+ msgid "PREMIUM"
95
+ msgstr "PREMIUM"
96
+
97
+ #: src/Admin/AdminTab.php:195
98
+ #: src/Components/PrivacySafe/AdminTabPrivacySafe.php:114
99
  msgctxt "(Admin)"
100
  msgid "Save"
101
+ msgstr "Sauvegarder"
102
 
103
+ #: src/Admin/AdminTab.php:231
104
  msgctxt "(Admin)"
105
  msgid "Policy generated!"
106
  msgstr "Politique de confidentialité générée !"
110
  msgid "General"
111
  msgstr "Général"
112
 
113
+ #: src/Admin/AdminTabGeneral.php:55
114
  msgctxt "(Admin)"
115
  msgid "General Settings"
116
  msgstr "Réglages généraux"
117
 
118
+ #: src/Admin/AdminTabGeneral.php:60
119
  msgctxt "(Admin)"
120
  msgid "Enable Privacy Tools"
121
+ msgstr "Outils de confidentialité"
122
+
123
+ #: src/Admin/AdminTabGeneral.php:67
124
+ msgctxt "(Admin)"
125
+ msgid "Enable Term and Conditions"
126
+ msgstr "Termes et conditions"
127
+
128
+ #: src/Admin/AdminTabGeneral.php:74
129
+ msgctxt "(Admin)"
130
+ msgid "Disable Comment Checkbox"
131
+ msgstr "Case à cocher Commentaire"
132
+
133
+ #: src/Admin/AdminTabGeneral.php:81
134
+ msgctxt "(Admin)"
135
+ msgid "Disable Register Form Checkbox"
136
+ msgstr "Case à cocher du formulaire d’inscription"
137
+
138
+ #: src/Admin/AdminTabGeneral.php:91
139
+ msgctxt "(Admin)"
140
+ msgid "Email Setting"
141
+ msgstr "Paramètre Email"
142
 
143
+ #: src/Admin/AdminTabGeneral.php:96
144
+ msgctxt "(Admin)"
145
+ msgid "From Name"
146
+ msgstr "Nom de l'expéditeur"
147
+
148
+ #: src/Admin/AdminTabGeneral.php:103
149
+ msgctxt "(Admin)"
150
+ msgid "From Email"
151
+ msgstr "Email de l'expéditeur"
152
+
153
+ #: src/Admin/AdminTabGeneral.php:112
154
  msgctxt "(Admin)"
155
  msgid "Pages"
156
  msgstr "Pages"
157
 
158
+ #: src/Admin/AdminTabGeneral.php:117 src/Admin/WordpressAdmin.php:166
159
  msgctxt "(Admin)"
160
  msgid "Privacy Tools Page"
161
+ msgstr "Page des outils de confidentialité"
162
+
163
+ #: src/Admin/AdminTabGeneral.php:124
164
+ msgctxt "(Admin)"
165
+ msgid "Privacy Tools Custom URL"
166
+ msgstr "URL personnalisée de la Politique de confidentialité"
167
 
168
+ #: src/Admin/AdminTabGeneral.php:131 src/Admin/WordpressAdmin.php:162
169
  msgctxt "(Admin)"
170
  msgid "Privacy Policy Page"
171
+ msgstr "Page de la Politique de confidentialité"
172
+
173
+ #: src/Admin/AdminTabGeneral.php:138
174
+ msgctxt "(Admin)"
175
+ msgid "Privacy Policy Custom URL"
176
+ msgstr "Politique de confidentialité URL personnalisée"
177
 
178
+ #: src/Admin/AdminTabGeneral.php:145
179
  msgctxt "(Admin)"
180
  msgid "Terms & Conditions Page"
181
+ msgstr "Page de Conditions générales de ventes CGV"
182
+
183
+ #: src/Admin/AdminTabGeneral.php:152
184
+ msgctxt "(Admin)"
185
+ msgid "Terms & Conditions Custom URL"
186
+ msgstr "URL personnalisée des Conditions générales"
187
 
188
+ #: src/Admin/AdminTabGeneral.php:162
189
  msgctxt "(Admin)"
190
  msgid "View & Export Data"
191
  msgstr "Voir et exporter les données"
192
 
193
+ #: src/Admin/AdminTabGeneral.php:167
194
+ #, fuzzy
195
+ #| msgctxt "(Admin)"
196
+ #| msgid "Export action"
197
  msgctxt "(Admin)"
198
  msgid "Export action"
199
  msgstr "Exporter"
200
 
201
+ #: src/Admin/AdminTabGeneral.php:174 src/Admin/AdminTabGeneral.php:213
202
  msgctxt "(Admin)"
203
  msgid "Email to notify"
204
+ msgstr "E-mail à notifier"
205
 
206
+ #: src/Admin/AdminTabGeneral.php:185
207
+ #, fuzzy
208
+ #| msgctxt "(Admin)"
209
+ #| msgid "Delete & Anonymize Data"
210
  msgctxt "(Admin)"
211
  msgid "Delete & Anonymize Data"
212
  msgstr "Rendre anonyme les données"
213
 
214
+ #: src/Admin/AdminTabGeneral.php:190
215
  msgctxt "(Admin)"
216
  msgid "Delete action"
217
+ msgstr "Supprimer le projet"
218
 
219
+ #: src/Admin/AdminTabGeneral.php:197
220
+ #, fuzzy
221
+ #| msgctxt "(Admin)"
222
+ #| msgid "Delete or reassign content?"
223
  msgctxt "(Admin)"
224
  msgid "Delete or reassign content?"
225
  msgstr "Supprimer ou réaffecter du contenu?"
226
 
227
+ #: src/Admin/AdminTabGeneral.php:205
228
+ #, fuzzy
229
+ #| msgctxt "(Admin)"
230
+ #| msgid "Reassign content to"
231
  msgctxt "(Admin)"
232
  msgid "Reassign content to"
233
  msgstr "Réaffecter le contenu à"
234
 
235
+ #: src/Admin/AdminTabGeneral.php:225
236
  msgctxt "(Admin)"
237
  msgid "Styling"
238
+ msgstr "Style"
239
 
240
+ #: src/Admin/AdminTabGeneral.php:230
241
+ #, fuzzy
242
+ #| msgctxt "(Admin)"
243
+ #| msgid "Enable basic styling on Privacy Tools page"
244
  msgctxt "(Admin)"
245
  msgid "Enable basic styling on Privacy Tools page"
246
  msgstr "Activer les styles de base à la page Privacy Tools"
247
 
248
+ #: src/Admin/AdminTabGeneral.php:242
249
  msgctxt "(Admin)"
250
  msgid "Compatibility"
251
  msgstr "Compatibilité"
252
 
253
+ #: src/Admin/AdminTabGeneral.php:247
254
+ #, fuzzy
255
+ #| msgctxt "(Admin)"
256
+ #| msgid "Enable automatic theme compatibility"
257
  msgctxt "(Admin)"
258
  msgid "Enable automatic theme compatibility"
259
  msgstr "Activer la compatibilité avec thème automatique"
260
 
261
+ #: src/Admin/AdminTabGeneral.php:259
262
+ msgctxt "(Admin)"
263
+ msgid "Woocommerce Integration"
264
+ msgstr "Intégration Woocommerce"
265
+
266
+ #: src/Admin/AdminTabGeneral.php:264
267
+ #, fuzzy
268
+ #| msgctxt "(Admin)"
269
+ #| msgid "Enable WooCommerce Compatibility"
270
+ msgctxt "(Admin)"
271
+ msgid "Enable WooCommerce Compatibility"
272
+ msgstr "Activer la compatibilité WooCommerce"
273
+
274
+ #: src/Admin/AdminTabGeneral.php:271
275
+ #: views/admin/general/woo-disable_checkbox.php:10
276
+ msgctxt "(Admin)"
277
+ msgid "Disable WooCommerce Privacy Checkbox"
278
+ msgstr "Désactiver la case à cocher Commentaire"
279
+
280
+ #: src/Admin/AdminTabGeneral.php:278
281
+ #: views/admin/general/woo-disable_register_checkbox.php:9
282
+ msgctxt "(Admin)"
283
+ msgid "Disable WooCommerce Register Privacy Checkbox"
284
+ msgstr "Désactiver la case à cocher de confidentialité de WooCommerce"
285
+
286
+ #: src/Admin/AdminTabGeneral.php:290
287
+ #, fuzzy
288
+ #| msgctxt "(Admin)"
289
+ #| msgid "Easy Digital Download Integration"
290
+ msgctxt "(Admin)"
291
+ msgid "Easy Digital Download Integration"
292
+ msgstr "Intégration facile du téléchargement numérique"
293
+
294
+ #: src/Admin/AdminTabGeneral.php:295
295
+ #, fuzzy
296
+ #| msgctxt "(Admin)"
297
+ #| msgid "Enable