Cookie Law / GDPR Info - Version 2.0.0

Version Description

  • Introduced website cookie scanner
  • Introduced dynamic cookie categories
Download this release

Release Info

Developer webtoffee
Plugin Icon Cookie Law / GDPR Info
Version 2.0.0
Comparing to
See all releases

Code changes from version 1.9.5 to 2.0.0

Files changed (61) hide show
  1. admin/class-cookie-law-info-admin.php +70 -260
  2. admin/css/cookie-law-info-admin.css +278 -0
  3. admin/images/add.svg +41 -0
  4. admin/js/cookie-law-info-admin.js +142 -82
  5. admin/js/cookie-law-info-ckyes.js +256 -0
  6. admin/modules/cli-policy-generator/classes/class-preview-page.php +26 -23
  7. admin/modules/cookie-scaner/assets/images/loading.gif +0 -0
  8. admin/modules/cookie-scaner/assets/images/screenshot-1.png +0 -0
  9. admin/modules/cookie-scaner/assets/js/cookie-scaner.js +420 -0
  10. admin/modules/cookie-scaner/classes/class-cookie-law-info-cookie-scanner-ajax.php +548 -0
  11. admin/modules/cookie-scaner/classes/class-cookie-law-info-cookie-scanner-api.php +136 -0
  12. admin/modules/cookie-scaner/classes/class-cookie-law-info-cookie-scanner-export.php +144 -0
  13. admin/modules/cookie-scaner/cookie-scaner.php +1226 -0
  14. admin/modules/cookie-scaner/views/scan-results.php +83 -0
  15. admin/modules/cookie-scaner/views/settings.php +203 -0
  16. admin/modules/cookies/cookies.php +1078 -0
  17. admin/modules/cookies/images/cli_icon.png +0 -0
  18. admin/modules/cookies/views/necessary-settings.php +58 -0
  19. admin/modules/cookies/views/non-necessary-settings.php +93 -0
  20. admin/partials/cookie-law-info-admin_settings.php +43 -19
  21. admin/views/admin-settings-advanced.php +1 -1
  22. admin/views/admin-settings-general.php +0 -0
  23. admin/views/admin-settings-messagebar.php +0 -0
  24. admin/views/admin-settings-save-button.php +1 -1
  25. admin/views/goto-pro.php +0 -0
  26. cookie-law-info.php +10 -4
  27. images/add.svg +41 -0
  28. images/logo-cookieyes.svg +46 -0
  29. images/tick.png +0 -0
  30. includes/class-cookie-law-info-activator.php +103 -27
  31. includes/class-cookie-law-info-cookieyes.php +1200 -0
  32. includes/class-cookie-law-info-languages.php +149 -0
  33. includes/class-cookie-law-info.php +46 -10
  34. includes/class-wt-security-helper.php +179 -0
  35. languages/cookie-law-info-bg_BG.mo +0 -0
  36. languages/cookie-law-info-bg_BG.po +0 -1899
  37. languages/cookie-law-info-cs_CZ.mo +0 -0
  38. languages/cookie-law-info-cs_CZ.po +0 -1850
  39. languages/cookie-law-info-da_DA.mo +0 -0
  40. languages/cookie-law-info-da_DA.po +0 -1848
  41. languages/cookie-law-info-da_DK.mo +0 -0
  42. languages/cookie-law-info-da_DK.po +0 -2258
  43. languages/cookie-law-info-de_DE.mo +0 -0
  44. languages/cookie-law-info-de_DE.po +0 -1971
  45. languages/cookie-law-info-es_ES.mo +0 -0
  46. languages/cookie-law-info-es_ES.po +0 -1866
  47. languages/cookie-law-info-fi.mo +0 -0
  48. languages/cookie-law-info-fi.po +0 -1632
  49. languages/cookie-law-info-fr_FR.mo +0 -0
  50. languages/cookie-law-info-fr_FR.po +0 -1724
  51. languages/cookie-law-info-hr.mo +0 -0
  52. languages/cookie-law-info-hr.po +0 -1754
  53. languages/cookie-law-info-is_IS.mo +0 -0
  54. languages/cookie-law-info-is_IS.po +0 -1776
  55. languages/cookie-law-info-it_IT.mo +0 -0
  56. languages/cookie-law-info-nl_NL.mo +0 -0
  57. languages/cookie-law-info-nl_NL.po +0 -1799
  58. languages/cookie-law-info-pt_BR.mo +0 -0
  59. languages/cookie-law-info-pt_BR.po +0 -1639
  60. languages/cookie-law-info-pt_PT.mo +0 -0
  61. languages/cookie-law-info-pt_PT.po +0 -989
admin/class-cookie-law-info-admin.php CHANGED
@@ -47,8 +47,10 @@ class Cookie_Law_Info_Admin {
47
  * Please check the `admin_modules` method for more details
48
  */
49
  private $modules=array(
 
50
  'cli-policy-generator',
51
  'ccpa',
 
52
  'uninstall-feedback',
53
  );
54
 
@@ -66,8 +68,43 @@ class Cookie_Law_Info_Admin {
66
  $this->plugin_name = $plugin_name;
67
  $this->version = $version;
68
  $this->plugin_obj = $plugin_obj;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
69
  }
70
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
71
  /**
72
  * Register the stylesheets for the admin area.
73
  *
@@ -111,7 +148,9 @@ class Cookie_Law_Info_Admin {
111
  * between the defined hooks and the functions defined in this
112
  * class.
113
  */
114
- wp_register_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/cookie-law-info-admin.js', array( 'jquery' ,'wp-color-picker'), $this->version, false );
 
 
115
 
116
  }
117
 
@@ -150,22 +189,6 @@ class Cookie_Law_Info_Admin {
150
  'cookie-law-info',
151
  array($this,'admin_settings_page')
152
  );
153
- add_submenu_page(
154
- 'edit.php?post_type='.CLI_POST_TYPE,
155
- __('Non-necessary','cookie-law-info'),
156
- __('Non-necessary','cookie-law-info'),
157
- 'manage_options',
158
- 'cookie-law-info-thirdparty',
159
- array($this,'admin_non_necessary_cookie_page')
160
- );
161
- add_submenu_page(
162
- 'edit.php?post_type='.CLI_POST_TYPE,
163
- __('Necessary','cookie-law-info'),
164
- __('Necessary','cookie-law-info'),
165
- 'manage_options',
166
- 'cookie-law-info-necessary',
167
- array($this,'admin_necessary_cookie_page')
168
- );
169
  add_submenu_page(
170
  'edit.php?post_type='.CLI_POST_TYPE,
171
  __('Privacy Overview','cookie-law-info'),
@@ -250,128 +273,11 @@ class Cookie_Law_Info_Admin {
250
  return $links;
251
  }
252
 
253
- /**
254
- * Return the default Non-necessary category data
255
- *
256
- * @since 1.9.2
257
- * @return array
258
- */
259
- public static function get_non_necessary_defaults() {
260
- $settings = array(
261
- 'thirdparty_on_field' => true,
262
- 'third_party_default_state' => true,
263
- 'thirdparty_title' => 'Non-necessary',
264
- 'thirdparty_description' => 'Any cookies that may not be particularly necessary for the website to function and is used specifically to collect user personal data via analytics, ads, other embedded contents are termed as non-necessary cookies. It is mandatory to procure user consent prior to running these cookies on your website.',
265
- 'thirdparty_head_section' => '',
266
- 'thirdparty_body_section' => '',
267
- );
268
- return $settings;
269
- }
270
- public function admin_non_necessary_cookie_page()
271
- {
272
- wp_enqueue_script($this->plugin_name);
273
-
274
- if (!current_user_can('manage_options'))
275
- {
276
- wp_die(__('You do not have sufficient permission to perform this operation', 'cookie-law-info'));
277
- }
278
- // Get options:
279
- $stored_options = get_option('cookielawinfo_thirdparty_settings');
280
- $stored_options = ( isset( $stored_options ) && is_array( $stored_options ) ) ? $stored_options : array();
281
- $default_settings = self::get_non_necessary_defaults();
282
-
283
- $wt_cli_non_necessary_title = isset($stored_options['thirdparty_title']) ? $stored_options['thirdparty_title'] : $default_settings['thirdparty_title'];
284
- $wt_cli_non_necessary_description = isset($stored_options['thirdparty_description']) ? $stored_options['thirdparty_description'] : $default_settings['thirdparty_description'];
285
- $wt_cli_non_necessary_head_scripts = isset($stored_options['thirdparty_head_section']) ? $stored_options['thirdparty_head_section'] : $default_settings['thirdparty_head_section'];
286
- $wt_cli_non_necessary_body_scripts = isset($stored_options['thirdparty_body_section']) ? $stored_options['thirdparty_body_section'] : $default_settings['thirdparty_body_section'];
287
- $wt_cli_non_necessary_enabled = isset($stored_options['thirdparty_on_field']) ? $stored_options['thirdparty_on_field'] : $default_settings['thirdparty_on_field'];
288
- $wt_cli_default_state = isset($stored_options['third_party_default_state']) ? $stored_options['third_party_default_state'] : $default_settings['third_party_default_state'];
289
- // Check if form has been set:
290
- if (
291
- isset($_POST['update_thirdparty_settings_form']) || //normal php submit
292
- isset($_POST['cli_non-necessary_ajax_update'])
293
- )
294
- {
295
- // Check nonce:
296
- check_admin_referer('cookielawinfo-update-thirdparty');
297
-
298
- $wt_cli_non_necessary_title = $stored_options['thirdparty_title'] = sanitize_text_field( isset( $_POST['wt_cli_non_necessary_title'] ) ? $_POST['wt_cli_non_necessary_title'] : '' );
299
- $wt_cli_non_necessary_enabled = $stored_options['thirdparty_on_field'] = (bool)( isset( $_POST['thirdparty_on_field'] ) ? Cookie_Law_Info::sanitise_settings('thirdparty_on_field',$_POST['thirdparty_on_field']) : false );
300
- $wt_cli_default_state = $stored_options['third_party_default_state'] = (bool)( isset( $_POST['third_party_default_state'] ) ? Cookie_Law_Info::sanitise_settings('third_party_default_state',$_POST['third_party_default_state']) : true );
301
- $wt_cli_non_necessary_description = $stored_options['thirdparty_description'] = wp_kses_post( isset( $_POST['thirdparty_description'] ) && $_POST['thirdparty_description'] !== '' ? $_POST['thirdparty_description'] : '' );
302
- $wt_cli_non_necessary_head_scripts = $stored_options['thirdparty_head_section'] = wp_unslash( isset( $_POST['thirdparty_head_section'] ) && $_POST['thirdparty_head_section'] !== '' ? $_POST['thirdparty_head_section'] : '' );
303
- $wt_cli_non_necessary_body_scripts = $stored_options['thirdparty_body_section'] = wp_unslash( isset( $_POST['thirdparty_body_section'] ) && $_POST['thirdparty_body_section'] !== '' ? $_POST['thirdparty_body_section'] : '' );
304
- update_option('cookielawinfo_thirdparty_settings', $stored_options);
305
- echo '<div class="updated"><p><strong>';
306
- echo __('Settings Updated.','cookie-law-info');
307
- echo '</strong></p></div>';
308
- if(!empty($_SERVER[ 'HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH'])=='xmlhttprequest')
309
- {
310
- exit();
311
- }
312
- }
313
- require_once plugin_dir_path( __FILE__ ).'views/admin_non_necessary_cookie.php';
314
- }
315
- /**
316
- * Return the default Necessary category data
317
- *
318
- * @since 1.9.2
319
- * @return array
320
- */
321
- public static function get_necessary_defaults() {
322
- $settings = array(
323
- 'necessary_title' => 'Necessary',
324
- 'necessary_description' => 'Necessary cookies are absolutely essential for the website to function properly. This category only includes cookies that ensures basic functionalities and security features of the website. These cookies do not store any personal information.',
325
- );
326
- return $settings;
327
- }
328
- public function admin_necessary_cookie_page()
329
- {
330
- wp_enqueue_script($this->plugin_name);
331
-
332
- if (!current_user_can('manage_options'))
333
- {
334
- wp_die(__('You do not have sufficient permission to perform this operation', 'cookie-law-info'));
335
- }
336
-
337
- // Get options:
338
- $stored_options = get_option('cookielawinfo_necessary_settings');
339
-
340
- $stored_options = ( isset( $stored_options ) && is_array( $stored_options ) ) ? $stored_options : array();
341
- $default_settings = self::get_necessary_defaults();
342
-
343
- $wt_cli_necessary_title = isset($stored_options['necessary_title']) ? $stored_options['necessary_title'] : $default_settings['necessary_title'];
344
- $wt_cli_necessary_description = isset($stored_options['necessary_description']) ? $stored_options['necessary_description'] : $default_settings['necessary_description'];
345
- // Check if form has been set:
346
- if (
347
- isset($_POST['update_necessary_settings_form']) || //normal php submit
348
- isset($_POST['cli_necessary_ajax_update'])
349
- )
350
- {
351
- // Check nonce:
352
- check_admin_referer('cookielawinfo-update-necessary');
353
-
354
- $wt_cli_necessary_title = $stored_options['necessary_title'] = sanitize_text_field( isset( $_POST['wt_cli_necessary_title'] ) ? $_POST['wt_cli_necessary_title'] : '' );
355
- $wt_cli_necessary_description = $stored_options['necessary_description'] = wp_kses_post( isset( $_POST['necessary_description'] ) && $_POST['necessary_description'] !== '' ? $_POST['necessary_description'] : '' );
356
-
357
- update_option('cookielawinfo_necessary_settings', $stored_options);
358
- echo '<div class="updated"><p><strong>';
359
- echo __('Settings Updated.','cookie-law-info');
360
- echo '</strong></p></div>';
361
-
362
- if(!empty($_SERVER[ 'HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH'])=='xmlhttprequest')
363
- {
364
- exit();
365
- }
366
- }
367
- require_once plugin_dir_path( __FILE__ ).'views/admin_necessary_cookie.php';
368
- }
369
  /*
370
  * admin settings page
371
  */
372
  public function admin_settings_page()
373
  {
374
- wp_enqueue_script($this->plugin_name);
375
  // Lock out non-admins:
376
  if (!current_user_can('manage_options'))
377
  {
@@ -431,135 +337,12 @@ class Cookie_Law_Info_Admin {
431
  - Cookie Type (e.g. session, permanent)
432
  - Cookie Duration (e.g. 2 hours, days, years, etc)
433
  */
434
- public function add_meta_box() {
435
-
436
- add_meta_box("_cli_cookie_slugid",__('Cookie ID','cookie-law-info'), array($this,"metabox_cookie_slugid"), "cookielawinfo", "side", "default");
437
- add_meta_box("_cli_cookie_type",__('Cookie Type','cookie-law-info'), array($this,"metabox_cookie_type"), "cookielawinfo", "side", "default");
438
- add_meta_box("_cli_cookie_duration", __('Cookie Duration','cookie-law-info'), array($this,"metabox_cookie_duration"), "cookielawinfo", "side", "default");
439
- add_meta_box("_cli_cookie_sensitivity",__('Cookie Sensitivity','cookie-law-info'), array($this,"metabox_cookie_sensitivity"), "cookielawinfo", "side", "default");
440
- }
441
-
442
- /** Display the custom meta box for cookie_slugid */
443
- public function metabox_cookie_slugid()
444
- {
445
- global $post;
446
- $custom = get_post_custom( $post->ID );
447
- $cookie_slugid = ( isset ( $custom["_cli_cookie_slugid"][0] ) ) ? $custom["_cli_cookie_slugid"][0] : '';
448
- ?>
449
- <label>Cookie ID:</label>
450
- <input name="_cli_cookie_slugid" value="<?php echo sanitize_text_field( $cookie_slugid ); ?>" style="width:95%;" />
451
- <?php
452
- }
453
-
454
- /** Display the custom meta box for cookie_type */
455
- public function metabox_cookie_type()
456
- {
457
- global $post;
458
- $custom = get_post_custom( $post->ID );
459
- $cookie_type = ( isset ( $custom["_cli_cookie_type"][0] ) ) ? $custom["_cli_cookie_type"][0] : '';
460
- ?>
461
- <label>Cookie Type: (persistent, session, third party )</label>
462
- <input name="_cli_cookie_type" value="<?php echo sanitize_text_field( $cookie_type ); ?>" style="width:95%;" />
463
- <?php
464
- }
465
-
466
- /** Display the custom meta box for cookie_duration */
467
- public function metabox_cookie_duration() {
468
- global $post;
469
- $custom = get_post_custom( $post->ID );
470
- $cookie_duration = ( isset ( $custom["_cli_cookie_duration"][0] ) ) ? $custom["_cli_cookie_duration"][0] : '';
471
- ?>
472
- <label>Cookie Duration:</label>
473
- <input name="_cli_cookie_duration" value="<?php echo sanitize_text_field( $cookie_duration ); ?>" style="width:95%;" />
474
- <?php
475
- }
476
-
477
- /** Display the custom meta box for cookie_sensitivity */
478
- public function metabox_cookie_sensitivity()
479
- {
480
- global $post;
481
- $custom = get_post_custom( $post->ID );
482
- $cookie_sensitivity = ( isset ( $custom["_cli_cookie_sensitivity"][0] ) ) ? $custom["_cli_cookie_sensitivity"][0] : '';
483
- ?>
484
- <label>Cookie Sensitivity: ( necessary , non-necessary )</label>
485
- <input name="_cli_cookie_sensitivity" value="<?php echo sanitize_text_field( $cookie_sensitivity ); ?>" style="width:95%;" />
486
- <?php
487
- }
488
 
489
- /** Saves all form data from custom post meta boxes, including saitisation of input */
490
- public function save_custom_metaboxes()
491
- {
492
- global $post;
493
- if ( isset ( $_POST["_cli_cookie_type"] ) ) {
494
- update_post_meta( $post->ID, "_cli_cookie_type", sanitize_text_field( $_POST["_cli_cookie_type"] ) );
495
- }
496
- if ( isset ( $_POST["_cli_cookie_type"] ) ) {
497
- update_post_meta( $post->ID, "_cli_cookie_duration", sanitize_text_field( $_POST["_cli_cookie_duration"] ) );
498
- }
499
- if ( isset ( $_POST["_cli_cookie_sensitivity"] ) ) {
500
- update_post_meta( $post->ID, "_cli_cookie_sensitivity", sanitize_text_field( $_POST["_cli_cookie_sensitivity"] ) );
501
- }
502
- if ( isset ( $_POST["_cli_cookie_slugid"] ) ) {
503
- update_post_meta( $post->ID, "_cli_cookie_slugid", sanitize_text_field( $_POST["_cli_cookie_slugid"] ) );
504
- }
505
- }
506
 
507
  /** Apply column names to the custom post type table */
508
- public function manage_edit_columns( $columns )
509
- {
510
- $columns = array(
511
- "cb" => "<input type=\"checkbox\" />",
512
- "title" => "Cookie Name",
513
- "type" => "Type",
514
- "duration" => "Duration",
515
- "sensitivity" => "Sensitivity",
516
- "slugid" => "ID",
517
- "description" => "Description"
518
- );
519
- return $columns;
520
- }
521
-
522
- /** Add column data to custom post type table columns */
523
- public function manage_posts_custom_columns( $column, $post_id=0 )
524
- {
525
- global $post;
526
-
527
- switch ( $column ) {
528
- case "description":
529
-
530
- $content_post = get_post($post_id);
531
- if($content_post){
532
- echo $content_post->post_content;
533
- }else{
534
- echo '---';
535
- }
536
- break;
537
- case "type":
538
- $custom = get_post_custom();
539
- if ( isset ( $custom["_cli_cookie_type"][0] ) ) {
540
- echo $custom["_cli_cookie_type"][0];
541
- }
542
- break;
543
- case "duration":
544
- $custom = get_post_custom();
545
- if ( isset ( $custom["_cli_cookie_duration"][0] ) ) {
546
- echo $custom["_cli_cookie_duration"][0];
547
- }
548
- break;
549
- case "sensitivity":
550
- $custom = get_post_custom();
551
- if ( isset ( $custom["_cli_cookie_sensitivity"][0] ) ) {
552
- echo $custom["_cli_cookie_sensitivity"][0];
553
- }
554
- break;
555
- case "slugid":
556
- $custom = get_post_custom();
557
- if ( isset ( $custom["_cli_cookie_slugid"][0] ) ) {
558
- echo $custom["_cli_cookie_slugid"][0];
559
- }
560
- break;
561
- }
562
- }
563
 
564
  function remove_cli_addnew_link()
565
  {
@@ -780,4 +563,31 @@ class Cookie_Law_Info_Admin {
780
  return $fonts;
781
  }
782
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
783
  }
47
  * Please check the `admin_modules` method for more details
48
  */
49
  private $modules=array(
50
+ 'cookies',
51
  'cli-policy-generator',
52
  'ccpa',
53
+ 'cookie-scaner',
54
  'uninstall-feedback',
55
  );
56
 
68
  $this->plugin_name = $plugin_name;
69
  $this->version = $version;
70
  $this->plugin_obj = $plugin_obj;
71
+ add_action('admin_init',array( $this, 'load_plugin' ));
72
+ register_activation_hook(CLI_PLUGIN_FILENAME,array($this,'activator'));
73
+ // since 1.9.5 Initialize plugin settings
74
+ add_action('wt_cli_initialize_plugin',array( $this, 'initialize_plugin_settings' ));
75
+ }
76
+
77
+ /**
78
+ * Store default datas to the database if a first time user
79
+ *
80
+ * @since 2.3.1
81
+ * @access public
82
+ */
83
+ public function activator() {
84
+
85
+ if( Cookie_Law_Info::maybe_first_time_install() === true ) {
86
+ add_option( 'wt_cli_first_time_activated_plugin', 'true' );
87
+ }
88
  }
89
 
90
+ public function set_default_settings() {
91
+ $options = get_option(CLI_SETTINGS_FIELD);
92
+ if( $options === false ) {
93
+ $default = Cookie_Law_Info::get_settings();
94
+ update_option(CLI_SETTINGS_FIELD,$default);
95
+ }
96
+ }
97
+ public function set_privacy_overview_options(){
98
+ $options = get_option('cookielawinfo_privacy_overview_content_settings');
99
+ if( $options === false ) {
100
+ $default = self::get_privacy_defaults();
101
+ update_option('cookielawinfo_privacy_overview_content_settings',$default);
102
+ }
103
+ }
104
+ public function initialize_plugin_settings(){
105
+ $this->set_default_settings();
106
+ $this->set_privacy_overview_options();
107
+ }
108
  /**
109
  * Register the stylesheets for the admin area.
110
  *
148
  * between the defined hooks and the functions defined in this
149
  * class.
150
  */
151
+ if(isset($_GET['post_type']) && $_GET['post_type']==CLI_POST_TYPE) {
152
+ wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/cookie-law-info-admin.js', array( 'jquery' ,'wp-color-picker'),$this->version, false );
153
+ }
154
 
155
  }
156
 
189
  'cookie-law-info',
190
  array($this,'admin_settings_page')
191
  );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
192
  add_submenu_page(
193
  'edit.php?post_type='.CLI_POST_TYPE,
194
  __('Privacy Overview','cookie-law-info'),
273
  return $links;
274
  }
275
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
276
  /*
277
  * admin settings page
278
  */
279
  public function admin_settings_page()
280
  {
 
281
  // Lock out non-admins:
282
  if (!current_user_can('manage_options'))
283
  {
337
  - Cookie Type (e.g. session, permanent)
338
  - Cookie Duration (e.g. 2 hours, days, years, etc)
339
  */
340
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
341
 
342
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
343
 
344
  /** Apply column names to the custom post type table */
345
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
346
 
347
  function remove_cli_addnew_link()
348
  {
563
  return $fonts;
564
  }
565
 
566
+ /**
567
+ * Set plugin default plugin on activation
568
+ *
569
+ * @since 1.9.5
570
+ * @access public
571
+ */
572
+
573
+ public function load_plugin(){
574
+
575
+ if ( is_admin() && get_option( 'wt_cli_first_time_activated_plugin' ) == 'true' ) {
576
+ do_action('wt_cli_initialize_plugin');
577
+ delete_option('wt_cli_first_time_activated_plugin');
578
+ }
579
+ $this->redirect_to_settings_page();
580
+ }
581
+ public static function wt_cli_admin_notice( $type='info', $message='', $icon= false ){
582
+ $icon_class = ( true === $icon ) ? 'wt-cli-callout-icon':'';
583
+ $html = '<div class="wt-cli-callout wt-cli-callout-'.$type.' '.$icon_class.' ">'.$message.'</div>';
584
+ return $html;
585
+ }
586
+ public function redirect_to_settings_page() {
587
+ if ( ! isset( $_GET['post_type'] ) && isset( $_GET['page'] ) && $_GET['page'] == 'cookie-law-info' ) {
588
+ wp_safe_redirect( admin_url( 'edit.php?post_type=' . CLI_POST_TYPE . '&page=cookie-law-info' ) );
589
+ exit();
590
+ }
591
+ }
592
+
593
  }
admin/css/cookie-law-info-admin.css CHANGED
@@ -485,6 +485,8 @@ span.wt-cli-tootip-icon {
485
  border-left: 4px solid;
486
  border-color: #00a0d2;
487
  margin-bottom: 15px;
 
 
488
  }
489
 
490
  .wt-cli-notice.wt-cli-info:before {
@@ -495,6 +497,22 @@ span.wt-cli-tootip-icon {
495
  left: 15px;
496
  font-size: 16px;
497
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
498
  /* Toggle checkbox CSS since 1.9.4 */
499
  .wt-cli-input-toggle-section
500
  {
@@ -511,4 +529,264 @@ span.wt-cli-tootip-icon {
511
  }
512
  .wt-cli-section-floating-widget-settings .form-table th {
513
  width: 260px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
514
  }
485
  border-left: 4px solid;
486
  border-color: #00a0d2;
487
  margin-bottom: 15px;
488
+ width:100%;
489
+ box-sizing: border-box;
490
  }
491
 
492
  .wt-cli-notice.wt-cli-info:before {
497
  left: 15px;
498
  font-size: 16px;
499
  }
500
+ .wt-cli-status-success:before{
501
+ content: "";
502
+ background: url(../images/add.svg);
503
+ width: 18px;
504
+ height: 18px;
505
+ display: block;
506
+ background-size: cover;
507
+ }
508
+ .wt-cli-status-icon {
509
+ width: 18px;
510
+ height: 18px;
511
+ font-size: 16px;
512
+ text-align: center;
513
+ content: "";
514
+ font-family: "dashicons";
515
+ }
516
  /* Toggle checkbox CSS since 1.9.4 */
517
  .wt-cli-input-toggle-section
518
  {
529
  }
530
  .wt-cli-section-floating-widget-settings .form-table th {
531
  width: 260px;
532
+ }
533
+
534
+
535
+ /* Callout styles */
536
+
537
+ .wt-cli-callout {
538
+ width:100%;
539
+ padding: 1.5em 1.5em 1.5em 1.5em;
540
+ margin-bottom: 1.5em;
541
+ overflow: auto;
542
+ position: relative;
543
+ border-width: 0 0 0 5px;
544
+ border-style: solid;
545
+ min-width: 170px;
546
+ box-sizing: border-box;
547
+ }
548
+ .wt-cli-callout.wt-cli-callout-icon {
549
+ padding: 1.5em 3em 1.6em 3.7em;
550
+ }
551
+ .wt-cli-callout p {
552
+ margin-bottom: 0.6em;
553
+ margin-top: 0.5em;
554
+ }
555
+ .wt-cli-callout p:first-child {
556
+ margin-top: 0;
557
+ }
558
+ .wt-cli-callout p:last-child {
559
+ margin-bottom: 0;
560
+ }
561
+ .wt-cli-callout:before {
562
+ content: "";
563
+ font-family: "dashicons";
564
+ position: absolute;
565
+ font-size: 20px;
566
+ top: 50%;
567
+ left: 0.5em;
568
+ transform: translateY(-50%);
569
+ }
570
+ .wt-cli-callout .screen-reader-text + br {
571
+ display: none;
572
+ }
573
+
574
+ .wt-cli-callout-info { background: #e5f5fa; border-color: #00a0d2; }
575
+ .wt-cli-callout-success { background: #eff7ed; border-color: #64b450; }
576
+ .wt-cli-callout-alert { background: #fff8e5; border-color: #ffb900; }
577
+ .wt-cli-callout-tutorial { background: #f2f0f7; border-color: #826eb4; }
578
+ .wt-cli-callout-warning { background: #fbeaea; border-color: #dc3232; }
579
+
580
+ .wt-cli-callout-info.wt-cli-callout-icon:before { content: "\f348"; color: #00a0d2; }
581
+ .wt-cli-callout-success.wt-cli-callout-icon:before { content: ""; color: #fff; width: 18px; height: 18px;background:url('../images/add.svg'); }
582
+ .wt-cli-callout-alert.wt-cli-callout-icon:before { content: "\f227"; color: #ffb900; }
583
+ .wt-cli-callout-tutorial.wt-cli-callout-icon:before { content: "\f308"; color: #826eb4; }
584
+ .wt-cli-callout-warning.wt-cli-callout-icon:before { content: "\f153"; color: #dc3232; }
585
+
586
+ /* Modal styles since 2.3.2 */
587
+
588
+ .wt-cli-modal {
589
+ position: fixed;
590
+ top: 10%;
591
+ padding: 15px 20px;
592
+ border-radius: 3px;
593
+ background-color: white;
594
+ z-index: 60000;
595
+ width: 400px;
596
+ display: none;
597
+ left: 0;
598
+ right:0;
599
+ margin:0 auto;
600
+ box-sizing: border-box;
601
+ }
602
+
603
+ .wt-cli-modal.on {
604
+ display: block;
605
+ }
606
+ .wt-cli-modal-js-overlay {
607
+ background: #444;
608
+ opacity: .8;
609
+ position: fixed;
610
+ top: 0px;
611
+ width: 100%;
612
+ height: 1000px;
613
+ z-index: 20000;
614
+ left: 0px;
615
+ }
616
+ .wt-cli-modal-js-close {
617
+ position: absolute;
618
+ bottom: 0px;
619
+ right: 0px;
620
+ color: #000;
621
+ border-radius: 50%;
622
+ font-size: 18px;
623
+ text-align: center;
624
+ padding: 1px;
625
+ top: 5px;
626
+ right: 5px;
627
+ box-shadow: var(--box-shadow);
628
+ cursor: pointer;
629
+ }
630
+ .wt-cli-modal-header h4 {
631
+ margin: 0;
632
+ font-size: 15px;
633
+ }
634
+
635
+ /* New grid styles */
636
+ .wt-cli-align-center {
637
+ -webkit-box-align: center!important;
638
+ -ms-flex-align: center!important;
639
+ align-items: center!important;
640
+ }
641
+
642
+ .wt-cli-justify-center {
643
+ -webkit-box-pack: justify!important;
644
+ -ms-flex-pack: justify!important;
645
+ justify-content: center!important;
646
+ }
647
+
648
+ .wt-cli-justify-end {
649
+ -ms-flex-pack: end!important;
650
+ justify-content: flex-end!important;
651
+ }
652
+ .wt-cli-container-fluid {
653
+ width: 100%;
654
+ padding-right: 15px;
655
+ padding-left: 15px;
656
+ margin-right: auto;
657
+ margin-left: auto;
658
+ }
659
+ .wt-cli-grid-wrapper *,.wt-cli-row *{
660
+ box-sizing: border-box;
661
+ }
662
+ .wt-cli-row {
663
+ display: -webkit-box;
664
+ display: -ms-flexbox;
665
+ display: flex;
666
+ flex-wrap: wrap;
667
+ -ms-flex-wrap: wrap;
668
+ margin-left: -12.5px;
669
+ margin-right: -12.5px;
670
+ }
671
+
672
+ .wt-cli-col {
673
+ -ms-flex-preferred-size: 0;
674
+ flex-basis: 0;
675
+ -webkit-box-flex: 1;
676
+ -ms-flex-positive: 1;
677
+ flex-grow: 1;
678
+ max-width: 100%;
679
+ }
680
+
681
+ .wt-cli-col-1 {
682
+ -ms-flex: 0 0 8.33333333%;
683
+ flex: 0 0 8.33333333%;
684
+ max-width: 8.33333333%;
685
+ }
686
+
687
+ .wt-cli-col-2 {
688
+ -ms-flex: 0 0 16.66666667%;
689
+ flex: 0 0 16.66666667%;
690
+ max-width: 16.66666667%;
691
+ }
692
+
693
+ .wt-cli-col-3 {
694
+ -ms-flex: 0 0 25%;
695
+ flex: 0 0 25%;
696
+ max-width: 25%;
697
+ }
698
+
699
+ .wt-cli-col-4 {
700
+ -ms-flex: 0 0 33.33333333%;
701
+ flex: 0 0 33.33333333%;
702
+ max-width: 33.33333333%;
703
+ }
704
+
705
+ .wt-cli-col-5 {
706
+ -ms-flex: 0 0 41.66666667%;
707
+ flex: 0 0 41.66666667%;
708
+ max-width: 41.66666667%;
709
+ }
710
+
711
+ .wt-cli-col-6 {
712
+ -webkit-box-flex: 0;
713
+ -ms-flex: 0 0 50%;
714
+ flex: 0 0 50%;
715
+ max-width: 50%;
716
+ }
717
+
718
+ .wt-cli-col-7 {
719
+ -ms-flex: 0 0 58.33333333%;
720
+ flex: 0 0 58.33333333%;
721
+ max-width: 58.33333333%;
722
+ }
723
+
724
+ .wt-cli-col-8 {
725
+ -ms-flex: 0 0 66.66666667%;
726
+ flex: 0 0 66.66666667%;
727
+ max-width: 66.66666667%;
728
+ }
729
+
730
+ .wt-cli-col-9 {
731
+ -ms-flex: 0 0 75%;
732
+ flex: 0 0 75%;
733
+ max-width: 75%;
734
+ }
735
+
736
+ .wt-cli-col-10 {
737
+ -ms-flex: 0 0 83.33333333%;
738
+ flex: 0 0 83.33333333%;
739
+ max-width: 83.33333333%;
740
+ }
741
+
742
+ .wt-cli-col-11 {
743
+ -ms-flex: 0 0 91.66666667%;
744
+ flex: 0 0 91.66666667%;
745
+ max-width: 91.66666667%;
746
+ }
747
+
748
+ .wt-cli-col-12 {
749
+ -webkit-box-flex: 0;
750
+ -ms-flex: 0 0 100%;
751
+ flex: 0 0 100%;
752
+ max-width: 100%;
753
+ }
754
+
755
+ .wt-cli-col, .wt-cli-col-1, .wt-cli-col-2, .wt-cli-col-3, .wt-cli-col-4, .wt-cli-col-5, .wt-cli-col-6, .wt-cli-col-7, .wt-cli-col-8, .wt-cli-col-9, .wt-cli-col-10, .wt-cli-col-11, .wt-cli-col-12 {
756
+ position: relative;
757
+ width: 100%;
758
+ min-height: 1px;
759
+ padding-right: 12.5px;
760
+ padding-left: 12.5px;
761
+ }
762
+ .wt-cli-gdpr-plugin-status{
763
+ display: flex;
764
+ align-items: center;
765
+ font-weight: 500;
766
+ }
767
+ .wt-cli-gdpr-plugin-status img {
768
+ width: 18px;
769
+ margin-right: 10px;
770
+ }
771
+ .wt-cli-gdpr-plugin-header {
772
+ display: flex;
773
+ align-items: center;
774
+ justify-content: space-between;
775
+ }
776
+ .wt-cli-gdpr-plugin-branding-logo {
777
+ display: flex;
778
+ justify-content: flex-end;
779
+ }
780
+ .wt-cli-gdpr-plugin-branding-logo img {
781
+ width: 150px;
782
+ }
783
+ .wt-cli-gdpr-plugin-branding-logo a:focus {
784
+ outline:none;
785
+ box-shadow: none;
786
+ }
787
+ .wt-cli-gdpr-plugin-branding-tagline a {
788
+ color: #444;
789
+ }
790
+ .wt-cli-gdpr-plugin-branding-tagline {
791
+ margin-top: 5px;
792
  }
admin/images/add.svg ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 367.805 367.805" style="enable-background:new 0 0 367.805 367.805;" xml:space="preserve">
5
+ <g>
6
+ <path style="fill:#3BB54A;" d="M183.903,0.001c101.566,0,183.902,82.336,183.902,183.902s-82.336,183.902-183.902,183.902
7
+ S0.001,285.469,0.001,183.903l0,0C-0.288,82.625,81.579,0.29,182.856,0.001C183.205,0,183.554,0,183.903,0.001z"/>
8
+ <polygon style="fill:#D4E1F4;" points="285.78,133.225 155.168,263.837 82.025,191.217 111.805,161.96 155.168,204.801
9
+ 256.001,103.968 "/>
10
+ </g>
11
+ <g>
12
+ </g>
13
+ <g>
14
+ </g>
15
+ <g>
16
+ </g>
17
+ <g>
18
+ </g>
19
+ <g>
20
+ </g>
21
+ <g>
22
+ </g>
23
+ <g>
24
+ </g>
25
+ <g>
26
+ </g>
27
+ <g>
28
+ </g>
29
+ <g>
30
+ </g>
31
+ <g>
32
+ </g>
33
+ <g>
34
+ </g>
35
+ <g>
36
+ </g>
37
+ <g>
38
+ </g>
39
+ <g>
40
+ </g>
41
+ </svg>
admin/js/cookie-law-info-admin.js CHANGED
@@ -210,92 +210,152 @@
210
  cli_form_toggler.set();
211
 
212
  });
213
- var genericFunction = {
214
- set : function() {
215
- this.CLIAccordion();
216
- this.checkboxTogglerHandler();
217
- this.revisitConsentPositionEvent();
218
- this.revisitConsentPosition();
219
- },
220
- CLIAccordion : function() {
221
-
222
- if (jQuery('.wt-cli-accordion-tab').hasClass('active')) {
223
- jQuery('.wt-cli-accordion-tab.active').find('.wt-cli-accordion-content').slideDown(0);
224
- }
225
- jQuery(document).on('click', '.wt-cli-accordion-tab a', function (e) {
226
- e.preventDefault();
227
- var $this = jQuery(this);
228
- if ($this.next().hasClass('active')) {
229
- $this.removeClass('active');
230
- $this.next().removeClass('active');
231
- $this.closest('.wt-cli-accordion-tab').removeClass('active');
232
- $this.next().slideUp(350);
233
- } else {
234
- $this.parent().parent().find('.wt-cli-accordion-content').removeClass('active');
235
- $this.parent().parent().find('.wt-cli-accordion-content').slideUp(350);
236
- $this.parent().parent().find('.wt-cli-accordion-tab a').removeClass('active');
237
- $this.parent().parent().find('.wt-cli-accordion-tab').removeClass('active');
238
- $this.toggleClass('active');
239
- $this.closest('.wt-cli-accordion-tab').toggleClass('active');
240
- $this.next().toggleClass('active');
241
- $this.next().slideToggle(350);
242
-
243
- }
244
- });
245
-
246
- },
247
- checkboxTogglerHandler: function(){
248
- jQuery('input[name="showagain_tab_field"],.wt-cli-input-toggle-checkbox').each(function(){
249
- genericFunction.checkboxToggler( jQuery(this) );
250
- });
251
- jQuery(document).on('click','.wt-cli-input-toggle-checkbox',function(){
252
- genericFunction.checkboxToggler( jQuery(this));
253
- });
254
- },
255
- checkboxToggler: function( element ) {
256
-
257
- var currentElement = element;
258
- var toggleTarget = currentElement.attr('data-cli-toggle-target');
259
- var targetElement = jQuery('[data-cli-toggle-id='+toggleTarget+']');
260
- if ( currentElement.is(':checked') ) {
261
- targetElement.slideDown(200);
262
- targetElement.addClass('wt-cli-toggle-active');
263
  } else {
264
- targetElement.slideUp(100);
265
- targetElement.removeClass('wt-cli-toggle-active');
266
-
267
- }
268
- },
269
- revisitConsentPositionEvent: function(){
270
- jQuery(document).on('change', 'select[name="notify_position_horizontal_field"],select[name="popup_showagain_position_field"],input[name="cookie_bar_as_field"],select[name="widget_position_field"]', function(){
271
- genericFunction.revisitConsentPosition();
272
- });
273
- },
274
- revisitConsentPosition: function(){
275
- var barType = jQuery('input[type="radio"][name="cookie_bar_as_field"]:checked').val();
276
- var position = jQuery('select[name="notify_position_horizontal_field"] option:selected').val();
277
- var revisitConsentMarginLabel = jQuery('#wt-cli-revisit-consent-margin-label');
278
- var currentText = jQuery('#wt-cli-revisit-consent-margin-label').val();
279
- if( barType === "popup" ) {
280
- position = jQuery('select[name="popup_showagain_position_field"] option:selected').val();
281
- } else if( barType === "widget") {
282
- position = jQuery('select[name="widget_position_field"] option:selected').val();
283
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
284
 
285
- if( position === 'bottom-right' || position === 'top-right' || position === 'right' ){
286
- currentText = revisitConsentMarginLabel.attr('data-cli-right-text');
287
- } else {
288
- currentText = revisitConsentMarginLabel.attr('data-cli-left-text');
289
- }
290
- if(typeof(currentText) != "undefined" && currentText !== null) {
291
- revisitConsentMarginLabel.html(currentText);
292
- }
293
  }
294
- }
295
- $(document).ready(function () {
296
- genericFunction.set();
297
- });
298
- })( jQuery );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
299
  var cli_notify_msg=
300
  {
301
  error:function(message)
210
  cli_form_toggler.set();
211
 
212
  });
213
+ $(document).ready(function () {
214
+ wtCliAdminFunctions.set();
215
+ });
216
+ })( jQuery );
217
+
218
+ var wtCliAdminFunctions = {
219
+
220
+ set : function() {
221
+ this.CLIAccordion();
222
+ this.checkboxTogglerHandler();
223
+ this.revisitConsentPositionEvent();
224
+ this.revisitConsentPosition();
225
+ this.modalEvents();
226
+ },
227
+ CLIAccordion : function() {
228
+
229
+ if (jQuery('.wt-cli-accordion-tab').hasClass('active')) {
230
+ jQuery('.wt-cli-accordion-tab.active').find('.wt-cli-accordion-content').slideDown(0);
231
+ }
232
+ jQuery(document).on('click', '.wt-cli-accordion-tab a', function (e) {
233
+ e.preventDefault();
234
+ var $this = jQuery(this);
235
+ if ($this.next().hasClass('active')) {
236
+ $this.removeClass('active');
237
+ $this.next().removeClass('active');
238
+ $this.closest('.wt-cli-accordion-tab').removeClass('active');
239
+ $this.next().slideUp(350);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
240
  } else {
241
+ $this.parent().parent().find('.wt-cli-accordion-content').removeClass('active');
242
+ $this.parent().parent().find('.wt-cli-accordion-content').slideUp(350);
243
+ $this.parent().parent().find('.wt-cli-accordion-tab a').removeClass('active');
244
+ $this.parent().parent().find('.wt-cli-accordion-tab').removeClass('active');
245
+ $this.toggleClass('active');
246
+ $this.closest('.wt-cli-accordion-tab').toggleClass('active');
247
+ $this.next().toggleClass('active');
248
+ $this.next().slideToggle(350);
249
+
 
 
 
 
 
 
 
 
 
 
250
  }
251
+ });
252
+
253
+ },
254
+ checkboxTogglerHandler: function(){
255
+ jQuery('input[name="showagain_tab_field"],.wt-cli-input-toggle-checkbox').each(function(){
256
+ wtCliAdminFunctions.checkboxToggler( jQuery(this) );
257
+ });
258
+ jQuery(document).on('click','.wt-cli-input-toggle-checkbox',function(){
259
+ wtCliAdminFunctions.checkboxToggler( jQuery(this));
260
+ });
261
+ },
262
+ checkboxToggler: function( element ) {
263
+
264
+ var currentElement = element;
265
+ var toggleTarget = currentElement.attr('data-cli-toggle-target');
266
+ var targetElement = jQuery('[data-cli-toggle-id='+toggleTarget+']');
267
+ if ( currentElement.is(':checked') ) {
268
+ targetElement.slideDown(200);
269
+ targetElement.addClass('wt-cli-toggle-active');
270
+ } else {
271
+ targetElement.slideUp(100);
272
+ targetElement.removeClass('wt-cli-toggle-active');
273
 
 
 
 
 
 
 
 
 
274
  }
275
+ },
276
+ revisitConsentPositionEvent: function(){
277
+ jQuery(document).on('change', 'select[name="notify_position_horizontal_field"],select[name="popup_showagain_position_field"],input[name="cookie_bar_as_field"],select[name="widget_position_field"]', function(){
278
+ wtCliAdminFunctions.revisitConsentPosition();
279
+ });
280
+ },
281
+
282
+ revisitConsentPosition: function(){
283
+ var barType = jQuery('input[type="radio"][name="cookie_bar_as_field"]:checked').val();
284
+ var position = jQuery('select[name="notify_position_horizontal_field"] option:selected').val();
285
+ var revisitConsentMarginLabel = jQuery('#wt-cli-revisit-consent-margin-label');
286
+ var currentText = jQuery('#wt-cli-revisit-consent-margin-label').val();
287
+ if( barType === "popup" ) {
288
+ position = jQuery('select[name="popup_showagain_position_field"] option:selected').val();
289
+ } else if( barType === "widget") {
290
+ position = jQuery('select[name="widget_position_field"] option:selected').val();
291
+ }
292
+
293
+ if( position === 'bottom-right' || position === 'top-right' || position === 'right' ){
294
+ currentText = revisitConsentMarginLabel.attr('data-cli-right-text');
295
+ } else {
296
+ currentText = revisitConsentMarginLabel.attr('data-cli-left-text');
297
+ }
298
+ if(typeof(currentText) != "undefined" && currentText !== null) {
299
+ revisitConsentMarginLabel.html(currentText);
300
+ }
301
+ },
302
+
303
+ modalEvents: function(){
304
+ jQuery(document).on('click','.wt-cli-modal-js-close', function(){
305
+ wtCliAdminFunctions.closeModal();
306
+ });
307
+ },
308
+ showModal: function(id) {
309
+ this.closeModal();
310
+ let el = jQuery('#'+id);
311
+ el.find('.wt-cli-inline-notice').remove();
312
+ el.addClass('on');
313
+ this.addOverlay();
314
+
315
+ },
316
+ createModal: function( heading,content ){
317
+ this.closeModal();
318
+ var headingHtml = '';
319
+ if( heading !== '') {
320
+ headingHtml = '<div class="wt-cli-modal-header"><h4>'+heading+'</h4></div>';
321
+ }
322
+ html = '<div class="wt-cli-modal on" id="">';
323
+ html += '<span class="wt-cli-modal-js-close">×</span>';
324
+ html += headingHtml;
325
+ html += '<div class="wt-cli-modal-body">';
326
+ html += '<p>'+content+'</p>';
327
+ html += '</div>';
328
+ html += '</div>';
329
+ jQuery('body').append(html);
330
+ this.addOverlay();
331
+ },
332
+ addOverlay: function(){
333
+ html = '<div class="wt-cli-modal-js-overlay"></div>';
334
+ jQuery('body').append(html);
335
+ },
336
+ closeOverlay: function(){
337
+ jQuery('.wt-cli-modal-js-overlay').remove();
338
+ },
339
+ closeModal: function(){
340
+ jQuery('.wt-cli-modal').removeClass('on');
341
+ this.closeOverlay();
342
+ },
343
+ addInlineMessage:function( message, type='notice', element ) {
344
+ element.find('.wt-cli-inline-notice').remove();
345
+ var error_message = '<div role="alert" class="wt-cli-inline-notice wt-cli-inline-notice-'+type+'">'+message+'</div>';
346
+ jQuery( element ).append( error_message );
347
+ },
348
+ loadSpinner( element ){
349
+ var spinner = jQuery( '<span class="spinner"></span>' );
350
+ spinner.insertBefore(element);
351
+ spinner.css({'visibility' : 'visible'});
352
+ },
353
+ removeSpinner: function( element ){
354
+ var spinner = element.prev('.spinner');
355
+ spinner.remove();
356
+ },
357
+ }
358
+
359
  var cli_notify_msg=
360
  {
361
  error:function(message)
admin/js/cookie-law-info-ckyes.js ADDED
@@ -0,0 +1,256 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ (function($) {
2
+ 'use strict';
3
+ var ckyes = {
4
+ errorMessage: '',
5
+ set: function() {
6
+ this.events();
7
+ this.errorMessage = ckyes_admin.messages.error;
8
+ },
9
+ events: function() {
10
+
11
+ jQuery(document).on('click', '#wt-cli-ckyes-register-btn', function(event) {
12
+ event.preventDefault();
13
+ ckyes.register(jQuery(this));
14
+ });
15
+ jQuery(document).on('click', '#wt-cli-ckyes-login-btn', function(event) {
16
+ event.preventDefault();
17
+ ckyes.login(jQuery(this));
18
+ });
19
+ jQuery(document).on('click', '#wt-cli-ckyes-pwd-reset-link', function(event) {
20
+ event.preventDefault();
21
+ ckyes.resetPassword(jQuery(this));
22
+ });
23
+ jQuery(document).on('click', '#wt-cli-ckyes-password-reset-btn', function(event) {
24
+ event.preventDefault();
25
+ ckyes.resetPassword(jQuery(this));
26
+ });
27
+ jQuery(document).on('click', '.wt-cli-ckyes-account-action', function(event) {
28
+ event.preventDefault();
29
+ ckyes.accountActions( jQuery(this) );
30
+ });
31
+ jQuery(document).on('click', '#wt-cli-ckyes-email-resend-link', function(event) {
32
+ event.preventDefault();
33
+ ckyes.resendEmail( jQuery(this) );
34
+ });
35
+ jQuery(document).on('click', '.wt-cli-ckyes-delete-btn', function(event) {
36
+ event.preventDefault();
37
+ ckyes.deleteAccount( jQuery(this) );
38
+ });
39
+ },
40
+ register: function( element ) {
41
+ wtCliAdminFunctions.loadSpinner(element);
42
+ var form = element.closest('form');
43
+ var email = form.find('input[name="ckyes-email"]').val();
44
+ var data = {
45
+ 'action': 'cookieyes_ajax_main_controller',
46
+ 'sub_action': 'register',
47
+ '_wpnonce': ckyes_admin.nonce,
48
+ 'email': email,
49
+ };
50
+ jQuery.ajax({
51
+ url: ckyes_admin.ajax_url,
52
+ type: 'POST',
53
+ data: data,
54
+ dataType: 'json',
55
+ success: function(response) {
56
+ var data = response.data;
57
+ var msg = (data.message ? data.message : '');
58
+ wtCliAdminFunctions.removeSpinner(element);
59
+ if (response.success === true) {
60
+ if( data.html ) {
61
+ if( data.html ) {
62
+ wtCliAdminFunctions.createModal('',data.html);
63
+ jQuery( document ).trigger( "trggerReloadScanner");
64
+ }
65
+ }
66
+ } else {
67
+ if( data.code && data.code === 102 ) {
68
+ if( data.html ) {
69
+ wtCliAdminFunctions.createModal('',data.html);
70
+ }
71
+ }
72
+ else {
73
+ if( data.message ){
74
+ wtCliAdminFunctions.createModal('',data.message);
75
+ setTimeout(function(){
76
+ window.location.reload();
77
+ },1500);
78
+ }
79
+ }
80
+ }
81
+ },
82
+ error: function() {
83
+ wtCliAdminFunctions.createModal('',ckyes.errorMessage );
84
+ }
85
+ });
86
+ },
87
+ login: function(element) {
88
+ wtCliAdminFunctions.loadSpinner(element);
89
+ var form = element.closest('form');
90
+ var formRow = form.find('.wt-cli-form-row');
91
+ var email = form.find('input[name="ckyes-email"]').val();
92
+ var password = form.find('input[name="ckyes-password"]').val();
93
+
94
+ var data = {
95
+ 'action': 'cookieyes_ajax_main_controller',
96
+ 'sub_action': 'login',
97
+ '_wpnonce': ckyes_admin.nonce,
98
+ 'email': email,
99
+ 'password': password
100
+ };
101
+ jQuery.ajax({
102
+ url: ckyes_admin.ajax_url,
103
+ type: 'POST',
104
+ data: data,
105
+ dataType: 'json',
106
+ success: function(response) {
107
+ var data = response.data;
108
+ var msg = (data.message ? data.message : '');
109
+ wtCliAdminFunctions.removeSpinner(element);
110
+ if (response.success === true) {
111
+ wtCliAdminFunctions.createModal('', msg);
112
+ setTimeout(function() {
113
+ window.location.reload();
114
+ }, 1500);
115
+ } else {
116
+ wtCliAdminFunctions.addInlineMessage(msg, 'error', formRow);
117
+ }
118
+ },
119
+ error: function() {
120
+ wtCliAdminFunctions.createModal('',ckyes.errorMessage );
121
+ }
122
+ });
123
+ },
124
+ resetPassword: function(element) {
125
+ wtCliAdminFunctions.loadSpinner(element);
126
+ var form = element.closest('form');
127
+ var email = form.find('input[name="ckyes-email"]').val();
128
+ var data = {
129
+ 'action': 'cookieyes_ajax_main_controller',
130
+ 'sub_action': 'reset_password',
131
+ '_wpnonce': ckyes_admin.nonce,
132
+ 'email': email,
133
+ };
134
+ jQuery.ajax({
135
+ url: ckyes_admin.ajax_url,
136
+ type: 'POST',
137
+ data: data,
138
+ dataType: 'json',
139
+ success: function(response) {
140
+ var data = response.data;
141
+ var msg = (data.message ? data.message : '');
142
+ wtCliAdminFunctions.removeSpinner(element);
143
+ if( true === data.status && 202 === data.code ) {
144
+ wtCliAdminFunctions.addInlineMessage(msg, 'success', form);
145
+ } else {
146
+ wtCliAdminFunctions.addInlineMessage(msg, 'notice', form);
147
+ }
148
+ },
149
+ error: function() {
150
+ wtCliAdminFunctions.createModal('', ckyes.errorMessage );
151
+ }
152
+ });
153
+ },
154
+ accountActions:function( element ){
155
+ wtCliAdminFunctions.loadSpinner(element);
156
+ var action = element.attr('data-action');
157
+ var data = {
158
+ 'action': 'cookieyes_ajax_main_controller',
159
+ 'sub_action': 'connect_disconnect',
160
+ 'account_action': action,
161
+ '_wpnonce': ckyes_admin.nonce,
162
+ };
163
+ jQuery.ajax({
164
+ url: ckyes_admin.ajax_url,
165
+ type: 'POST',
166
+ data: data,
167
+ dataType: 'json',
168
+ success: function(response) {
169
+ var data = response.data;
170
+ var msg = (data.message ? data.message : '');
171
+ wtCliAdminFunctions.removeSpinner(element);
172
+ wtCliAdminFunctions.createModal('', msg);
173
+ setTimeout(function() {
174
+ window.location.reload();
175
+ }, 2000);
176
+ },
177
+ error: function() {
178
+ wtCliAdminFunctions.createModal('', ckyes.errorMessage);
179
+ }
180
+ });
181
+ },
182
+ resendEmail: function() {
183
+ var email = "";
184
+ var data = {
185
+ 'action': 'cookieyes_ajax_main_controller',
186
+ 'sub_action': 'resend_email',
187
+ '_wpnonce': ckyes_admin.nonce,
188
+ 'email': email,
189
+ };
190
+ jQuery.ajax({
191
+ url: ckyes_admin.ajax_url,
192
+ type: 'POST',
193
+ data: data,
194
+ dataType: 'json',
195
+ success: function( response ) {
196
+ var data = response.data;
197
+ if( response.success === true ) {
198
+ if( data.html ) {
199
+ wtCliAdminFunctions.createModal('', data.html );
200
+ }
201
+ } else {
202
+ if( data.message ) {
203
+ wtCliAdminFunctions.createModal('', data.message );
204
+ }
205
+ }
206
+ },
207
+ error: function() {
208
+ wtCliAdminFunctions.createModal('', ckyes.errorMessage );
209
+ }
210
+ });
211
+ },
212
+ deleteAccount: function( element ){
213
+ var action = element.attr('data-action');
214
+ console.log(action);
215
+ if( 'delete-account' === action ) {
216
+ this.sendDeleteRequest( element );
217
+ } else {
218
+ wtCliAdminFunctions.showModal('wt-cli-ckyes-modal-delete-account');
219
+ }
220
+ },
221
+ sendDeleteRequest: function( element ){
222
+ wtCliAdminFunctions.loadSpinner(element);
223
+ var data = {
224
+ 'action': 'cookieyes_ajax_main_controller',
225
+ 'sub_action': 'delete_account',
226
+ '_wpnonce': ckyes_admin.nonce,
227
+ };
228
+ jQuery.ajax({
229
+ url: ckyes_admin.ajax_url,
230
+ type: 'POST',
231
+ data: data,
232
+ dataType: 'json',
233
+ success: function( response ) {
234
+ var data = response.data;
235
+ wtCliAdminFunctions.removeSpinner(element);
236
+ if( response.success === true ) {
237
+ wtCliAdminFunctions.createModal('', ckyes_admin.messages.delete_success );
238
+ setTimeout(function() {
239
+ window.location.reload();
240
+ }, 1500);
241
+ } else {
242
+ wtCliAdminFunctions.createModal('', ckyes_admin.messages.delete_failed );
243
+ }
244
+ },
245
+ error: function() {
246
+ wtCliAdminFunctions.createModal('', ckyes_admin.messages.delete_failed );
247
+ }
248
+ });
249
+ }
250
+
251
+ }
252
+ jQuery(document).ready(function() {
253
+ ckyes.set();
254
+ });
255
+
256
+ })(jQuery);
admin/modules/cli-policy-generator/classes/class-preview-page.php CHANGED
@@ -46,32 +46,35 @@ class Cli_PreviewPage
46
  {
47
  $preview_pages_slugs[]=$slug;
48
  }
49
- if(in_array(strtolower($wp->request),$preview_pages_slugs) ||
50
- (isset($wp->query_vars['page_id']) && in_array(strtolower($wp->query_vars['page_id']),$preview_pages_slugs)))
51
- {
52
- if(in_array(strtolower($wp->request),$preview_pages_slugs))
53
- {
54
- $preview_page=strtolower($wp->request);
55
- }else
56
  {
57
- $preview_page=strtolower($wp->query_vars['page_id']);
58
- }
 
 
 
 
 
59
 
60
- $posts = null;
61
- $posts[] = self::create_preview_page($preview_page,$preview_pages[$preview_page]);
62
- $wp_query->is_page = true;
63
- $wp_query->is_singular = true;
64
- $wp_query->is_home = false;
65
- $wp_query->is_archive = false;
66
- $wp_query->is_category = false;
67
- $wp_query->is_fake_page = true;
68
- $wp_query->preview_page = $wp->request;
69
- unset( $wp_query->query["error"] );
70
- $wp_query->query_vars["error"] = "";
71
- $wp_query->is_404 = false;
72
 
73
- add_action('admin_bar_menu',array($this,'add_admin_bar_menu'),100);
74
- add_action('wp_footer',array($this,'reg_preview_auto_btn'),100);
 
75
  }
76
  return $posts;
77
  }
46
  {
47
  $preview_pages_slugs[]=$slug;
48
  }
49
+ if( isset( $wp->request ) ) {
50
+
51
+ if(in_array(strtolower($wp->request),$preview_pages_slugs) ||
52
+ (isset($wp->query_vars['page_id']) && in_array(strtolower($wp->query_vars['page_id']),$preview_pages_slugs)))
 
 
 
53
  {
54
+ if(in_array(strtolower($wp->request),$preview_pages_slugs))
55
+ {
56
+ $preview_page=strtolower($wp->request);
57
+ }else
58
+ {
59
+ $preview_page=strtolower($wp->query_vars['page_id']);
60
+ }
61
 
62
+ $posts = null;
63
+ $posts[] = self::create_preview_page($preview_page,$preview_pages[$preview_page]);
64
+ $wp_query->is_page = true;
65
+ $wp_query->is_singular = true;
66
+ $wp_query->is_home = false;
67
+ $wp_query->is_archive = false;
68
+ $wp_query->is_category = false;
69
+ $wp_query->is_fake_page = true;
70
+ $wp_query->preview_page = $wp->request;
71
+ unset( $wp_query->query["error"] );
72
+ $wp_query->query_vars["error"] = "";
73
+ $wp_query->is_404 = false;
74
 
75
+ add_action('admin_bar_menu',array($this,'add_admin_bar_menu'),100);
76
+ add_action('wp_footer',array($this,'reg_preview_auto_btn'),100);
77
+ }
78
  }
79
  return $posts;
80
  }
admin/modules/cookie-scaner/assets/images/loading.gif ADDED
Binary file
admin/modules/cookie-scaner/assets/images/screenshot-1.png ADDED
Binary file
admin/modules/cookie-scaner/assets/js/cookie-scaner.js ADDED
@@ -0,0 +1,420 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ (function( $ ) {
2
+ 'use strict';
3
+ $(function() {
4
+ var CLI_cookie_scanner={
5
+ continue_scan:1,
6
+ abortingScan:0,
7
+ onPrg:0,
8
+ Set:function()
9
+ {
10
+ jQuery(document).on('click','#wt-cli-ckyes-scan', function(){
11
+ CLI_cookie_scanner.continue_scan = 1;
12
+ CLI_cookie_scanner.doScan();
13
+ });
14
+ jQuery(document).on('click','#wt-cli-ckyes-connect-scan', function(){
15
+ CLI_cookie_scanner.continue_scan = 1;
16
+ CLI_cookie_scanner.connectScan( jQuery(this));
17
+ });
18
+ jQuery(document).on('click', '#wt-cli-cookie-scan-abort', function( event ) {
19
+ event.preventDefault();
20
+ CLI_cookie_scanner.abortScan( jQuery(this) );
21
+ });
22
+ jQuery(document).on('click', '.wt-cli-cookie-scan-preview-modal', function( event ) {
23
+ event.preventDefault();
24
+ wtCliAdminFunctions.showModal('wt-cli-ckyes-modal-settings-preview');
25
+ });
26
+ this.reloadScanner();
27
+ this.attachScanImport();
28
+ this.checkScanStatus();
29
+ },
30
+ doScan:function()
31
+ {
32
+ CLI_cookie_scanner.nextScanID();
33
+ },
34
+ scanAgain:function()
35
+ {
36
+ $('.cli_scan_again').unbind('click').click(function(){
37
+ CLI_cookie_scanner.continue_scan=1;
38
+ CLI_cookie_scanner.nextScanID();
39
+ });
40
+ },
41
+ scanNow:function()
42
+ {
43
+ this.takePages();
44
+ },
45
+ takePages:function()
46
+ {
47
+ var data = {
48
+ action: 'cli_cookie_scaner',
49
+ security: cookielawinfo_cookie_scaner.nonces.cli_cookie_scaner,
50
+ cli_scaner_action:'get_pages',
51
+ };
52
+ var scanbar=$('.wt-cli-cookie-scan-bar');
53
+ scanbar.html('<span style="float:left; height:40px; line-height:40px;">'+cookielawinfo_cookie_scaner.labels.finding+'</span> <img src="'+cookielawinfo_cookie_scaner.loading_gif+'" style="display:inline-block;" />');
54
+ $.ajax({
55
+ url: cookielawinfo_cookie_scaner.ajax_url,
56
+ data: data,
57
+ dataType: 'json',
58
+ type: 'POST',
59
+ success: function (data)
60
+ {
61
+ CLI_cookie_scanner.scan_id = typeof data.scan_id!='undefined' ? data.scan_id : 0;
62
+ if( true === data.status ) {
63
+ CLI_cookie_scanner.bulkScan(data.scan_id,data.total);
64
+ }
65
+ else {
66
+ wtCliAdminFunctions.createModal('',cookielawinfo_cookie_scaner.labels.page_fetch_error);
67
+ CLI_cookie_scanner.reloadAfterRequest();
68
+ }
69
+ },
70
+ error:function()
71
+ {
72
+ wtCliAdminFunctions.createModal('',cookielawinfo_cookie_scaner.labels.page_fetch_error);
73
+ CLI_cookie_scanner.reloadAfterRequest();
74
+ }
75
+ });
76
+ },
77
+ attachScanImport: function (scan_id) {
78
+ $('.cli_import').unbind('click').click(function () {
79
+
80
+ var scan_id = $(this).attr('data-scan-id');
81
+ var html = '<div id="wt-cli-cookie-scan-import" class="wt-cli-modal"><span class="wt-cli-modal-js-close">×</span>';
82
+ html += '<div class="wt-cli-modal-header"><h2>'+cookielawinfo_cookie_scaner.labels.import_options+'</h2></div>';
83
+ html += '<div class="wt-cli-modal-body">';
84
+ html += '<input type="radio" name="cli_import_options" id="cli_import_options_replace" value="1" /><label for="cli_import_options_replace"> ' + cookielawinfo_cookie_scaner.labels.replace_old + '</label><br />';
85
+ html += '<input type="radio" name="cli_import_options" id="cli_import_options_merge" value="2" checked /><label for="cli_import_options_merge"> ' + cookielawinfo_cookie_scaner.labels.merge + ' (' + cookielawinfo_cookie_scaner.labels.recommended + ')</label> <br />';
86
+ html += '<input type="radio" name="cli_import_options" id="cli_import_options_append" value="3" /><label for="cli_import_options_append"> ' + cookielawinfo_cookie_scaner.labels.append + ' (' + cookielawinfo_cookie_scaner.labels.not_recommended + ')</label> <br /><br />';
87
+ html += '<a class="button-secondary pull-left cli_import_cancel">' + cookielawinfo_cookie_scaner.labels.cancel + '</a>';
88
+ html += '<a class="button-primary pull-left cli_import_now" data-scan-id="' + scan_id + '" style="margin-left:5px;">' + cookielawinfo_cookie_scaner.labels.start_import + '</a>';
89
+ html += '</div>';
90
+ html += '</div>';
91
+
92
+ if ($('#wt-cli-cookie-scan-import').length === 0) {
93
+ $('body').append(html);
94
+ wtCliAdminFunctions.showModal('wt-cli-cookie-scan-import');
95
+ $('.cli_import_cancel').click(function () {
96
+ wtCliAdminFunctions.closeModal();
97
+ });
98
+ $('.cli_import_now').click(function () {
99
+ wtCliAdminFunctions.loadSpinner( jQuery( this ));
100
+ var import_option = $('[name="cli_import_options"]:checked').val();
101
+ var scan_id = $(this).attr('data-scan-id');
102
+ CLI_cookie_scanner.importNow(scan_id, import_option);
103
+ });
104
+ } else {
105
+ wtCliAdminFunctions.showModal('wt-cli-cookie-scan-import' );
106
+ }
107
+ });
108
+
109
+ },
110
+ importNow:function(scan_id,import_option)
111
+ {
112
+ if(this.onPrg==1)
113
+ {
114
+ return false;
115
+ }
116
+ var data = {
117
+ action: 'cli_cookie_scaner',
118
+ security: cookielawinfo_cookie_scaner.nonces.cli_cookie_scaner,
119
+ cli_scaner_action:'import_now',
120
+ scan_id:scan_id,
121
+ import_option:import_option
122
+ };
123
+ $('.wrap a').css({'opacity':.5});
124
+ $('.cli_import').html(cookielawinfo_cookie_scaner.labels.importing);
125
+ $('.cli_progress_action_main').html(cookielawinfo_cookie_scaner.labels.importing);
126
+ $('.spinner').css({'visibility':'visible'});
127
+ this.onPrg=1;
128
+ $.ajax({
129
+ url:cookielawinfo_cookie_scaner.ajax_url,
130
+ data:data,
131
+ dataType:'json',
132
+ type:'POST',
133
+ success:function(data)
134
+ {
135
+ CLI_cookie_scanner.onPrg=0;
136
+ $('.wrap a').css({'opacity':1});
137
+ $('.cli_import').html(cookielawinfo_cookie_scaner.labels.import);
138
+ $('.cli_progress_action_main').html(cookielawinfo_cookie_scaner.labels.import_finished);
139
+ $('.spinner').css({'visibility':'hidden'});
140
+ wtCliAdminFunctions.closeModal();
141
+
142
+ if(data.response===true)
143
+ {
144
+ cli_notify_msg.success(data.message);
145
+ }else
146
+ {
147
+ cli_notify_msg.error(data.message);
148
+ }
149
+ },
150
+ error:function()
151
+ {
152
+ CLI_cookie_scanner.onPrg=0;
153
+ $('.wrap a').css({'opacity':1});
154
+ $('.cli_import').html(cookielawinfo_cookie_scaner.labels.import);
155
+ $('.cli_progress_action_main').html(cookielawinfo_cookie_scaner.labels.error);
156
+ $('.spinner').css({'visibility':'hidden'});
157
+ cli_notify_msg.error(cookielawinfo_cookie_scaner.labels.error);
158
+ }
159
+ });
160
+ },
161
+ connectScan: function( element ){
162
+
163
+ var data = {
164
+ action: 'cli_cookie_scaner',
165
+ security: cookielawinfo_cookie_scaner.nonces.cli_cookie_scaner,
166
+ cli_scaner_action:'connect_scan',
167
+ };
168
+ wtCliAdminFunctions.loadSpinner(element);
169
+ $.ajax({
170
+ url: cookielawinfo_cookie_scaner.ajax_url,
171
+ data: data,
172
+ dataType: 'json',
173
+ type: 'POST',
174
+ success:function( response )
175
+ {
176
+ wtCliAdminFunctions.removeSpinner(element);
177
+ var data = response.data;
178
+ if( response.success === true ) {
179
+ CLI_cookie_scanner.doScan();
180
+ } else {
181
+ if( data.code ) {
182
+ if( data.code == 102 || data.code == 107 ) {
183
+ if( data.html ) {
184
+ wtCliAdminFunctions.createModal('',data.html);
185
+ }
186
+ }else if ( data.code == 108 ) {
187
+
188
+ wtCliAdminFunctions.showModal('wt-cli-ckyes-modal-register');
189
+
190
+ } else {
191
+ if( data.message ){
192
+ wtCliAdminFunctions.createModal('',data.message);
193
+ setTimeout(function(){
194
+ window.location.reload();
195
+ },1500);
196
+ }
197
+ }
198
+ }
199
+ }
200
+ },
201
+ error:function()
202
+ {
203
+ wtCliAdminFunctions.createModal('','Invalid request');
204
+ }
205
+ });
206
+ },
207
+ nextScanID: function(){
208
+ var data = {
209
+ action: 'cli_cookie_scaner',
210
+ security: cookielawinfo_cookie_scaner.nonces.cli_cookie_scaner,
211
+ cli_scaner_action:'next_scan_id',
212
+ };
213
+ var scanBtn = jQuery('#wt-cli-ckyes-scan');
214
+ wtCliAdminFunctions.loadSpinner( scanBtn );
215
+ $.ajax({
216
+ url: cookielawinfo_cookie_scaner.ajax_url,
217
+ data: data,
218
+ dataType: 'json',
219
+ type: 'POST',
220
+ success:function( response )
221
+ {
222
+ var data = response.data;
223
+ wtCliAdminFunctions.removeSpinner( scanBtn );
224
+ if( response.success === true ) {
225
+ CLI_cookie_scanner.scanNow();
226
+ } else if( data.code == 107 ){
227
+
228
+ if( data.html ) {
229
+ wtCliAdminFunctions.createModal('',data.html);
230
+ }
231
+ } else {
232
+ if( data.message ) {
233
+ wtCliAdminFunctions.createModal('',data.message);
234
+ CLI_cookie_scanner.reloadAfterRequest();
235
+ }
236
+ }
237
+ },
238
+ error:function()
239
+ {
240
+ wtCliAdminFunctions.createModal('','Invalid request');
241
+ wtCliAdminFunctions.removeSpinner( scanBtn );
242
+ }
243
+ });
244
+ },
245
+ reloadAfterRequest: function( duration ) {
246
+ var timeout = 2000;
247
+ if (typeof duration !== 'undefined') {
248
+ timeout = duration;
249
+ }
250
+ setTimeout(function(){
251
+ window.location.reload();
252
+ },timeout);
253
+ },
254
+ bulkScan: function(scan_id,total) {
255
+
256
+ var data = {
257
+ action: 'cli_cookie_scaner',
258
+ security: cookielawinfo_cookie_scaner.nonces.cli_cookie_scaner,
259
+ cli_scaner_action:'bulk_scan',
260
+ scan_id:scan_id,
261
+ total:total
262
+ };
263
+ $.ajax({
264
+ url: cookielawinfo_cookie_scaner.ajax_url,
265
+ data: data,
266
+ dataType: 'json',
267
+ type: 'POST',
268
+ success:function(response)
269
+ {
270
+ var data = response.data;
271
+ if( response.success === true ) {
272
+ wtCliAdminFunctions.createModal(data.title,data.message);
273
+ if( data.html ) {
274
+ jQuery('.wt-cli-cookie-scan-bar').html(data.html);
275
+ }
276
+ } else {
277
+ if( data.message ) {
278
+ wtCliAdminFunctions.createModal('',data.message);
279
+ CLI_cookie_scanner.reloadAfterRequest( 3000 );
280
+ }
281
+ }
282
+ },
283
+ error:function()
284
+ {
285
+ wtCliAdminFunctions.createModal('',data.message);
286
+ CLI_cookie_scanner.reloadAfterRequest( 6000 );
287
+ }
288
+ });
289
+ },
290
+ checkScanStatus: function(){
291
+ var scanStatus = Boolean( cookielawinfo_cookie_scaner.scan_status );
292
+ if( scanStatus === true ) {
293
+
294
+ var data = {
295
+ action: 'cli_cookie_scaner',
296
+ security: cookielawinfo_cookie_scaner.nonces.cli_cookie_scaner,
297
+ cli_scaner_action:'check_status',
298
+ };
299
+ $.ajax({
300
+ url: cookielawinfo_cookie_scaner.ajax_url,
301
+ data: data,
302
+ dataType: 'json',
303
+ type: 'POST',
304
+ success:function(response)
305
+ {
306
+
307
+ if( response.success === true ) {
308
+ CLI_cookie_scanner.fetchResult();
309
+ } else {
310
+ if( response.data.refresh === true ) {
311
+ CLI_cookie_scanner.reloadAfterRequest(10);
312
+ }
313
+ }
314
+
315
+ },
316
+ error:function()
317
+ {
318
+ }
319
+ });
320
+ }
321
+
322
+ },
323
+ fetchResult: function(){
324
+ var data = {
325
+ action: 'cli_cookie_scaner',
326
+ security: cookielawinfo_cookie_scaner.nonces.cli_cookie_scaner,
327
+ cli_scaner_action:'fetch_result',
328
+ };
329
+ $.ajax({
330
+ url: cookielawinfo_cookie_scaner.ajax_url,
331
+ data: data,
332
+ dataType: 'json',
333
+ type: 'POST',
334
+ success:function(response)
335
+ {
336
+ if( response.success === true ) {
337
+ CLI_cookie_scanner.reloadAfterRequest(10);
338
+ }
339
+ },
340
+ error:function()
341
+ {
342
+
343
+ }
344
+ });
345
+ },
346
+ abortScan: function( element ){
347
+
348
+ if( CLI_cookie_scanner.abortingScan === 1 ) {
349
+ return false;
350
+ }
351
+ var scanner = jQuery('.wt-cli-scan-status-bar');
352
+ scanner.html( cookielawinfo_cookie_scaner.labels.abort );
353
+ scanner.css({'color':'#444444'});
354
+ wtCliAdminFunctions.loadSpinner(scanner);
355
+ CLI_cookie_scanner.abortingScan = 1;
356
+ var data = {
357
+ action: 'cli_cookie_scaner',
358
+ security: cookielawinfo_cookie_scaner.nonces.cli_cookie_scaner,
359
+ cli_scaner_action:'stop_scan',
360
+ };
361
+ $.ajax({
362
+ url: cookielawinfo_cookie_scaner.ajax_url,
363
+ data: data,
364
+ dataType: 'json',
365
+ type: 'POST',
366
+ success:function(response)
367
+ {
368
+ if( response.success === true ) {
369
+ scanner.css({'color':'#2fab10'});
370
+ } else {
371
+ scanner.css({'color':'#f44336'});
372
+ }
373
+ if( response.data.message ) {
374
+ scanner.html( response.data.message );
375
+ }
376
+ CLI_cookie_scanner.reloadAfterRequest();
377
+
378
+ },
379
+ error:function()
380
+ {
381
+ wtCliAdminFunctions.createModal('', cookielawinfo_cookie_scaner.labels.abort_failed );
382
+ CLI_cookie_scanner.reloadAfterRequest();
383
+ }
384
+ });
385
+ },
386
+ reloadScanner: function(){
387
+ $( document ).on( "trggerReloadScanner", function(){
388
+ var data = {
389
+ action: 'cli_cookie_scaner',
390
+ security: cookielawinfo_cookie_scaner.nonces.cli_cookie_scaner,
391
+ cli_scaner_action:'get_scan_html',
392
+ };
393
+ $.ajax({
394
+ url: cookielawinfo_cookie_scaner.ajax_url,
395
+ data: data,
396
+ dataType: 'json',
397
+ type: 'POST',
398
+ success:function( response )
399
+ {
400
+ var data = response.data;
401
+ if( response.success === true ) {
402
+ if( data.scan_html ) {
403
+ $('.wt-cli-cookie-scan-notice').html(data.scan_html);
404
+ }
405
+ }
406
+ },
407
+ error:function()
408
+ {
409
+
410
+ }
411
+ });
412
+ });
413
+ }
414
+ }
415
+
416
+ jQuery(document).ready( function(){
417
+ CLI_cookie_scanner.Set();
418
+ });
419
+ });
420
+ })( jQuery );
admin/modules/cookie-scaner/classes/class-cookie-law-info-cookie-scanner-ajax.php ADDED
@@ -0,0 +1,548 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if ( ! defined( 'ABSPATH' ) ) {
3
+ exit;
4
+ }
5
+ /**
6
+ * The class which handles all the ajax calls made by the cookie scaner.
7
+ */
8
+ class Cookie_Law_Info_Cookie_Scanner_Ajax extends Cookie_Law_Info_Cookie_Scaner {
9
+
10
+ /**
11
+ * Initialise scanner ajax handlers function.
12
+ */
13
+ public function __construct() {
14
+ add_action( 'wp_ajax_cli_cookie_scaner', array( $this, 'ajax_cookie_scaner' ) );
15
+ add_action( 'wt_cli_ckyes_abort_scan', array( $this, 'update_abort_status'));
16
+ }
17
+ /**
18
+ * Ajax callback which handles the ajax calls from scanner.
19
+ *
20
+ * @return void
21
+ */
22
+ public function ajax_cookie_scaner() {
23
+ if ( ! current_user_can( 'manage_options' ) ) {
24
+ wp_die( esc_html( __( 'You do not have sufficient permission to perform this operation', 'cookie-law-info' ) ) );
25
+ }
26
+ check_ajax_referer( 'cli_cookie_scaner', 'security' );
27
+ $out = array(
28
+ 'response' => false,
29
+ 'message' => __( 'Unable to handle your request.', 'cookie-law-info' ),
30
+ );
31
+ if ( isset( $_POST['cli_scaner_action'] ) ) {
32
+
33
+ $cli_scan_action = Wt_Cookie_Law_Info_Security_Helper::sanitize_item( wp_unslash( $_POST['cli_scaner_action'] ) );
34
+ $allowed_actions = array(
35
+ 'get_pages',
36
+ 'scan_pages',
37
+ 'stop_scan',
38
+ 'import_now',
39
+ 'connect_scan',
40
+ 'next_scan_id',
41
+ 'bulk_scan',
42
+ 'check_status',
43
+ 'fetch_result',
44
+ 'get_scan_html',
45
+ );
46
+ if ( in_array( $cli_scan_action, $allowed_actions, true ) && method_exists( $this, $cli_scan_action ) ) {
47
+ $out = $this->{$cli_scan_action}();
48
+ }
49
+ }
50
+ echo wp_json_encode( $out );
51
+ exit();
52
+ }
53
+ /**
54
+ * Create an account with CookieYes and start scan
55
+ *
56
+ * @return void
57
+ */
58
+ public function connect_scan() {
59
+
60
+ $data = array();
61
+ $ckyes_status = $this->get_cookieyes_status();
62
+ $status = false;
63
+ if ( false === $ckyes_status ) {
64
+
65
+ // Firs time connection request.
66
+ $data['status'] = false;
67
+ $data['code'] = parent::EC_WT_CKYES_NOT_REGISTERED;
68
+
69
+ } elseif ( 0 === $ckyes_status ) { // Not connected to CookieYes then connect and scan again.
70
+ $response = $this->ckyes_connect();
71
+ $status = isset( $response['status'] ) ? $response['status'] : false;
72
+ } elseif ( 2 === $ckyes_status ) {
73
+ $status = true;
74
+ $data['status'] = $status;
75
+ }
76
+ if ( true === $status ) {
77
+ wp_send_json_success( $data );
78
+ }
79
+ wp_send_json_error( $data );
80
+ }
81
+ /**
82
+ * Retreives the next scan ID from CookieYes before proceeding to scan.
83
+ *
84
+ * @return void
85
+ */
86
+ public function next_scan_id() {
87
+
88
+ $data = array();
89
+ $total_urls = $this->get_total_page_count();
90
+ $total_urls ++; // Add home url to the count.
91
+ $response = $this->get_next_scan_id( $total_urls );
92
+ $status = ( isset( $response['status'] ) ? $response['status'] : false );
93
+ $status_code = ( isset( $response['code'] ) ? $response['code'] : '' );
94
+ if ( ! empty( $status_code ) ) {
95
+ if ( self::EC_WT_CKYES_PENDING_VERIFICATION === $status_code ) {
96
+ $data['html'] = $this->get_email_verification_html( true );
97
+ $data['scan_html'] = $this->scanner_notices( true );
98
+ $data['code'] = $status_code;
99
+ } else {
100
+ $data['code'] = $status_code;
101
+ $data['message'] = $this->get_ckyes_message( $status_code );
102
+ }
103
+ }
104
+ if ( true === $status ) {
105
+ if ( isset( $response['scan_id'] ) && isset( $response['scan_token'] ) ) {
106
+ $this->set_ckyes_scan_id( $response['scan_id'] );
107
+ $this->set_ckyes_scan_token( $response['scan_token'] );
108
+ }
109
+ wp_send_json_success( $data );
110
+ }
111
+ wp_send_json_error( $data );
112
+
113
+ }
114
+ /**
115
+ * Retrieves pages from the site for scanning
116
+ *
117
+ * @return array
118
+ */
119
+ public function get_pages() {
120
+
121
+ global $wpdb;
122
+ $page_limit = 100;
123
+
124
+ $wt_cli_site_host = $this->wt_cli_get_host( get_site_url() );
125
+
126
+ $out = array(
127
+ 'log' => array(),
128
+ 'total' => 0,
129
+ 'limit' => $page_limit,
130
+ 'scan_id' => 0,
131
+ 'status' => false,
132
+ );
133
+
134
+ $sql = $this->get_scan_pages_query();
135
+
136
+ $total_rows = $wpdb->get_row( 'SELECT COUNT(ID) AS ttnum' . $sql . " ORDER BY post_type='page' DESC LIMIT $page_limit", ARRAY_A ); // phpcs:ignore WordPress.DB.DirectDatabaseQuery,WordPress.DB.PreparedSQL.NotPrepared
137
+ $total = $total_rows ? $total_rows['ttnum'] + 1 : 1; // always add 1 becuase home url is there.
138
+
139
+ $this->set_ckyes_scan_status( 0 );
140
+ $scan_id = $this->create_scan_entry( $total );
141
+
142
+ $out['scan_id'] = $scan_id;
143
+ $out['total'] = $total;
144
+
145
+ $this->insert_url( $scan_id, get_home_url() );
146
+
147
+ $sql = 'SELECT post_name,post_title,post_type,ID' . $sql . " ORDER BY post_type='page' DESC LIMIT $page_limit";
148
+
149
+ $data = $wpdb->get_results( $sql, ARRAY_A ); // phpcs:ignore WordPress.DB.DirectDatabaseQuery,WordPress.DB.PreparedSQL.NotPrepared
150
+
151
+ if ( ! empty( $data ) ) {
152
+ foreach ( $data as $value ) {
153
+
154
+ $permalink = get_permalink( $value['ID'] );
155
+ $currrent_url_host = $this->wt_cli_get_host( $permalink );
156
+
157
+ if ( ( $this->filter_url( $permalink ) ) && ( $currrent_url_host === $wt_cli_site_host ) ) {
158
+ $this->insert_url( $scan_id, $permalink );
159
+ } else {
160
+ $out['total'] = $out['total'] - 1;
161
+ }
162
+ }
163
+ }
164
+ $data_arr = array(
165
+ 'current_action' => 'get_pages',
166
+ 'status' => 1,
167
+ 'total_url' => $out['total'],
168
+ );
169
+ $this->update_scan_entry( $data_arr, $scan_id );
170
+ $out['status'] = true;
171
+ return $out;
172
+ }
173
+ /**
174
+ * Perform a bulk scan request.
175
+ *
176
+ * @return void
177
+ */
178
+ public function bulk_scan() {
179
+
180
+ include plugin_dir_path( __FILE__ ) . 'class-cookie-law-info-cookie-scanner-api.php';
181
+
182
+ $scan_id = Wt_Cookie_Law_Info_Security_Helper::sanitize_item( ( isset( $_POST['scan_id'] ) ? $_POST['scan_id'] : 0 ), 'int' ); // phpcs:ignore WordPress.Security.NonceVerification,WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
183
+ $total = Wt_Cookie_Law_Info_Security_Helper::sanitize_item( ( isset( $_POST['total'] ) ? $_POST['total'] : 0 ), 'int' ); // phpcs:ignore WordPress.Security.NonceVerification,WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
184
+
185
+ $data_arr = array(
186
+ 'current_action' => 'bulk_scan',
187
+ 'current_offset' => -1,
188
+ 'status' => 1,
189
+ );
190
+
191
+ $cookie_serve_api = new Cookie_Law_Info_Cookie_Scanner_Api();
192
+
193
+ $urls = $this->get_urls( $scan_id );
194
+ $data = array();
195
+ $data['title'] = '';
196
+ $data['message'] = __( 'Scanner API is temporarily down please try again later.', 'cookie-law-info' );
197
+
198
+ $response = $cookie_serve_api->fetch_all_cookies( $urls );
199
+ $response = json_decode( $response, true );
200
+
201
+ if ( false !== $response ) {
202
+
203
+ if ( isset( $response['status'] ) && 'initiated' === $response['status'] ) {
204
+
205
+ $this->update_scan_entry( $data_arr, $scan_id );
206
+ $this->set_ckyes_scan_status( 1 );
207
+ $estimate = ( isset( $response['estimatedTimeInSeconds'] ) ? $response['estimatedTimeInSeconds'] : 0 );
208
+
209
+ $this->set_ckyes_scan_estimate( $estimate );
210
+ $data['title'] = __( 'Scanning initiated successfully', 'cookie-law-info' );
211
+ $data['message'] = __( 'It might take a few minutes to a few hours to complete the scanning of your website. This depends on the number of pages to scan and the website speed. Once the scanning is complete, we will notify you by email.', 'cookie-law-info' );
212
+ $data['html'] = $this->get_scan_progress_html();
213
+ wp_send_json_success( $data );
214
+ }
215
+ }
216
+ $this->update_failed_status();
217
+ wp_send_json_error( $data );
218
+ }
219
+ /**
220
+ * Check the current status of a scan from the Cookieyes.
221
+ *
222
+ * @return void
223
+ */
224
+ public function check_status() {
225
+
226
+ $scan_id = $this->get_ckyes_scan_id();
227
+ $response = $this->get_scan_status( $scan_id );
228
+ $scan_status = isset( $response['scan_status'] ) ? $response['scan_status'] : '';
229
+
230
+ $data = array(
231
+ 'status' => false,
232
+ 'refresh' => false,
233
+ 'scan_id' => $scan_id,
234
+ 'scan_status' => $scan_status,
235
+ );
236
+
237
+ if ( isset( $response['status'] ) && 'error' === $response['status'] ) {
238
+ if ( isset( $response['error_code'] ) && $response['error_code'] == 1008 ) {
239
+ $data['refresh'] = true;
240
+ $this->update_failed_status();
241
+ }
242
+ } else {
243
+ if ( 'completed' === $scan_status ) {
244
+
245
+ $data['refresh'] = true;
246
+ $data['status'] = true;
247
+ wp_send_json_success( $data );
248
+
249
+ } elseif ( 'failed' === $scan_status || intval( $scan_id ) === 0 || $this->get_ckyes_scan_status() === 0 ) { // Scan id has expired or scan fails on Cookieyes.
250
+ $data['refresh'] = true;
251
+ $this->update_failed_status();
252
+ wp_send_json_error( $data );
253
+ }
254
+ }
255
+ wp_send_json_error( $data );
256
+ }
257
+ /**
258
+ * Fetch the result directly from the scanner.
259
+ *
260
+ * @return void
261
+ */
262
+ public function fetch_result() {
263
+ $scan_id = $this->get_ckyes_scan_id();
264
+ $scan_results = $this->get_scan_results( $scan_id );
265
+ if ( is_wp_error( $this->save_cookie_data( $scan_results ) ) ) {
266
+ $this->update_failed_status();
267
+ wp_send_json_error( __( 'Token mismatch', 'cookie-law-info' ) );
268
+ }
269
+ wp_send_json_success();
270
+ }
271
+ /**
272
+ * Set last scan status to fail if the scan has failed from CookieYes.
273
+ *
274
+ * @return void
275
+ */
276
+ public function update_failed_status() {
277
+ $scan_id = $this->get_last_scan_id();
278
+ $data_arr = array( 'status' => 4 ); // Updating scan status to stopped.
279
+ $this->update_scan_entry( $data_arr, $scan_id );
280
+ update_option( 'CLI_BYPASS', 0 );
281
+ }
282
+ /**
283
+ * Return the total page count
284
+ *
285
+ * @return int
286
+ */
287
+ public function get_total_page_count() {
288
+ global $wpdb;
289
+ $sql = $this->get_scan_pages_query();
290
+ $total_rows = $wpdb->get_row( 'SELECT COUNT(ID) AS ttnum' . $sql, ARRAY_A );
291
+ $pages = ( isset( $total_rows ) ? $total_rows : 0 );
292
+ $page_count = intval( ( isset( $pages['ttnum'] ) ? $pages['ttnum'] : 0 ) );
293
+ return $page_count;
294
+ }
295
+ /**
296
+ * Returns the current host
297
+ *
298
+ * @param string $url URL of a page or post.
299
+ * @return string
300
+ */
301
+ private function wt_cli_get_host( $url ) {
302
+ $site_host = '';
303
+ $parsed_url = wp_parse_url( $url );
304
+ $site_host = isset( $parsed_url['host'] ) ? $parsed_url['host'] : '';
305
+ return $site_host;
306
+ }
307
+ /**
308
+ * Filters the URL
309
+ *
310
+ * @param string $permalink Permalink of a page or post.
311
+ * @return string
312
+ */
313
+ private function filter_url( $permalink ) {
314
+ $url_arr = explode( '/', $permalink );
315
+ $end = trim( end( $url_arr ) );
316
+ if ( '' !== $end ) {
317
+ $url_end_arr = explode( '.', $end );
318
+ if ( count( $url_end_arr ) > 1 ) {
319
+ $end_end = trim( end( $url_end_arr ) );
320
+ if ( $end_end != '' ) {
321
+ $allowed = array( 'html', 'htm', 'shtml', 'php' );
322
+ if ( ! in_array( $end_end, $allowed, true ) ) {
323
+ return false;
324
+ }
325
+ }
326
+ }
327
+ }
328
+ return true;
329
+ }
330
+ /**
331
+ * Returns the query to get the pages to be scanned
332
+ *
333
+ * @return string
334
+ */
335
+ public function get_scan_pages_query() {
336
+ global $wpdb;
337
+ $post_table = $wpdb->prefix . 'posts';
338
+ $post_types = get_post_types(
339
+ array(
340
+ 'public' => true,
341
+ )
342
+ );
343
+ unset( $post_types['attachment'] );
344
+ unset( $post_types['revision'] );
345
+ unset( $post_types['custom_css'] );
346
+ unset( $post_types['customize_changeset'] );
347
+ unset( $post_types['user_request'] );
348
+
349
+ $sql = " FROM $post_table WHERE post_type IN('" . implode( "','", $post_types ) . "') AND post_status='publish'";
350
+ return $sql;
351
+ }
352
+ /**
353
+ * Returns the total URLs to be scanned.
354
+ *
355
+ * @param int $scan_id scan ID.
356
+ * @return array
357
+ */
358
+ public function get_urls( $scan_id ) {
359
+ global $wpdb;
360
+ $urls = array();
361
+ $url_table = $wpdb->prefix . $this->url_table;
362
+ $sql = "SELECT id_cli_cookie_scan_url,url FROM `$url_table` WHERE id_cli_cookie_scan=$scan_id ORDER BY id_cli_cookie_scan_url ASC"; // AND scanned=0
363
+ $urls_from_db = $wpdb->get_results( $sql, ARRAY_A );
364
+
365
+ if ( ! empty( $urls_from_db ) ) {
366
+ foreach ( $urls_from_db as $data ) {
367
+ if ( isset( $data['url'] ) ) {
368
+ $urls[] = $data['url'];
369
+ }
370
+ }
371
+ }
372
+ return $urls;
373
+ }
374
+ /**
375
+ * API to abort the scanning
376
+ *
377
+ * @return void
378
+ */
379
+ public function stop_scan() {
380
+ $scan_id = $this->get_last_scan_id();
381
+ $ckyes_scan_id = $this->get_ckyes_scan_id();
382
+ $response = $this->ckyes_abort_scan( $ckyes_scan_id );
383
+ $status = isset( $response['status'] ) ? $response['status'] : false;
384
+
385
+ $data = array(
386
+ 'status' => $status,
387
+ 'refresh' => false,
388
+ 'message' => '',
389
+ );
390
+ if ( true === $status ) {
391
+
392
+ $data_arr = array( 'status' => 3 ); // Updating scan status to stopped.
393
+ $this->update_scan_entry( $data_arr, $scan_id );
394
+ update_option( 'CLI_BYPASS', 0 );
395
+ $data['refresh'] = true;
396
+ $data['message'] = __( 'Abort successfull', 'cookie-law-info' );
397
+ wp_send_json_success( $data );
398
+
399
+ } else {
400
+ $data['message'] = __( 'Abort failed', 'cookie-law-info' );
401
+ }
402
+ wp_send_json_error( $data );
403
+ }
404
+ /**
405
+ * Import cookies to the cookie list
406
+ *
407
+ * @return array
408
+ */
409
+ public function import_now() {
410
+
411
+ $scan_id = Wt_Cookie_Law_Info_Security_Helper::sanitize_item( ( isset( $_POST['scan_id'] ) ? wp_unslash( $_POST['scan_id'] ) : 0 ), 'int' ); // phpcs:ignore WordPress.Security.NonceVerification,WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
412
+ $out = array(
413
+ 'response' => false,
414
+ 'scan_id' => $scan_id,
415
+ 'message' => __( 'Unable to handle your request', 'cookie-law-info' ),
416
+ );
417
+ if ( ! current_user_can( 'manage_options' ) ) {
418
+ $out['message'] = __( 'You do not have sufficient permissions to access this page.', 'cookie-law-info' );
419
+ return $out;
420
+ }
421
+ $deleted = 0;
422
+ $skipped = 0;
423
+ $added = 0;
424
+ $scan_id = Wt_Cookie_Law_Info_Security_Helper::sanitize_item( ( isset( $_POST['scan_id'] ) ? wp_unslash( $_POST['scan_id'] ) : 0 ), 'int' ); // phpcs:ignore WordPress.Security.NonceVerification,WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
425
+ $import_option = Wt_Cookie_Law_Info_Security_Helper::sanitize_item( ( isset( $_POST['import_option'] ) ? wp_unslash( $_POST['import_option'] ) : 2 ), 'int' ); // phpcs:ignore WordPress.Security.NonceVerification,WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
426
+
427
+ if ( $scan_id > 0 ) {
428
+ $cookies = $this->get_scan_cookies( $scan_id, 0, -1 ); // taking cookies.
429
+ if ( $cookies['total'] > 0 ) {
430
+ if ( 1 === $import_option ) {
431
+ $all_cookies = get_posts(
432
+ array(
433
+ 'post_type' => CLI_POST_TYPE,
434
+ 'numberposts' => -1,
435
+ )
436
+ );
437
+ foreach ( $all_cookies as $cookie ) {
438
+ $deleted++;
439
+ wp_delete_post( $cookie->ID, true );
440
+ }
441
+ }
442
+ foreach ( $cookies['cookies'] as $cookie ) {
443
+
444
+ $skip = false;
445
+ if ( 2 === $import_option ) {
446
+ $existing_cookie = get_posts(
447
+ array(
448
+ 'name' => $cookie['cookie_id'],
449
+ 'post_type' => CLI_POST_TYPE,
450
+ )
451
+ );
452
+ if ( ! empty( $existing_cookie ) ) {
453
+ $cli_post = $existing_cookie[0];
454
+ if ( empty( $cli_post->post_content ) ) {
455
+ $post_data = array(
456
+ 'ID' => $cli_post->ID,
457
+ 'post_content' => $cookie['description'],
458
+ );
459
+ wp_update_post( $post_data );
460
+ }
461
+ $skipped++;
462
+ $skip = true;
463
+ }
464
+ }
465
+ if ( false === $skip ) {
466
+ $added++;
467
+ $cookie_data = array(
468
+ 'post_type' => CLI_POST_TYPE,
469
+ 'post_title' => $cookie['cookie_id'],
470
+ 'post_content' => $cookie['description'],
471
+ 'post_status' => 'publish',
472
+ 'ping_status' => 'closed',
473
+ 'post_excerpt' => $cookie['cookie_id'],
474
+ 'post_author' => 1,
475
+ );
476
+ $post_id = wp_insert_post( $cookie_data );
477
+ // update_post_meta( $post_id, '_cli_cookie_type', $cookie['type'] );
478
+ update_post_meta( $post_id, '_cli_cookie_duration', $cookie['expiry'] );
479
+ update_post_meta( $post_id, '_cli_cookie_sensitivity', 'non-necessary' );
480
+ update_post_meta( $post_id, '_cli_cookie_slugid', $cookie['cookie_id'] );
481
+ wp_set_object_terms( $post_id, array( $cookie['category'] ), 'cookielawinfo-category', true );
482
+
483
+ // Import Categories.
484
+ $category = get_term_by( 'name', $cookie['category'], 'cookielawinfo-category' );
485
+ // Check if category exist.
486
+ if ( $category && is_object( $category ) ) {
487
+
488
+ $category_id = $category->term_id;
489
+ $category_description = $category->description;
490
+
491
+ // Check if catgory has description.
492
+ if ( empty( $category_description ) ) {
493
+ $description = $cookie['cli_cookie_category_description'];
494
+ $category_slug = $category->slug;
495
+ $cookie_audit_shortcode = sprintf( '[cookie_audit category="%s" style="winter" columns="cookie,duration,description"]', $category_slug );
496
+ $description .= "\n";
497
+ $description .= $cookie_audit_shortcode;
498
+ wp_update_term(
499
+ $category_id,
500
+ 'cookielawinfo-category',
501
+ array(
502
+ 'description' => $description,
503
+ )
504
+ );
505
+ }
506
+ }
507
+ }
508
+ }
509
+
510
+ // preparing response message based on choosed option.
511
+ $out_message = $added . ' ' . __( 'cookies added.', 'cookie-law-info' );
512
+ if ( $import_option == 2 ) {
513
+ $out_message .= ' ' . $skipped . ' ' . __( 'cookies skipped.', 'cookie-law-info' );
514
+ }
515
+ if ( $import_option == 1 ) {
516
+ $out_message .= ' ' . $deleted . ' ' . __( 'cookies deleted.', 'cookie-law-info' );
517
+ }
518
+ $out['response'] = true;
519
+ $out['message'] = $out_message;
520
+ } else {
521
+ $out['response'] = false;
522
+ $out['message'] = __( 'No cookies found', 'cookie-law-info' );
523
+ }
524
+ }
525
+ return $out;
526
+ }
527
+ /**
528
+ * Get latest scan HTML
529
+ *
530
+ * @return void
531
+ */
532
+ public function get_scan_html() {
533
+ $data = array();
534
+ if ( '' !== $this->scanner_notices( true ) ) {
535
+ $data['scan_html'] = $this->scanner_notices( true );
536
+ wp_send_json_success( $data );
537
+ }
538
+ wp_send_json_error( $data );
539
+ }
540
+ public function update_abort_status() {
541
+ $scan_id = $this->get_last_scan_id();
542
+ $data_arr = array( 'status' => 3 ); // Updating scan status to stopped.
543
+ $this->update_scan_entry( $data_arr, $scan_id );
544
+ update_option( 'CLI_BYPASS', 0 );
545
+ }
546
+ }
547
+
548
+ new Cookie_Law_Info_Cookie_Scanner_Ajax();
admin/modules/cookie-scaner/classes/class-cookie-law-info-cookie-scanner-api.php ADDED
@@ -0,0 +1,136 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Scanner API
4
+ *
5
+ * @package Cookie_Law_Info_Cookie_Scaner
6
+ */
7
+
8
+ if ( ! defined( 'ABSPATH' ) ) {
9
+ exit;
10
+ }
11
+ /**
12
+ * Scanner API classes
13
+ */
14
+ class Cookie_Law_Info_Cookie_Scanner_Api extends Cookie_Law_Info_Cookie_Scaner {
15
+
16
+ /**
17
+ * Cookie serve API URL
18
+ *
19
+ * @var string
20
+ */
21
+ public $api_url = 'https://wp-scanner.cookieyes.com/api/v2/';
22
+ /**
23
+ * Cookie serve API alternate URL
24
+ *
25
+ * @var string
26
+ */
27
+ public $api_url_alternate = 'https://scanner.cookieyes.com/api/';
28
+ /**
29
+ * Cookie serve API base path
30
+ *
31
+ * @var string
32
+ */
33
+ public $api_path = 'scan';
34
+
35
+ /**
36
+ * Append a query parameter to URLs to bypass script blocking
37
+ *
38
+ * @param array $url URL array.
39
+ * @return array
40
+ */
41
+ public function append_bypasspath( $url ) {
42
+ $url_arr = explode( '?', $url );
43
+ if ( count( $url_arr ) > 1 ) {
44
+ if ( trim( $url_arr[1] ) != '' ) {
45
+ parse_str( $url_arr[1], $params );
46
+ $params['cli_bypass'] = 1;
47
+ $url_arr[1] = http_build_query( $params );
48
+ } else {
49
+ $url_arr[1] = 'cli_bypass=1';
50
+ }
51
+ } else {
52
+ $url_arr[] = 'cli_bypass=1';
53
+ }
54
+ return implode( '?', $url_arr );
55
+ }
56
+ /**
57
+ * Remove added query parameter from the URL before inserting to the table
58
+ *
59
+ * @param array $url URL array.
60
+ * @return array
61
+ */
62
+ public function remove_bypasspath( $url ) {
63
+ $url_arr = explode( '?', $url );
64
+ if ( count( $url_arr ) > 1 ) {
65
+ if ( trim( $url_arr[1] ) != '' ) {
66
+ parse_str( $url_arr[1], $params );
67
+ if ( isset( $params['cli_bypass'] ) ) {
68
+ unset( $params['cli_bypass'] );
69
+ }
70
+ if ( count( $params ) > 0 ) {
71
+ $url_arr[1] = http_build_query( $params );
72
+ $url = implode( '?', $url_arr );
73
+ } else {
74
+ $url = $url_arr[0];
75
+ }
76
+ }
77
+ }
78
+ return $url;
79
+ }
80
+ /**
81
+ * Returns the API URL
82
+ *
83
+ * @return string
84
+ */
85
+ private function get_api_url() {
86
+ $url = $this->api_url;
87
+ // if ( get_option( 'cli_scanner_api' ) == 2 ) { // wt_cli_temp_fix.
88
+ // $url = $this->api_url_alternate;
89
+ // }
90
+ return apply_filters( 'wt_cli_cookie_scanner_api_url', $url );
91
+ }
92
+ /**
93
+ * Bulk scanner API.
94
+ *
95
+ * @param array $urls Array of URLs.
96
+ * @return array
97
+ */
98
+ public function fetch_all_cookies( $urls ) {
99
+
100
+ $endpoint = $this->api_url . $this->api_path;
101
+ $token = $this->get_ckyes_scan_token();
102
+ $scan_id = $this->get_ckyes_scan_id();
103
+
104
+ foreach ( $urls as $key => $url ) {
105
+ $urls[ $key ] = $this->append_bypasspath( $url );
106
+ }
107
+ $request_body = array(
108
+ 'domain' => home_url(),
109
+ 'urls' => $urls,
110
+ 'scanId' => intval( $scan_id ),
111
+ );
112
+
113
+ $raw_response = wp_remote_post(
114
+ $endpoint,
115
+ array(
116
+ 'body' => wp_json_encode( $request_body ),
117
+ 'headers' => array(
118
+ 'Content-Type' => 'application/json',
119
+ 'Authorization' => 'Bearer ' . $token,
120
+ ),
121
+ 'timeout' => 60,
122
+ )
123
+ );
124
+ $response_code = wp_remote_retrieve_response_code( $raw_response );
125
+
126
+ if ( 200 !== $response_code ) {
127
+ return false;
128
+ }
129
+ $response = wp_remote_retrieve_body( $raw_response );
130
+
131
+ if ( $response ) {
132
+ return $response;
133
+ }
134
+ return false;
135
+ }
136
+ }
admin/modules/cookie-scaner/classes/class-cookie-law-info-cookie-scanner-export.php ADDED
@@ -0,0 +1,144 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /** */
3
+ if ( ! defined( 'ABSPATH' ) ) {
4
+ exit;
5
+ }
6
+ /**
7
+ * The class which handles cookie export functionalities
8
+ */
9
+ class Cookie_Law_Info_Cookie_Export {
10
+
11
+ /**
12
+ * Start exporting cookies
13
+ *
14
+ * @param int $scan_id scan ID.
15
+ * @param Cookie_Law_Info_Cookie_Scaner $scanner_obj scan object.
16
+ * @return void
17
+ */
18
+ public function do_export( $scan_id, $scanner_obj ) {
19
+ global $wpdb;
20
+ $wpdb->hide_errors();
21
+ @set_time_limit( 0 );
22
+ if ( function_exists( 'apache_setenv' ) ) {
23
+ @apache_setenv( 'no-gzip', 1 );
24
+ }
25
+ @ini_set( 'zlib.output_compression', 0 );
26
+ @ob_clean();
27
+
28
+ header( 'Content-Type: text/csv; charset=UTF-8' );
29
+ header( 'Content-Disposition: attachment; filename=cli-scanned-cookies.csv' );
30
+ header( 'Pragma: no-cache' );
31
+ header( 'Expires: 0' );
32
+
33
+ $fp = fopen( 'php://output', 'w' );
34
+ $row = array();
35
+ $cookielaw_fields = array(
36
+ 'post_title',
37
+ 'post_content',
38
+ 'post_status',
39
+ '_cli_cookie_headscript_meta',
40
+ '_cli_cookie_bodyscript_meta',
41
+ '_cli_cookie_slugid',
42
+ '_cli_cookie_type',
43
+ '_cli_cookie_sensitivity',
44
+ '_cli_cookie_duration',
45
+ 'tax:cookielawinfo-category',
46
+ 'cli_cookie_category_description',
47
+ );
48
+
49
+ // Export header rows.
50
+ foreach ( $cookielaw_fields as $column ) {
51
+ $row[] = self::format_data( $column );
52
+ }
53
+
54
+ $row = array_map( 'self::wrap_column', $row );
55
+ fwrite( $fp, implode( ',', $row ) . "\n" );
56
+ unset( $row );
57
+
58
+ $cookies = $scanner_obj->get_scan_cookies( $scan_id, 0, -1 ); // take all cookies.
59
+
60
+ // Loop cookies.
61
+ if ( $cookies['total'] > 0 ) {
62
+ foreach ( $cookies['cookies'] as $cookie ) {
63
+
64
+ $row = array();
65
+ // Export header rows.
66
+ foreach ( $cookielaw_fields as $column ) {
67
+ switch ( $column ) {
68
+ case 'post_title':
69
+ $row[] = self::format_data( $cookie['cookie_id'] );
70
+ break;
71
+
72
+ case 'post_content':
73
+ $row[] = self::format_data( $cookie['description'] );
74
+ break;
75
+
76
+ case 'post_status':
77
+ $row[] = 'publish';
78
+ break;
79
+
80
+ case '_cli_cookie_headscript_meta':
81
+ $row[] = '';
82
+ break;
83
+
84
+ case '_cli_cookie_bodyscript_meta':
85
+ $row[] = '';
86
+ break;
87
+
88
+ case '_cli_cookie_slugid':
89
+ $row[] = self::format_data( $cookie['cookie_id'] );
90
+ break;
91
+
92
+ case '_cli_cookie_type':
93
+ $row[] = self::format_data( $cookie['type'] );
94
+ break;
95
+
96
+ case '_cli_cookie_sensitivity':
97
+ $row[] = self::format_data( 'non-necessary' );
98
+ break;
99
+
100
+ case '_cli_cookie_duration':
101
+ $row[] = self::format_data( $cookie['expiry'] );
102
+ break;
103
+
104
+ case 'tax:cookielawinfo-category':
105
+ $row[] = self::format_data( $cookie['category'] );
106
+ break;
107
+ case 'cli_cookie_category_description':
108
+ $row[] = self::format_data( $cookie['cli_cookie_category_description'] );
109
+ break;
110
+ default:
111
+ break;
112
+ }
113
+ }
114
+ // Add to csv.
115
+ $row = array_map( 'self::wrap_column', $row );
116
+ fwrite( $fp, implode( ',', $row ) . "\n" );
117
+ unset( $row );
118
+ }
119
+ }
120
+ fclose( $fp );
121
+ exit;
122
+
123
+ }
124
+ /**
125
+ * Format the data before exporting
126
+ *
127
+ * @param array $data array of cookies.
128
+ * @return array
129
+ */
130
+ public static function format_data( $data ) {
131
+ $enc = mb_detect_encoding( $data, 'UTF-8, ISO-8859-1', true );
132
+ $data = ( $enc == 'UTF-8' ) ? $data : utf8_encode( $data );
133
+ return $data;
134
+ }
135
+ /**
136
+ * Wrap a column in quotes for the CSV
137
+ *
138
+ * @param string $data data to wrap.
139
+ * @return string
140
+ */
141
+ public static function wrap_column( $data ) {
142
+ return '"' . str_replace( '"', '""', $data ) . '"';
143
+ }
144
+ }
admin/modules/cookie-scaner/cookie-scaner.php ADDED
@@ -0,0 +1,1226 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Cookie_Law_Info_Cookie_Scaner class file.
4
+ */
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) {
7
+ exit;
8
+ }
9
+ /**
10
+ * Main class for handling the cookie scanner functions
11
+ *
12
+ * @version 1.9.6
13
+ */
14
+ class Cookie_Law_Info_Cookie_Scaner extends Cookie_Law_Info_Cookieyes {
15
+
16
+
17
+ /**
18
+ * Table name for the san history table.
19
+ *
20
+ * @var string
21
+ */
22
+ public $scan_table = 'cli_cookie_scan';
23
+ /**
24
+ * Table name for the san URLs table.
25
+ *
26
+ * @var string
27
+ */
28
+ public $url_table = 'cli_cookie_scan_url';
29
+ /**
30
+ * Table name for the scanned cookies table.
31
+ *
32
+ * @var string
33
+ */
34
+ public $cookies_table = 'cli_cookie_scan_cookies';
35
+ /**
36
+ * Table name for the sannec cookie category table.
37
+ *
38
+ * @var string
39
+ */
40
+ public $category_table = 'cli_cookie_scan_categories';
41
+ /**
42
+ * Table name for the san history table.
43
+ *
44
+ * @var string
45
+ */
46
+ public $status_labels;
47
+ /**
48
+ * To keep the scan history or not
49
+ *
50
+ * @var boolean
51
+ */
52
+ public $not_keep_records = true;
53
+ /**
54
+ * Initialize the scanner
55
+ */
56
+
57
+ public function __construct() {
58
+ $this->status_labels = array(
59
+ 0 => '',
60
+ 1 => __( 'Incomplete', 'cookie-law-info' ),
61
+ 2 => __( 'Completed', 'cookie-law-info' ),
62
+ 3 => __( 'Stopped', 'cookie-law-info' ),
63
+ 4 => __( 'Failed', 'cookie-law-info' ),
64
+ );
65
+ add_action( 'admin_menu', array( $this, 'add_admin_pages' ), 5 );
66
+ add_action( 'wt_cli_cookie_scanner_body', array( $this, 'scanner_notices' ) );
67
+ // add_action( 'wt_cli_cookie_scanner_results', array( $this, 'display_scan_results' ) );
68
+ add_action( 'init', array( $this, 'init' ) );
69
+ add_action( 'admin_init', array( $this, 'export_result' ) );
70
+ add_filter( 'wt_cli_cookie_scan_status', array( $this, 'check_scan_status' ) );
71
+ register_activation_hook( CLI_PLUGIN_FILENAME, array( $this, 'activator' ) );
72
+ add_action(
73
+ 'rest_api_init',
74
+ function () {
75
+ register_rest_route(
76
+ 'cookieyes/v1',
77
+ '/fetch_results',
78
+ array(
79
+ 'methods' => 'POST',
80
+ 'callback' => array( $this, 'fetch_scan_result' ),
81
+ 'permission_callback' => '__return_true',
82
+ )
83
+ );
84
+ }
85
+ );
86
+ }
87
+ /**
88
+ * Include AJAX handler class
89
+ *
90
+ * @return void
91
+ */
92
+ public function init() {
93
+ include plugin_dir_path( __FILE__ ) . 'classes/class-cookie-law-info-cookie-scanner-ajax.php';
94
+
95
+ }
96
+ /**
97
+ * Plugin activation hook
98
+ *
99
+ * @return void
100
+ */
101
+ public function activator() {
102
+ global $wpdb;
103
+ require_once ABSPATH . 'wp-admin/includes/upgrade.php';
104
+
105
+ if ( is_multisite() ) {
106
+ $blog_ids = $wpdb->get_col( "SELECT blog_id FROM $wpdb->blogs" ); // phpcs:ignore WordPress.DB.DirectDatabaseQuery,WordPress.DB.PreparedSQL.NotPrepared
107
+ foreach ( $blog_ids as $blog_id ) {
108
+ switch_to_blog( $blog_id );
109
+ $this->install_tables();
110
+ restore_current_blog();
111
+ }
112
+ } else {
113
+ $this->install_tables();
114
+ }
115
+ }
116
+ /**
117
+ * Check whether table exist or not
118
+ *
119
+ * @param string $table_name table name.
120
+ * @return bool
121
+ */
122
+ public function table_exists( $table_name ) {
123
+ global $wpdb;
124
+
125
+ $query = $wpdb->prepare( 'SHOW TABLES LIKE %s', $wpdb->esc_like( $table_name ) );
126
+
127
+ if ( $wpdb->get_var( $query ) === $table_name ) {
128
+ return true;
129
+ }
130
+ return false;
131
+ }
132
+ /**
133
+ * Install necessary tables
134
+ *
135
+ * @return void
136
+ */
137
+ public function install_tables() {
138
+ global $wpdb;
139
+
140
+ $charset_collate = $wpdb->get_charset_collate();
141
+
142
+ $table_name = $wpdb->prefix . $this->scan_table;
143
+
144
+ if ( false === $this->table_exists( $table_name ) ) {
145
+ $create_table_sql = "CREATE TABLE `$table_name`(
146
+ `id_cli_cookie_scan` INT NOT NULL AUTO_INCREMENT,
147
+ `status` INT NOT NULL DEFAULT '0',
148
+ `created_at` INT NOT NULL DEFAULT '0',
149
+ `total_url` INT NOT NULL DEFAULT '0',
150
+ `total_cookies` INT NOT NULL DEFAULT '0',
151
+ `current_action` VARCHAR(50) NOT NULL,
152
+ `current_offset` INT NOT NULL DEFAULT '0',
153
+ PRIMARY KEY(`id_cli_cookie_scan`)
154
+ );";
155
+
156
+ dbDelta( $create_table_sql );
157
+ }
158
+
159
+ // Creates a table to store all the URLs.
160
+ $table_name = $wpdb->prefix . $this->url_table;
161
+
162
+ if ( false === $this->table_exists( $table_name ) ) {
163
+ $create_table_sql = "CREATE TABLE `$table_name`(
164
+ `id_cli_cookie_scan_url` INT NOT NULL AUTO_INCREMENT,
165
+ `id_cli_cookie_scan` INT NOT NULL DEFAULT '0',
166
+ `url` TEXT NOT NULL,
167
+ `scanned` INT NOT NULL DEFAULT '0',
168
+ `total_cookies` INT NOT NULL DEFAULT '0',
169
+ PRIMARY KEY(`id_cli_cookie_scan_url`)
170
+ );";
171
+
172
+ dbDelta( $create_table_sql );
173
+ }
174
+
175
+ // Creates a table to store all the categories of cookies.
176
+ $table_name = $wpdb->prefix . $this->category_table;
177
+
178
+ if ( false === $this->table_exists( $table_name ) ) {
179
+ $create_table_sql = "CREATE TABLE `$table_name`(
180
+ `id_cli_cookie_category` INT NOT NULL AUTO_INCREMENT,
181
+ `cli_cookie_category_name` VARCHAR(100) NOT NULL,
182
+ `cli_cookie_category_description` TEXT NULL,
183
+ PRIMARY KEY(`id_cli_cookie_category`),
184
+ UNIQUE `cookie` (`cli_cookie_category_name`)
185
+ )";
186
+ $this->insert_scanner_tables( $create_table_sql, $charset_collate );
187
+ }
188
+
189
+ // Creates a table to store all the scanned cookies.
190
+ $table_name = $wpdb->prefix . $this->cookies_table;
191
+
192
+ if ( false === $this->table_exists( $table_name ) ) {
193
+ $create_table_sql = "CREATE TABLE `$table_name`(
194
+ `id_cli_cookie_scan_cookies` INT NOT NULL AUTO_INCREMENT,
195
+ `id_cli_cookie_scan` INT NOT NULL DEFAULT '0',
196
+ `id_cli_cookie_scan_url` INT NOT NULL DEFAULT '0',
197
+ `cookie_id` VARCHAR(255) NOT NULL,
198
+ `expiry` VARCHAR(255) NOT NULL,
199
+ `type` VARCHAR(255) NOT NULL,
200
+ `category` VARCHAR(255) NOT NULL,
201
+ `category_id` INT NOT NULL,
202
+ `description` TEXT NULL DEFAULT '',
203
+ PRIMARY KEY(`id_cli_cookie_scan_cookies`),
204
+ UNIQUE `cookie` (`id_cli_cookie_scan`, `cookie_id`)
205
+ )";
206
+
207
+ $this->insert_scanner_tables( $create_table_sql, $charset_collate );
208
+ }
209
+ $this->update_tables();
210
+ }
211
+ /**
212
+ * Add foreign key constraint to cookie table
213
+ *
214
+ * @return void
215
+ */
216
+ private function update_tables() {
217
+ global $wpdb;
218
+
219
+ $cookies_table = $wpdb->prefix . $this->cookies_table;
220
+ $category_table = $wpdb->prefix . $this->category_table;
221
+
222
+ $wpdb->query( "ALTER TABLE `$cookies_table` ADD CONSTRAINT FOREIGN KEY (`category_id`) REFERENCES `$category_table` (`id_cli_cookie_category`)" ); // phpcs:ignore WordPress.DB.DirectDatabaseQuery,WordPress.DB.PreparedSQL.NotPrepared
223
+ }
224
+ /**
225
+ * Recursice function to insert sanner tables no matter what error has occured
226
+ *
227
+ * @param string $sql sql query.
228
+ * @param string $prop property value.
229
+ * @param integer $status current status fail or success.
230
+ * @return boolean
231
+ */
232
+ private function insert_scanner_tables( $sql, $prop = '', $status = 0 ) {
233
+
234
+ global $wpdb;
235
+ dbDelta( $sql . ' ' . $prop );
236
+ if ( $wpdb->last_error ) {
237
+ $status++;
238
+ if ( 1 === $status ) {
239
+ $prop = '';
240
+ } elseif ( 2 === $status ) {
241
+ $prop = 'ENGINE = MyISAM CHARACTER SET utf8 COLLATE utf8_general_ci';
242
+ } else {
243
+ return true;
244
+ }
245
+ $this->insert_scanner_tables( $sql, $prop, $status );
246
+ } else {
247
+ return true;
248
+ }
249
+ }
250
+ /**
251
+ * Add cookie scanner submenu
252
+ *
253
+ * @return void
254
+ */
255
+ public function add_admin_pages() {
256
+ add_submenu_page(
257
+ 'edit.php?post_type=' . CLI_POST_TYPE,
258
+ __( 'Cookie Scanner', 'cookie-law-info' ),
259
+ __( 'Cookie Scanner', 'cookie-law-info' ),
260
+ 'manage_options',
261
+ 'cookie-law-info-cookie-scaner',
262
+ array( $this, 'cookie_scaner_page' )
263
+ );
264
+ }
265
+ /**
266
+ * Check if all the tables are inserted
267
+ *
268
+ * @return bool
269
+ */
270
+ protected function check_tables() {
271
+ global $wpdb;
272
+
273
+ $scanner_tables = array(
274
+ $this->scan_table,
275
+ $this->url_table,
276
+ $this->cookies_table,
277
+ $this->category_table,
278
+
279
+ );
280
+ foreach ( $scanner_tables as $table ) {
281
+ $table_name = $wpdb->prefix . $table;
282
+ $search_query = "SHOW TABLES LIKE '%" . $table_name . "%'";
283
+ if ( ! $wpdb->get_results( $search_query, ARRAY_N ) ) { // phpcs:ignore WordPress.DB.DirectDatabaseQuery,WordPress.DB.PreparedSQL.NotPrepared
284
+ return false;
285
+ }
286
+ }
287
+ return true;
288
+ }
289
+ /**
290
+ * Main admin page of the cookie scanner,
291
+ *
292
+ * @return void
293
+ */
294
+ public function cookie_scaner_page() {
295
+
296
+ if ( ! current_user_can( 'manage_options' ) ) {
297
+ wp_die( esc_html( __( 'You do not have sufficient permission to perform this operation', 'cookie-law-info' ) ) );
298
+ }
299
+ if ( 'cookielawinfo_page_cookie-law-info-cookie-scaner' === get_current_screen()->id ) {
300
+ $scan_page_url = admin_url( 'edit.php?post_type=' . CLI_POST_TYPE . '&page=cookie-law-info-cookie-scaner' );
301
+ $export_page_url = $scan_page_url . '&cli_scan_export=';
302
+
303
+ $scan_results = $this->get_last_scan_result();
304
+
305
+ include plugin_dir_path( __FILE__ ) . 'views/settings.php';
306
+
307
+ $params = array(
308
+ 'nonces' => array(
309
+ 'cli_cookie_scaner' => wp_create_nonce( 'cli_cookie_scaner' ),
310
+ ),
311
+ 'ajax_url' => admin_url( 'admin-ajax.php' ),
312
+ 'scan_status' => ( $this->check_scan_status() === 1 ? true : false ),
313
+ 'loading_gif' => plugin_dir_url( __FILE__ ) . 'assets/images/loading.gif',
314
+ 'labels' => array(
315
+ 'scanned' => __( 'Scanned', 'cookie-law-info' ),
316
+ 'finished' => __( 'Scanning completed.', 'cookie-law-info' ),
317
+ 'import_finished' => __( 'Added to cookie list.', 'cookie-law-info' ),
318
+ 'finding' => __( 'Finding pages...', 'cookie-law-info' ),
319
+ 'scanning' => __( 'Scanning pages...', 'cookie-law-info' ),
320
+ 'error' => __( 'Error', 'cookie-law-info' ),
321
+ 'stop' => __( 'Stop', 'cookie-law-info' ),
322
+ 'scan_again' => __( 'Scan again', 'cookie-law-info' ),
323
+ 'export' => __( 'Download cookies as CSV', 'cookie-law-info' ),
324
+ 'import' => __( 'Add to cookie list', 'cookie-law-info' ),
325
+ 'view_result' => __( 'View scan result', 'cookie-law-info' ),
326
+ 'import_options' => __( 'Import options', 'cookie-law-info' ),
327
+ 'replace_old' => __( 'Replace old', 'cookie-law-info' ),
328
+ 'merge' => __( 'Merge', 'cookie-law-info' ),
329
+ 'recommended' => __( 'Recommended', 'cookie-law-info' ),
330
+ 'append' => __( 'Append', 'cookie-law-info' ),
331
+ 'not_recommended' => __( 'Not recommended', 'cookie-law-info' ),
332
+ 'cancel' => __( 'Cancel', 'cookie-law-info' ),
333
+ 'start_import' => __( 'Start import', 'cookie-law-info' ),
334
+ 'importing' => __( 'Importing....', 'cookie-law-info' ),
335
+ 'refreshing' => __( 'Refreshing....', 'cookie-law-info' ),
336
+ 'reload_page' => __( 'Error !!! Please reload the page to see cookie list.', 'cookie-law-info' ),
337
+ 'stoping' => __( 'Stopping...', 'cookie-law-info' ),
338
+ 'scanning_stopped' => __( 'Scanning stopped.', 'cookie-law-info' ),
339
+ 'ru_sure' => __( 'Are you sure?', 'cookie-law-info' ),
340
+ 'success' => __( 'Success', 'cookie-law-info' ),
341
+ 'thankyou' => __( 'Thank you', 'cookie-law-info' ),
342
+ 'checking_api' => __( 'Checking API', 'cookie-law-info' ),
343
+ 'sending' => __( 'Sending...', 'cookie-law-info' ),
344
+ 'total_urls_scanned' => __( 'Total URLs scanned', 'cookie-law-info' ),
345
+ 'total_cookies_found' => __( 'Total Cookies found', 'cookie-law-info' ),
346
+ 'page_fetch_error' => __( 'Could not fetch the URLs, please try again', 'cookie-law-info' ),
347
+ 'abort' => __( 'Aborting the scan...', 'cookie-law-info' ),
348
+ 'abort_failed' => __( 'Could not abort the scan, please try again', 'cookie-law-info' ),
349
+ ),
350
+ );
351
+ wp_enqueue_script( 'cookielawinfo_cookie_scaner', plugin_dir_url( __FILE__ ) . 'assets/js/cookie-scaner.js', array(), CLI_VERSION, true );
352
+ wp_localize_script( 'cookielawinfo_cookie_scaner', 'cookielawinfo_cookie_scaner', $params );
353
+ }
354
+ }
355
+ /**
356
+ * Insert a new scan entry to the scanner table
357
+ *
358
+ * @param array $data_arr Array of data.
359
+ * @param int $scan_id scan ID.
360
+ * @return bool
361
+ */
362
+ protected function update_scan_entry( $data_arr, $scan_id ) {
363
+ global $wpdb;
364
+ $scan_table = $wpdb->prefix . $this->scan_table;
365
+ if ( $wpdb->update( $scan_table, $data_arr, array( 'id_cli_cookie_scan' => $scan_id ) ) ) { // phpcs:ignore WordPress.DB.DirectDatabaseQuery,WordPress.DB.PreparedSQL.NotPrepared
366
+ return true;
367
+ } else {
368
+ return false;
369
+ }
370
+ }
371
+ /**
372
+ * Insert the URL's
373
+ *
374
+ * @param int $scan_id scan ID.
375
+ * @param string $permalink Permalink of a page or post.
376
+ * @return void
377
+ */
378
+ protected function insert_url( $scan_id, $permalink ) {
379
+ global $wpdb;
380
+ $url_table = $wpdb->prefix . $this->url_table;
381
+ $data_arr = array(
382
+ 'id_cli_cookie_scan' => $scan_id,
383
+ 'url' => $permalink,
384
+ 'scanned' => 0,
385
+ 'total_cookies' => 0,
386
+ );
387
+ $wpdb->insert( $url_table, $data_arr );
388
+ }
389
+
390
+ /**
391
+ * Get current scan status text
392
+ *
393
+ * @param [type] $status current status of the scan.
394
+ * @return string
395
+ */
396
+ public function get_scan_status_text( $status ) {
397
+ return isset( $this->status_labels[ $status ] ) ? $this->status_labels[ $status ] : __( 'Unknown', 'cookie-law-info' );
398
+ }
399
+ /**
400
+ * Return the last scan results
401
+ *
402
+ * @return array
403
+ */
404
+ protected function get_last_scan() {
405
+ global $wpdb;
406
+ $scan_table = $wpdb->prefix . $this->scan_table;
407
+ $data = array();
408
+ if ( true === $this->table_exists( $scan_table ) ) {
409
+ $sql = "SELECT * FROM `$scan_table` ORDER BY id_cli_cookie_scan DESC LIMIT 1";
410
+ $data = $wpdb->get_row( $sql, ARRAY_A ); // phpcs:ignore WordPress.DB.DirectDatabaseQuery,WordPress.DB.PreparedSQL.NotPrepared
411
+ }
412
+ return $data;
413
+ }
414
+ /**
415
+ * Return the current scan status progress, failed , or success.
416
+ *
417
+ * @return integer
418
+ */
419
+ public function check_scan_status() {
420
+ $last_scan = $this->get_last_scan();
421
+ $status = ( isset( $last_scan['status'] ) ? $last_scan['status'] : 0 );
422
+ if ( $this->get_cookieyes_status() === 0 || $this->get_cookieyes_status() === false ) {
423
+ $status = 0;
424
+ }
425
+ return intval( $status );
426
+ }
427
+ /**
428
+ * Display a notice if not connected to CookieYes
429
+ *
430
+ * @param boolean $existing if existing customer return different notice.
431
+ * @return string
432
+ */
433
+ public function get_cookieyes_scan_notice( $existing = false ) {
434
+
435
+ $ckyes_link = 'https://www.cookieyes.com/';
436
+ $ckyes_privacy_policy = 'https://www.cookieyes.com/privacy-policy';
437
+ $ckyes_terms_conditions = 'https://www.cookieyes.com/terms-and-conditions/';
438
+
439
+ $notice = '<p>' . __( 'Scan your website with CookieYes, our scanning solution for high-speed, accurate cookie scanning', 'cookie-law-info' ) . '</p>';
440
+ $notice = '<p style="font-weight:500;">' . sprintf(
441
+ wp_kses(
442
+ __( 'Clicking “Connect & scan” will let you connect with a free <a href="%s" target="_blank">CookieYes</a> account and initiate scanning of your website for cookies. These cookies along with their description will be listed under the cookie declaration popup. By continuing, you agree to CookieYes\'s <a href="%1$s" target="_blank">Privacy Policy</a> & <a href="%2$s" target="_blank">Terms of service</a>.', 'cookie-law-info' ),
443
+ array(
444
+ 'a' => array(
445
+ 'href' => array(),
446
+ 'target' => array(),
447
+ ),
448
+ )
449
+ ),
450
+ esc_url( $ckyes_link ),
451
+ esc_url( $ckyes_privacy_policy ),
452
+ esc_url( $ckyes_terms_conditions )
453
+ ) . '</p>';
454
+
455
+ $notice = Cookie_Law_Info_Admin::wt_cli_admin_notice( 'info', $notice );
456
+ if ( false === $existing ) { // Existing user so show this notice.
457
+ $notice .= '<div class="wt-cli-cookie-scanner-actions"><a id="wt-cli-ckyes-connect-scan" class="button-primary">' . __( 'Connect & scan', 'cookie-law-info' ) . '</a></div>';
458
+ }
459
+ return $notice;
460
+ }
461
+ /**
462
+ * Get last scan info
463
+ *
464
+ * @return string
465
+ */
466
+ public function get_last_scan_info() {
467
+
468
+ $last_scan = $this->get_last_scan();
469
+
470
+ $scan_notice = $this->get_scan_default_html();
471
+ $show_results = false;
472
+
473
+ if ( $last_scan ) {
474
+ $scan_status = intval( ( isset( $last_scan['status'] ) ? $last_scan['status'] : 0 ) );
475
+ if ( 2 === $scan_status ) {
476
+ $scan_notice = $this->get_scan_success_html( $last_scan );
477
+ $show_results = true;
478
+ } elseif ( 3 === $scan_status ) {
479
+ $scan_notice = $this->get_scan_abort_html( $last_scan );
480
+ } elseif ( 4 === $scan_status ) {
481
+ $scan_notice = $this->get_scan_failed_html( $last_scan );
482
+ }
483
+ }
484
+ $notice = '<div class="wt-cli-cookie-scan-container">';
485
+ $notice .= '<div class="wt-cli-cookie-scanner-actions">' . apply_filters( 'wt_cli_ckyes_account_widget', '' ) . '</div>';
486
+ $notice .= $scan_notice;
487
+ $notice .= '</div>';
488
+ $notice .= '<div class="wt-cli-cookie-scanner-actions">' . $this->get_scan_btn() . '</div>';
489
+ if( true === $show_results ) {
490
+ $notice .= $this->get_scan_result_table();
491
+ }
492
+ return $notice;
493
+
494
+ }
495
+ /**
496
+ * Default HTML content if no scanning has performed
497
+ *
498
+ * @return string
499
+ */
500
+ public function get_scan_default_html() {
501
+ $message = '<p>' . __( 'You haven\'t performed a site scan yet.', 'cookie-law-info' ) . '</p>';
502
+ return Cookie_Law_Info_Admin::wt_cli_admin_notice( 'info', $message );
503
+ }
504
+ /**
505
+ * Scan success HTML
506
+ *
507
+ * @param [type] $scan_data scan data.
508
+ * @return string
509
+ */
510
+ public function get_scan_success_html( $scan_data ) {
511
+
512
+ $message = '';
513
+ $result_page = admin_url( 'edit.php?post_type=' . CLI_POST_TYPE . '&page=cookie-law-info-cookie-scaner&scan_result' );
514
+ $last_scan_date = ( isset( $scan_data['created_at'] ) ? $scan_data['created_at'] : '' );
515
+
516
+ if ( ! empty( ( $last_scan_date ) ) ) {
517
+ $last_scan_date = date( 'F j, Y g:i a T', $last_scan_date );
518
+ }
519
+
520
+ $last_scan_text = sprintf( wp_kses( __( 'Last scan: %1$s', 'cookie-law-info' ), array( 'a' => array( 'href' => array() ) ) ), $last_scan_date );
521
+ $message = '<div class="wt-cli-scan-status"><p><b>' . __( 'Scan complete', 'cookie-law-info' ) . '</b></p></div>';
522
+ $message .= '<div class="wt-cli-scan-date"><p style="color: #80827f;">' . $last_scan_text . '</p></div>';
523
+
524
+ return Cookie_Law_Info_Admin::wt_cli_admin_notice( 'success', $message, true );
525
+
526
+ }
527
+ /**
528
+ * Scan failed HTML
529
+ *
530
+ * @param array $scan_data scan result.
531
+ * @return string
532
+ */
533
+ public function get_scan_failed_html( $scan_data ) {
534
+
535
+ $last_scan_date = ( isset( $scan_data['created_at'] ) ? $scan_data['created_at'] : '' );
536
+
537
+ if ( ! empty( ( $last_scan_date ) ) ) {
538
+ $last_scan_date = date( 'F j, Y g:i a T', $last_scan_date );
539
+ }
540
+
541
+ $message = '<div class="wt-cli-scan-status"><p><b>' . __( 'Scan failed', 'cookie-law-info' ) . '</b></p></div>';
542
+ $message .= '<div class="wt-cli-scan-date"><p style="color: #80827f;">' . __( 'Last scan:', 'cookie-law-info' ) . ' ' . $last_scan_date . '</p></div>';
543
+
544
+ return Cookie_Law_Info_Admin::wt_cli_admin_notice( 'warning', $message, true );
545
+ }
546
+ /**
547
+ * Scan abort HTML
548
+ *
549
+ * @param array $scan_data scan result.
550
+ * @return string
551
+ */
552
+ public function get_scan_abort_html( $scan_data ) {
553
+ $last_scan_date = ( isset( $scan_data['created_at'] ) ? $scan_data['created_at'] : '' );
554
+
555
+ if ( ! empty( ( $last_scan_date ) ) ) {
556
+ $last_scan_date = date( 'F j, Y g:i a T', $last_scan_date );
557
+ }
558
+
559
+ $message = '<div class="wt-cli-scan-status"><p><b>' . __( 'Scan aborted', 'cookie-law-info' ) . '</b></p></div>';
560
+ $message .= '<div class="wt-cli-scan-date"><p style="color: #80827f;">' . __( 'Last scan:', 'cookie-law-info' ) . ' ' . $last_scan_date . '</p></div>';
561
+ return Cookie_Law_Info_Admin::wt_cli_admin_notice( 'alert', $message, true );
562
+ }
563
+ /**
564
+ * Scan progress HTML.
565
+ *
566
+ * @return string
567
+ */
568
+ public function get_scan_progress_html() {
569
+
570
+ $last_scan = $this->get_last_scan();
571
+ $total_urls = ( isset( $last_scan['total_url'] ) ? $last_scan['total_url'] : 0 );
572
+ $last_scan_timestamp = ( isset( $last_scan['created_at'] ) ? $last_scan['created_at'] : '' );
573
+ $scan_estimate_in_seconds = $this->get_ckyes_scan_estimate();
574
+ $scan_estimate = date( 'H:i:s', $scan_estimate_in_seconds );
575
+ $last_scan_date = '';
576
+ if ( ! empty( ( $last_scan_timestamp ) ) ) {
577
+ $last_scan_date = date( 'F j, Y g:i a T', $last_scan_timestamp );
578
+ }
579
+ // $offset_time = ( $scan_estimate_in_seconds > HOUR_IN_SECONDS ) ? $scan_estimate_in_seconds : HOUR_IN_SECONDS;
580
+ // $show_abort = ( time() > ( intval( $last_scan_timestamp ) + intval( $offset_time ) ) ) ? true : false;
581
+
582
+ $html = '<div class="wt-cli-scan-status-container" style="">
583
+ <div class="wt-cli-row">
584
+ <div class="wt-cli-col-5">
585
+ <div class="wt-cli-row">
586
+ <div class="wt-cli-col-5">
587
+ <div class="wt-cli-scan-status-bar" style="display:flex;align-items:center; color: #2fab10;">
588
+ <span class="wt-cli-status-icon wt-cli-status-success"></span><span style="margin-left:10px">' . __( 'Scan initiated...', 'cookie-law-info' ) . '</span>
589
+ </div>
590
+ </div>
591
+ <div class="wt-cli-col-7"><a id="wt-cli-cookie-scan-abort" href="#">' . __( 'Abort scan', 'cookie-law-info' ) . '</a></div>
592
+ </div>
593
+ </div>
594
+ </div>
595
+ </div>
596
+ <div class="wt-scan-status-info">
597
+ <div class="wt-cli-row">
598
+ <div class="wt-cli-col-5">
599
+ <div class="wt-scan-status-info-item">
600
+ <div class="wt-cli-row">
601
+ <div class="wt-cli-col-5">
602
+ <b>' . __( 'Scan started at', 'cookie-law-info' ) . ':</b>
603
+ </div>
604
+ <div class="wt-cli-col-7">' . $last_scan_date . '</div>
605
+ </div>
606
+ </div>
607
+ <div class="wt-scan-status-info-item">
608
+ <div class="wt-cli-row">
609
+ <div class="wt-cli-col-5">
610
+ <b>' . __( 'Total URLs', 'cookie-law-info' ) . ':</b>
611
+ </div>
612
+ <div class="wt-cli-col-7">' . $total_urls . '</div>
613
+ </div>
614
+ </div>
615
+ <div class="wt-scan-status-info-item">
616
+ <div class="wt-cli-row">
617
+ <div class="wt-cli-col-5">
618
+ <b>' . __( 'Total estimated time (Approx)', 'cookie-law-info' ) . ':</b>
619
+ </div>
620
+ <div class="wt-cli-col-7">' . $scan_estimate . '</div>
621
+ </div>
622
+ </div>
623
+ </div>
624
+ </div>
625
+ </div>
626
+ <div class="wt-cli-notice wt-cli-info">' . __( 'Your website is currently being scanned for cookies. This might take from a few minutes to a few hours, depending on your website speed and the number of pages to be scanned.', 'cookie-law-info' ) .
627
+
628
+ '</br><b>' . __( 'Once the scanning is complete, we will notify you by email.', 'cookie-law-info' ) . '</b></div>
629
+ ';
630
+ return $html;
631
+ }
632
+ /**
633
+ * Scanner notices
634
+ *
635
+ * @param boolean $return check whether to return or print the content.
636
+ * @return string
637
+ */
638
+ public function scanner_notices( $return = false ) {
639
+
640
+ $notice = '';
641
+ $cookies_table = '';
642
+ $html = '';
643
+
644
+ if ( ! $this->check_tables() ) {
645
+ $notice = $this->get_table_missing_notice();
646
+ } elseif ( $this->check_if_local_server() === true ) {
647
+ $message = __( 'Unable to load cookie scanner. Scanning will not work on local servers', 'cookie-law-info' );
648
+ $notice = Cookie_Law_Info_Admin::wt_cli_admin_notice( 'warning', $message );
649
+ } elseif ( Cookie_Law_Info_Cookies::get_instance()->check_if_old_category_table() === true ) {
650
+ $notice = $this->cookies_scan_features();
651
+ } else {
652
+ if ( $this->get_cookieyes_status() === false ) {
653
+
654
+ $last_scan = $this->get_last_scan();
655
+ if ( $last_scan ) {
656
+ $notice = $this->get_cookieyes_scan_notice( true ); // Existing customer so there should be no connect button.
657
+ $notice .= $this->get_last_scan_info();
658
+ } else {
659
+ $notice = $this->get_cookieyes_scan_notice();
660
+ $notice .= $this->cookies_scan_features();
661
+ }
662
+ } else {
663
+ if ( $this->check_scan_status() === 1 ) {
664
+ $notice = $this->get_scan_progress_html();
665
+ } else {
666
+ $notice = $this->get_last_scan_info();
667
+ }
668
+ }
669
+ }
670
+ $html = $notice;
671
+
672
+ if ( true === $return ) {
673
+ return $html;
674
+ } else {
675
+ echo $html; // phpcs:ignore WordPress.Security.EscapeOutput
676
+
677
+ }
678
+ }
679
+ /**
680
+ * Table missing notice.
681
+ *
682
+ * @return string
683
+ */
684
+ public function get_table_missing_notice() {
685
+
686
+ $message = __( 'To scan cookies following tables should be present on your database, please check if tables do exist on your database.', 'cookie-law-info' );
687
+ $message .= '<ul>';
688
+ $message .= '<li>{$wpdb->prefix}cli_cookie_scan</li>';
689
+ $message .= '<li>{$wpdb->prefix}cli_cookie_scan_url</li>';
690
+ $message .= '<li>{$wpdb->prefix}cli_cookie_scan_cookies</li>';
691
+ $message .= '<li>{$wpdb->prefix}cli_cookie_scan_categories</li>';
692
+ $message .= '</ul>';
693
+
694
+ $notice = Cookie_Law_Info_Admin::wt_cli_admin_notice( 'warning', $message );
695
+ return $notice;
696
+
697
+ }
698
+ /**
699
+ * Detect whether the server is hosted locally or not
700
+ *
701
+ * @return bool
702
+ */
703
+ public function check_if_local_server() {
704
+ $localhost_arr = array(
705
+ '127.0.0.1',
706
+ '::1',
707
+ );
708
+ if ( ! empty( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) {
709
+ $ip_address = sanitize_text_field( wp_unslash( $_SERVER['HTTP_X_FORWARDED_FOR'] ) );
710
+ } else {
711
+ $ip_address = isset( $_SERVER['REMOTE_ADDR'] ) ? sanitize_text_field( wp_unslash( $_SERVER['REMOTE_ADDR'] ) ) : '';
712
+ }
713
+ $ip_address = apply_filters('wt_cli_change_ip_address', $ip_address );
714
+ if ( in_array( $ip_address, $localhost_arr, true ) ) {
715
+ return true;
716
+ }
717
+ return false;
718
+ }
719
+ /**
720
+ * Return current cookies present on the cookie posts
721
+ *
722
+ * @access public
723
+ * @return array
724
+ */
725
+ public static function get_cookie_list() {
726
+ $cookies = array();
727
+
728
+ $args = array(
729
+ 'numberposts' => -1,
730
+ 'post_type' => CLI_POST_TYPE,
731
+ 'orderby' => 'ID',
732
+ 'order' => 'DESC',
733
+ );
734
+
735
+ $posts = get_posts( $args );
736
+ if ( isset( $posts ) && is_array( $posts ) && count( $posts ) > 0 ) {
737
+ foreach ( $posts as $post ) {
738
+
739
+ $post_meta = get_post_custom( $post->ID );
740
+ $term_list = wp_get_post_terms( $post->ID, 'cookielawinfo-category', array( 'fields' => 'names' ) );
741
+ $category = isset( $term_list[0] ) ? $term_list[0] : '';
742
+
743
+ $cookie_data = array(
744
+
745
+ 'id' => $post->post_title,
746
+ 'type' => isset( $post_meta['_cli_cookie_type'][0] ) ? $post_meta['_cli_cookie_type'][0] : '',
747
+ 'expiry' => isset( $post_meta['_cli_cookie_duration'][0] ) ? $post_meta['_cli_cookie_duration'][0] : '',
748
+ 'category' => $category,
749
+ 'description' => $post->post_content,
750
+ );
751
+ $cookies[] = $cookie_data;
752
+ }
753
+ }
754
+
755
+ return $cookies;
756
+ }
757
+ /**
758
+ * Return the last scan results
759
+ *
760
+ * @return array
761
+ */
762
+ public function get_last_scan_result() {
763
+
764
+ $last_scan = $this->get_last_scan();
765
+ $scan_results = array();
766
+
767
+ if ( $last_scan && isset( $last_scan['id_cli_cookie_scan'] ) ) {
768
+ $scan_results = $this->get_scan_results_by_id( $last_scan['id_cli_cookie_scan'] );
769
+ }
770
+
771
+ return $scan_results;
772
+ }
773
+ /**
774
+ * Return last scan history
775
+ *
776
+ * @param [type] $id Scan ID.
777
+ * @return array
778
+ */
779
+ public function get_scan_history( $id ) {
780
+ global $wpdb;
781
+ $scan_table = $wpdb->prefix . $this->scan_table;
782
+ $sql = "SELECT * FROM `$scan_table` WHERE id_cli_cookie_scan='$id'";
783
+ return $wpdb->get_row( $sql, ARRAY_A ); // phpcs:ignore WordPress.DB.DirectDatabaseQuery,WordPress.DB.PreparedSQL.NotPrepared
784
+ }
785
+ /**
786
+ * Retuns scan results by ID
787
+ *
788
+ * @param [type] $id scan ID.
789
+ * @return array
790
+ */
791
+ public function get_scan_results_by_id( $id ) {
792
+
793
+ $data = array();
794
+ $scan_info = $this->get_scan_history( $id );
795
+ $scan_urls = $this->get_scan_urls( $id );
796
+ $scan_cookies = $this->get_scan_cookies( $id );
797
+ $data['scan_id'] = $id;
798
+ $data['date'] = isset( $scan_info['created_at'] ) ? $scan_info['created_at'] : '';
799
+ $data['status'] = isset( $scan_info['status'] ) ? $scan_info['status'] : '';
800
+
801
+ $data['urls'] = isset( $scan_urls['urls'] ) ? $scan_urls['urls'] : '';
802
+ $data['total_urls'] = isset( $scan_urls['total'] ) ? $scan_urls['total'] : '';
803
+
804
+ $data['cookies'] = isset( $scan_cookies['cookies'] ) ? $this->process_cookies( $scan_cookies['cookies'] ) : '';
805
+ $data['total_cookies'] = isset( $scan_cookies['total'] ) ? $scan_cookies['total'] : '';
806
+
807
+ return $data;
808
+ }
809
+ /**
810
+ * Process cookies and re order by description.
811
+ *
812
+ * @param array $raw_cookie_data raw cookie data.
813
+ * @return array
814
+ */
815
+ public function process_cookies( $raw_cookie_data ) {
816
+ $cookies = array();
817
+ $cookie_has_description = array();
818
+ $cookie_has_no_description = array();
819
+ $count = 0;
820
+ foreach ( $raw_cookie_data as $key => $data ) {
821
+ $cookie_data = array(
822
+
823
+ 'id' => isset( $data['cookie_id'] ) ? $data['cookie_id'] : '',
824
+ 'type' => isset( $data['type'] ) ? $data['type'] : '',
825
+ 'expiry' => isset( $data['expiry'] ) ? $data['expiry'] : '',
826
+ 'category' => isset( $data['category'] ) ? $data['category'] : '',
827
+ 'description' => isset( $data['description'] ) ? $data['description'] : '',
828
+ );
829
+ if ( '' === $cookie_data['description'] || 'No description' === $cookie_data['description'] ) {
830
+ $cookie_has_no_description[ $count ] = $cookie_data;
831
+ } else {
832
+ $cookie_has_description[ $count ] = $cookie_data;
833
+ }
834
+ $count ++;
835
+ }
836
+ $cookies = $cookie_has_description + $cookie_has_no_description;
837
+ return $cookies;
838
+ }
839
+ /**
840
+ * Return the scanner URLs
841
+ *
842
+ * @param [type] $scan_id scan ID.
843
+ * @param integer $offset Offset number.
844
+ * @param integer $limit page limit if pagination is used.
845
+ * @return array
846
+ */
847
+ public function get_scan_urls( $scan_id, $offset = 0, $limit = 100 ) {
848
+ global $wpdb;
849
+ $out = array(
850
+ 'total' => 0,
851
+ 'data' => array(),
852
+ );
853
+
854
+ $url_table = $wpdb->prefix . $this->url_table;
855
+ $count_sql = "SELECT COUNT(id_cli_cookie_scan_url) AS ttnum FROM $url_table WHERE id_cli_cookie_scan='$scan_id'";
856
+
857
+ $count_arr = $wpdb->get_row( $count_sql, ARRAY_A ); // phpcs:ignore WordPress.DB.DirectDatabaseQuery,WordPress.DB.PreparedSQL.NotPrepared
858
+
859
+ if ( $count_arr ) {
860
+ $out['total'] = $count_arr['ttnum'];
861
+ }
862
+
863
+ $sql = "SELECT * FROM $url_table WHERE id_cli_cookie_scan='$scan_id' ORDER BY id_cli_cookie_scan_url ASC LIMIT $offset,$limit";
864
+
865
+ $data_arr = $wpdb->get_results( $sql, ARRAY_A ); // phpcs:ignore WordPress.DB.DirectDatabaseQuery,WordPress.DB.PreparedSQL.NotPrepared
866
+ if ( $data_arr ) {
867
+ $out['urls'] = $data_arr;
868
+ }
869
+ return $out;
870
+ }
871
+ /**
872
+ * Return the identified cookies after the scanning
873
+ *
874
+ * @param [type] $scan_id scan ID.
875
+ * @param integer $offset offset number.
876
+ * @param integer $limit page limit if pagination is used.
877
+ * @return array
878
+ */
879
+ public function get_scan_cookies( $scan_id, $offset = 0, $limit = 100 ) {
880
+ global $wpdb;
881
+ $out = array(
882
+ 'total' => 0,
883
+ 'cookies' => array(),
884
+ );
885
+
886
+ $cookies_table = $wpdb->prefix . $this->cookies_table;
887
+ $url_table = $wpdb->prefix . $this->url_table;
888
+ $category_table = $wpdb->prefix . $this->category_table;
889
+
890
+ $count_sql = "SELECT COUNT(id_cli_cookie_scan_cookies) AS ttnum FROM $cookies_table WHERE id_cli_cookie_scan='$scan_id'";
891
+ $count_arr = $wpdb->get_row( $count_sql, ARRAY_A ); // phpcs:ignore WordPress.DB.DirectDatabaseQuery,WordPress.DB.PreparedSQL.NotPrepared
892
+
893
+ if ( $count_arr ) {
894
+ $out['total'] = $count_arr['ttnum'];
895
+ }
896
+
897
+ $sql = "SELECT * FROM $cookies_table INNER JOIN $category_table ON $cookies_table.category_id = $category_table.id_cli_cookie_category INNER JOIN $url_table ON $cookies_table.id_cli_cookie_scan_url = $url_table.id_cli_cookie_scan_url WHERE $cookies_table.id_cli_cookie_scan='$scan_id' ORDER BY id_cli_cookie_scan_cookies ASC" . ( $limit > 0 ? " LIMIT $offset,$limit" : '' );
898
+ $cookies = $wpdb->get_results( $sql, ARRAY_A ); // phpcs:ignore WordPress.DB.DirectDatabaseQuery,WordPress.DB.PreparedSQL.NotPrepared
899
+
900
+ if ( $cookies ) {
901
+ $out['cookies'] = $cookies;
902
+ }
903
+ return $out;
904
+ }
905
+ /**
906
+ * Return HTML table structure for listing cookies
907
+ *
908
+ * @param [type] $cookies The cookie list.
909
+ * @return string
910
+ */
911
+ public function create_cookies_table( $cookies ) {
912
+
913
+ $count = 1;
914
+ $html = '<table class="wt-cli-table">';
915
+ $html .= '<thead>';
916
+ $html .= '<th style="width: 6%;">' . __( 'Sl.No:', 'cookie-law-info' ) . '</th>';
917
+ $html .= '<th>' . __( 'Cookie Name', 'cookie-law-info' ) . '</th>';
918
+ $html .= '<th style="width:15%;" >' . __( 'Duration', 'cookie-law-info' ) . '</th>';
919
+ $html .= '<th style="width:15%;" >' . __( 'Category', 'cookie-law-info' ) . '</th>';
920
+ $html .= '<th style="width:40%;" >' . __( 'Description', 'cookie-law-info' ) . '</th>';
921
+ $html .= '</thead>';
922
+ $html .= '<tbody>';
923
+
924
+ if ( isset( $cookies ) && is_array( $cookies ) && count( $cookies ) > 0 ) :
925
+ foreach ( $cookies as $cookie ) :
926
+ $html .= '<tr>';
927
+ $html .= '<td>' . $count . '</td>';
928
+ $html .= '<td>' . $cookie['id'] . '</td>';
929
+ $html .= '<td>' . $cookie['expiry'] . '</td>';
930
+ $html .= '<td>' . $cookie['category'] . '</td>';
931
+ $html .= '<td>' . $cookie['description'] . '</td>';
932
+ $html .= '</tr>';
933
+ $count ++;
934
+ endforeach;
935
+ else :
936
+ $html .= '<tr><td class="colspanchange" colspan="5" style="text-align:center" >' . __( 'Your cookie list is empty', 'cookie-law-info' ) . '</td></tr>';
937
+ endif;
938
+
939
+ $html .= '</tbody>';
940
+ $html .= '</table>';
941
+
942
+ return $html;
943
+ }
944
+ /**
945
+ * Get the last scan ID
946
+ *
947
+ * @return int
948
+ */
949
+ public function get_last_scan_id() {
950
+ $last_scan = $this->get_last_scan();
951
+ $scan_id = ( isset( $last_scan['id_cli_cookie_scan'] ) ? $last_scan['id_cli_cookie_scan'] : false );
952
+ return $scan_id;
953
+ }
954
+ /**
955
+ * Insert a new scan entry to the table
956
+ *
957
+ * @param integer $total_url Total URL count.
958
+ * @return int
959
+ */
960
+ protected function create_scan_entry( $total_url = 0 ) {
961
+ global $wpdb;
962
+
963
+ // we are not planning to keep records of old scans.
964
+ if ( $this->not_keep_records ) {
965
+ $this->flush_scan_records();
966
+ }
967
+
968
+ $scan_table = $wpdb->prefix . $this->scan_table;
969
+ $data_arr = array(
970
+ 'created_at' => time(),
971
+ 'total_url' => $total_url,
972
+ 'total_cookies' => 0,
973
+ 'current_action' => 'get_pages',
974
+ 'status' => 1,
975
+ );
976
+ update_option( 'CLI_BYPASS', 1 );
977
+ if ( $wpdb->insert( $scan_table, $data_arr ) ) {
978
+ return $wpdb->insert_id;
979
+ } else {
980
+ return '0';
981
+ }
982
+ }
983
+ /**
984
+ * Delete all the scan records
985
+ *
986
+ * @return void
987
+ */
988
+ public function flush_scan_records() {
989
+ global $wpdb;
990
+ $table_name = $wpdb->prefix . $this->scan_table;
991
+ $wpdb->query( "TRUNCATE TABLE $table_name" ); // phpcs:ignore WordPress.DB.DirectDatabaseQuery,WordPress.DB.PreparedSQL.NotPrepared
992
+ $table_name = $wpdb->prefix . $this->url_table;
993
+ $wpdb->query( "TRUNCATE TABLE $table_name" ); // phpcs:ignore WordPress.DB.DirectDatabaseQuery,WordPress.DB.PreparedSQL.NotPrepared
994
+ $table_name = $wpdb->prefix . $this->cookies_table;
995
+ $wpdb->query( "TRUNCATE TABLE $table_name" ); // phpcs:ignore WordPress.DB.DirectDatabaseQuery,WordPress.DB.PreparedSQL.NotPrepared
996
+ }
997
+ /**
998
+ * Fetch the current scan result
999
+ *
1000
+ * @param array $request Request object.
1001
+ * @return void
1002
+ */
1003
+ public function fetch_scan_result( $request ) {
1004
+
1005
+ if ( isset( $request ) && is_object( $request ) ) {
1006
+ $request_body = $request->get_body();
1007
+ if ( ! empty( $request_body ) ) {
1008
+ if ( is_wp_error( $this->save_cookie_data( json_decode( $request_body, true ) ) ) ) {
1009
+ wp_send_json_error( __( 'Token mismatch', 'cookie-law-info' ) );
1010
+ }
1011
+ wp_send_json_success( __( 'Successfully inserted', 'cookie-law-info' ) );
1012
+ }
1013
+ }
1014
+ wp_send_json_error( __( 'Failed to insert', 'cookie-law-info' ) );
1015
+ }
1016
+ /**
1017
+ * Save cookie data to cookies table
1018
+ *
1019
+ * @param array $cookie_data Array of data.
1020
+ * @return void
1021
+ */
1022
+ public function save_cookie_data( $cookie_data ) {
1023
+
1024
+ global $wpdb;
1025
+ $url_table = $wpdb->prefix . $this->url_table;
1026
+ $scan_id = $this->get_last_scan_id();
1027
+ $scan_urls = array();
1028
+
1029
+ if ( $cookie_data ) {
1030
+ if ( $scan_id !== false ) {
1031
+
1032
+ $sql = "SELECT id_cli_cookie_scan_url,url FROM `$url_table` WHERE id_cli_cookie_scan=$scan_id ORDER BY id_cli_cookie_scan_url ASC";
1033
+ $urls = $wpdb->get_results( $sql, ARRAY_A );
1034
+ foreach ( $urls as $url_data ) {
1035
+ $scan_urls[ $url_data['url'] ] = $url_data['id_cli_cookie_scan_url'];
1036
+ }
1037
+ $scan_data = ( isset( $cookie_data['scan_result'] ) ? json_decode( $cookie_data['scan_result'], true ) : array() );
1038
+ $scan_result_token = ( isset( $cookie_data['scan_result_token'] ) ? $cookie_data['scan_result_token'] : array() );
1039
+
1040
+ if ( $this->validate_scan_instance( $scan_result_token ) === false ) {
1041
+ return new WP_Error( 'invalid', __( 'Invalid scan token', 'cookie-law-info' ) );
1042
+ }
1043
+ $this->insert_categories( $scan_data );
1044
+ foreach ( $scan_data as $key => $data ) {
1045
+ $cookies = ( isset( $data['cookies'] ) ? $data['cookies'] : '' );
1046
+ $category = ( isset( $data['category'] ) ? $data['category'] : '' );
1047
+ $this->insert_cookies( $scan_id, $scan_urls, $cookies, $category );
1048
+ }
1049
+ }
1050
+ }
1051
+ $this->finish_scan( $scan_id );
1052
+ }
1053
+ /**
1054
+ * Validate the scan instance sent to the CookieYes for scanning purposes
1055
+ *
1056
+ * @param string $instance Created instance ID.
1057
+ * @return bool
1058
+ */
1059
+ public function validate_scan_instance( $instance ) {
1060
+ $last_instance = $this->get_ckyes_scan_instance();
1061
+ if ( $instance === $last_instance ) {
1062
+ return true;
1063
+ }
1064
+ return false;
1065
+ }
1066
+ /**
1067
+ * Finish the scan
1068
+ *
1069
+ * @param int $scan_id Scan ID.
1070
+ * @return void
1071
+ */
1072
+ public function finish_scan( $scan_id ) {
1073
+ $scan_data = array(
1074
+ 'current_action' => 'scan_pages',
1075
+ 'current_offset' => -1,
1076
+ 'status' => 2,
1077
+ );
1078
+ $this->set_ckyes_scan_status( 2 );
1079
+ $this->update_scan_entry( $scan_data, $scan_id );
1080
+ $this->reset_scan_token();
1081
+ }
1082
+ /**
1083
+ * Insert all the cookie categories.
1084
+ *
1085
+ * @param array $categories Array of cookie categories.
1086
+ * @return void
1087
+ */
1088
+ protected function insert_categories( $categories ) {
1089
+ global $wpdb;
1090
+ $cat_table = $wpdb->prefix . $this->category_table;
1091
+ $cat_arr = array();
1092
+ $cat_sql = "INSERT IGNORE INTO `$cat_table` (`cli_cookie_category_name`,`cli_cookie_category_description`) VALUES ";
1093
+
1094
+ foreach ( $categories as $id => $category_data ) {
1095
+ $category = ( isset( $category_data['category'] ) ? sanitize_text_field( $category_data['category'] ) : '' );
1096
+ $description = ( isset( $category_data['category_desc'] ) ? addslashes( sanitize_textarea_field( $category_data['category_desc'] ) ) : '' );
1097
+
1098
+ if ( ! empty( $category ) ) {
1099
+ $cat_arr[] = "('$category','$description')";
1100
+ }
1101
+ }
1102
+ $cat_sql = $cat_sql . implode( ',', $cat_arr );
1103
+ if ( ! empty( $cat_arr ) ) {
1104
+ $wpdb->query( $cat_sql );
1105
+ }
1106
+ }
1107
+ /**
1108
+ * Insert the scanned Cookies to the corresponding table
1109
+ *
1110
+ * @param int $scan_id scan Id.
1111
+ * @param array $urls scanned URLs.
1112
+ * @param array $cookie_data scanned cookies.
1113
+ * @param string $category category.
1114
+ * @return void
1115
+ */
1116
+ protected function insert_cookies( $scan_id, $urls, $cookie_data, $category ) {
1117
+ global $wpdb;
1118
+ $cookie_table = $wpdb->prefix . $this->cookies_table;
1119
+ $category_table = $wpdb->prefix . $this->category_table;
1120
+
1121
+ $sql = "INSERT IGNORE INTO `$cookie_table` (`id_cli_cookie_scan`,`id_cli_cookie_scan_url`,`cookie_id`,`expiry`,`type`,`category`,`category_id`,`description`) VALUES ";
1122
+
1123
+ $sql_arr = array();
1124
+
1125
+ foreach ( $cookie_data as $cookies ) {
1126
+ $cookie_id = isset( $cookies['cookie_id'] ) ? esc_sql( sanitize_text_field( $cookies['cookie_id'] ) ) : '';
1127
+ $description = isset( $cookies['description'] ) ? esc_sql( sanitize_textarea_field( $cookies['description'] ) ) : '';
1128
+ $expiry = isset( $cookies['duration'] ) ? esc_sql( sanitize_text_field( $cookies['duration'] ) ) : '';
1129
+ $type = isset( $cookies['type'] ) ? esc_sql( sanitize_text_field( $cookies['type'] ) ) : '';
1130
+
1131
+ $url_id = ( isset( $cookies['frist_found_url'] ) ? $cookies['frist_found_url'] : '' );
1132
+ $url_id = ( isset( $urls[ $url_id ] ) ? $urls[ $url_id ] : 1 );
1133
+ $category_id = $wpdb->get_var( "SELECT `id_cli_cookie_category` FROM `$category_table` WHERE `cli_cookie_category_name` = '$category'" );
1134
+ $sql_arr[] = "('$scan_id','$url_id','$cookie_id','$expiry','$type','$category','$category_id','$description')";
1135
+ }
1136
+ $sql = $sql . implode( ',', $sql_arr );
1137
+ $wpdb->query( $sql );
1138
+ }
1139
+ /**
1140
+ * List the cookie scan features
1141
+ *
1142
+ * @return string
1143
+ */
1144
+ public function cookies_scan_features() {
1145
+ $html = '';
1146
+ $html .= '<div class="wt-cli-cookie-scan-features">';
1147
+ $html .= '<h3>' . __( 'Why scan your website for cookies?', 'cookie-law-info' ) . '</h3>';
1148
+ $html .= '<p>' . __( 'Your website needs to obtain prior consent from your users before setting any cookies other than those required for the proper functioning of your website. Therefore, you need to identify and keep track of all the cookies used on your website.', 'cookie-law-info' ) . '</p>';
1149
+ $html .= '<p>' . __( 'Our cookie scanning solution lets you:', 'cookie-law-info' ) . '</p>';
1150
+ $html .= '<ul class="wt-cli-cookie-scan-feature-list">';
1151
+ $html .= '<li>' . __( 'Discover the first-party and third-party cookies that are being used on your website ( Limited upto 100 pages ).', 'cookie-law-info' ) . '</li>';
1152
+ $html .= '<li>' . __( 'Identify what personal data they collect and what are the other purposes they serve.', 'cookie-law-info' ) . '</li>';
1153
+ $html .= '<li>' . __( 'Determine whether you need to comply with the data protection laws governing cookies. Eg:- EU’s GDPR, ePrivacy Directive (EU Cookie Law), California’s CCPA, etc.', 'cookie-law-info' ) . '</li>';
1154
+ $html .= '</ul>';
1155
+ // $html .= '<a href="#" class="wt-cli-cookie-scan-preview-modal">' . __( 'Click here to preview sample cookie declaration', 'cookie-law-info' ) . '</a>';
1156
+ $html .= '<div class="wt-cli-modal" id="wt-cli-ckyes-modal-settings-preview">';
1157
+ $html .= '<span class="wt-cli-modal-js-close">×</span>';
1158
+ $html .= '<div class="wt-cli-modal-body">';
1159
+ $html .= '<img src="' . plugin_dir_url( __FILE__ ) . 'assets/images/screenshot-1.png">';
1160
+ $html .= '</div></div>';
1161
+ $html .= '<div class="wt-cli-cookie-scan-preview-image"><img style="width:318.5px;" src="' . plugin_dir_url( __FILE__ ) . 'assets/images/screenshot-1.png"></div>';
1162
+ $html .= '</div>';
1163
+ return '<div class="wt-cli-cookie-scan-features-section">' . Cookie_Law_Info_Admin::wt_cli_admin_notice( 'success', $html ) . '</div>';
1164
+ }
1165
+ /**
1166
+ * Export handler
1167
+ *
1168
+ * @return void
1169
+ */
1170
+ public function export_result() {
1171
+ if ( isset( $_GET['cli_scan_export'] ) && (int) $_GET['cli_scan_export'] > 0 && check_admin_referer( 'cli_cookie_scaner', 'cli_cookie_scaner' ) && current_user_can( 'manage_options' ) ) {
1172
+ include plugin_dir_path( __FILE__ ) . 'classes/class-cookie-law-info-cookie-scanner-export.php';
1173
+
1174
+ $cookie_serve_export = new Cookie_Law_Info_Cookie_Export();
1175
+ $cookie_serve_export->do_export( wp_unslash( $_GET['cli_scan_export'] ), $this ); // phpcs:ignore WordPress.Security.NonceVerification,WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
1176
+
1177
+ exit();
1178
+ }
1179
+ }
1180
+ public function get_scan_result_table() {
1181
+
1182
+ ob_start();
1183
+ $scan_results = $this->get_last_scan_result();
1184
+ $cookie_list_page = admin_url( 'edit.php?post_type=' . CLI_POST_TYPE );
1185
+ $scan_status = intval( ( isset( $scan_results['status'] ) ? $scan_results['status'] : 0 ) );
1186
+ $scan_page_url = admin_url( 'edit.php?post_type=' . CLI_POST_TYPE . '&page=cookie-law-info-cookie-scaner' );
1187
+
1188
+ if ( 2 === $scan_status ) {
1189
+ include plugin_dir_path( __FILE__ ) . 'views/scan-results.php';
1190
+ }
1191
+ $html = ob_get_contents();
1192
+ ob_end_clean();
1193
+ return $html;
1194
+ }
1195
+ public function get_scan_btn( $strict = false ) {
1196
+
1197
+ $last_scan = $this->get_last_scan();
1198
+ $scan_btn_id = 'wt-cli-ckyes-scan';
1199
+ $scan_btn_text = __( 'Scan website for cookies', 'cookie-law-info' );
1200
+ $scan_status = intval( ( isset( $last_scan['status'] ) ? $last_scan['status'] : 0 ) );
1201
+ $show_btn = true;
1202
+
1203
+ $scan_status = intval( ( isset( $last_scan['status'] ) ? $last_scan['status'] : 0 ) );
1204
+ if ( 2 === $scan_status ) {
1205
+ $show_btn = false;
1206
+ }
1207
+ if ( true === $strict ) {
1208
+ $scan_btn_text = __( 'Scan again', 'cookie-law-info' );
1209
+ $show_btn = true; // Override the existing settings.
1210
+ }
1211
+ if ( $this->get_cookieyes_status() === 0 || $this->get_cookieyes_status() === false ) { // Disconnected with Cookieyes after registering account.
1212
+ $scan_btn_id = 'wt-cli-ckyes-connect-scan';
1213
+ $scan_btn_text = __( 'Connect & scan', 'cookie-law-info' );
1214
+ $show_btn = true;
1215
+ if ( true === $strict ) {
1216
+ $show_btn = false;
1217
+ }
1218
+ } else if( $this->get_cookieyes_status() === 2 ) {
1219
+ $show_btn = true;
1220
+ }
1221
+
1222
+ return ( true === $show_btn ? '<a id="' . $scan_btn_id . '" class="button-primary pull-right">' . $scan_btn_text . '</a>' : '' );
1223
+
1224
+ }
1225
+ }
1226
+ new Cookie_Law_Info_Cookie_Scaner();
admin/modules/cookie-scaner/views/scan-results.php ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if ( ! defined( 'ABSPATH' ) ) {
3
+ exit;
4
+ }
5
+ ?>
6
+ <?php if ( $scan_results ) :
7
+ ?>
8
+ <div class="wt-cli-cookie-scan-results-container">
9
+ <div class="wt-cli-scan-result-header">
10
+ <div class="wt-cli-row wt-cli-align-center">
11
+ <div class="wt-cli-col-6">
12
+ <h2>
13
+ <?php
14
+ echo __('Cookie scan result for your website','cookie-law-info');
15
+ // echo sprintf(
16
+ // wp_kses(
17
+ // __( 'Scan result for <a href="%s" target="_blank">' . $this->get_website_url() . '</a>', 'cookie-law-info' ),
18
+ // array(
19
+ // 'a' => array(
20
+ // 'href' => array(),
21
+ // 'target' => array(),
22
+ // ),
23
+ // )
24
+ // ),
25
+ // esc_url( $this->get_website_url() )
26
+ // );
27
+ ?>
28
+ </h2>
29
+ </div>
30
+ <div class="wt-cli-col-6">
31
+ <div class="wt-cli-scan-result-actions">
32
+ <?php echo $this->get_scan_btn( true ); ?>
33
+ </div>
34
+ </div>
35
+ </div>
36
+ </div>
37
+ <div class="wt-cli-scan-results-body">
38
+ <div class="wt-cli-scan-result-summary">
39
+ <ul class="wt-cli-scan-result-summary-list">
40
+ <li>
41
+ <b><?php _e( 'Total URLs', 'cookie-law-info' ); ?></b>: <span class="wt-cli-cookie-scan-count"> <?php echo $scan_results['total_urls']; ?></span><br />
42
+ </li>
43
+ <li>
44
+ <b><?php _e( 'Total cookies', 'cookie-law-info' ); ?></b>: <span class="wt-cli-cookie-scan-count"> <?php echo $scan_results['total_cookies']; ?></span><br />
45
+ </li>
46
+ </ul>
47
+ </div>
48
+ <?php if ( $scan_results['total_cookies'] > 0 ) : ?>
49
+ <div class="wt-cli-scan-result-import-section">
50
+ <p><?php
51
+
52
+ echo sprintf(
53
+ wp_kses(
54
+ __( 'Clicking “Add to cookie list” will import the discovered cookies to the <a href="%s" target="_blank">Cookie List</a> and thus display them in the cookie declaration section of your consent banner.', 'cookie-law-info' ),
55
+ array(
56
+ 'a' => array(
57
+ 'href' => array(),
58
+ 'target' => array(),
59
+ ),
60
+ )
61
+ ),
62
+ esc_url( $cookie_list_page )
63
+ );
64
+ ?>
65
+ </p>
66
+
67
+ <a class="button-primary cli_import" data-scan-id="<?php echo $scan_results['scan_id']; ?>" style="margin-left:5px;"><?php _e( 'Add to cookie list', 'cookie-law-info' ); ?></a>
68
+
69
+ </div>
70
+ <?php endif; ?>
71
+ <div class="wt-cli-scan-result-cookie-container">
72
+ <div class="wt-cli-row">
73
+ <div class="wt-cli-col-12">
74
+ <div class="wt-cli-scan-result-cookies">
75
+ <?php echo $this->create_cookies_table( $scan_results['cookies'] ); ?>
76
+ </div>
77
+ </div>
78
+ </div>
79
+ </div>
80
+ </div>
81
+ </div>
82
+ <?php else : ?>
83
+ <?php endif; ?>
admin/modules/cookie-scaner/views/settings.php ADDED
@@ -0,0 +1,203 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Scanner default view
4
+ *
5
+ * @package Cookie_Law_Info_Cookie_Scaner
6
+ */
7
+
8
+ if ( ! defined( 'ABSPATH' ) ) {
9
+ exit;
10
+ }
11
+ ?>
12
+ <style>
13
+ .wt-cli-admin-notice-wrapper {
14
+ display: flex;
15
+ justify-content: space-between;
16
+ padding: 5px 10px;
17
+ align-items: center;
18
+ flex-wrap:wrap;
19
+ }
20
+ .wt-cli-admin-notice-wrapper ul {
21
+ list-style: disc;
22
+ padding-left: 15px;
23
+ }
24
+ .wt-cli-notice-actions {
25
+ padding: 10px 0;
26
+ }
27
+ .wt-cli-cookie-scan-bar {
28
+ display: flex;
29
+ flex-wrap: wrap;
30
+ margin: 15px 0;
31
+ }
32
+ .wt-cli-ckyes-form-email-verify h4 {
33
+ font-size: 15px;
34
+ margin: 0 0 10px 0;
35
+ }
36
+ .wt-cli-ckyes-form-email-verify > div {
37
+ margin-top: 15px;
38
+ }
39
+ .wt-cli-ckyes-account-widget-container > span {
40
+ margin-right: 5px;
41
+ }
42
+ .wt-cli-ckyes-account-widget-container {
43
+ display: flex;
44
+ align-items:center;
45
+ }
46
+ span.wt-cli-ckyes-status-icon {
47
+ width: 15px;
48
+ height: 15px;
49
+ }
50
+ .wt-cli-cookie-scan-container .wt-cli-callout:before {
51
+ top: 30px;
52
+ left: 20px;
53
+ }
54
+ .wt-scan-status-info {
55
+ margin: 20px 0;
56
+ width:100%;
57
+ }
58
+ .wt-scan-status-info-item {
59
+ margin-bottom: 5px;
60
+ }
61
+ .wt-cli-cookie-scanner-actions {
62
+ width: 100%;
63
+ display: flex;
64
+ justify-content: flex-end;
65
+ margin-bottom:15px;
66
+ }
67
+ .wt-cli-cookie-scan-container {
68
+ width: 100%;
69
+ }
70
+ ul.wt-cli-cookie-scan-feature-list li {
71
+ list-style: none;
72
+ }
73
+ ul.wt-cli-cookie-scan-feature-list li:before {
74
+ content: '✓';
75
+ margin-right: 10px;
76
+ color: #64b450;
77
+ font-weight:600;
78
+ }
79
+ .wt-cli-cookie-scan-features p {
80
+ font-weight: 600;
81
+ }
82
+ .wt-cli-scan-status-container {
83
+ width:100%;
84
+ }
85
+ .wt-cli-scan-status-container .spinner {
86
+ float: left;
87
+ background-size: 15px 15px;
88
+ width: 15px;
89
+ height: 15px;
90
+ margin-top: 2px;
91
+ margin-left: 0;
92
+ }
93
+ #wt-cli-ckyes-email-resend-link {
94
+ cursor: pointer;
95
+ }
96
+ #wt-cli-ckyes-modal-settings-preview {
97
+ width: 687px;
98
+ padding-top: 30px;
99
+ }
100
+ #wt-cli-ckyes-modal-settings-preview .wt-cli-modal-body {
101
+ text-align: center;
102
+ border: 1px solid #f1f1f1;
103
+ }
104
+ .wt-cli-cookie-scan-results-container {
105
+ background: #fff;
106
+ border-radius: 3px;
107
+ width:100%;
108
+ }
109
+ .wt-cli-scan-results-body {
110
+ padding: 15px;
111
+ }
112
+ .wt-cli-scan-result-header {
113
+ padding: 5px 15px;
114
+ border-bottom: 1px solid #efeeee;
115
+ }
116
+ ul.wt-cli-scan-result-summary-list {
117
+ display: flex;
118
+ }
119
+ .wt-cli-scan-result-summary-list li {
120
+ background-color: #eff7ed;
121
+ color: #000;
122
+ margin: 0px 15px 0px 0px;
123
+ padding: 5px 14px;
124
+ border-width: 2px;
125
+ border-style: solid;
126
+ border-color: transparent;
127
+ border-radius: 4px;
128
+ }
129
+ .wt-cli-scan-result-actions {
130
+ display: flex;
131
+ align-items: center;
132
+ justify-content: flex-end;
133
+ }
134
+ table.wt-cli-table td,table.wt-cli-table th {
135
+ font-size: 13px;
136
+ line-height: 1.5em;
137
+ }
138
+ table.wt-cli-table th {
139
+ font-size: 1.05em;
140
+ text-align: left;
141
+ padding: 15px 15px;
142
+
143
+ }
144
+ table.wt-cli-table td {
145
+ border-top: 1px solid #E6E6E6;
146
+ padding: 15px 15px;
147
+ }
148
+ table.wt-cli-table {
149
+ border: 1px solid #E6E6E6;
150
+ border-spacing: 0;
151
+ width: 100%;
152
+ clear: both;
153
+ margin: 0;
154
+
155
+ }
156
+ .wt-cli-cookie-scan-bar .wt-cli-callout.wt-cli-callout-success {
157
+ background: #fff;
158
+ border-radius: 3px;
159
+ }
160
+ .wt-cli-scan-result-summary {
161
+ justify-content: space-between;
162
+ display: flex;
163
+ }
164
+ .wt-cli-scan-result-import-section p {
165
+ font-weight: 500;
166
+ }
167
+ .wt-cli-scan-result-import-section {
168
+ display: flex;
169
+ align-items: center;
170
+ justify-content: space-between;
171
+ padding: 10px 0 15px 0;
172
+ }
173
+ .wt-cli-scan-result-actions .button-primary {
174
+ color: #0071a1;
175
+ border-color: #0071a1;
176
+ background: #f3f5f6;
177
+ }
178
+ .wt-cli-cookie-scan-notice {
179
+ width:100%;
180
+ }
181
+ .wt-cli-cookie-scan-features-section .wt-cli-callout.wt-cli-callout-success {
182
+ background: #eff7ed;
183
+ }
184
+ .wt-cli-inline-notice {
185
+ padding: 15px 0;
186
+ }
187
+ .wt-cli-inline-notice.wt-cli-inline-notice-error {
188
+ color: #ff0000;
189
+ }
190
+ .wt-cli-inline-notice.wt-cli-inline-notice-success {
191
+ color: #3e9429;
192
+ }
193
+ </style>
194
+ <div class="wrap">
195
+ <h2><?php _e( 'Cookie scanner', 'cookie-law-info' ); // phpcs:ignore WordPress.Security.EscapeOutput ?></h2>
196
+ <?php do_action( 'wt_cli_before_cookie_scanner_header' ); ?>
197
+ <div class="wt-cli-cookie-scan-bar">
198
+ <div class="wt-cli-cookie-scan-notice">
199
+ <?php do_action( 'wt_cli_cookie_scanner_body' ); ?>
200
+ </div>
201
+ <?php //do_action( 'wt_cli_cookie_scanner_results' ); ?>
202
+ </div>
203
+ </div>
admin/modules/cookies/cookies.php ADDED
@@ -0,0 +1,1078 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Cookies module to handle all the cookies related operations
5
+ *
6
+ * @version 1.9.6
7
+ * @package CookieLawInfo
8
+ */
9
+
10
+ if ( ! defined( 'ABSPATH' ) ) {
11
+ exit;
12
+ }
13
+
14
+ class Cookie_Law_Info_Cookies {
15
+
16
+
17
+
18
+ protected $cookies;
19
+ protected $non_necessary_options;
20
+ protected $necessary_options;
21
+ private static $instance;
22
+
23
+ public function __construct() {
24
+ add_action( 'init', array( $this, 'init' ) );
25
+ add_action( 'admin_init', array( $this, 'add_meta_box' ) );
26
+ add_action( 'admin_menu', array( $this, 'register_settings_page' ), 20 );
27
+ add_action( 'create_cookielawinfo-category', array( $this, 'add_category_meta' ) );
28
+ add_action( 'edited_cookielawinfo-category', array( $this, 'edit_category_meta' ) );
29
+ add_action( 'cookielawinfo-category_add_form_fields', array( $this, 'add_category_form_fields' ) );
30
+ add_action( 'cookielawinfo-category_edit_form_fields', array( $this, 'edit_category_form_fields' ), 1 );
31
+ add_action( 'save_post', array( $this, 'save_custom_metaboxes' ) );
32
+ add_action( 'manage_edit-cookielawinfo_columns', array( $this, 'manage_edit_columns' ) );
33
+ add_action( 'manage_posts_custom_column', array( $this, 'manage_posts_custom_columns' ) );
34
+ add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
35
+ add_action( 'admin_init', array( $this, 'migrate' ) );
36
+
37
+ add_action( 'wt_cli_before_cookie_scanner_header', array( $this, 'add_cookie_migration_notice' ) );
38
+ add_action( 'wt_cli_initialize_plugin', array( $this, 'load_default_plugin_settings' ) );
39
+ add_action( 'wt_cli_after_cookie_category_migration', array( $this, 'load_default_terms') );
40
+
41
+ }
42
+
43
+ public static function get_instance() {
44
+ if ( null === self::$instance ) {
45
+ self::$instance = new self();
46
+ }
47
+
48
+ return self::$instance;
49
+ }
50
+
51
+ public function init() {
52
+ $this->register_custom_post_type();
53
+ $this->create_taxonomy();
54
+ add_filter( 'wt_cli_cookie_categories', array( $this, 'get_cookies' ) );
55
+
56
+ }
57
+
58
+ // The function update_term_meta() is only introduced in 4.4 so we have cloned this function locally
59
+ public function update_term_meta( $term_id, $meta_key, $meta_value, $prev_value = '' ) {
60
+ if ( $this->wp_term_is_shared( $term_id ) ) {
61
+ return new WP_Error( 'ambiguous_term_id', __( 'Term meta cannot be added to terms that are shared between taxonomies.', 'cookie-law-info' ), $term_id );
62
+ }
63
+
64
+ return update_metadata( 'term', $term_id, $meta_key, $meta_value, $prev_value );
65
+ }
66
+
67
+ public function wp_term_is_shared( $term_id ) {
68
+ global $wpdb;
69
+
70
+ if ( get_option( 'finished_splitting_shared_terms' ) ) {
71
+ return false;
72
+ }
73
+
74
+ $tt_count = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM $wpdb->term_taxonomy WHERE term_id = %d", $term_id ) );
75
+
76
+ return $tt_count > 1;
77
+ }
78
+
79
+ public function get_term_meta( $term_id, $key = '', $single = false ) {
80
+ return get_metadata( 'term', $term_id, $key, $single );
81
+ }
82
+
83
+ public function get_cookie_category_terms( $display_all = false ) {
84
+ global $wp_version;
85
+ $taxonomy = 'cookielawinfo-category';
86
+ $terms = array();
87
+ if ( version_compare( $wp_version, '4.9', '>=' ) ) {
88
+ $args = array(
89
+ 'taxonomy' => $taxonomy,
90
+ 'hide_empty' => false,
91
+ 'meta_key' => 'CLIpriority',
92
+ 'orderby' => 'meta_value_num', // use 'meta_value_num' if the value type of this meta is numeric.
93
+ 'order' => 'DESC',
94
+ );
95
+ $terms = get_terms( $args );
96
+ } else {
97
+ $terms = get_terms( $taxonomy, array( 'hide_empty' => false ) );
98
+ }
99
+ return $terms;
100
+ }
101
+ public function enqueue_scripts( $hook ) {
102
+ global $wp_version;
103
+ if ( isset( $_GET['taxonomy'] ) && $_GET['taxonomy'] == 'cookielawinfo-category' && isset( $_GET['tag_ID'] ) ) {
104
+ if ( version_compare( $wp_version, '4.9', '>=' ) ) {
105
+ $code_editor_js = wp_enqueue_code_editor( array( 'type' => 'text/html' ) );
106
+
107
+ if ( $code_editor_js !== false ) {
108
+ wp_add_inline_script(
109
+ 'code-editor',
110
+ sprintf(
111
+ 'jQuery( function() {
112
+ if (jQuery(".wt-cli-code-editor").length) { jQuery(".wt-cli-code-editor").each(function () { wp.codeEditor.initialize(this.id, %s); }); }
113
+ jQuery("#edittag > table.form-table > tbody").prepend(jQuery("tr.form-field.term-status-field"));
114
+ jQuery("#addtag").prepend(jQuery(".term-status-field"));
115
+ } );',
116
+ wp_json_encode( $code_editor_js )
117
+ )
118
+ );
119
+ }
120
+ }
121
+ }
122
+ }
123
+ public function register_custom_post_type() {
124
+ $labels = array(
125
+ 'name' => __( 'GDPR Cookie Consent', 'cookie-law-info' ),
126
+ 'all_items' => __( 'Cookie List', 'cookie-law-info' ),
127
+ 'singular_name' => __( 'Cookie', 'cookie-law-info' ),
128
+ 'add_new' => __( 'Add New', 'cookie-law-info' ),
129
+ 'add_new_item' => __( 'Add New Cookie Type', 'cookie-law-info' ),
130
+ 'edit_item' => __( 'Edit Cookie Type', 'cookie-law-info' ),
131
+ 'new_item' => __( 'New Cookie Type', 'cookie-law-info' ),
132
+ 'view_item' => __( 'View Cookie Type', 'cookie-law-info' ),
133
+ 'search_items' => __( 'Search Cookies', 'cookie-law-info' ),
134
+ 'not_found' => __( 'Nothing found', 'cookie-law-info' ),
135
+ 'not_found_in_trash' => __( 'Nothing found in Trash', 'cookie-law-info' ),
136
+ 'parent_item_colon' => '',
137
+ );
138
+ $args = array(
139
+ 'labels' => $labels,
140
+ 'public' => false,
141
+ 'publicly_queryable' => false,
142
+ 'exclude_from_search' => true,
143
+ 'show_ui' => true,
144
+ 'query_var' => true,
145
+ 'rewrite' => true,
146
+ 'capabilities' => array(
147
+ 'publish_posts' => 'manage_options',
148
+ 'edit_posts' => 'manage_options',
149
+ 'edit_others_posts' => 'manage_options',
150
+ 'delete_posts' => 'manage_options',
151
+ 'delete_others_posts' => 'manage_options',
152
+ 'read_private_posts' => 'manage_options',
153
+ 'edit_post' => 'manage_options',
154
+ 'delete_post' => 'manage_options',
155
+ 'read_post' => 'manage_options',
156
+ ),
157
+ /** done editing */
158
+ 'menu_icon' => plugin_dir_url( __FILE__ ) . 'images/cli_icon.png',
159
+ 'hierarchical' => false,
160
+ 'menu_position' => null,
161
+ 'supports' => array( 'title', 'editor' ),
162
+ );
163
+
164
+ register_post_type( CLI_POST_TYPE, $args );
165
+ }
166
+
167
+ public function add_category_meta( $term_id ) {
168
+ $this->cookie_save_defaultstate( $term_id );
169
+ // $this->save_status_meta( $term_id );
170
+ $this->save_scripts_meta( $term_id );
171
+ $this->save_priority_meta( $term_id );
172
+ }
173
+ public function edit_category_meta( $term_id ) {
174
+ $this->cookie_save_defaultstate( $term_id );
175
+ $this->save_scripts_meta( $term_id );
176
+ // $this->save_status_meta( $term_id );
177
+ }
178
+ public function add_category_form_fields( $term ) {
179
+ $this->cookie_add_defaultstate( $term );
180
+ $this->add_scripts_meta( $term );
181
+ // $this->add_status_meta( $term );
182
+
183
+ }
184
+ public function edit_category_form_fields( $term ) {
185
+ $this->cookie_edit_defaultstate( $term );
186
+ $this->edit_scripts_meta( $term );
187
+ // $this->edit_status_meta( $term );
188
+
189
+ }
190
+ public function add_meta_box() {
191
+
192
+ add_meta_box( '_cli_cookie_slugid', __( 'Cookie ID', 'cookie-law-info' ), array( $this, 'metabox_cookie_slugid' ), 'cookielawinfo', 'side', 'default' );
193
+ add_meta_box( '_cli_cookie_type', __( 'Cookie Type', 'cookie-law-info' ), array( $this, 'metabox_cookie_type' ), 'cookielawinfo', 'side', 'default' );
194
+ add_meta_box( '_cli_cookie_duration', __( 'Cookie Duration', 'cookie-law-info' ), array( $this, 'metabox_cookie_duration' ), 'cookielawinfo', 'side', 'default' );
195
+ add_meta_box( '_cli_cookie_sensitivity', __( 'Cookie Sensitivity', 'cookie-law-info' ), array( $this, 'metabox_cookie_sensitivity' ), 'cookielawinfo', 'side', 'default' );
196
+ }
197
+ /** Display the custom meta box for cookie_slugid */
198
+ public function metabox_cookie_slugid() {
199
+ global $post;
200
+ $custom = get_post_custom( $post->ID );
201
+ $cookie_slugid = ( isset( $custom['_cli_cookie_slugid'][0] ) ) ? $custom['_cli_cookie_slugid'][0] : '';
202
+ ?>
203
+ <label><?php echo __( 'Cookie ID', 'cookie-law-info' ); ?></label>
204
+ <input name="_cli_cookie_slugid" value="<?php echo sanitize_text_field( $cookie_slugid ); ?>" style="width:95%;" />
205
+ <?php
206
+ }
207
+
208
+ /** Display the custom meta box for cookie_type */
209
+ public function metabox_cookie_type() {
210
+ global $post;
211
+ $custom = get_post_custom( $post->ID );
212
+ $cookie_type = ( isset( $custom['_cli_cookie_type'][0] ) ) ? $custom['_cli_cookie_type'][0] : '';
213
+ ?>
214
+ <label><?php echo __( 'Cookie Type: (persistent, session, third party )', 'cookie-law-info' ); ?></label>
215
+ <input name="_cli_cookie_type" value="<?php echo sanitize_text_field( $cookie_type ); ?>" style="width:95%;" />
216
+ <?php
217
+ }
218
+
219
+ /** Display the custom meta box for cookie_duration */
220
+ public function metabox_cookie_duration() {
221
+ global $post;
222
+ $custom = get_post_custom( $post->ID );
223
+ $cookie_duration = ( isset( $custom['_cli_cookie_duration'][0] ) ) ? $custom['_cli_cookie_duration'][0] : '';
224
+ ?>
225
+
226
+ <label><?php echo __( 'Cookie Duration:', 'cookie-law-info' ); ?></label>
227
+ <input name="_cli_cookie_duration" value="<?php echo sanitize_text_field( $cookie_duration ); ?>" style="width:95%;" />
228
+ <?php
229
+ }
230
+
231
+ /** Display the custom meta box for cookie_sensitivity */
232
+ public function metabox_cookie_sensitivity() {
233
+ global $post;
234
+ $custom = get_post_custom( $post->ID );
235
+ $cookie_sensitivity = ( isset( $custom['_cli_cookie_sensitivity'][0] ) ) ? $custom['_cli_cookie_sensitivity'][0] : '';
236
+ ?>
237
+ <label><?php echo __( 'Cookie Sensitivity: ( necessary , non-necessary )', 'cookie-law-info' ); ?></label>
238
+ <input name="_cli_cookie_sensitivity" value="<?php echo sanitize_text_field( $cookie_sensitivity ); ?>" style="width:95%;" />
239
+ <?php
240
+ }
241
+
242
+ /** Saves all form data from custom post meta boxes, including saitisation of input */
243
+ public function save_custom_metaboxes() {
244
+ global $post;
245
+ if ( isset( $_POST['_cli_cookie_type'] ) ) {
246
+ update_post_meta( $post->ID, '_cli_cookie_type', sanitize_text_field( $_POST['_cli_cookie_type'] ) );
247
+ }
248
+ if ( isset( $_POST['_cli_cookie_type'] ) ) {
249
+ update_post_meta( $post->ID, '_cli_cookie_duration', sanitize_text_field( $_POST['_cli_cookie_duration'] ) );
250
+ }
251
+ if ( isset( $_POST['_cli_cookie_sensitivity'] ) ) {
252
+ update_post_meta( $post->ID, '_cli_cookie_sensitivity', sanitize_text_field( $_POST['_cli_cookie_sensitivity'] ) );
253
+ }
254
+ if ( isset( $_POST['_cli_cookie_slugid'] ) ) {
255
+ update_post_meta( $post->ID, '_cli_cookie_slugid', sanitize_text_field( $_POST['_cli_cookie_slugid'] ) );
256
+ }
257
+ }
258
+ public function manage_edit_columns( $columns ) {
259
+ $columns = array(
260
+ 'cb' => '<input type="checkbox" />',
261
+ 'title' => __( 'Cookie Name', 'cookie-law-info' ),
262
+ 'type' => __( 'Type', 'cookie-law-info' ),
263
+ 'category' => __( 'Category', 'cookie-law-info' ),
264
+ 'duration' => __( 'Duration', 'cookie-law-info' ),
265
+ 'sensitivity' => __( 'Sensitivity', 'cookie-law-info' ),
266
+ 'slugid' => __( 'ID', 'cookie-law-info' ),
267
+ 'description' => __( 'Description', 'cookie-law-info' ),
268
+ );
269
+ return $columns;
270
+ }
271
+
272
+ /** Add column data to custom post type table columns */
273
+ public function manage_posts_custom_columns( $column, $post_id = 0 ) {
274
+ global $post;
275
+
276
+ switch ( $column ) {
277
+ case 'description':
278
+ $content_post = get_post( $post_id );
279
+ if ( $content_post ) {
280
+ echo $content_post->post_content;
281
+ } else {
282
+ echo '---';
283
+ }
284
+ break;
285
+ case 'type':
286
+ $custom = get_post_custom();
287
+ if ( isset( $custom['_cli_cookie_type'][0] ) ) {
288
+ echo $custom['_cli_cookie_type'][0];
289
+ }
290
+ break;
291
+ case 'category':
292
+ $term_list = wp_get_post_terms( $post->ID, 'cookielawinfo-category', array( 'fields' => 'names' ) );
293
+ if ( ! empty( $term_list ) ) {
294
+ echo $term_list[0];
295
+ } else {
296
+ echo '<i>---</i>';
297
+ }
298
+
299
+ break;
300
+ case 'duration':
301
+ $custom = get_post_custom();
302
+ if ( isset( $custom['_cli_cookie_duration'][0] ) ) {
303
+ echo $custom['_cli_cookie_duration'][0];
304
+ }
305
+ break;
306
+ case 'sensitivity':
307
+ $custom = get_post_custom();
308
+ if ( isset( $custom['_cli_cookie_sensitivity'][0] ) ) {
309
+ echo $custom['_cli_cookie_sensitivity'][0];
310
+ }
311
+ break;
312
+ case 'slugid':
313
+ $custom = get_post_custom();
314
+ if ( isset( $custom['_cli_cookie_slugid'][0] ) ) {
315
+ echo $custom['_cli_cookie_slugid'][0];
316
+ }
317
+ break;
318
+ }
319
+ }
320
+
321
+ public function create_taxonomy() {
322
+ register_taxonomy(
323
+ 'cookielawinfo-category',
324
+ 'cookielawinfo',
325
+ array(
326
+ 'labels' => array(
327
+ 'name' => __( 'Cookie Category', 'cookie-law-info' ),
328
+ 'add_new_item' => __( 'Add cookie category', 'cookie-law-info' ),
329
+ 'edit_item' => __( 'Edit cookie category', 'cookie-law-info' ),
330
+ ),
331
+ 'rewrite' => array( 'slug' => 'cookielawinfo-category' ),
332
+ 'hierarchical' => false,
333
+ 'show_in_menu' => ( $this->check_if_old_category_table() === true ? false : true ),
334
+ )
335
+ );
336
+
337
+ }
338
+ public static function get_strictly_necessory_categories() {
339
+
340
+ $strictly_necessary_categories = array( 'necessary', 'obligatoire' );
341
+ return apply_filters( 'gdpr_strictly_enabled_category', $strictly_necessary_categories );
342
+ }
343
+ public function migrate_cookie_terms() {
344
+
345
+ $cookie_categories = $this->get_cookie_category_options_old();
346
+ $non_necessary_defaults = $this->get_non_necessary_defaults();
347
+
348
+ foreach ( $cookie_categories as $slug => $data ) {
349
+
350
+ if ( 'non-necessary' === $slug ) {
351
+ if ( false === $this->check_if_category_has_changed( $data, $non_necessary_defaults ) ) {
352
+ continue;
353
+ }
354
+ }
355
+ $existing = get_term_by( 'slug', $slug, 'cookielawinfo-category' );
356
+
357
+ if ( $existing === false ) {
358
+
359
+ $term = wp_insert_term(
360
+ $data['title'],
361
+ 'cookielawinfo-category',
362
+ array(
363
+ 'description' => $data['description'],
364
+ 'slug' => $slug,
365
+ )
366
+ );
367
+
368
+ if ( is_wp_error( $term ) ) {
369
+ continue;
370
+ }
371
+ $term_id = ( isset( $term['term_id'] ) ? $term['term_id'] : false );
372
+ if ( $term_id !== false ) {
373
+ if ( $data['head_scripts'] !== '' ) {
374
+ $this->update_term_meta( $term_id, '_cli_cookie_head_scripts', $data['head_scripts'] );
375
+ }
376
+ if ( $data['body_scripts'] !== '' ) {
377
+ $this->update_term_meta( $term_id, '_cli_cookie_body_scripts', $data['body_scripts'] );
378
+ }
379
+ $default_state = ( isset( $data['default_state'] ) && $data['default_state'] === true ? 'enabled' : 'disabled' );
380
+ $priority = isset( $data['priority'] ) ? $data['priority'] : 0 ;
381
+ $this->update_term_meta( $term_id, 'CLIdefaultstate', $default_state );
382
+ $this->update_term_meta( $term_id, 'CLIpriority', $priority );
383
+ Cookie_Law_Info_Languages::get_instance()->maybe_set_term_language( $term_id ); // In polylang plugin the default language will not be get assigned.
384
+ }
385
+ }
386
+ }
387
+ }
388
+
389
+ public function register_settings_page() {
390
+ if ( $this->check_if_old_category_table() === true || true === apply_filters('wt_cli_force_show_old_cookie_categories', false ) ) {
391
+ add_submenu_page(
392
+ 'edit.php?post_type=' . CLI_POST_TYPE,
393
+ __( 'Non-necessary', 'cookie-law-info' ),
394
+ __( 'Non-necessary', 'cookie-law-info' ),
395
+ 'manage_options',
396
+ 'cookie-law-info-thirdparty',
397
+ array( $this, 'admin_non_necessary_cookie_page' )
398
+ );
399
+ add_submenu_page(
400
+ 'edit.php?post_type=' . CLI_POST_TYPE,
401
+ __( 'Necessary', 'cookie-law-info' ),
402
+ __( 'Necessary', 'cookie-law-info' ),
403
+ 'manage_options',
404
+ 'cookie-law-info-necessary',
405
+ array( $this, 'admin_necessary_cookie_page' )
406
+ );
407
+ }
408
+ }
409
+ public function get_non_necessary_defaults() {
410
+
411
+ $defaults = array(
412
+ 'status' => true,
413
+ 'default_state' => true,
414
+ 'title' => 'Non-necessary',
415
+ 'description' => 'Any cookies that may not be particularly necessary for the website to function and is used specifically to collect user personal data via analytics, ads, other embedded contents are termed as non-necessary cookies. It is mandatory to procure user consent prior to running these cookies on your website.',
416
+ 'head_scripts' => '',
417
+ 'body_scripts' => '',
418
+ 'cookies' => '',
419
+ );
420
+ return $defaults;
421
+
422
+ }
423
+ public function get_necessary_defaults() {
424
+
425
+ $settings = array(
426
+ 'status' => true,
427
+ 'default_state' => true,
428
+ 'title' => 'Necessary',
429
+ 'description' => 'Necessary cookies are absolutely essential for the website to function properly. This category only includes cookies that ensures basic functionalities and security features of the website. These cookies do not store any personal information.',
430
+ );
431
+ return $settings;
432
+ }
433
+ public function get_non_necessary_cookie_settings() {
434
+ if ( ! $this->non_necessary_options ) {
435
+ $settings = array();
436
+ $defaults = $this->get_non_necessary_defaults();
437
+ $options = get_option( 'cookielawinfo_thirdparty_settings' );
438
+
439
+ $settings['status'] = isset( $options['thirdparty_on_field'] ) ? $options['thirdparty_on_field'] : $defaults['status'];
440
+ $settings['default_state'] = isset( $options['third_party_default_state'] ) ? $options['third_party_default_state'] : $defaults['default_state'];
441
+ $settings['title'] = isset( $options['thirdparty_title'] ) ? $options['thirdparty_title'] : $defaults['title'];
442
+ $settings['description'] = isset( $options['thirdparty_description'] ) ? $options['thirdparty_description'] : $defaults['description'];
443
+ $settings['head_scripts'] = isset( $options['thirdparty_head_section'] ) ? wp_unslash( $options['thirdparty_head_section'] ) : $defaults['head_scripts'];
444
+ $settings['body_scripts'] = isset( $options['thirdparty_body_section'] ) ? wp_unslash( $options['thirdparty_body_section'] ) : $defaults['body_scripts'];
445
+ $settings['strict'] = false;
446
+ $settings['cookies'] = $this->get_cookies_by_meta( '_cli_cookie_sensitivity', 'non-necessary' );
447
+ $settings['priority'] = 6;
448
+ $this->non_necessary_options = $settings;
449
+ }
450
+ return $this->non_necessary_options;
451
+ }
452
+
453
+ public function get_necessary_cookie_settings() {
454
+
455
+ if ( ! $this->necessary_options ) {
456
+ $settings = array();
457
+ $defaults = $this->get_necessary_defaults();
458
+ $options = get_option( 'cookielawinfo_necessary_settings' );
459
+
460
+ $settings['status'] = $defaults['status'];
461
+ $settings['default_state'] = $defaults['default_state'];
462
+ $settings['title'] = isset( $options['necessary_title'] ) ? $options['necessary_title'] : $defaults['title'];
463
+ $settings['description'] = isset( $options['necessary_description'] ) ? $options['necessary_description'] : $defaults['description'];
464
+ $settings['head_scripts'] = '';
465
+ $settings['body_scripts'] = '';
466
+ $settings['strict'] = true;
467
+ $settings['cookies'] = $this->get_cookies_by_meta( '_cli_cookie_sensitivity', 'necessary' );
468
+ $this->necessary_options = $settings;
469
+ }
470
+ return $this->necessary_options;
471
+
472
+ }
473
+
474
+ public function get_cookie_category_options_old() {
475
+
476
+ $cookie_category_options = array(
477
+ 'necessary' => $this->get_necessary_cookie_settings(),
478
+ 'non-necessary' => $this->get_non_necessary_cookie_settings(),
479
+ );
480
+ return $cookie_category_options;
481
+ }
482
+ public function get_cookie_category_options() {
483
+
484
+ $cookie_data = array();
485
+ $necessary_categories = array();
486
+ $non_necessary_categories = array();
487
+
488
+ $terms = $this->get_cookie_category_terms();
489
+ if ( is_array( $terms ) ) {
490
+ foreach ( $terms as $term ) {
491
+ if ( is_object( $term ) ) {
492
+
493
+ $strict = false;
494
+ $term_id = $term->term_id;
495
+ $term_slug = $term->slug;
496
+ $term_name = $term->name;
497
+ $term_description = $term->description;
498
+
499
+ $cli_cookie_head_scripts = $this->get_term_meta( $term_id, '_cli_cookie_head_scripts', true );
500
+ $cli_cookie_body_scripts = $this->get_term_meta( $term_id, '_cli_cookie_body_scripts', true );
501
+
502
+ $head_scripts = isset( $cli_cookie_head_scripts ) ? wp_unslash( $cli_cookie_head_scripts ) : '';
503
+ $body_scripts = isset( $cli_cookie_body_scripts ) ? wp_unslash( $cli_cookie_body_scripts ) : '';
504
+
505
+ if ( Cookie_Law_Info_Languages::get_instance()->is_multilanguage_plugin_active() === true ) {
506
+
507
+ $default_language = Cookie_Law_Info_Languages::get_instance()->get_default_language_code();
508
+ $current_language = Cookie_Law_Info_Languages::get_instance()->get_current_language_code();
509
+
510
+ if ( $current_language !== $default_language ) {
511
+ $default_term = Cookie_Law_Info_Languages::get_instance()->get_term_by_language( $term_id, $default_language );
512
+
513
+ if ( $default_term && $default_term->term_id ) {
514
+ $term_slug = $default_term->slug;
515
+ $term_id = $default_term->term_id;
516
+ }
517
+ }
518
+ }
519
+ $cookies = $this->get_cookies_by_term( 'cookielawinfo-category', $term_slug );
520
+ $cli_default_state = $this->get_term_meta( $term_id, 'CLIdefaultstate', true );
521
+
522
+ $default_state = isset( $cli_default_state ) && $cli_default_state === 'enabled' ? true : false;
523
+
524
+ $category_data = array(
525
+ 'id' => $term_id,
526
+ 'status' => true,
527
+ 'default_state' => $default_state,
528
+ 'strict' => $strict,
529
+ 'title' => $term_name,
530
+ 'description' => $term_description,
531
+ 'head_scripts' => $head_scripts,
532
+ 'body_scripts' => $body_scripts,
533
+ 'cookies' => $cookies,
534
+ );
535
+
536
+ if ( $this->check_strictly_necessary_category( $term_id ) === true ) {
537
+ $strict = true;
538
+ $necessary_categories[ $term_slug ] = $category_data;
539
+ } else {
540
+ $non_necessary_categories[ $term_slug ] = $category_data;
541
+ }
542
+ $cookie_data = $necessary_categories + $non_necessary_categories;
543
+ }
544
+ }
545
+ }
546
+ return $cookie_data;
547
+
548
+ }
549
+ public function get_cookies() {
550
+
551
+ if ( ! $this->cookies ) {
552
+ if ( $this->check_if_old_category_table() === true ) {
553
+ $this->cookies = $this->get_cookie_category_options_old();
554
+ } else {
555
+ $this->cookies = $this->get_cookie_category_options();
556
+ }
557
+ }
558
+ return $this->cookies;
559
+ }
560
+ public function get_cookies_by_term( $taxonomy, $slug ) {
561
+ $cookies = array();
562
+ $args = array(
563
+ 'posts_per_page' => -1,
564
+ 'post_type' => 'cookielawinfo',
565
+ 'tax_query' => array(
566
+ array(
567
+ 'taxonomy' => $taxonomy,
568
+ 'field' => 'slug',
569
+ 'terms' => $slug,
570
+ ),
571
+ ),
572
+ );
573
+ $posts = get_posts( $args );
574
+ if ( $posts ) {
575
+ $cookies = $posts;
576
+ }
577
+ return $cookies;
578
+ }
579
+ /*
580
+ * Category default state add form
581
+ */
582
+ public function cookie_add_defaultstate( $term ) {
583
+ ?>
584
+ <div class="form-field term-defaultstate-field">
585
+ <label for="CLIdefaultstate"><?php _e( 'Category default state', 'cookie-law-info' ); ?></label>
586
+ <input type="radio" name="CLIdefaultstate" value="enabled" /><?php _e( 'Enabled', 'cookie-law-info' ); ?>
587
+ <input type="radio" name="CLIdefaultstate" value="disabled" checked /><?php _e( 'Disabled', 'cookie-law-info' ); ?>
588
+ <p class="description"><?php _e( 'If you enable this option, the category toggle button will be in the active state for cookie consent.', 'cookie-law-info' ); ?></p>
589
+ </div>
590
+ <?php
591
+ }
592
+ public function check_strictly_necessary_category( $term_id ) {
593
+ $strict_enabled = self::get_strictly_necessory_categories();
594
+ $terms = get_term_by( 'id', $term_id, 'cookielawinfo-category' );
595
+
596
+ if ( in_array( $terms->slug, $strict_enabled ) ) {
597
+ return true;
598
+ }
599
+ return false;
600
+ }
601
+ /*
602
+ * Category Active State edit form
603
+ */
604
+ public function cookie_edit_defaultstate( $term ) {
605
+ // put the term ID into a variable
606
+ $t_id = $term->term_id;
607
+ $term_CLIdefaultstate = $this->get_term_meta( $t_id, 'CLIdefaultstate', true );
608
+
609
+ if ( $this->check_strictly_necessary_category( $t_id ) === false ) {
610
+ ?>
611
+ <tr class="form-field term-defaultstate-field">
612
+ <th><label for="CLIdefaultstate"><?php _e( 'Category default state', 'cookie-law-info' ); ?></label></th>
613
+ <td>
614
+ <input type="radio" name="CLIdefaultstate" value="enabled" <?php checked( $term_CLIdefaultstate, 'enabled' ); ?>/><label><?php _e( 'Enabled', 'cookie-law-info' ); ?></label>
615
+ <input type="radio" name="CLIdefaultstate" value="disabled" <?php checked( $term_CLIdefaultstate, 'disabled' ); ?>/><label><?php _e( 'Disabled', 'cookie-law-info' ); ?></label>
616
+ <p class="description"><?php _e( 'If you enable this option, the category toggle button will be in the active state for cookie consent.', 'cookie-law-info' ); ?></p>
617
+ </td>
618
+ </tr>
619
+ <?php
620
+ }
621
+ }
622
+
623
+ /*
624
+ * Category Active State save form
625
+ */
626
+ public function cookie_save_defaultstate( $term_id ) {
627
+ if ( isset( $_POST['CLIdefaultstate'] ) ) {
628
+ $term_CLIdefaultstate = sanitize_text_field( $_POST['CLIdefaultstate'] );
629
+
630
+ if ( $term_CLIdefaultstate ) {
631
+ $this->update_term_meta( $term_id, 'CLIdefaultstate', $term_CLIdefaultstate );
632
+ }
633
+ } else {
634
+ $this->update_term_meta( $term_id, 'CLIdefaultstate', 'disabled' );
635
+ }
636
+
637
+ }
638
+
639
+ public function add_scripts_meta( $term ) {
640
+ ?>
641
+ <div class="form-field term-head-scripts-field">
642
+ <p>
643
+ <label><b><?php _e( 'Head scripts', 'cookie-law-info' ); ?></b></label>
644
+ <label>Script: eg:- &lt;script&gt; enableGoogleAnalytics(); &lt;/script&gt; </label><br />
645
+ <textarea id="_cli_cookie_head_scripts" rows=5 name="_cli_cookie_head_scripts" class="wt-cli-code-editor"></textarea>
646
+ </p>
647
+ </div>
648
+ <div class="form-field term-body-scripts-field">
649
+ <p>
650
+ <label><b><?php _e( 'Body scripts', 'cookie-law-info' ); ?></b></label>
651
+ <label>Script: eg:- &lt;script&gt; enableGoogleAnalytics(); &lt;/script&gt; </label><br />
652
+ <textarea id="_cli_cookie_body_scripts" rows="5" name="_cli_cookie_body_scripts" class="wt-cli-code-editor" ></textarea>
653
+ </p>
654
+ </div>
655
+ <?php
656
+ }
657
+
658
+ public function edit_scripts_meta( $term ) {
659
+ // put the term ID into a variable
660
+ $term_id = $term->term_id;
661
+ $head_scripts = $this->get_term_meta( $term_id, '_cli_cookie_head_scripts', true );
662
+ $body_scripts = $this->get_term_meta( $term_id, '_cli_cookie_body_scripts', true );
663
+ ?>
664
+ <tr class="form-field term-body-scripts-field">
665
+ <th>
666
+ <label for="_cli_cookie_head_scripts"><?php _e( 'Head scripts', 'cookie-law-info' ); ?></label>
667
+ </th>
668
+ <td>
669
+ <textarea id="_cli_cookie_head_scripts" rows="5" name="_cli_cookie_head_scripts" class="wt-cli-code-editor"><?php echo wp_unslash( $head_scripts ); ?></textarea>
670
+ </td>
671
+ </tr>
672
+ <tr class="form-field term-head-scripts-field">
673
+ <th>
674
+ <label for="_cli_cookie_body_scripts"><?php _e( 'Body scripts', 'cookie-law-info' ); ?></label>
675
+ </th>
676
+ <td>
677
+ <textarea id="_cli_cookie_body_scripts" rows="5" name="_cli_cookie_body_scripts" class="wt-cli-code-editor"><?php echo wp_unslash( $body_scripts ); ?></textarea>
678
+ </td>
679
+ </tr>
680
+ <?php
681
+ }
682
+
683
+ public function save_scripts_meta( $term_id ) {
684
+ $head_scripts = ( isset( $_POST['_cli_cookie_head_scripts'] ) ? wp_unslash( $_POST['_cli_cookie_head_scripts'] ) : '' );
685
+ $body_scripts = ( isset( $_POST['_cli_cookie_body_scripts'] ) ? wp_unslash( $_POST['_cli_cookie_body_scripts'] ) : '' );
686
+
687
+ $this->update_term_meta( $term_id, '_cli_cookie_head_scripts', $head_scripts );
688
+ $this->update_term_meta( $term_id, '_cli_cookie_body_scripts', $body_scripts );
689
+
690
+ }
691
+
692
+ public function add_status_meta() {
693
+ ?>
694
+ <div class="form-field term-status-field" style="display:none;">
695
+ <label for="wt-cli-cookie-status"><?php _e( 'Status', 'cookie-law-info' ); ?></label>
696
+ <input type="checkbox" name="_cli_cookie_status" id="wt-cli-cookie-status" value="1" checked="checked">
697
+ </div>
698
+ <?php
699
+ }
700
+
701
+ public function edit_status_meta( $term ) {
702
+ // put the term ID into a variable
703
+ $t_id = $term->term_id;
704
+ $term_cli_cookie_status = $this->get_term_meta( $t_id, '_cli_cookie_status', true );
705
+
706
+ // if( $this->check_strictly_necessary_category( $t_id ) === false ){
707
+ ?>
708
+ <tr class="form-field term-status-field">
709
+ <th><label for="wt-cli-cookie-status"><?php _e( 'Active', 'cookie-law-info' ); ?></label></th>
710
+ <td>
711
+ <input type="checkbox" name="_cli_cookie_status" id="wt-cli-cookie-status" value="1" <?php echo $term_cli_cookie_status == 1 ? 'checked="checked"' : ''; ?>>
712
+ <p class="description"><?php _e( 'Turing off the category will remove it from the settings popup. Any scripts added under the category will not be rendered on the browser.', 'cookie-law-info' ); ?></p>
713
+ </td>
714
+ </tr>
715
+ <?php
716
+ // }
717
+ }
718
+ public function save_status_meta( $term_id ) {
719
+ if ( isset( $_POST['_cli_cookie_status'] ) ) {
720
+ $term_cli_cookie_status = sanitize_text_field( $_POST['_cli_cookie_status'] );
721
+ if ( $term_cli_cookie_status ) {
722
+ $this->update_term_meta( $term_id, '_cli_cookie_status', $term_cli_cookie_status );
723
+ }
724
+ } else {
725
+ $this->update_term_meta( $term_id, '_cli_cookie_status', 0 );
726
+ }
727
+ }
728
+ public function migrate() {
729
+ global $wp_version;
730
+ if ( isset( $_GET['cat-migrate'] ) && $_GET['cat-migrate'] === 'yes' ) {
731
+
732
+ if ( check_admin_referer( 'migrate', 'cookie_law_info_nonce' ) && current_user_can( 'manage_options' ) ) {
733
+ if ( version_compare( $wp_version, '4.4', '<' ) ) {
734
+ echo '<div class="fade error"><p><strong>';
735
+ echo __( 'WordPress 4.4 or higher is the required version. Please consider upgrading the WordPress before migrating the cookie categories.', 'cookie-law-info' );
736
+ echo '</strong></p></div>';
737
+ if ( ! empty( $_SERVER['HTTP_X_REQUESTED_WITH'] ) && strtolower( $_SERVER['HTTP_X_REQUESTED_WITH'] ) == 'xmlhttprequest' ) {
738
+ exit();
739
+ }
740
+ } else {
741
+ $this->migrate_cookie_terms();
742
+ update_option( 'wt_cli_cookie_db_version', '2.0' );
743
+ do_action( 'wt_cli_after_cookie_category_migration' );
744
+ $redirect_url = admin_url( 'edit-tags.php?taxonomy=cookielawinfo-category&post_type=cookielawinfo' );
745
+ wp_safe_redirect( $redirect_url );
746
+ }
747
+ }
748
+ }
749
+ }
750
+
751
+ public function admin_non_necessary_cookie_page() {
752
+ if ( ! current_user_can( 'manage_options' ) ) {
753
+ wp_die( __( 'You do not have sufficient permission to perform this operation', 'cookie-law-info' ) );
754
+ }
755
+ if ( isset( $_POST['update_thirdparty_settings_form'] ) || isset( $_POST['cli_non-necessary_ajax_update'] ) ) {
756
+ check_admin_referer( 'cookielawinfo-update-thirdparty' );
757
+ $this->update_non_necessary_cookie_settings( $_POST );
758
+ $this->finish_request();
759
+ }
760
+
761
+ $settings = $this->get_non_necessary_cookie_settings();
762
+ require_once plugin_dir_path( __FILE__ ) . 'views/non-necessary-settings.php';
763
+ }
764
+ public function admin_necessary_cookie_page() {
765
+ if ( ! current_user_can( 'manage_options' ) ) {
766
+ wp_die( __( 'You do not have sufficient permission to perform this operation', 'cookie-law-info' ) );
767
+ }
768
+ if ( isset( $_POST['update_necessary_settings_form'] ) || isset( $_POST['cli_necessary_ajax_update'] ) ) {
769
+
770
+ check_admin_referer( 'cookielawinfo-update-necessary' );
771
+ $this->update_necessary_cookie_settings( $_POST );
772
+ $this->finish_request();
773
+
774
+ }
775
+ $settings = $this->get_necessary_cookie_settings();
776
+ require_once plugin_dir_path( __FILE__ ) . 'views/necessary-settings.php';
777
+ }
778
+ public function update_non_necessary_cookie_settings( $data ) {
779
+
780
+ $options = array();
781
+ $options['thirdparty_title'] = sanitize_text_field( isset( $data['wt_cli_non_necessary_title'] ) ? $data['wt_cli_non_necessary_title'] : '' );
782
+ $options['thirdparty_on_field'] = (bool) ( isset( $data['thirdparty_on_field'] ) ? Cookie_Law_Info::sanitise_settings( 'thirdparty_on_field', $data['thirdparty_on_field'] ) : false );
783
+ $options['third_party_default_state'] = (bool) ( isset( $data['third_party_default_state'] ) ? Cookie_Law_Info::sanitise_settings( 'third_party_default_state', $data['third_party_default_state'] ) : true );
784
+ $options['thirdparty_description'] = wp_kses_post( isset( $data['thirdparty_description'] ) && $data['thirdparty_description'] !== '' ? $data['thirdparty_description'] : '' );
785
+ $options['thirdparty_head_section'] = wp_unslash( isset( $data['thirdparty_head_section'] ) && $data['thirdparty_head_section'] !== '' ? $data['thirdparty_head_section'] : '' );
786
+ $options['thirdparty_body_section'] = wp_unslash( isset( $data['thirdparty_body_section'] ) && $data['thirdparty_body_section'] !== '' ? $data['thirdparty_body_section'] : '' );
787
+
788
+ update_option( 'cookielawinfo_thirdparty_settings', $options );
789
+ }
790
+ public function update_necessary_cookie_settings( $data ) {
791
+
792
+ $options = array();
793
+ $options['necessary_title'] = sanitize_text_field( isset( $data['wt_cli_necessary_title'] ) ? $data['wt_cli_necessary_title'] : '' );
794
+ $options['necessary_description'] = wp_kses_post( isset( $data['necessary_description'] ) && $data['necessary_description'] !== '' ? $data['necessary_description'] : '' );
795
+
796
+ update_option( 'cookielawinfo_necessary_settings', $options );
797
+ }
798
+
799
+ public function finish_request() {
800
+
801
+ echo '<div class="updated"><p><strong>';
802
+ echo __( 'Settings Updated.', 'cookie-law-info' );
803
+ echo '</strong></p></div>';
804
+ if ( ! empty( $_SERVER['HTTP_X_REQUESTED_WITH'] ) && strtolower( $_SERVER['HTTP_X_REQUESTED_WITH'] ) == 'xmlhttprequest' ) {
805
+ exit();
806
+ }
807
+ }
808
+
809
+ public function get_cookie_db_version() {
810
+ $current_db_version = get_option( 'wt_cli_cookie_db_version', '1.0' );
811
+ return $current_db_version;
812
+ }
813
+ public function check_if_old_category_table() {
814
+ return ! is_null( $this->get_cookie_db_version() ) && version_compare( $this->get_cookie_db_version(), '2.0', '<' ) === true;
815
+ }
816
+ public function add_cookie_migration_notice() {
817
+ if ( $this->check_if_old_category_table() === true ) :
818
+ $url = add_query_arg( 'cat-migrate', 'yes', admin_url( 'edit.php?post_type=' . CLI_POST_TYPE . '&page=cookie-law-info-cookie-scaner' ) );
819
+
820
+ ?>
821
+
822
+ <div class="notice notice-warning">
823
+ <div class="wt-cli-admin-notice-wrapper">
824
+ <div class="wt-cli-notice-content">
825
+ <p style="font-weight:500;font-size:1.05em;"><?php _e( 'Clicking “Migrate cookie categories” will auto migrate your existing cookie categories (Necessary and Non-necessary) to our new Cookie Category taxonomy. This action is required to enable the cookie scanner.', 'cookie-law-info' ); ?></p>
826
+ <h3 style="font-size:1.05em;"><?php echo __(' What happens after migration?','cookie-law-info'); ?></h3>
827
+ <ul>
828
+ <li><?php echo __('You no longer need to manage static cookie categories. After the migration, new cookie categories (Necessary, Functional, Analytics, Performance, Advertisement, and Others) will be created automatically. Also, you can easily add custom cookie categories and edit/delete the existing categories including the custom categories.','cookiel-law-info');?></li>
829
+ <li><?php echo __('If you have made any changes to the existing "Non-necessary" category we will migrate it to the newly created “Cookie Category” section. If not, we will delete the "Non-necessary" category automatically.','cookiel-law-info');?></li>
830
+ <li><?php echo __('During the migration phase your existing cookie category translations will be lost. Hence we request you to add it manually soon after the migration. You can access the existing translations by navigating to the string translation settings of your translator plugin.','cookiel-law-info');?></li>
831
+ </ul>
832
+ </div>
833
+ <div class="wt-cli-notice-actions">
834
+ <a href="<?php echo wp_nonce_url( $url, 'migrate', 'cookie_law_info_nonce' ); ?>" class="button button-primary"><?php echo __( 'Migrate cookie categories', 'cookie-law-info' ); ?></a>
835
+ </div>
836
+ </div>
837
+ </div>
838
+ <?php
839
+ endif;
840
+ }
841
+ public function get_cookies_by_meta( $meta, $value ) {
842
+ $cookies = array();
843
+ $args = array(
844
+ 'post_type' => CLI_POST_TYPE,
845
+ 'meta_query' => array(
846
+ array(
847
+ 'key' => $meta,
848
+ 'value' => $value,
849
+ ),
850
+ ),
851
+
852
+ );
853
+ $posts = get_posts( $args );
854
+ if ( $posts ) {
855
+ $cookies = $posts;
856
+ }
857
+ return $cookies;
858
+ }
859
+ /**
860
+ * Load default cookie categories and cookies.
861
+ *
862
+ * @return void
863
+ */
864
+ public function load_default_plugin_settings() {
865
+ $this->load_default_terms();
866
+ $this->load_default_cookies();
867
+ }
868
+ public function get_default_cookie_categories() {
869
+
870
+ $cookie_categories = array(
871
+
872
+ 'necessary' => array(
873
+ 'title' => 'Necessary',
874
+ 'description' => 'Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.',
875
+ ),
876
+ 'functional' => array(
877
+ 'title' => 'Functional',
878
+ 'description' => 'Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.',
879
+ 'priority' => 5,
880
+ ),
881
+ 'performance' => array(
882
+ 'title' => 'Performance',
883
+ 'description' => 'Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.',
884
+ 'priority' => 4,
885
+ ),
886
+ 'analytics' => array(
887
+ 'title' => 'Analytics',
888
+ 'description' => 'Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.',
889
+ 'priority' => 3,
890
+ ),
891
+ 'advertisement' => array(
892
+ 'title' => 'Advertisement',
893
+ 'description' => 'Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.',
894
+ 'priority' => 2,
895
+ ),
896
+ 'others' => array(
897
+ 'title' => 'Others',
898
+ 'description' => 'Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.',
899
+ 'priority' => 1,
900
+ ),
901
+ );
902
+ return $cookie_categories;
903
+
904
+ }
905
+ public function get_default_cookies() {
906
+
907
+ $default_cookies = array(
908
+ 'viewed_cookie_policy' => array(
909
+ 'title' => 'viewed_cookie_policy',
910
+ 'description' => 'The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.',
911
+ 'category' => 'necessary',
912
+ 'type' => 0,
913
+ 'expiry' => '11 months',
914
+ 'sensitivity' => 'necessary',
915
+ ),
916
+ 'cookielawinfo-checkbox-necessary' => array(
917
+ 'title' => 'cookielawinfo-checkbox-necessary',
918
+ 'description' => 'This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".',
919
+ 'category' => 'necessary',
920
+ 'type' => 0,
921
+ 'expiry' => '11 months',
922
+ 'sensitivity' => 'necessary',
923
+ ),
924
+ 'cookielawinfo-checkbox-functional' => array(
925
+ 'title' => 'cookielawinfo-checbox-functional',
926
+ 'description' => 'The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".',
927
+ 'category' => 'necessary',
928
+ 'type' => 0,
929
+ 'expiry' => '11 months',
930
+ 'sensitivity' => 'necessary',
931
+ ),
932
+ 'cookielawinfo-checkbox-performance' => array(
933
+ 'title' => 'cookielawinfo-checkbox-performance',
934
+ 'description' => 'This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".',
935
+ 'category' => 'necessary',
936
+ 'type' => 0,
937
+ 'expiry' => '11 months',
938
+ 'sensitivity' => 'necessary',
939
+ ),
940
+ 'cookielawinfo-checkbox-analytics' => array(
941
+ 'title' => 'cookielawinfo-checbox-analytics',
942
+ 'description' => 'This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".',
943
+ 'category' => 'necessary',
944
+ 'type' => 0,
945
+ 'expiry' => '11 months',
946
+ 'sensitivity' => 'necessary',
947
+ ),
948
+ 'cookielawinfo-checkbox-others' => array(
949
+ 'title' => 'cookielawinfo-checbox-others',
950
+ 'description' => 'This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.',
951
+ 'category' => 'necessary',
952
+ 'type' => 0,
953
+ 'expiry' => '11 months',
954
+ 'sensitivity' => 'necessary',
955
+ ),
956
+
957
+ );
958
+ return $default_cookies;
959
+ }
960
+ public function load_default_cookies() {
961
+
962
+ $default_cookies = $this->get_default_cookies();
963
+
964
+ foreach ( $default_cookies as $slug => $cookie_data ) {
965
+
966
+ if ( false === $this->wt_cli_post_exists_by_slug( $slug ) ) {
967
+
968
+ $category = get_term_by( 'slug', $cookie_data['category'], 'cookielawinfo-category' );
969
+ if ( $category && is_object( $category ) ) {
970
+
971
+ $category_id = $category->term_id;
972
+ $cookie_data = array(
973
+ 'post_type' => CLI_POST_TYPE,
974
+ 'post_title' => $cookie_data['title'],
975
+ 'post_name' => $slug,
976
+ 'post_content' => $cookie_data['description'],
977
+ 'post_category' => array( $category_id ),
978
+ 'post_status' => 'publish',
979
+ 'ping_status' => 'closed',
980
+ 'post_author' => 1,
981
+ 'meta_input' => array(
982
+ '_cli_cookie_type' => $cookie_data['type'],
983
+ '_cli_cookie_duration' => $cookie_data['expiry'],
984
+ '_cli_cookie_sensitivity' => $cookie_data['category'],
985
+ '_cli_cookie_slugid' => $slug,
986
+ ),
987
+ );
988
+ $post_id = wp_insert_post( $cookie_data );
989
+ wp_set_object_terms( $post_id, $cookie_data['post_category'], 'cookielawinfo-category' );
990
+ }
991
+ }
992
+ }
993
+ }
994
+ private function wt_cli_post_exists_by_slug( $post_slug ) {
995
+ $args_posts = array(
996
+ 'post_type' => CLI_POST_TYPE,
997
+ 'post_status' => 'any',
998
+ 'name' => $post_slug,
999
+ 'posts_per_page' => 1,
1000
+ );
1001
+ $loop_posts = new WP_Query( $args_posts );
1002
+ if ( ! $loop_posts->have_posts() ) {
1003
+ return false;
1004
+ } else {
1005
+ $loop_posts->the_post();
1006
+ return $loop_posts->post->ID;
1007
+ }
1008
+ }
1009
+ public function load_default_terms() {
1010
+
1011
+ // wt_cli_temp_fix.
1012
+ $cookie_categories = $this->get_default_cookie_categories();
1013
+
1014
+ foreach ( $cookie_categories as $slug => $data ) {
1015
+
1016
+ $existing = get_term_by( 'slug', $slug, 'cookielawinfo-category' );
1017
+
1018
+ if ( $existing === false ) {
1019
+
1020
+ $description = $data['description'];
1021
+ $cookie_audit_shortcode = sprintf( '[cookie_audit category="%s" style="winter" columns="cookie,duration,description"]', $slug );
1022
+ $description .= "\n";
1023
+ $description .= $cookie_audit_shortcode;
1024
+
1025
+ $term = wp_insert_term(
1026
+ $data['title'],
1027
+ 'cookielawinfo-category',
1028
+ array(
1029
+ 'description' => $description,
1030
+ 'slug' => $slug,
1031
+ )
1032
+ );
1033
+
1034
+ if ( is_wp_error( $term ) ) {
1035
+ continue;
1036
+ }
1037
+ $term_id = ( isset( $term['term_id'] ) ? $term['term_id'] : false );
1038
+ $priority = isset( $data['priority'] ) ? $data['priority'] : 0 ;
1039
+ $this->update_term_meta( $term_id, 'CLIpriority', $priority );
1040
+ if ( $term_id !== false ) {
1041
+ Cookie_Law_Info_Languages::get_instance()->maybe_set_term_language( $term_id ); // In polylang plugin the default language will not be get assigned.
1042
+ }
1043
+ }
1044
+ }
1045
+ do_action( 'wt_cli_after_create_cookie_categories' );
1046
+ }
1047
+ public function check_if_category_has_changed( $cat_data, $cat_default_data ) {
1048
+
1049
+ $changed = false;
1050
+ $compare_values = array(
1051
+ 'status',
1052
+ 'title',
1053
+ 'default_state',
1054
+ 'description',
1055
+ 'head_scripts',
1056
+ 'body_scripts',
1057
+ );
1058
+ foreach ( $cat_default_data as $key => $data ) {
1059
+ if ( in_array( $key, $compare_values ) ) {
1060
+ $current_value = isset( $cat_data[ $key ] ) ? $cat_data[ $key ] : '';
1061
+ if ( $current_value !== $cat_default_data[ $key ] ) {
1062
+ $changed = true;
1063
+ }
1064
+ }
1065
+ }
1066
+ return $changed;
1067
+ }
1068
+ /**
1069
+ * Internal ordering for cookie categories.
1070
+ *
1071
+ * @param int $term_id term ID.
1072
+ * @return void
1073
+ */
1074
+ public function save_priority_meta( $term_id ) {
1075
+ update_term_meta( $term_id, 'CLIpriority', 0 );
1076
+ }
1077
+ }
1078
+ Cookie_Law_Info_Cookies::get_instance();
admin/modules/cookies/images/cli_icon.png ADDED
Binary file
admin/modules/cookies/views/necessary-settings.php ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ // If this file is called directly, abort.
3
+ if ( ! defined( 'WPINC' ) ) {
4
+ die;
5
+ }
6
+ ?>
7
+ <style>
8
+ .vvv_textbox{
9
+ height: 150px;
10
+ width:100%;
11
+ }
12
+ #wpbody-content .notice {
13
+ margin: 5px 20px 15px 0;
14
+ }
15
+ .notice, div.updated, div.error{
16
+ margin: 5px 20px 15px 0;
17
+ }
18
+ </style>
19
+ <script type="text/javascript">
20
+ var cli_success_message='<?php echo __('Settings updated.', 'cookie-law-info');?>';
21
+ var cli_error_message='<?php echo __('Unable to update Settings.', 'cookie-law-info');?>';
22
+ </script>
23
+ <div class="wrap">
24
+ <div class="cookie-law-info-form-container">
25
+ <div class="cli-plugin-toolbar top">
26
+ <h3><?php echo __('Necessary Cookie Settings','cookie-law-info'); ?></h3>
27
+ </div>
28
+ <form method="post" action="<?php echo esc_url($_SERVER["REQUEST_URI"]); ?>" id="cli_ncessary_form" class="cookie-sensitivity-form">
29
+ <?php wp_nonce_field('cookielawinfo-update-necessary'); ?>
30
+ <table class="form-table cli_necessary_form cli-admin-table">
31
+ <tr>
32
+ <td>
33
+ <label for="wt_cli_necessary_title"><?php _e('Title', 'cookie-law-info'); ?></label>
34
+ <input type="text" id="wt_cli_necessary_title" name="wt_cli_necessary_title" value="<?php echo stripslashes( $settings['title'] ); ?>" class="cli-textbox" />
35
+ </td>
36
+ </tr>
37
+ <tr>
38
+ <td>
39
+ <label for="necessary_description"><?php echo __('Description','cookie-law-info');?></label>
40
+ <textarea name="necessary_description" class="vvv_textbox"><?php
41
+ echo apply_filters('format_to_edit', stripslashes($settings['description']));
42
+ ?></textarea>
43
+ </td>
44
+ </tr>
45
+
46
+ </table>
47
+ <div class="cli-plugin-toolbar bottom">
48
+ <div class="left">
49
+ </div>
50
+ <div class="right">
51
+ <input type="hidden" name="cli_necessary_ajax_update" value="1">
52
+ <input type="submit" name="update_admin_settings_form" value="<?php _e('Update Settings', 'cookie-law-info'); ?>" class="button-primary" style="float:right;" onClick="return cli_store_settings_btn_click(this.name)" />
53
+ <span class="spinner" style="margin-top:9px"></span>
54
+ </div>
55
+ </div>
56
+ </form>
57
+ </div>
58
+ </div>
admin/modules/cookies/views/non-necessary-settings.php ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ // If this file is called directly, abort.
3
+ if (!defined('WPINC')) {
4
+ die;
5
+ }
6
+ ?>
7
+ <style>
8
+ .vvv_textbox {
9
+ height: 150px;
10
+ width: 100%;
11
+ }
12
+ .notice, div.updated, div.error{
13
+ margin: 5px 20px 15px 0;
14
+ }
15
+ </style>
16
+ <script type="text/javascript">
17
+ var cli_success_message = '<?php echo __('Settings updated.', 'cookie-law-info'); ?>';
18
+ var cli_error_message = '<?php echo __('Unable to update Settings.', 'cookie-law-info'); ?>';
19
+ </script>
20
+ <div class="wrap">
21
+ <div class="cookie-law-info-form-container">
22
+ <div class="cli-plugin-toolbar top">
23
+ <h3><?php echo __('Non-necessary Cookie Settings', 'cookie-law-info'); ?></h3>
24
+ </div>
25
+ <form method="post" action="<?php echo esc_url($_SERVER["REQUEST_URI"]); ?>" id="cli_non-ncessary_form" class="cookie-sensitivity-form">
26
+ <?php wp_nonce_field('cookielawinfo-update-thirdparty'); ?>
27
+ <table class="form-table cli_non_necessary_form cli-admin-table">
28
+
29
+ <tr>
30
+ <td>
31
+ <label for="thirdparty_on_field"><?php echo __('Enable Non-necessary Cookie', 'cookie-law-info'); ?></label>
32
+ <input type="radio" id="thirdparty_on_field_yes" name="thirdparty_on_field" class="styled" value="true" <?php echo (filter_var($settings['status'], FILTER_VALIDATE_BOOLEAN) == true) ? ' checked="checked" ' : ' '; ?> /><?php echo __('Yes', 'cookie-law-info'); ?>
33
+ <input type="radio" id="thirdparty_on_field_no" name="thirdparty_on_field" class="styled" value="false" <?php echo (filter_var($settings['status'], FILTER_VALIDATE_BOOLEAN) == false) ? ' checked="checked" ' : ''; ?> /><?php echo __('No', 'cookie-law-info'); ?>
34
+ </td>
35
+ </tr>
36
+ <tr>
37
+ <td>
38
+ <label for="third_party_default_state"><?php echo __('Default state', 'cookie-law-info'); ?></label>
39
+ <input type="radio" id="third_party_default_state_yes" name="third_party_default_state" class="styled" value="true" <?php echo (filter_var($settings['default_state'], FILTER_VALIDATE_BOOLEAN) == true) ? ' checked="checked" ' : ' '; ?> /><?php echo __('Enabled', 'cookie-law-info'); ?>
40
+ <input type="radio" id="third_party_default_state_no" name="third_party_default_state" class="styled" value="false" <?php echo (filter_var($settings['default_state'], FILTER_VALIDATE_BOOLEAN) == false) ? ' checked="checked" ' : ''; ?> /><?php echo __('Disabled', 'cookie-law-info'); ?>
41
+ <span class="cli_form_help">
42
+ <?php echo __('If you enable this option, the category toggle button will be in the active state for cookie consent.', 'cookie-law-info'); ?> <br />
43
+ </span>
44
+ </td>
45
+ </tr>
46
+ <tr>
47
+ <td>
48
+ <label for="wt_cli_non_necessary_title"><?php _e('Title', 'cookie-law-info'); ?></label>
49
+ <input type="text" id="wt_cli_non_necessary_title" name="wt_cli_non_necessary_title" value="<?php echo sanitize_text_field(stripslashes( $settings['title'])); ?>" class="cli-textbox" />
50
+ </td>
51
+ </tr>
52
+ <tr>
53
+ <td>
54
+ <label for="thirdparty_description"><?php echo __('Description', 'cookie-law-info'); ?></label>
55
+ <textarea name="thirdparty_description" class="vvv_textbox"><?php
56
+ echo apply_filters('format_to_edit', stripslashes($settings['description']));
57
+ ?></textarea>
58
+ </td>
59
+ </tr>
60
+ <tr>
61
+ <td>
62
+ <label for="thirdparty_head_section"><?php echo __('This script will be added to the page HEAD section if the above settings is enabled and user has give consent.', 'cookie-law-info'); ?></label>
63
+ <textarea name="thirdparty_head_section" class="vvv_textbox"><?php
64
+ echo apply_filters('format_to_edit', stripslashes( $settings['head_scripts']));
65
+ ?></textarea>
66
+ <span class="cli_form_help">
67
+ <?php echo __('Print scripts in the head tag on the front end if above cookie settings is enabled and user has given consent.', 'cookie-law-info'); ?> <br />
68
+ eg:- &lt;script&gt;console.log("header script");&lt;/script&gt
69
+ </span>
70
+ </td>
71
+ </tr>
72
+ <tr>
73
+ <td>
74
+ <label for="thirdparty_body_section"><?php echo __('This script will be added right after the BODY section if the above settings is enabled and user has given consent.', 'cookie-law-info'); ?></label>
75
+ <textarea name="thirdparty_body_section" class="vvv_textbox"><?php echo apply_filters('format_to_edit', stripslashes($settings['body_scripts'])); ?></textarea>
76
+ <span class="cli_form_help">
77
+ <?php echo __('Print scripts before the closing body tag on the front end if above cookie settings is enabled and user has given consent.', 'cookie-law-info'); ?> <br />eg:- &lt;script&gt;console.log("body script");&lt;/script&gt;
78
+ </span>
79
+ </td>
80
+ </tr>
81
+ </table>
82
+ <div class="cli-plugin-toolbar bottom">
83
+ <div class="left">
84
+ </div>
85
+ <div class="right">
86
+ <input type="hidden" name="cli_non-necessary_ajax_update" value="1">
87
+ <input type="submit" name="update_admin_settings_form" value="<?php _e('Update Settings', 'cookie-law-info'); ?>" class="button-primary" style="float:right;" onClick="return cli_store_settings_btn_click(this.name)" />
88
+ <span class="spinner" style="margin-top:9px"></span>
89
+ </div>
90
+ </div>
91
+ </form>
92
+ </div>
93
+ </div>
admin/partials/cookie-law-info-admin_settings.php CHANGED
@@ -30,26 +30,50 @@ $all_pages=get_pages($args_for_get_pages);
30
  <div class="wrap">
31
  <h2 class="wp-heading-inline"><?php _e('Settings', 'cookie-law-info'); ?></h2>
32
 
33
- <table class="cli_notify_table cli_bar_state">
34
- <tr valign="middle" class="cli_bar_on" style="<?php echo $the_options['is_on'] == true ? '' : 'display:none;';?>">
35
- <th scope="row" style="padding-left:15px;">
36
- <label><img id="cli-plugin-status-icon" src="<?php echo $cli_img_path;?>tick.png" /></label>
37
- </th>
38
- <td style="padding-left: 10px;">
39
- <?php _e('Cookie bar is currently active', 'cookie-law-info'); ?>
40
- </td>
41
- </tr>
42
- <tr valign="middle" class="cli_bar_off" style="<?php echo $the_options['is_on'] == true ? 'display:none;' : '';?>">
43
- <th scope="row" style="padding-left:15px;">
44
- <label><img id="cli-plugin-status-icon" src="<?php echo $cli_img_path;?>cross.png" /></label>
45
- </th>
46
- <td style="padding-left: 10px;">
47
- <?php _e('Cookie bar is currently inactive', 'cookie-law-info'); ?>
48
- </td>
49
- </tr>
50
- </table>
51
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52
 
 
53
  <div class="cli_settings_left">
54
  <div class="nav-tab-wrapper wp-clearfix cookie-law-info-tab-head">
55
  <?php
30
  <div class="wrap">
31
  <h2 class="wp-heading-inline"><?php _e('Settings', 'cookie-law-info'); ?></h2>
32
 
33
+ <div class="wt-cli-gdpr-plugin-header">
34
+ <div class="wt-cli-gdpr-plugin-status-bar">
35
+ <table class="cli_notify_table cli_bar_state">
36
+ <tr valign="middle" class="cli_bar_on" style="<?php echo $the_options['is_on'] == true ? '' : 'display:none;';?>">
37
+ <td style="padding-left: 10px;">
38
+ <div class="wt-cli-gdpr-plugin-status wt-cli-gdpr-plugin-status-active">
39
+ <img id="cli-plugin-status-icon" src="<?php echo $cli_img_path;?>add.svg" />
40
+ <span><?php _e('Cookie bar is currently active', 'cookie-law-info'); ?></span>
41
+ </div>
42
+ </td>
43
+ </tr>
44
+ <tr valign="middle" class="cli_bar_off" style="<?php echo $the_options['is_on'] == true ? 'display:none;' : '';?>">
45
+ <td style="padding-left: 10px;">
46
+ <div class="wt-cli-gdpr-plugin-status wt-cli-gdpr-plugin-status-active">
47
+ <img id="cli-plugin-status-icon" src="<?php echo $cli_img_path;?>cross.png" />
48
+ <span><?php _e('Cookie bar is currently inactive', 'cookie-law-info'); ?></span>
49
+ </div>
50
+ </td>
51
+ </tr>
52
+ </table>
53
+ </div>
54
+ <div class="wt-cli-gdpr-plugin-branding">
55
+ <div class="wt-cli-gdpr-plugin-branding-logo">
56
+ <a href="https://www.cookieyes.com" target="_blank"><img src="<?php echo $cli_img_path;?>logo-cookieyes.svg" alt="CookieYes Logo"></a>
57
+ </div>
58
+ <div class="wt-cli-gdpr-plugin-branding-tagline">
59
+
60
+ <span><b><?php echo __( 'Cookie Compliance Made Easy', 'cookie-law-info' ); ?> | <?php echo sprintf(
61
+ wp_kses(
62
+ __( 'Plugin Developed By <a href="%s" target="_blank">WebToffee</a>', 'cookie-law-info' ),
63
+ array(
64
+ 'a' => array(
65
+ 'href' => array(),
66
+ 'target' => array(),
67
+ ),
68
+ )
69
+ ),
70
+ 'https://www.webtoffee.com/'
71
+ ); ?></b></span>
72
+ </div>
73
+ </div>
74
+ </div>
75
 
76
+
77
  <div class="cli_settings_left">
78
  <div class="nav-tab-wrapper wp-clearfix cookie-law-info-tab-head">
79
  <?php
admin/views/admin-settings-advanced.php CHANGED
@@ -19,6 +19,6 @@ if ( ! defined( 'WPINC' ) ) {
19
  </table>
20
  <?php do_action('wt_cli_after_advanced_settings'); ?>
21
  <?php
22
- //include "admin-settings-save-button.php";
23
  ?>
24
  </div>
19
  </table>
20
  <?php do_action('wt_cli_after_advanced_settings'); ?>
21
  <?php
22
+ include "admin-settings-save-button.php";
23
  ?>
24
  </div>
admin/views/admin-settings-general.php CHANGED
File without changes
admin/views/admin-settings-messagebar.php CHANGED
File without changes
admin/views/admin-settings-save-button.php CHANGED
@@ -7,7 +7,7 @@ if ( ! defined( 'WPINC' ) ) {
7
  <div style="clear: both;"></div>
8
  <div class="cli-plugin-toolbar bottom">
9
  <div class="left">
10
- </div>
11
  <div class="right">
12
  <input type="submit" name="update_admin_settings_form" value="<?php _e('Update Settings', 'cookie-law-info'); ?>" class="button-primary" style="float:right;" onClick="return cli_store_settings_btn_click(this.name)" />
13
  <span class="spinner" style="margin-top:9px"></span>
7
  <div style="clear: both;"></div>
8
  <div class="cli-plugin-toolbar bottom">
9
  <div class="left">
10
+ </div>
11
  <div class="right">
12
  <input type="submit" name="update_admin_settings_form" value="<?php _e('Update Settings', 'cookie-law-info'); ?>" class="button-primary" style="float:right;" onClick="return cli_store_settings_btn_click(this.name)" />
13
  <span class="spinner" style="margin-top:9px"></span>
admin/views/goto-pro.php CHANGED
File without changes
cookie-law-info.php CHANGED
@@ -16,7 +16,7 @@
16
  * Plugin Name: GDPR Cookie Consent
17
  * Plugin URI: https://www.webtoffee.com/product/gdpr-cookie-consent/
18
  * Description: A simple way to show your website complies with the EU Cookie Law / GDPR.
19
- * Version: 1.9.5
20
  * Author: WebToffee
21
  * Author URI: http://cookielawinfo.com/
22
  * License: GPLv3
@@ -46,7 +46,10 @@
46
  if ( ! defined( 'WPINC' ) ) {
47
  die;
48
  }
49
-
 
 
 
50
  define ( 'CLI_PLUGIN_DEVELOPMENT_MODE', false );
51
  define ( 'CLI_PLUGIN_BASENAME', plugin_basename(__FILE__) );
52
  define ( 'CLI_PLUGIN_PATH', plugin_dir_path(__FILE__) );
@@ -59,11 +62,14 @@ define ( 'CLI_MIGRATED_VERSION', CLI_DB_KEY_PREFIX . 'MigratedVersion' );
59
  define ( 'CLI_ADMIN_OPTIONS_NAME', 'CookieLawInfo-0.8.3' );
60
  define ( 'CLI_PLUGIN_FILENAME',__FILE__);
61
  define ( 'CLI_POST_TYPE','cookielawinfo');
 
 
 
62
  /**
63
  * Currently plugin version.
64
  * Rename this for your plugin and update it as you release new versions.
65
  */
66
- define( 'CLI_VERSION', '1.9.5' );
67
 
68
  function wt_cookie_law_info_update_message( $data, $response )
69
  {
@@ -99,8 +105,8 @@ add_action( 'in_plugin_update_message-cookie-law-info/cookie-law-info.php', 'wt_
99
  * The code that runs during plugin activation.
100
  * This action is documented in includes/class-cookie-law-info-activator.php
101
  */
 
102
  function activate_cookie_law_info() {
103
- require_once plugin_dir_path( __FILE__ ) . 'includes/class-cookie-law-info-activator.php';
104
  Cookie_Law_Info_Activator::activate();
105
  register_uninstall_hook( __FILE__, 'uninstall_cookie_law_info' );
106
  }
16
  * Plugin Name: GDPR Cookie Consent
17
  * Plugin URI: https://www.webtoffee.com/product/gdpr-cookie-consent/
18
  * Description: A simple way to show your website complies with the EU Cookie Law / GDPR.
19
+ * Version: 2.0.0
20
  * Author: WebToffee
21
  * Author URI: http://cookielawinfo.com/
22
  * License: GPLv3
46
  if ( ! defined( 'WPINC' ) ) {
47
  die;
48
  }
49
+ $wt_cli_wp_lanugage = get_option('WPLANG', 'en_US');
50
+ if ( empty($wt_cli_wp_lanugage) || strlen($wt_cli_wp_lanugage) <= 1) {
51
+ $wt_cli_wp_lanugage = 'en';
52
+ }
53
  define ( 'CLI_PLUGIN_DEVELOPMENT_MODE', false );
54
  define ( 'CLI_PLUGIN_BASENAME', plugin_basename(__FILE__) );
55
  define ( 'CLI_PLUGIN_PATH', plugin_dir_path(__FILE__) );
62
  define ( 'CLI_ADMIN_OPTIONS_NAME', 'CookieLawInfo-0.8.3' );
63
  define ( 'CLI_PLUGIN_FILENAME',__FILE__);
64
  define ( 'CLI_POST_TYPE','cookielawinfo');
65
+ define ('CLI_DEFAULT_LANGUAGE', substr($wt_cli_wp_lanugage, 0, 2));
66
+ define ( 'CLI_ACTIVATION_ID','wtgdprcookieconsent');
67
+
68
  /**
69
  * Currently plugin version.
70
  * Rename this for your plugin and update it as you release new versions.
71
  */
72
+ define( 'CLI_VERSION', '2.0.0' );
73
 
74
  function wt_cookie_law_info_update_message( $data, $response )
75
  {
105
  * The code that runs during plugin activation.
106
  * This action is documented in includes/class-cookie-law-info-activator.php
107
  */
108
+ require_once plugin_dir_path( __FILE__ ) . 'includes/class-cookie-law-info-activator.php';
109
  function activate_cookie_law_info() {
 
110
  Cookie_Law_Info_Activator::activate();
111
  register_uninstall_hook( __FILE__, 'uninstall_cookie_law_info' );
112
  }
images/add.svg ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 367.805 367.805" style="enable-background:new 0 0 367.805 367.805;" xml:space="preserve">
5
+ <g>
6
+ <path style="fill:#3BB54A;" d="M183.903,0.001c101.566,0,183.902,82.336,183.902,183.902s-82.336,183.902-183.902,183.902
7
+ S0.001,285.469,0.001,183.903l0,0C-0.288,82.625,81.579,0.29,182.856,0.001C183.205,0,183.554,0,183.903,0.001z"/>
8
+ <polygon style="fill:#D4E1F4;" points="285.78,133.225 155.168,263.837 82.025,191.217 111.805,161.96 155.168,204.801
9
+ 256.001,103.968 "/>
10
+ </g>
11
+ <g>
12
+ </g>
13
+ <g>
14
+ </g>
15
+ <g>
16
+ </g>
17
+ <g>
18
+ </g>
19
+ <g>
20
+ </g>
21
+ <g>
22
+ </g>
23
+ <g>
24
+ </g>
25
+ <g>
26
+ </g>
27
+ <g>
28
+ </g>
29
+ <g>
30
+ </g>
31
+ <g>
32
+ </g>
33
+ <g>
34
+ </g>
35
+ <g>
36
+ </g>
37
+ <g>
38
+ </g>
39
+ <g>
40
+ </g>
41
+ </svg>
images/logo-cookieyes.svg ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 25.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 300 60" style="enable-background:new 0 0 300 60;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#404041;}
7
+ .st1{fill:#0056A7;}
8
+ .st2{fill:#2E3191;}
9
+ </style>
10
+ <g>
11
+ <path class="st0" d="M22.3,11.5C32.2,11.5,39.6,17,42,26H30.9c-1.7-3.6-4.9-5.3-8.7-5.3c-6.2,0-10.5,4.6-10.5,12s4.3,12,10.5,12
12
+ c3.8,0,7-1.8,8.7-5.3H42c-2.4,9-9.8,14.5-19.7,14.5C10,53.8,1.4,45.1,1.4,32.6S10,11.5,22.3,11.5z"/>
13
+ <path class="st0" d="M62.2,54c-9.7,0-17-6.5-17-17s7.5-17,17.2-17c9.7,0,17.2,6.5,17.2,17S71.9,54,62.2,54z M62.2,45.2
14
+ c3.6,0,7-2.7,7-8.2c0-5.6-3.3-8.2-6.9-8.2c-3.7,0-6.9,2.6-6.9,8.2C55.5,42.5,58.5,45.2,62.2,45.2z"/>
15
+ <path class="st0" d="M99.7,54c-9.7,0-17-6.5-17-17s7.5-17,17.2-17c9.7,0,17.2,6.5,17.2,17S109.4,54,99.7,54z M99.7,45.2
16
+ c3.6,0,7-2.7,7-8.2c0-5.6-3.3-8.2-6.9-8.2c-3.7,0-6.9,2.6-6.9,8.2C92.9,42.5,96,45.2,99.7,45.2z"/>
17
+ <path class="st0" d="M120.7,11.5h10.1v22.4l10-13.4h12.5L139.6,37l13.9,16.5h-12.5l-10.1-13.9v13.9h-10.1V11.5z"/>
18
+ <path class="st0" d="M155.7,11.6c0-3.1,2.4-5.5,6-5.5c3.6,0,6,2.4,6,5.5c0,3-2.4,5.4-6,5.4C158.1,17,155.7,14.6,155.7,11.6z
19
+ M156.7,20.4h10.1v33h-10.1V20.4z"/>
20
+ <path class="st0" d="M187.2,54c-9.7,0-16.7-6.5-16.7-17s6.9-17,16.7-17c9.6,0,16.5,6.4,16.5,16.5c0,0.9-0.1,2-0.2,3h-22.9
21
+ c0.4,4.3,3,6.3,6.3,6.3c2.8,0,4.4-1.4,5.3-3.2h10.8C201.3,49,195.5,54,187.2,54z M180.7,33.8h12.7c0-3.6-2.8-5.7-6.2-5.7
22
+ C183.8,28.1,181.3,30.1,180.7,33.8z"/>
23
+ <path class="st0" d="M250.4,54c-9.7,0-16.7-6.5-16.7-17s6.9-17,16.7-17c9.6,0,16.5,6.4,16.5,16.5c0,0.9-0.1,2-0.2,3h-22.9
24
+ c0.4,4.3,3,6.3,6.3,6.3c2.8,0,4.4-1.4,5.3-3.2h10.8C264.5,49,258.6,54,250.4,54z M243.8,33.8h12.7c0-3.6-2.8-5.7-6.2-5.7
25
+ C247,28.1,244.4,30.1,243.8,33.8z"/>
26
+ <path class="st0" d="M285.2,54c-8.8,0-14.7-4.9-15.2-11.3h10c0.2,2.3,2.3,3.8,5.1,3.8c2.6,0,4-1.2,4-2.7c0-5.3-18-1.5-18-13.6
27
+ c0-5.6,4.8-10.2,13.4-10.2c8.5,0,13.3,4.7,13.9,11.2h-9.4c-0.3-2.2-2-3.7-4.9-3.7c-2.4,0-3.7,0.9-3.7,2.5c0,5.3,17.9,1.5,18.1,13.9
28
+ C298.6,49.6,293.5,54,285.2,54z"/>
29
+ <g>
30
+ <g>
31
+ <path class="st1" d="M214.2,21h-10.5l9.6,17.8h10.5L214.2,21z"/>
32
+ </g>
33
+ <g>
34
+ <g>
35
+ <path class="st2" d="M213.1,38.3l0.3,0.5h10.5L217,26.3L213.1,38.3z"/>
36
+ </g>
37
+ </g>
38
+ <g>
39
+ <path class="st1" d="M232.3,6l-18.9,32.8h10.5L242.8,6H232.3z"/>
40
+ </g>
41
+ <g>
42
+ <path class="st1" d="M213.4,43.7h10.2V54h-10.2V43.7z"/>
43
+ </g>
44
+ </g>
45
+ </g>
46
+ </svg>
images/tick.png DELETED
Binary file
includes/class-cookie-law-info-activator.php CHANGED
@@ -29,34 +29,110 @@ class Cookie_Law_Info_Activator {
29
  *
30
  * @since 1.6.6
31
  */
32
- public static function activate()
33
- {
34
- global $wpdb;
35
- require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
36
- Cookie_Law_Info::maybe_first_time_install();
37
- if(is_multisite())
38
- {
39
- // Get all blogs in the network and activate plugin on each one
40
- $blog_ids = $wpdb->get_col( "SELECT blog_id FROM $wpdb->blogs" );
41
- foreach($blog_ids as $blog_id )
42
- {
43
- switch_to_blog( $blog_id );
44
- self::install_tables();
45
- Cookie_Law_Info::cli_patches();
46
- restore_current_blog();
47
- }
48
- }
49
- else
50
- {
51
- self::install_tables();
52
- Cookie_Law_Info::cli_patches();
53
- }
54
-
55
- }
56
- public static function install_tables()
57
- {
 
 
 
 
 
58
  global $wpdb;
59
- //install necessary tables
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
  }
61
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
62
  }
 
29
  *
30
  * @since 1.6.6
31
  */
32
+ private static $db_updates = array(
33
+ '1.9.5' => array(
34
+ 'wt_cli_update_195_db_version',
35
+ ),
36
+ );
37
+
38
+ public static function init() {
39
+ add_action( 'init', array( __CLASS__, 'check_version' ), 5 );
40
+ }
41
+
42
+ public static function activate() {
43
+ global $wpdb;
44
+ require_once ABSPATH . 'wp-admin/includes/upgrade.php';
45
+ Cookie_Law_Info::check_for_upgrade();
46
+
47
+ if ( is_multisite() ) {
48
+ // Get all blogs in the network and activate plugin on each one
49
+ $blog_ids = $wpdb->get_col( "SELECT blog_id FROM $wpdb->blogs" );
50
+ foreach ( $blog_ids as $blog_id ) {
51
+ switch_to_blog( $blog_id );
52
+ self::install_tables();
53
+ Cookie_Law_Info::cli_patches();
54
+ restore_current_blog();
55
+ }
56
+ } else {
57
+ self::install_tables();
58
+ Cookie_Law_Info::cli_patches();
59
+ }
60
+
61
+ }
62
+ public static function install_tables() {
63
  global $wpdb;
64
+ // install necessary tables
65
+ }
66
+ public static function needs_db_update() {
67
+ $current_db_version = get_option( 'wt_cli_db_version', Cookie_Law_Info::$db_initial_version ); // @since 1.9.6 introduced DB migrations
68
+ $updates = self::get_db_update_callbacks();
69
+ $update_versions = array_keys( $updates );
70
+ usort( $update_versions, 'version_compare' );
71
+
72
+ return ! is_null( $current_db_version ) && version_compare( $current_db_version, end( $update_versions ), '<' );
73
+ }
74
+
75
+ public static function get_db_update_callbacks() {
76
+ return self::$db_updates;
77
+ }
78
+
79
+ public static function update_db_version( $version = null ) {
80
+ update_option( 'wt_cli_db_version', is_null( $version ) ? CLI_VERSION : $version );
81
+ }
82
+
83
+ private static function maybe_update_db_version() {
84
+
85
+ if ( self::needs_db_update() ) {
86
+ self::update();
87
+ } else {
88
+ self::update_db_version(); // First time install
89
+ }
90
+ }
91
+
92
+ private static function update() {
93
+ $current_db_version = get_option( 'wt_cli_db_version', Cookie_Law_Info::$db_initial_version );
94
+
95
+ foreach ( self::get_db_update_callbacks() as $version => $update_callbacks ) {
96
+
97
+ if ( version_compare( $current_db_version, $version, '<' ) ) {
98
+ foreach ( $update_callbacks as $update_callback ) {
99
+ self::$update_callback();
100
+ }
101
+ }
102
+ }
103
  }
104
 
105
+ private static function wt_cli_update_195_db_version() {
106
+
107
+ if ( Cookie_Law_Info::maybe_first_time_install() === true ) {
108
+ self::update_cookie_db_version( '2.0' );
109
+ } else {
110
+ self::update_cookie_db_version( '1.0' );
111
+ }
112
+ self::update_db_version();
113
+ }
114
+ /**
115
+ * Check the plugin version and run the updater is required.
116
+ *
117
+ * This check is done on all requests and runs if the versions do not match.
118
+ */
119
+ public static function check_version() {
120
+ if ( ! defined( 'IFRAME_REQUEST' ) && version_compare( get_option( 'wt_cli_version', '1.9.5' ), CLI_VERSION, '<' ) ) {
121
+ self::install();
122
+ }
123
+ }
124
+ private static function update_plugin_version() {
125
+ update_option( 'wt_cli_version', CLI_VERSION );
126
+ }
127
+ public static function install() {
128
+ self::maybe_update_db_version();
129
+ self::update_plugin_version();
130
+ }
131
+ public static function update_cookie_db_version( $version = null ) {
132
+ update_option( 'wt_cli_cookie_db_version', is_null( $version ) ? '1.0' : $version );
133
+ }
134
+ public static function get_cookie_db_version() {
135
+ return get_option( 'wt_cli_cookie_db_version', false );
136
+ }
137
  }
138
+ Cookie_Law_Info_Activator::init();
includes/class-cookie-law-info-cookieyes.php ADDED
@@ -0,0 +1,1200 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Cookieyes Integration
4
+ *
5
+ * @version 1.9.6
6
+ * @package CookieLawInfo
7
+ */
8
+
9
+ if ( ! defined( 'ABSPATH' ) ) {
10
+ exit;
11
+ }
12
+ if ( ! class_exists( 'Cookie_Law_Info_Cookieyes' ) ) {
13
+ /**
14
+ * Cookieyes library
15
+ */
16
+ class Cookie_Law_Info_Cookieyes {
17
+ /**
18
+ * CookieYes options
19
+ *
20
+ * @var array
21
+ */
22
+ protected $cookieyes_options;
23
+ /**
24
+ * Current webstite URL
25
+ *
26
+ * @var string
27
+ */
28
+ protected $website_url;
29
+ /**
30
+ * CookieYes token
31
+ *
32
+ * @var string
33
+ */
34
+ protected $token;
35
+ /**
36
+ * CookieYes connection status
37
+ *
38
+ * @var bool
39
+ */
40
+ protected $ckyes_status;
41
+ /**
42
+ * Allowed CookieYes ajax actions
43
+ *
44
+ * @var array
45
+ */
46
+ protected $ckyes_actions;
47
+ /**
48
+ * Email of the user
49
+ *
50
+ * @var string
51
+ */
52
+ public $ckyes_scan_data;
53
+
54
+ public $user_email;
55
+ /**
56
+ * Current module name
57
+ *
58
+ * @var [type]
59
+ */
60
+ public $module_id;
61
+
62
+ const API_BASE_PATH = 'https://app.cookieyes.com/public/api/wp-basic/v1/';
63
+
64
+ const EC_WT_CKYES_CONNECTION_FAILED = 100;
65
+ const EC_WT_CKYES_INVALID_CREDENTIALS = 101;
66
+ const EC_WT_CKYES_ALREADY_EXIST = 102;
67
+ const EC_WT_CKYES_LICENSE_NOT_ACTIVATED = 103;
68
+ const EC_WT_CKYES_SCAN_LIMIT_REACHED = 104;
69
+ const EC_WT_CKYES_DISCONNECTED = 105;
70
+ const EC_WT_CKYES_ACTIVE_SCAN = 106;
71
+ const EC_WT_CKYES_PENDING_VERIFICATION = 107;
72
+ const EC_WT_CKYES_NOT_REGISTERED = 108;
73
+ const EC_WT_CKYES_EMAIL_ALREADY_VERIFIED = 109;
74
+
75
+ const WT_CKYES_CONNECTION_SUCCESS = 200;
76
+ const WT_CKYES_SCAN_INITIATED = 201;
77
+ const WT_CKYES_PWD_RESET_SENT = 202;
78
+ const WT_CKYES_EMAIL_VERIFICATION_SENT = 203;
79
+ const WT_CKYES_ABORT_SUCCESSFULL = 204;
80
+
81
+ /**
82
+ * Initialize CookieYes scanner library
83
+ */
84
+ public function __construct() {
85
+ $this->ckyes_actions = $this->get_ckyes_actions();
86
+ $this->module_id = 'cookieyes';
87
+
88
+ add_action( 'init', array( $this, 'init' ) );
89
+ add_action( 'wp_ajax_cookieyes_ajax_main_controller', array( $this, 'ajax_main_controller' ), 10, 0 );
90
+ add_action( 'wt_cli_after_advanced_settings', array( $this, 'ckyes_settings' ),11 );
91
+ add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
92
+ }
93
+ /**
94
+ * Initialize CookieYes actions
95
+ *
96
+ * @return void
97
+ */
98
+ public function init() {
99
+ add_action( 'admin_footer', array( $this, 'ckyes_forms' ) );
100
+ add_filter( 'wt_cli_enable_ckyes_branding', array( $this, 'show_ckyes_branding' ) );
101
+ add_filter( 'wt_cli_ckyes_account_widget', array( $this, 'add_ckyes_account_widget' ) );
102
+ }
103
+ /**
104
+ * Return supported ajax actions
105
+ *
106
+ * @return array
107
+ */
108
+ public function get_ckyes_actions() {
109
+ return array(
110
+ 'register',
111
+ 'login',
112
+ 'reset_password',
113
+ 'connect_disconnect',
114
+ 'resend_email',
115
+ 'delete_account',
116
+ );
117
+ }
118
+ /**
119
+ * AJAX main controller
120
+ *
121
+ * @return void
122
+ */
123
+ public function ajax_main_controller() {
124
+ if ( ! Wt_Cookie_Law_Info_Security_Helper::check_write_access( CLI_PLUGIN_FILENAME, $this->module_id ) ) {
125
+ wp_die( __( 'You do not have sufficient permission to perform this operation', 'cookie-law-info' ) ); // phpcs:ignore WordPress.Security.EscapeOutput
126
+ }
127
+ if ( isset( $_POST['sub_action'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification,WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
128
+
129
+ $sub_action = Wt_Cookie_Law_Info_Security_Helper::sanitize_item( $_POST['sub_action'] ); // phpcs:ignore WordPress.Security.NonceVerification,WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
130
+
131
+ if ( in_array( $sub_action, $this->ckyes_actions, true ) && method_exists( $this, $sub_action ) ) {
132
+
133
+ $response = $this->{$sub_action}();
134
+ $data = array();
135
+ $status = ( isset( $response['status'] ) ? $response['status'] : false );
136
+ $status_code = ( isset( $response['code'] ) ? $response['code'] : '' );
137
+ $message = ( isset( $response['message'] ) ? $response['message'] : false );
138
+ $html = ( isset( $response['html'] ) ? $response['html'] : false );
139
+ $data['status'] = $status;
140
+ if ( ! empty( $status_code ) ) {
141
+ $data['code'] = $status_code;
142
+ $data['html'] = $html;
143
+ if ( false === $message ) {
144
+ $data['message'] = $this->get_ckyes_message( $status_code );
145
+ } else {
146
+ $data['message'] = $message;
147
+ }
148
+ }
149
+ if ( true === $status ) {
150
+ wp_send_json_success( $data );
151
+ }
152
+ wp_send_json_error( $data );
153
+ }
154
+ }
155
+ $data['message'] = __( 'Invalid request', 'cookie-law-info' );
156
+ wp_send_json_error( $data );
157
+ exit();
158
+ }
159
+ /**
160
+ * CookieYes account status widget
161
+ *
162
+ * @return string
163
+ */
164
+ public function add_ckyes_account_widget() {
165
+ if ( $this->get_cookieyes_status() === false || $this->get_cookieyes_status() === 0 ) {
166
+ return;
167
+ }
168
+ if ( $this->get_cookieyes_status() === false ) {
169
+ return;
170
+ }
171
+ $ckyes_account_status_text = __( 'Connected to CookieYes', 'cookie-law-info' );
172
+ $ckyes_account_action = 'disconnect';
173
+ $ckyes_account_action_text = __( 'Disconnect', 'cookie-law-info' );
174
+ $image_directory = plugin_dir_url( CLI_PLUGIN_FILENAME ) . 'admin/images/';
175
+ $ckyes_account_status_icon = $image_directory . 'add.svg';
176
+
177
+ if ( $this->get_cookieyes_status() === 0 ) {
178
+ $ckyes_account_action = 'connect';
179
+ $ckyes_account_action_text = '';
180
+ $ckyes_account_status_icon = $image_directory . 'remove.svg';
181
+ $ckyes_account_status_text = __( 'Disconnected from CookieYes', 'cookie-law-info' );
182
+ }
183
+ $html = '<span class="wt-cli-ckyes-account-widget-container">';
184
+ $html .= '<span class="wt-cli-ckyes-status-icon"><img src="' . $ckyes_account_status_icon . '" style="max-width:100%; " alt=""></span>';
185
+ $html .= '<span class="wt-cli-ckyes-status-text">' . $ckyes_account_status_text . '</span>';
186
+ $html .= '<span><a href="#" class="wt-cli-ckyes-account-action" data-action="' . $ckyes_account_action . '">' . $ckyes_account_action_text . '</a></span>';
187
+ $html .= '</span>';
188
+ return $html;
189
+ }
190
+ /**
191
+ * Enqueue the javascript file for CookieYes API
192
+ *
193
+ * @return void
194
+ */
195
+ public function enqueue_scripts() {
196
+
197
+ $allowed_pages = apply_filters( 'wt_cli_ckyes_allowed_pages', array( 'cookie-law-info-cookie-scaner','cookie-law-info' ) );
198
+ if ( isset( $_GET['post_type'] ) && CLI_POST_TYPE === $_GET['post_type'] && isset( $_GET['page'] ) && in_array( $_GET['page'], $allowed_pages, true ) ) { // phpcs:ignore WordPress.Security.NonceVerification,WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
199
+ $params = array(
200
+ 'nonce' => wp_create_nonce( esc_html( $this->module_id ) ),
201
+ 'ajax_url' => admin_url( 'admin-ajax.php' ),
202
+ 'messages' => array(
203
+ 'error' => __( 'Invalid request', 'cookie-law-info' ),
204
+ 'delete_success' => __( 'Successfully deleted!', 'cookie-law-info' ),
205
+ 'delete_failed' => __( 'Delete failed, please try again later', 'cookie-law-info' ),
206
+ ),
207
+ );
208
+ wp_enqueue_script( 'cookie-law-info-ckyes-admin', CLI_PLUGIN_URL . 'admin/js/cookie-law-info-ckyes.js', array( 'cookie-law-info' ), CLI_VERSION, true );
209
+ wp_localize_script( 'cookie-law-info-ckyes-admin', 'ckyes_admin', $params );
210
+ }
211
+ }
212
+ /**
213
+ * Login and password reset HTML for the scanner
214
+ *
215
+ * @return void
216
+ */
217
+ public function ckyes_forms() {
218
+ $allowed_pages = apply_filters( 'wt_cli_ckyes_allowed_pages', array( 'cookie-law-info-cookie-scaner' ) );
219
+
220
+ if ( isset( $_GET['post_type'] ) && CLI_POST_TYPE === $_GET['post_type'] && isset( $_GET['page'] ) && in_array( $_GET['page'], $allowed_pages, true ) ) : // phpcs:ignore WordPress.Security.NonceVerification,WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
221
+ ?>
222
+ <style>
223
+ .wt-cli-ckyes-login-icon>.dashicons {
224
+ font-size: 50px;
225
+ width: initial;
226
+ height: initial;
227
+ }
228
+
229
+ .wt-cli-ckyes-login-icon {
230
+ width: 80px;
231
+ height: 80px;
232
+ margin: 0 auto;
233
+ display: flex;
234
+ align-items: center;
235
+ justify-content: center;
236
+ border-radius: 50%;
237
+ background: #f2f2f2;
238
+ }
239
+
240
+ .wt-cli-form-input {
241
+ display: block;
242
+ width: 100%;
243
+ height: 45px;
244
+ border: 1px solid #4041424a !important;
245
+ margin-top: 10px;
246
+ }
247
+
248
+ .wt-cli-action-container {
249
+ display: flex;
250
+ align-items: center;
251
+ justify-content: space-between;
252
+ margin-top: 10px;
253
+ }
254
+
255
+ button.wt-cli-action.button {
256
+ padding: 2px 24px;
257
+ min-width: 100px;
258
+ font-weight: 500;
259
+ }
260
+
261
+ #wt-cli-ckyes-modal-login {
262
+ padding: 45px 25px;
263
+ width: 430px;
264
+ }
265
+ </style>
266
+ <div class='wt-cli-modal' id='wt-cli-ckyes-modal-password-reset'>
267
+ <div class="wt-cli-modal-header">
268
+ <h4><?php echo __( 'Reset Password', 'cookie-law-info' ); // phpcs:ignore WordPress.Security.EscapeOutput ?></h4>
269
+ </div>
270
+ <div class="wt-cli-modal-body">
271
+ <form id="wt-cli-ckyes-form-password-reset">
272
+ <input type="email" name="ckyes-reset-email" class="wt-cli-form-input" placeholder="<?php echo __('Email','cookie-law-info'); ?>" value="<?php echo $this->get_user_email(); // phpcs:ignore WordPress.Security.EscapeOutput ?>" />
273
+ <div class="wt-cli-action-container">
274
+ <button id="wt-cli-ckyes-password-reset-btn" class="wt-cli-action button button-primary"><?php echo __( 'Send password reset email', 'cookie-law-info' ); // phpcs:ignore WordPress.Security.EscapeOutput ?></button>
275
+ </div>
276
+
277
+ </form>
278
+ </div>
279
+ </div>
280
+ <div class='wt-cli-modal' id='wt-cli-ckyes-modal-register'>
281
+ <span class="wt-cli-modal-js-close">×</span>
282
+ <div class="wt-cli-modal-header"><h4><?php echo __( 'Welcome to CookieYes', 'cookie-law-info' ); ?></h4></div>
283
+ <div class="wt-cli-modal-body">
284
+ <p><?php echo sprintf( __( 'Enter your email to create an account with CookieYes. By clicking “Connect”, your CookieYes account will be created automatically and you can start scanning your website for cookies right away!', 'cookie-law-info' ), $this->get_user_email() ); // phpcs:ignore WordPress.Security.EscapeOutput ?></p>
285
+ <form id="wt-cli-ckyes-form-register">
286
+ <input type="email" name="ckyes-email" class="wt-cli-form-input" placeholder="<?php echo __('Email','cookie-law-info'); ?>" value="<?php echo $this->get_user_email(); // phpcs:ignore WordPress.Security.EscapeOutput ?>"/>
287
+ <div class="wt-cli-action-container">
288
+ <div class="wt-cli-action-group">
289
+ <button id="wt-cli-ckyes-register-btn" class="wt-cli-action button button-primary"><?php echo __( 'Connect', 'cookie-law-info' ); // phpcs:ignore WordPress.Security.EscapeOutput ?></button>
290
+ </div>
291
+ </div>
292
+ </form>
293
+ </div>
294
+ </div>
295
+ <?php
296
+ endif;
297
+ }
298
+ /**
299
+ * CookieYes message handler
300
+ *
301
+ * @param int $msg_code Message code.
302
+ * @return string
303
+ */
304
+ public function get_ckyes_message( $msg_code ) {
305
+ switch ( $msg_code ) {
306
+ case self::EC_WT_CKYES_CONNECTION_FAILED:
307
+ $msg = __( 'Could not establish connection with scanner! please try again later', 'cookie-law-info' );
308
+ break;
309
+ case self::EC_WT_CKYES_INVALID_CREDENTIALS:
310
+ $msg = __( 'Invalid credentials', 'cookie-law-info' );
311
+ break;
312
+ case self::EC_WT_CKYES_ALREADY_EXIST:
313
+ $msg = __( 'You already have an account with CookieYes.', 'cookie-law-info' );
314
+ break;
315
+ case self::EC_WT_CKYES_LICENSE_NOT_ACTIVATED:
316
+ $msg = __( 'License is not activated, please activate your license and try again', 'cookie-law-info' );
317
+ break;
318
+ case self::EC_WT_CKYES_DISCONNECTED:
319
+ $msg = __( 'Disconnected with cookieyes, please connect and scan again', 'cookie-law-info' );
320
+ break;
321
+ case self::EC_WT_CKYES_SCAN_LIMIT_REACHED:
322
+ $msg = __( 'Your monthly scan limit is reached please try again later', 'cookie-law-info' );
323
+ break;
324
+ case self::EC_WT_CKYES_ACTIVE_SCAN:
325
+ $msg = __( 'A scanning is already in progress please try again after some time', 'cookie-law-info' );
326
+ break;
327
+ case self::WT_CKYES_CONNECTION_SUCCESS:
328
+ $msg = __( 'Successfully connected with CookieYes', 'cookie-law-info' );
329
+ break;
330
+ case self::WT_CKYES_PWD_RESET_SENT:
331
+ $msg = __( 'A password reset message has been sent to your email address. Click the link in the email to reset your password', 'cookie-law-info' );
332
+ break;
333
+ case self::WT_CKYES_EMAIL_VERIFICATION_SENT:
334
+ $msg = __( 'A email verfication link has been sent to your email address. Click the link in the email to verify your account', 'cookie-law-info' );
335
+ break;
336
+ case self::EC_WT_CKYES_EMAIL_ALREADY_VERIFIED:
337
+ $msg = __( 'Email has already verified', 'cookie-law-info' );
338
+ break;
339
+ default:
340
+ $msg = '';
341
+ break;
342
+ }
343
+ return $msg;
344
+ }
345
+ /**
346
+ * Return the current user email
347
+ *
348
+ * @return string
349
+ */
350
+ public function get_user_email() {
351
+ if ( ! $this->user_email ) {
352
+ $this->user_email = get_option( 'admin_email' );
353
+ }
354
+ return $this->user_email;
355
+ }
356
+ /**
357
+ * Get CookieYes access token
358
+ *
359
+ * @return string
360
+ */
361
+ public function get_access_token() {
362
+ if ( ! $this->token ) {
363
+ $cookieyes_options = $this->get_cookieyes_options();
364
+ $this->token = ( isset( $cookieyes_options['token'] ) ? $cookieyes_options['token'] : '' );
365
+ }
366
+ return $this->token;
367
+ }
368
+ /**
369
+ * Save access token
370
+ *
371
+ * @param string $token Token received from the CookieYes.
372
+ * @return void
373
+ * @throws Exception Error message.
374
+ */
375
+ public function set_access_token( $token ) {
376
+ if ( is_string( $token ) ) {
377
+ $json = json_decode( $token, true );
378
+ if ( $json ) {
379
+ $token = $json;
380
+ } else {
381
+ // assume $token is just the token string.
382
+ $token = array(
383
+ 'access_token' => $token,
384
+ );
385
+ }
386
+ }
387
+ if ( null === $token ) {
388
+ throw new Exception( __( 'Invalid json token', 'cookie-law-info' ) );
389
+ }
390
+ if ( ! isset( $token['access_token'] ) ) {
391
+ throw new Exception( __( 'Invalid token format', 'cookie-law-info' ) );
392
+ }
393
+ $this->token = $token;
394
+ }
395
+ /**
396
+ * Reset the token values
397
+ *
398
+ * @return void
399
+ */
400
+ public function reset_token() {
401
+ delete_option( 'wt_cli_cookieyes_options' );
402
+ }
403
+ /**
404
+ * Cookieyes options like status, access token etc
405
+ *
406
+ * @return array
407
+ */
408
+ public function get_cookieyes_options() {
409
+ if ( ! $this->cookieyes_options ) {
410
+ $cky_license = array(
411
+ 'status' => 0,
412
+ 'token' => '',
413
+ );
414
+ $cookieyes_options = get_option( 'wt_cli_cookieyes_options', false );
415
+ if ( false !== $cookieyes_options && is_array( $cookieyes_options ) ) {
416
+
417
+ $cky_license['status'] = intval( isset( $cookieyes_options['status'] ) ? $cookieyes_options['status'] : 0 );
418
+ $cky_license['token'] = isset( $cookieyes_options['token'] ) ? $cookieyes_options['token'] : '';
419
+ } else {
420
+ return false;
421
+ }
422
+ $this->cookieyes_options = $cky_license;
423
+ }
424
+
425
+ return $this->cookieyes_options;
426
+ }
427
+ /**
428
+ * Return current status of the CookieYes
429
+ *
430
+ * @return bool
431
+ */
432
+ public function get_cookieyes_status() {
433
+
434
+ if ( ! $this->ckyes_status ) {
435
+ $cookieyes_options = $this->get_cookieyes_options();
436
+ $this->ckyes_status = ( isset( $cookieyes_options['status'] ) ? intval( $cookieyes_options['status'] ) : false );
437
+ }
438
+ return $this->ckyes_status;
439
+ }
440
+ /**
441
+ * Save CookieYes options
442
+ *
443
+ * @param array $options options.
444
+ * @return void
445
+ */
446
+ public function set_cookieyes_options( $options ) {
447
+
448
+ $cookieyes_options = get_option( 'wt_cli_cookieyes_options', false );
449
+
450
+ $cky_license = array(
451
+ 'status' => 0,
452
+ 'token' => '',
453
+ );
454
+
455
+ $this->ckyes_status = $cky_license['status'] = ( isset( $options['status'] ) ? intval( $options['status'] ) : 0 );
456
+ $this->token = $cky_license['token'] = isset( $options['token'] ) ? $options['token'] : '';
457
+
458
+ update_option( 'wt_cli_cookieyes_options', $cky_license );
459
+ }
460
+ /**
461
+ * Returns API base path
462
+ *
463
+ * @return string
464
+ */
465
+ public function get_base_path() {
466
+ return self::API_BASE_PATH;
467
+ }
468
+ /**
469
+ * Returns current website URL
470
+ *
471
+ * @return string
472
+ */
473
+ public function get_website_url() {
474
+ if ( ! $this->website_url ) {
475
+ $this->website_url = home_url();
476
+ }
477
+ return $this->website_url;
478
+ }
479
+ /**
480
+ * Parse data from a remote request response.
481
+ *
482
+ * @param array $raw_response raw response from a remote request.
483
+ * @return array
484
+ */
485
+ public function parse_raw_response( $raw_response ) {
486
+
487
+ $response_code = wp_remote_retrieve_response_code( $raw_response );
488
+ if ( 200 !== $response_code ) {
489
+ if ( 401 === $response_code ) {
490
+ $this->reset_token();
491
+ }
492
+ return false;
493
+ }
494
+ $response = json_decode( wp_remote_retrieve_body( $raw_response ), true );
495
+ return $response;
496
+ }
497
+ /**
498
+ * Returns default response code and message
499
+ *
500
+ * @return array
501
+ */
502
+ public function get_default_response() {
503
+ $api_response = array(
504
+ 'status' => false,
505
+ 'code' => 100,
506
+ );
507
+ return $api_response;
508
+ }
509
+ /**
510
+ * Do a remote a request
511
+ *
512
+ * @param string $request_type Request type POST. GET, PUT etc.
513
+ * @param string $endpoint API end point.
514
+ * @param boolean $body Request body.
515
+ * @param boolean $auth_token Bearer token.
516
+ * @return array
517
+ */
518
+ public function wt_remote_request( $request_type = 'GET', $endpoint = '', $body = false, $auth_token = false ) {
519
+
520
+ $request_args = array(
521
+ 'timeout' => 60,
522
+ 'headers' => array(),
523
+ );
524
+ $request_args['headers']['Content-Type'] = 'application/json';
525
+ $request_args['headers']['Accept'] = 'application/json';
526
+
527
+ if ( false !== $body ) {
528
+ $request_args['body'] = json_encode( $body );
529
+ }
530
+ if ( false !== $auth_token ) {
531
+ $request_args['headers']['Authorization'] = 'Bearer ' . $auth_token;
532
+ }
533
+ // Request types.
534
+ switch ( $request_type ) {
535
+ case 'GET':
536
+ $raw_response = wp_remote_get(
537
+ $endpoint,
538
+ $request_args
539
+ );
540
+ break;
541
+
542
+ case 'PUT':
543
+ case 'POST':
544
+ $raw_response = wp_remote_post(
545
+ $endpoint,
546
+ $request_args
547
+ );
548
+ break;
549
+ default:
550
+ break;
551
+ }
552
+ if ( $raw_response ) {
553
+ $response = $this->parse_raw_response( $raw_response );
554
+ return $response;
555
+ }
556
+ return false;
557
+ }
558
+ /**
559
+ * Register API , create an account with CookieYes
560
+ *
561
+ * @return array
562
+ */
563
+ public function register() {
564
+ $api_response = $this->get_default_response();
565
+ $endpoint = $this->get_base_path() . 'users/register';
566
+
567
+ $url = $this->get_website_url();
568
+ $email = isset( $_POST['email'] ) ? wp_unslash( $_POST['email'] ) : $email; // phpcs:ignore WordPress.Security.NonceVerification,WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
569
+ $this->user_email = $email;
570
+ if ( empty( $email ) || empty( $url ) ) {
571
+ $api_response['code'] = 101;
572
+ return $api_response;
573
+ }
574
+ $request_body = array(
575
+ 'email' => $email,
576
+ 'url' => $url,
577
+ );
578
+ $response = $this->wt_remote_request( 'POST', $endpoint, $request_body );
579
+ if ( isset( $response ) && is_array( $response ) ) {
580
+ if ( isset( $response['token'] ) ) {
581
+ $cky_options = array(
582
+ 'status' => 2, // Waiting for email verification.
583
+ 'token' => $response['token'],
584
+ );
585
+ $this->set_cookieyes_options( $cky_options );
586
+ $api_response['status'] = true;
587
+ $api_response['code'] = self::WT_CKYES_EMAIL_VERIFICATION_SENT;
588
+ $api_response['html'] = $this->get_email_verification_html();
589
+
590
+ } else {
591
+ if ( isset( $response['status'] ) && $response['status'] == 'error' ) {
592
+ if ( isset( $response['error_code'] ) && $response['error_code'] == 1002 ) {
593
+ $api_response['status'] = false;
594
+ $api_response['code'] = self::EC_WT_CKYES_ALREADY_EXIST;
595
+ $api_response['html'] = $this->get_login_html();
596
+ }
597
+ }
598
+ }
599
+ }
600
+ return $api_response;
601
+ }
602
+ /**
603
+ * Login API
604
+ *
605
+ * @return array
606
+ */
607
+ public function login() {
608
+
609
+ $api_response = $this->get_default_response();
610
+
611
+ $endpoint = $this->get_base_path() . 'users/login';
612
+
613
+ $url = $this->get_website_url();
614
+ $email = $this->get_user_email();
615
+
616
+ $email = isset( $_POST['email'] ) ? $_POST['email'] : $email; // phpcs:ignore WordPress.Security.NonceVerification,WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
617
+ $password = isset( $_POST['password'] ) ? $_POST['password'] : ''; // phpcs:ignore WordPress.Security.NonceVerification,WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
618
+
619
+ $email = Wt_Cookie_Law_Info_Security_Helper::sanitize_item( $email );
620
+
621
+ if ( empty( $email ) || empty( $url ) || empty( $password ) ) {
622
+ $api_response['code'] = 101;
623
+ return $api_response;
624
+ }
625
+ $request_body = array(
626
+ 'email' => $email,
627
+ 'url' => $url,
628
+ 'password' => $password,
629
+ );
630
+ $response = $this->wt_remote_request( 'POST', $endpoint, $request_body );
631
+
632
+ if ( isset( $response ) && is_array( $response ) ) {
633
+
634
+ if ( isset( $response['status'] ) && 'error' === $response['status'] ) {
635
+
636
+ if ( isset( $response['error_code'] ) && 1003 == $response['error_code'] ) {
637
+ $api_response['code'] = 101;
638
+ }
639
+ } else {
640
+ if ( isset( $response['token'] ) ) {
641
+ $cky_options = array(
642
+ 'status' => true,
643
+ 'token' => $response['token'],
644
+ );
645
+ $this->set_cookieyes_options( $cky_options );
646
+ $this->set_ckyes_branding_default();
647
+ $api_response['status'] = true;
648
+ $api_response['code'] = 200;
649
+ }
650
+ }
651
+ }
652
+ return $api_response;
653
+ }
654
+ /**
655
+ * Retreive next scan ID from CookieYes.
656
+ *
657
+ * @param int $total_urls Total URLs to be scanned.
658
+ * @return array
659
+ */
660
+ public function get_next_scan_id( $total_urls ) {
661
+
662
+ $api_response = array(
663
+ 'status' => false,
664
+ 'code' => 100,
665
+ 'scan_id' => '',
666
+ 'scan_token' => '',
667
+ );
668
+ if ( $this->get_cookieyes_status() === 1 || $this->get_cookieyes_status() === 2 ) {
669
+
670
+ $token = $this->get_access_token();
671
+ if ( empty( $token ) ) {
672
+ return $api_response;
673
+ }
674
+ $endpoint = $this->get_base_path() . 'scan/create';
675
+ $request_body = array(
676
+ 'page_limit' => $total_urls,
677
+ 'scan_result_token' => $this->set_ckyes_scan_instance(),
678
+ );
679
+
680
+ $response = $this->wt_remote_request( 'POST', $endpoint, $request_body, $token );
681
+ if ( isset( $response ) && is_array( $response ) ) {
682
+
683
+ if ( isset( $response['status'] ) && $response['status'] === 'error' ) {
684
+ if ( isset( $response['error_code'] ) ) {
685
+ if ( $response['error_code'] == 1005 ) {
686
+ $response = $this->refresh_scan_token();
687
+ } elseif ( $response['error_code'] == 1007 ) {
688
+ $api_response['code'] = self::EC_WT_CKYES_PENDING_VERIFICATION;
689
+ }
690
+ }
691
+ }
692
+ if ( isset( $response['scan_id'] ) && $response['scan_token'] ) {
693
+ if ( $this->get_cookieyes_status() === 2 ) { // If email verified then set to activate state.
694
+ $this->change_status( true );
695
+ $this->set_ckyes_branding_default();
696
+
697
+ }
698
+ $api_response['status'] = true;
699
+ $api_response['scan_id'] = $response['scan_id'];
700
+ $api_response['scan_token'] = $response['scan_token'];
701
+ $api_response['code'] = self::WT_CKYES_SCAN_INITIATED;
702
+ }
703
+ } else {
704
+ return $api_response;
705
+ }
706
+ } else {
707
+ $api_response['code'] = self::EC_WT_CKYES_DISCONNECTED;
708
+ }
709
+ return $api_response;
710
+ }
711
+ /**
712
+ * Reset password API
713
+ *
714
+ * @return array
715
+ */
716
+ public function reset_password() {
717
+ $api_response = $this->get_default_response();
718
+
719
+ $endpoint = $this->get_base_path() . 'password/reset';
720
+
721
+ $email = isset( $_POST['email'] ) ? wp_unslash( $_POST['email'] ) : ''; // phpcs:ignore WordPress.Security.NonceVerification,WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
722
+ $email = Wt_Cookie_Law_Info_Security_Helper::sanitize_item( $email );
723
+
724
+ if ( empty( $email ) ) {
725
+ $api_response['code'] = 101;
726
+ return $api_response;
727
+ }
728
+ $request_body = array(
729
+ 'email' => $email,
730
+ );
731
+ $response = $this->wt_remote_request( 'POST', $endpoint, $request_body );
732
+ if ( isset( $response ) && is_array( $response ) ) {
733
+ if ( isset( $response['status'] ) && 'success' === $response['status'] ) {
734
+
735
+ $api_response['status'] = true;
736
+ $api_response['code'] = 202;
737
+ }
738
+ }
739
+
740
+ return $api_response;
741
+ }
742
+ /**
743
+ * Resend email verification
744
+ *
745
+ * @return array
746
+ */
747
+ public function resend_email() {
748
+ $api_response = $this->get_default_response();
749
+ $token = $this->get_access_token();
750
+ if ( empty( $token ) ) {
751
+ return $api_response;
752
+ }
753
+ $endpoint = $this->get_base_path() . 'users/resend-verification-email';
754
+ $response = $this->wt_remote_request( 'POST', $endpoint, false, $token );
755
+
756
+ if ( isset( $response ) && is_array( $response ) ) {
757
+ if ( isset( $response['status'] ) && 'resend_email_verification' === $response['status'] ) {
758
+ $api_response['status'] = true;
759
+ $api_response['code'] = self::WT_CKYES_EMAIL_VERIFICATION_SENT;
760
+ $api_response['html'] = $this->get_email_verification_html( false, false );
761
+ } elseif ( isset( $response['status'] ) && 'already_verified' === $response['status'] ) {
762
+ $api_response['status'] = false;
763
+ $api_response['code'] = self::EC_WT_CKYES_EMAIL_ALREADY_VERIFIED;
764
+ }
765
+ }
766
+ return $api_response;
767
+ }
768
+ /**
769
+ * Change connection status with CookieYes
770
+ *
771
+ * @return array
772
+ */
773
+ public function connect_disconnect() {
774
+
775
+ $api_response = array(
776
+ 'status' => false,
777
+ 'code' => 100,
778
+ 'message' => '',
779
+ );
780
+ $message = __( 'Successfully disconnected with Cookieyes', 'cookie-law-info' );
781
+ $action = isset( $_POST['account_action'] ) ? wp_unslash( $_POST['account_action'] ) : ''; // phpcs:ignore WordPress.Security.NonceVerification,WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
782
+ if ( empty( $action ) ) {
783
+ $api_response['message'] = __( 'Could not identify the action', 'cookie-law-info' );
784
+ return $api_response;
785
+ }
786
+ if ( 'connect' === $action ) {
787
+ $this->change_status( true );
788
+ $message = __( 'Successfully connected with Cookieyes', 'cookie-law-info' );
789
+ } else {
790
+ $this->change_status( false );
791
+ }
792
+ $api_response['status'] = true;
793
+ $api_response['message'] = $message;
794
+ return $api_response;
795
+ }
796
+ /**
797
+ * Connect with CookieYes
798
+ *
799
+ * @return array
800
+ */
801
+ public function ckyes_connect() {
802
+ $api_response = array(
803
+ 'status' => false,
804
+ );
805
+ $this->change_status( true );
806
+ $api_response['status'] = true;
807
+ return $api_response;
808
+ }
809
+ /**
810
+ * Chane status
811
+ *
812
+ * @param boolean $status current status.
813
+ * @return void
814
+ */
815
+ public function change_status( $status = false ) {
816
+ $ckye_status = 0;
817
+ if ( true === $status ) {
818
+ $ckye_status = 1;
819
+ }
820
+ $ckyes_options = $this->get_cookieyes_options();
821
+ $ckyes_options['status'] = $ckye_status;
822
+ $this->set_cookieyes_options( $ckyes_options );
823
+ }
824
+ /**
825
+ * Refresh the current scan token
826
+ *
827
+ * @return array
828
+ */
829
+ protected function refresh_scan_token() {
830
+
831
+ $token = $this->get_access_token();
832
+
833
+ if ( empty( $token ) ) {
834
+ return false;
835
+ }
836
+ $endpoint = $this->get_base_path() . 'scan/token';
837
+ $response = $this->wt_remote_request( 'GET', $endpoint, false, $token );
838
+ return $response;
839
+ }
840
+ /**
841
+ * Return the current scanning status
842
+ *
843
+ * @param int $scan_id CookieYes scan ID.
844
+ * @return array
845
+ */
846
+ protected function get_scan_status( $scan_id ) {
847
+
848
+ $token = $this->get_access_token();
849
+
850
+ if ( empty( $token ) ) {
851
+ return false;
852
+ }
853
+ $endpoint = $this->get_base_path() . 'scan/' . $scan_id . '/status';
854
+ $response = $this->wt_remote_request( 'GET', $endpoint, false, $token );
855
+ return $response;
856
+ }
857
+ /**
858
+ * Return the final san results
859
+ *
860
+ * @param int $scan_id CookieYes scan ID.
861
+ * @return array
862
+ */
863
+ protected function get_scan_results( $scan_id ) {
864
+
865
+ $token = $this->get_access_token();
866
+
867
+ if ( empty( $token ) ) {
868
+ return false;
869
+ }
870
+ $endpoint = $this->get_base_path() . 'scan/' . $scan_id . '/result';
871
+
872
+ $response = $this->wt_remote_request( 'GET', $endpoint, false, $token );
873
+ return $response;
874
+ }
875
+ /**
876
+ * Add option to enable / disable cookeiyes branding on settings popup
877
+ *
878
+ * @since 1.9.6
879
+ * @access public
880
+ */
881
+ public function ckyes_settings() {
882
+
883
+ if ( $this->get_cookieyes_status() !== false ) : // wt_cli_temp_fix.
884
+
885
+ ?>
886
+ <table class="form-table">
887
+ <tr valign="top">
888
+ <th scope="row"></th>
889
+ <td>
890
+ <button class="wt-cli-ckyes-delete-btn button" data-action="show-prompt"><?php echo __('Delete site data from CookieYes '); ?></button>
891
+ </td>
892
+ </tr>
893
+ </table>
894
+ <div class='wt-cli-modal' id='wt-cli-ckyes-modal-delete-account'>
895
+ <span class="wt-cli-modal-js-close">×</span>
896
+ <div class="wt-cli-modal-header"><h4><?php echo __( 'Do you really want to delete your website from CookieYes', 'cookie-law-info' ); ?></h4></div>
897
+ <div class="wt-cli-modal-body">
898
+ <p><?php echo sprintf( __( 'This action will clear all your website data from CookieYes. If you have multiple websites added to your CookieYes account, then only the data associated with this website get deleted. Otherwise, your entire account will be deleted.', 'cookie-law-info' ), $this->get_user_email() ); // phpcs:ignore WordPress.Security.EscapeOutput ?></p>
899
+ <button class="wt-cli-action wt-cli-ckyes-delete-btn button button-primary" data-action="delete-account" ><?php echo __( 'Delete this website', 'cookie-law-info' ); // phpcs:ignore WordPress.Security.EscapeOutput ?></button>
900
+ </div>
901
+ </div>
902
+ <?php
903
+ endif;
904
+ }
905
+ /**
906
+ * CookieYes branding settings update
907
+ *
908
+ * @return void
909
+ */
910
+ public function ckyes_save_settings() {
911
+
912
+ if ( ! current_user_can( 'manage_options' ) ) {
913
+ wp_die( __( 'You do not have sufficient permission to perform this operation', 'cookie-law-info' ) ); // phpcs:ignore WordPress.Security.EscapeOutput
914
+ }
915
+ check_admin_referer( 'cookielawinfo-update-' . CLI_SETTINGS_FIELD );
916
+ if ( isset( $_POST['wt-cli-ckyes-branding'] ) && 'yes' === $_POST['wt-cli-ckyes-branding'] ) {
917
+ $this->set_ckyes_branding( true );
918
+ } else {
919
+ $this->set_ckyes_branding( false );
920
+ }
921
+ }
922
+ /**
923
+ * CookieYes branding status
924
+ *
925
+ * @return bool
926
+ */
927
+ public function get_ckyes_branding() {
928
+ $ckyes_branding = get_option( 'wt_cli_ckyes_branding', false );
929
+ if ( false !== $ckyes_branding ) {
930
+ return sanitize_text_field( $ckyes_branding );
931
+ }
932
+ return false;
933
+ }
934
+ /**
935
+ * Save CookieYes branding options
936
+ *
937
+ * @param string $value status value.
938
+ * @return void
939
+ */
940
+ public function set_ckyes_branding( $value ) {
941
+ if ( true === $value ) {
942
+ update_option( 'wt_cli_ckyes_branding', 'yes' );
943
+ } else {
944
+ update_option( 'wt_cli_ckyes_branding', 'no' );
945
+ }
946
+ }
947
+ /**
948
+ * Get CookieYes branding default options
949
+ *
950
+ * @return void
951
+ */
952
+ public function set_ckyes_branding_default() {
953
+ if ( $this->get_ckyes_branding() === false ) {
954
+ $this->set_ckyes_branding( true );
955
+ }
956
+ }
957
+ /**
958
+ * Show CookieYes branding logo on the settings page
959
+ *
960
+ * @return bool
961
+ */
962
+ public function show_ckyes_branding() {
963
+ if ( $this->get_ckyes_branding() === 'yes' && $this->get_cookieyes_status() === 1 ) {
964
+ return true;
965
+ }
966
+ return false;
967
+ }
968
+ /**
969
+ * Check if email verified or not
970
+ *
971
+ * @return array
972
+ */
973
+ public function check_email_verified() {
974
+
975
+ $response = $this->get_default_response();
976
+
977
+ if ( 2 === $this->get_cookieyes_status() ) {
978
+ $response['code'] = self::EC_WT_CKYES_PENDING_VERIFICATION;
979
+ $response['status'] = false;
980
+ $response['html'] = $this->get_email_verification_html( true );
981
+ } else {
982
+ $response = $this->ckyes_connect();
983
+ }
984
+ return $response;
985
+ }
986
+ /**
987
+ * Return email verification modal HTML
988
+ *
989
+ * @param boolean $pending Whether already email verification send or not.
990
+ * @param boolean $resend Disable resend.
991
+ * @return string
992
+ */
993
+ public function get_email_verification_html( $pending = false, $resend = true ) {
994
+
995
+ $html = '';
996
+ $resend_message = '';
997
+
998
+ /* translators: %s: user email. */
999
+ $message = sprintf( __( "We've sent an account verification link to the email address %s. Please click on the link given in email to verify your account with CookieYes.", 'cookie-law-info' ), $this->get_user_email() );
1000
+
1001
+ if ( true === $resend ) {
1002
+ /* translators: %s: Resent link. */
1003
+ $resend_message = wp_kses(
1004
+ __( "If you didn't receive the email, click <a id='wt-cli-ckyes-email-resend-link' role='button'>here</a> to resend the verification email.", 'cookie-law-info' ),
1005
+ array(
1006
+ 'a' => array(
1007
+ 'href' => array(),
1008
+ 'class' => array(),
1009
+ 'id' => array(),
1010
+ 'role' => array(),
1011
+ ),
1012
+ )
1013
+ );
1014
+ }
1015
+ $heading = __( 'Verification link sent', 'cookie-law-info' );
1016
+ if ( true === $pending ) {
1017
+ $heading = __( 'Pending email verification!', 'cookie-law-info' );
1018
+ }
1019
+ $html .= '<div class="wt-cli-ckyes-form-email-verify">';
1020
+ $html .= '<h4>' . $heading . '</h4>';
1021
+ $html .= '<div>' . $message . '</div>';
1022
+ $html .= '<div>' . $resend_message . '</div>';
1023
+ $html .= '</div>';
1024
+
1025
+ return $html;
1026
+ }
1027
+ /**
1028
+ * API request to abort the CookieYes scan.
1029
+ *
1030
+ * @param int $scan_id scan ID.
1031
+ * @return array
1032
+ */
1033
+ public function ckyes_abort_scan( $scan_id ) {
1034
+ $api_response = $this->get_default_response();
1035
+ $token = $this->get_access_token();
1036
+
1037
+ if ( empty( $token ) ) {
1038
+ return false;
1039
+ }
1040
+ $endpoint = $this->get_base_path() . 'scan/' . $scan_id . '/abort';
1041
+ $response = $this->wt_remote_request( 'POST', $endpoint, false, $token );
1042
+ if ( isset( $response['scan_result'] ) && 'cancelled' === $response['scan_result'] ) {
1043
+ $api_response['status'] = true;
1044
+ $api_response['code'] = self::WT_CKYES_ABORT_SUCCESSFULL;
1045
+ }
1046
+ return $api_response;
1047
+ }
1048
+ /**
1049
+ * Return login form HTML
1050
+ *
1051
+ * @return string
1052
+ */
1053
+ public function get_login_html() {
1054
+
1055
+ $html = '';
1056
+ $html .= '<div class="wt-cli-modal-body">';
1057
+ $html .= '<div class="wt-cli-ckyes-login-icon">';
1058
+ $html .= '<span class="dashicons dashicons-admin-users"></span>';
1059
+ $html .= '</div>';
1060
+ $html .= '<h4>' . sprintf( __( 'Looks like you already have an account with CookieYes for email id %s, please login to continue.', 'cookie-law-info' ), $this->get_user_email() ) . '</h4>';
1061
+ $html .= '<form id="wt-cli-ckyes-form-login">';
1062
+ $html .= '<div class="wt-cli-form-row">';
1063
+ $html .= '<input type="email" name="ckyes-email" class="wt-cli-form-input" placeholder="'.__("Email","cookie-law-info").'" value="' . $this->get_user_email() . '"/>';
1064
+ $html .= '<input type="password" name="ckyes-password" class="wt-cli-form-input" placeholder="'.__("Password","cookie-law-info").'" />';
1065
+ $html .= '</div>';
1066
+ $html .= '<p style="color: #757575">' . __( 'Please check if you have received an email with your password from CookieYes.', 'cookie-law-info' ) . '</p>';
1067
+ $html .= '<p style="color: #757575;">' . __( 'If you did not get the email, click “Reset password” to create a new password.', 'cookie-law-info' ) . '</p>';
1068
+ $html .= '<div class="wt-cli-action-container">';
1069
+ $html .= '<div class="wt-cli-action-group">';
1070
+ $html .= '<a href="#" id="wt-cli-ckyes-pwd-reset-link" class="wt-cli-action-link">' . __( 'Reset password', 'cookie-law-info' ) . '</a>';
1071
+ $html .= '</div>';
1072
+ $html .= '<div class="wt-cli-action-group">';
1073
+ $html .= '<button id="wt-cli-ckyes-login-btn" class="wt-cli-action button button-primary">' . __( 'Login', 'cookie-law-info' ) . '</button>';
1074
+ $html .= '</div>';
1075
+ $html .= '</div>';
1076
+ $html .= '</form>';
1077
+ $html .= '</div>';
1078
+ return $html;
1079
+
1080
+ }
1081
+ public function delete_account() {
1082
+
1083
+ $api_response = $this->get_default_response();
1084
+ if( 1 === apply_filters('wt_cli_cookie_scan_status',0) ) {
1085
+ $ckyes_scan_id = $this->get_ckyes_scan_id();
1086
+ if( $ckyes_scan_id ) {
1087
+ $response = $this->ckyes_abort_scan( $ckyes_scan_id );
1088
+ $status = isset( $response['status'] ) ? $response['status'] : false;
1089
+ if( false === $status ) {
1090
+ wp_send_json_error();
1091
+ }
1092
+ do_action('wt_cli_ckyes_abort_scan' );
1093
+ }
1094
+ }
1095
+ $this->delete_ckyes_account();
1096
+
1097
+ }
1098
+ public function delete_ckyes_account(){
1099
+ $api_response = $this->get_default_response();
1100
+ $token = $this->get_access_token();
1101
+
1102
+ if ( empty( $token ) ) {
1103
+ return $api_response;
1104
+ }
1105
+
1106
+ $endpoint = $this->get_base_path() . 'users/delete';
1107
+ $response = $this->wt_remote_request( 'POST', $endpoint, false, $token );
1108
+
1109
+ if ( isset( $response['status'] ) && 'deleted_successfully' === $response['status'] ) {
1110
+ $api_response['status'] = true;
1111
+ $this->reset_token();
1112
+ wp_send_json_success();
1113
+ }
1114
+ wp_send_json_error();
1115
+ }
1116
+ public function get_ckyes_scan_data() {
1117
+
1118
+ if( !$this->ckyes_scan_data ) {
1119
+ $scan_data = array(
1120
+ 'scan_id' => 0,
1121
+ 'scan_status' => '',
1122
+ 'scan_token' => '',
1123
+ 'scan_estimate' => ''
1124
+ );
1125
+ $ckyes_scan_data = get_option('wt_cli_ckyes_scan_options', false);
1126
+
1127
+ if ($ckyes_scan_data !== false && is_array($ckyes_scan_data)) {
1128
+
1129
+ $scan_data['scan_id'] = intval(isset($ckyes_scan_data['scan_id']) ? $ckyes_scan_data['scan_id'] : 0);
1130
+ $scan_data['scan_status'] = isset($ckyes_scan_data['scan_status']) ? $ckyes_scan_data['scan_status'] : 0;
1131
+ $scan_data['scan_token'] = isset($ckyes_scan_data['scan_token']) ? $ckyes_scan_data['scan_token'] : '';
1132
+ $scan_data['scan_estimate'] = isset($ckyes_scan_data['scan_estimate']) ? $ckyes_scan_data['scan_estimate'] : 0;
1133
+ $scan_data['scan_instance'] = isset($ckyes_scan_data['scan_instance']) ? $ckyes_scan_data['scan_instance'] : 0;
1134
+
1135
+ } else {
1136
+ return false;
1137
+ }
1138
+ $this->ckyes_scan_data = $scan_data;
1139
+ }
1140
+ return $this->ckyes_scan_data;
1141
+ }
1142
+ public function get_ckyes_scan_id() {
1143
+ $ckyes_scan_data = $this->get_ckyes_scan_data();
1144
+ return ( isset( $ckyes_scan_data['scan_id'] ) ? $ckyes_scan_data['scan_id'] : 0 );
1145
+ }
1146
+
1147
+ public function get_ckyes_scan_status() {
1148
+ $ckyes_scan_data = $this->get_ckyes_scan_data();
1149
+ return ( isset( $ckyes_scan_data['scan_status'] ) ? intval( $ckyes_scan_data['scan_status'] ) : 0 );
1150
+ }
1151
+
1152
+ public function get_ckyes_scan_token() {
1153
+ $ckyes_scan_data = $this->get_ckyes_scan_data();
1154
+ return ( isset( $ckyes_scan_data['scan_token'] ) ? $ckyes_scan_data['scan_token'] : '' );
1155
+ }
1156
+
1157
+ public function get_ckyes_scan_estimate() {
1158
+ $ckyes_scan_data = $this->get_ckyes_scan_data();
1159
+ return ( isset( $ckyes_scan_data['scan_estimate'] ) ? $ckyes_scan_data['scan_estimate'] : 0 );
1160
+ }
1161
+
1162
+ public function set_ckyes_scan_id( $value = 0 ) {
1163
+ $this->set_ckyes_scan_data( 'scan_id', $value );
1164
+ }
1165
+
1166
+ public function set_ckyes_scan_status( $value = 0 ){
1167
+ $this->set_ckyes_scan_data( 'scan_status', $value );
1168
+ }
1169
+
1170
+ public function set_ckyes_scan_token( $value = '' ){
1171
+ $this->set_ckyes_scan_data( 'scan_token', $value );
1172
+ }
1173
+
1174
+ public function set_ckyes_scan_estimate( $value = 0 ){
1175
+ $this->set_ckyes_scan_data( 'scan_estimate', $value );
1176
+ }
1177
+
1178
+ public function set_ckyes_scan_data( $option_name, $value ) {
1179
+ $options = $this->get_ckyes_scan_data();
1180
+ $options[ $option_name ] = $value;
1181
+ update_option('wt_cli_ckyes_scan_options', $options );
1182
+ $this->ckyes_scan_data = $options;
1183
+ }
1184
+ public function reset_scan_token(){
1185
+ delete_option('wt_cli_ckyes_scan_options');
1186
+ }
1187
+
1188
+ public function set_ckyes_scan_instance(){
1189
+ $instance_id = 'wt-cli-scan-'.wp_create_nonce( $this->module_id );
1190
+ $instance_id = base64_encode( $instance_id );
1191
+ $this->set_ckyes_scan_data( 'scan_instance', $instance_id );
1192
+ return $instance_id;
1193
+ }
1194
+ public function get_ckyes_scan_instance(){
1195
+ $ckyes_scan_data = $this->get_ckyes_scan_data();
1196
+ return ( isset( $ckyes_scan_data['scan_instance'] ) ? $ckyes_scan_data['scan_instance'] : 0 );
1197
+ }
1198
+ }
1199
+ $settings_popup = new Cookie_Law_Info_Cookieyes();
1200
+ }
includes/class-cookie-law-info-languages.php ADDED
@@ -0,0 +1,149 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Cookies module to handle all the cookies related operations
5
+ *
6
+ * @version 1.9.6
7
+ * @package CookieLawInfo
8
+ */
9
+
10
+ // https://wpml.org/wpml-hook/wpml_set_element_language_details/
11
+ // https://wpml.org/forums/topic/programmatically-create-post-in-different-languages/
12
+ // https://polylang.wordpress.com/documentation/documentation-for-developers/functions-reference/
13
+
14
+ if ( ! defined( 'ABSPATH' ) ) {
15
+ exit;
16
+ }
17
+
18
+ class Cookie_Law_Info_Languages {
19
+
20
+
21
+ private static $instance;
22
+
23
+ public function __construct() {
24
+
25
+ }
26
+
27
+ public static function get_instance() {
28
+ if ( null === self::$instance ) {
29
+ self::$instance = new self();
30
+ }
31
+
32
+ return self::$instance;
33
+ }
34
+ /**
35
+ * Check whether a multi language plugin is active or not
36
+ *
37
+ * @access public
38
+ * @return boolean
39
+ */
40
+ public function is_multilanguage_plugin_active() {
41
+ $status = false;
42
+
43
+ if ( defined( 'ICL_LANGUAGE_CODE' ) || defined( 'POLYLANG_FILE' ) ) {
44
+ $status = true;
45
+ }
46
+
47
+ return $status;
48
+ }
49
+
50
+ /**
51
+ * Get default language of the site
52
+ *
53
+ * @access public
54
+ * @return string
55
+ */
56
+ public function get_default_language_code() {
57
+ $default = null;
58
+
59
+ if ( $this->is_multilanguage_plugin_active() ) {
60
+ // Polylang
61
+ if ( function_exists( 'pll_default_language' ) ) {
62
+ $default = pll_default_language();
63
+ } else {
64
+ // WPML
65
+ $null = null;
66
+ $default = apply_filters( 'wpml_default_language', $null );
67
+ }
68
+ } else {
69
+ $default = CLI_DEFAULT_LANGUAGE;
70
+ }
71
+
72
+ return $default;
73
+ }
74
+
75
+ /**
76
+ * Returns the current lanugage of the site
77
+ *
78
+ * @access public
79
+ * @return string
80
+ */
81
+ public function get_current_language_code() {
82
+ $current_language = null;
83
+
84
+ if ( $this->is_multilanguage_plugin_active() ) {
85
+ // Polylang
86
+ if ( function_exists( 'pll_current_language' ) ) {
87
+
88
+ $current_language = pll_current_language();
89
+
90
+ // If current_language is still empty, we have to get the default language
91
+ if ( empty( $current_language ) ) {
92
+ $current_language = pll_default_language();
93
+ }
94
+ } else {
95
+ // WPML
96
+ $null = null;
97
+ $current_language = apply_filters( 'wpml_current_language', $null );
98
+ }
99
+
100
+ // Fallback
101
+ if ( $current_language === 'all' ) {
102
+ $current_language = $this->get_default_language_code();
103
+ }
104
+ } else {
105
+ $current_language = CLI_DEFAULT_LANGUAGE;
106
+ }
107
+
108
+ return $current_language;
109
+ }
110
+ public function get_term_by_language( $term_id, $language ) {
111
+ $term = false;
112
+ if ( $this->is_multilanguage_plugin_active() ) {
113
+ // Polylang
114
+ if ( function_exists( 'pll_get_term_translations' ) ) {
115
+ $terms = pll_get_term_translations( $term_id );
116
+ if ( isset( $terms[ $language ] ) ) {
117
+ $original_term_id = $terms[ $language ];
118
+ $term = get_term_by( 'id', $original_term_id, 'cookielawinfo-category' );
119
+ }
120
+ } else {
121
+ // WPML
122
+ if ( function_exists( 'icl_object_id' ) ) {
123
+ global $sitepress;
124
+ if ( $sitepress ) {
125
+ if ( version_compare( ICL_SITEPRESS_VERSION, '3.2.0' ) >= 0 ) {
126
+ $original_term_id = apply_filters( 'wpml_object_id', $term_id, 'category', true, $language );
127
+ } else {
128
+ $original_term_id = icl_object_id( $term_id, 'category', true, $language );
129
+ }
130
+ remove_filter( 'get_term', array( $sitepress, 'get_term_adjust_id' ), 1 );
131
+ $term = get_term_by( 'id', $original_term_id, 'cookielawinfo-category' );
132
+ add_filter( 'get_term', array( $sitepress, 'get_term_adjust_id' ), 1, 1 );
133
+ }
134
+ }
135
+ }
136
+ }
137
+ return $term;
138
+ }
139
+
140
+ public function maybe_set_term_language( $term_id ) {
141
+ if ( $this->is_multilanguage_plugin_active() ) {
142
+ // Polylang
143
+ if ( function_exists( 'pll_set_term_language' ) ) {
144
+ $language = $this->get_default_language_code();
145
+ pll_set_term_language( $term_id, $language );
146
+ }
147
+ }
148
+ }
149
+ }
includes/class-cookie-law-info.php CHANGED
@@ -69,6 +69,7 @@ class Cookie_Law_Info {
69
  *
70
  * @since 1.6.6
71
  */
 
72
  public function __construct()
73
  {
74
  if(defined( 'CLI_VERSION' ))
@@ -77,7 +78,7 @@ class Cookie_Law_Info {
77
  }
78
  else
79
  {
80
- $this->version = '1.9.5';
81
  }
82
  $this->plugin_name = 'cookie-law-info';
83
 
@@ -112,6 +113,19 @@ class Cookie_Law_Info {
112
  * core plugin.
113
  */
114
  require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-cookie-law-info-loader.php';
 
 
 
 
 
 
 
 
 
 
 
 
 
115
 
116
  /**
117
  * The class responsible for defining internationalization functionality
@@ -119,6 +133,17 @@ class Cookie_Law_Info {
119
  */
120
  require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-cookie-law-info-i18n.php';
121
 
 
 
 
 
 
 
 
 
 
 
 
122
  /**
123
  * The class responsible for defining all actions that occur in the admin area.
124
  */
@@ -173,10 +198,7 @@ class Cookie_Law_Info {
173
 
174
 
175
  $this->loader->add_action( 'admin_menu', $plugin_admin, 'admin_menu',11); /* Adding admin menu */
176
- $this->loader->add_action( 'admin_init', $plugin_admin, 'add_meta_box'); /* Adding custom meta box */
177
- $this->loader->add_action( 'save_post', $plugin_admin, 'save_custom_metaboxes');/* Saving meta box data */
178
- $this->loader->add_action( 'manage_edit-cookielawinfo_columns', $plugin_admin, 'manage_edit_columns'); /* Customizing listing column */
179
- $this->loader->add_action( 'manage_posts_custom_column', $plugin_admin, 'manage_posts_custom_columns');
180
 
181
  $this->loader->add_action('admin_menu',$plugin_admin,'remove_cli_addnew_link');
182
 
@@ -207,11 +229,10 @@ class Cookie_Law_Info {
207
 
208
  $this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_styles' );
209
  $this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_scripts' );
210
- $this->loader->add_action( 'init', $plugin_public,'register_custom_post_type');
211
  $this->loader->add_action( 'template_redirect', $plugin_public,'cli_set_category_cookies');
212
 
213
  $plugin_public->common_modules();
214
-
215
  //below hook's functions needs update
216
  $this->loader->add_action( 'init',$plugin_public,'other_plugin_compatibility');
217
  $this->loader->add_action( 'wp_footer',$plugin_public,'cookielawinfo_inject_cli_script');
@@ -617,13 +638,19 @@ class Cookie_Law_Info {
617
  break;
618
  // Basic sanitisation for all the rest:
619
  default:
620
- $ret = sanitize_text_field( $value );
621
  break;
622
  }
623
  if(('is_eu_on' === $key || 'logging_on' == $key) && 'fffffff' === $ret) $ret = false;
624
  return $ret;
625
  }
626
-
 
 
 
 
 
 
627
  public static function get_non_necessary_cookie_ids()
628
  {
629
 
@@ -947,7 +974,7 @@ class Cookie_Law_Info {
947
  * @since 1.8.9
948
  * @return bool
949
  */
950
- public static function maybe_first_time_install()
951
  {
952
  $plugin_settings = get_option(CLI_SETTINGS_FIELD);
953
  if( $plugin_settings === false ) {
@@ -960,6 +987,15 @@ class Cookie_Law_Info {
960
  }
961
  return false;
962
  }
 
 
 
 
 
 
 
 
 
963
  /**
964
  * Return js options
965
  *
69
  *
70
  * @since 1.6.6
71
  */
72
+ public static $db_initial_version = '1.9.4';
73
  public function __construct()
74
  {
75
  if(defined( 'CLI_VERSION' ))
78
  }
79
  else
80
  {
81
+ $this->version = '2.0.0';
82
  }
83
  $this->plugin_name = 'cookie-law-info';
84
 
113
  * core plugin.
114
  */
115
  require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-cookie-law-info-loader.php';
116
+
117
+ /**
118
+ * Webtoffee Security Library
119
+ * Includes Data sanitization, Access checking
120
+ */
121
+
122
+ require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wt-security-helper.php';
123
+
124
+ /**
125
+ * The class which integrates Cookieyes services to the plugin
126
+ */
127
+ require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-cookie-law-info-cookieyes.php';
128
+
129
 
130
  /**
131
  * The class responsible for defining internationalization functionality
133
  */
134
  require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-cookie-law-info-i18n.php';
135
 
136
+ /**
137
+ * The class responsible for handling multi language features
138
+ * of the plugin.
139
+ */
140
+ require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-cookie-law-info-languages.php';
141
+
142
+ /**
143
+ * The class which integrates Cookieyes services to the plugin
144
+ */
145
+ // require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-cookie-law-info-cookieyes.php';
146
+
147
  /**
148
  * The class responsible for defining all actions that occur in the admin area.
149
  */
198
 
199
 
200
  $this->loader->add_action( 'admin_menu', $plugin_admin, 'admin_menu',11); /* Adding admin menu */
201
+
 
 
 
202
 
203
  $this->loader->add_action('admin_menu',$plugin_admin,'remove_cli_addnew_link');
204
 
229
 
230
  $this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_styles' );
231
  $this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_scripts' );
 
232
  $this->loader->add_action( 'template_redirect', $plugin_public,'cli_set_category_cookies');
233
 
234
  $plugin_public->common_modules();
235
+
236
  //below hook's functions needs update
237
  $this->loader->add_action( 'init',$plugin_public,'other_plugin_compatibility');
238
  $this->loader->add_action( 'wp_footer',$plugin_public,'cookielawinfo_inject_cli_script');
638
  break;
639
  // Basic sanitisation for all the rest:
640
  default:
641
+ $ret = self::wt_cli_clean( $value );
642
  break;
643
  }
644
  if(('is_eu_on' === $key || 'logging_on' == $key) && 'fffffff' === $ret) $ret = false;
645
  return $ret;
646
  }
647
+ public static function wt_cli_clean( $var ){
648
+ if ( is_array( $var ) ) {
649
+ return array_map( 'self::wt_cli_clean' , $var );
650
+ } else {
651
+ return is_scalar( $var ) ? sanitize_text_field( $var ) : $var;
652
+ }
653
+ }
654
  public static function get_non_necessary_cookie_ids()
655
  {
656
 
974
  * @since 1.8.9
975
  * @return bool
976
  */
977
+ public static function check_for_upgrade()
978
  {
979
  $plugin_settings = get_option(CLI_SETTINGS_FIELD);
980
  if( $plugin_settings === false ) {
987
  }
988
  return false;
989
  }
990
+ public static function maybe_first_time_install()
991
+ {
992
+ $maybe_first_time = false;
993
+ $activation_transient = wp_validate_boolean( get_transient('_wt_cli_first_time_activation') );
994
+ if( $activation_transient === true ) {
995
+ $maybe_first_time = true;
996
+ }
997
+ return $maybe_first_time;
998
+ }
999
  /**
1000
  * Return js options
1001
  *
includes/class-wt-security-helper.php ADDED
@@ -0,0 +1,179 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Webtoffee Security Library
5
+ *
6
+ * Includes Data sanitization, Access checking
7
+ * @author WebToffee <info@webtoffee.com>
8
+ */
9
+
10
+ if(!class_exists('Wt_Security_Helper'))
11
+ {
12
+
13
+ class Wt_Cookie_Law_Info_Security_Helper
14
+ {
15
+
16
+ /**
17
+ * Data sanitization function.
18
+ *
19
+ * @param mixed $val value to sanitize
20
+ * @param string $key array key in the validation rule
21
+ * @param array $validation_rule array of validation rules. Eg: array('field_key' => array('type' => 'textarea'))
22
+ * @return mixed sanitized value
23
+ */
24
+ public static function sanitize_data($val, $key, $validation_rule = array())
25
+ {
26
+ if(isset($validation_rule[$key]) && is_array($validation_rule[$key])) /* rule declared/exists */
27
+ {
28
+ if(isset($validation_rule[$key]['type']))
29
+ {
30
+ $val = self::sanitize_item($val, $validation_rule[$key]['type']);
31
+ }
32
+ }else //if no rule is specified then it will be treated as text
33
+ {
34
+ $val = self::sanitize_item($val, 'text');
35
+ }
36
+ return $val;
37
+ }
38
+
39
+
40
+ /**
41
+ * Sanitize individual data item
42
+ *
43
+ * @param mixed $val value to sanitize
44
+ * @param string $type value type
45
+ * @return mixed sanitized value
46
+ */
47
+ public static function sanitize_item($val, $type='')
48
+ {
49
+ switch ($type)
50
+ {
51
+ case 'text':
52
+ $val = sanitize_text_field($val);
53
+ break;
54
+ case 'text_arr':
55
+ $val = self::sanitize_arr($val);
56
+ break;
57
+ case 'url':
58
+ $val = esc_url_raw($val);
59
+ break;
60
+ case 'url_arr':
61
+ $val = self::sanitize_arr($val, 'url');
62
+ break;
63
+ case 'textarea':
64
+ $val=sanitize_textarea_field($val);
65
+ break;
66
+ case 'int':
67
+ $val = intval($val);
68
+ break;
69
+ case 'int_arr':
70
+ $val = self::sanitize_arr($val, 'int');
71
+ break;
72
+ case 'float':
73
+ $val = floatval($val);
74
+ break;
75
+ case 'post_content':
76
+ $val = wp_kses_post($val);
77
+ break;
78
+ case 'hex':
79
+ $val = sanitize_hex_color($val);
80
+ break;
81
+ default:
82
+ $val = sanitize_text_field($val);
83
+ }
84
+
85
+ return $val;
86
+ }
87
+
88
+ /**
89
+ * Recursive array sanitization function
90
+ *
91
+ * @param mixed $arr value to sanitize
92
+ * @param string $type value type
93
+ * @return mixed sanitized value
94
+ */
95
+ public static function sanitize_arr($arr, $type = 'text')
96
+ {
97
+ if(is_array($arr))
98
+ {
99
+ $out = array();
100
+ foreach($arr as $k=>$arrv)
101
+ {
102
+ if(is_array($arrv))
103
+ {
104
+ $out[$k] = self::sanitize_arr($arrv, $type);
105
+ }else
106
+ {
107
+ $out[$k] = self::sanitize_item($arrv, $type);
108
+ }
109
+ }
110
+ return $out;
111
+ }else
112
+ {
113
+ return self::sanitize_item($arr, $type);
114
+ }
115
+ }
116
+
117
+ /**
118
+ * User accessibility. Function checks user logged in status, nonce and role access.
119
+ *
120
+ * @param string $plugin_id unique plugin id. Note: This id is used as an identifier in filter name so please use characters allowed in filters
121
+ * @param string $nonce_id Nonce id. If not specified then uses plugin id
122
+ * @return boolean if user allowed or not
123
+ */
124
+ public static function check_write_access($plugin_id, $nonce_id = '')
125
+ {
126
+ $er = true;
127
+
128
+ if(!is_user_logged_in()) //checks user is logged in
129
+ {
130
+ $er = false;
131
+ }
132
+
133
+ if($er === true) //no error then proceed
134
+ {
135
+ $nonce = (isset($_REQUEST['_wpnonce']) ? sanitize_text_field($_REQUEST['_wpnonce']) : '');
136
+ $nonce = (is_array($nonce) ? $nonce[0] : $nonce); //in some cases multiple nonces are declared
137
+ $nonce_id = ($nonce_id == "" ? $plugin_id : $nonce_id); //if nonce id not provided then uses plugin id as nonce id
138
+
139
+ if(!(wp_verify_nonce($nonce, $nonce_id))) //verifying nonce
140
+ {
141
+ $er = false;
142
+ }else
143
+ {
144
+ if(!self::check_role_access($plugin_id)) //Check user role
145
+ {
146
+ $er = false;
147
+ }
148
+ }
149
+ }
150
+ return $er;
151
+ }
152
+
153
+
154
+ /**
155
+ * Checks if user role has access
156
+ *
157
+ * @param string $plugin_id unique plugin id. Note: This id is used as an identifier in filter name so please use characters allowed in filters
158
+ * @return boolean if user allowed or not
159
+ */
160
+ public static function check_role_access($plugin_id)
161
+ {
162
+ $roles = array('manage_options');
163
+ $roles = apply_filters('wt_'.$plugin_id.'_alter_role_access', $roles); //dynamic filter based on plugin id to alter roles
164
+ $roles = (!is_array($roles) ? array() : $roles);
165
+ $is_allowed = false;
166
+
167
+ foreach($roles as $role) //loop through roles
168
+ {
169
+ if(current_user_can($role))
170
+ {
171
+ $is_allowed = true;
172
+ break;
173
+ }
174
+ }
175
+ return $is_allowed;
176
+ }
177
+
178
+ }
179
+ }
languages/cookie-law-info-bg_BG.mo DELETED
Binary file
languages/cookie-law-info-bg_BG.po DELETED
@@ -1,1899 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: \n"
4
- "POT-Creation-Date: 2020-11-17 11:27+0530\n"
5
- "PO-Revision-Date: 2020-11-17 11:28+0530\n"
6
- "Last-Translator: \n"
7
- "Language-Team: \n"
8
- "Language: bg\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.4.2\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
- "X-Poedit-KeywordsList: __;_e\n"
16
- "X-Poedit-SearchPath-0: .\n"
17
-
18
- #: admin/class-cookie-law-info-admin.php:147
19
- #: admin/class-cookie-law-info-admin.php:148
20
- #: admin/class-cookie-law-info-admin.php:247
21
- #: admin/partials/cookie-law-info-admin_settings.php:31
22
- msgid "Settings"
23
- msgstr "Настройки"
24
-
25
- #: admin/class-cookie-law-info-admin.php:155
26
- #: admin/class-cookie-law-info-admin.php:156
27
- #: public/modules/script-blocker/views/settings.php:174
28
- #: public/views/cookie-law-info_popup_content.php:23
29
- msgid "Non-necessary"
30
- msgstr "Non-необходимо"
31
-
32
- #: admin/class-cookie-law-info-admin.php:163
33
- #: admin/class-cookie-law-info-admin.php:164
34
- #: public/views/cookie-law-info_popup_content.php:22
35
- msgid "Necessary"
36
- msgstr "Необходимо"
37
-
38
- #: admin/class-cookie-law-info-admin.php:171
39
- #: admin/class-cookie-law-info-admin.php:172
40
- #: admin/partials/cookie-law-info-privacy_overview.php:25
41
- msgid "Privacy Overview"
42
- msgstr "Заглавие на общността за поверителност"
43
-
44
- #: admin/class-cookie-law-info-admin.php:221
45
- #: admin/class-cookie-law-info-admin.php:276
46
- #: admin/class-cookie-law-info-admin.php:334
47
- #: admin/class-cookie-law-info-admin.php:378
48
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:22
49
- #: public/modules/script-blocker/script-blocker.php:133
50
- #: public/modules/script-blocker/script-blocker.php:173
51
- #: public/modules/script-blocker/script-blocker.php:310
52
- msgid "You do not have sufficient permission to perform this operation"
53
- msgstr "Нямате достатъчно разрешение да изпълнявате тази операция"
54
-
55
- #: admin/class-cookie-law-info-admin.php:240
56
- #: admin/class-cookie-law-info-admin.php:306
57
- #: admin/class-cookie-law-info-admin.php:359
58
- #: admin/class-cookie-law-info-admin.php:403
59
- msgid "Settings Updated."
60
- msgstr "Обновени настройки."
61
-
62
- #: admin/class-cookie-law-info-admin.php:248
63
- msgid "Support"
64
- msgstr "Съпорт"
65
-
66
- #: admin/class-cookie-law-info-admin.php:249
67
- msgid "Premium Upgrade"
68
- msgstr "Premium Upgrade"
69
-
70
- #: admin/class-cookie-law-info-admin.php:418
71
- msgid "ERROR MIGRATING SETTINGS (ERROR: 2)"
72
- msgstr "ГРЕШКИ ЗА ИЗМЕРВАНЕ НА ГРЕШКИТЕ (ГРЕШКА: 2)"
73
-
74
- #: admin/class-cookie-law-info-admin.php:436
75
- msgid "Cookie ID"
76
- msgstr "ID на „бисквитката“"
77
-
78
- #: admin/class-cookie-law-info-admin.php:437
79
- msgid "Cookie Type"
80
- msgstr "Тип на бисквитката"
81
-
82
- #: admin/class-cookie-law-info-admin.php:438
83
- msgid "Cookie Duration"
84
- msgstr "Продължителност на бисквитките"
85
-
86
- #: admin/class-cookie-law-info-admin.php:439
87
- msgid "Cookie Sensitivity"
88
- msgstr "Чувствителност на бисквитките"
89
-
90
- #: admin/class-cookie-law-info-admin.php:689
91
- msgid "Close Header"
92
- msgstr "Затваряне на заглавието"
93
-
94
- #: admin/class-cookie-law-info-admin.php:693
95
- msgid "Open URL"
96
- msgstr "Отваряне на URL адрес"
97
-
98
- #: admin/class-cookie-law-info-admin.php:706
99
- msgid "Extra Large"
100
- msgstr "Много голям"
101
-
102
- #: admin/class-cookie-law-info-admin.php:710
103
- msgid "Large"
104
- msgstr "Голям"
105
-
106
- #: admin/class-cookie-law-info-admin.php:714
107
- msgid "Medium"
108
- msgstr "Cреда"
109
-
110
- #: admin/class-cookie-law-info-admin.php:718
111
- msgid "Small"
112
- msgstr "Mалък"
113
-
114
- #: admin/class-cookie-law-info-admin.php:732
115
- msgid "Default theme font"
116
- msgstr "Шрифт на тема по подразбиране"
117
-
118
- #: admin/class-cookie-law-info-admin.php:736
119
- msgid "Sans Serif"
120
- msgstr "Sans Serif"
121
-
122
- #: admin/class-cookie-law-info-admin.php:740
123
- msgid "Serif"
124
- msgstr "Serif"
125
-
126
- #: admin/class-cookie-law-info-admin.php:744
127
- msgid "Arial"
128
- msgstr "Arial"
129
-
130
- #: admin/class-cookie-law-info-admin.php:748
131
- msgid "Arial Black"
132
- msgstr "Arial Black"
133
-
134
- #: admin/class-cookie-law-info-admin.php:752
135
- msgid "Georgia, serif"
136
- msgstr "Georgia, serif"
137
-
138
- #: admin/class-cookie-law-info-admin.php:756
139
- msgid "Helvetica"
140
- msgstr "Helvetica"
141
-
142
- #: admin/class-cookie-law-info-admin.php:760
143
- msgid "Lucida"
144
- msgstr "Lucida"
145
-
146
- #: admin/class-cookie-law-info-admin.php:764
147
- msgid "Tahoma"
148
- msgstr "Tahoma"
149
-
150
- #: admin/class-cookie-law-info-admin.php:768
151
- msgid "Times New Roman"
152
- msgstr "Times New Roman"
153
-
154
- #: admin/class-cookie-law-info-admin.php:772
155
- msgid "Trebuchet"
156
- msgstr "Trebuchet"
157
-
158
- #: admin/class-cookie-law-info-admin.php:776
159
- msgid "Verdana"
160
- msgstr "Verdana"
161
-
162
- #: admin/modules/ccpa/ccpa.php:106
163
- msgid "Do you really wish to opt out?"
164
- msgstr "Наистина ли искате да се откажете?"
165
-
166
- #: admin/modules/ccpa/ccpa.php:107
167
- msgid "Confirm"
168
- msgstr "Потвърди"
169
-
170
- #: admin/modules/ccpa/ccpa.php:108
171
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:154
172
- msgid "Cancel"
173
- msgstr "Отказ"
174
-
175
- #: admin/modules/ccpa/ccpa.php:145
176
- msgid "Select the type of law"
177
- msgstr "Изберете типа закон"
178
-
179
- #: admin/modules/ccpa/ccpa.php:149
180
- msgid "GDPR"
181
- msgstr "GDPR"
182
-
183
- #: admin/modules/ccpa/ccpa.php:150 admin/modules/ccpa/ccpa.php:158
184
- msgid ""
185
- "Customize the buttons, notice, themes from the relevant tabs to setup your "
186
- "cookie notice accordingly."
187
- msgstr ""
188
- "Персонализирайте бутоните, известието, темите от съответните раздели, за да "
189
- "настроите съответно вашето известие за бисквитки."
190
-
191
- #: admin/modules/ccpa/ccpa.php:153
192
- msgid "CCPA"
193
- msgstr "ССРА"
194
-
195
- #: admin/modules/ccpa/ccpa.php:154
196
- msgid ""
197
- "Most of the customizations from the tabs for buttons, notice or themes are "
198
- "not relevant especially if you choose to not show the notice, except the Do "
199
- "not sell within the buttons."
200
- msgstr ""
201
- "Повечето персонализации от раздели за бутони, известие или теми не са "
202
- "подходящи, особено ако решите да не показвате известието, с изключение на "
203
- "„Не продавайте в рамките на бутоните“."
204
-
205
- #: admin/modules/ccpa/ccpa.php:157
206
- msgid "CCPA & GDPR"
207
- msgstr "CCPA & GDPR"
208
-
209
- #: admin/modules/ccpa/views/ccpa_settings.php:7
210
- msgid "CCPA Settings"
211
- msgstr "Настройки на CCPA"
212
-
213
- #: admin/modules/ccpa/views/ccpa_settings.php:7
214
- msgid ""
215
- "The right to opt out in the California Consumer Privacy Act gives consumers "
216
- "the ability to direct a business not to sell their personal information to a "
217
- "third party. If the user considers to not sell their personal information, "
218
- "all the scripts related to the categories which are configured to sell "
219
- "personal information will be blocked. The DO NOT SELL option is facilitated "
220
- "via a shortcode [wt_cli_ccpa_optout]."
221
- msgstr ""
222
- "Правото да се откажат от Калифорнийския закон за поверителност на "
223
- "потребителите дава на потребителите възможността да ръководят бизнес да не "
224
- "продават личната си информация на трета страна. Ако потребителят смята, че "
225
- "не продава личната си информация, всички скриптове, свързани с категориите, "
226
- "които са конфигурирани да продават лична информация, ще бъдат блокирани. "
227
- "Опцията НЕ ПРОДАВАЙ се улеснява чрез кратък код [wt_cli_ccpa_optout]."
228
-
229
- #: admin/modules/ccpa/views/ccpa_settings.php:10
230
- msgid "Enable CCPA ?"
231
- msgstr "Активиране на CCPA?"
232
-
233
- #: admin/modules/ccpa/views/ccpa_settings.php:18
234
- msgid "Enable CCPA notice"
235
- msgstr "Активиране на CCPA известие"
236
-
237
- #: admin/modules/ccpa/views/ccpa_settings.php:18
238
- msgid ""
239
- "Enabling the notice will display the banner with the relevant text as per "
240
- "your configuration. Use this option particularly to record prior consent "
241
- "from the website visitors."
242
- msgstr ""
243
- "Активирането на известието ще покаже банера със съответния текст според "
244
- "вашата конфигурация. Използвайте тази опция, особено за да запишете "
245
- "предварително съгласие от посетителите на уебсайта."
246
-
247
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:26
248
- msgid "Unable to handle your request."
249
- msgstr "Заявката ви не може да се обработи."
250
-
251
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:96
252
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:130
253
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:132
254
- msgid "Error"
255
- msgstr "Грешка"
256
-
257
- #: admin/modules/cli-policy-generator/classes/class-preview-page.php:27
258
- msgid "Cookie Policy"
259
- msgstr "Политика за „бисквитките“"
260
-
261
- #: admin/modules/cli-policy-generator/classes/class-preview-page.php:83
262
- msgid "Auto reload preview"
263
- msgstr "Визуализация за автоматично презареждане"
264
-
265
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:106
266
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:107
267
- #: admin/modules/cli-policy-generator/views/policy-generator.php:21
268
- msgid "Policy generator"
269
- msgstr "Генератор на политики"
270
-
271
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:133
272
- msgid "Success"
273
- msgstr "Yспех"
274
-
275
- #: admin/modules/cli-policy-generator/views/policy-generator.php:25
276
- msgid "Sample heading"
277
- msgstr "Заглавие на извадката"
278
-
279
- #: admin/modules/cli-policy-generator/views/policy-generator.php:26
280
- msgid "Sample content"
281
- msgstr "Примерно съдържание"
282
-
283
- #: admin/modules/cli-policy-generator/views/policy-generator.php:27
284
- msgid "Delete"
285
- msgstr "Изтрийте настройките и нулирайте"
286
-
287
- #: admin/modules/cli-policy-generator/views/policy-generator.php:49
288
- msgid "Add new"
289
- msgstr "Добави нов"
290
-
291
- #: admin/modules/cli-policy-generator/views/policy-generator.php:53
292
- msgid "Heading"
293
- msgstr "Заглавие"
294
-
295
- #: admin/modules/cli-policy-generator/views/policy-generator.php:57
296
- #: admin/views/admin_necessary_cookie.php:39
297
- #: admin/views/admin_non_necessary_cookie.php:54
298
- #: public/modules/script-blocker/views/settings.php:142
299
- #: public/modules/shortcode/shortcode.php:220
300
- msgid "Description"
301
- msgstr "Описание"
302
-
303
- #: admin/modules/cli-policy-generator/views/policy-generator.php:65
304
- msgid ""
305
- "Enabling this option will help us spread the word by placing a credit to "
306
- "WebToffee at the very end of the Cookie Policy page."
307
- msgstr ""
308
- "Активирането на тази опция ще ни помогне да разпространим думата, като "
309
- "поставим кредит на WebToffee в самия край на страницата „Правила за "
310
- "бисквитките“."
311
-
312
- #: admin/modules/cli-policy-generator/views/policy-generator.php:82
313
- msgid "Update existing Cookie Policy page"
314
- msgstr "Актуализирайте съществуващата страница „Правила за бисквитките“"
315
-
316
- #: admin/modules/cli-policy-generator/views/policy-generator.php:88
317
- msgid "Create Cookie Policy page"
318
- msgstr "Създайте страница „Правила за бисквитките“"
319
-
320
- #: admin/modules/cli-policy-generator/views/policy-generator.php:92
321
- msgid "Live preview"
322
- msgstr "Предварителен преглед на живо"
323
-
324
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:43
325
- msgid "The plugin is complex to set up"
326
- msgstr "Приставката е сложна за настройка"
327
-
328
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:45
329
- msgid "Please describe which area you are facing difficulties"
330
- msgstr "Моля, опишете в коя област сте изправени пред трудности"
331
-
332
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:49
333
- msgid "I found a better plugin"
334
- msgstr "Намерих по-добър плъгин"
335
-
336
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:51
337
- msgid "Which plugin?"
338
- msgstr "Кой плъгин?"
339
-
340
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:55
341
- msgid "The plugin is great, but I need specific feature that you don't support"
342
- msgstr ""
343
- "Приставката е страхотна, но имам нужда от специфична функция, която не "
344
- "поддържате"
345
-
346
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:57
347
- msgid "Could you tell us more about that feature?"
348
- msgstr "Бихте ли ни разказали повече за тази функция?"
349
-
350
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:61
351
- msgid "The plugin didn't work as expected"
352
- msgstr "Приставката не работи според очакванията"
353
-
354
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:63
355
- msgid "What did you expect?"
356
- msgstr "Какво очакваше?"
357
-
358
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:67
359
- msgid "A conflict with another plugin or theme"
360
- msgstr "Конфликт с друга приставка или тема"
361
-
362
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:69
363
- msgid "Which plugin or theme?"
364
- msgstr "Кой плъгин или тема?"
365
-
366
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:73
367
- msgid "Translation issues"
368
- msgstr "Проблеми с превода"
369
-
370
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:77
371
- msgid "Incorrect/missing translation"
372
- msgstr "Неправилен / липсващ превод"
373
-
374
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:79
375
- msgid "Name the language"
376
- msgstr "Назовете езика"
377
-
378
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:83
379
- msgid ""
380
- "Unable to translate my dynamic content e.g, cookie message, button text etc"
381
- msgstr ""
382
- "Не мога да преведа динамичното си съдържание, напр. Съобщение за бисквитки, "
383
- "текст на бутон и т.н."
384
-
385
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:85
386
- msgid "Name the language and the translator plugin that you are using"
387
- msgstr "Назовете езика и приставката за преводач, които използвате"
388
-
389
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:91
390
- msgid "Upgrade to pro"
391
- msgstr "Надстройте до про"
392
-
393
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:95
394
- #: admin/views/admin-settings-general.php:10
395
- #: admin/views/admin-settings-general.php:66
396
- msgid "Other"
397
- msgstr "Другo"
398
-
399
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:97
400
- msgid "Could you tell us a bit more?"
401
- msgstr "Бихте ли ни казали малко повече?"
402
-
403
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:117
404
- msgid "If you have a moment, please let us know why you are deactivating:"
405
- msgstr "Ако имате момент, моля, уведомете ни защо деактивирате:"
406
-
407
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:144
408
- msgid ""
409
- "We do not collect any personal data when you submit this form. It's your "
410
- "feedback that we value."
411
- msgstr ""
412
- "Ние не събираме никакви лични данни, когато изпратите този формуляр. Ние "
413
- "ценим вашата обратна връзка."
414
-
415
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:145
416
- msgid "Privacy Policy"
417
- msgstr "Политика за поверителност"
418
-
419
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:152
420
- msgid "Go to support"
421
- msgstr "Отидете на поддръжка"
422
-
423
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:153
424
- msgid "Submit & Deactivate"
425
- msgstr "Изпращане и деактивиране"
426
-
427
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:155
428
- msgid "I rather wouldn't say"
429
- msgstr "По-скоро не бих казал"
430
-
431
- #: admin/partials/cookie-law-info-admin_settings.php:25
432
- #: admin/views/admin_necessary_cookie.php:20
433
- #: admin/views/admin_non_necessary_cookie.php:17
434
- msgid "Settings updated."
435
- msgstr "Параметрите са обновени."
436
-
437
- #: admin/partials/cookie-law-info-admin_settings.php:26
438
- #: admin/views/admin_necessary_cookie.php:21
439
- #: admin/views/admin_non_necessary_cookie.php:18
440
- msgid "Unable to update Settings."
441
- msgstr "Актуализиране на настройките."
442
-
443
- #: admin/partials/cookie-law-info-admin_settings.php:27
444
- msgid "Settings reset to defaults."
445
- msgstr "Изтрийте настройките и нулирайте."
446
-
447
- #: admin/partials/cookie-law-info-admin_settings.php:28
448
- msgid "Unable to reset settings."
449
- msgstr "Актуализиране на настройките."
450
-
451
- #: admin/partials/cookie-law-info-admin_settings.php:39
452
- msgid "Cookie bar is currently active"
453
- msgstr "Понастоящем лентата с бисквитки е активна"
454
-
455
- #: admin/partials/cookie-law-info-admin_settings.php:47
456
- msgid "Cookie bar is currently inactive"
457
- msgstr "Понастоящем лентата с бисквитки е неактивна"
458
-
459
- #: admin/partials/cookie-law-info-admin_settings.php:57
460
- #: admin/views/admin-settings-general.php:9
461
- msgid "General"
462
- msgstr "Основни"
463
-
464
- #: admin/partials/cookie-law-info-admin_settings.php:58
465
- msgid "Customise Cookie Bar"
466
- msgstr "Персонализирайте бисквитка Бар"
467
-
468
- #: admin/partials/cookie-law-info-admin_settings.php:59
469
- msgid "Customise Buttons"
470
- msgstr "Персонализиране на бутоните"
471
-
472
- #: admin/partials/cookie-law-info-admin_settings.php:60
473
- #: admin/views/admin-settings-advanced.php:8
474
- msgid "Advanced"
475
- msgstr "Напреднал"
476
-
477
- #: admin/partials/cookie-law-info-admin_settings.php:61
478
- msgid "Help Guide"
479
- msgstr "Ръководство за помощ"
480
-
481
- #: admin/partials/cookie-law-info-privacy_overview.php:32
482
- msgid "Privacy Overview Title"
483
- msgstr "Заглавие на общността за поверителност"
484
-
485
- #: admin/partials/cookie-law-info-privacy_overview.php:38
486
- #: admin/partials/cookie-law-info-privacy_overview.php:53
487
- msgid "This will be shown in the settings visible for user on consent screen."
488
- msgstr ""
489
- "Това ще се покаже в настройките, видими за екрана на потребител на съгласие."
490
-
491
- #: admin/partials/cookie-law-info-privacy_overview.php:61
492
- msgid "Save Settings"
493
- msgstr "Запазване на настройките"
494
-
495
- #: admin/views/admin-settings-advanced.php:9
496
- msgid ""
497
- "Sometimes themes apply settings that clash with plugins. If that happens, "
498
- "try adjusting these settings."
499
- msgstr ""
500
- "Понякога темите прилагат настройки, които се сблъскват с плъгини. Ако това "
501
- "се случи, опитайте да коригирате тези настройки."
502
-
503
- #: admin/views/admin-settings-advanced.php:13
504
- msgid "Reset all values"
505
- msgstr "Нулирайте всички стойности"
506
-
507
- #: admin/views/admin-settings-advanced.php:15
508
- msgid "Delete settings and reset"
509
- msgstr "Изтрийте настройките и нулирайте"
510
-
511
- #: admin/views/admin-settings-advanced.php:15
512
- msgid "Are you sure you want to delete all your settings?"
513
- msgstr "Наистина ли искате да изтриете всички ваши настройки?"
514
-
515
- #: admin/views/admin-settings-advanced.php:16
516
- msgid "Warning: this will actually delete your current settings."
517
- msgstr "Предупреждение: това всъщност ще изтрие вашите текущи настройки."
518
-
519
- #: admin/views/admin-settings-buttons.php:10
520
- msgid "Accept Button"
521
- msgstr "Приемете бутона"
522
-
523
- #: admin/views/admin-settings-buttons.php:11
524
- #: admin/views/admin-settings-buttons.php:93
525
- msgid "Reject Button"
526
- msgstr "Бутон за отхвърляне"
527
-
528
- #: admin/views/admin-settings-buttons.php:12
529
- #: admin/views/admin-settings-buttons.php:163
530
- msgid "Settings Button"
531
- msgstr "Бутон за настройки"
532
-
533
- #: admin/views/admin-settings-buttons.php:13
534
- #: admin/views/admin-settings-buttons.php:206
535
- msgid "Read More Link"
536
- msgstr "Препратка - Прочети повече"
537
-
538
- #: admin/views/admin-settings-buttons.php:14
539
- #: admin/views/admin-settings-buttons.php:326
540
- msgid "Do not sell link"
541
- msgstr "Не продавайте връзка"
542
-
543
- #: admin/views/admin-settings-buttons.php:20
544
- msgid "Main Button"
545
- msgstr "Главен бутон"
546
-
547
- #: admin/views/admin-settings-buttons.php:21
548
- msgid ""
549
- "This button/link can be customised to either simply close the cookie bar, or "
550
- "follow a link. You can also customise the colours and styles, and show it as "
551
- "a link or a button."
552
- msgstr ""
553
- "Този бутон/връзка могат да бъдат персонализирани или просто затворите "
554
- "лентата на бисквитката, или следвате връзка. Можете също да персонализирате "
555
- "цветовете и стилове и да го показват като връзка или бутон."
556
-
557
- #: admin/views/admin-settings-buttons.php:24
558
- #: admin/views/admin-settings-buttons.php:96
559
- #: admin/views/admin-settings-buttons.php:166
560
- #: admin/views/admin-settings-buttons.php:220
561
- msgid "Text"
562
- msgstr "Текст"
563
-
564
- #: admin/views/admin-settings-buttons.php:30
565
- #: admin/views/admin-settings-buttons.php:102
566
- #: admin/views/admin-settings-buttons.php:172
567
- #: admin/views/admin-settings-buttons.php:226
568
- #: admin/views/admin-settings-buttons.php:346
569
- msgid "Text colour"
570
- msgstr "Цвят на текста"
571
-
572
- #: admin/views/admin-settings-buttons.php:38
573
- #: admin/views/admin-settings-buttons.php:110
574
- #: admin/views/admin-settings-buttons.php:180
575
- #: admin/views/admin-settings-buttons.php:234
576
- #: admin/views/admin-settings-buttons.php:335
577
- msgid "Show as"
578
- msgstr "Покажете като"
579
-
580
- #: admin/views/admin-settings-buttons.php:40
581
- #: admin/views/admin-settings-buttons.php:112
582
- #: admin/views/admin-settings-buttons.php:182
583
- #: admin/views/admin-settings-buttons.php:236
584
- msgid "Button"
585
- msgstr "Бутон"
586
-
587
- #: admin/views/admin-settings-buttons.php:42
588
- #: admin/views/admin-settings-buttons.php:114
589
- #: admin/views/admin-settings-buttons.php:184
590
- #: admin/views/admin-settings-buttons.php:238
591
- #: admin/views/admin-settings-buttons.php:337
592
- msgid "Link"
593
- msgstr "Връзка"
594
-
595
- #: admin/views/admin-settings-buttons.php:46
596
- #: admin/views/admin-settings-buttons.php:118
597
- #: admin/views/admin-settings-buttons.php:188
598
- #: admin/views/admin-settings-buttons.php:242
599
- msgid "Background colour"
600
- msgstr "Цвят на фона"
601
-
602
- #: admin/views/admin-settings-buttons.php:55
603
- #: admin/views/admin-settings-buttons.php:126
604
- msgid "Action"
605
- msgstr "Действие"
606
-
607
- #: admin/views/admin-settings-buttons.php:63
608
- #: admin/views/admin-settings-buttons.php:138
609
- #: admin/views/admin-settings-buttons.php:253
610
- #: admin/views/admin-settings-buttons.php:260
611
- msgid "URL"
612
- msgstr "URL"
613
-
614
- #: admin/views/admin-settings-buttons.php:66
615
- #: admin/views/admin-settings-buttons.php:141
616
- msgid "Button will only link to URL if Action = Open URL"
617
- msgstr "Бутон само ще линк към URL, ако действие = показват URL"
618
-
619
- #: admin/views/admin-settings-buttons.php:71
620
- #: admin/views/admin-settings-buttons.php:146
621
- msgid "Open URL in new window?"
622
- msgstr "Отваряте ли URL в нов прозорец?"
623
-
624
- #: admin/views/admin-settings-buttons.php:73
625
- #: admin/views/admin-settings-buttons.php:148
626
- #: admin/views/admin-settings-buttons.php:304
627
- #: admin/views/admin-settings-buttons.php:311
628
- #: admin/views/admin-settings-general.php:38
629
- #: admin/views/admin-settings-general.php:54
630
- #: admin/views/admin-settings-general.php:74
631
- #: admin/views/admin-settings-general.php:82
632
- #: admin/views/admin-settings-general.php:89
633
- #: admin/views/admin-settings-messagebar.php:86
634
- #: admin/views/admin-settings-messagebar.php:110
635
- #: admin/views/admin_non_necessary_cookie.php:32
636
- msgid "Yes"
637
- msgstr "Да"
638
-
639
- #: admin/views/admin-settings-buttons.php:75
640
- #: admin/views/admin-settings-buttons.php:149
641
- #: admin/views/admin-settings-buttons.php:305
642
- #: admin/views/admin-settings-buttons.php:312
643
- #: admin/views/admin-settings-general.php:39
644
- #: admin/views/admin-settings-general.php:55
645
- #: admin/views/admin-settings-general.php:75
646
- #: admin/views/admin-settings-general.php:83
647
- #: admin/views/admin-settings-general.php:90
648
- #: admin/views/admin-settings-messagebar.php:87
649
- #: admin/views/admin-settings-messagebar.php:111
650
- #: admin/views/admin_non_necessary_cookie.php:33
651
- #: public/modules/script-blocker/views/settings.php:139
652
- msgid "No"
653
- msgstr "Не"
654
-
655
- #: admin/views/admin-settings-buttons.php:82
656
- #: admin/views/admin-settings-buttons.php:153
657
- #: admin/views/admin-settings-buttons.php:196
658
- #: admin/views/admin-settings-buttons.php:316
659
- msgid "Size"
660
- msgstr "Размер"
661
-
662
- #: admin/views/admin-settings-buttons.php:207
663
- msgid ""
664
- "This button/link can be used to provide a link out to your Privacy & Cookie "
665
- "Policy. You can customise it any way you like."
666
- msgstr ""
667
- "Този бутон / връзка може да се използва за осигуряване на връзка към "
668
- "правилата Ви за поверителност и бисквитки. Можете да го персонализирате по "
669
- "ваш начин."
670
-
671
- #: admin/views/admin-settings-buttons.php:212
672
- msgid "Click"
673
- msgstr "Кликнете"
674
-
675
- #: admin/views/admin-settings-buttons.php:212
676
- msgid "here"
677
- msgstr "тук"
678
-
679
- #: admin/views/admin-settings-buttons.php:212
680
- msgid " to generate content for Cookie Policy page."
681
- msgstr " да генерирате съдържание за страницата „Правила за бисквитките“."
682
-
683
- #: admin/views/admin-settings-buttons.php:251
684
- msgid "URL or Page?"
685
- msgstr "URL или страница?"
686
-
687
- #: admin/views/admin-settings-buttons.php:255
688
- #: admin/views/admin-settings-buttons.php:266
689
- msgid "Page"
690
- msgstr "Страница"
691
-
692
- #: admin/views/admin-settings-buttons.php:269
693
- msgid "Select One"
694
- msgstr "Избери един"
695
-
696
- #: admin/views/admin-settings-buttons.php:294
697
- msgid "The currently selected page does not exist. Please select a new page."
698
- msgstr ""
699
- "В момента избраната страница не съществува. Моля, изберете нова страница."
700
-
701
- #: admin/views/admin-settings-buttons.php:302
702
- msgid "Minimize Cookie Bar in this page/URL?"
703
- msgstr "Намаляване на лентата с бисквитки в тази страница / URL адрес?"
704
-
705
- #: admin/views/admin-settings-buttons.php:309
706
- msgid "Open in new window?"
707
- msgstr "Отвори в нов прозорец?"
708
-
709
- #: admin/views/admin-settings-buttons.php:329
710
- msgid "CCPA Text"
711
- msgstr "CCPA Текст"
712
-
713
- #: admin/views/admin-settings-buttons.php:338
714
- msgid "Checkbox"
715
- msgstr "Отметка"
716
-
717
- #: admin/views/admin-settings-buttons.php:340
718
- msgid "The shortcode will be represented as a link whereever used."
719
- msgstr ""
720
- "Краткият код ще бъде представен като връзка, независимо къде се използва."
721
-
722
- #: admin/views/admin-settings-buttons.php:341
723
- msgid ""
724
- "The shortcode will be represented as a checkbox with select option to record "
725
- "consent."
726
- msgstr ""
727
- "Краткият код ще бъде представен като отметка с опция за избор, за да "
728
- "запишете съгласие."
729
-
730
- #: admin/views/admin-settings-general.php:17
731
- msgid "Enable cookie bar"
732
- msgstr "Активиране на лентата с бисквитки"
733
-
734
- #: admin/views/admin-settings-general.php:19
735
- msgid "On"
736
- msgstr "Вкл"
737
-
738
- #: admin/views/admin-settings-general.php:20
739
- msgid "Off"
740
- msgstr "Изкл"
741
-
742
- #: admin/views/admin-settings-general.php:36
743
- msgid "Auto-hide(Accept) cookie bar after delay?"
744
- msgstr "Автоматично скривай бисквитка бар след закъснение?"
745
-
746
- #: admin/views/admin-settings-general.php:43
747
- msgid "Milliseconds until hidden"
748
- msgstr "Милисекунди, докато скрити"
749
-
750
- #: admin/views/admin-settings-general.php:46
751
- msgid "Specify milliseconds (not seconds)"
752
- msgstr "Задайте милисекунди (не секунди)"
753
-
754
- #: admin/views/admin-settings-general.php:46
755
- msgid "seconds"
756
- msgstr "секунди"
757
-
758
- #: admin/views/admin-settings-general.php:52
759
- msgid "Auto-hide cookie bar if the user scrolls ( Accept on Scroll )?"
760
- msgstr ""
761
- "Автоматично скривай бисквитка бар ако потребителят свитъци (приемам за "
762
- "превъртане)?"
763
-
764
- #: admin/views/admin-settings-general.php:56
765
- msgid ""
766
- "As per latest GDPR policies it is required to take an explicit consent for "
767
- "the cookies. Use this option with discretion especially if you serve EU"
768
- msgstr ""
769
- "Съгласно последните GDPR политики се изисква изрично съгласие за "
770
- "\"бисквитките\". Използвайте тази опция с преценка, особено ако служите на ЕС"
771
-
772
- #: admin/views/admin-settings-general.php:57
773
- msgid "This option will not work along with `Popup overlay`."
774
- msgstr "Тази опция няма да работи заедно с „Овърпои на изскачащи прозорци“."
775
-
776
- #: admin/views/admin-settings-general.php:69
777
- msgid "Reload after \"scroll accept\" event?"
778
- msgstr "Презареждане след \"превъртане приемат\" събитие?"
779
-
780
- #: admin/views/admin-settings-general.php:80
781
- msgid "Reload after Accept button click"
782
- msgstr "Презареждане след приемам копче щракване"
783
-
784
- #: admin/views/admin-settings-general.php:87
785
- msgid "Reload after Reject button click"
786
- msgstr "Презареждане след приемам копче щракване"
787
-
788
- #: admin/views/admin-settings-help.php:9
789
- msgid "Shortcodes"
790
- msgstr "Кратък код"
791
-
792
- #: admin/views/admin-settings-help.php:10
793
- #: admin/views/admin-settings-help.php:103
794
- msgid "Help Links"
795
- msgstr "Помощни връзки"
796
-
797
- #: admin/views/admin-settings-help.php:16
798
- msgid "Cookie bar shortcodes"
799
- msgstr "Кратки кодове на бисквитката"
800
-
801
- #: admin/views/admin-settings-help.php:17
802
- msgid ""
803
- "You can enter the shortcodes in the \"message\" field of the Cookie Law Info "
804
- "bar. They add nicely formatted buttons and/or links into the cookie bar, "
805
- "without you having to add any HTML."
806
- msgstr ""
807
- "Можете да въведете кратките кодове в полето \"съобщение\" на информационната "
808
- "лента на Cookie. Те добавят добре форматирани бутони и / или връзки към "
809
- "лентата на \"бисквитките\", без да е необходимо да добавяте HTML."
810
-
811
- #: admin/views/admin-settings-help.php:22
812
- msgid "This is the \"main button\" you customise above."
813
- msgstr "Това е \"основен бутон\" можете да персонализирате по-горе."
814
-
815
- #: admin/views/admin-settings-help.php:26
816
- msgid "This is the cookie reject button shortcode."
817
- msgstr "Това е shortcode бутон за отхвърляне на бисквитки."
818
-
819
- #: admin/views/admin-settings-help.php:30
820
- msgid "This is the cookie settings button rendering shortcode."
821
- msgstr "Това е оказване shortcode бисквитка настройки бутон."
822
-
823
- #: admin/views/admin-settings-help.php:33
824
- msgid "This is the \"read more\" link you customise above."
825
- msgstr "Това е \"Прочети повече\" връзка, можете да персонализирате по-горе."
826
-
827
- #: admin/views/admin-settings-help.php:36
828
- msgid "Setup margin for above buttons"
829
- msgstr "Поле за настройка за над бутоните"
830
-
831
- #: admin/views/admin-settings-help.php:65
832
- msgid "Other shortcodes"
833
- msgstr "Други кратки кодове"
834
-
835
- #: admin/views/admin-settings-help.php:66
836
- msgid ""
837
- "These shortcodes can be used in pages and posts on your website. It is not "
838
- "recommended to use these inside the cookie bar itself."
839
- msgstr ""
840
- "Тези кратки кодове могат да се използват в страници и публикации на уебсайта "
841
- "Ви. Не се препоръчва да ги използвате в самата бисквитка."
842
-
843
- #: admin/views/admin-settings-help.php:72
844
- msgid ""
845
- "This prints out a nice table of cookies, in line with the guidance given by "
846
- "the ICO."
847
- msgstr ""
848
- "Това отпечатва приятна таблица с бисквитки, в съответствие с указанията, "
849
- "дадени от ICO."
850
-
851
- #: admin/views/admin-settings-help.php:72
852
- msgid ""
853
- "You need to enter the cookies your website uses via the Cookie Law Info menu "
854
- "in your WordPress dashboard."
855
- msgstr ""
856
- "Трябва да въведете \"бисквитките\", които уебсайтът Ви използва чрез менюто "
857
- "за информация за \"Бисквитките\" в таблото за управление на WordPress."
858
-
859
- #: admin/views/admin-settings-help.php:80
860
- msgid "Styles included"
861
- msgstr "Включени са стилове"
862
-
863
- #: admin/views/admin-settings-help.php:82
864
- msgid "Columns available"
865
- msgstr "Налични са графи"
866
-
867
- #: admin/views/admin-settings-help.php:82
868
- msgid "Will print all columns by default."
869
- msgstr "Ще се отпечатат всички колони по подразбиране."
870
-
871
- #: admin/views/admin-settings-help.php:86
872
- msgid ""
873
- "This shortcode will display a normal HTML link which when clicked, will "
874
- "delete the cookie set by Cookie Law Info (this cookie is used to remember "
875
- "that the cookie bar is closed)."
876
- msgstr ""
877
- "Този кратък код ще покаже нормална връзка HTML, която при кликване ще изтрие "
878
- "пакета \"бисквитки\", зададен от Cookie Law Info (тази \"бисквитка\" се "
879
- "използва, за да се запомни, че лентата на \"бисквитките\" е затворена)."
880
-
881
- #: admin/views/admin-settings-help.php:90
882
- msgid ""
883
- "Add any text you like- useful if you want e.g. another language to English."
884
- msgstr ""
885
- "Добавете текст, който харесвате - полезен, ако искате, напр. друг език на "
886
- "английски."
887
-
888
- #: admin/views/admin-settings-help.php:94
889
- msgid "Add content after accepting the cookie notice."
890
- msgstr "Добавете съдържание, след като сте приели известието за „бисквитките“."
891
-
892
- #: admin/views/admin-settings-help.php:107
893
- #: admin/views/admin-settings-help.php:110 admin/views/goto-pro.php:103
894
- msgid "Documentation"
895
- msgstr "Документация"
896
-
897
- #: admin/views/admin-settings-help.php:108
898
- msgid "Refer to our documentation to set and get started"
899
- msgstr "Обърнете се към нашата документация, за да настроите и започнете"
900
-
901
- #: admin/views/admin-settings-help.php:115
902
- msgid "Help and Support"
903
- msgstr "Помощ и подкрепа"
904
-
905
- #: admin/views/admin-settings-help.php:116
906
- msgid "We would love to help you on any queries or issues."
907
- msgstr "Бихме искали да ви помогнем при всякакви въпроси или въпроси."
908
-
909
- #: admin/views/admin-settings-help.php:118
910
- msgid "Contact Us"
911
- msgstr "Свържете се с нас"
912
-
913
- #: admin/views/admin-settings-messagebar.php:9
914
- msgid "Cookie bar"
915
- msgstr "Бар с бисквитки"
916
-
917
- #: admin/views/admin-settings-messagebar.php:10
918
- #: admin/views/admin-settings-messagebar.php:145
919
- msgid "Revisit consent"
920
- msgstr "Преразгледайте съгласието"
921
-
922
- #: admin/views/admin-settings-messagebar.php:15
923
- msgid "Cookie Bar"
924
- msgstr "Бар за бисквитки"
925
-
926
- #: admin/views/admin-settings-messagebar.php:18
927
- msgid "Message Heading"
928
- msgstr "Заглавие на съобщението"
929
-
930
- #: admin/views/admin-settings-messagebar.php:21
931
- msgid "Leave it blank, If you do not need a heading"
932
- msgstr "Оставете го празно, ако не ви трябва заглавие"
933
-
934
- #: admin/views/admin-settings-messagebar.php:26
935
- msgid "Message"
936
- msgstr "Съобщение"
937
-
938
- #: admin/views/admin-settings-messagebar.php:32
939
- msgid "Shortcodes allowed: see the Help Guide tab"
940
- msgstr "Допускат се къси кодове: вижте раздела Помощно ръководство"
941
-
942
- #: admin/views/admin-settings-messagebar.php:32
943
- msgid ""
944
- "Examples: \"We use cookies on this website [cookie_accept] to find out how "
945
- "to delete cookies [cookie_link].\""
946
- msgstr ""
947
- "Примери: \"Ние използваме бисквитки в този сайт [cookie_accept] за да "
948
- "разберете как да изтриете бисквитките [cookie_link].\""
949
-
950
- #: admin/views/admin-settings-messagebar.php:36
951
- msgid "Cookie Bar Colour"
952
- msgstr "Цвят на бисквитките"
953
-
954
- #: admin/views/admin-settings-messagebar.php:46
955
- msgid "Text Colour"
956
- msgstr "Цвят на текста"
957
-
958
- #: admin/views/admin-settings-messagebar.php:55
959
- msgid "Font"
960
- msgstr "Шрифт"
961
-
962
- #: admin/views/admin-settings-messagebar.php:63
963
- msgid "Show cookie bar as"
964
- msgstr "Показване на лентата с бисквитки като"
965
-
966
- #: admin/views/admin-settings-messagebar.php:68
967
- msgid "Banner"
968
- msgstr "Банер"
969
-
970
- #: admin/views/admin-settings-messagebar.php:69
971
- msgid "Popup"
972
- msgstr "Popup"
973
-
974
- #: admin/views/admin-settings-messagebar.php:70
975
- msgid "Widget"
976
- msgstr "Widget"
977
-
978
- #: admin/views/admin-settings-messagebar.php:74
979
- msgid "Position"
980
- msgstr "Позиция"
981
-
982
- #: admin/views/admin-settings-messagebar.php:84
983
- msgid "Add overlay?"
984
- msgstr "Добавяне на наслагване?"
985
-
986
- #: admin/views/admin-settings-messagebar.php:88
987
- msgid ""
988
- "When the popup is active, an overlay will block the user from browsing the "
989
- "site."
990
- msgstr ""
991
- "Когато изскачащият прозорец е активен, наслагването ще блокира потребителя "
992
- "от сърфиране в сайта."
993
-
994
- #: admin/views/admin-settings-messagebar.php:89
995
- msgid "`Accept on scroll` will not work along with this option."
996
- msgstr "`Приемане на превъртане` няма да работи заедно с тази опция."
997
-
998
- #: admin/views/admin-settings-messagebar.php:93
999
- msgid "Position:"
1000
- msgstr "Позиция:"
1001
-
1002
- #: admin/views/admin-settings-messagebar.php:98
1003
- msgid "Header"
1004
- msgstr "Хедър"
1005
-
1006
- #: admin/views/admin-settings-messagebar.php:99
1007
- msgid "Footer"
1008
- msgstr "Футър"
1009
-
1010
- #: admin/views/admin-settings-messagebar.php:108
1011
- msgid "Fix Cookie Bar to Header?"
1012
- msgstr "Прикрепвам бисквитка бар заглавката?"
1013
-
1014
- #: admin/views/admin-settings-messagebar.php:112
1015
- msgid ""
1016
- "If you select \"Header\" then you can optionally stick the cookie bar to the "
1017
- "header. Will not have any effect if you select \"Footer\"."
1018
- msgstr ""
1019
- "Ако изберете \"Заглавието\", можете по желание да остана лентата на "
1020
- "бисквитка в заглавката. Няма да има никакъв ефект, ако изберете \"Footer\"."
1021
-
1022
- #: admin/views/admin-settings-messagebar.php:120
1023
- msgid "On load"
1024
- msgstr "Отворена при зареждане"
1025
-
1026
- #: admin/views/admin-settings-messagebar.php:125
1027
- #: admin/views/admin-settings-messagebar.php:135
1028
- msgid "Animate"
1029
- msgstr "Анимация"
1030
-
1031
- #: admin/views/admin-settings-messagebar.php:126
1032
- #: admin/views/admin-settings-messagebar.php:136
1033
- msgid "Sticky"
1034
- msgstr "Залепен"
1035
-
1036
- #: admin/views/admin-settings-messagebar.php:130
1037
- msgid "On hide"
1038
- msgstr "На кожа"
1039
-
1040
- #: admin/views/admin-settings-messagebar.php:145
1041
- msgid "previously"
1042
- msgstr "преди това"
1043
-
1044
- #: admin/views/admin-settings-messagebar.php:145
1045
- msgid "Show again tab"
1046
- msgstr "Показване отново раздел"
1047
-
1048
- #: admin/views/admin-settings-messagebar.php:147
1049
- msgid ""
1050
- "Revisit consent will allow the visitors to view/edit/revoke their prior "
1051
- "preferences. This can be done via a widget and/or a shortcode. A small "
1052
- "privacy widget is automatically displayed at the footer of your website if "
1053
- "the widget option is enabled. You can also manually insert a link to manage "
1054
- "consent by adding the shortcode <b>[wt_cli_manage_consent]</b> to your "
1055
- "website."
1056
- msgstr ""
1057
- "Повторното съгласие ще позволи на посетителите да преглеждат / редактират / "
1058
- "отменят предишните си предпочитания. Това може да стане чрез джаджа и / или "
1059
- "шорт код. Малка джаджа за поверителност автоматично се показва в долния "
1060
- "колонтитул на вашия уеб сайт, ако е активирана опцията за джаджа. Можете "
1061
- "също така ръчно да вмъкнете връзка за управление на съгласието, като "
1062
- "добавите <b>шорткода [wt_cli_manage_consent]</b> към вашия уебсайт."
1063
-
1064
- #: admin/views/admin-settings-messagebar.php:152
1065
- msgid "Enable revisit consent widget"
1066
- msgstr "Активирайте приспособлението за повторно посещение на съгласието"
1067
-
1068
- #: admin/views/admin-settings-messagebar.php:152
1069
- msgid ""
1070
- "By enabling this option a small privacy widget is automatically displayed at "
1071
- "the footer of your website."
1072
- msgstr ""
1073
- "Чрез активирането на тази опция малка джаджа за поверителност автоматично се "
1074
- "показва в долния колонтитул на вашия уебсайт."
1075
-
1076
- #: admin/views/admin-settings-messagebar.php:163
1077
- #: admin/views/admin-settings-messagebar.php:180
1078
- msgid "Tab Position"
1079
- msgstr "Позиция на означение"
1080
-
1081
- #: admin/views/admin-settings-messagebar.php:168
1082
- #: admin/views/admin-settings-messagebar.php:171
1083
- msgid "Right"
1084
- msgstr "Дясно"
1085
-
1086
- #: admin/views/admin-settings-messagebar.php:169
1087
- #: admin/views/admin-settings-messagebar.php:172
1088
- msgid "Left"
1089
- msgstr "Ляво"
1090
-
1091
- #: admin/views/admin-settings-messagebar.php:187
1092
- msgid "Bottom Right"
1093
- msgstr "Долу вдясно"
1094
-
1095
- #: admin/views/admin-settings-messagebar.php:190
1096
- msgid "Bottom Left"
1097
- msgstr "Долу вляво"
1098
-
1099
- #: admin/views/admin-settings-messagebar.php:193
1100
- msgid "Top Right"
1101
- msgstr "Горе в дясно"
1102
-
1103
- #: admin/views/admin-settings-messagebar.php:196
1104
- msgid "Top Left"
1105
- msgstr "Горе вляво"
1106
-
1107
- #: admin/views/admin-settings-messagebar.php:203
1108
- msgid "From Right Margin"
1109
- msgstr "От дясно поле"
1110
-
1111
- #: admin/views/admin-settings-messagebar.php:203
1112
- msgid "From Left Margin"
1113
- msgstr "От лявото поле"
1114
-
1115
- #: admin/views/admin-settings-messagebar.php:206
1116
- msgid "Specify"
1117
- msgstr "Уточнете"
1118
-
1119
- #: admin/views/admin-settings-messagebar.php:215
1120
- #: admin/views/admin_necessary_cookie.php:33
1121
- #: admin/views/admin_non_necessary_cookie.php:48
1122
- msgid "Title"
1123
- msgstr "Заглавие"
1124
-
1125
- #: admin/views/admin-settings-save-button.php:12
1126
- #: admin/views/admin_necessary_cookie.php:52
1127
- #: admin/views/admin_non_necessary_cookie.php:87
1128
- #: public/modules/script-blocker/script-blocker.php:219
1129
- msgid "Update Settings"
1130
- msgstr "Актуализиране на настройките"
1131
-
1132
- #: admin/views/admin_necessary_cookie.php:26
1133
- msgid "Necessary Cookie Settings"
1134
- msgstr "Необходими настройки на бисквитките"
1135
-
1136
- #: admin/views/admin_non_necessary_cookie.php:23
1137
- msgid "Non-necessary Cookie Settings"
1138
- msgstr "Не е необходима настройка на бисквитките"
1139
-
1140
- #: admin/views/admin_non_necessary_cookie.php:31
1141
- msgid "Enable Non-necessary Cookie"
1142
- msgstr "Давам възможност на Non необходим бисквитка"
1143
-
1144
- #: admin/views/admin_non_necessary_cookie.php:38
1145
- msgid "Default state"
1146
- msgstr "Състояние по подразбиране"
1147
-
1148
- #: admin/views/admin_non_necessary_cookie.php:39
1149
- #: public/modules/script-blocker/views/settings.php:141
1150
- #: public/views/cookie-law-info_popup_content.php:7
1151
- msgid "Enabled"
1152
- msgstr "Enabled"
1153
-
1154
- #: admin/views/admin_non_necessary_cookie.php:40
1155
- #: public/views/cookie-law-info_popup_content.php:8
1156
- msgid "Disabled"
1157
- msgstr "Xора с увреждания"
1158
-
1159
- #: admin/views/admin_non_necessary_cookie.php:42
1160
- msgid ""
1161
- "If you enable this option, the category toggle button will be in the active "
1162
- "state for cookie consent."
1163
- msgstr ""
1164
- "Ако активирате тази опция, бутонът за превключване на категорията ще бъде в "
1165
- "активно състояние за съгласие с бисквитки."
1166
-
1167
- #: admin/views/admin_non_necessary_cookie.php:62
1168
- msgid ""
1169
- "This script will be added to the page HEAD section if the above settings is "
1170
- "enabled and user has give consent."
1171
- msgstr ""
1172
- "Този скрипт ще бъдат добавени към страницата главата раздел, ако горните "
1173
- "настройки е разрешен и потребителят има даде съгласие."
1174
-
1175
- #: admin/views/admin_non_necessary_cookie.php:67
1176
- msgid ""
1177
- "Print scripts in the head tag on the front end if above cookie settings is "
1178
- "enabled and user has given consent."
1179
- msgstr ""
1180
- "Отпечатване скриптове в главата тагове на предния край, ако над бисквитка "
1181
- "настройки е разрешен и потребителят е дал съгласие."
1182
-
1183
- #: admin/views/admin_non_necessary_cookie.php:74
1184
- msgid ""
1185
- "This script will be added right after the BODY section if the above settings "
1186
- "is enabled and user has given consent."
1187
- msgstr ""
1188
- "Този скрипт ще се добавят веднага след тялото раздел Ако горните настройки е "
1189
- "разрешен и потребителят е дал съгласие."
1190
-
1191
- #: admin/views/admin_non_necessary_cookie.php:77
1192
- msgid ""
1193
- "Print scripts before the closing body tag on the front end if above cookie "
1194
- "settings is enabled and user has given consent."
1195
- msgstr ""
1196
- "Отпечатване скриптове преди затваряне тялото маркер на предния край, ако над "
1197
- "бисквитка настройки е разрешен и потребителят е дал съгласие."
1198
-
1199
- #: admin/views/goto-pro.php:56
1200
- msgid "Where did my settings go?"
1201
- msgstr "Къде отидоха моите настройки?"
1202
-
1203
- #: admin/views/goto-pro.php:57
1204
- msgid "Cookie Law Info version 0.9 has been updated and has new settings."
1205
- msgstr ""
1206
- "Право на бисквитка информация версия 0.9 е актуализиран и има нови настройки."
1207
-
1208
- #: admin/views/goto-pro.php:57
1209
- msgid "Your previous settings are safe."
1210
- msgstr "Вашите предишни настройки са безопасни."
1211
-
1212
- #: admin/views/goto-pro.php:58
1213
- msgid ""
1214
- "You can either copy over your old settings to this version, or use the new "
1215
- "default values."
1216
- msgstr ""
1217
- "Можете да копирате старите си настройки или да използвате новите стойности "
1218
- "по подразбиране."
1219
-
1220
- #: admin/views/goto-pro.php:60
1221
- msgid "Would you like to:"
1222
- msgstr "Би ли искал:"
1223
-
1224
- #: admin/views/goto-pro.php:62
1225
- msgid "Use previous settings"
1226
- msgstr "Използвайте предишните настройки"
1227
-
1228
- #: admin/views/goto-pro.php:63
1229
- msgid "Start afresh with the new version"
1230
- msgstr "Започнете отначало с новата версия"
1231
-
1232
- #: admin/views/goto-pro.php:67
1233
- msgid ""
1234
- "If you want to go back to the previous version you can always download it "
1235
- "again from"
1236
- msgstr ""
1237
- "Ако искате да се върнете към предишната версия, винаги можете да я изтеглите "
1238
- "отново"
1239
-
1240
- #: admin/views/goto-pro.php:73
1241
- msgid "30 Day Money Back Guarantee"
1242
- msgstr "30-дневна гаранция за връщане на парите"
1243
-
1244
- #: admin/views/goto-pro.php:74
1245
- msgid "Fast and Superior Support"
1246
- msgstr "Бърза и отлична поддръжка"
1247
-
1248
- #: admin/views/goto-pro.php:75
1249
- msgid "10X Powerful with GDPR Cookie Consent Features That Every Site Needs"
1250
- msgstr "10X Мощен с GDPR Cookie Съгласие функции, които всеки сайт се нуждае"
1251
-
1252
- #: admin/views/goto-pro.php:78
1253
- msgid "Upgrade to Premium"
1254
- msgstr "Надстройте до Premium"
1255
-
1256
- #: admin/views/goto-pro.php:84
1257
- msgid "Automatic Cookie Scanner"
1258
- msgstr "Автоматичен скенер за бисквитки"
1259
-
1260
- #: admin/views/goto-pro.php:85
1261
- msgid ""
1262
- "Auto block scripts - Google Analytics, Facebook Pixel, Google Tag Manager, "
1263
- "Hotjar Analytics, Google Publisher Tag, Youtube embed, Vimeo embed, Google "
1264
- "maps, Addthis widget, Sharethis widget, Twitter widget, Soundcloud embed, "
1265
- "Slideshare embed, Linkedin widget, Instagram embed, Pinterest widget"
1266
- msgstr ""
1267
- "Автоматично блокиране на скриптове - Google Анализ, Facebook Pixel, Google "
1268
- "Tag Manager, Google Hotjar Analytics, Google Публикуван маркер, YouTube "
1269
- "вграждане, Vimeo вграждане, Google карти, Addthis джаджа, Sharethis "
1270
- "притурка, widget Twitter, Soundcloud , Притурка за Pinterest"
1271
-
1272
- #: admin/views/goto-pro.php:86
1273
- msgid "Location based exclusion of cookie notice for EU countries"
1274
- msgstr "Изключване на „бисквитка“ за страните от ЕС"
1275
-
1276
- #: admin/views/goto-pro.php:87
1277
- msgid "Granular control over the cookies/scipts used by the website"
1278
- msgstr "Детайлен контрол върху бисквитките / scipts, използвани от уебсайта"
1279
-
1280
- #: admin/views/goto-pro.php:88
1281
- msgid "User consent audit logs"
1282
- msgstr "Журнали за одит на съгласието на потребителя"
1283
-
1284
- #: admin/views/goto-pro.php:89
1285
- msgid "Customized privacy overview"
1286
- msgstr "Индивидуален преглед на поверителността"
1287
-
1288
- #: admin/views/goto-pro.php:90
1289
- msgid "Cookie bar preview in admin settings page"
1290
- msgstr ""
1291
- "Предварителен преглед на лентата с бисквитки в страницата с настройки на "
1292
- "администратора"
1293
-
1294
- #: admin/views/goto-pro.php:91
1295
- msgid "Advanced support for cache plugins"
1296
- msgstr "Разширена поддръжка за кеш плъгини"
1297
-
1298
- #: admin/views/goto-pro.php:92
1299
- msgid "Cookie bar theme customizer for banner/ widgets/ popup"
1300
- msgstr ""
1301
- "Настройка на темата за бар „Cookie“ за банер / приспособления / изскачащи "
1302
- "прозорци"
1303
-
1304
- #: admin/views/goto-pro.php:93
1305
- msgid "GDPR compliance with Google Tag Manager"
1306
- msgstr "Съответствие на GDPR с Google Tag Manager"
1307
-
1308
- #: admin/views/goto-pro.php:94
1309
- msgid "Javascript helper functions"
1310
- msgstr "Помощни функции на Javascript"
1311
-
1312
- #: admin/views/goto-pro.php:108
1313
- msgid "Like this plugin?"
1314
- msgstr "Като тази приставка?"
1315
-
1316
- #: admin/views/goto-pro.php:109
1317
- msgid "If you find this plugin useful please show your support and rate it"
1318
- msgstr ""
1319
- "Ако смятате, че тази приставка е полезна, моля, покажете подкрепата си и я "
1320
- "оценете"
1321
-
1322
- #: admin/views/goto-pro.php:109
1323
- msgid " on"
1324
- msgstr " за"
1325
-
1326
- #: admin/views/goto-pro.php:109
1327
- msgid " much appreciated!"
1328
- msgstr " оценявам го!"
1329
-
1330
- #: cookie-law-info.php:80
1331
- msgid ""
1332
- "Please make sure the cache is cleared after each plugin update especially if "
1333
- "you have minified JS and/or CSS files."
1334
- msgstr ""
1335
- "Моля, уверете се, че кешът е изчистен след всяка актуализация на "
1336
- "приставката, особено ако сте умалили JS и / или CSS файлове."
1337
-
1338
- #: includes/class-cookie-law-info-review_request.php:52
1339
- #, php-format
1340
- msgid ""
1341
- "Hey, we at %sWebToffee%s would like to thank you for using our plugin. We "
1342
- "would really appreciate if you could take a moment to drop a quick review "
1343
- "that will inspire us to keep going."
1344
- msgstr ""
1345
- "Хей, ние от %sWebToffee% s бихме искали да Ви благодарим, че използвате "
1346
- "нашата приставка. Наистина бихме били благодарни, ако можете да отделите "
1347
- "малко време, за да пуснете бърз преглед, който ще ни вдъхнови да продължим."
1348
-
1349
- #: includes/class-cookie-law-info-review_request.php:55
1350
- msgid "Remind me later"
1351
- msgstr "Напомнете ми по-късно"
1352
-
1353
- #: includes/class-cookie-law-info-review_request.php:56
1354
- msgid "Not interested"
1355
- msgstr "Не се интересувам"
1356
-
1357
- #: includes/class-cookie-law-info-review_request.php:57
1358
- msgid "Review now"
1359
- msgstr "Прегледайте сега"
1360
-
1361
- #: public/class-cookie-law-info-public.php:251
1362
- msgid "GDPR Cookie Consent"
1363
- msgstr "История на съгласието на GDPR"
1364
-
1365
- #: public/class-cookie-law-info-public.php:252
1366
- msgid "Cookie List"
1367
- msgstr "Бисквитка списък"
1368
-
1369
- #: public/class-cookie-law-info-public.php:253
1370
- #: public/modules/shortcode/shortcode.php:208
1371
- msgid "Cookie"
1372
- msgstr "Kурабийка"
1373
-
1374
- #: public/class-cookie-law-info-public.php:254
1375
- msgid "Add New"
1376
- msgstr "Добави"
1377
-
1378
- #: public/class-cookie-law-info-public.php:255
1379
- msgid "Add New Cookie Type"
1380
- msgstr "Добавяне на нов тип „бисквитка“"
1381
-
1382
- #: public/class-cookie-law-info-public.php:256
1383
- msgid "Edit Cookie Type"
1384
- msgstr "Редактиране на типа на бисквитка"
1385
-
1386
- #: public/class-cookie-law-info-public.php:257
1387
- msgid "New Cookie Type"
1388
- msgstr "Нов тип „бисквитка“"
1389
-
1390
- #: public/class-cookie-law-info-public.php:258
1391
- msgid "View Cookie Type"
1392
- msgstr "Тип изглед бисквитка"
1393
-
1394
- #: public/class-cookie-law-info-public.php:259
1395
- msgid "Search Cookies"
1396
- msgstr "Търсене в бисквитки"
1397
-
1398
- #: public/class-cookie-law-info-public.php:260
1399
- msgid "Nothing found"
1400
- msgstr "Нищо не е намерено"
1401
-
1402
- #: public/class-cookie-law-info-public.php:261
1403
- msgid "Nothing found in Trash"
1404
- msgstr "Няма нищо в кошчето"
1405
-
1406
- #: public/modules/script-blocker/script-blocker.php:156
1407
- #: public/modules/script-blocker/script-blocker.php:157
1408
- msgid "Script Blocker"
1409
- msgstr "Блокиране на скриптове"
1410
-
1411
- #: public/modules/script-blocker/script-blocker.php:182
1412
- msgid "Status updated"
1413
- msgstr "Състоянието е актуализирано"
1414
-
1415
- #: public/modules/script-blocker/script-blocker.php:206
1416
- msgid "Advanced script rendering"
1417
- msgstr "Разширено изобразяване на скриптове"
1418
-
1419
- #: public/modules/script-blocker/script-blocker.php:208
1420
- #: public/modules/script-blocker/views/settings.php:7
1421
- msgid "Enable"
1422
- msgstr "Включи"
1423
-
1424
- #: public/modules/script-blocker/script-blocker.php:209
1425
- #: public/modules/script-blocker/views/settings.php:7
1426
- msgid "Disable"
1427
- msgstr "Изключи"
1428
-
1429
- #: public/modules/script-blocker/script-blocker.php:210
1430
- msgid ""
1431
- "Advanced script rendering will render the blocked scripts using javascript "
1432
- "thus eliminating the need for a page refresh. It is also optimized for "
1433
- "caching since there is no server-side processing after obtaining the consent."
1434
- msgstr ""
1435
- "Разширеното визуализиране на скриптове ще направи блокираните скриптове с "
1436
- "помощта на javascript, като по този начин елиминира необходимостта от "
1437
- "опресняване на страницата. Освен това е оптимизиран за кеширане, тъй като "
1438
- "няма обработка от страна на сървъра след получаване на съгласието."
1439
-
1440
- #: public/modules/script-blocker/views/settings.php:9
1441
- msgid "Script blocker is enabled."
1442
- msgstr "Блокирането на скриптове е активирано."
1443
-
1444
- #: public/modules/script-blocker/views/settings.php:9
1445
- msgid ""
1446
- "Script blocker is currently disabled. Enable the blocker if you want any of "
1447
- "the below listed plugins to be auto blocked."
1448
- msgstr ""
1449
- "Понастоящем блокиращият скриптове е деактивиран. Активирайте блокера, ако "
1450
- "искате някой от долупосочените плъгини да бъде автоматично блокиран."
1451
-
1452
- #: public/modules/script-blocker/views/settings.php:10
1453
- #, php-format
1454
- msgid "<a href=\"javascript: submitform()\">%s</a>"
1455
- msgstr "<a href=\"javascript: submitform()\">%s</a>"
1456
-
1457
- #: public/modules/script-blocker/views/settings.php:14
1458
- #, php-format
1459
- msgid ""
1460
- "Advanced script rendering is currently disabled. It should be enabled for "
1461
- "the automatic script blocker to function. <a href=\"%s\">Enable.</a>"
1462
- msgstr ""
1463
- "Понастоящем изобразяването на скриптове е деактивирано. Трябва да бъде "
1464
- "активиран за автоматичното блокиране на скриптове. <a href=\"%s\">Активиране."
1465
- "</a>"
1466
-
1467
- #: public/modules/script-blocker/views/settings.php:113
1468
- msgid "Manage Script Blocking"
1469
- msgstr "Управление на блокирането на скриптове"
1470
-
1471
- #: public/modules/script-blocker/views/settings.php:134
1472
- #, php-format
1473
- msgid ""
1474
- "Below is the list of plugins currently supported for auto blocking. Plugins "
1475
- "marked inactive are either not installed or activated on your website. "
1476
- "Enabled plugins will be blocked by default on the front-end of your website "
1477
- "prior to obtaining user consent and rendered respectively based on consent. "
1478
- "<a href=\"%s\" target=\"_blank\">Read more.</a>"
1479
- msgstr ""
1480
- "По-долу е списъкът с приставки, поддържани в момента за автоматично "
1481
- "блокиране. Приставките, означени като неактивни, или не са инсталирани, или "
1482
- "са активирани на вашия уебсайт. Разрешените приставки ще бъдат блокирани по "
1483
- "подразбиране във фронт-енда на вашия уебсайт, преди да получат съгласието на "
1484
- "потребителя и съответно се извеждат въз основа на съгласие. <a href=\"%s\" "
1485
- "target=\"_blank\">Прочетете още.</a>"
1486
-
1487
- #: public/modules/script-blocker/views/settings.php:140
1488
- msgid "Name"
1489
- msgstr "Име"
1490
-
1491
- #: public/modules/script-blocker/views/settings.php:141
1492
- msgid ""
1493
- "Enabled: Plugins will be blocked by default prior to obtaining user consent."
1494
- msgstr ""
1495
- "Активирано: Приставките ще бъдат блокирани по подразбиране, преди да получат "
1496
- "съгласието на потребителя."
1497
-
1498
- #: public/modules/script-blocker/views/settings.php:141
1499
- msgid "Disabled: Plugins will be rendered prior to obtaining consent."
1500
- msgstr ""
1501
- "Деактивирано: Приставките ще бъдат изобразени преди получаване на съгласие."
1502
-
1503
- #: public/modules/script-blocker/views/settings.php:175
1504
- msgid "Inactive"
1505
- msgstr "Неактивни"
1506
-
1507
- #: public/modules/shortcode/shortcode.php:99
1508
- msgid "Your current state:"
1509
- msgstr "Текущото ви състояние:"
1510
-
1511
- #: public/modules/shortcode/shortcode.php:104
1512
- msgid "Consent accepted."
1513
- msgstr "Съгласието е прието."
1514
-
1515
- #: public/modules/shortcode/shortcode.php:107
1516
- msgid "Consent rejected."
1517
- msgstr "Съгласие се отхвърля."
1518
-
1519
- #: public/modules/shortcode/shortcode.php:111
1520
- msgid "No consent given."
1521
- msgstr "Не е дадено съгласие."
1522
-
1523
- #: public/modules/shortcode/shortcode.php:113
1524
- msgid "Manage your consent."
1525
- msgstr "Управлявайте вашето съгласие."
1526
-
1527
- #: public/modules/shortcode/shortcode.php:150
1528
- msgid "Delete Cookies"
1529
- msgstr "Изтриване на бисквитките"
1530
-
1531
- #: public/modules/shortcode/shortcode.php:186
1532
- msgid "No records found"
1533
- msgstr "Hе са намерени записи"
1534
-
1535
- #: public/modules/shortcode/shortcode.php:212
1536
- msgid "Type"
1537
- msgstr "Тип"
1538
-
1539
- #: public/modules/shortcode/shortcode.php:216
1540
- msgid "Duration"
1541
- msgstr "Продължителност"
1542
-
1543
- #: public/modules/shortcode/shortcode.php:533
1544
- msgid "Close the cookie bar"
1545
- msgstr "Затворете лентата с бисквитки"
1546
-
1547
- #: public/modules/shortcode/shortcode.php:533
1548
- msgid "Close and Accept"
1549
- msgstr "Затворете и приемете"
1550
-
1551
- #: public/views/cookie-law-info_bar.php:23
1552
- msgid "Close"
1553
- msgstr "Затвори"
1554
-
1555
- #: public/views/cookie-law-info_popup_content.php:6
1556
- msgid "Always Enabled"
1557
- msgstr "Винаги е активирано"
1558
-
1559
- #: public/views/cookie-law-info_popup_content.php:9
1560
- msgid "Show more"
1561
- msgstr "Покажи повече"
1562
-
1563
- #: public/views/cookie-law-info_popup_content.php:9
1564
- msgid "Show less"
1565
- msgstr "Показване на по-малко"
1566
-
1567
- #~ msgid ""
1568
- #~ "Which plugin are you using for language translation? Could you tell us a "
1569
- #~ "bit more?"
1570
- #~ msgstr ""
1571
- #~ "Кой плъгин използвате за езиков превод? Бихте ли ни казали малко повече?"
1572
-
1573
- #~ msgid "Caching issues"
1574
- #~ msgstr "Проблеми с кеширането"
1575
-
1576
- #~ msgid "Which caching plugin are you using? Could you tell us a bit more?"
1577
- #~ msgstr "Кой плъгин за кеширане използвате? Бихте ли ни казали малко повече?"
1578
-
1579
- #~ msgid "Cookie Law Settings"
1580
- #~ msgstr "Настройките на Cookie Law"
1581
-
1582
- #~ msgid "Show Again Tab"
1583
- #~ msgstr "Показване на раздела отново"
1584
-
1585
- #~ msgid "Use Show Again Tab?"
1586
- #~ msgstr "Използвайте Показвай раздела?"
1587
-
1588
- #~ msgid "Show More Text"
1589
- #~ msgstr "Покажи повече текст"
1590
-
1591
- #~ msgid "Non-necessary Cookie"
1592
- #~ msgstr "Експортна бисквитка"
1593
-
1594
- #~ msgid "Necessary Cookie"
1595
- #~ msgstr "Необходима бисквитка"
1596
-
1597
- #~ msgid "Your Cookie Law Info bar is switched on"
1598
- #~ msgstr "Информационната лента за Cookie Law е включена"
1599
-
1600
- #~ msgid "Your Cookie Law Info bar is switched off"
1601
- #~ msgstr "Вашата бисквитка закон информационната лента е изключен"
1602
-
1603
- #, fuzzy
1604
- #~| msgid "Would you like to:"
1605
- #~ msgid "Would you like us to assist you?"
1606
- #~ msgstr "Би ли искал:"
1607
-
1608
- #, fuzzy
1609
- #~| msgid "Live preview"
1610
- #~ msgid "Leave A Review?"
1611
- #~ msgstr "Предварителен преглед на живо"
1612
-
1613
- #, fuzzy
1614
- #~| msgid "Show Again Tab"
1615
- #~ msgid "Never show again"
1616
- #~ msgstr "Показване на раздела отново"
1617
-
1618
- #~ msgid "Cookie Bar will be shown in:"
1619
- #~ msgstr "Бисквитката ще се появи в:"
1620
-
1621
- #~ msgid "Disappear"
1622
- #~ msgstr "Изчезва"
1623
-
1624
- #~ msgid "Show Border?"
1625
- #~ msgstr "Показване на границата?"
1626
-
1627
- #~ msgid "Border Colour"
1628
- #~ msgstr "Цвят на рамката"
1629
-
1630
- #~ msgid "Message Bar"
1631
- #~ msgstr "Съобщение"
1632
-
1633
- #~ msgid ""
1634
- #~ "If you just want a standard green \"Accept\" button that closes the "
1635
- #~ "header and nothing more, use this shortcode. It is already styled, you "
1636
- #~ "don't need to customise it."
1637
- #~ msgstr ""
1638
- #~ "Ако просто искате стандартен зелен бутон \"Приемам\", който затваря "
1639
- #~ "заглавката и нищо повече, използвайте този кратък код. Той вече е "
1640
- #~ "оформен, не е нужно да го персонализирате."
1641
-
1642
- #~ msgid ""
1643
- #~ "Alternatively you can add a colour value. Choose from: red, blue, orange, "
1644
- #~ "yellow, green or pink."
1645
- #~ msgstr ""
1646
- #~ "Алтернативно можете да добавите цветова стойност. Изберете от: червено, "
1647
- #~ "синьо, оранжево, жълто, зелено или розово."
1648
-
1649
- #~ msgid "Careful to use the British spelling of \"colour\" for the attribute."
1650
- #~ msgstr ""
1651
- #~ "Внимавайте да използвате британския правопис на \"цвят\" за атрибута."
1652
-
1653
- #~ msgid "GDPR Cookie Consent Pro"
1654
- #~ msgstr "История на съгласието на GDPR"
1655
-
1656
- #~ msgid ""
1657
- #~ "* Manage list of cookies ( Name, CookieID, Description, Duration, Type, "
1658
- #~ "Category, Header Script, Footer Script)"
1659
- #~ msgstr ""
1660
- #~ "* Управление на списъка на \"бисквитки\" (име, CookieID, описание, "
1661
- #~ "продължителност, тип, категория, горен скрипт, долен скрипт)"
1662
-
1663
- #~ msgid "* Manage Cookie Categories"
1664
- #~ msgstr "* Управление на бисквитка категории"
1665
-
1666
- #~ msgid ""
1667
- #~ "* Allow to display Cookie Settings popup where site visitors can opt-in "
1668
- #~ "or give consent to Cookie Categories"
1669
- #~ msgstr ""
1670
- #~ "* Оставя се да покажете настройките за бисквитки масите, където "
1671
- #~ "посетителите на сайта да opt-in или даде съгласие за бисквитка категории"
1672
-
1673
- #~ msgid ""
1674
- #~ "* Fully customisable to look just like your own website's style: "
1675
- #~ "customise the colours, styles and fonts"
1676
- #~ msgstr ""
1677
- #~ "* Напълно приспособима да изглежда точно като вашия собствен сайт стил: "
1678
- #~ "Персонализиране на цветове, стилове и шрифтове"
1679
-
1680
- #~ msgid "* Scan and Import/Export cookie list"
1681
- #~ msgstr "* Сканиране и импортиране/експортиране бисквитка списък"
1682
-
1683
- #~ msgid "* User Consent Report"
1684
- #~ msgstr "* Потребител съгласие доклад"
1685
-
1686
- #~ msgid "* Customisable Privacy Overview in Cookie Bar"
1687
- #~ msgstr "* Персонализиращ конфиденциалност Преглед в бисквитка лента"
1688
-
1689
- #~ msgid "* Show Cookie Bar only for EU Countries"
1690
- #~ msgstr "* Покажи бисквитка лента само за страните от ЕС"
1691
-
1692
- #~ msgid "* qTranslate support"
1693
- #~ msgstr "* Поддръжка на qTranslate"
1694
-
1695
- #~ msgid "Help"
1696
- #~ msgstr "Помощ"
1697
-
1698
- #~ msgid "Report a Bug"
1699
- #~ msgstr "Доклад за грешки"
1700
-
1701
- #~ msgid "Suggest a Feature"
1702
- #~ msgstr "Предложете функция"
1703
-
1704
- #~ msgid "About the law"
1705
- #~ msgstr "За закона"
1706
-
1707
- #~ msgid ""
1708
- #~ "This website uses cookies to improve your experience. We'll assume you're "
1709
- #~ "ok with this, but you can opt-out if you wish.[cookie_button] "
1710
- #~ "[cookie_settings] [cookie_link]"
1711
- #~ msgstr ""
1712
- #~ "Този уебсайт използва \"бисквитки\", за да подобри вашето преживяване. Ще "
1713
- #~ "предположим, че сте добре с това, но можете да се откажете, ако желаете. "
1714
- #~ "[Cookie_button] [cookie_settings] [cookie_link]"
1715
-
1716
- #~ msgid "Priority: (Numeric - Higher the value, higher the priority)"
1717
- #~ msgstr "Приоритет: (число - по-висока стойност, по-висока приоритетност)"
1718
-
1719
- #~ msgid "Priority"
1720
- #~ msgstr "Приоритет"
1721
-
1722
- #~ msgid "Scan & Download"
1723
- #~ msgstr "Сканиране и изтегляне"
1724
-
1725
- #~ msgid "Export Cookie"
1726
- #~ msgstr "Експортна бисквитка"
1727
-
1728
- #~ msgid "You do not have sufficient permissions to access this page."
1729
- #~ msgstr "Нямате достатъчно права за достъп до тази страница."
1730
-
1731
- #~ msgid "Export as CSV file"
1732
- #~ msgstr "Експортиране във формат CSV..."
1733
-
1734
- #~ msgid "Export"
1735
- #~ msgstr "Експортиране"
1736
-
1737
- #~ msgid "Scan & Import"
1738
- #~ msgstr "Импорт"
1739
-
1740
- #~ msgid "Import Cookie"
1741
- #~ msgstr "Импорт"
1742
-
1743
- #~ msgid "BEGIN %s"
1744
- #~ msgstr "ЗАПОЧНИ %s"
1745
-
1746
- #~ msgid "[Line %1$s] %2$s"
1747
- #~ msgstr "%1$s %2$s"
1748
-
1749
- #~ msgid "Import from a CSV file"
1750
- #~ msgstr "Импортира Bibtexml файл..."
1751
-
1752
- #~ msgid ""
1753
- #~ "Notice: please make the directory %s writable so that you can see the "
1754
- #~ "error log."
1755
- #~ msgstr ""
1756
- #~ "Забележка: Моля, направете директорията%s написана така, че да можете да "
1757
- #~ "видите регистъра на грешките."
1758
-
1759
- #~ msgid ", please <a href=\"%s\">check the error log</a>"
1760
- #~ msgstr ", моля, <a href=\"%s\">проверете регистъра на грешките</a>"
1761
-
1762
- #~ msgid "Error during file upload."
1763
- #~ msgstr "Грешка по време на качване."
1764
-
1765
- #~ msgid "Cannot extract data from uploaded file or no file was uploaded."
1766
- #~ msgstr "Не може да се извлече данни от качения файл или не е качен файл."
1767
-
1768
- #~ msgid "No posts was successfully imported%s."
1769
- #~ msgstr "Няма публикации е успешно импортирана %s."
1770
-
1771
- #~ msgid "Some posts were successfully imported but some were not%s."
1772
- #~ msgstr "Някои публикации бяха успешно импортирани, но някои не бяха%s."
1773
-
1774
- #~ msgid "Post import was successful."
1775
- #~ msgstr "След импортирането е успешно."
1776
-
1777
- #~ msgid "CSV file"
1778
- #~ msgstr "CSV файл"
1779
-
1780
- #~ msgid "You may want to see <a href=\"%s\">the example of the CSV file</a>."
1781
- #~ msgstr "Може да искате да видите <a href=\"%s\">примера на файла CSV</a> ."
1782
-
1783
- #~ msgid "Import"
1784
- #~ msgstr "Импорт"
1785
-
1786
- #~ msgid "Error processing migration request (ERROR: 4)"
1787
- #~ msgstr "Грешка при обработка на искане за мигриране (грешка: 4)"
1788
-
1789
- #~ msgid "Show only for EU Countries ( GeoIP )"
1790
- #~ msgstr "Покажи само за страните от ЕС (GeoIP)"
1791
-
1792
- #~ msgid "Cookie Law Message Bar"
1793
- #~ msgstr "Бар за съобщения на"
1794
-
1795
- #~ msgid "Shortcodes allowed: see settngs section \"Using the Shortcodes\"."
1796
- #~ msgstr ""
1797
- #~ "Позволени кратки кодове: виж раздел \"Използване на кратките кодове\"."
1798
-
1799
- #~ msgid "Link Text"
1800
- #~ msgstr "Текст за Препратката"
1801
-
1802
- #~ msgid "Open link in new window?"
1803
- #~ msgstr "Да се отвори ли линка в нов прозорец?"
1804
-
1805
- #~ msgid "Link colour"
1806
- #~ msgstr "Цвят на линка"
1807
-
1808
- #~ msgid "Show as button?"
1809
- #~ msgstr "Показване като бутон?"
1810
-
1811
- #~ msgid "Button colour"
1812
- #~ msgstr "Цвят на бутоните"
1813
-
1814
- #~ msgid "Button Size"
1815
- #~ msgstr "Размер на бутона"
1816
-
1817
- #~ msgid "Using the Shortcodes"
1818
- #~ msgstr "Използване на кратките кодове"
1819
-
1820
- #~ msgid "The shortcodes are:"
1821
- #~ msgstr "Използване на кратките кодове"
1822
-
1823
- #~ msgid "This prints out a nice table of cookies by category."
1824
- #~ msgstr "Това отпечатва, хубава маса на \"бисквитки\" от категория."
1825
-
1826
- #~ msgid "This prints the settings popup of cookie category."
1827
- #~ msgstr "Това отпечатва масите настройките на бисквитка категория."
1828
-
1829
- #~ msgid "Are you sure you want to migrate settings?"
1830
- #~ msgstr "Наистина ли искате да мигрирате настройки?"
1831
-
1832
- #~ msgid "Guide"
1833
- #~ msgstr "Ръководство"
1834
-
1835
- #~ msgid "Licence"
1836
- #~ msgstr "Лиценз"
1837
-
1838
- #~ msgid "Licence Activation"
1839
- #~ msgstr "Активиране на лиценз"
1840
-
1841
- #~ msgid "API Licence Key:"
1842
- #~ msgstr "API позволение ключ:"
1843
-
1844
- #~ msgid "Licence Key"
1845
- #~ msgstr "Лиценз"
1846
-
1847
- #~ msgid "Licence Email"
1848
- #~ msgstr "Лиценз за имейл"
1849
-
1850
- #~ msgid "Activate"
1851
- #~ msgstr "Активиране"
1852
-
1853
- #~ msgid "Cookie Category"
1854
- #~ msgstr "Категория бисквитки"
1855
-
1856
- #~ msgid "Action is unknown."
1857
- #~ msgstr "Действие"
1858
-
1859
- #~ msgid "No Consent History"
1860
- #~ msgstr "История на съгласието на GDPR"
1861
-
1862
- #~ msgid "IP Address"
1863
- #~ msgstr "IP Адрес"
1864
-
1865
- #~ msgid "Visited Date"
1866
- #~ msgstr "Посетен дата"
1867
-
1868
- #~ msgid "User ID"
1869
- #~ msgstr "Потребителско ID"
1870
-
1871
- #~ msgid "GDPR Consent History"
1872
- #~ msgstr "История на съгласието на GDPR"
1873
-
1874
- #~ msgid "Export Report"
1875
- #~ msgstr "Експортиране на отчет"
1876
-
1877
- #~ msgid "Event Logged Successfully"
1878
- #~ msgstr "Събитието е влязло успешно"
1879
-
1880
- #~ msgid "Logging is not enabled"
1881
- #~ msgstr "Записването не е активирано"
1882
-
1883
- #~ msgid "Consent Report"
1884
- #~ msgstr "Експортиране на отчет"
1885
-
1886
- #~ msgid "Cookie Bar will be show in:"
1887
- #~ msgstr "Бисквитката ще се появи в:"
1888
-
1889
- #~ msgid "Auto-hide cookie bar after delay?"
1890
- #~ msgstr "Автоматично скривай бисквитка бар след закъснение?"
1891
-
1892
- #~ msgid "Button will only link to URL if Action = Show URL"
1893
- #~ msgstr "Бутон само ще линк към URL, ако действие = показват URL"
1894
-
1895
- #~ msgid "Accept"
1896
- #~ msgstr "приемам"
1897
-
1898
- #~ msgid "Reject"
1899
- #~ msgstr "Отхвърляне"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/cookie-law-info-cs_CZ.mo DELETED
Binary file
languages/cookie-law-info-cs_CZ.po DELETED
@@ -1,1850 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: \n"
4
- "POT-Creation-Date: 2020-11-17 11:28+0530\n"
5
- "PO-Revision-Date: 2020-11-17 11:29+0530\n"
6
- "Last-Translator: \n"
7
- "Language-Team: \n"
8
- "Language: cs\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.4.2\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
15
- "X-Poedit-KeywordsList: __;_e\n"
16
- "X-Poedit-SearchPath-0: .\n"
17
-
18
- #: admin/class-cookie-law-info-admin.php:147
19
- #: admin/class-cookie-law-info-admin.php:148
20
- #: admin/class-cookie-law-info-admin.php:247
21
- #: admin/partials/cookie-law-info-admin_settings.php:31
22
- msgid "Settings"
23
- msgstr "Nastavení"
24
-
25
- #: admin/class-cookie-law-info-admin.php:155
26
- #: admin/class-cookie-law-info-admin.php:156
27
- #: public/modules/script-blocker/views/settings.php:174
28
- #: public/views/cookie-law-info_popup_content.php:23
29
- msgid "Non-necessary"
30
- msgstr "Není nutné"
31
-
32
- #: admin/class-cookie-law-info-admin.php:163
33
- #: admin/class-cookie-law-info-admin.php:164
34
- #: public/views/cookie-law-info_popup_content.php:22
35
- msgid "Necessary"
36
- msgstr "Nutné"
37
-
38
- #: admin/class-cookie-law-info-admin.php:171
39
- #: admin/class-cookie-law-info-admin.php:172
40
- #: admin/partials/cookie-law-info-privacy_overview.php:25
41
- msgid "Privacy Overview"
42
- msgstr "Přehled ochrany osobních údajů"
43
-
44
- #: admin/class-cookie-law-info-admin.php:221
45
- #: admin/class-cookie-law-info-admin.php:276
46
- #: admin/class-cookie-law-info-admin.php:334
47
- #: admin/class-cookie-law-info-admin.php:378
48
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:22
49
- #: public/modules/script-blocker/script-blocker.php:133
50
- #: public/modules/script-blocker/script-blocker.php:173
51
- #: public/modules/script-blocker/script-blocker.php:310
52
- msgid "You do not have sufficient permission to perform this operation"
53
- msgstr "Nemáte dostatečná oprávnění k provedení této operace"
54
-
55
- #: admin/class-cookie-law-info-admin.php:240
56
- #: admin/class-cookie-law-info-admin.php:306
57
- #: admin/class-cookie-law-info-admin.php:359
58
- #: admin/class-cookie-law-info-admin.php:403
59
- msgid "Settings Updated."
60
- msgstr "Nastavení aktualizováno."
61
-
62
- #: admin/class-cookie-law-info-admin.php:248
63
- msgid "Support"
64
- msgstr "Podpora"
65
-
66
- #: admin/class-cookie-law-info-admin.php:249
67
- msgid "Premium Upgrade"
68
- msgstr "Prémiová inovace"
69
-
70
- #: admin/class-cookie-law-info-admin.php:418
71
- msgid "ERROR MIGRATING SETTINGS (ERROR: 2)"
72
- msgstr "MIGRACE NASTAVENÍ CHYBA (CHYBA: 2)"
73
-
74
- #: admin/class-cookie-law-info-admin.php:436
75
- msgid "Cookie ID"
76
- msgstr "ID souboru cookie"
77
-
78
- #: admin/class-cookie-law-info-admin.php:437
79
- msgid "Cookie Type"
80
- msgstr "Typ souboru cookie"
81
-
82
- #: admin/class-cookie-law-info-admin.php:438
83
- msgid "Cookie Duration"
84
- msgstr "Trvání cookies"
85
-
86
- #: admin/class-cookie-law-info-admin.php:439
87
- msgid "Cookie Sensitivity"
88
- msgstr "Citlivost souborů cookie"
89
-
90
- #: admin/class-cookie-law-info-admin.php:689
91
- msgid "Close Header"
92
- msgstr "Zavřete záhlaví"
93
-
94
- #: admin/class-cookie-law-info-admin.php:693
95
- msgid "Open URL"
96
- msgstr "Otevřete adresu URL"
97
-
98
- #: admin/class-cookie-law-info-admin.php:706
99
- msgid "Extra Large"
100
- msgstr "Extra velké"
101
-
102
- #: admin/class-cookie-law-info-admin.php:710
103
- msgid "Large"
104
- msgstr "Velký"
105
-
106
- #: admin/class-cookie-law-info-admin.php:714
107
- msgid "Medium"
108
- msgstr "Střední"
109
-
110
- #: admin/class-cookie-law-info-admin.php:718
111
- msgid "Small"
112
- msgstr "Malý"
113
-
114
- #: admin/class-cookie-law-info-admin.php:732
115
- msgid "Default theme font"
116
- msgstr "Výchozí písmo motivu"
117
-
118
- #: admin/class-cookie-law-info-admin.php:736
119
- msgid "Sans Serif"
120
- msgstr "Sans Serif"
121
-
122
- #: admin/class-cookie-law-info-admin.php:740
123
- msgid "Serif"
124
- msgstr "Serif"
125
-
126
- #: admin/class-cookie-law-info-admin.php:744
127
- msgid "Arial"
128
- msgstr "Arial"
129
-
130
- #: admin/class-cookie-law-info-admin.php:748
131
- msgid "Arial Black"
132
- msgstr "Arial Black"
133
-
134
- #: admin/class-cookie-law-info-admin.php:752
135
- msgid "Georgia, serif"
136
- msgstr "Georgia, serif"
137
-
138
- #: admin/class-cookie-law-info-admin.php:756
139
- msgid "Helvetica"
140
- msgstr "Helvetica"
141
-
142
- #: admin/class-cookie-law-info-admin.php:760
143
- msgid "Lucida"
144
- msgstr "Lucida"
145
-
146
- #: admin/class-cookie-law-info-admin.php:764
147
- msgid "Tahoma"
148
- msgstr "Tahoma"
149
-
150
- #: admin/class-cookie-law-info-admin.php:768
151
- msgid "Times New Roman"
152
- msgstr "Times New Roman"
153
-
154
- #: admin/class-cookie-law-info-admin.php:772
155
- msgid "Trebuchet"
156
- msgstr "Trebuchet"
157
-
158
- #: admin/class-cookie-law-info-admin.php:776
159
- msgid "Verdana"
160
- msgstr "Verdana"
161
-
162
- #: admin/modules/ccpa/ccpa.php:106
163
- msgid "Do you really wish to opt out?"
164
- msgstr "Opravdu se chcete odhlásit?"
165
-
166
- #: admin/modules/ccpa/ccpa.php:107
167
- msgid "Confirm"
168
- msgstr "Potvrdit"
169
-
170
- #: admin/modules/ccpa/ccpa.php:108
171
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:154
172
- msgid "Cancel"
173
- msgstr "Zrušit"
174
-
175
- #: admin/modules/ccpa/ccpa.php:145
176
- msgid "Select the type of law"
177
- msgstr "Vyberte typ zákona"
178
-
179
- #: admin/modules/ccpa/ccpa.php:149
180
- msgid "GDPR"
181
- msgstr "GDPR"
182
-
183
- #: admin/modules/ccpa/ccpa.php:150 admin/modules/ccpa/ccpa.php:158
184
- msgid ""
185
- "Customize the buttons, notice, themes from the relevant tabs to setup your "
186
- "cookie notice accordingly."
187
- msgstr ""
188
- "Přizpůsobte tlačítka, oznámení, motivy z příslušných karet a podle toho "
189
- "nastavte upozornění na soubory cookie."
190
-
191
- #: admin/modules/ccpa/ccpa.php:153
192
- msgid "CCPA"
193
- msgstr "CCPA"
194
-
195
- #: admin/modules/ccpa/ccpa.php:154
196
- msgid ""
197
- "Most of the customizations from the tabs for buttons, notice or themes are "
198
- "not relevant especially if you choose to not show the notice, except the Do "
199
- "not sell within the buttons."
200
- msgstr ""
201
- "Většina úprav z karet pro tlačítka, oznámení nebo motivy nejsou relevantní, "
202
- "zejména pokud se rozhodnete nezobrazovat oznámení, s výjimkou možnosti "
203
- "Neprodávat v rámci tlačítek."
204
-
205
- #: admin/modules/ccpa/ccpa.php:157
206
- msgid "CCPA & GDPR"
207
- msgstr "CCPA a GDPR"
208
-
209
- #: admin/modules/ccpa/views/ccpa_settings.php:7
210
- msgid "CCPA Settings"
211
- msgstr "Nastavení CCPA"
212
-
213
- #: admin/modules/ccpa/views/ccpa_settings.php:7
214
- msgid ""
215
- "The right to opt out in the California Consumer Privacy Act gives consumers "
216
- "the ability to direct a business not to sell their personal information to a "
217
- "third party. If the user considers to not sell their personal information, "
218
- "all the scripts related to the categories which are configured to sell "
219
- "personal information will be blocked. The DO NOT SELL option is facilitated "
220
- "via a shortcode [wt_cli_ccpa_optout]."
221
- msgstr ""
222
- "Právo na výjimku z kalifornského zákona o ochraně spotřebitele dává "
223
- "spotřebitelům možnost nasměrovat firmu, aby své osobní údaje neprodávala "
224
- "třetí straně. Pokud se uživatel rozhodne, že své osobní údaje neprodá, budou "
225
- "zablokovány všechny skripty související s kategoriemi, které jsou "
226
- "konfigurovány pro prodej osobních údajů. Možnost DO NOT SELL je usnadněna "
227
- "pomocí krátkého kódu [wt_cli_ccpa_optout]."
228
-
229
- #: admin/modules/ccpa/views/ccpa_settings.php:10
230
- msgid "Enable CCPA ?"
231
- msgstr "Povolit CCPA?"
232
-
233
- #: admin/modules/ccpa/views/ccpa_settings.php:18
234
- msgid "Enable CCPA notice"
235
- msgstr "Povolit oznámení CCPA"
236
-
237
- #: admin/modules/ccpa/views/ccpa_settings.php:18
238
- msgid ""
239
- "Enabling the notice will display the banner with the relevant text as per "
240
- "your configuration. Use this option particularly to record prior consent "
241
- "from the website visitors."
242
- msgstr ""
243
- "Po aktivaci oznámení se zobrazí banner s příslušným textem podle vaší "
244
- "konfigurace. Tuto možnost použijte zejména k zaznamenání předchozího "
245
- "souhlasu návštěvníků webu."
246
-
247
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:26
248
- msgid "Unable to handle your request."
249
- msgstr "Váš požadavek nelze zpracovat."
250
-
251
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:96
252
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:130
253
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:132
254
- msgid "Error"
255
- msgstr "Chyba"
256
-
257
- #: admin/modules/cli-policy-generator/classes/class-preview-page.php:27
258
- msgid "Cookie Policy"
259
- msgstr "Zásady používání souborů cookie"
260
-
261
- #: admin/modules/cli-policy-generator/classes/class-preview-page.php:83
262
- msgid "Auto reload preview"
263
- msgstr "Automaticky znovu načíst náhled"
264
-
265
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:106
266
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:107
267
- #: admin/modules/cli-policy-generator/views/policy-generator.php:21
268
- msgid "Policy generator"
269
- msgstr "Generátor zásad"
270
-
271
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:133
272
- msgid "Success"
273
- msgstr "Úspěch"
274
-
275
- #: admin/modules/cli-policy-generator/views/policy-generator.php:25
276
- msgid "Sample heading"
277
- msgstr "Vzorové číslo"
278
-
279
- #: admin/modules/cli-policy-generator/views/policy-generator.php:26
280
- msgid "Sample content"
281
- msgstr "Obsah vzorku"
282
-
283
- #: admin/modules/cli-policy-generator/views/policy-generator.php:27
284
- msgid "Delete"
285
- msgstr "Smazat"
286
-
287
- #: admin/modules/cli-policy-generator/views/policy-generator.php:49
288
- msgid "Add new"
289
- msgstr "Přidat nový"
290
-
291
- #: admin/modules/cli-policy-generator/views/policy-generator.php:53
292
- msgid "Heading"
293
- msgstr "Nadpis"
294
-
295
- #: admin/modules/cli-policy-generator/views/policy-generator.php:57
296
- #: admin/views/admin_necessary_cookie.php:39
297
- #: admin/views/admin_non_necessary_cookie.php:54
298
- #: public/modules/script-blocker/views/settings.php:142
299
- #: public/modules/shortcode/shortcode.php:220
300
- msgid "Description"
301
- msgstr "Popis"
302
-
303
- #: admin/modules/cli-policy-generator/views/policy-generator.php:65
304
- msgid ""
305
- "Enabling this option will help us spread the word by placing a credit to "
306
- "WebToffee at the very end of the Cookie Policy page."
307
- msgstr ""
308
- "Povolení této možnosti nám pomůže šířit slovo umístěním kreditu na WebToffee "
309
- "na samém konci stránky Zásady pro soubory cookie."
310
-
311
- #: admin/modules/cli-policy-generator/views/policy-generator.php:82
312
- msgid "Update existing Cookie Policy page"
313
- msgstr "Aktualizovat stávající stránku Zásady souborů cookie"
314
-
315
- #: admin/modules/cli-policy-generator/views/policy-generator.php:88
316
- msgid "Create Cookie Policy page"
317
- msgstr "Vytvořit stránku zásad cookies"
318
-
319
- #: admin/modules/cli-policy-generator/views/policy-generator.php:92
320
- msgid "Live preview"
321
- msgstr "Živý náhled"
322
-
323
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:43
324
- msgid "The plugin is complex to set up"
325
- msgstr "Nastavení pluginu je složité"
326
-
327
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:45
328
- msgid "Please describe which area you are facing difficulties"
329
- msgstr "Popište, ve které oblasti máte potíže"
330
-
331
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:49
332
- msgid "I found a better plugin"
333
- msgstr "Našel jsem lepší plugin"
334
-
335
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:51
336
- msgid "Which plugin?"
337
- msgstr "Jaký plugin?"
338
-
339
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:55
340
- msgid "The plugin is great, but I need specific feature that you don't support"
341
- msgstr ""
342
- "Plugin je skvělý, ale já potřebuji specifickou funkci, kterou nepodporuje"
343
-
344
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:57
345
- msgid "Could you tell us more about that feature?"
346
- msgstr "Můžete nám říci více o této funkci?"
347
-
348
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:61
349
- msgid "The plugin didn't work as expected"
350
- msgstr "Plugin nefungoval podle mých očekávání"
351
-
352
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:63
353
- msgid "What did you expect?"
354
- msgstr "Co jste očekávali?"
355
-
356
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:67
357
- msgid "A conflict with another plugin or theme"
358
- msgstr "Konflikt s jiným pluginem nebo tématem"
359
-
360
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:69
361
- msgid "Which plugin or theme?"
362
- msgstr "Jaký plugin nebo téma?"
363
-
364
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:73
365
- msgid "Translation issues"
366
- msgstr "Problémy s překladem"
367
-
368
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:77
369
- msgid "Incorrect/missing translation"
370
- msgstr "Nesprávný / chybějící překlad"
371
-
372
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:79
373
- msgid "Name the language"
374
- msgstr "Pojmenujte jazyk"
375
-
376
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:83
377
- msgid ""
378
- "Unable to translate my dynamic content e.g, cookie message, button text etc"
379
- msgstr ""
380
- "Nelze přeložit můj dynamický obsah, např. Zprávu o cookies, text tlačítka atd"
381
-
382
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:85
383
- msgid "Name the language and the translator plugin that you are using"
384
- msgstr "Pojmenujte jazyk a plugin překladače, který používáte"
385
-
386
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:91
387
- msgid "Upgrade to pro"
388
- msgstr "Upgradujte na profesionální"
389
-
390
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:95
391
- #: admin/views/admin-settings-general.php:10
392
- #: admin/views/admin-settings-general.php:66
393
- msgid "Other"
394
- msgstr "Jiný"
395
-
396
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:97
397
- msgid "Could you tell us a bit more?"
398
- msgstr "Můžete nám říct něco víc?"
399
-
400
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:117
401
- msgid "If you have a moment, please let us know why you are deactivating:"
402
- msgstr "Pokud máte chvilku, dejte nám prosím vědět, proč deaktivujete:"
403
-
404
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:144
405
- msgid ""
406
- "We do not collect any personal data when you submit this form. It's your "
407
- "feedback that we value."
408
- msgstr ""
409
- "Při odeslání tohoto formuláře neshromažďujeme žádné osobní údaje. Vážíme si "
410
- "vaší zpětné vazby."
411
-
412
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:145
413
- msgid "Privacy Policy"
414
- msgstr "Zásady ochrany osobních údajů"
415
-
416
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:152
417
- msgid "Go to support"
418
- msgstr "Přejít na podporu"
419
-
420
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:153
421
- msgid "Submit & Deactivate"
422
- msgstr "Odeslat & Deaktivovat"
423
-
424
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:155
425
- msgid "I rather wouldn't say"
426
- msgstr "Raději bych neřekl"
427
-
428
- #: admin/partials/cookie-law-info-admin_settings.php:25
429
- #: admin/views/admin_necessary_cookie.php:20
430
- #: admin/views/admin_non_necessary_cookie.php:17
431
- msgid "Settings updated."
432
- msgstr "Nastavení byla aktualizována."
433
-
434
- #: admin/partials/cookie-law-info-admin_settings.php:26
435
- #: admin/views/admin_necessary_cookie.php:21
436
- #: admin/views/admin_non_necessary_cookie.php:18
437
- msgid "Unable to update Settings."
438
- msgstr "Nelze aktualizovat nastavení."
439
-
440
- #: admin/partials/cookie-law-info-admin_settings.php:27
441
- msgid "Settings reset to defaults."
442
- msgstr "Nastavení se obnoví na výchozí hodnoty."
443
-
444
- #: admin/partials/cookie-law-info-admin_settings.php:28
445
- msgid "Unable to reset settings."
446
- msgstr "Nelze obnovit nastavení."
447
-
448
- #: admin/partials/cookie-law-info-admin_settings.php:39
449
- msgid "Cookie bar is currently active"
450
- msgstr "Lišta cookie je aktuálně aktivní"
451
-
452
- #: admin/partials/cookie-law-info-admin_settings.php:47
453
- msgid "Cookie bar is currently inactive"
454
- msgstr "Lišta cookie je aktuálně neaktivní"
455
-
456
- #: admin/partials/cookie-law-info-admin_settings.php:57
457
- #: admin/views/admin-settings-general.php:9
458
- msgid "General"
459
- msgstr "Obecné"
460
-
461
- #: admin/partials/cookie-law-info-admin_settings.php:58
462
- msgid "Customise Cookie Bar"
463
- msgstr "Přizpůsobte panel souborů cookie"
464
-
465
- #: admin/partials/cookie-law-info-admin_settings.php:59
466
- msgid "Customise Buttons"
467
- msgstr "Přizpůsobte tlačítka"
468
-
469
- #: admin/partials/cookie-law-info-admin_settings.php:60
470
- #: admin/views/admin-settings-advanced.php:8
471
- msgid "Advanced"
472
- msgstr "Pokročilé"
473
-
474
- #: admin/partials/cookie-law-info-admin_settings.php:61
475
- msgid "Help Guide"
476
- msgstr "Příručka"
477
-
478
- #: admin/partials/cookie-law-info-privacy_overview.php:32
479
- msgid "Privacy Overview Title"
480
- msgstr "Název Přehled soukromí"
481
-
482
- #: admin/partials/cookie-law-info-privacy_overview.php:38
483
- #: admin/partials/cookie-law-info-privacy_overview.php:53
484
- msgid "This will be shown in the settings visible for user on consent screen."
485
- msgstr "To se ukáže v nastavení viditelné pro uživatele na obrazovce souhlas."
486
-
487
- #: admin/partials/cookie-law-info-privacy_overview.php:61
488
- msgid "Save Settings"
489
- msgstr "Uložit nastavení"
490
-
491
- #: admin/views/admin-settings-advanced.php:9
492
- msgid ""
493
- "Sometimes themes apply settings that clash with plugins. If that happens, "
494
- "try adjusting these settings."
495
- msgstr ""
496
- "Někdy motivy použít nastavení, které v rozporu s pluginy. Pokud k tomu "
497
- "dojde, zkuste upravit tato nastavení."
498
-
499
- #: admin/views/admin-settings-advanced.php:13
500
- msgid "Reset all values"
501
- msgstr "Obnovit všechny hodnoty"
502
-
503
- #: admin/views/admin-settings-advanced.php:15
504
- msgid "Delete settings and reset"
505
- msgstr "Odstranit nastavení a obnovit"
506
-
507
- #: admin/views/admin-settings-advanced.php:15
508
- msgid "Are you sure you want to delete all your settings?"
509
- msgstr "Opravdu že chcete odstranit všechna vaše nastavení?"
510
-
511
- #: admin/views/admin-settings-advanced.php:16
512
- msgid "Warning: this will actually delete your current settings."
513
- msgstr "Upozornění: to bude skutečně odstranit aktuální nastavení."
514
-
515
- #: admin/views/admin-settings-buttons.php:10
516
- msgid "Accept Button"
517
- msgstr "Přijmout tlačítko"
518
-
519
- #: admin/views/admin-settings-buttons.php:11
520
- #: admin/views/admin-settings-buttons.php:93
521
- msgid "Reject Button"
522
- msgstr "Odmítnout tlačítko"
523
-
524
- #: admin/views/admin-settings-buttons.php:12
525
- #: admin/views/admin-settings-buttons.php:163
526
- msgid "Settings Button"
527
- msgstr "Tlačítko Nastavení"
528
-
529
- #: admin/views/admin-settings-buttons.php:13
530
- #: admin/views/admin-settings-buttons.php:206
531
- msgid "Read More Link"
532
- msgstr "Odkaz pro číst více"
533
-
534
- #: admin/views/admin-settings-buttons.php:14
535
- #: admin/views/admin-settings-buttons.php:326
536
- msgid "Do not sell link"
537
- msgstr "Neprodávejte odkaz"
538
-
539
- #: admin/views/admin-settings-buttons.php:20
540
- msgid "Main Button"
541
- msgstr "Tlačítko"
542
-
543
- #: admin/views/admin-settings-buttons.php:21
544
- msgid ""
545
- "This button/link can be customised to either simply close the cookie bar, or "
546
- "follow a link. You can also customise the colours and styles, and show it as "
547
- "a link or a button."
548
- msgstr ""
549
- "Toto tlačítko/link lze přizpůsobit tak, aby jednoduše zavřít panel cookie, "
550
- "nebo klepnutím na odkaz. Můžete také přizpůsobit barvy a styly a Ukázat ji "
551
- "jako odkaz nebo tlačítko."
552
-
553
- #: admin/views/admin-settings-buttons.php:24
554
- #: admin/views/admin-settings-buttons.php:96
555
- #: admin/views/admin-settings-buttons.php:166
556
- #: admin/views/admin-settings-buttons.php:220
557
- msgid "Text"
558
- msgstr "Test"
559
-
560
- #: admin/views/admin-settings-buttons.php:30
561
- #: admin/views/admin-settings-buttons.php:102
562
- #: admin/views/admin-settings-buttons.php:172
563
- #: admin/views/admin-settings-buttons.php:226
564
- #: admin/views/admin-settings-buttons.php:346
565
- msgid "Text colour"
566
- msgstr "Barva textu těla"
567
-
568
- #: admin/views/admin-settings-buttons.php:38
569
- #: admin/views/admin-settings-buttons.php:110
570
- #: admin/views/admin-settings-buttons.php:180
571
- #: admin/views/admin-settings-buttons.php:234
572
- #: admin/views/admin-settings-buttons.php:335
573
- msgid "Show as"
574
- msgstr "Zobrazit jako"
575
-
576
- #: admin/views/admin-settings-buttons.php:40
577
- #: admin/views/admin-settings-buttons.php:112
578
- #: admin/views/admin-settings-buttons.php:182
579
- #: admin/views/admin-settings-buttons.php:236
580
- msgid "Button"
581
- msgstr "Tlačítko"
582
-
583
- #: admin/views/admin-settings-buttons.php:42
584
- #: admin/views/admin-settings-buttons.php:114
585
- #: admin/views/admin-settings-buttons.php:184
586
- #: admin/views/admin-settings-buttons.php:238
587
- #: admin/views/admin-settings-buttons.php:337
588
- msgid "Link"
589
- msgstr "Odkaz"
590
-
591
- #: admin/views/admin-settings-buttons.php:46
592
- #: admin/views/admin-settings-buttons.php:118
593
- #: admin/views/admin-settings-buttons.php:188
594
- #: admin/views/admin-settings-buttons.php:242
595
- msgid "Background colour"
596
- msgstr "Barva pozadí"
597
-
598
- #: admin/views/admin-settings-buttons.php:55
599
- #: admin/views/admin-settings-buttons.php:126
600
- msgid "Action"
601
- msgstr "Stav"
602
-
603
- #: admin/views/admin-settings-buttons.php:63
604
- #: admin/views/admin-settings-buttons.php:138
605
- #: admin/views/admin-settings-buttons.php:253
606
- #: admin/views/admin-settings-buttons.php:260
607
- msgid "URL"
608
- msgstr "Odkaz"
609
-
610
- #: admin/views/admin-settings-buttons.php:66
611
- #: admin/views/admin-settings-buttons.php:141
612
- msgid "Button will only link to URL if Action = Open URL"
613
- msgstr "Tlačítko bude odkazovat pouze na adresu URL, pokud akce = otevřít URL"
614
-
615
- #: admin/views/admin-settings-buttons.php:71
616
- #: admin/views/admin-settings-buttons.php:146
617
- msgid "Open URL in new window?"
618
- msgstr "Otevřít URL v novém okně?"
619
-
620
- #: admin/views/admin-settings-buttons.php:73
621
- #: admin/views/admin-settings-buttons.php:148
622
- #: admin/views/admin-settings-buttons.php:304
623
- #: admin/views/admin-settings-buttons.php:311
624
- #: admin/views/admin-settings-general.php:38
625
- #: admin/views/admin-settings-general.php:54
626
- #: admin/views/admin-settings-general.php:74
627
- #: admin/views/admin-settings-general.php:82
628
- #: admin/views/admin-settings-general.php:89
629
- #: admin/views/admin-settings-messagebar.php:86
630
- #: admin/views/admin-settings-messagebar.php:110
631
- #: admin/views/admin_non_necessary_cookie.php:32
632
- msgid "Yes"
633
- msgstr "Ano"
634
-
635
- #: admin/views/admin-settings-buttons.php:75
636
- #: admin/views/admin-settings-buttons.php:149
637
- #: admin/views/admin-settings-buttons.php:305
638
- #: admin/views/admin-settings-buttons.php:312
639
- #: admin/views/admin-settings-general.php:39
640
- #: admin/views/admin-settings-general.php:55
641
- #: admin/views/admin-settings-general.php:75
642
- #: admin/views/admin-settings-general.php:83
643
- #: admin/views/admin-settings-general.php:90
644
- #: admin/views/admin-settings-messagebar.php:87
645
- #: admin/views/admin-settings-messagebar.php:111
646
- #: admin/views/admin_non_necessary_cookie.php:33
647
- #: public/modules/script-blocker/views/settings.php:139
648
- msgid "No"
649
- msgstr "Ne"
650
-
651
- #: admin/views/admin-settings-buttons.php:82
652
- #: admin/views/admin-settings-buttons.php:153
653
- #: admin/views/admin-settings-buttons.php:196
654
- #: admin/views/admin-settings-buttons.php:316
655
- msgid "Size"
656
- msgstr "اندازه"
657
-
658
- #: admin/views/admin-settings-buttons.php:207
659
- msgid ""
660
- "This button/link can be used to provide a link out to your Privacy & Cookie "
661
- "Policy. You can customise it any way you like."
662
- msgstr ""
663
- "Toto tlačítko/link slouží k zajištění spojení bodů do vašeho soukromí & "
664
- "Cookie Policy. Můžete jej přizpůsobit jakýmkoli způsobem, které se vám líbí."
665
-
666
- #: admin/views/admin-settings-buttons.php:212
667
- msgid "Click"
668
- msgstr "Klikněte na"
669
-
670
- #: admin/views/admin-settings-buttons.php:212
671
- msgid "here"
672
- msgstr "tady"
673
-
674
- #: admin/views/admin-settings-buttons.php:212
675
- msgid " to generate content for Cookie Policy page."
676
- msgstr " generovat obsah pro stránku Zásady souborů cookie."
677
-
678
- #: admin/views/admin-settings-buttons.php:251
679
- msgid "URL or Page?"
680
- msgstr "Adresa URL nebo stránka?"
681
-
682
- #: admin/views/admin-settings-buttons.php:255
683
- #: admin/views/admin-settings-buttons.php:266
684
- msgid "Page"
685
- msgstr "Stránka"
686
-
687
- #: admin/views/admin-settings-buttons.php:269
688
- msgid "Select One"
689
- msgstr "Vyber jeden"
690
-
691
- #: admin/views/admin-settings-buttons.php:294
692
- msgid "The currently selected page does not exist. Please select a new page."
693
- msgstr "Aktuálně vybraná stránka neexistuje. Vyberte prosím novou stránku."
694
-
695
- #: admin/views/admin-settings-buttons.php:302
696
- msgid "Minimize Cookie Bar in this page/URL?"
697
- msgstr "Minimalizovat panel cookie na této stránce / adrese URL?"
698
-
699
- #: admin/views/admin-settings-buttons.php:309
700
- msgid "Open in new window?"
701
- msgstr "Otevři v novém okně?"
702
-
703
- #: admin/views/admin-settings-buttons.php:329
704
- msgid "CCPA Text"
705
- msgstr "Text CCPA"
706
-
707
- #: admin/views/admin-settings-buttons.php:338
708
- msgid "Checkbox"
709
- msgstr "Check"
710
-
711
- #: admin/views/admin-settings-buttons.php:340
712
- msgid "The shortcode will be represented as a link whereever used."
713
- msgstr "Krátký kód bude představován jako odkaz kdekoli použitý."
714
-
715
- #: admin/views/admin-settings-buttons.php:341
716
- msgid ""
717
- "The shortcode will be represented as a checkbox with select option to record "
718
- "consent."
719
- msgstr ""
720
- "Zkratkový kód bude zobrazen jako zaškrtávací políčko s možností výběru pro "
721
- "zaznamenání souhlasu."
722
-
723
- #: admin/views/admin-settings-general.php:17
724
- msgid "Enable cookie bar"
725
- msgstr "Povolit lištu cookie"
726
-
727
- #: admin/views/admin-settings-general.php:19
728
- msgid "On"
729
- msgstr "Zapnout"
730
-
731
- #: admin/views/admin-settings-general.php:20
732
- msgid "Off"
733
- msgstr "Vypnout"
734
-
735
- #: admin/views/admin-settings-general.php:36
736
- msgid "Auto-hide(Accept) cookie bar after delay?"
737
- msgstr "Automaticky skrýt (Accept) cookie bar po zpoždění?"
738
-
739
- #: admin/views/admin-settings-general.php:43
740
- msgid "Milliseconds until hidden"
741
- msgstr "Milisekund dokud skryté"
742
-
743
- #: admin/views/admin-settings-general.php:46
744
- msgid "Specify milliseconds (not seconds)"
745
- msgstr "Zadejte milisekund (ne sekundy)"
746
-
747
- #: admin/views/admin-settings-general.php:46
748
- msgid "seconds"
749
- msgstr "s"
750
-
751
- #: admin/views/admin-settings-general.php:52
752
- msgid "Auto-hide cookie bar if the user scrolls ( Accept on Scroll )?"
753
- msgstr ""
754
- "Automatická skrytí panelu souborů cookie, pokud se uživatel posouvá "
755
- "(Přijmout při rolování)?"
756
-
757
- #: admin/views/admin-settings-general.php:56
758
- msgid ""
759
- "As per latest GDPR policies it is required to take an explicit consent for "
760
- "the cookies. Use this option with discretion especially if you serve EU"
761
- msgstr ""
762
- "Podle nejnovějších zásad GDPR je nutné výslovně souhlasit s cookies. "
763
- "Použijte tuto možnost s uvážením, zejména pokud sloušíte EU"
764
-
765
- #: admin/views/admin-settings-general.php:57
766
- msgid "This option will not work along with `Popup overlay`."
767
- msgstr "Tato volba nebude fungovat spolu s `Popup overlay`."
768
-
769
- #: admin/views/admin-settings-general.php:69
770
- msgid "Reload after \"scroll accept\" event?"
771
- msgstr "Znovu načíst po události \"posun akceptovat\"?"
772
-
773
- #: admin/views/admin-settings-general.php:80
774
- msgid "Reload after Accept button click"
775
- msgstr "Znovu načíst po kliknutí na tlačítko Accept"
776
-
777
- #: admin/views/admin-settings-general.php:87
778
- msgid "Reload after Reject button click"
779
- msgstr "Znovu načíst po klepnutí na tlačítko Odmítnout"
780
-
781
- #: admin/views/admin-settings-help.php:9
782
- msgid "Shortcodes"
783
- msgstr "Krátké kódy"
784
-
785
- #: admin/views/admin-settings-help.php:10
786
- #: admin/views/admin-settings-help.php:103
787
- msgid "Help Links"
788
- msgstr "Odkazy nápovědy"
789
-
790
- #: admin/views/admin-settings-help.php:16
791
- msgid "Cookie bar shortcodes"
792
- msgstr "Cookie bar shortcodes"
793
-
794
- #: admin/views/admin-settings-help.php:17
795
- msgid ""
796
- "You can enter the shortcodes in the \"message\" field of the Cookie Law Info "
797
- "bar. They add nicely formatted buttons and/or links into the cookie bar, "
798
- "without you having to add any HTML."
799
- msgstr ""
800
- "Shortcodes můžete zadat do pole \"zpráva\" Cookie zákon informační panel. "
801
- "Dodávají zformátovaný tlačítka nebo odkazy do souboru cookie baru, aniž by "
802
- "bylo nutné přidávat žádné HTML."
803
-
804
- #: admin/views/admin-settings-help.php:22
805
- msgid "This is the \"main button\" you customise above."
806
- msgstr "To je \"hlavní tlačítko\" přizpůsobit výše."
807
-
808
- #: admin/views/admin-settings-help.php:26
809
- msgid "This is the cookie reject button shortcode."
810
- msgstr "Je to krátký tlačítko odmítnout cookie."
811
-
812
- #: admin/views/admin-settings-help.php:30
813
- msgid "This is the cookie settings button rendering shortcode."
814
- msgstr "Je to krátký vykreslování souborů cookie nastavení tlačítko."
815
-
816
- #: admin/views/admin-settings-help.php:33
817
- msgid "This is the \"read more\" link you customise above."
818
- msgstr "To je odkaz \"více\", který si přizpůsobit výše."
819
-
820
- #: admin/views/admin-settings-help.php:36
821
- msgid "Setup margin for above buttons"
822
- msgstr "Okno nastavení pro výše uvedená tlačítka"
823
-
824
- #: admin/views/admin-settings-help.php:65
825
- msgid "Other shortcodes"
826
- msgstr "Jiné shortcodes"
827
-
828
- #: admin/views/admin-settings-help.php:66
829
- msgid ""
830
- "These shortcodes can be used in pages and posts on your website. It is not "
831
- "recommended to use these inside the cookie bar itself."
832
- msgstr ""
833
- "Tyto krátké kódy lze použít v stránky a příspěvky na vašem webu. Není "
834
- "doporučeno používat tyto uvnitř cookie samostatně."
835
-
836
- #: admin/views/admin-settings-help.php:72
837
- msgid ""
838
- "This prints out a nice table of cookies, in line with the guidance given by "
839
- "the ICO."
840
- msgstr "To vytiskne pěkná tabulka souborů cookie, podle pokynů daných ICO."
841
-
842
- #: admin/views/admin-settings-help.php:72
843
- msgid ""
844
- "You need to enter the cookies your website uses via the Cookie Law Info menu "
845
- "in your WordPress dashboard."
846
- msgstr ""
847
- "Je třeba zadat váš web používá soubory cookie prostřednictvím nabídky soubor "
848
- "Cookie zákon Info v řídicím panelu WordPress."
849
-
850
- #: admin/views/admin-settings-help.php:80
851
- msgid "Styles included"
852
- msgstr "Zahrnuté styly"
853
-
854
- #: admin/views/admin-settings-help.php:82
855
- msgid "Columns available"
856
- msgstr "Dostupné sloupce"
857
-
858
- #: admin/views/admin-settings-help.php:82
859
- msgid "Will print all columns by default."
860
- msgstr "Standardně vytiskne všechny sloupce."
861
-
862
- #: admin/views/admin-settings-help.php:86
863
- msgid ""
864
- "This shortcode will display a normal HTML link which when clicked, will "
865
- "delete the cookie set by Cookie Law Info (this cookie is used to remember "
866
- "that the cookie bar is closed)."
867
- msgstr ""
868
- "Tento zkrácený kód zobrazí normální odkaz HTML, který po klepnutí vymaže "
869
- "cookie nastavenou Cookie Law Info (tento cookie slouží k zapamatování, že "
870
- "panel cookie je zavřený)."
871
-
872
- #: admin/views/admin-settings-help.php:90
873
- msgid ""
874
- "Add any text you like- useful if you want e.g. another language to English."
875
- msgstr ""
876
- "Přidejte libovolný text vás jako-užitečné, pokud chcete například jiný jazyk "
877
- "do angličtiny."
878
-
879
- #: admin/views/admin-settings-help.php:94
880
- msgid "Add content after accepting the cookie notice."
881
- msgstr "Přidat obsah po přijetí oznámení o cookie."
882
-
883
- #: admin/views/admin-settings-help.php:107
884
- #: admin/views/admin-settings-help.php:110 admin/views/goto-pro.php:103
885
- msgid "Documentation"
886
- msgstr "Dokumentace"
887
-
888
- #: admin/views/admin-settings-help.php:108
889
- msgid "Refer to our documentation to set and get started"
890
- msgstr "V naší dokumentaci nastavte a začněte"
891
-
892
- #: admin/views/admin-settings-help.php:115
893
- msgid "Help and Support"
894
- msgstr "Pomoc a podpora"
895
-
896
- #: admin/views/admin-settings-help.php:116
897
- msgid "We would love to help you on any queries or issues."
898
- msgstr "Rádi bychom vám pomohli s dotazy nebo problémy."
899
-
900
- #: admin/views/admin-settings-help.php:118
901
- msgid "Contact Us"
902
- msgstr "Kontaktujte nás"
903
-
904
- #: admin/views/admin-settings-messagebar.php:9
905
- msgid "Cookie bar"
906
- msgstr "Soubor cookie"
907
-
908
- #: admin/views/admin-settings-messagebar.php:10
909
- #: admin/views/admin-settings-messagebar.php:145
910
- msgid "Revisit consent"
911
- msgstr "Znovu souhlas"
912
-
913
- #: admin/views/admin-settings-messagebar.php:15
914
- msgid "Cookie Bar"
915
- msgstr "Barová lišta"
916
-
917
- #: admin/views/admin-settings-messagebar.php:18
918
- msgid "Message Heading"
919
- msgstr "Nadpis zprávy"
920
-
921
- #: admin/views/admin-settings-messagebar.php:21
922
- msgid "Leave it blank, If you do not need a heading"
923
- msgstr "Nechte to prázdné, pokud nepotřebujete nadpis"
924
-
925
- #: admin/views/admin-settings-messagebar.php:26
926
- msgid "Message"
927
- msgstr "Zpráva"
928
-
929
- #: admin/views/admin-settings-messagebar.php:32
930
- msgid "Shortcodes allowed: see the Help Guide tab"
931
- msgstr "Povolené zkratky: viz příručka Nápověda"
932
-
933
- #: admin/views/admin-settings-messagebar.php:32
934
- msgid ""
935
- "Examples: \"We use cookies on this website [cookie_accept] to find out how "
936
- "to delete cookies [cookie_link].\""
937
- msgstr ""
938
- "Příklady: \"používáme soubory cookie na tomto webu [cookie_accept] Chcete-li "
939
- "zjistit, jak odstranit soubory cookie [cookie_link].\""
940
-
941
- #: admin/views/admin-settings-messagebar.php:36
942
- msgid "Cookie Bar Colour"
943
- msgstr "Barva karet cookie"
944
-
945
- #: admin/views/admin-settings-messagebar.php:46
946
- msgid "Text Colour"
947
- msgstr "Barva textu těla"
948
-
949
- #: admin/views/admin-settings-messagebar.php:55
950
- msgid "Font"
951
- msgstr "Písmo"
952
-
953
- #: admin/views/admin-settings-messagebar.php:63
954
- msgid "Show cookie bar as"
955
- msgstr "Cookie bar jako"
956
-
957
- #: admin/views/admin-settings-messagebar.php:68
958
- msgid "Banner"
959
- msgstr "Prapor"
960
-
961
- #: admin/views/admin-settings-messagebar.php:69
962
- msgid "Popup"
963
- msgstr "Vyskakovat"
964
-
965
- #: admin/views/admin-settings-messagebar.php:70
966
- msgid "Widget"
967
- msgstr "Widget"
968
-
969
- #: admin/views/admin-settings-messagebar.php:74
970
- msgid "Position"
971
- msgstr "Pozice"
972
-
973
- #: admin/views/admin-settings-messagebar.php:84
974
- msgid "Add overlay?"
975
- msgstr "Přidat překrytí?"
976
-
977
- #: admin/views/admin-settings-messagebar.php:88
978
- msgid ""
979
- "When the popup is active, an overlay will block the user from browsing the "
980
- "site."
981
- msgstr ""
982
- "Když je místní nabídka aktivní, překrytí zabrání uživateli procházet web."
983
-
984
- #: admin/views/admin-settings-messagebar.php:89
985
- msgid "`Accept on scroll` will not work along with this option."
986
- msgstr "`Accept on scroll` spolu s touto volbou nebude fungovat."
987
-
988
- #: admin/views/admin-settings-messagebar.php:93
989
- msgid "Position:"
990
- msgstr "Pozice:"
991
-
992
- #: admin/views/admin-settings-messagebar.php:98
993
- msgid "Header"
994
- msgstr "Hlavička"
995
-
996
- #: admin/views/admin-settings-messagebar.php:99
997
- msgid "Footer"
998
- msgstr "Zápatí"
999
-
1000
- #: admin/views/admin-settings-messagebar.php:108
1001
- msgid "Fix Cookie Bar to Header?"
1002
- msgstr "Oprava souboru Cookie Bar do hlavičky?"
1003
-
1004
- #: admin/views/admin-settings-messagebar.php:112
1005
- msgid ""
1006
- "If you select \"Header\" then you can optionally stick the cookie bar to the "
1007
- "header. Will not have any effect if you select \"Footer\"."
1008
- msgstr ""
1009
- "Pokud vyberete \"Hlavička\" můžete volitelně držet panel cookie záhlaví. "
1010
- "Nebude mít žádný vliv, pokud vyberete \"Zápatí\"."
1011
-
1012
- #: admin/views/admin-settings-messagebar.php:120
1013
- msgid "On load"
1014
- msgstr "Pod zatížením"
1015
-
1016
- #: admin/views/admin-settings-messagebar.php:125
1017
- #: admin/views/admin-settings-messagebar.php:135
1018
- msgid "Animate"
1019
- msgstr "Animovat"
1020
-
1021
- #: admin/views/admin-settings-messagebar.php:126
1022
- #: admin/views/admin-settings-messagebar.php:136
1023
- msgid "Sticky"
1024
- msgstr "Připnutý"
1025
-
1026
- #: admin/views/admin-settings-messagebar.php:130
1027
- msgid "On hide"
1028
- msgstr "Na skrýt"
1029
-
1030
- #: admin/views/admin-settings-messagebar.php:145
1031
- msgid "previously"
1032
- msgstr "dříve"
1033
-
1034
- #: admin/views/admin-settings-messagebar.php:145
1035
- msgid "Show again tab"
1036
- msgstr "Zobrazit znovu Tab"
1037
-
1038
- #: admin/views/admin-settings-messagebar.php:147
1039
- msgid ""
1040
- "Revisit consent will allow the visitors to view/edit/revoke their prior "
1041
- "preferences. This can be done via a widget and/or a shortcode. A small "
1042
- "privacy widget is automatically displayed at the footer of your website if "
1043
- "the widget option is enabled. You can also manually insert a link to manage "
1044
- "consent by adding the shortcode <b>[wt_cli_manage_consent]</b> to your "
1045
- "website."
1046
- msgstr ""
1047
- "Opětovný souhlas umožní návštěvníkům zobrazit / upravit / odvolat jejich "
1048
- "předchozí preference. To lze provést pomocí widgetu a / nebo zkráceného "
1049
- "kódu. Pokud je povolena možnost widgetu, v zápatí vašeho webu se automaticky "
1050
- "zobrazí malý widget ochrany osobních údajů. Můžete také ručně vložit odkaz "
1051
- "pro správu souhlasu přidáním <b>zkráceného kódu [wt_cli_manage_consent]</b> "
1052
- "na svůj web."
1053
-
1054
- #: admin/views/admin-settings-messagebar.php:152
1055
- msgid "Enable revisit consent widget"
1056
- msgstr "Povolit widget pro opětovný souhlas"
1057
-
1058
- #: admin/views/admin-settings-messagebar.php:152
1059
- msgid ""
1060
- "By enabling this option a small privacy widget is automatically displayed at "
1061
- "the footer of your website."
1062
- msgstr ""
1063
- "Povolením této možnosti se v zápatí vašeho webu automaticky zobrazí malý "
1064
- "widget ochrany osobních údajů."
1065
-
1066
- #: admin/views/admin-settings-messagebar.php:163
1067
- #: admin/views/admin-settings-messagebar.php:180
1068
- msgid "Tab Position"
1069
- msgstr "Pozice"
1070
-
1071
- #: admin/views/admin-settings-messagebar.php:168
1072
- #: admin/views/admin-settings-messagebar.php:171
1073
- msgid "Right"
1074
- msgstr "Vpravo"
1075
-
1076
- #: admin/views/admin-settings-messagebar.php:169
1077
- #: admin/views/admin-settings-messagebar.php:172
1078
- msgid "Left"
1079
- msgstr "Vlevo"
1080
-
1081
- #: admin/views/admin-settings-messagebar.php:187
1082
- msgid "Bottom Right"
1083
- msgstr "Vpravo dole"
1084
-
1085
- #: admin/views/admin-settings-messagebar.php:190
1086
- msgid "Bottom Left"
1087
- msgstr "Vlevo dole"
1088
-
1089
- #: admin/views/admin-settings-messagebar.php:193
1090
- msgid "Top Right"
1091
- msgstr "Vpravo nahoře"
1092
-
1093
- #: admin/views/admin-settings-messagebar.php:196
1094
- msgid "Top Left"
1095
- msgstr "Vlevo nahoře"
1096
-
1097
- #: admin/views/admin-settings-messagebar.php:203
1098
- msgid "From Right Margin"
1099
- msgstr "Od pravého okraje"
1100
-
1101
- #: admin/views/admin-settings-messagebar.php:203
1102
- msgid "From Left Margin"
1103
- msgstr "Levý okraj"
1104
-
1105
- #: admin/views/admin-settings-messagebar.php:206
1106
- msgid "Specify"
1107
- msgstr "Upřesněte"
1108
-
1109
- #: admin/views/admin-settings-messagebar.php:215
1110
- #: admin/views/admin_necessary_cookie.php:33
1111
- #: admin/views/admin_non_necessary_cookie.php:48
1112
- msgid "Title"
1113
- msgstr "Nadpis"
1114
-
1115
- #: admin/views/admin-settings-save-button.php:12
1116
- #: admin/views/admin_necessary_cookie.php:52
1117
- #: admin/views/admin_non_necessary_cookie.php:87
1118
- #: public/modules/script-blocker/script-blocker.php:219
1119
- msgid "Update Settings"
1120
- msgstr "Aktualizovat nastavení"
1121
-
1122
- #: admin/views/admin_necessary_cookie.php:26
1123
- msgid "Necessary Cookie Settings"
1124
- msgstr "Nezbytné nastavení souborů cookie"
1125
-
1126
- #: admin/views/admin_non_necessary_cookie.php:23
1127
- msgid "Non-necessary Cookie Settings"
1128
- msgstr "Nepotřebné nastavení souborů cookie"
1129
-
1130
- #: admin/views/admin_non_necessary_cookie.php:31
1131
- msgid "Enable Non-necessary Cookie"
1132
- msgstr "Povolit Cookie-potřebné"
1133
-
1134
- #: admin/views/admin_non_necessary_cookie.php:38
1135
- msgid "Default state"
1136
- msgstr "Výchozí stav"
1137
-
1138
- #: admin/views/admin_non_necessary_cookie.php:39
1139
- #: public/modules/script-blocker/views/settings.php:141
1140
- #: public/views/cookie-law-info_popup_content.php:7
1141
- msgid "Enabled"
1142
- msgstr "Povoleno"
1143
-
1144
- #: admin/views/admin_non_necessary_cookie.php:40
1145
- #: public/views/cookie-law-info_popup_content.php:8
1146
- msgid "Disabled"
1147
- msgstr "Zakázáno"
1148
-
1149
- #: admin/views/admin_non_necessary_cookie.php:42
1150
- msgid ""
1151
- "If you enable this option, the category toggle button will be in the active "
1152
- "state for cookie consent."
1153
- msgstr ""
1154
- "Pokud tuto možnost povolíte, přepínací tlačítko kategorie bude v aktivním "
1155
- "stavu pro souhlas s cookie."
1156
-
1157
- #: admin/views/admin_non_necessary_cookie.php:62
1158
- msgid ""
1159
- "This script will be added to the page HEAD section if the above settings is "
1160
- "enabled and user has give consent."
1161
- msgstr ""
1162
- "Tento skript bude přidán na stránky sekci HEAD, je-li výše uvedené nastavení "
1163
- "je povolena a uživatel má udělit souhlas."
1164
-
1165
- #: admin/views/admin_non_necessary_cookie.php:67
1166
- msgid ""
1167
- "Print scripts in the head tag on the front end if above cookie settings is "
1168
- "enabled and user has given consent."
1169
- msgstr ""
1170
- "Tisk skripty v hlavy tag na přední straně, je-li nad cookie nastavení "
1171
- "povoleno a uživatel udělil souhlas."
1172
-
1173
- #: admin/views/admin_non_necessary_cookie.php:74
1174
- msgid ""
1175
- "This script will be added right after the BODY section if the above settings "
1176
- "is enabled and user has given consent."
1177
- msgstr ""
1178
- "Tento skript bude přidána hned po části těla je-li výše uvedené nastavení je "
1179
- "povolena a uživatel udělil souhlas."
1180
-
1181
- #: admin/views/admin_non_necessary_cookie.php:77
1182
- msgid ""
1183
- "Print scripts before the closing body tag on the front end if above cookie "
1184
- "settings is enabled and user has given consent."
1185
- msgstr ""
1186
- "Tisk skripty před uzavírací orgán označit na přední straně nad cookie "
1187
- "nastavení je povolena a uživatel udělil souhlas."
1188
-
1189
- #: admin/views/goto-pro.php:56
1190
- msgid "Where did my settings go?"
1191
- msgstr "Kam se poděla moje nastavení?"
1192
-
1193
- #: admin/views/goto-pro.php:57
1194
- msgid "Cookie Law Info version 0.9 has been updated and has new settings."
1195
- msgstr ""
1196
- "Cookie zákon Info verze 0,9 byla aktualizována a obsahuje nové nastavení."
1197
-
1198
- #: admin/views/goto-pro.php:57
1199
- msgid "Your previous settings are safe."
1200
- msgstr "Vaše předchozí nastavení jsou v bezpečí."
1201
-
1202
- #: admin/views/goto-pro.php:58
1203
- msgid ""
1204
- "You can either copy over your old settings to this version, or use the new "
1205
- "default values."
1206
- msgstr ""
1207
- "Můžete buď zkopírovat přes vaše staré nastavení pro tuto verzi nebo použijte "
1208
- "nové výchozí hodnoty."
1209
-
1210
- #: admin/views/goto-pro.php:60
1211
- msgid "Would you like to:"
1212
- msgstr "Chtěl bys:"
1213
-
1214
- #: admin/views/goto-pro.php:62
1215
- msgid "Use previous settings"
1216
- msgstr "Použít předchozí nastavení"
1217
-
1218
- #: admin/views/goto-pro.php:63
1219
- msgid "Start afresh with the new version"
1220
- msgstr "Začít znovu s novou verzí"
1221
-
1222
- #: admin/views/goto-pro.php:67
1223
- msgid ""
1224
- "If you want to go back to the previous version you can always download it "
1225
- "again from"
1226
- msgstr ""
1227
- "Pokud chcete vrátit zpět k předchozí verzi, můžete vždy stáhnout jej znovu od"
1228
-
1229
- #: admin/views/goto-pro.php:73
1230
- msgid "30 Day Money Back Guarantee"
1231
- msgstr "30denní záruka vrácení peněz"
1232
-
1233
- #: admin/views/goto-pro.php:74
1234
- msgid "Fast and Superior Support"
1235
- msgstr "Rychlá a vynikající podpora"
1236
-
1237
- #: admin/views/goto-pro.php:75
1238
- msgid "10X Powerful with GDPR Cookie Consent Features That Every Site Needs"
1239
- msgstr "10X Výkonný s GDPR Cookie Souhlas funkce, které každý web potřebuje"
1240
-
1241
- #: admin/views/goto-pro.php:78
1242
- msgid "Upgrade to Premium"
1243
- msgstr "Upgrade na Premium"
1244
-
1245
- #: admin/views/goto-pro.php:84
1246
- msgid "Automatic Cookie Scanner"
1247
- msgstr "Automatický skener souborů cookie"
1248
-
1249
- #: admin/views/goto-pro.php:85
1250
- msgid ""
1251
- "Auto block scripts - Google Analytics, Facebook Pixel, Google Tag Manager, "
1252
- "Hotjar Analytics, Google Publisher Tag, Youtube embed, Vimeo embed, Google "
1253
- "maps, Addthis widget, Sharethis widget, Twitter widget, Soundcloud embed, "
1254
- "Slideshare embed, Linkedin widget, Instagram embed, Pinterest widget"
1255
- msgstr ""
1256
- "Skripty pro automatické blokování - Google Analytics, Facebook Pixel, Google "
1257
- "Tag Manager, Hotjar Analytics, Google Publisher Tag, Youtube embed, Vimeo "
1258
- "embed, Google mapy, Addthis widget, Sharethis widget, Twitter widget, "
1259
- "Soundcloud embed, Slideshare embed, Linkedin widget, Instagram embed , "
1260
- "Widget widgetu"
1261
-
1262
- #: admin/views/goto-pro.php:86
1263
- msgid "Location based exclusion of cookie notice for EU countries"
1264
- msgstr "Vyloučení upozornění cookie na základě umístění pro země EU"
1265
-
1266
- #: admin/views/goto-pro.php:87
1267
- msgid "Granular control over the cookies/scipts used by the website"
1268
- msgstr "Granulární kontrola nad cookies / scipts používanými webovou stránkou"
1269
-
1270
- #: admin/views/goto-pro.php:88
1271
- msgid "User consent audit logs"
1272
- msgstr "Protokoly auditu souhlasu uživatele"
1273
-
1274
- #: admin/views/goto-pro.php:89
1275
- msgid "Customized privacy overview"
1276
- msgstr "Přizpůsobený přehled soukromí"
1277
-
1278
- #: admin/views/goto-pro.php:90
1279
- msgid "Cookie bar preview in admin settings page"
1280
- msgstr "Náhled souboru cookie na stránce nastavení administrátora"
1281
-
1282
- #: admin/views/goto-pro.php:91
1283
- msgid "Advanced support for cache plugins"
1284
- msgstr "Pokročilá podpora pro pluginy cache"
1285
-
1286
- #: admin/views/goto-pro.php:92
1287
- msgid "Cookie bar theme customizer for banner/ widgets/ popup"
1288
- msgstr "Přizpůsobení barového pruhu pro banner / widgety / popup"
1289
-
1290
- #: admin/views/goto-pro.php:93
1291
- msgid "GDPR compliance with Google Tag Manager"
1292
- msgstr "Soulad GDPR se správcem značek Google"
1293
-
1294
- #: admin/views/goto-pro.php:94
1295
- msgid "Javascript helper functions"
1296
- msgstr "Pomocné funkce Javascript"
1297
-
1298
- #: admin/views/goto-pro.php:108
1299
- msgid "Like this plugin?"
1300
- msgstr "Líbí se vám tento plugin?"
1301
-
1302
- #: admin/views/goto-pro.php:109
1303
- msgid "If you find this plugin useful please show your support and rate it"
1304
- msgstr ""
1305
- "Pokud zjistíte, že tento plugin je užitečný, ukažte svou podporu a ohodnoťte "
1306
- "to"
1307
-
1308
- #: admin/views/goto-pro.php:109
1309
- msgid " on"
1310
- msgstr " na"
1311
-
1312
- #: admin/views/goto-pro.php:109
1313
- msgid " much appreciated!"
1314
- msgstr " vysoce ceněné!"
1315
-
1316
- #: cookie-law-info.php:80
1317
- msgid ""
1318
- "Please make sure the cache is cleared after each plugin update especially if "
1319
- "you have minified JS and/or CSS files."
1320
- msgstr ""
1321
- "Po každé aktualizaci pluginu se ujistěte, že je mezipaměť vymazána, zejména "
1322
- "pokud máte minifikované soubory JS a / nebo CSS."
1323
-
1324
- #: includes/class-cookie-law-info-review_request.php:52
1325
- #, php-format
1326
- msgid ""
1327
- "Hey, we at %sWebToffee%s would like to thank you for using our plugin. We "
1328
- "would really appreciate if you could take a moment to drop a quick review "
1329
- "that will inspire us to keep going."
1330
- msgstr ""
1331
- "Ahoj, v %sWebToffee% s bychom vám chtěli poděkovat za použití našeho "
1332
- "pluginu. Opravdu bychom ocenili, kdybyste si našli chvilku a upustili od "
1333
- "rychlé kontroly, která nás bude inspirovat, abychom pokračovali."
1334
-
1335
- #: includes/class-cookie-law-info-review_request.php:55
1336
- msgid "Remind me later"
1337
- msgstr "Připomenout později"
1338
-
1339
- #: includes/class-cookie-law-info-review_request.php:56
1340
- msgid "Not interested"
1341
- msgstr "Nemám zájem"
1342
-
1343
- #: includes/class-cookie-law-info-review_request.php:57
1344
- msgid "Review now"
1345
- msgstr "Zkontrolovat nyní"
1346
-
1347
- #: public/class-cookie-law-info-public.php:251
1348
- msgid "GDPR Cookie Consent"
1349
- msgstr "Cookie Souhlas"
1350
-
1351
- #: public/class-cookie-law-info-public.php:252
1352
- msgid "Cookie List"
1353
- msgstr "Seznam cookie"
1354
-
1355
- #: public/class-cookie-law-info-public.php:253
1356
- #: public/modules/shortcode/shortcode.php:208
1357
- msgid "Cookie"
1358
- msgstr "Sušenka"
1359
-
1360
- #: public/class-cookie-law-info-public.php:254
1361
- msgid "Add New"
1362
- msgstr "Vytvořit aktualitu"
1363
-
1364
- #: public/class-cookie-law-info-public.php:255
1365
- msgid "Add New Cookie Type"
1366
- msgstr "Přidat nový typ souboru Cookie"
1367
-
1368
- #: public/class-cookie-law-info-public.php:256
1369
- msgid "Edit Cookie Type"
1370
- msgstr "Upravit typ souboru Cookie"
1371
-
1372
- #: public/class-cookie-law-info-public.php:257
1373
- msgid "New Cookie Type"
1374
- msgstr "Nový typ souboru Cookie"
1375
-
1376
- #: public/class-cookie-law-info-public.php:258
1377
- msgid "View Cookie Type"
1378
- msgstr "Zobrazit typ souboru Cookie"
1379
-
1380
- #: public/class-cookie-law-info-public.php:259
1381
- msgid "Search Cookies"
1382
- msgstr "Hledat soubory cookie"
1383
-
1384
- #: public/class-cookie-law-info-public.php:260
1385
- msgid "Nothing found"
1386
- msgstr "Nic nebylo nalezeno"
1387
-
1388
- #: public/class-cookie-law-info-public.php:261
1389
- msgid "Nothing found in Trash"
1390
- msgstr "Nic jsme v koši nenašli"
1391
-
1392
- #: public/modules/script-blocker/script-blocker.php:156
1393
- #: public/modules/script-blocker/script-blocker.php:157
1394
- msgid "Script Blocker"
1395
- msgstr "Script Blocker"
1396
-
1397
- #: public/modules/script-blocker/script-blocker.php:182
1398
- msgid "Status updated"
1399
- msgstr "Stav aktualizován"
1400
-
1401
- #: public/modules/script-blocker/script-blocker.php:206
1402
- msgid "Advanced script rendering"
1403
- msgstr "Pokročilé vykreslování skriptů"
1404
-
1405
- #: public/modules/script-blocker/script-blocker.php:208
1406
- #: public/modules/script-blocker/views/settings.php:7
1407
- msgid "Enable"
1408
- msgstr "Povolit"
1409
-
1410
- #: public/modules/script-blocker/script-blocker.php:209
1411
- #: public/modules/script-blocker/views/settings.php:7
1412
- msgid "Disable"
1413
- msgstr "Zakázáno"
1414
-
1415
- #: public/modules/script-blocker/script-blocker.php:210
1416
- msgid ""
1417
- "Advanced script rendering will render the blocked scripts using javascript "
1418
- "thus eliminating the need for a page refresh. It is also optimized for "
1419
- "caching since there is no server-side processing after obtaining the consent."
1420
- msgstr ""
1421
- "Pokročilé vykreslování skriptů vykreslí blokované skripty pomocí "
1422
- "JavaScriptu, čímž eliminuje potřebu obnovy stránky. Je také optimalizován "
1423
- "pro ukládání do mezipaměti, protože po získání souhlasu neexistuje žádné "
1424
- "zpracování na straně serveru."
1425
-
1426
- #: public/modules/script-blocker/views/settings.php:9
1427
- msgid "Script blocker is enabled."
1428
- msgstr "Blokování skriptů je povoleno."
1429
-
1430
- #: public/modules/script-blocker/views/settings.php:9
1431
- msgid ""
1432
- "Script blocker is currently disabled. Enable the blocker if you want any of "
1433
- "the below listed plugins to be auto blocked."
1434
- msgstr ""
1435
- "Blokování skriptů je aktuálně deaktivováno. Povolte blokování, pokud chcete, "
1436
- "aby byl některý z níže uvedených pluginů automaticky blokován."
1437
-
1438
- #: public/modules/script-blocker/views/settings.php:10
1439
- #, php-format
1440
- msgid "<a href=\"javascript: submitform()\">%s</a>"
1441
- msgstr "<a href=\"javascript: submitform()\">%s</a>"
1442
-
1443
- #: public/modules/script-blocker/views/settings.php:14
1444
- #, php-format
1445
- msgid ""
1446
- "Advanced script rendering is currently disabled. It should be enabled for "
1447
- "the automatic script blocker to function. <a href=\"%s\">Enable.</a>"
1448
- msgstr ""
1449
- "Pokročilé vykreslování skriptů je aktuálně zakázáno. Mělo by být povoleno, "
1450
- "aby fungoval automatický blokovač skriptů. <a href=\"%s\">Umožnit.</a>"
1451
-
1452
- #: public/modules/script-blocker/views/settings.php:113
1453
- msgid "Manage Script Blocking"
1454
- msgstr "Správa blokování skriptů"
1455
-
1456
- #: public/modules/script-blocker/views/settings.php:134
1457
- #, php-format
1458
- msgid ""
1459
- "Below is the list of plugins currently supported for auto blocking. Plugins "
1460
- "marked inactive are either not installed or activated on your website. "
1461
- "Enabled plugins will be blocked by default on the front-end of your website "
1462
- "prior to obtaining user consent and rendered respectively based on consent. "
1463
- "<a href=\"%s\" target=\"_blank\">Read more.</a>"
1464
- msgstr ""
1465
- "Níže je uveden seznam pluginů aktuálně podporovaných pro automatické "
1466
- "blokování. Pluginy označené jako neaktivní nejsou na vašem webu "
1467
- "nainstalovány ani aktivovány. Povolené doplňky budou ve výchozím nastavení "
1468
- "blokovány na front-endu vašeho webu před získáním souhlasu uživatele a budou "
1469
- "vykresleny na základě souhlasu. <a href=\"%s\" target=\"_blank\">Přečtěte si "
1470
- "více.</a>"
1471
-
1472
- #: public/modules/script-blocker/views/settings.php:140
1473
- msgid "Name"
1474
- msgstr "Jméno"
1475
-
1476
- #: public/modules/script-blocker/views/settings.php:141
1477
- msgid ""
1478
- "Enabled: Plugins will be blocked by default prior to obtaining user consent."
1479
- msgstr ""
1480
- "Povoleno: Pluginy budou ve výchozím nastavení blokovány před získáním "
1481
- "souhlasu uživatele."
1482
-
1483
- #: public/modules/script-blocker/views/settings.php:141
1484
- msgid "Disabled: Plugins will be rendered prior to obtaining consent."
1485
- msgstr "Zakázáno: Pluginy budou vykresleny před získáním souhlasu."
1486
-
1487
- #: public/modules/script-blocker/views/settings.php:175
1488
- msgid "Inactive"
1489
- msgstr "Deaktivní"
1490
-
1491
- #: public/modules/shortcode/shortcode.php:99
1492
- msgid "Your current state:"
1493
- msgstr "Váš aktuální stav:"
1494
-
1495
- #: public/modules/shortcode/shortcode.php:104
1496
- msgid "Consent accepted."
1497
- msgstr "Souhlas byl přijat."
1498
-
1499
- #: public/modules/shortcode/shortcode.php:107
1500
- msgid "Consent rejected."
1501
- msgstr "Souhlas byl zamítnut."
1502
-
1503
- #: public/modules/shortcode/shortcode.php:111
1504
- msgid "No consent given."
1505
- msgstr "Nebyl dán souhlas."
1506
-
1507
- #: public/modules/shortcode/shortcode.php:113
1508
- msgid "Manage your consent."
1509
- msgstr "Spravujte svůj souhlas."
1510
-
1511
- #: public/modules/shortcode/shortcode.php:150
1512
- msgid "Delete Cookies"
1513
- msgstr "Odstranit soubory cookie"
1514
-
1515
- #: public/modules/shortcode/shortcode.php:186
1516
- msgid "No records found"
1517
- msgstr "Nenalezeny žádné záznamy"
1518
-
1519
- #: public/modules/shortcode/shortcode.php:212
1520
- msgid "Type"
1521
- msgstr "Typ"
1522
-
1523
- #: public/modules/shortcode/shortcode.php:216
1524
- msgid "Duration"
1525
- msgstr "Délka"
1526
-
1527
- #: public/modules/shortcode/shortcode.php:533
1528
- msgid "Close the cookie bar"
1529
- msgstr "Zavřete lištu cookie"
1530
-
1531
- #: public/modules/shortcode/shortcode.php:533
1532
- msgid "Close and Accept"
1533
- msgstr "Zavřít a přijmout"
1534
-
1535
- #: public/views/cookie-law-info_bar.php:23
1536
- msgid "Close"
1537
- msgstr "Zavřít"
1538
-
1539
- #: public/views/cookie-law-info_popup_content.php:6
1540
- msgid "Always Enabled"
1541
- msgstr "Vždy povoleno"
1542
-
1543
- #: public/views/cookie-law-info_popup_content.php:9
1544
- msgid "Show more"
1545
- msgstr "Zobrazit více"
1546
-
1547
- #: public/views/cookie-law-info_popup_content.php:9
1548
- msgid "Show less"
1549
- msgstr "Ukaž méně"
1550
-
1551
- #~ msgid ""
1552
- #~ "Which plugin are you using for language translation? Could you tell us a "
1553
- #~ "bit more?"
1554
- #~ msgstr ""
1555
- #~ "Jaký plugin používáte pro jazykový překlad? Můžete nám říct něco víc?"
1556
-
1557
- #~ msgid "Caching issues"
1558
- #~ msgstr "Problémy s ukládáním do mezipaměti"
1559
-
1560
- #~ msgid "Which caching plugin are you using? Could you tell us a bit more?"
1561
- #~ msgstr ""
1562
- #~ "Který plugin pro ukládání do mezipaměti používáte? Můžete nám říct něco "
1563
- #~ "víc?"
1564
-
1565
- #~ msgid "Cookie Law Settings"
1566
- #~ msgstr "Nastavení souborů cookie v zákon"
1567
-
1568
- #~ msgid "Show Again Tab"
1569
- #~ msgstr "Zobrazit znovu Tab"
1570
-
1571
- #~ msgid "Use Show Again Tab?"
1572
- #~ msgstr "Použít znovu zobrazit kartu?"
1573
-
1574
- #~ msgid "Show More Text"
1575
- #~ msgstr "Zobrazit více"
1576
-
1577
- #~ msgid "Non-necessary Cookie"
1578
- #~ msgstr "Nepotřebný soubor cookie"
1579
-
1580
- #~ msgid "Necessary Cookie"
1581
- #~ msgstr "Nezbytný soubor cookie"
1582
-
1583
- #~ msgid "Your Cookie Law Info bar is switched on"
1584
- #~ msgstr "Soubor Cookie zákon informační panel je zapnutý"
1585
-
1586
- #~ msgid "Your Cookie Law Info bar is switched off"
1587
- #~ msgstr "Soubor Cookie zákon informační panel je vypnuto"
1588
-
1589
- #~ msgid "Cookie Bar will be shown in:"
1590
- #~ msgstr "Cookie Bar se zobrazí v:"
1591
-
1592
- #~ msgid "Disappear"
1593
- #~ msgstr "Zmizet"
1594
-
1595
- #~ msgid "Show Border?"
1596
- #~ msgstr "Zobrazit ohraničení?"
1597
-
1598
- #~ msgid "Border Colour"
1599
- #~ msgstr "Barva ohraničení"
1600
-
1601
- #~ msgid "Settings Updated"
1602
- #~ msgstr "Nastavení aktualizováno"
1603
-
1604
- #~ msgid "Priority: (Numeric - Higher the value, higher the priority)"
1605
- #~ msgstr "Priorita: (číselné - vyšší hodnota vyšší prioritu)"
1606
-
1607
- #~ msgid "Priority"
1608
- #~ msgstr "Priorita"
1609
-
1610
- #~ msgid "Scan & Download"
1611
- #~ msgstr "Scan & stahování"
1612
-
1613
- #~ msgid "Export Cookie"
1614
- #~ msgstr "Exportovat soubory Cookie"
1615
-
1616
- #~ msgid "You do not have sufficient permissions to access this page."
1617
- #~ msgstr "Nemáš dostatečné oprávnění pro přístup na tuto stránku."
1618
-
1619
- #~ msgid "Export as CSV file"
1620
- #~ msgstr "Exportovat jako soubor .CSV"
1621
-
1622
- #~ msgid "Export"
1623
- #~ msgstr "Export"
1624
-
1625
- #~ msgid "Scan & Import"
1626
- #~ msgstr "&Importovat"
1627
-
1628
- #~ msgid "Import Cookie"
1629
- #~ msgstr "Importujte Cookie"
1630
-
1631
- #~ msgid "BEGIN %s"
1632
- #~ msgstr "BEGIN%s"
1633
-
1634
- #~ msgid "[Line %1$s] %2$s"
1635
- #~ msgstr "%1$s%2$s"
1636
-
1637
- #~ msgid "Import from a CSV file"
1638
- #~ msgstr "Importovat ze složky"
1639
-
1640
- #~ msgid ""
1641
- #~ "Notice: please make the directory %s writable so that you can see the "
1642
- #~ "error log."
1643
- #~ msgstr ""
1644
- #~ "Poznámka: prosím, aby adresář %s zapisovatelný tak, že můžete vidět v "
1645
- #~ "protokolu chyb."
1646
-
1647
- #~ msgid ", please <a href=\"%s\">check the error log</a>"
1648
- #~ msgstr ", prosím, <a href=\"%s\">Zkontrolujte protokol chyb</a>"
1649
-
1650
- #~ msgid "Error during file upload."
1651
- #~ msgstr "Chyba při nahrávání."
1652
-
1653
- #~ msgid "Cannot extract data from uploaded file or no file was uploaded."
1654
- #~ msgstr ""
1655
- #~ "Nelze extrahovat data z nahraného souboru nebo žádný soubor byl odeslán."
1656
-
1657
- #~ msgid "No posts was successfully imported%s."
1658
- #~ msgstr "Žádné příspěvky byla úspěšně importována %s."
1659
-
1660
- #~ msgid "Some posts were successfully imported but some were not%s."
1661
- #~ msgstr "Některé příspěvky byly úspěšně importovány, ale některé nebyly %s."
1662
-
1663
- #~ msgid "Post import was successful."
1664
- #~ msgstr "Import příspěvku byl úspěšný."
1665
-
1666
- #~ msgid "CSV file"
1667
- #~ msgstr "Soubor CSV"
1668
-
1669
- #~ msgid "You may want to see <a href=\"%s\">the example of the CSV file</a>."
1670
- #~ msgstr "Možná budete chtít vidět <a href=\"%s\">příklad souboru CSV</a>."
1671
-
1672
- #~ msgid "Import"
1673
- #~ msgstr "Importovat"
1674
-
1675
- #~ msgid "Error processing migration request (ERROR: 4)"
1676
- #~ msgstr "Při zpracování žádosti o migraci (Chyba: 4)"
1677
-
1678
- #~ msgid "Show only for EU Countries ( GeoIP )"
1679
- #~ msgstr "Zobrazit pouze pro země EU (GeoIP)"
1680
-
1681
- #~ msgid "Cookie Law Message Bar"
1682
- #~ msgstr "Panel zpráv zákon cookie"
1683
-
1684
- #~ msgid "Shortcodes allowed: see settngs section \"Using the Shortcodes\"."
1685
- #~ msgstr ""
1686
- #~ "Povolených shortcodes: viz settngs části \"Použití the Shortcodes\"."
1687
-
1688
- #~ msgid "Link Text"
1689
- #~ msgstr "Text odkazu"
1690
-
1691
- #~ msgid "Open link in new window?"
1692
- #~ msgstr "Otevřít odkaz v novém okně?"
1693
-
1694
- #~ msgid "Link colour"
1695
- #~ msgstr "Barva"
1696
-
1697
- #~ msgid "Show as button?"
1698
- #~ msgstr "Zobrazit jako tlačítko?"
1699
-
1700
- #~ msgid "Button colour"
1701
- #~ msgstr "Barva tlačítka"
1702
-
1703
- #~ msgid "Button Size"
1704
- #~ msgstr "Rozměr tlačítka"
1705
-
1706
- #~ msgid "Using the Shortcodes"
1707
- #~ msgstr "Použití Shortcodes"
1708
-
1709
- #~ msgid "The shortcodes are:"
1710
- #~ msgstr "Shortcodes jsou:"
1711
-
1712
- #~ msgid ""
1713
- #~ "If you just want a standard green \"Accept\" button that closes the "
1714
- #~ "header and nothing more, use this shortcode. It is already styled, you "
1715
- #~ "don't need to customise it."
1716
- #~ msgstr ""
1717
- #~ "Pokud chcete standardní zelené tlačítko \"Accept\", které zavře záhlaví a "
1718
- #~ "nic víc, použijte tento krátký. Je již stylem, není nutné ji upravte."
1719
-
1720
- #~ msgid ""
1721
- #~ "Alternatively you can add a colour value. Choose from: red, blue, orange, "
1722
- #~ "yellow, green or pink."
1723
- #~ msgstr ""
1724
- #~ "Alternativně můžete přidat hodnotu barvy. Výběr: červená, modrá, "
1725
- #~ "oranžová, žlutá, zelená nebo růžová."
1726
-
1727
- #~ msgid "Careful to use the British spelling of \"colour\" for the attribute."
1728
- #~ msgstr "Pozor, používat britské pravopis \"barvy\" pro atribut."
1729
-
1730
- #~ msgid "This prints out a nice table of cookies by category."
1731
- #~ msgstr "Toto vytiskne pěkný stůl cookies podle kategorie."
1732
-
1733
- #~ msgid "This prints the settings popup of cookie category."
1734
- #~ msgstr "Toto vytiskne rozbalovací nabídku nastavení kategorie cookie."
1735
-
1736
- #~ msgid "Are you sure you want to migrate settings?"
1737
- #~ msgstr "Jste si jistý, že chcete migrovat nastavení?"
1738
-
1739
- #~ msgid "Help"
1740
- #~ msgstr "Pomoc"
1741
-
1742
- #~ msgid "Report a Bug"
1743
- #~ msgstr "Nahlásit chybu"
1744
-
1745
- #~ msgid "Guide"
1746
- #~ msgstr "Příručka"
1747
-
1748
- #~ msgid "About the law"
1749
- #~ msgstr "O"
1750
-
1751
- #~ msgid "Message Bar"
1752
- #~ msgstr "Panel zpráv"
1753
-
1754
- #~ msgid "Licence"
1755
- #~ msgstr "Průkaz způsobilosti"
1756
-
1757
- #~ msgid "Licence Activation"
1758
- #~ msgstr "Aktivace licence"
1759
-
1760
- #~ msgid "API Licence Key:"
1761
- #~ msgstr "API licenční klíč:"
1762
-
1763
- #~ msgid "Licence Key"
1764
- #~ msgstr "Licenční klíč"
1765
-
1766
- #~ msgid "Licence Email"
1767
- #~ msgstr "E-mail licence"
1768
-
1769
- #~ msgid "Activate"
1770
- #~ msgstr "Aktivujte"
1771
-
1772
- #~ msgid ""
1773
- #~ "This website uses cookies to improve your experience. We'll assume you're "
1774
- #~ "ok with this, but you can opt-out if you wish.[cookie_button] "
1775
- #~ "[cookie_settings] [cookie_link]"
1776
- #~ msgstr ""
1777
- #~ "Tento web používá soubory cookie ke zlepšení své zkušenosti. Budeme "
1778
- #~ "předpokládat, že jste v pořádku s tím, ale můžete opt-out Chcete-li. "
1779
- #~ "[cookie_button] [cookie_settings] [cookie_link]"
1780
-
1781
- #~ msgid "Cookie Category"
1782
- #~ msgstr "Kategorie souborů cookie"
1783
-
1784
- #~ msgid "Google Analytics"
1785
- #~ msgstr "Google Analytics"
1786
-
1787
- #~ msgid "Facebook Pixel Code"
1788
- #~ msgstr "Facebook Pixel"
1789
-
1790
- #~ msgid "Action is unknown."
1791
- #~ msgstr "Akce není znám."
1792
-
1793
- #~ msgid "Category"
1794
- #~ msgstr "Kategorii"
1795
-
1796
- #~ msgid "Key"
1797
- #~ msgstr "Klíč"
1798
-
1799
- #~ msgid "No Consent History"
1800
- #~ msgstr "Historie není souhlas"
1801
-
1802
- #~ msgid "IP Address"
1803
- #~ msgstr "IP adresy"
1804
-
1805
- #~ msgid "Visited Date"
1806
- #~ msgstr "navštívený"
1807
-
1808
- #~ msgid "User ID"
1809
- #~ msgstr "ID uživatele"
1810
-
1811
- #~ msgid "GDPR Consent History"
1812
- #~ msgstr "GDPR souhlas historie"
1813
-
1814
- #~ msgid "Export Report"
1815
- #~ msgstr "Export sestavy"
1816
-
1817
- #~ msgid "Event Logged Successfully"
1818
- #~ msgstr "Úspěšně zaznamenána událost"
1819
-
1820
- #~ msgid "Logging is not enabled"
1821
- #~ msgstr "Protokolování není povoleno."
1822
-
1823
- #~ msgid "Consent Report"
1824
- #~ msgstr "Souhlasná zpráva"
1825
-
1826
- #~ msgid "Reject Button:"
1827
- #~ msgstr "Odmítnout tlačítko:"
1828
-
1829
- #~ msgid "Cookie Bar will be show in:"
1830
- #~ msgstr "Bar soubor cookie bude show v:"
1831
-
1832
- #~ msgid "Auto-hide cookie bar after delay?"
1833
- #~ msgstr "Automaticky skrývat panel cookie zpožděním?"
1834
-
1835
- #~ msgid "Auto-hide cookie bar if the user scrolls?"
1836
- #~ msgstr "Automaticky skrývat panel cookie Pokud uživatel roluje?"
1837
-
1838
- #~ msgid "Button will only link to URL if Action = Show URL"
1839
- #~ msgstr ""
1840
- #~ "Tlačítko bude pouze odkaz na adresu URL, pokud Action = zobrazit adresu "
1841
- #~ "URL"
1842
-
1843
- #~ msgid "Save"
1844
- #~ msgstr "Uložit"
1845
-
1846
- #~ msgid "Accept"
1847
- #~ msgstr "Rozumím"
1848
-
1849
- #~ msgid "Reject"
1850
- #~ msgstr "Odmítnout"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/cookie-law-info-da_DA.mo DELETED
Binary file
languages/cookie-law-info-da_DA.po DELETED
@@ -1,1848 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: \n"
4
- "POT-Creation-Date: 2020-11-17 11:29+0530\n"
5
- "PO-Revision-Date: 2020-11-17 11:29+0530\n"
6
- "Last-Translator: \n"
7
- "Language-Team: \n"
8
- "Language: da\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.4.2\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
- "X-Poedit-KeywordsList: __;_e\n"
16
- "X-Poedit-SearchPath-0: .\n"
17
-
18
- #: admin/class-cookie-law-info-admin.php:147
19
- #: admin/class-cookie-law-info-admin.php:148
20
- #: admin/class-cookie-law-info-admin.php:247
21
- #: admin/partials/cookie-law-info-admin_settings.php:31
22
- msgid "Settings"
23
- msgstr "Indstillinger"
24
-
25
- #: admin/class-cookie-law-info-admin.php:155
26
- #: admin/class-cookie-law-info-admin.php:156
27
- #: public/modules/script-blocker/views/settings.php:174
28
- #: public/views/cookie-law-info_popup_content.php:23
29
- msgid "Non-necessary"
30
- msgstr "Ikke-nødvendigt"
31
-
32
- #: admin/class-cookie-law-info-admin.php:163
33
- #: admin/class-cookie-law-info-admin.php:164
34
- #: public/views/cookie-law-info_popup_content.php:22
35
- msgid "Necessary"
36
- msgstr "Nødvendig"
37
-
38
- #: admin/class-cookie-law-info-admin.php:171
39
- #: admin/class-cookie-law-info-admin.php:172
40
- #: admin/partials/cookie-law-info-privacy_overview.php:25
41
- msgid "Privacy Overview"
42
- msgstr "Beskyttelse af personlige oplysninger"
43
-
44
- #: admin/class-cookie-law-info-admin.php:221
45
- #: admin/class-cookie-law-info-admin.php:276
46
- #: admin/class-cookie-law-info-admin.php:334
47
- #: admin/class-cookie-law-info-admin.php:378
48
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:22
49
- #: public/modules/script-blocker/script-blocker.php:133
50
- #: public/modules/script-blocker/script-blocker.php:173
51
- #: public/modules/script-blocker/script-blocker.php:310
52
- msgid "You do not have sufficient permission to perform this operation"
53
- msgstr "Du har ikke tilstrækkelig tilladelse til at udføre denne operation"
54
-
55
- #: admin/class-cookie-law-info-admin.php:240
56
- #: admin/class-cookie-law-info-admin.php:306
57
- #: admin/class-cookie-law-info-admin.php:359
58
- #: admin/class-cookie-law-info-admin.php:403
59
- msgid "Settings Updated."
60
- msgstr "Indstillinger opdateret."
61
-
62
- #: admin/class-cookie-law-info-admin.php:248
63
- msgid "Support"
64
- msgstr "Support"
65
-
66
- #: admin/class-cookie-law-info-admin.php:249
67
- msgid "Premium Upgrade"
68
- msgstr "Premium Opgradering"
69
-
70
- #: admin/class-cookie-law-info-admin.php:418
71
- msgid "ERROR MIGRATING SETTINGS (ERROR: 2)"
72
- msgstr "OVERFLYTTER INDSTILLINGER FOR FEJL (FEJL: 2)"
73
-
74
- #: admin/class-cookie-law-info-admin.php:436
75
- msgid "Cookie ID"
76
- msgstr "Cookie ID"
77
-
78
- #: admin/class-cookie-law-info-admin.php:437
79
- msgid "Cookie Type"
80
- msgstr "Cookie Type"
81
-
82
- #: admin/class-cookie-law-info-admin.php:438
83
- msgid "Cookie Duration"
84
- msgstr "Cookie Varighed"
85
-
86
- #: admin/class-cookie-law-info-admin.php:439
87
- msgid "Cookie Sensitivity"
88
- msgstr "Cookie følsomhed"
89
-
90
- #: admin/class-cookie-law-info-admin.php:689
91
- msgid "Close Header"
92
- msgstr "Luk overskrift"
93
-
94
- #: admin/class-cookie-law-info-admin.php:693
95
- msgid "Open URL"
96
- msgstr "Åben URL"
97
-
98
- #: admin/class-cookie-law-info-admin.php:706
99
- msgid "Extra Large"
100
- msgstr "Ekstra stor"
101
-
102
- #: admin/class-cookie-law-info-admin.php:710
103
- msgid "Large"
104
- msgstr "Stor"
105
-
106
- #: admin/class-cookie-law-info-admin.php:714
107
- msgid "Medium"
108
- msgstr "Medium"
109
-
110
- #: admin/class-cookie-law-info-admin.php:718
111
- msgid "Small"
112
- msgstr "Lille"
113
-
114
- #: admin/class-cookie-law-info-admin.php:732
115
- msgid "Default theme font"
116
- msgstr "Standard tema skrifttype"
117
-
118
- #: admin/class-cookie-law-info-admin.php:736
119
- msgid "Sans Serif"
120
- msgstr "Sans Serif"
121
-
122
- #: admin/class-cookie-law-info-admin.php:740
123
- msgid "Serif"
124
- msgstr "Serif"
125
-
126
- #: admin/class-cookie-law-info-admin.php:744
127
- msgid "Arial"
128
- msgstr "Arial"
129
-
130
- #: admin/class-cookie-law-info-admin.php:748
131
- msgid "Arial Black"
132
- msgstr "Arial Black"
133
-
134
- #: admin/class-cookie-law-info-admin.php:752
135
- msgid "Georgia, serif"
136
- msgstr "Georgia, serif"
137
-
138
- #: admin/class-cookie-law-info-admin.php:756
139
- msgid "Helvetica"
140
- msgstr "Helvetica"
141
-
142
- #: admin/class-cookie-law-info-admin.php:760
143
- msgid "Lucida"
144
- msgstr "Lucida"
145
-
146
- #: admin/class-cookie-law-info-admin.php:764
147
- msgid "Tahoma"
148
- msgstr "Tahoma"
149
-
150
- #: admin/class-cookie-law-info-admin.php:768
151
- msgid "Times New Roman"
152
- msgstr "Times New Roman"
153
-
154
- #: admin/class-cookie-law-info-admin.php:772
155
- msgid "Trebuchet"
156
- msgstr "Trebuchet"
157
-
158
- #: admin/class-cookie-law-info-admin.php:776
159
- msgid "Verdana"
160
- msgstr "Verdana"
161
-
162
- #: admin/modules/ccpa/ccpa.php:106
163
- msgid "Do you really wish to opt out?"
164
- msgstr "Ønsker du virkelig at fravælge det?"
165
-
166
- #: admin/modules/ccpa/ccpa.php:107
167
- msgid "Confirm"
168
- msgstr "Bekræft"
169
-
170
- #: admin/modules/ccpa/ccpa.php:108
171
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:154
172
- msgid "Cancel"
173
- msgstr "Annuller"
174
-
175
- #: admin/modules/ccpa/ccpa.php:145
176
- msgid "Select the type of law"
177
- msgstr "Vælg lovtype"
178
-
179
- #: admin/modules/ccpa/ccpa.php:149
180
- msgid "GDPR"
181
- msgstr "BNPR"
182
-
183
- #: admin/modules/ccpa/ccpa.php:150 admin/modules/ccpa/ccpa.php:158
184
- msgid ""
185
- "Customize the buttons, notice, themes from the relevant tabs to setup your "
186
- "cookie notice accordingly."
187
- msgstr ""
188
- "Tilpas knapper, meddelelse, temaer fra de relevante faner for at opsætte din "
189
- "cookie-meddelelse i overensstemmelse hermed."
190
-
191
- #: admin/modules/ccpa/ccpa.php:153
192
- msgid "CCPA"
193
- msgstr "CCPA"
194
-
195
- #: admin/modules/ccpa/ccpa.php:154
196
- msgid ""
197
- "Most of the customizations from the tabs for buttons, notice or themes are "
198
- "not relevant especially if you choose to not show the notice, except the Do "
199
- "not sell within the buttons."
200
- msgstr ""
201
- "De fleste af tilpasningerne fra fanerne til knapper, meddelelse eller temaer "
202
- "er ikke relevante, især hvis du vælger ikke at vise meddelelsen, bortset fra "
203
- "Sælg ikke inden knapperne."
204
-
205
- #: admin/modules/ccpa/ccpa.php:157
206
- msgid "CCPA & GDPR"
207
- msgstr "CCPA & GDPR"
208
-
209
- #: admin/modules/ccpa/views/ccpa_settings.php:7
210
- msgid "CCPA Settings"
211
- msgstr "CCPA-indstillinger"
212
-
213
- #: admin/modules/ccpa/views/ccpa_settings.php:7
214
- msgid ""
215
- "The right to opt out in the California Consumer Privacy Act gives consumers "
216
- "the ability to direct a business not to sell their personal information to a "
217
- "third party. If the user considers to not sell their personal information, "
218
- "all the scripts related to the categories which are configured to sell "
219
- "personal information will be blocked. The DO NOT SELL option is facilitated "
220
- "via a shortcode [wt_cli_ccpa_optout]."
221
- msgstr ""
222
- "Retten til at fravælge den californiske forbrugerbeskyttelseslov giver "
223
- "forbrugerne mulighed for at lede en virksomhed om ikke at sælge deres "
224
- "personlige oplysninger til en tredjepart. Hvis brugeren overvejer ikke at "
225
- "sælge deres personlige oplysninger, blokeres alle scripts relateret til de "
226
- "kategorier, der er konfigureret til at sælge personlige oplysninger. "
227
- "Indstillingen IKKE SÆLG gøres lettere via en kortkode [wt_cli_ccpa_optout]."
228
-
229
- #: admin/modules/ccpa/views/ccpa_settings.php:10
230
- msgid "Enable CCPA ?"
231
- msgstr "Aktivere CCPA?"
232
-
233
- #: admin/modules/ccpa/views/ccpa_settings.php:18
234
- msgid "Enable CCPA notice"
235
- msgstr "Aktivér CCPA-meddelelse"
236
-
237
- #: admin/modules/ccpa/views/ccpa_settings.php:18
238
- msgid ""
239
- "Enabling the notice will display the banner with the relevant text as per "
240
- "your configuration. Use this option particularly to record prior consent "
241
- "from the website visitors."
242
- msgstr ""
243
- "Aktivering af meddelelsen viser banneret med den relevante tekst som pr. Din "
244
- "konfiguration. Brug denne mulighed især til at registrere forudgående "
245
- "samtykke fra besøgende på webstedet."
246
-
247
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:26
248
- msgid "Unable to handle your request."
249
- msgstr "Kan ikke håndtere din anmodning."
250
-
251
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:96
252
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:130
253
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:132
254
- msgid "Error"
255
- msgstr "Fejl"
256
-
257
- #: admin/modules/cli-policy-generator/classes/class-preview-page.php:27
258
- msgid "Cookie Policy"
259
- msgstr "Cookie Policy"
260
-
261
- #: admin/modules/cli-policy-generator/classes/class-preview-page.php:83
262
- msgid "Auto reload preview"
263
- msgstr "Automatisk genindlæs forhåndsvisning"
264
-
265
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:106
266
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:107
267
- #: admin/modules/cli-policy-generator/views/policy-generator.php:21
268
- msgid "Policy generator"
269
- msgstr "Policy generator"
270
-
271
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:133
272
- msgid "Success"
273
- msgstr "Succes"
274
-
275
- #: admin/modules/cli-policy-generator/views/policy-generator.php:25
276
- msgid "Sample heading"
277
- msgstr "Prøveoverskrift"
278
-
279
- #: admin/modules/cli-policy-generator/views/policy-generator.php:26
280
- msgid "Sample content"
281
- msgstr "Prøveindhold"
282
-
283
- #: admin/modules/cli-policy-generator/views/policy-generator.php:27
284
- msgid "Delete"
285
- msgstr "Slet"
286
-
287
- #: admin/modules/cli-policy-generator/views/policy-generator.php:49
288
- msgid "Add new"
289
- msgstr "Tilføj ny"
290
-
291
- #: admin/modules/cli-policy-generator/views/policy-generator.php:53
292
- msgid "Heading"
293
- msgstr "Overskrift"
294
-
295
- #: admin/modules/cli-policy-generator/views/policy-generator.php:57
296
- #: admin/views/admin_necessary_cookie.php:39
297
- #: admin/views/admin_non_necessary_cookie.php:54
298
- #: public/modules/script-blocker/views/settings.php:142
299
- #: public/modules/shortcode/shortcode.php:220
300
- msgid "Description"
301
- msgstr "Beskrivelse"
302
-
303
- #: admin/modules/cli-policy-generator/views/policy-generator.php:65
304
- msgid ""
305
- "Enabling this option will help us spread the word by placing a credit to "
306
- "WebToffee at the very end of the Cookie Policy page."
307
- msgstr ""
308
- "Aktivering af denne mulighed hjælper os med at sprede ordet ved at placere "
309
- "en kredit til WebToffee i slutningen af ​​siden Cookie Policy."
310
-
311
- #: admin/modules/cli-policy-generator/views/policy-generator.php:82
312
- msgid "Update existing Cookie Policy page"
313
- msgstr "Opdater eksisterende Cookie Policy side"
314
-
315
- #: admin/modules/cli-policy-generator/views/policy-generator.php:88
316
- msgid "Create Cookie Policy page"
317
- msgstr "Opret cookiepolitik side"
318
-
319
- #: admin/modules/cli-policy-generator/views/policy-generator.php:92
320
- msgid "Live preview"
321
- msgstr "Live preview"
322
-
323
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:43
324
- msgid "The plugin is complex to set up"
325
- msgstr "Pluginet er komplekst at konfigurere"
326
-
327
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:45
328
- msgid "Please describe which area you are facing difficulties"
329
- msgstr "Beskriv venligst, hvilket område du har problemer"
330
-
331
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:49
332
- msgid "I found a better plugin"
333
- msgstr "Jeg fandt et bedre plugin"
334
-
335
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:51
336
- msgid "Which plugin?"
337
- msgstr "Hvilket plugin?"
338
-
339
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:55
340
- msgid "The plugin is great, but I need specific feature that you don't support"
341
- msgstr ""
342
- "Pluginnet er dejligt, men jeg har brug for en specifik feature du ikke har"
343
-
344
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:57
345
- msgid "Could you tell us more about that feature?"
346
- msgstr "Kunne du fortælle os mere om denne funktion?"
347
-
348
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:61
349
- msgid "The plugin didn't work as expected"
350
- msgstr "Plugin fungerede ikke som forventet"
351
-
352
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:63
353
- msgid "What did you expect?"
354
- msgstr "Hvad havde du forventet?"
355
-
356
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:67
357
- msgid "A conflict with another plugin or theme"
358
- msgstr "En konflikt med et andet plugin eller et andet tema"
359
-
360
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:69
361
- msgid "Which plugin or theme?"
362
- msgstr "Hvilket plugin eller tema?"
363
-
364
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:73
365
- msgid "Translation issues"
366
- msgstr "Oversættelsesproblemer"
367
-
368
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:77
369
- msgid "Incorrect/missing translation"
370
- msgstr "Forkert / manglende oversættelse"
371
-
372
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:79
373
- msgid "Name the language"
374
- msgstr "Navngiv sproget"
375
-
376
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:83
377
- msgid ""
378
- "Unable to translate my dynamic content e.g, cookie message, button text etc"
379
- msgstr ""
380
- "Kan ikke oversætte mit dynamiske indhold, fx cookiebesked, knaptekst osv"
381
-
382
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:85
383
- msgid "Name the language and the translator plugin that you are using"
384
- msgstr "Navngiv det sprog og det oversætterplugin, du bruger"
385
-
386
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:91
387
- msgid "Upgrade to pro"
388
- msgstr "Opgrader til Pro"
389
-
390
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:95
391
- #: admin/views/admin-settings-general.php:10
392
- #: admin/views/admin-settings-general.php:66
393
- msgid "Other"
394
- msgstr "Andet"
395
-
396
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:97
397
- msgid "Could you tell us a bit more?"
398
- msgstr "Kan du fortælle os lidt mere?"
399
-
400
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:117
401
- msgid "If you have a moment, please let us know why you are deactivating:"
402
- msgstr ""
403
- "Hvis du har et øjeblik, så lad os venligst vide, hvorfor du deaktiverer:"
404
-
405
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:144
406
- msgid ""
407
- "We do not collect any personal data when you submit this form. It's your "
408
- "feedback that we value."
409
- msgstr ""
410
- "Vi indsamler ingen personlige data, når du sender denne formular. Det er din "
411
- "feedback, som vi værdsætter."
412
-
413
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:145
414
- msgid "Privacy Policy"
415
- msgstr "Privatlivspolitik"
416
-
417
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:152
418
- msgid "Go to support"
419
- msgstr "Gå til support"
420
-
421
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:153
422
- msgid "Submit & Deactivate"
423
- msgstr "Indsend & Deaktiver"
424
-
425
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:155
426
- msgid "I rather wouldn't say"
427
- msgstr "Det ønsker jeg ikke at fortælle"
428
-
429
- #: admin/partials/cookie-law-info-admin_settings.php:25
430
- #: admin/views/admin_necessary_cookie.php:20
431
- #: admin/views/admin_non_necessary_cookie.php:17
432
- msgid "Settings updated."
433
- msgstr "Indstillinger opdateret."
434
-
435
- #: admin/partials/cookie-law-info-admin_settings.php:26
436
- #: admin/views/admin_necessary_cookie.php:21
437
- #: admin/views/admin_non_necessary_cookie.php:18
438
- msgid "Unable to update Settings."
439
- msgstr "Kan ikke opdatere indstillinger."
440
-
441
- #: admin/partials/cookie-law-info-admin_settings.php:27
442
- msgid "Settings reset to defaults."
443
- msgstr "Indstillinger nulstilles til standardindstillingerne."
444
-
445
- #: admin/partials/cookie-law-info-admin_settings.php:28
446
- msgid "Unable to reset settings."
447
- msgstr "Kan ikke nulstille indstillingerne."
448
-
449
- #: admin/partials/cookie-law-info-admin_settings.php:39
450
- msgid "Cookie bar is currently active"
451
- msgstr "Cookie bar er i øjeblikket aktiv"
452
-
453
- #: admin/partials/cookie-law-info-admin_settings.php:47
454
- msgid "Cookie bar is currently inactive"
455
- msgstr "Cookie bar er i øjeblikket inaktiv"
456
-
457
- #: admin/partials/cookie-law-info-admin_settings.php:57
458
- #: admin/views/admin-settings-general.php:9
459
- msgid "General"
460
- msgstr "Generelle"
461
-
462
- #: admin/partials/cookie-law-info-admin_settings.php:58
463
- msgid "Customise Cookie Bar"
464
- msgstr "Tilpas Cookie Bar"
465
-
466
- #: admin/partials/cookie-law-info-admin_settings.php:59
467
- msgid "Customise Buttons"
468
- msgstr "Tilpas knapper"
469
-
470
- #: admin/partials/cookie-law-info-admin_settings.php:60
471
- #: admin/views/admin-settings-advanced.php:8
472
- msgid "Advanced"
473
- msgstr "Avanceret"
474
-
475
- #: admin/partials/cookie-law-info-admin_settings.php:61
476
- msgid "Help Guide"
477
- msgstr "Vejledning"
478
-
479
- #: admin/partials/cookie-law-info-privacy_overview.php:32
480
- msgid "Privacy Overview Title"
481
- msgstr "Beskyttelse af personlige oplysninger Titel"
482
-
483
- #: admin/partials/cookie-law-info-privacy_overview.php:38
484
- #: admin/partials/cookie-law-info-privacy_overview.php:53
485
- msgid "This will be shown in the settings visible for user on consent screen."
486
- msgstr ""
487
- "Dette vil blive vist i indstillingerne for synlige for brugeren på samtykke "
488
- "skærmen."
489
-
490
- #: admin/partials/cookie-law-info-privacy_overview.php:61
491
- msgid "Save Settings"
492
- msgstr "Gem indstillinger"
493
-
494
- #: admin/views/admin-settings-advanced.php:9
495
- msgid ""
496
- "Sometimes themes apply settings that clash with plugins. If that happens, "
497
- "try adjusting these settings."
498
- msgstr ""
499
- "Undertiden anvende temaer indstillinger, der kolliderer med plugins. Hvis "
500
- "det sker, kan du prøve at justere disse indstillinger."
501
-
502
- #: admin/views/admin-settings-advanced.php:13
503
- msgid "Reset all values"
504
- msgstr "Nulstil alle værdier"
505
-
506
- #: admin/views/admin-settings-advanced.php:15
507
- msgid "Delete settings and reset"
508
- msgstr "Slet indstillinger og nulstille"
509
-
510
- #: admin/views/admin-settings-advanced.php:15
511
- msgid "Are you sure you want to delete all your settings?"
512
- msgstr "Er du sikker på du vil slette alle dine indstillinger?"
513
-
514
- #: admin/views/admin-settings-advanced.php:16
515
- msgid "Warning: this will actually delete your current settings."
516
- msgstr "Advarsel: Dette vil faktisk slette dine nuværende indstillinger."
517
-
518
- #: admin/views/admin-settings-buttons.php:10
519
- msgid "Accept Button"
520
- msgstr "Acceptere knap"
521
-
522
- #: admin/views/admin-settings-buttons.php:11
523
- #: admin/views/admin-settings-buttons.php:93
524
- msgid "Reject Button"
525
- msgstr "Afvise knap"
526
-
527
- #: admin/views/admin-settings-buttons.php:12
528
- #: admin/views/admin-settings-buttons.php:163
529
- msgid "Settings Button"
530
- msgstr "Indstillinger knap"
531
-
532
- #: admin/views/admin-settings-buttons.php:13
533
- #: admin/views/admin-settings-buttons.php:206
534
- msgid "Read More Link"
535
- msgstr "Læs mere-link"
536
-
537
- #: admin/views/admin-settings-buttons.php:14
538
- #: admin/views/admin-settings-buttons.php:326
539
- msgid "Do not sell link"
540
- msgstr "Sælg ikke link"
541
-
542
- #: admin/views/admin-settings-buttons.php:20
543
- msgid "Main Button"
544
- msgstr "Vigtigste knap"
545
-
546
- #: admin/views/admin-settings-buttons.php:21
547
- msgid ""
548
- "This button/link can be customised to either simply close the cookie bar, or "
549
- "follow a link. You can also customise the colours and styles, and show it as "
550
- "a link or a button."
551
- msgstr ""
552
- "Denne knaplink kan tilpasses enten blot lukke linjen cookie, eller følg et "
553
- "link. Du kan også tilpasse farver og stilarter, og vise det som et hyperlink "
554
- "eller en knap."
555
-
556
- #: admin/views/admin-settings-buttons.php:24
557
- #: admin/views/admin-settings-buttons.php:96
558
- #: admin/views/admin-settings-buttons.php:166
559
- #: admin/views/admin-settings-buttons.php:220
560
- msgid "Text"
561
- msgstr "Tekst til hjælp-linje blok"
562
-
563
- #: admin/views/admin-settings-buttons.php:30
564
- #: admin/views/admin-settings-buttons.php:102
565
- #: admin/views/admin-settings-buttons.php:172
566
- #: admin/views/admin-settings-buttons.php:226
567
- #: admin/views/admin-settings-buttons.php:346
568
- msgid "Text colour"
569
- msgstr "Tekstfarve"
570
-
571
- #: admin/views/admin-settings-buttons.php:38
572
- #: admin/views/admin-settings-buttons.php:110
573
- #: admin/views/admin-settings-buttons.php:180
574
- #: admin/views/admin-settings-buttons.php:234
575
- #: admin/views/admin-settings-buttons.php:335
576
- msgid "Show as"
577
- msgstr "Vis som liste"
578
-
579
- #: admin/views/admin-settings-buttons.php:40
580
- #: admin/views/admin-settings-buttons.php:112
581
- #: admin/views/admin-settings-buttons.php:182
582
- #: admin/views/admin-settings-buttons.php:236
583
- msgid "Button"
584
- msgstr "Knap"
585
-
586
- #: admin/views/admin-settings-buttons.php:42
587
- #: admin/views/admin-settings-buttons.php:114
588
- #: admin/views/admin-settings-buttons.php:184
589
- #: admin/views/admin-settings-buttons.php:238
590
- #: admin/views/admin-settings-buttons.php:337
591
- msgid "Link"
592
- msgstr "Link"
593
-
594
- #: admin/views/admin-settings-buttons.php:46
595
- #: admin/views/admin-settings-buttons.php:118
596
- #: admin/views/admin-settings-buttons.php:188
597
- #: admin/views/admin-settings-buttons.php:242
598
- msgid "Background colour"
599
- msgstr "Baggrundsfarve"
600
-
601
- #: admin/views/admin-settings-buttons.php:55
602
- #: admin/views/admin-settings-buttons.php:126
603
- msgid "Action"
604
- msgstr "Handling"
605
-
606
- #: admin/views/admin-settings-buttons.php:63
607
- #: admin/views/admin-settings-buttons.php:138
608
- #: admin/views/admin-settings-buttons.php:253
609
- #: admin/views/admin-settings-buttons.php:260
610
- msgid "URL"
611
- msgstr "URL"
612
-
613
- #: admin/views/admin-settings-buttons.php:66
614
- #: admin/views/admin-settings-buttons.php:141
615
- msgid "Button will only link to URL if Action = Open URL"
616
- msgstr "Knappen vil kun linke til URL, hvis Action = Åben URL"
617
-
618
- #: admin/views/admin-settings-buttons.php:71
619
- #: admin/views/admin-settings-buttons.php:146
620
- msgid "Open URL in new window?"
621
- msgstr "Åbn i nyt vindue?"
622
-
623
- #: admin/views/admin-settings-buttons.php:73
624
- #: admin/views/admin-settings-buttons.php:148
625
- #: admin/views/admin-settings-buttons.php:304
626
- #: admin/views/admin-settings-buttons.php:311
627
- #: admin/views/admin-settings-general.php:38
628
- #: admin/views/admin-settings-general.php:54
629
- #: admin/views/admin-settings-general.php:74
630
- #: admin/views/admin-settings-general.php:82
631
- #: admin/views/admin-settings-general.php:89
632
- #: admin/views/admin-settings-messagebar.php:86
633
- #: admin/views/admin-settings-messagebar.php:110
634
- #: admin/views/admin_non_necessary_cookie.php:32
635
- msgid "Yes"
636
- msgstr "Ja"
637
-
638
- #: admin/views/admin-settings-buttons.php:75
639
- #: admin/views/admin-settings-buttons.php:149
640
- #: admin/views/admin-settings-buttons.php:305
641
- #: admin/views/admin-settings-buttons.php:312
642
- #: admin/views/admin-settings-general.php:39
643
- #: admin/views/admin-settings-general.php:55
644
- #: admin/views/admin-settings-general.php:75
645
- #: admin/views/admin-settings-general.php:83
646
- #: admin/views/admin-settings-general.php:90
647
- #: admin/views/admin-settings-messagebar.php:87
648
- #: admin/views/admin-settings-messagebar.php:111
649
- #: admin/views/admin_non_necessary_cookie.php:33
650
- #: public/modules/script-blocker/views/settings.php:139
651
- msgid "No"
652
- msgstr "Nej"
653
-
654
- #: admin/views/admin-settings-buttons.php:82
655
- #: admin/views/admin-settings-buttons.php:153
656
- #: admin/views/admin-settings-buttons.php:196
657
- #: admin/views/admin-settings-buttons.php:316
658
- msgid "Size"
659
- msgstr "Areal"
660
-
661
- #: admin/views/admin-settings-buttons.php:207
662
- msgid ""
663
- "This button/link can be used to provide a link out to your Privacy & Cookie "
664
- "Policy. You can customise it any way you like."
665
- msgstr ""
666
- "Denne knaplink kan bruges til at give et link ud til dit privatliv & Cookie "
667
- "politik. Du kan tilpasse det som du har lyst."
668
-
669
- #: admin/views/admin-settings-buttons.php:212
670
- msgid "Click"
671
- msgstr "Klik"
672
-
673
- #: admin/views/admin-settings-buttons.php:212
674
- msgid "here"
675
- msgstr "her"
676
-
677
- #: admin/views/admin-settings-buttons.php:212
678
- msgid " to generate content for Cookie Policy page."
679
- msgstr " at generere indhold for cookiepolitik side."
680
-
681
- #: admin/views/admin-settings-buttons.php:251
682
- msgid "URL or Page?"
683
- msgstr "URL eller side?"
684
-
685
- #: admin/views/admin-settings-buttons.php:255
686
- #: admin/views/admin-settings-buttons.php:266
687
- msgid "Page"
688
- msgstr "Side"
689
-
690
- #: admin/views/admin-settings-buttons.php:269
691
- msgid "Select One"
692
- msgstr "Vælg en"
693
-
694
- #: admin/views/admin-settings-buttons.php:294
695
- msgid "The currently selected page does not exist. Please select a new page."
696
- msgstr "Den aktuelt valgte side findes ikke. Vælg venligst en ny side."
697
-
698
- #: admin/views/admin-settings-buttons.php:302
699
- msgid "Minimize Cookie Bar in this page/URL?"
700
- msgstr "Minimér Cookie Bar på denne side / URL?"
701
-
702
- #: admin/views/admin-settings-buttons.php:309
703
- msgid "Open in new window?"
704
- msgstr "Åbn i nyt vindue?"
705
-
706
- #: admin/views/admin-settings-buttons.php:329
707
- msgid "CCPA Text"
708
- msgstr "CCPA-tekst"
709
-
710
- #: admin/views/admin-settings-buttons.php:338
711
- msgid "Checkbox"
712
- msgstr "Checkboks"
713
-
714
- #: admin/views/admin-settings-buttons.php:340
715
- msgid "The shortcode will be represented as a link whereever used."
716
- msgstr "Kortkoden repræsenteres som et link, uanset hvor det er brugt."
717
-
718
- #: admin/views/admin-settings-buttons.php:341
719
- msgid ""
720
- "The shortcode will be represented as a checkbox with select option to record "
721
- "consent."
722
- msgstr ""
723
- "Kortkoden repræsenteres som et afkrydsningsfelt med den valgte mulighed for "
724
- "at registrere samtykke."
725
-
726
- #: admin/views/admin-settings-general.php:17
727
- msgid "Enable cookie bar"
728
- msgstr "Aktivér cookie bar"
729
-
730
- #: admin/views/admin-settings-general.php:19
731
- msgid "On"
732
- msgstr "On"
733
-
734
- #: admin/views/admin-settings-general.php:20
735
- msgid "Off"
736
- msgstr "Off"
737
-
738
- #: admin/views/admin-settings-general.php:36
739
- msgid "Auto-hide(Accept) cookie bar after delay?"
740
- msgstr "Automatisk skjul (Accept) cookie bar efter forsinkelse?"
741
-
742
- #: admin/views/admin-settings-general.php:43
743
- msgid "Milliseconds until hidden"
744
- msgstr "Millisekunder indtil skjult"
745
-
746
- #: admin/views/admin-settings-general.php:46
747
- msgid "Specify milliseconds (not seconds)"
748
- msgstr "Angive millisekunder (ikke sekunder)"
749
-
750
- #: admin/views/admin-settings-general.php:46
751
- msgid "seconds"
752
- msgstr "sekunder"
753
-
754
- #: admin/views/admin-settings-general.php:52
755
- msgid "Auto-hide cookie bar if the user scrolls ( Accept on Scroll )?"
756
- msgstr "Automatisk skjul cookie bar, hvis brugeren ruller (Accept on Scroll)?"
757
-
758
- #: admin/views/admin-settings-general.php:56
759
- msgid ""
760
- "As per latest GDPR policies it is required to take an explicit consent for "
761
- "the cookies. Use this option with discretion especially if you serve EU"
762
- msgstr ""
763
- "Som i de seneste GDPR-politikker er det nødvendigt at tage et udtrykkeligt "
764
- "samtykke til cookies. Brug denne mulighed med skøn, især hvis du tjener EU"
765
-
766
- #: admin/views/admin-settings-general.php:57
767
- msgid "This option will not work along with `Popup overlay`."
768
- msgstr "Denne indstilling fungerer ikke sammen med `Popup overlay`."
769
-
770
- #: admin/views/admin-settings-general.php:69
771
- msgid "Reload after \"scroll accept\" event?"
772
- msgstr "Genindlæse efter \"rulle acceptere\" begivenhed?"
773
-
774
- #: admin/views/admin-settings-general.php:80
775
- msgid "Reload after Accept button click"
776
- msgstr "Opdater efter Accept knappen klik"
777
-
778
- #: admin/views/admin-settings-general.php:87
779
- msgid "Reload after Reject button click"
780
- msgstr "Genindlæs efter Afvis knap klik"
781
-
782
- #: admin/views/admin-settings-help.php:9
783
- msgid "Shortcodes"
784
- msgstr "Shortcodes"
785
-
786
- #: admin/views/admin-settings-help.php:10
787
- #: admin/views/admin-settings-help.php:103
788
- msgid "Help Links"
789
- msgstr "Hjælp Links"
790
-
791
- #: admin/views/admin-settings-help.php:16
792
- msgid "Cookie bar shortcodes"
793
- msgstr "Cookie bar kortkoder"
794
-
795
- #: admin/views/admin-settings-help.php:17
796
- msgid ""
797
- "You can enter the shortcodes in the \"message\" field of the Cookie Law Info "
798
- "bar. They add nicely formatted buttons and/or links into the cookie bar, "
799
- "without you having to add any HTML."
800
- msgstr ""
801
- "Du kan angive kortkoder i beskedfeltet \"\" af Cookie lov Info bar. De "
802
- "tilføjer pænt formateret knapper og/eller links til cookie bar, uden at du "
803
- "behøver at tilføje enhver HTML."
804
-
805
- #: admin/views/admin-settings-help.php:22
806
- msgid "This is the \"main button\" you customise above."
807
- msgstr "Dette er den \"hovedknap\", du tilpasser ovenfor."
808
-
809
- #: admin/views/admin-settings-help.php:26
810
- msgid "This is the cookie reject button shortcode."
811
- msgstr "Dette er cookie Afvis knap ufuldkommenhed."
812
-
813
- #: admin/views/admin-settings-help.php:30
814
- msgid "This is the cookie settings button rendering shortcode."
815
- msgstr "Dette er knappen for cookieindstillinger, der giver kortnummer."
816
-
817
- #: admin/views/admin-settings-help.php:33
818
- msgid "This is the \"read more\" link you customise above."
819
- msgstr "Dette er linket \"læs mere\", du tilpasser ovenfor."
820
-
821
- #: admin/views/admin-settings-help.php:36
822
- msgid "Setup margin for above buttons"
823
- msgstr "Opsætningsmargen for ovennævnte knapper"
824
-
825
- #: admin/views/admin-settings-help.php:65
826
- msgid "Other shortcodes"
827
- msgstr "Andre kortkoder"
828
-
829
- #: admin/views/admin-settings-help.php:66
830
- msgid ""
831
- "These shortcodes can be used in pages and posts on your website. It is not "
832
- "recommended to use these inside the cookie bar itself."
833
- msgstr ""
834
- "Disse kortkoder kan bruges i sider og indlæg på din hjemmeside. Det "
835
- "anbefales ikke at bruge disse inde cookie bar selv."
836
-
837
- #: admin/views/admin-settings-help.php:72
838
- msgid ""
839
- "This prints out a nice table of cookies, in line with the guidance given by "
840
- "the ICO."
841
- msgstr ""
842
- "Denne funktion udskriver ud en dejlig tabel med cookies, i overensstemmelse "
843
- "med retningslinjerne fra ICO."
844
-
845
- #: admin/views/admin-settings-help.php:72
846
- msgid ""
847
- "You need to enter the cookies your website uses via the Cookie Law Info menu "
848
- "in your WordPress dashboard."
849
- msgstr ""
850
- "Du skal indtaste din hjemmeside bruger cookies via menuen Cookie lov Info i "
851
- "din WordPress dashboard."
852
-
853
- #: admin/views/admin-settings-help.php:80
854
- msgid "Styles included"
855
- msgstr "Stil inkluderet"
856
-
857
- #: admin/views/admin-settings-help.php:82
858
- msgid "Columns available"
859
- msgstr "Kolonner tilgængelige"
860
-
861
- #: admin/views/admin-settings-help.php:82
862
- msgid "Will print all columns by default."
863
- msgstr "Vil udskrive alle kolonner som standard."
864
-
865
- #: admin/views/admin-settings-help.php:86
866
- msgid ""
867
- "This shortcode will display a normal HTML link which when clicked, will "
868
- "delete the cookie set by Cookie Law Info (this cookie is used to remember "
869
- "that the cookie bar is closed)."
870
- msgstr ""
871
- "Denne ufuldkommenhed vil vise en normal HTML link som når klikket, vil "
872
- "slette cookien sæt af Cookie lov Info (denne cookie bruges til at huske på, "
873
- "at cookie bar er lukket)."
874
-
875
- #: admin/views/admin-settings-help.php:90
876
- msgid ""
877
- "Add any text you like- useful if you want e.g. another language to English."
878
- msgstr ""
879
- "Tilføje tekst du lignende-nyttigt, hvis du vil fx et andet sprog til engelsk."
880
-
881
- #: admin/views/admin-settings-help.php:94
882
- msgid "Add content after accepting the cookie notice."
883
- msgstr "Tilføj indhold efter at have accepteret cookiemeddelelsen."
884
-
885
- #: admin/views/admin-settings-help.php:107
886
- #: admin/views/admin-settings-help.php:110 admin/views/goto-pro.php:103
887
- msgid "Documentation"
888
- msgstr "Dokumentation"
889
-
890
- #: admin/views/admin-settings-help.php:108
891
- msgid "Refer to our documentation to set and get started"
892
- msgstr "Se vores dokumentation for at indstille og komme i gang"
893
-
894
- #: admin/views/admin-settings-help.php:115
895
- msgid "Help and Support"
896
- msgstr "Hjælp og Support"
897
-
898
- #: admin/views/admin-settings-help.php:116
899
- msgid "We would love to help you on any queries or issues."
900
- msgstr "Vi vil gerne hjælpe dig med eventuelle spørgsmål eller problemer."
901
-
902
- #: admin/views/admin-settings-help.php:118
903
- msgid "Contact Us"
904
- msgstr "Kontakt os"
905
-
906
- #: admin/views/admin-settings-messagebar.php:9
907
- msgid "Cookie bar"
908
- msgstr "Cookie bar"
909
-
910
- #: admin/views/admin-settings-messagebar.php:10
911
- #: admin/views/admin-settings-messagebar.php:145
912
- msgid "Revisit consent"
913
- msgstr "Gå igen samtykke"
914
-
915
- #: admin/views/admin-settings-messagebar.php:15
916
- msgid "Cookie Bar"
917
- msgstr "Cookie Bar"
918
-
919
- #: admin/views/admin-settings-messagebar.php:18
920
- msgid "Message Heading"
921
- msgstr "Meddelelsesoverskrift"
922
-
923
- #: admin/views/admin-settings-messagebar.php:21
924
- msgid "Leave it blank, If you do not need a heading"
925
- msgstr "Lad det være tomt, hvis du ikke har brug for en overskrift"
926
-
927
- #: admin/views/admin-settings-messagebar.php:26
928
- msgid "Message"
929
- msgstr "Meddelelse"
930
-
931
- #: admin/views/admin-settings-messagebar.php:32
932
- msgid "Shortcodes allowed: see the Help Guide tab"
933
- msgstr "Tilladte kortkoder: Se fanen Hjælpeguide"
934
-
935
- #: admin/views/admin-settings-messagebar.php:32
936
- msgid ""
937
- "Examples: \"We use cookies on this website [cookie_accept] to find out how "
938
- "to delete cookies [cookie_link].\""
939
- msgstr ""
940
- "Eksempler: \"vi bruger cookies på dette websted [cookie_accept] til at finde "
941
- "ud af, hvordan du sletter cookies [cookie_link].\""
942
-
943
- #: admin/views/admin-settings-messagebar.php:36
944
- msgid "Cookie Bar Colour"
945
- msgstr "Cookie Bar farve"
946
-
947
- #: admin/views/admin-settings-messagebar.php:46
948
- msgid "Text Colour"
949
- msgstr "Tekstfarve"
950
-
951
- #: admin/views/admin-settings-messagebar.php:55
952
- msgid "Font"
953
- msgstr "Skrift"
954
-
955
- #: admin/views/admin-settings-messagebar.php:63
956
- msgid "Show cookie bar as"
957
- msgstr "Vis cookie bar som"
958
-
959
- #: admin/views/admin-settings-messagebar.php:68
960
- msgid "Banner"
961
- msgstr "Banner"
962
-
963
- #: admin/views/admin-settings-messagebar.php:69
964
- msgid "Popup"
965
- msgstr "Pop op"
966
-
967
- #: admin/views/admin-settings-messagebar.php:70
968
- msgid "Widget"
969
- msgstr "Widget"
970
-
971
- #: admin/views/admin-settings-messagebar.php:74
972
- msgid "Position"
973
- msgstr "Position"
974
-
975
- #: admin/views/admin-settings-messagebar.php:84
976
- msgid "Add overlay?"
977
- msgstr "Tilføj overlejring?"
978
-
979
- #: admin/views/admin-settings-messagebar.php:88
980
- msgid ""
981
- "When the popup is active, an overlay will block the user from browsing the "
982
- "site."
983
- msgstr ""
984
- "Når popup'en er aktiv, vil en overlay blokere brugeren fra at surfe på "
985
- "webstedet."
986
-
987
- #: admin/views/admin-settings-messagebar.php:89
988
- msgid "`Accept on scroll` will not work along with this option."
989
- msgstr "`Accept on scroll 'fungerer ikke sammen med denne mulighed."
990
-
991
- #: admin/views/admin-settings-messagebar.php:93
992
- msgid "Position:"
993
- msgstr "Position:"
994
-
995
- #: admin/views/admin-settings-messagebar.php:98
996
- msgid "Header"
997
- msgstr "Hoved"
998
-
999
- #: admin/views/admin-settings-messagebar.php:99
1000
- msgid "Footer"
1001
- msgstr "Footer"
1002
-
1003
- #: admin/views/admin-settings-messagebar.php:108
1004
- msgid "Fix Cookie Bar to Header?"
1005
- msgstr "Fix Cookie Bar til Header?"
1006
-
1007
- #: admin/views/admin-settings-messagebar.php:112
1008
- msgid ""
1009
- "If you select \"Header\" then you can optionally stick the cookie bar to the "
1010
- "header. Will not have any effect if you select \"Footer\"."
1011
- msgstr ""
1012
- "Hvis du vælger \"Header\" kan du eventuelt holde linjen cookie til "
1013
- "sidehovedet. Vil ikke have nogen virkning, hvis du vælger \"Sidefod\"."
1014
-
1015
- #: admin/views/admin-settings-messagebar.php:120
1016
- msgid "On load"
1017
- msgstr "På belastning"
1018
-
1019
- #: admin/views/admin-settings-messagebar.php:125
1020
- #: admin/views/admin-settings-messagebar.php:135
1021
- msgid "Animate"
1022
- msgstr "Animer"
1023
-
1024
- #: admin/views/admin-settings-messagebar.php:126
1025
- #: admin/views/admin-settings-messagebar.php:136
1026
- msgid "Sticky"
1027
- msgstr "Sticky"
1028
-
1029
- #: admin/views/admin-settings-messagebar.php:130
1030
- msgid "On hide"
1031
- msgstr "På Skjul"
1032
-
1033
- #: admin/views/admin-settings-messagebar.php:145
1034
- msgid "previously"
1035
- msgstr "tidligere"
1036
-
1037
- #: admin/views/admin-settings-messagebar.php:145
1038
- msgid "Show again tab"
1039
- msgstr "Vis fanen igen"
1040
-
1041
- #: admin/views/admin-settings-messagebar.php:147
1042
- msgid ""
1043
- "Revisit consent will allow the visitors to view/edit/revoke their prior "
1044
- "preferences. This can be done via a widget and/or a shortcode. A small "
1045
- "privacy widget is automatically displayed at the footer of your website if "
1046
- "the widget option is enabled. You can also manually insert a link to manage "
1047
- "consent by adding the shortcode <b>[wt_cli_manage_consent]</b> to your "
1048
- "website."
1049
- msgstr ""
1050
- "Genbesøg vil give besøgende mulighed for at se / redigere / tilbagekalde "
1051
- "deres tidligere præferencer. Dette kan gøres via en widget og / eller en "
1052
- "kort kode. En lille privatlivswidget vises automatisk i sidefoden på dit "
1053
- "websted, hvis widgetindstillingen er aktiveret. Du kan også manuelt indsætte "
1054
- "et link for at administrere samtykke ved at tilføje kortkoden "
1055
- "<b>[wt_cli_manage_consent]</b> til dit websted."
1056
-
1057
- #: admin/views/admin-settings-messagebar.php:152
1058
- msgid "Enable revisit consent widget"
1059
- msgstr "Aktivér widget om godkendelse igen"
1060
-
1061
- #: admin/views/admin-settings-messagebar.php:152
1062
- msgid ""
1063
- "By enabling this option a small privacy widget is automatically displayed at "
1064
- "the footer of your website."
1065
- msgstr ""
1066
- "Ved at aktivere denne mulighed vises en lille fortrolighedswidget automatisk "
1067
- "nederst på dit websted."
1068
-
1069
- #: admin/views/admin-settings-messagebar.php:163
1070
- #: admin/views/admin-settings-messagebar.php:180
1071
- msgid "Tab Position"
1072
- msgstr "EtiketpositionCurrency type for column"
1073
-
1074
- #: admin/views/admin-settings-messagebar.php:168
1075
- #: admin/views/admin-settings-messagebar.php:171
1076
- msgid "Right"
1077
- msgstr "Højre"
1078
-
1079
- #: admin/views/admin-settings-messagebar.php:169
1080
- #: admin/views/admin-settings-messagebar.php:172
1081
- msgid "Left"
1082
- msgstr "Venstre"
1083
-
1084
- #: admin/views/admin-settings-messagebar.php:187
1085
- msgid "Bottom Right"
1086
- msgstr "Nederst til højre"
1087
-
1088
- #: admin/views/admin-settings-messagebar.php:190
1089
- msgid "Bottom Left"
1090
- msgstr "Nederst til venstre"
1091
-
1092
- #: admin/views/admin-settings-messagebar.php:193
1093
- msgid "Top Right"
1094
- msgstr "Øverst til højre"
1095
-
1096
- #: admin/views/admin-settings-messagebar.php:196
1097
- msgid "Top Left"
1098
- msgstr "Øverst til venstre"
1099
-
1100
- #: admin/views/admin-settings-messagebar.php:203
1101
- msgid "From Right Margin"
1102
- msgstr "Fra højre margen"
1103
-
1104
- #: admin/views/admin-settings-messagebar.php:203
1105
- msgid "From Left Margin"
1106
- msgstr "Venstre margin"
1107
-
1108
- #: admin/views/admin-settings-messagebar.php:206
1109
- msgid "Specify"
1110
- msgstr "Specificér"
1111
-
1112
- #: admin/views/admin-settings-messagebar.php:215
1113
- #: admin/views/admin_necessary_cookie.php:33
1114
- #: admin/views/admin_non_necessary_cookie.php:48
1115
- msgid "Title"
1116
- msgstr "Titel"
1117
-
1118
- #: admin/views/admin-settings-save-button.php:12
1119
- #: admin/views/admin_necessary_cookie.php:52
1120
- #: admin/views/admin_non_necessary_cookie.php:87
1121
- #: public/modules/script-blocker/script-blocker.php:219
1122
- msgid "Update Settings"
1123
- msgstr "Opdater indstillinger"
1124
-
1125
- #: admin/views/admin_necessary_cookie.php:26
1126
- msgid "Necessary Cookie Settings"
1127
- msgstr "Nødvendige cookieindstillinger"
1128
-
1129
- #: admin/views/admin_non_necessary_cookie.php:23
1130
- msgid "Non-necessary Cookie Settings"
1131
- msgstr "Ikke-nødvendige Cookie-indstillinger"
1132
-
1133
- #: admin/views/admin_non_necessary_cookie.php:31
1134
- msgid "Enable Non-necessary Cookie"
1135
- msgstr "Aktivér ikke-nødvendigt cookie"
1136
-
1137
- #: admin/views/admin_non_necessary_cookie.php:38
1138
- msgid "Default state"
1139
- msgstr "Standard tilstand"
1140
-
1141
- #: admin/views/admin_non_necessary_cookie.php:39
1142
- #: public/modules/script-blocker/views/settings.php:141
1143
- #: public/views/cookie-law-info_popup_content.php:7
1144
- msgid "Enabled"
1145
- msgstr "Aktiveret"
1146
-
1147
- #: admin/views/admin_non_necessary_cookie.php:40
1148
- #: public/views/cookie-law-info_popup_content.php:8
1149
- msgid "Disabled"
1150
- msgstr "Handicappet"
1151
-
1152
- #: admin/views/admin_non_necessary_cookie.php:42
1153
- msgid ""
1154
- "If you enable this option, the category toggle button will be in the active "
1155
- "state for cookie consent."
1156
- msgstr ""
1157
- "Hvis du aktiverer denne indstilling, er knappen til at skifte kategori i "
1158
- "aktiv tilstand til tilladelse af cookie."
1159
-
1160
- #: admin/views/admin_non_necessary_cookie.php:62
1161
- msgid ""
1162
- "This script will be added to the page HEAD section if the above settings is "
1163
- "enabled and user has give consent."
1164
- msgstr ""
1165
- "Dette script vil blive tilføjet til siden HEAD sektion, hvis ovenstående "
1166
- "indstillinger er aktiveret og brugeren har givet samtykke."
1167
-
1168
- #: admin/views/admin_non_necessary_cookie.php:67
1169
- msgid ""
1170
- "Print scripts in the head tag on the front end if above cookie settings is "
1171
- "enabled and user has given consent."
1172
- msgstr ""
1173
- "Udskriv scripts i hovedetiketten på forsiden, hvis ovennævnte cookie-"
1174
- "indstillinger er aktiveret, og brugeren har givet samtykke."
1175
-
1176
- #: admin/views/admin_non_necessary_cookie.php:74
1177
- msgid ""
1178
- "This script will be added right after the BODY section if the above settings "
1179
- "is enabled and user has given consent."
1180
- msgstr ""
1181
- "Dette script vil blive tilføjet lige efter afsnittet BODY, hvis ovenstående "
1182
- "indstillinger er aktiveret, og brugeren har givet samtykke."
1183
-
1184
- #: admin/views/admin_non_necessary_cookie.php:77
1185
- msgid ""
1186
- "Print scripts before the closing body tag on the front end if above cookie "
1187
- "settings is enabled and user has given consent."
1188
- msgstr ""
1189
- "Udskriv scripts før den afsluttende body tag på forsiden, hvis ovennævnte "
1190
- "cookie indstillinger er aktiveret og brugeren har givet samtykke."
1191
-
1192
- #: admin/views/goto-pro.php:56
1193
- msgid "Where did my settings go?"
1194
- msgstr "Hvor gik mine indstillinger?"
1195
-
1196
- #: admin/views/goto-pro.php:57
1197
- msgid "Cookie Law Info version 0.9 has been updated and has new settings."
1198
- msgstr ""
1199
- "Cookie lov Info version 0.9 er blevet opdateret og har nye indstillinger."
1200
-
1201
- #: admin/views/goto-pro.php:57
1202
- msgid "Your previous settings are safe."
1203
- msgstr "Dine tidligere indstillinger er sikre."
1204
-
1205
- #: admin/views/goto-pro.php:58
1206
- msgid ""
1207
- "You can either copy over your old settings to this version, or use the new "
1208
- "default values."
1209
- msgstr ""
1210
- "Du kan enten kopiere over dine gamle indstillinger til denne version, eller "
1211
- "brug de nye standardværdier."
1212
-
1213
- #: admin/views/goto-pro.php:60
1214
- msgid "Would you like to:"
1215
- msgstr "Kunne du tænke dig:"
1216
-
1217
- #: admin/views/goto-pro.php:62
1218
- msgid "Use previous settings"
1219
- msgstr "Brug tidligere indstillinger"
1220
-
1221
- #: admin/views/goto-pro.php:63
1222
- msgid "Start afresh with the new version"
1223
- msgstr "Start på ny med den nye version"
1224
-
1225
- #: admin/views/goto-pro.php:67
1226
- msgid ""
1227
- "If you want to go back to the previous version you can always download it "
1228
- "again from"
1229
- msgstr ""
1230
- "Hvis du ønsker at gå tilbage til den tidligere version kan du altid hente "
1231
- "det igen fra"
1232
-
1233
- #: admin/views/goto-pro.php:73
1234
- msgid "30 Day Money Back Guarantee"
1235
- msgstr "30 dages penge tilbage garanti"
1236
-
1237
- #: admin/views/goto-pro.php:74
1238
- msgid "Fast and Superior Support"
1239
- msgstr "Hurtig og overlegen support"
1240
-
1241
- #: admin/views/goto-pro.php:75
1242
- msgid "10X Powerful with GDPR Cookie Consent Features That Every Site Needs"
1243
- msgstr ""
1244
- "10X Kraftig med GDPR Cookie-samtykkefunktioner, som ethvert websted har brug "
1245
- "for"
1246
-
1247
- #: admin/views/goto-pro.php:78
1248
- msgid "Upgrade to Premium"
1249
- msgstr "Opgrader til Premium"
1250
-
1251
- #: admin/views/goto-pro.php:84
1252
- msgid "Automatic Cookie Scanner"
1253
- msgstr "Automatisk cookie scanner"
1254
-
1255
- #: admin/views/goto-pro.php:85
1256
- msgid ""
1257
- "Auto block scripts - Google Analytics, Facebook Pixel, Google Tag Manager, "
1258
- "Hotjar Analytics, Google Publisher Tag, Youtube embed, Vimeo embed, Google "
1259
- "maps, Addthis widget, Sharethis widget, Twitter widget, Soundcloud embed, "
1260
- "Slideshare embed, Linkedin widget, Instagram embed, Pinterest widget"
1261
- msgstr ""
1262
- "Auto blokke scripts - Google Analytics, Facebook Pixel, Google Tag Manager, "
1263
- "Hotjar Analytics, Google Publisher Tag, Youtube embed, Vimeo embed, Google "
1264
- "maps, Addthis widget, Sharethis widget, Twitter widget, Soundcloud embed, "
1265
- "Slideshare embed, Linkedin widget, Instagram embed , Pinterest-widget"
1266
-
1267
- #: admin/views/goto-pro.php:86
1268
- msgid "Location based exclusion of cookie notice for EU countries"
1269
- msgstr "Lokationsbaseret udelukkelse af cookie-varsel til EU-lande"
1270
-
1271
- #: admin/views/goto-pro.php:87
1272
- msgid "Granular control over the cookies/scipts used by the website"
1273
- msgstr "Granulær kontrol over cookies / scipts brugt af hjemmesiden"
1274
-
1275
- #: admin/views/goto-pro.php:88
1276
- msgid "User consent audit logs"
1277
- msgstr "Bruger godkendelse revisionslogs"
1278
-
1279
- #: admin/views/goto-pro.php:89
1280
- msgid "Customized privacy overview"
1281
- msgstr "Brugerdefineret fortrolighedsoversigt"
1282
-
1283
- #: admin/views/goto-pro.php:90
1284
- msgid "Cookie bar preview in admin settings page"
1285
- msgstr "Forhåndsvisning af cookiebjælke på adminindstillingsside"
1286
-
1287
- #: admin/views/goto-pro.php:91
1288
- msgid "Advanced support for cache plugins"
1289
- msgstr "Avanceret support til cache plugins"
1290
-
1291
- #: admin/views/goto-pro.php:92
1292
- msgid "Cookie bar theme customizer for banner/ widgets/ popup"
1293
- msgstr "Cookie bar tema tilpasser til banner / widgets / popup"
1294
-
1295
- #: admin/views/goto-pro.php:93
1296
- msgid "GDPR compliance with Google Tag Manager"
1297
- msgstr "GDPR overholdelse af Google Tag Manager"
1298
-
1299
- #: admin/views/goto-pro.php:94
1300
- msgid "Javascript helper functions"
1301
- msgstr "Javascript hjælper funktioner"
1302
-
1303
- #: admin/views/goto-pro.php:108
1304
- msgid "Like this plugin?"
1305
- msgstr "Kan du lide denne plugin?"
1306
-
1307
- #: admin/views/goto-pro.php:109
1308
- msgid "If you find this plugin useful please show your support and rate it"
1309
- msgstr ""
1310
- "Hvis du finder dette plugin nyttigt, skal du vise din support og bedømme den"
1311
-
1312
- #: admin/views/goto-pro.php:109
1313
- msgid " on"
1314
- msgstr " på"
1315
-
1316
- #: admin/views/goto-pro.php:109
1317
- msgid " much appreciated!"
1318
- msgstr " Meget værdsat!"
1319
-
1320
- #: cookie-law-info.php:80
1321
- msgid ""
1322
- "Please make sure the cache is cleared after each plugin update especially if "
1323
- "you have minified JS and/or CSS files."
1324
- msgstr ""
1325
- "Sørg for, at cachen er ryddet efter hver pluginopdatering, især hvis du har "
1326
- "minificeret JS og / eller CSS filer."
1327
-
1328
- #: includes/class-cookie-law-info-review_request.php:52
1329
- #, php-format
1330
- msgid ""
1331
- "Hey, we at %sWebToffee%s would like to thank you for using our plugin. We "
1332
- "would really appreciate if you could take a moment to drop a quick review "
1333
- "that will inspire us to keep going."
1334
- msgstr ""
1335
- "Hej, vi på %sWebToffee% s vil gerne takke dig for at bruge vores plugin. Vi "
1336
- "ville virkelig sætte pris på, hvis du kunne tage et øjeblik på at give en "
1337
- "hurtig gennemgang, der vil inspirere os til at fortsætte."
1338
-
1339
- #: includes/class-cookie-law-info-review_request.php:55
1340
- msgid "Remind me later"
1341
- msgstr "Påmind mig senere"
1342
-
1343
- #: includes/class-cookie-law-info-review_request.php:56
1344
- msgid "Not interested"
1345
- msgstr "Ikke interesseret"
1346
-
1347
- #: includes/class-cookie-law-info-review_request.php:57
1348
- msgid "Review now"
1349
- msgstr "Anmeld nu"
1350
-
1351
- #: public/class-cookie-law-info-public.php:251
1352
- msgid "GDPR Cookie Consent"
1353
- msgstr "Cookie samtykke"
1354
-
1355
- #: public/class-cookie-law-info-public.php:252
1356
- msgid "Cookie List"
1357
- msgstr "Cookie liste"
1358
-
1359
- #: public/class-cookie-law-info-public.php:253
1360
- #: public/modules/shortcode/shortcode.php:208
1361
- msgid "Cookie"
1362
- msgstr "Cookie"
1363
-
1364
- #: public/class-cookie-law-info-public.php:254
1365
- msgid "Add New"
1366
- msgstr "Tilføj ny"
1367
-
1368
- #: public/class-cookie-law-info-public.php:255
1369
- msgid "Add New Cookie Type"
1370
- msgstr "Tilføje nye Cookie Type"
1371
-
1372
- #: public/class-cookie-law-info-public.php:256
1373
- msgid "Edit Cookie Type"
1374
- msgstr "Rediger cookie type"
1375
-
1376
- #: public/class-cookie-law-info-public.php:257
1377
- msgid "New Cookie Type"
1378
- msgstr "Ny Cookie Type"
1379
-
1380
- #: public/class-cookie-law-info-public.php:258
1381
- msgid "View Cookie Type"
1382
- msgstr "Se cookie type"
1383
-
1384
- #: public/class-cookie-law-info-public.php:259
1385
- msgid "Search Cookies"
1386
- msgstr "Søg Cookies"
1387
-
1388
- #: public/class-cookie-law-info-public.php:260
1389
- msgid "Nothing found"
1390
- msgstr "Intet fundet"
1391
-
1392
- #: public/class-cookie-law-info-public.php:261
1393
- msgid "Nothing found in Trash"
1394
- msgstr "Intet fundet i papirkurven"
1395
-
1396
- #: public/modules/script-blocker/script-blocker.php:156
1397
- #: public/modules/script-blocker/script-blocker.php:157
1398
- msgid "Script Blocker"
1399
- msgstr "Script Blocker"
1400
-
1401
- #: public/modules/script-blocker/script-blocker.php:182
1402
- msgid "Status updated"
1403
- msgstr "Status opdateret"
1404
-
1405
- #: public/modules/script-blocker/script-blocker.php:206
1406
- msgid "Advanced script rendering"
1407
- msgstr "Avanceret gengivelse af script"
1408
-
1409
- #: public/modules/script-blocker/script-blocker.php:208
1410
- #: public/modules/script-blocker/views/settings.php:7
1411
- msgid "Enable"
1412
- msgstr "Aktivér"
1413
-
1414
- #: public/modules/script-blocker/script-blocker.php:209
1415
- #: public/modules/script-blocker/views/settings.php:7
1416
- msgid "Disable"
1417
- msgstr "Deaktiver"
1418
-
1419
- #: public/modules/script-blocker/script-blocker.php:210
1420
- msgid ""
1421
- "Advanced script rendering will render the blocked scripts using javascript "
1422
- "thus eliminating the need for a page refresh. It is also optimized for "
1423
- "caching since there is no server-side processing after obtaining the consent."
1424
- msgstr ""
1425
- "Avanceret scriptgengivelse gengiver de blokerede scripts ved hjælp af "
1426
- "javascript, hvilket eliminerer behovet for en sideopdatering. Det er også "
1427
- "optimeret til cache, da der ikke er nogen server-side behandling efter "
1428
- "indhentning af samtykke."
1429
-
1430
- #: public/modules/script-blocker/views/settings.php:9
1431
- msgid "Script blocker is enabled."
1432
- msgstr "Scriptblokering er aktiveret."
1433
-
1434
- #: public/modules/script-blocker/views/settings.php:9
1435
- msgid ""
1436
- "Script blocker is currently disabled. Enable the blocker if you want any of "
1437
- "the below listed plugins to be auto blocked."
1438
- msgstr ""
1439
- "Scriptblokering er i øjeblikket deaktiveret. Aktivér blokeringen, hvis du "
1440
- "vil have, at et af nedenstående plugins automatisk blokeres."
1441
-
1442
- #: public/modules/script-blocker/views/settings.php:10
1443
- #, php-format
1444
- msgid "<a href=\"javascript: submitform()\">%s</a>"
1445
- msgstr "<a href=\"javascript: submitform()\">%s</a>"
1446
-
1447
- #: public/modules/script-blocker/views/settings.php:14
1448
- #, php-format
1449
- msgid ""
1450
- "Advanced script rendering is currently disabled. It should be enabled for "
1451
- "the automatic script blocker to function. <a href=\"%s\">Enable.</a>"
1452
- msgstr ""
1453
- "Avanceret gengivelse af script er i øjeblikket deaktiveret. Det skal være "
1454
- "aktiveret for, at den automatiske scriptblokker fungerer. <a href=\"%s"
1455
- "\">Aktiver.</a>"
1456
-
1457
- #: public/modules/script-blocker/views/settings.php:113
1458
- msgid "Manage Script Blocking"
1459
- msgstr "Administrere Script blokering"
1460
-
1461
- #: public/modules/script-blocker/views/settings.php:134
1462
- #, php-format
1463
- msgid ""
1464
- "Below is the list of plugins currently supported for auto blocking. Plugins "
1465
- "marked inactive are either not installed or activated on your website. "
1466
- "Enabled plugins will be blocked by default on the front-end of your website "
1467
- "prior to obtaining user consent and rendered respectively based on consent. "
1468
- "<a href=\"%s\" target=\"_blank\">Read more.</a>"
1469
- msgstr ""
1470
- "Nedenfor er listen over plugins, der i øjeblikket understøttes til "
1471
- "automatisk blokering. Plugins markeret som inaktive er enten ikke "
1472
- "installeret eller aktiveret på dit websted. Aktiverede plugins blokeres som "
1473
- "standard på front-enden af dit websted, før du opnår brugertilladelse og "
1474
- "gengives henholdsvis baseret på samtykke. <a href=\"%s\" target=\"_blank"
1475
- "\">Læs mere.</a>"
1476
-
1477
- #: public/modules/script-blocker/views/settings.php:140
1478
- msgid "Name"
1479
- msgstr "Fornavn"
1480
-
1481
- #: public/modules/script-blocker/views/settings.php:141
1482
- msgid ""
1483
- "Enabled: Plugins will be blocked by default prior to obtaining user consent."
1484
- msgstr ""
1485
- "Aktiveret: Plugins blokeres som standard, før brugernes samtykke opnås."
1486
-
1487
- #: public/modules/script-blocker/views/settings.php:141
1488
- msgid "Disabled: Plugins will be rendered prior to obtaining consent."
1489
- msgstr "Deaktiveret: Plugins gengives inden indhentning af samtykke."
1490
-
1491
- #: public/modules/script-blocker/views/settings.php:175
1492
- msgid "Inactive"
1493
- msgstr "Inaktiv"
1494
-
1495
- #: public/modules/shortcode/shortcode.php:99
1496
- msgid "Your current state:"
1497
- msgstr "Din nuværende tilstand:"
1498
-
1499
- #: public/modules/shortcode/shortcode.php:104
1500
- msgid "Consent accepted."
1501
- msgstr "Godkendt samtykke."
1502
-
1503
- #: public/modules/shortcode/shortcode.php:107
1504
- msgid "Consent rejected."
1505
- msgstr "Samtykke afvist."
1506
-
1507
- #: public/modules/shortcode/shortcode.php:111
1508
- msgid "No consent given."
1509
- msgstr "Ingen tilladelse givet."
1510
-
1511
- #: public/modules/shortcode/shortcode.php:113
1512
- msgid "Manage your consent."
1513
- msgstr "Administrer dit samtykke."
1514
-
1515
- #: public/modules/shortcode/shortcode.php:150
1516
- msgid "Delete Cookies"
1517
- msgstr "Slet cookies fra"
1518
-
1519
- #: public/modules/shortcode/shortcode.php:186
1520
- msgid "No records found"
1521
- msgstr "Ingen resultater fundet"
1522
-
1523
- #: public/modules/shortcode/shortcode.php:212
1524
- msgid "Type"
1525
- msgstr "Type"
1526
-
1527
- #: public/modules/shortcode/shortcode.php:216
1528
- msgid "Duration"
1529
- msgstr "Bestillingsdato"
1530
-
1531
- #: public/modules/shortcode/shortcode.php:533
1532
- msgid "Close the cookie bar"
1533
- msgstr "Luk cookie-baren"
1534
-
1535
- #: public/modules/shortcode/shortcode.php:533
1536
- msgid "Close and Accept"
1537
- msgstr "Luk og accepter"
1538
-
1539
- #: public/views/cookie-law-info_bar.php:23
1540
- msgid "Close"
1541
- msgstr "Luk"
1542
-
1543
- #: public/views/cookie-law-info_popup_content.php:6
1544
- msgid "Always Enabled"
1545
- msgstr "Altid aktiveret"
1546
-
1547
- #: public/views/cookie-law-info_popup_content.php:9
1548
- msgid "Show more"
1549
- msgstr "Vis mere"
1550
-
1551
- #: public/views/cookie-law-info_popup_content.php:9
1552
- msgid "Show less"
1553
- msgstr "Vis mindre"
1554
-
1555
- #~ msgid ""
1556
- #~ "Which plugin are you using for language translation? Could you tell us a "
1557
- #~ "bit more?"
1558
- #~ msgstr ""
1559
- #~ "Hvilket plugin bruger du til sprogoversættelse? Kunne du fortælle os lidt "
1560
- #~ "mere?"
1561
-
1562
- #~ msgid "Caching issues"
1563
- #~ msgstr "Cache-problemer"
1564
-
1565
- #~ msgid "Which caching plugin are you using? Could you tell us a bit more?"
1566
- #~ msgstr "Hvilket caching-plugin bruger du? Kunne du fortælle os lidt mere?"
1567
-
1568
- #~ msgid "Cookie Law Settings"
1569
- #~ msgstr "Loven cookieindstillinger"
1570
-
1571
- #~ msgid "Show Again Tab"
1572
- #~ msgstr "Vis igen fanebladet"
1573
-
1574
- #~ msgid "Use Show Again Tab?"
1575
- #~ msgstr "Brug Vis igen fane?"
1576
-
1577
- #~ msgid "Show More Text"
1578
- #~ msgstr "Vis mere"
1579
-
1580
- #~ msgid "Non-necessary Cookie"
1581
- #~ msgstr "Ikke-nødvendigt Cookie"
1582
-
1583
- #~ msgid "Necessary Cookie"
1584
- #~ msgstr "Nødvendig cookie"
1585
-
1586
- #~ msgid "Your Cookie Law Info bar is switched on"
1587
- #~ msgstr "Din Cookie lov Info bar er tændt"
1588
-
1589
- #~ msgid "Your Cookie Law Info bar is switched off"
1590
- #~ msgstr "Din Cookie lov Info bar er slukket"
1591
-
1592
- #~ msgid "Cookie Bar will be shown in:"
1593
- #~ msgstr "Cookie Bar vises i:"
1594
-
1595
- #~ msgid "Disappear"
1596
- #~ msgstr "Forsvinde"
1597
-
1598
- #~ msgid "Show Border?"
1599
- #~ msgstr "Vis rammer?"
1600
-
1601
- #~ msgid "Border Colour"
1602
- #~ msgstr "Rammefarve"
1603
-
1604
- #~ msgid "Priority: (Numeric - Higher the value, higher the priority)"
1605
- #~ msgstr "Prioritet: (numerisk - højere værdi, højere prioritet)"
1606
-
1607
- #~ msgid "Priority"
1608
- #~ msgstr "Prioritet"
1609
-
1610
- #~ msgid "Scan & Download"
1611
- #~ msgstr "Scan & Download"
1612
-
1613
- #~ msgid "Export Cookie"
1614
- #~ msgstr "Eksportere Cookie"
1615
-
1616
- #~ msgid "You do not have sufficient permissions to access this page."
1617
- #~ msgstr "Du har ikke tilstrækkelige rettigheder til at tilgå denne side."
1618
-
1619
- #~ msgid "Export as CSV file"
1620
- #~ msgstr "Eksporter som CSV"
1621
-
1622
- #~ msgid "Export"
1623
- #~ msgstr "Eksport"
1624
-
1625
- #~ msgid "Scan & Import"
1626
- #~ msgstr "Scan & Import"
1627
-
1628
- #~ msgid "Import Cookie"
1629
- #~ msgstr "Import Cookie"
1630
-
1631
- #~ msgid "BEGIN %s"
1632
- #~ msgstr "BEGIN%s"
1633
-
1634
- #~ msgid "[Line %1$s] %2$s"
1635
- #~ msgstr "%1$s %2$s"
1636
-
1637
- #~ msgid "Import from a CSV file"
1638
- #~ msgstr "Importér en CSV- fil"
1639
-
1640
- #~ msgid ""
1641
- #~ "Notice: please make the directory %s writable so that you can see the "
1642
- #~ "error log."
1643
- #~ msgstr ""
1644
- #~ "Bemærk: venligst gøre mappen %s skrives således at du kan se fejlloggen."
1645
-
1646
- #~ msgid "Error during file upload."
1647
- #~ msgstr "Fejl under fil upload."
1648
-
1649
- #~ msgid "Cannot extract data from uploaded file or no file was uploaded."
1650
- #~ msgstr ""
1651
- #~ "Kan ikke udtrække data fra uploadede filen eller ingen fil blev uploadet."
1652
-
1653
- #~ msgid "No posts was successfully imported%s."
1654
- #~ msgstr "Ingen indlæg blev importeret med succes%s."
1655
-
1656
- #~ msgid "Some posts were successfully imported but some were not%s."
1657
- #~ msgstr "Nogle indlæg blev importeret, men nogle var ikke %s."
1658
-
1659
- #~ msgid "Post import was successful."
1660
- #~ msgstr "Indlæg er importen gennemført korrekt."
1661
-
1662
- #~ msgid "CSV file"
1663
- #~ msgstr "CVS fil"
1664
-
1665
- #~ msgid "You may want to see <a href=\"%s\">the example of the CSV file</a>."
1666
- #~ msgstr "Kan du se <a href=\"%s\">eksempel på CSV-filen</a>."
1667
-
1668
- #~ msgid "Import"
1669
- #~ msgstr "Import"
1670
-
1671
- #~ msgid "Error processing migration request (ERROR: 4)"
1672
- #~ msgstr "Fejl ved behandling af migreringsanmodning (FEJL: 4)"
1673
-
1674
- #~ msgid "Show only for EU Countries ( GeoIP )"
1675
- #~ msgstr "Vis kun for EU lande (GeoIP)"
1676
-
1677
- #~ msgid "Cookie Law Message Bar"
1678
- #~ msgstr "Cookie Law Message Bar"
1679
-
1680
- #~ msgid "Shortcodes allowed: see settngs section \"Using the Shortcodes\"."
1681
- #~ msgstr "Kortkoder tilladt: settngs i afsnittet \"Brug af the kortkoder\"."
1682
-
1683
- #~ msgid "Link Text"
1684
- #~ msgstr "Link tekst"
1685
-
1686
- #~ msgid "Open link in new window?"
1687
- #~ msgstr "Åben i et nyt vindue"
1688
-
1689
- #~ msgid "Link colour"
1690
- #~ msgstr "Link farve"
1691
-
1692
- #~ msgid "Show as button?"
1693
- #~ msgstr "Vis som knap"
1694
-
1695
- #~ msgid "Button colour"
1696
- #~ msgstr "Knapfarve"
1697
-
1698
- #~ msgid "Button Size"
1699
- #~ msgstr "Knap størrelse"
1700
-
1701
- #~ msgid "Using the Shortcodes"
1702
- #~ msgstr "Brug af kortnumrene"
1703
-
1704
- #~ msgid "The shortcodes are:"
1705
- #~ msgstr "Kortkoder er:"
1706
-
1707
- #~ msgid ""
1708
- #~ "If you just want a standard green \"Accept\" button that closes the "
1709
- #~ "header and nothing more, use this shortcode. It is already styled, you "
1710
- #~ "don't need to customise it."
1711
- #~ msgstr ""
1712
- #~ "Hvis du bare ønsker en standard grøn \"Accepter\" knappen, der lukker i "
1713
- #~ "hovedet og intet mere, bruge denne ufuldkommenhed. Det er allerede "
1714
- #~ "stylet, du behøver at tilpasse den."
1715
-
1716
- #~ msgid ""
1717
- #~ "Alternatively you can add a colour value. Choose from: red, blue, orange, "
1718
- #~ "yellow, green or pink."
1719
- #~ msgstr ""
1720
- #~ "Alternativt kan du tilføje en farve værdi. Vælge imellem: rød, blå, "
1721
- #~ "orange, gul, grøn eller pink."
1722
-
1723
- #~ msgid "Careful to use the British spelling of \"colour\" for the attribute."
1724
- #~ msgstr "Pas på at bruge den britiske stavning af \"farve\" til attributten."
1725
-
1726
- #~ msgid "This prints out a nice table of cookies by category."
1727
- #~ msgstr "Dette udskriver et flot bord af cookies efter kategori."
1728
-
1729
- #~ msgid "This prints the settings popup of cookie category."
1730
- #~ msgstr "Dette udskriver indstillingerne popup af cookie kategori."
1731
-
1732
- #~ msgid "Are you sure you want to migrate settings?"
1733
- #~ msgstr "Er du sikker på, du vil overføre indstillinger?"
1734
-
1735
- #~ msgid "Help"
1736
- #~ msgstr "Hjælp"
1737
-
1738
- #~ msgid "Report a Bug"
1739
- #~ msgstr "Rapporter en fejl"
1740
-
1741
- #~ msgid "Guide"
1742
- #~ msgstr "Vejledende beskrivelse"
1743
-
1744
- #~ msgid "About the law"
1745
- #~ msgstr "Om loven"
1746
-
1747
- #~ msgid "Message Bar"
1748
- #~ msgstr "meddelelseslinje"
1749
-
1750
- #~ msgid "Licence"
1751
- #~ msgstr "Licens"
1752
-
1753
- #~ msgid "Licence Activation"
1754
- #~ msgstr "Licensaktivering"
1755
-
1756
- #~ msgid "API Licence Key:"
1757
- #~ msgstr "API Licensnøgle:"
1758
-
1759
- #~ msgid "Licence Key"
1760
- #~ msgstr "Licens"
1761
-
1762
- #~ msgid "Licence Email"
1763
- #~ msgstr "Licens Email"
1764
-
1765
- #~ msgid "Activate"
1766
- #~ msgstr "Aktiver"
1767
-
1768
- #~ msgid ""
1769
- #~ "This website uses cookies to improve your experience. We'll assume you're "
1770
- #~ "ok with this, but you can opt-out if you wish.[cookie_button] "
1771
- #~ "[cookie_settings] [cookie_link]"
1772
- #~ msgstr ""
1773
- #~ "Denne hjemmeside bruger cookies til at forbedre din oplevelse. Vi antager "
1774
- #~ "du er ok med det, men du kan fravælge hvis du ønsker. [cookie_button] "
1775
- #~ "[cookie_settings] [cookie_link]"
1776
-
1777
- #~ msgid "Cookie Category"
1778
- #~ msgstr "Cookie kategori"
1779
-
1780
- #~ msgid "Action is unknown."
1781
- #~ msgstr "Denne handling er ukendt."
1782
-
1783
- #~ msgid "Category"
1784
- #~ msgstr "Kategori"
1785
-
1786
- #~ msgid "Key"
1787
- #~ msgstr "Nøgle"
1788
-
1789
- #~ msgid "No Consent History"
1790
- #~ msgstr "Ingen samtykke historie"
1791
-
1792
- #~ msgid "IP Address"
1793
- #~ msgstr "IP-adresse"
1794
-
1795
- #~ msgid "Visited Date"
1796
- #~ msgstr "Besøgte"
1797
-
1798
- #~ msgid "User ID"
1799
- #~ msgstr "Bruger-ID"
1800
-
1801
- #~ msgid "GDPR Consent History"
1802
- #~ msgstr "GDPR-samtykkehistorie"
1803
-
1804
- #~ msgid "Export Report"
1805
- #~ msgstr "Eksportrapport"
1806
-
1807
- #~ msgid "Event Logged Successfully"
1808
- #~ msgstr "Event Logged Successfully"
1809
-
1810
- #~ msgid "Logging is not enabled"
1811
- #~ msgstr "Logning er ikke aktiveret"
1812
-
1813
- #~ msgid "Consent Report"
1814
- #~ msgstr "Samtykke rapport"
1815
-
1816
- #~ msgid "Cookie Bar will be show in:"
1817
- #~ msgstr "Cookie Bar vil blive vist i:"
1818
-
1819
- #~ msgid "Auto-hide cookie bar after delay?"
1820
- #~ msgstr "Bil-skjule cookie bar efter forsinkelse?"
1821
-
1822
- #~ msgid "Auto-hide cookie bar if the user scrolls?"
1823
- #~ msgstr "Bil-skjule cookie bar hvis brugeren ruller?"
1824
-
1825
- #~ msgid "Button will only link to URL if Action = Show URL"
1826
- #~ msgstr "Knappen vil kun link til URL hvis Action = Vis URL"
1827
-
1828
- #~ msgid ""
1829
- #~ "We have moved header and footer scripts of this section to the "
1830
- #~ "corresponding fields of a 'Non-Necessary-Cookie' created under 'Non-"
1831
- #~ "Necessary' category."
1832
- #~ msgstr ""
1833
- #~ "Vi har flyttet sidehoved og sidefod scripts af dette afsnit til de "
1834
- #~ "tilsvarende felter i et 'ikke-nødvendige-Cookie' oprettet under 'Ikke-"
1835
- #~ "nødvendige' kategori."
1836
-
1837
- #~ msgid ""
1838
- #~ "So now all your Cookies and related scripts can be managed from a single "
1839
- #~ "place."
1840
- #~ msgstr ""
1841
- #~ "Så nu kan alle dine Cookies og relaterede scripts administreres fra et "
1842
- #~ "enkelt sted."
1843
-
1844
- #~ msgid "Accept"
1845
- #~ msgstr "Accepter"
1846
-
1847
- #~ msgid "Reject"
1848
- #~ msgstr "Afvis"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/cookie-law-info-da_DK.mo DELETED
Binary file
languages/cookie-law-info-da_DK.po DELETED
@@ -1,2258 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: \n"
4
- "POT-Creation-Date: 2020-11-17 11:29+0530\n"
5
- "PO-Revision-Date: 2020-11-17 11:30+0530\n"
6
- "Last-Translator: \n"
7
- "Language-Team: \n"
8
- "Language: da\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.4.2\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
- "X-Poedit-KeywordsList: __;_e\n"
16
- "X-Poedit-SearchPath-0: .\n"
17
-
18
- #: admin/class-cookie-law-info-admin.php:147
19
- #: admin/class-cookie-law-info-admin.php:148
20
- #: admin/class-cookie-law-info-admin.php:247
21
- #: admin/partials/cookie-law-info-admin_settings.php:31
22
- msgid "Settings"
23
- msgstr "Indstillinger"
24
-
25
- #: admin/class-cookie-law-info-admin.php:155
26
- #: admin/class-cookie-law-info-admin.php:156
27
- #: public/modules/script-blocker/views/settings.php:174
28
- #: public/views/cookie-law-info_popup_content.php:23
29
- msgid "Non-necessary"
30
- msgstr "Ikke-nødvendigt"
31
-
32
- #: admin/class-cookie-law-info-admin.php:163
33
- #: admin/class-cookie-law-info-admin.php:164
34
- #: public/views/cookie-law-info_popup_content.php:22
35
- msgid "Necessary"
36
- msgstr "Nødvendig"
37
-
38
- #: admin/class-cookie-law-info-admin.php:171
39
- #: admin/class-cookie-law-info-admin.php:172
40
- #: admin/partials/cookie-law-info-privacy_overview.php:25
41
- msgid "Privacy Overview"
42
- msgstr "Beskyttelse af personlige oplysninger"
43
-
44
- #: admin/class-cookie-law-info-admin.php:221
45
- #: admin/class-cookie-law-info-admin.php:276
46
- #: admin/class-cookie-law-info-admin.php:334
47
- #: admin/class-cookie-law-info-admin.php:378
48
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:22
49
- #: public/modules/script-blocker/script-blocker.php:133
50
- #: public/modules/script-blocker/script-blocker.php:173
51
- #: public/modules/script-blocker/script-blocker.php:310
52
- msgid "You do not have sufficient permission to perform this operation"
53
- msgstr "Du har ikke den nødvendige tilladelse til at udføre denne operation"
54
-
55
- #: admin/class-cookie-law-info-admin.php:240
56
- #: admin/class-cookie-law-info-admin.php:306
57
- #: admin/class-cookie-law-info-admin.php:359
58
- #: admin/class-cookie-law-info-admin.php:403
59
- msgid "Settings Updated."
60
- msgstr "Indstillinger opdateret."
61
-
62
- #: admin/class-cookie-law-info-admin.php:248
63
- msgid "Support"
64
- msgstr "Support"
65
-
66
- #: admin/class-cookie-law-info-admin.php:249
67
- msgid "Premium Upgrade"
68
- msgstr "Premium Opgradering"
69
-
70
- #: admin/class-cookie-law-info-admin.php:418
71
- msgid "ERROR MIGRATING SETTINGS (ERROR: 2)"
72
- msgstr "FEJL I INDSTILLINGER FOR OVERFLYTNING (FEJL: 2)"
73
-
74
- #: admin/class-cookie-law-info-admin.php:436
75
- msgid "Cookie ID"
76
- msgstr "Cookie ID"
77
-
78
- #: admin/class-cookie-law-info-admin.php:437
79
- msgid "Cookie Type"
80
- msgstr "Cookie Type"
81
-
82
- #: admin/class-cookie-law-info-admin.php:438
83
- msgid "Cookie Duration"
84
- msgstr "Cookie Varighed"
85
-
86
- #: admin/class-cookie-law-info-admin.php:439
87
- msgid "Cookie Sensitivity"
88
- msgstr "Cookie følsomhed"
89
-
90
- #: admin/class-cookie-law-info-admin.php:689
91
- msgid "Close Header"
92
- msgstr "Luk overskrift"
93
-
94
- #: admin/class-cookie-law-info-admin.php:693
95
- msgid "Open URL"
96
- msgstr "Åben URL"
97
-
98
- #: admin/class-cookie-law-info-admin.php:706
99
- msgid "Extra Large"
100
- msgstr "Ekstra stor"
101
-
102
- #: admin/class-cookie-law-info-admin.php:710
103
- msgid "Large"
104
- msgstr "Stor"
105
-
106
- #: admin/class-cookie-law-info-admin.php:714
107
- msgid "Medium"
108
- msgstr "Medium"
109
-
110
- #: admin/class-cookie-law-info-admin.php:718
111
- msgid "Small"
112
- msgstr "Lille"
113
-
114
- #: admin/class-cookie-law-info-admin.php:732
115
- msgid "Default theme font"
116
- msgstr "Standard tema skrifttype"
117
-
118
- #: admin/class-cookie-law-info-admin.php:736
119
- msgid "Sans Serif"
120
- msgstr "Sans Serif"
121
-
122
- #: admin/class-cookie-law-info-admin.php:740
123
- msgid "Serif"
124
- msgstr "Serif"
125
-
126
- #: admin/class-cookie-law-info-admin.php:744
127
- msgid "Arial"
128
- msgstr "Arial"
129
-
130
- #: admin/class-cookie-law-info-admin.php:748
131
- msgid "Arial Black"
132
- msgstr "Arial Black"
133
-
134
- #: admin/class-cookie-law-info-admin.php:752
135
- msgid "Georgia, serif"
136
- msgstr "Georgia, serif"
137
-
138
- #: admin/class-cookie-law-info-admin.php:756
139
- msgid "Helvetica"
140
- msgstr "Helvetica"
141
-
142
- #: admin/class-cookie-law-info-admin.php:760
143
- msgid "Lucida"
144
- msgstr "Lucida"
145
-
146
- #: admin/class-cookie-law-info-admin.php:764
147
- msgid "Tahoma"
148
- msgstr "Tahoma"
149
-
150
- #: admin/class-cookie-law-info-admin.php:768
151
- msgid "Times New Roman"
152
- msgstr "Times New Roman"
153
-
154
- #: admin/class-cookie-law-info-admin.php:772
155
- msgid "Trebuchet"
156
- msgstr "Trebuchet"
157
-
158
- #: admin/class-cookie-law-info-admin.php:776
159
- msgid "Verdana"
160
- msgstr "Verdana"
161
-
162
- #: admin/modules/ccpa/ccpa.php:106
163
- msgid "Do you really wish to opt out?"
164
- msgstr "Ønsker du virkelig at fravælge det?"
165
-
166
- #: admin/modules/ccpa/ccpa.php:107
167
- msgid "Confirm"
168
- msgstr "Bekræft det skrevne"
169
-
170
- #: admin/modules/ccpa/ccpa.php:108
171
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:154
172
- msgid "Cancel"
173
- msgstr "Afbryd"
174
-
175
- #: admin/modules/ccpa/ccpa.php:145
176
- msgid "Select the type of law"
177
- msgstr "Vælg lovtype"
178
-
179
- #: admin/modules/ccpa/ccpa.php:149
180
- msgid "GDPR"
181
- msgstr "GDPR"
182
-
183
- #: admin/modules/ccpa/ccpa.php:150 admin/modules/ccpa/ccpa.php:158
184
- msgid ""
185
- "Customize the buttons, notice, themes from the relevant tabs to setup your "
186
- "cookie notice accordingly."
187
- msgstr ""
188
- "Tilpas knapper, meddelelse, temaer fra de relevante faner for at opsætte din "
189
- "cookie-meddelelse i overensstemmelse hermed."
190
-
191
- #: admin/modules/ccpa/ccpa.php:153
192
- msgid "CCPA"
193
- msgstr "CCPA"
194
-
195
- #: admin/modules/ccpa/ccpa.php:154
196
- msgid ""
197
- "Most of the customizations from the tabs for buttons, notice or themes are "
198
- "not relevant especially if you choose to not show the notice, except the Do "
199
- "not sell within the buttons."
200
- msgstr ""
201
- "De fleste af tilpasningerne fra fanerne til knapper, meddelelse eller temaer "
202
- "er ikke relevante, især hvis du vælger ikke at vise meddelelsen, bortset fra "
203
- "Sælg ikke inden knapperne."
204
-
205
- #: admin/modules/ccpa/ccpa.php:157
206
- msgid "CCPA & GDPR"
207
- msgstr "CCPA & GDPR"
208
-
209
- #: admin/modules/ccpa/views/ccpa_settings.php:7
210
- msgid "CCPA Settings"
211
- msgstr "CCPA-indstillinger"
212
-
213
- #: admin/modules/ccpa/views/ccpa_settings.php:7
214
- msgid ""
215
- "The right to opt out in the California Consumer Privacy Act gives consumers "
216
- "the ability to direct a business not to sell their personal information to a "
217
- "third party. If the user considers to not sell their personal information, "
218
- "all the scripts related to the categories which are configured to sell "
219
- "personal information will be blocked. The DO NOT SELL option is facilitated "
220
- "via a shortcode [wt_cli_ccpa_optout]."
221
- msgstr ""
222
- "Retten til at fravælge den californiske forbrugerbeskyttelseslov giver "
223
- "forbrugerne mulighed for at lede en virksomhed om ikke at sælge deres "
224
- "personlige oplysninger til en tredjepart. Hvis brugeren overvejer ikke at "
225
- "sælge deres personlige oplysninger, blokeres alle scripts relateret til de "
226
- "kategorier, der er konfigureret til at sælge personlige oplysninger. "
227
- "Indstillingen IKKE SÆLG gøres lettere via en kortkode [wt_cli_ccpa_optout]."
228
-
229
- #: admin/modules/ccpa/views/ccpa_settings.php:10
230
- msgid "Enable CCPA ?"
231
- msgstr "Aktivere CCPA?"
232
-
233
- #: admin/modules/ccpa/views/ccpa_settings.php:18
234
- msgid "Enable CCPA notice"
235
- msgstr "Aktivér CCPA-meddelelse"
236
-
237
- #: admin/modules/ccpa/views/ccpa_settings.php:18
238
- msgid ""
239
- "Enabling the notice will display the banner with the relevant text as per "
240
- "your configuration. Use this option particularly to record prior consent "
241
- "from the website visitors."
242
- msgstr ""
243
- "Aktivering af meddelelsen viser banneret med den relevante tekst som pr. Din "
244
- "konfiguration. Brug denne mulighed især til at registrere forudgående "
245
- "samtykke fra besøgende på webstedet."
246
-
247
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:26
248
- msgid "Unable to handle your request."
249
- msgstr "Kan ikke håndtere din anmodning."
250
-
251
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:96
252
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:130
253
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:132
254
- msgid "Error"
255
- msgstr "Fejl"
256
-
257
- #: admin/modules/cli-policy-generator/classes/class-preview-page.php:27
258
- msgid "Cookie Policy"
259
- msgstr "Cookie Policy"
260
-
261
- #: admin/modules/cli-policy-generator/classes/class-preview-page.php:83
262
- msgid "Auto reload preview"
263
- msgstr "Automatisk genindlæs forhåndsvisning"
264
-
265
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:106
266
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:107
267
- #: admin/modules/cli-policy-generator/views/policy-generator.php:21
268
- msgid "Policy generator"
269
- msgstr "Policy generator"
270
-
271
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:133
272
- msgid "Success"
273
- msgstr "Succes"
274
-
275
- #: admin/modules/cli-policy-generator/views/policy-generator.php:25
276
- msgid "Sample heading"
277
- msgstr "Prøveoverskrift"
278
-
279
- #: admin/modules/cli-policy-generator/views/policy-generator.php:26
280
- msgid "Sample content"
281
- msgstr "Prøveindhold"
282
-
283
- #: admin/modules/cli-policy-generator/views/policy-generator.php:27
284
- msgid "Delete"
285
- msgstr "Slet"
286
-
287
- #: admin/modules/cli-policy-generator/views/policy-generator.php:49
288
- msgid "Add new"
289
- msgstr "Tilføj ny"
290
-
291
- #: admin/modules/cli-policy-generator/views/policy-generator.php:53
292
- msgid "Heading"
293
- msgstr "Overskrift"
294
-
295
- #: admin/modules/cli-policy-generator/views/policy-generator.php:57
296
- #: admin/views/admin_necessary_cookie.php:39
297
- #: admin/views/admin_non_necessary_cookie.php:54
298
- #: public/modules/script-blocker/views/settings.php:142
299
- #: public/modules/shortcode/shortcode.php:220
300
- msgid "Description"
301
- msgstr "Beskrivelse"
302
-
303
- #: admin/modules/cli-policy-generator/views/policy-generator.php:65
304
- msgid ""
305
- "Enabling this option will help us spread the word by placing a credit to "
306
- "WebToffee at the very end of the Cookie Policy page."
307
- msgstr ""
308
- "Aktivering af denne mulighed hjælper os med at sprede ordet ved at placere "
309
- "en kredit til WebToffee i slutningen af ​​siden Cookie Policy."
310
-
311
- #: admin/modules/cli-policy-generator/views/policy-generator.php:82
312
- msgid "Update existing Cookie Policy page"
313
- msgstr "Opdater eksisterende Cookie Policy side"
314
-
315
- #: admin/modules/cli-policy-generator/views/policy-generator.php:88
316
- msgid "Create Cookie Policy page"
317
- msgstr "Opret cookiepolitik side"
318
-
319
- #: admin/modules/cli-policy-generator/views/policy-generator.php:92
320
- msgid "Live preview"
321
- msgstr "Live preview"
322
-
323
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:43
324
- msgid "The plugin is complex to set up"
325
- msgstr "Pluginet er komplekst at konfigurere"
326
-
327
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:45
328
- msgid "Please describe which area you are facing difficulties"
329
- msgstr "Beskriv venligst, hvilket område du har problemer"
330
-
331
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:49
332
- msgid "I found a better plugin"
333
- msgstr "Jeg har fundet et bedre plugin"
334
-
335
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:51
336
- msgid "Which plugin?"
337
- msgstr "Hvilket plugin?"
338
-
339
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:55
340
- msgid "The plugin is great, but I need specific feature that you don't support"
341
- msgstr ""
342
- "Pluginnet er dejligt, men jeg har brug for en specifik feature du ikke har"
343
-
344
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:57
345
- msgid "Could you tell us more about that feature?"
346
- msgstr "Kunne du fortælle os mere om denne funktion?"
347
-
348
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:61
349
- msgid "The plugin didn't work as expected"
350
- msgstr "Plugin fungerede ikke som forventet"
351
-
352
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:63
353
- msgid "What did you expect?"
354
- msgstr "Hvad havde du forventet?"
355
-
356
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:67
357
- msgid "A conflict with another plugin or theme"
358
- msgstr "En konflikt med et andet plugin eller et andet tema"
359
-
360
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:69
361
- msgid "Which plugin or theme?"
362
- msgstr "Hvilket plugin eller tema?"
363
-
364
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:73
365
- msgid "Translation issues"
366
- msgstr "Oversættelsesproblemer"
367
-
368
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:77
369
- msgid "Incorrect/missing translation"
370
- msgstr "Forkert / manglende oversættelse"
371
-
372
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:79
373
- msgid "Name the language"
374
- msgstr "Navngiv sproget"
375
-
376
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:83
377
- msgid ""
378
- "Unable to translate my dynamic content e.g, cookie message, button text etc"
379
- msgstr ""
380
- "Kan ikke oversætte mit dynamiske indhold, fx cookiebesked, knaptekst osv"
381
-
382
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:85
383
- msgid "Name the language and the translator plugin that you are using"
384
- msgstr "Navngiv det sprog og det oversætterplugin, du bruger"
385
-
386
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:91
387
- msgid "Upgrade to pro"
388
- msgstr "Opgrader til Pro"
389
-
390
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:95
391
- #: admin/views/admin-settings-general.php:10
392
- #: admin/views/admin-settings-general.php:66
393
- msgid "Other"
394
- msgstr "Andet"
395
-
396
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:97
397
- msgid "Could you tell us a bit more?"
398
- msgstr "Kan du fortælle os lidt mere?"
399
-
400
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:117
401
- msgid "If you have a moment, please let us know why you are deactivating:"
402
- msgstr ""
403
- "Hvis du har et øjeblik, så lad os venligst vide, hvorfor du deaktiverer:"
404
-
405
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:144
406
- msgid ""
407
- "We do not collect any personal data when you submit this form. It's your "
408
- "feedback that we value."
409
- msgstr ""
410
- "Vi indsamler ingen personlige data, når du sender denne formular. Det er din "
411
- "feedback, som vi værdsætter."
412
-
413
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:145
414
- msgid "Privacy Policy"
415
- msgstr "Privatlivspolitik"
416
-
417
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:152
418
- msgid "Go to support"
419
- msgstr "Gå til support"
420
-
421
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:153
422
- msgid "Submit & Deactivate"
423
- msgstr "Indsend & Deaktiver"
424
-
425
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:155
426
- msgid "I rather wouldn't say"
427
- msgstr "Det ønsker jeg ikke at fortælle"
428
-
429
- #: admin/partials/cookie-law-info-admin_settings.php:25
430
- #: admin/views/admin_necessary_cookie.php:20
431
- #: admin/views/admin_non_necessary_cookie.php:17
432
- msgid "Settings updated."
433
- msgstr "Indstillinger opdateret."
434
-
435
- #: admin/partials/cookie-law-info-admin_settings.php:26
436
- #: admin/views/admin_necessary_cookie.php:21
437
- #: admin/views/admin_non_necessary_cookie.php:18
438
- msgid "Unable to update Settings."
439
- msgstr "Der kan ikke opdatere indstillinger."
440
-
441
- #: admin/partials/cookie-law-info-admin_settings.php:27
442
- msgid "Settings reset to defaults."
443
- msgstr "Indstillinger er nulstillet."
444
-
445
- #: admin/partials/cookie-law-info-admin_settings.php:28
446
- msgid "Unable to reset settings."
447
- msgstr "Indstillinger kan ikke nulstilles."
448
-
449
- #: admin/partials/cookie-law-info-admin_settings.php:39
450
- msgid "Cookie bar is currently active"
451
- msgstr "Cookie bar er i øjeblikket aktiv"
452
-
453
- #: admin/partials/cookie-law-info-admin_settings.php:47
454
- msgid "Cookie bar is currently inactive"
455
- msgstr "Cookie bar er i øjeblikket inaktiv"
456
-
457
- #: admin/partials/cookie-law-info-admin_settings.php:57
458
- #: admin/views/admin-settings-general.php:9
459
- msgid "General"
460
- msgstr "Generelle"
461
-
462
- #: admin/partials/cookie-law-info-admin_settings.php:58
463
- msgid "Customise Cookie Bar"
464
- msgstr "Tilpas Cookie Bar"
465
-
466
- #: admin/partials/cookie-law-info-admin_settings.php:59
467
- msgid "Customise Buttons"
468
- msgstr "Tilpas knapper"
469
-
470
- #: admin/partials/cookie-law-info-admin_settings.php:60
471
- #: admin/views/admin-settings-advanced.php:8
472
- msgid "Advanced"
473
- msgstr "Avanceret"
474
-
475
- #: admin/partials/cookie-law-info-admin_settings.php:61
476
- msgid "Help Guide"
477
- msgstr "Vejledning"
478
-
479
- #: admin/partials/cookie-law-info-privacy_overview.php:32
480
- msgid "Privacy Overview Title"
481
- msgstr "Beskyttelse af personlige oplysninger Titel"
482
-
483
- #: admin/partials/cookie-law-info-privacy_overview.php:38
484
- #: admin/partials/cookie-law-info-privacy_overview.php:53
485
- msgid "This will be shown in the settings visible for user on consent screen."
486
- msgstr ""
487
- "Dette vil blive vist i indstillingerne, som er synlige for brugeren på "
488
- "samtykkebilledet."
489
-
490
- #: admin/partials/cookie-law-info-privacy_overview.php:61
491
- msgid "Save Settings"
492
- msgstr "Gem indstillinger"
493
-
494
- #: admin/views/admin-settings-advanced.php:9
495
- msgid ""
496
- "Sometimes themes apply settings that clash with plugins. If that happens, "
497
- "try adjusting these settings."
498
- msgstr ""
499
- "Undertiden anvender temaer indstillinger, der kolliderer med plugins. Hvis "
500
- "dette sker, kan du prøve at justere disse indstillinger."
501
-
502
- #: admin/views/admin-settings-advanced.php:13
503
- msgid "Reset all values"
504
- msgstr "Nulstil alle værdier"
505
-
506
- #: admin/views/admin-settings-advanced.php:15
507
- msgid "Delete settings and reset"
508
- msgstr "Slet indstillinger og nulstil"
509
-
510
- #: admin/views/admin-settings-advanced.php:15
511
- msgid "Are you sure you want to delete all your settings?"
512
- msgstr "Er du sikker på, at du vil slette alle dine indstillinger?"
513
-
514
- #: admin/views/admin-settings-advanced.php:16
515
- msgid "Warning: this will actually delete your current settings."
516
- msgstr "Advarsel: Dette vil slette alle dine nuværende indstillinger."
517
-
518
- #: admin/views/admin-settings-buttons.php:10
519
- msgid "Accept Button"
520
- msgstr "Tillad knap"
521
-
522
- #: admin/views/admin-settings-buttons.php:11
523
- #: admin/views/admin-settings-buttons.php:93
524
- msgid "Reject Button"
525
- msgstr "Afvis knap"
526
-
527
- #: admin/views/admin-settings-buttons.php:12
528
- #: admin/views/admin-settings-buttons.php:163
529
- msgid "Settings Button"
530
- msgstr "Indstillinger knap"
531
-
532
- #: admin/views/admin-settings-buttons.php:13
533
- #: admin/views/admin-settings-buttons.php:206
534
- msgid "Read More Link"
535
- msgstr "Læs-mere link"
536
-
537
- #: admin/views/admin-settings-buttons.php:14
538
- #: admin/views/admin-settings-buttons.php:326
539
- msgid "Do not sell link"
540
- msgstr "Sælg ikke link"
541
-
542
- #: admin/views/admin-settings-buttons.php:20
543
- msgid "Main Button"
544
- msgstr "Vigtigste knap"
545
-
546
- #: admin/views/admin-settings-buttons.php:21
547
- msgid ""
548
- "This button/link can be customised to either simply close the cookie bar, or "
549
- "follow a link. You can also customise the colours and styles, and show it as "
550
- "a link or a button."
551
- msgstr ""
552
- "Denne knap/link kan tilpasses til enten at lukke Cookie Bar, eller at følge "
553
- "et link. Du kan også tilpasse farver og typografi, og vise det som et "
554
- "hyperlink eller en knap."
555
-
556
- #: admin/views/admin-settings-buttons.php:24
557
- #: admin/views/admin-settings-buttons.php:96
558
- #: admin/views/admin-settings-buttons.php:166
559
- #: admin/views/admin-settings-buttons.php:220
560
- msgid "Text"
561
- msgstr "Tekst"
562
-
563
- #: admin/views/admin-settings-buttons.php:30
564
- #: admin/views/admin-settings-buttons.php:102
565
- #: admin/views/admin-settings-buttons.php:172
566
- #: admin/views/admin-settings-buttons.php:226
567
- #: admin/views/admin-settings-buttons.php:346
568
- msgid "Text colour"
569
- msgstr "Tekstfarve"
570
-
571
- #: admin/views/admin-settings-buttons.php:38
572
- #: admin/views/admin-settings-buttons.php:110
573
- #: admin/views/admin-settings-buttons.php:180
574
- #: admin/views/admin-settings-buttons.php:234
575
- #: admin/views/admin-settings-buttons.php:335
576
- msgid "Show as"
577
- msgstr "Vis som"
578
-
579
- #: admin/views/admin-settings-buttons.php:40
580
- #: admin/views/admin-settings-buttons.php:112
581
- #: admin/views/admin-settings-buttons.php:182
582
- #: admin/views/admin-settings-buttons.php:236
583
- msgid "Button"
584
- msgstr "Knap"
585
-
586
- #: admin/views/admin-settings-buttons.php:42
587
- #: admin/views/admin-settings-buttons.php:114
588
- #: admin/views/admin-settings-buttons.php:184
589
- #: admin/views/admin-settings-buttons.php:238
590
- #: admin/views/admin-settings-buttons.php:337
591
- msgid "Link"
592
- msgstr "Link"
593
-
594
- #: admin/views/admin-settings-buttons.php:46
595
- #: admin/views/admin-settings-buttons.php:118
596
- #: admin/views/admin-settings-buttons.php:188
597
- #: admin/views/admin-settings-buttons.php:242
598
- msgid "Background colour"
599
- msgstr "Baggrundsfarve"
600
-
601
- #: admin/views/admin-settings-buttons.php:55
602
- #: admin/views/admin-settings-buttons.php:126
603
- msgid "Action"
604
- msgstr "Handling"
605
-
606
- #: admin/views/admin-settings-buttons.php:63
607
- #: admin/views/admin-settings-buttons.php:138
608
- #: admin/views/admin-settings-buttons.php:253
609
- #: admin/views/admin-settings-buttons.php:260
610
- msgid "URL"
611
- msgstr "URL"
612
-
613
- #: admin/views/admin-settings-buttons.php:66
614
- #: admin/views/admin-settings-buttons.php:141
615
- msgid "Button will only link to URL if Action = Open URL"
616
- msgstr "Knappen vil kun linke til URL, hvis Handling = Åben URL"
617
-
618
- #: admin/views/admin-settings-buttons.php:71
619
- #: admin/views/admin-settings-buttons.php:146
620
- msgid "Open URL in new window?"
621
- msgstr "Åbn i nyt vindue?"
622
-
623
- #: admin/views/admin-settings-buttons.php:73
624
- #: admin/views/admin-settings-buttons.php:148
625
- #: admin/views/admin-settings-buttons.php:304
626
- #: admin/views/admin-settings-buttons.php:311
627
- #: admin/views/admin-settings-general.php:38
628
- #: admin/views/admin-settings-general.php:54
629
- #: admin/views/admin-settings-general.php:74
630
- #: admin/views/admin-settings-general.php:82
631
- #: admin/views/admin-settings-general.php:89
632
- #: admin/views/admin-settings-messagebar.php:86
633
- #: admin/views/admin-settings-messagebar.php:110
634
- #: admin/views/admin_non_necessary_cookie.php:32
635
- msgid "Yes"
636
- msgstr "Ja"
637
-
638
- #: admin/views/admin-settings-buttons.php:75
639
- #: admin/views/admin-settings-buttons.php:149
640
- #: admin/views/admin-settings-buttons.php:305
641
- #: admin/views/admin-settings-buttons.php:312
642
- #: admin/views/admin-settings-general.php:39
643
- #: admin/views/admin-settings-general.php:55
644
- #: admin/views/admin-settings-general.php:75
645
- #: admin/views/admin-settings-general.php:83
646
- #: admin/views/admin-settings-general.php:90
647
- #: admin/views/admin-settings-messagebar.php:87
648
- #: admin/views/admin-settings-messagebar.php:111
649
- #: admin/views/admin_non_necessary_cookie.php:33
650
- #: public/modules/script-blocker/views/settings.php:139
651
- msgid "No"
652
- msgstr "Nej"
653
-
654
- #: admin/views/admin-settings-buttons.php:82
655
- #: admin/views/admin-settings-buttons.php:153
656
- #: admin/views/admin-settings-buttons.php:196
657
- #: admin/views/admin-settings-buttons.php:316
658
- msgid "Size"
659
- msgstr "Størrelse"
660
-
661
- #: admin/views/admin-settings-buttons.php:207
662
- msgid ""
663
- "This button/link can be used to provide a link out to your Privacy & Cookie "
664
- "Policy. You can customise it any way you like."
665
- msgstr ""
666
- "Denne knap/link kan bruges til at linke til dit Privatlivs- og "
667
- "Cookiepolitik. Du kan tilpasse det præcist som du har lyst."
668
-
669
- #: admin/views/admin-settings-buttons.php:212
670
- msgid "Click"
671
- msgstr "Klik"
672
-
673
- #: admin/views/admin-settings-buttons.php:212
674
- msgid "here"
675
- msgstr "her"
676
-
677
- #: admin/views/admin-settings-buttons.php:212
678
- msgid " to generate content for Cookie Policy page."
679
- msgstr " at generere indhold for cookiepolitik side."
680
-
681
- #: admin/views/admin-settings-buttons.php:251
682
- msgid "URL or Page?"
683
- msgstr "URL eller side?"
684
-
685
- #: admin/views/admin-settings-buttons.php:255
686
- #: admin/views/admin-settings-buttons.php:266
687
- msgid "Page"
688
- msgstr "Side"
689
-
690
- #: admin/views/admin-settings-buttons.php:269
691
- msgid "Select One"
692
- msgstr "Vælg en"
693
-
694
- #: admin/views/admin-settings-buttons.php:294
695
- msgid "The currently selected page does not exist. Please select a new page."
696
- msgstr "Den valgte side eksisterer ikke."
697
-
698
- #: admin/views/admin-settings-buttons.php:302
699
- msgid "Minimize Cookie Bar in this page/URL?"
700
- msgstr "Minimér Cookie Bar på denne side / URL?"
701
-
702
- #: admin/views/admin-settings-buttons.php:309
703
- msgid "Open in new window?"
704
- msgstr "Åbn i et nyt vindue?"
705
-
706
- #: admin/views/admin-settings-buttons.php:329
707
- msgid "CCPA Text"
708
- msgstr "CCPA-tekst"
709
-
710
- #: admin/views/admin-settings-buttons.php:338
711
- msgid "Checkbox"
712
- msgstr "Afkrydsningsfelt"
713
-
714
- #: admin/views/admin-settings-buttons.php:340
715
- msgid "The shortcode will be represented as a link whereever used."
716
- msgstr "Kortkoden repræsenteres som et link, uanset hvor det er brugt."
717
-
718
- #: admin/views/admin-settings-buttons.php:341
719
- msgid ""
720
- "The shortcode will be represented as a checkbox with select option to record "
721
- "consent."
722
- msgstr ""
723
- "Kortkoden repræsenteres som et afkrydsningsfelt med den valgte mulighed for "
724
- "at registrere samtykke."
725
-
726
- #: admin/views/admin-settings-general.php:17
727
- msgid "Enable cookie bar"
728
- msgstr "Aktivér cookie bar"
729
-
730
- #: admin/views/admin-settings-general.php:19
731
- msgid "On"
732
- msgstr "Vist"
733
-
734
- #: admin/views/admin-settings-general.php:20
735
- msgid "Off"
736
- msgstr "Ikke vist"
737
-
738
- #: admin/views/admin-settings-general.php:36
739
- msgid "Auto-hide(Accept) cookie bar after delay?"
740
- msgstr "Vil du automatisk skjule (Accept) Cookie Bar med en forsinkelse?"
741
-
742
- #: admin/views/admin-settings-general.php:43
743
- msgid "Milliseconds until hidden"
744
- msgstr "Millisekunder indtil den bliver skjult"
745
-
746
- #: admin/views/admin-settings-general.php:46
747
- msgid "Specify milliseconds (not seconds)"
748
- msgstr "Angive millisekunder (ikke sekunder)"
749
-
750
- #: admin/views/admin-settings-general.php:46
751
- msgid "seconds"
752
- msgstr "sekunder"
753
-
754
- #: admin/views/admin-settings-general.php:52
755
- msgid "Auto-hide cookie bar if the user scrolls ( Accept on Scroll )?"
756
- msgstr ""
757
- "Vil du automatisk skjule Cookie Bar, hvis brugeren ruller med musen (Tillad "
758
- "med rulning)?"
759
-
760
- #: admin/views/admin-settings-general.php:56
761
- msgid ""
762
- "As per latest GDPR policies it is required to take an explicit consent for "
763
- "the cookies. Use this option with discretion especially if you serve EU"
764
- msgstr ""
765
- "I henhold til det seneste GDPR-regulativ er det nødvendigt at indhente et "
766
- "udtrykkeligt samtykke til brugen af cookies. Brug altid denne mulighed, hvis "
767
- "din side vises i EU"
768
-
769
- #: admin/views/admin-settings-general.php:57
770
- msgid "This option will not work along with `Popup overlay`."
771
- msgstr "Denne indstilling vil ikke kunne bruges med popup overlay."
772
-
773
- #: admin/views/admin-settings-general.php:69
774
- msgid "Reload after \"scroll accept\" event?"
775
- msgstr ""
776
- "Vil du genindlæse siden efter at brugeren har brugt \"tilladelse ved rulning"
777
- "\"?"
778
-
779
- #: admin/views/admin-settings-general.php:80
780
- msgid "Reload after Accept button click"
781
- msgstr "Genindlæs siden efter klik på Tillad knappen"
782
-
783
- #: admin/views/admin-settings-general.php:87
784
- msgid "Reload after Reject button click"
785
- msgstr "Genindlæs siden efter klik på Afvis knappen"
786
-
787
- #: admin/views/admin-settings-help.php:9
788
- msgid "Shortcodes"
789
- msgstr "Kortkoder"
790
-
791
- #: admin/views/admin-settings-help.php:10
792
- #: admin/views/admin-settings-help.php:103
793
- msgid "Help Links"
794
- msgstr "Hjælp links"
795
-
796
- #: admin/views/admin-settings-help.php:16
797
- msgid "Cookie bar shortcodes"
798
- msgstr "Cookie Bar kortkoder"
799
-
800
- #: admin/views/admin-settings-help.php:17
801
- msgid ""
802
- "You can enter the shortcodes in the \"message\" field of the Cookie Law Info "
803
- "bar. They add nicely formatted buttons and/or links into the cookie bar, "
804
- "without you having to add any HTML."
805
- msgstr ""
806
- "Du kan angive kortkoder i beskedfeltet af Cookie Bar. De tilføjer "
807
- "formaterede knapper og/eller links til Cookie Bar, uden at du behøver at "
808
- "bruge HTML koder."
809
-
810
- #: admin/views/admin-settings-help.php:22
811
- msgid "This is the \"main button\" you customise above."
812
- msgstr "Dette er den \"hovedknap\", som du har tilpasset ovenfor."
813
-
814
- #: admin/views/admin-settings-help.php:26
815
- msgid "This is the cookie reject button shortcode."
816
- msgstr "Dette er kortkoden for Afvis knappen."
817
-
818
- #: admin/views/admin-settings-help.php:30
819
- msgid "This is the cookie settings button rendering shortcode."
820
- msgstr "Dette er kortkoden for at generere knappen for cookieindstillinger."
821
-
822
- #: admin/views/admin-settings-help.php:33
823
- msgid "This is the \"read more\" link you customise above."
824
- msgstr "Dette er linket \"Læs mere\", som du har tilpasset ovenfor."
825
-
826
- #: admin/views/admin-settings-help.php:36
827
- msgid "Setup margin for above buttons"
828
- msgstr "Opsætningsmargen for ovennævnte knapper"
829
-
830
- #: admin/views/admin-settings-help.php:65
831
- msgid "Other shortcodes"
832
- msgstr "Andre kortkoder"
833
-
834
- #: admin/views/admin-settings-help.php:66
835
- msgid ""
836
- "These shortcodes can be used in pages and posts on your website. It is not "
837
- "recommended to use these inside the cookie bar itself."
838
- msgstr ""
839
- "Disse kortkoder kan bruges i sider og indlæg på din hjemmeside. Det "
840
- "anbefales ikke at bruge dem inde i selve Cookie Bar."
841
-
842
- #: admin/views/admin-settings-help.php:72
843
- msgid ""
844
- "This prints out a nice table of cookies, in line with the guidance given by "
845
- "the ICO."
846
- msgstr ""
847
- "Denne funktion udskriver en formateret tabel med cookies, i overensstemmelse "
848
- "med retningslinjerne fra ICO."
849
-
850
- #: admin/views/admin-settings-help.php:72
851
- msgid ""
852
- "You need to enter the cookies your website uses via the Cookie Law Info menu "
853
- "in your WordPress dashboard."
854
- msgstr ""
855
- "NB: Du skal først indtaste de cookies, som din hjemmeside bruger via GDPR "
856
- "Cookie Consent menuen i WordPress kontrolpanel."
857
-
858
- #: admin/views/admin-settings-help.php:80
859
- msgid "Styles included"
860
- msgstr "Stil inkluderet"
861
-
862
- #: admin/views/admin-settings-help.php:82
863
- msgid "Columns available"
864
- msgstr "Kolonner tilgængelige"
865
-
866
- #: admin/views/admin-settings-help.php:82
867
- msgid "Will print all columns by default."
868
- msgstr "Vil udskrive alle kolonner som standard."
869
-
870
- #: admin/views/admin-settings-help.php:86
871
- msgid ""
872
- "This shortcode will display a normal HTML link which when clicked, will "
873
- "delete the cookie set by Cookie Law Info (this cookie is used to remember "
874
- "that the cookie bar is closed)."
875
- msgstr ""
876
- "Denne kortkode viser et normalt HTML link, som vil slette cookies der er sat "
877
- "af GDPR Cookie Consent (denne cookie bruges til at huske, at Cookie Bar er "
878
- "lukket)."
879
-
880
- #: admin/views/admin-settings-help.php:90
881
- msgid ""
882
- "Add any text you like- useful if you want e.g. another language to English."
883
- msgstr ""
884
- "Tilføj din egen tekst; nyttigt hvis du vil fx vil bruge et andet sprog."
885
-
886
- #: admin/views/admin-settings-help.php:94
887
- msgid "Add content after accepting the cookie notice."
888
- msgstr "Tilføj indhold efter at have accepteret cookiemeddelelsen."
889
-
890
- #: admin/views/admin-settings-help.php:107
891
- #: admin/views/admin-settings-help.php:110 admin/views/goto-pro.php:103
892
- msgid "Documentation"
893
- msgstr "Dokumentation"
894
-
895
- #: admin/views/admin-settings-help.php:108
896
- msgid "Refer to our documentation to set and get started"
897
- msgstr "Vi henviser til vores dokumentation for at komme i gang"
898
-
899
- #: admin/views/admin-settings-help.php:115
900
- msgid "Help and Support"
901
- msgstr "Hjælp og Support"
902
-
903
- #: admin/views/admin-settings-help.php:116
904
- msgid "We would love to help you on any queries or issues."
905
- msgstr "Vi hjælper gerne med spørgsmål og problemer."
906
-
907
- #: admin/views/admin-settings-help.php:118
908
- msgid "Contact Us"
909
- msgstr "Kontakt os"
910
-
911
- #: admin/views/admin-settings-messagebar.php:9
912
- msgid "Cookie bar"
913
- msgstr "Cookie bar"
914
-
915
- #: admin/views/admin-settings-messagebar.php:10
916
- #: admin/views/admin-settings-messagebar.php:145
917
- msgid "Revisit consent"
918
- msgstr "Gå igen samtykke"
919
-
920
- #: admin/views/admin-settings-messagebar.php:15
921
- msgid "Cookie Bar"
922
- msgstr "Cookie Bar"
923
-
924
- #: admin/views/admin-settings-messagebar.php:18
925
- msgid "Message Heading"
926
- msgstr "Meddelelse overskrift"
927
-
928
- #: admin/views/admin-settings-messagebar.php:21
929
- msgid "Leave it blank, If you do not need a heading"
930
- msgstr "Efterlad den tom, hvis du ikke vil bruge en overskrift"
931
-
932
- #: admin/views/admin-settings-messagebar.php:26
933
- msgid "Message"
934
- msgstr "Meddelelse"
935
-
936
- #: admin/views/admin-settings-messagebar.php:32
937
- msgid "Shortcodes allowed: see the Help Guide tab"
938
- msgstr "Tilladte shortcodes: Se fanen Hjælpeguide"
939
-
940
- #: admin/views/admin-settings-messagebar.php:32
941
- msgid ""
942
- "Examples: \"We use cookies on this website [cookie_accept] to find out how "
943
- "to delete cookies [cookie_link].\""
944
- msgstr ""
945
- "Eksempler: \"Vi bruger cookies på dette websted [cookie_accept] til at finde "
946
- "ud af, hvordan vi kan slette cookies [cookie_link].\""
947
-
948
- #: admin/views/admin-settings-messagebar.php:36
949
- msgid "Cookie Bar Colour"
950
- msgstr "Cookie Bar farve"
951
-
952
- #: admin/views/admin-settings-messagebar.php:46
953
- msgid "Text Colour"
954
- msgstr "Tekstfarve"
955
-
956
- #: admin/views/admin-settings-messagebar.php:55
957
- msgid "Font"
958
- msgstr "Skrift"
959
-
960
- #: admin/views/admin-settings-messagebar.php:63
961
- msgid "Show cookie bar as"
962
- msgstr "Vis cookie bar som"
963
-
964
- #: admin/views/admin-settings-messagebar.php:68
965
- msgid "Banner"
966
- msgstr "Banner"
967
-
968
- #: admin/views/admin-settings-messagebar.php:69
969
- msgid "Popup"
970
- msgstr "Popup"
971
-
972
- #: admin/views/admin-settings-messagebar.php:70
973
- msgid "Widget"
974
- msgstr "Widget"
975
-
976
- #: admin/views/admin-settings-messagebar.php:74
977
- msgid "Position"
978
- msgstr "Position"
979
-
980
- #: admin/views/admin-settings-messagebar.php:84
981
- msgid "Add overlay?"
982
- msgstr "Tilføj et overlay?"
983
-
984
- #: admin/views/admin-settings-messagebar.php:88
985
- msgid ""
986
- "When the popup is active, an overlay will block the user from browsing the "
987
- "site."
988
- msgstr ""
989
- "Når popup er aktiveret, vil et overlay forhindre brugeren i at se denne side."
990
-
991
- #: admin/views/admin-settings-messagebar.php:89
992
- msgid "`Accept on scroll` will not work along with this option."
993
- msgstr "\"Tillad ved rulning\" vil ikke kunne bruges med denne indstilling."
994
-
995
- #: admin/views/admin-settings-messagebar.php:93
996
- msgid "Position:"
997
- msgstr "Position:"
998
-
999
- #: admin/views/admin-settings-messagebar.php:98
1000
- msgid "Header"
1001
- msgstr "Header"
1002
-
1003
- #: admin/views/admin-settings-messagebar.php:99
1004
- msgid "Footer"
1005
- msgstr "Footer"
1006
-
1007
- #: admin/views/admin-settings-messagebar.php:108
1008
- msgid "Fix Cookie Bar to Header?"
1009
- msgstr "Fastgør Cookie Bar til Header?"
1010
-
1011
- #: admin/views/admin-settings-messagebar.php:112
1012
- msgid ""
1013
- "If you select \"Header\" then you can optionally stick the cookie bar to the "
1014
- "header. Will not have any effect if you select \"Footer\"."
1015
- msgstr ""
1016
- "Hvis du vælger \"Header\" kan du vælge at fastgøre Cookie bar til din "
1017
- "Header. Denne indstilling vil ikke have nogen virkning, hvis du har valgt "
1018
- "Footer."
1019
-
1020
- #: admin/views/admin-settings-messagebar.php:120
1021
- msgid "On load"
1022
- msgstr "Ved indlæsning"
1023
-
1024
- #: admin/views/admin-settings-messagebar.php:125
1025
- #: admin/views/admin-settings-messagebar.php:135
1026
- msgid "Animate"
1027
- msgstr "Animér"
1028
-
1029
- #: admin/views/admin-settings-messagebar.php:126
1030
- #: admin/views/admin-settings-messagebar.php:136
1031
- msgid "Sticky"
1032
- msgstr "Fastgjort"
1033
-
1034
- #: admin/views/admin-settings-messagebar.php:130
1035
- msgid "On hide"
1036
- msgstr "Ved gem"
1037
-
1038
- #: admin/views/admin-settings-messagebar.php:145
1039
- msgid "previously"
1040
- msgstr "tidligere"
1041
-
1042
- #: admin/views/admin-settings-messagebar.php:145
1043
- msgid "Show again tab"
1044
- msgstr "Vis fanen igen"
1045
-
1046
- #: admin/views/admin-settings-messagebar.php:147
1047
- msgid ""
1048
- "Revisit consent will allow the visitors to view/edit/revoke their prior "
1049
- "preferences. This can be done via a widget and/or a shortcode. A small "
1050
- "privacy widget is automatically displayed at the footer of your website if "
1051
- "the widget option is enabled. You can also manually insert a link to manage "
1052
- "consent by adding the shortcode <b>[wt_cli_manage_consent]</b> to your "
1053
- "website."
1054
- msgstr ""
1055
- "Genbesøg vil give besøgende mulighed for at se / redigere / tilbagekalde "
1056
- "deres tidligere præferencer. Dette kan gøres via en widget og / eller en "
1057
- "kort kode. En lille privatlivswidget vises automatisk i sidefoden på dit "
1058
- "websted, hvis widgetindstillingen er aktiveret. Du kan også manuelt indsætte "
1059
- "et link for at administrere samtykke ved at tilføje kortkoden "
1060
- "<b>[wt_cli_manage_consent]</b> til dit websted."
1061
-
1062
- #: admin/views/admin-settings-messagebar.php:152
1063
- msgid "Enable revisit consent widget"
1064
- msgstr "Aktivér widget om godkendelse igen"
1065
-
1066
- #: admin/views/admin-settings-messagebar.php:152
1067
- msgid ""
1068
- "By enabling this option a small privacy widget is automatically displayed at "
1069
- "the footer of your website."
1070
- msgstr ""
1071
- "Ved at aktivere denne mulighed vises en lille fortrolighedswidget automatisk "
1072
- "nederst på dit websted."
1073
-
1074
- #: admin/views/admin-settings-messagebar.php:163
1075
- #: admin/views/admin-settings-messagebar.php:180
1076
- msgid "Tab Position"
1077
- msgstr "Fanens position"
1078
-
1079
- #: admin/views/admin-settings-messagebar.php:168
1080
- #: admin/views/admin-settings-messagebar.php:171
1081
- msgid "Right"
1082
- msgstr "Højre"
1083
-
1084
- #: admin/views/admin-settings-messagebar.php:169
1085
- #: admin/views/admin-settings-messagebar.php:172
1086
- msgid "Left"
1087
- msgstr "Venstre"
1088
-
1089
- #: admin/views/admin-settings-messagebar.php:187
1090
- msgid "Bottom Right"
1091
- msgstr "Nederst til højre"
1092
-
1093
- #: admin/views/admin-settings-messagebar.php:190
1094
- msgid "Bottom Left"
1095
- msgstr "Nederst til venstre"
1096
-
1097
- #: admin/views/admin-settings-messagebar.php:193
1098
- msgid "Top Right"
1099
- msgstr "Øverst til højre"
1100
-
1101
- #: admin/views/admin-settings-messagebar.php:196
1102
- msgid "Top Left"
1103
- msgstr "Øverst til venstre"
1104
-
1105
- #: admin/views/admin-settings-messagebar.php:203
1106
- msgid "From Right Margin"
1107
- msgstr "Fra højre margen"
1108
-
1109
- #: admin/views/admin-settings-messagebar.php:203
1110
- msgid "From Left Margin"
1111
- msgstr "Fra venstre margin"
1112
-
1113
- #: admin/views/admin-settings-messagebar.php:206
1114
- msgid "Specify"
1115
- msgstr "Specificér"
1116
-
1117
- #: admin/views/admin-settings-messagebar.php:215
1118
- #: admin/views/admin_necessary_cookie.php:33
1119
- #: admin/views/admin_non_necessary_cookie.php:48
1120
- msgid "Title"
1121
- msgstr "Titel"
1122
-
1123
- #: admin/views/admin-settings-save-button.php:12
1124
- #: admin/views/admin_necessary_cookie.php:52
1125
- #: admin/views/admin_non_necessary_cookie.php:87
1126
- #: public/modules/script-blocker/script-blocker.php:219
1127
- msgid "Update Settings"
1128
- msgstr "Opdatér indstillinger"
1129
-
1130
- #: admin/views/admin_necessary_cookie.php:26
1131
- msgid "Necessary Cookie Settings"
1132
- msgstr "Nødvendige cookieindstillinger"
1133
-
1134
- #: admin/views/admin_non_necessary_cookie.php:23
1135
- msgid "Non-necessary Cookie Settings"
1136
- msgstr "Ikke-nødvendige cookieindstillinger"
1137
-
1138
- #: admin/views/admin_non_necessary_cookie.php:31
1139
- msgid "Enable Non-necessary Cookie"
1140
- msgstr "Aktivér ikke-nødvendigt cookie"
1141
-
1142
- #: admin/views/admin_non_necessary_cookie.php:38
1143
- msgid "Default state"
1144
- msgstr "Standardtilstand"
1145
-
1146
- #: admin/views/admin_non_necessary_cookie.php:39
1147
- #: public/modules/script-blocker/views/settings.php:141
1148
- #: public/views/cookie-law-info_popup_content.php:7
1149
- msgid "Enabled"
1150
- msgstr "Aktiveret"
1151
-
1152
- #: admin/views/admin_non_necessary_cookie.php:40
1153
- #: public/views/cookie-law-info_popup_content.php:8
1154
- msgid "Disabled"
1155
- msgstr "Handicappet"
1156
-
1157
- #: admin/views/admin_non_necessary_cookie.php:42
1158
- msgid ""
1159
- "If you enable this option, the category toggle button will be in the active "
1160
- "state for cookie consent."
1161
- msgstr ""
1162
- "Hvis du aktiverer denne indstilling, er knappen til at skifte kategori i "
1163
- "aktiv tilstand til tilladelse af cookie."
1164
-
1165
- #: admin/views/admin_non_necessary_cookie.php:62
1166
- msgid ""
1167
- "This script will be added to the page HEAD section if the above settings is "
1168
- "enabled and user has give consent."
1169
- msgstr ""
1170
- "Dette script vil blive tilføjet til side HEAD sektionen, hvis ovenstående "
1171
- "indstillinger er aktiveret og brugeren har givet samtykke."
1172
-
1173
- #: admin/views/admin_non_necessary_cookie.php:67
1174
- msgid ""
1175
- "Print scripts in the head tag on the front end if above cookie settings is "
1176
- "enabled and user has given consent."
1177
- msgstr ""
1178
- "Udskriv scripts i hovedetiketten på forsiden, hvis ovennævnte cookie-"
1179
- "indstillinger er aktiveret, og brugeren har givet samtykke."
1180
-
1181
- #: admin/views/admin_non_necessary_cookie.php:74
1182
- msgid ""
1183
- "This script will be added right after the BODY section if the above settings "
1184
- "is enabled and user has given consent."
1185
- msgstr ""
1186
- "Dette script vil blive tilføjet lige efter afsnittet BODY, hvis ovenstående "
1187
- "indstillinger er aktiveret, og brugeren har givet samtykke."
1188
-
1189
- #: admin/views/admin_non_necessary_cookie.php:77
1190
- msgid ""
1191
- "Print scripts before the closing body tag on the front end if above cookie "
1192
- "settings is enabled and user has given consent."
1193
- msgstr ""
1194
- "Udskriv scripts før den afsluttende body tag på den forreste ende, hvis "
1195
- "ovennævnte cookie indstillinger er aktiveret og brugeren har givet samtykke."
1196
-
1197
- #: admin/views/goto-pro.php:56
1198
- msgid "Where did my settings go?"
1199
- msgstr "Hvor er mine indstillinger?"
1200
-
1201
- #: admin/views/goto-pro.php:57
1202
- msgid "Cookie Law Info version 0.9 has been updated and has new settings."
1203
- msgstr ""
1204
- "Cookie GDPR Cookie Consent version 0.9 er blevet opdateret og har nye "
1205
- "indstillinger."
1206
-
1207
- #: admin/views/goto-pro.php:57
1208
- msgid "Your previous settings are safe."
1209
- msgstr "Dine tidligere indstillinger er sikrede."
1210
-
1211
- #: admin/views/goto-pro.php:58
1212
- msgid ""
1213
- "You can either copy over your old settings to this version, or use the new "
1214
- "default values."
1215
- msgstr ""
1216
- "Du kan enten kopiere dine gamle indstillinger over til denne version, eller "
1217
- "bruge de nye standardindstillinger."
1218
-
1219
- #: admin/views/goto-pro.php:60
1220
- msgid "Would you like to:"
1221
- msgstr "Vil du:"
1222
-
1223
- #: admin/views/goto-pro.php:62
1224
- msgid "Use previous settings"
1225
- msgstr "Bruge tidligere indstillinger"
1226
-
1227
- #: admin/views/goto-pro.php:63
1228
- msgid "Start afresh with the new version"
1229
- msgstr "Starte på nye indstillinger med den nye version"
1230
-
1231
- #: admin/views/goto-pro.php:67
1232
- msgid ""
1233
- "If you want to go back to the previous version you can always download it "
1234
- "again from"
1235
- msgstr ""
1236
- "Hvis du ønsker at gå tilbage til den tidligere version, kan du altid hente "
1237
- "den igen fra"
1238
-
1239
- #: admin/views/goto-pro.php:73
1240
- msgid "30 Day Money Back Guarantee"
1241
- msgstr "30 dages penge tilbage garanti"
1242
-
1243
- #: admin/views/goto-pro.php:74
1244
- msgid "Fast and Superior Support"
1245
- msgstr "Hurtig og overlegen support"
1246
-
1247
- #: admin/views/goto-pro.php:75
1248
- msgid "10X Powerful with GDPR Cookie Consent Features That Every Site Needs"
1249
- msgstr ""
1250
- "10X Kraftig med GDPR Cookie-samtykkefunktioner, som ethvert websted har brug "
1251
- "for"
1252
-
1253
- #: admin/views/goto-pro.php:78
1254
- msgid "Upgrade to Premium"
1255
- msgstr "Opgrader til Premium"
1256
-
1257
- #: admin/views/goto-pro.php:84
1258
- msgid "Automatic Cookie Scanner"
1259
- msgstr "Automatisk cookie scanner"
1260
-
1261
- #: admin/views/goto-pro.php:85
1262
- msgid ""
1263
- "Auto block scripts - Google Analytics, Facebook Pixel, Google Tag Manager, "
1264
- "Hotjar Analytics, Google Publisher Tag, Youtube embed, Vimeo embed, Google "
1265
- "maps, Addthis widget, Sharethis widget, Twitter widget, Soundcloud embed, "
1266
- "Slideshare embed, Linkedin widget, Instagram embed, Pinterest widget"
1267
- msgstr ""
1268
- "Automatisk blokering af scripts - Google Analytics, Facebook Pixel, Google "
1269
- "Tag Manager, Hotjar Analytics, Google Publisher Tag, Youtube embed, Vimeo "
1270
- "embed, Google maps, Addthis widget, Sharethis widget, Twitter widget, "
1271
- "Soundcloud embed, Slideshare embed, Linkedin widget, Instagram embed, "
1272
- "Pinterest widget"
1273
-
1274
- #: admin/views/goto-pro.php:86
1275
- msgid "Location based exclusion of cookie notice for EU countries"
1276
- msgstr "Location-based exclusion of cookie banner for EU countries"
1277
-
1278
- #: admin/views/goto-pro.php:87
1279
- msgid "Granular control over the cookies/scipts used by the website"
1280
- msgstr "Granulær kontrol over cookies / scipts brugt af hjemmesiden"
1281
-
1282
- #: admin/views/goto-pro.php:88
1283
- msgid "User consent audit logs"
1284
- msgstr "Brugers samtykke revidere audit log"
1285
-
1286
- #: admin/views/goto-pro.php:89
1287
- msgid "Customized privacy overview"
1288
- msgstr "Brugerdefineret fortrolighedsoversigt"
1289
-
1290
- #: admin/views/goto-pro.php:90
1291
- msgid "Cookie bar preview in admin settings page"
1292
- msgstr "'Cookie bar' forhåndsvisning i admin indstillinger side"
1293
-
1294
- #: admin/views/goto-pro.php:91
1295
- msgid "Advanced support for cache plugins"
1296
- msgstr "Avanceret support til cache-plugins"
1297
-
1298
- #: admin/views/goto-pro.php:92
1299
- msgid "Cookie bar theme customizer for banner/ widgets/ popup"
1300
- msgstr "Cookie bar tema tilpasser til banner / widgets / popup"
1301
-
1302
- #: admin/views/goto-pro.php:93
1303
- msgid "GDPR compliance with Google Tag Manager"
1304
- msgstr "GDPR overholdelse af Google Tag Manager"
1305
-
1306
- #: admin/views/goto-pro.php:94
1307
- msgid "Javascript helper functions"
1308
- msgstr "Javascript hjælper funktioner"
1309
-
1310
- #: admin/views/goto-pro.php:108
1311
- msgid "Like this plugin?"
1312
- msgstr "Kan du lide denne plugin?"
1313
-
1314
- #: admin/views/goto-pro.php:109
1315
- msgid "If you find this plugin useful please show your support and rate it"
1316
- msgstr ""
1317
- "Hvis du finder dette plugin nyttigt, skal du vise din support og bedømme den"
1318
-
1319
- #: admin/views/goto-pro.php:109
1320
- msgid " on"
1321
- msgstr " på"
1322
-
1323
- #: admin/views/goto-pro.php:109
1324
- msgid " much appreciated!"
1325
- msgstr " Meget værdsat!"
1326
-
1327
- #: cookie-law-info.php:80
1328
- msgid ""
1329
- "Please make sure the cache is cleared after each plugin update especially if "
1330
- "you have minified JS and/or CSS files."
1331
- msgstr ""
1332
- "Sørg for, at cachen er ryddet efter hver pluginopdatering, især hvis du har "
1333
- "minificeret JS og / eller CSS filer."
1334
-
1335
- #: includes/class-cookie-law-info-review_request.php:52
1336
- #, php-format
1337
- msgid ""
1338
- "Hey, we at %sWebToffee%s would like to thank you for using our plugin. We "
1339
- "would really appreciate if you could take a moment to drop a quick review "
1340
- "that will inspire us to keep going."
1341
- msgstr ""
1342
- "Hej, vi på %sWebToffee% s vil gerne takke dig for at bruge vores plugin. Vi "
1343
- "ville virkelig sætte pris på, hvis du kunne tage et øjeblik på at give en "
1344
- "hurtig gennemgang, der vil inspirere os til at fortsætte."
1345
-
1346
- #: includes/class-cookie-law-info-review_request.php:55
1347
- msgid "Remind me later"
1348
- msgstr "Påmind mig senere"
1349
-
1350
- #: includes/class-cookie-law-info-review_request.php:56
1351
- msgid "Not interested"
1352
- msgstr "Ikke interesseret"
1353
-
1354
- #: includes/class-cookie-law-info-review_request.php:57
1355
- msgid "Review now"
1356
- msgstr "Anmeld nu"
1357
-
1358
- #: public/class-cookie-law-info-public.php:251
1359
- msgid "GDPR Cookie Consent"
1360
- msgstr "GDPR Cookie Consent"
1361
-
1362
- #: public/class-cookie-law-info-public.php:252
1363
- msgid "Cookie List"
1364
- msgstr "Cookie liste"
1365
-
1366
- #: public/class-cookie-law-info-public.php:253
1367
- #: public/modules/shortcode/shortcode.php:208
1368
- msgid "Cookie"
1369
- msgstr "Cookie"
1370
-
1371
- #: public/class-cookie-law-info-public.php:254
1372
- msgid "Add New"
1373
- msgstr "Tilføj ny"
1374
-
1375
- #: public/class-cookie-law-info-public.php:255
1376
- msgid "Add New Cookie Type"
1377
- msgstr "Tilføje nye cookie type"
1378
-
1379
- #: public/class-cookie-law-info-public.php:256
1380
- msgid "Edit Cookie Type"
1381
- msgstr "Rediger cookie type"
1382
-
1383
- #: public/class-cookie-law-info-public.php:257
1384
- msgid "New Cookie Type"
1385
- msgstr "Ny cookie type"
1386
-
1387
- #: public/class-cookie-law-info-public.php:258
1388
- msgid "View Cookie Type"
1389
- msgstr "Se cookie type"
1390
-
1391
- #: public/class-cookie-law-info-public.php:259
1392
- msgid "Search Cookies"
1393
- msgstr "Søg i cookies"
1394
-
1395
- #: public/class-cookie-law-info-public.php:260
1396
- msgid "Nothing found"
1397
- msgstr "Intet fundet"
1398
-
1399
- #: public/class-cookie-law-info-public.php:261
1400
- msgid "Nothing found in Trash"
1401
- msgstr "Intet fundet i papirkurven"
1402
-
1403
- #: public/modules/script-blocker/script-blocker.php:156
1404
- #: public/modules/script-blocker/script-blocker.php:157
1405
- msgid "Script Blocker"
1406
- msgstr "Script blocker"
1407
-
1408
- #: public/modules/script-blocker/script-blocker.php:182
1409
- msgid "Status updated"
1410
- msgstr "Status opdateret"
1411
-
1412
- #: public/modules/script-blocker/script-blocker.php:206
1413
- msgid "Advanced script rendering"
1414
- msgstr "Avanceret gengivelse af script"
1415
-
1416
- #: public/modules/script-blocker/script-blocker.php:208
1417
- #: public/modules/script-blocker/views/settings.php:7
1418
- msgid "Enable"
1419
- msgstr "Aktiver"
1420
-
1421
- #: public/modules/script-blocker/script-blocker.php:209
1422
- #: public/modules/script-blocker/views/settings.php:7
1423
- msgid "Disable"
1424
- msgstr "Deaktiver"
1425
-
1426
- #: public/modules/script-blocker/script-blocker.php:210
1427
- msgid ""
1428
- "Advanced script rendering will render the blocked scripts using javascript "
1429
- "thus eliminating the need for a page refresh. It is also optimized for "
1430
- "caching since there is no server-side processing after obtaining the consent."
1431
- msgstr ""
1432
- "Avanceret scriptgengivelse gengiver de blokerede scripts ved hjælp af "
1433
- "javascript, hvilket eliminerer behovet for en sideopdatering. Det er også "
1434
- "optimeret til cache, da der ikke er nogen server-side behandling efter "
1435
- "indhentning af samtykke."
1436
-
1437
- #: public/modules/script-blocker/views/settings.php:9
1438
- msgid "Script blocker is enabled."
1439
- msgstr "Scriptblokering er aktiveret."
1440
-
1441
- #: public/modules/script-blocker/views/settings.php:9
1442
- msgid ""
1443
- "Script blocker is currently disabled. Enable the blocker if you want any of "
1444
- "the below listed plugins to be auto blocked."
1445
- msgstr ""
1446
- "Scriptblokering er i øjeblikket deaktiveret. Aktivér blokeringen, hvis du "
1447
- "vil have, at et af nedenstående plugins automatisk blokeres."
1448
-
1449
- #: public/modules/script-blocker/views/settings.php:10
1450
- #, php-format
1451
- msgid "<a href=\"javascript: submitform()\">%s</a>"
1452
- msgstr "<a href=\"javascript: submitform()\">%s</a>"
1453
-
1454
- #: public/modules/script-blocker/views/settings.php:14
1455
- #, php-format
1456
- msgid ""
1457
- "Advanced script rendering is currently disabled. It should be enabled for "
1458
- "the automatic script blocker to function. <a href=\"%s\">Enable.</a>"
1459
- msgstr ""
1460
- "Avanceret gengivelse af script er i øjeblikket deaktiveret. Det skal være "
1461
- "aktiveret for, at den automatiske scriptblokker fungerer. <a href=\"%s"
1462
- "\">Aktiver.</a>"
1463
-
1464
- #: public/modules/script-blocker/views/settings.php:113
1465
- msgid "Manage Script Blocking"
1466
- msgstr "Administrere script blokering"
1467
-
1468
- #: public/modules/script-blocker/views/settings.php:134
1469
- #, php-format
1470
- msgid ""
1471
- "Below is the list of plugins currently supported for auto blocking. Plugins "
1472
- "marked inactive are either not installed or activated on your website. "
1473
- "Enabled plugins will be blocked by default on the front-end of your website "
1474
- "prior to obtaining user consent and rendered respectively based on consent. "
1475
- "<a href=\"%s\" target=\"_blank\">Read more.</a>"
1476
- msgstr ""
1477
- "Nedenfor er listen over plugins, der i øjeblikket understøttes til "
1478
- "automatisk blokering. Plugins markeret som inaktive er enten ikke "
1479
- "installeret eller aktiveret på dit websted. Aktiverede plugins blokeres som "
1480
- "standard på front-enden af dit websted, før du opnår brugertilladelse og "
1481
- "gengives henholdsvis baseret på samtykke. <a href=\"%s\" target=\"_blank"
1482
- "\">Læs mere.</a>"
1483
-
1484
- #: public/modules/script-blocker/views/settings.php:140
1485
- msgid "Name"
1486
- msgstr "Navn"
1487
-
1488
- #: public/modules/script-blocker/views/settings.php:141
1489
- msgid ""
1490
- "Enabled: Plugins will be blocked by default prior to obtaining user consent."
1491
- msgstr ""
1492
- "Aktiveret: Plugins blokeres som standard, før brugernes samtykke opnås."
1493
-
1494
- #: public/modules/script-blocker/views/settings.php:141
1495
- msgid "Disabled: Plugins will be rendered prior to obtaining consent."
1496
- msgstr "Deaktiveret: Plugins gengives inden indhentning af samtykke."
1497
-
1498
- #: public/modules/script-blocker/views/settings.php:175
1499
- msgid "Inactive"
1500
- msgstr "Inaktiv"
1501
-
1502
- #: public/modules/shortcode/shortcode.php:99
1503
- msgid "Your current state:"
1504
- msgstr "Din nuværende tilstand:"
1505
-
1506
- #: public/modules/shortcode/shortcode.php:104
1507
- msgid "Consent accepted."
1508
- msgstr "Samtykke accepteret."
1509
-
1510
- #: public/modules/shortcode/shortcode.php:107
1511
- msgid "Consent rejected."
1512
- msgstr "Samtykke afvist."
1513
-
1514
- #: public/modules/shortcode/shortcode.php:111
1515
- msgid "No consent given."
1516
- msgstr "Ingen tilladelse givet."
1517
-
1518
- #: public/modules/shortcode/shortcode.php:113
1519
- msgid "Manage your consent."
1520
- msgstr "Administrer dit samtykke."
1521
-
1522
- #: public/modules/shortcode/shortcode.php:150
1523
- msgid "Delete Cookies"
1524
- msgstr "Slet cookies fra"
1525
-
1526
- #: public/modules/shortcode/shortcode.php:186
1527
- msgid "No records found"
1528
- msgstr "Ingen resultater fundet"
1529
-
1530
- #: public/modules/shortcode/shortcode.php:212
1531
- msgid "Type"
1532
- msgstr "Type"
1533
-
1534
- #: public/modules/shortcode/shortcode.php:216
1535
- msgid "Duration"
1536
- msgstr "Varighed"
1537
-
1538
- #: public/modules/shortcode/shortcode.php:533
1539
- msgid "Close the cookie bar"
1540
- msgstr "Luk cookie-baren"
1541
-
1542
- #: public/modules/shortcode/shortcode.php:533
1543
- msgid "Close and Accept"
1544
- msgstr "Luk og accepter"
1545
-
1546
- #: public/views/cookie-law-info_bar.php:23
1547
- msgid "Close"
1548
- msgstr "Luk"
1549
-
1550
- #: public/views/cookie-law-info_popup_content.php:6
1551
- msgid "Always Enabled"
1552
- msgstr "Altid aktiveret"
1553
-
1554
- #: public/views/cookie-law-info_popup_content.php:9
1555
- msgid "Show more"
1556
- msgstr "Vis mere"
1557
-
1558
- #: public/views/cookie-law-info_popup_content.php:9
1559
- msgid "Show less"
1560
- msgstr "Vis mindre"
1561
-
1562
- #~ msgid ""
1563
- #~ "Which plugin are you using for language translation? Could you tell us a "
1564
- #~ "bit more?"
1565
- #~ msgstr ""
1566
- #~ "Hvilket plugin bruger du til sprogoversættelse? Kunne du fortælle os lidt "
1567
- #~ "mere?"
1568
-
1569
- #~ msgid "Caching issues"
1570
- #~ msgstr "Cache-problemer"
1571
-
1572
- #~ msgid "Which caching plugin are you using? Could you tell us a bit more?"
1573
- #~ msgstr "Hvilket caching-plugin bruger du? Kunne du fortælle os lidt mere?"
1574
-
1575
- #~ msgid "Cookie Law Settings"
1576
- #~ msgstr "GDPR Cookie Consent indstillinger"
1577
-
1578
- #~ msgid "Show Again Tab"
1579
- #~ msgstr "Vis igen fane"
1580
-
1581
- #~ msgid "Use Show Again Tab?"
1582
- #~ msgstr "Brug vis igen fanen?"
1583
-
1584
- #~ msgid "Show More Text"
1585
- #~ msgstr "Vis mere tekst"
1586
-
1587
- #~ msgid "Non-necessary Cookie"
1588
- #~ msgstr "Ikke-nødvendigt Cookie"
1589
-
1590
- #~ msgid "Necessary Cookie"
1591
- #~ msgstr "Nødvendig cookie"
1592
-
1593
- #~ msgid "Your Cookie Law Info bar is switched on"
1594
- #~ msgstr "Din Cookie Bar vises"
1595
-
1596
- #~ msgid "Your Cookie Law Info bar is switched off"
1597
- #~ msgstr "Din Cookie Bar vises ikke"
1598
-
1599
- #~ msgid "Cookie Bar will be shown in:"
1600
- #~ msgstr "Cookie Bar vises i:"
1601
-
1602
- #~ msgid "Disappear"
1603
- #~ msgstr "Forsvinde"
1604
-
1605
- #~ msgid "Show Border?"
1606
- #~ msgstr "Vis grænsen?"
1607
-
1608
- #~ msgid "Border Colour"
1609
- #~ msgstr "Rammefarve"
1610
-
1611
- #~ msgid ""
1612
- #~ "If you just want a standard green \"Accept\" button that closes the "
1613
- #~ "header and nothing more, use this shortcode. It is already styled, you "
1614
- #~ "don't need to customise it."
1615
- #~ msgstr ""
1616
- #~ "Hvis du ønsker en standard grøn \"Tillad\" knap, der bare lukker Cookie "
1617
- #~ "Bar, kan du bruge denne kortkode. Det er præ-formateret, så du ikke "
1618
- #~ "behøver at tilpasse den."
1619
-
1620
- #~ msgid ""
1621
- #~ "Alternatively you can add a colour value. Choose from: red, blue, orange, "
1622
- #~ "yellow, green or pink."
1623
- #~ msgstr ""
1624
- #~ "Alternativt kan du tilføje en farve. Vælge imellem: rød, blå, orange, "
1625
- #~ "gul, grøn eller pink."
1626
-
1627
- #~ msgid "Careful to use the British spelling of \"colour\" for the attribute."
1628
- #~ msgstr ""
1629
- #~ "Pas på at bruge den britiske stavning af farve (colour) til attributten."
1630
-
1631
- #~ msgid "Priority: (Numeric - Higher the value, higher the priority)"
1632
- #~ msgstr "Prioritet: (numerisk - jo højere værdi, jo højere prioritet)"
1633
-
1634
- #~ msgid "Priority"
1635
- #~ msgstr "Prioritet"
1636
-
1637
- #~ msgid "Sorry..."
1638
- #~ msgstr "Beklager..."
1639
-
1640
- #~ msgid ""
1641
- #~ "Cookie Scanner API is not available now. Please try again later. <br />Do "
1642
- #~ "you want to report this to developer and get notified?"
1643
- #~ msgstr ""
1644
- #~ "Cookie Scanner API er ikke tilgængelig nu. Prøv igen senere. <br/>Vil du "
1645
- #~ "rapportere dette til udviklerne og blive adviseret?"
1646
-
1647
- #~ msgid "Unable to handle your request"
1648
- #~ msgstr "Din anmodning kan ikke håndteres"
1649
-
1650
- #~ msgid "You do not have sufficient permissions to access this page."
1651
- #~ msgstr "Du har ikke de nødvendige rettigheder til at tilgå denne side."
1652
-
1653
- #~ msgid "cookies added."
1654
- #~ msgstr "cookies tilføjet"
1655
-
1656
- #~ msgid "cookies skipped."
1657
- #~ msgstr "cookies forbigået"
1658
-
1659
- #~ msgid "cookies deleted."
1660
- #~ msgstr "cookies slettet"
1661
-
1662
- #~ msgid "No cookies found"
1663
- #~ msgstr "Ingen cookies fundet"
1664
-
1665
- #~ msgid "Incomplete"
1666
- #~ msgstr "Ufærdig"
1667
-
1668
- #~ msgid "Completed"
1669
- #~ msgstr "Færdig"
1670
-
1671
- #~ msgid "Stopped"
1672
- #~ msgstr "Stoppet"
1673
-
1674
- #~ msgid "Unknown"
1675
- #~ msgstr "Ukendt"
1676
-
1677
- #~ msgid "Cookie Scanner"
1678
- #~ msgstr "Cookie Scanner"
1679
-
1680
- #~ msgid "Scanned"
1681
- #~ msgstr "Skannet"
1682
-
1683
- #~ msgid "Scanning completed."
1684
- #~ msgstr "Skanning fuldført"
1685
-
1686
- #~ msgid "Added to cookie list."
1687
- #~ msgstr "Tilføjet til cookielisten."
1688
-
1689
- #~ msgid "Unable to connect. Retrying..."
1690
- #~ msgstr "Kan ikke forbinde. Prøver igen..."
1691
-
1692
- #~ msgid "Finding pages..."
1693
- #~ msgstr "Finder sider..."
1694
-
1695
- #~ msgid "Scanning pages..."
1696
- #~ msgstr "Skanner sider..."
1697
-
1698
- #~ msgid "Stop"
1699
- #~ msgstr "Stop"
1700
-
1701
- #~ msgid "Scan again"
1702
- #~ msgstr "Skan igen"
1703
-
1704
- #~ msgid "Download cookies as CSV"
1705
- #~ msgstr "Download cookies som CSV"
1706
-
1707
- #~ msgid "Add to cookie list"
1708
- #~ msgstr "Tilføj til cookielisten"
1709
-
1710
- #~ msgid "View scan result"
1711
- #~ msgstr "Se resultat af skanning"
1712
-
1713
- #~ msgid "Import options"
1714
- #~ msgstr "Import indstillinger"
1715
-
1716
- #~ msgid "Replace old"
1717
- #~ msgstr "Erstat den tidligere"
1718
-
1719
- #~ msgid "Merge"
1720
- #~ msgstr "Flet"
1721
-
1722
- #~ msgid "Recommended"
1723
- #~ msgstr "Anbefalet"
1724
-
1725
- #~ msgid "Append"
1726
- #~ msgstr "Tilføj"
1727
-
1728
- #~ msgid "Not recommended"
1729
- #~ msgstr "Ikke anbefalet"
1730
-
1731
- #~ msgid "Start import"
1732
- #~ msgstr "Start import"
1733
-
1734
- #~ msgid "Importing...."
1735
- #~ msgstr "Importerer..."
1736
-
1737
- #~ msgid "Refreshing...."
1738
- #~ msgstr "Genindlæser..."
1739
-
1740
- #~ msgid "Error !!! Please reload the page to see cookie list."
1741
- #~ msgstr "Fejl !!! Genopfrisk siden for at se cookielisten"
1742
-
1743
- #~ msgid "Stopping..."
1744
- #~ msgstr "Stopper..."
1745
-
1746
- #~ msgid "Scanning stopped."
1747
- #~ msgstr "Skanning stoppet"
1748
-
1749
- #~ msgid "Are you sure?"
1750
- #~ msgstr "Er du sikker?"
1751
-
1752
- #~ msgid "Thank you"
1753
- #~ msgstr "Tak"
1754
-
1755
- #~ msgid "Checking API"
1756
- #~ msgstr "Tjekker API"
1757
-
1758
- #~ msgid "Sending..."
1759
- #~ msgstr "Sender..."
1760
-
1761
- #~ msgid "Total URLs scanned"
1762
- #~ msgstr "Antal URL skannet"
1763
-
1764
- #~ msgid "Total Cookies found"
1765
- #~ msgstr "Antal cookies fundet"
1766
-
1767
- #~ msgid "Unable to load cookie scanner."
1768
- #~ msgstr "Kan ikke indæse Cookie Scanner"
1769
-
1770
- #~ msgid "Need `GDPR Cookie Consent` plugin version above 2.1.4"
1771
- #~ msgstr ""
1772
- #~ "Her skal bruges GDPR Cookie Consent plugin version 2.1.4 eller højere"
1773
-
1774
- #~ msgid "Scanning will not work on local server."
1775
- #~ msgstr "Skanning kan ikke udføres på en lokal server"
1776
-
1777
- #~ msgid "Scan cookies"
1778
- #~ msgstr "Skan cookies"
1779
-
1780
- #~ msgid "Please do not leave this page until the progress bar reaches 100%"
1781
- #~ msgstr "Forlad ikke siden før fremdriften har nået 100%"
1782
-
1783
- #~ msgid "Your last scan at"
1784
- #~ msgstr "Din sidste skanning var"
1785
-
1786
- #~ msgid "View result"
1787
- #~ msgstr "Se resultatet"
1788
-
1789
- #~ msgid "You haven't performed a site scan yet."
1790
- #~ msgstr "Du har endnu ikke gennemført en skanning"
1791
-
1792
- #~ msgid "Scan Now"
1793
- #~ msgstr "Start skanning"
1794
-
1795
- #~ msgid "Category"
1796
- #~ msgstr "Kategori"
1797
-
1798
- #~ msgid "Scan result"
1799
- #~ msgstr "Resultat af skanning"
1800
-
1801
- #~ msgid "Summary"
1802
- #~ msgstr "Sammendrag"
1803
-
1804
- #~ msgid "Scan started at"
1805
- #~ msgstr "Skanning startet"
1806
-
1807
- #~ msgid "Scan status"
1808
- #~ msgstr "Skanningstatus"
1809
-
1810
- #~ msgid "Total URLs"
1811
- #~ msgstr "Antal URL"
1812
-
1813
- #~ msgid "Total cookies"
1814
- #~ msgstr "Antal cookies"
1815
-
1816
- #~ msgid "Cookies"
1817
- #~ msgstr "Cookies"
1818
-
1819
- #~ msgid "Cookie Name"
1820
- #~ msgstr "Cookie navn"
1821
-
1822
- #~ msgid "No cookies"
1823
- #~ msgstr "Ingen cookies"
1824
-
1825
- #~ msgid "URLs"
1826
- #~ msgstr "URLs"
1827
-
1828
- #~ msgid "No URLs"
1829
- #~ msgstr "Ingen URL"
1830
-
1831
- #~ msgid "Download as CSV"
1832
- #~ msgstr "Download som CSV"
1833
-
1834
- #~ msgid "Import from CSV"
1835
- #~ msgstr "Importer fra CSV"
1836
-
1837
- #~ msgid "Import Cookie"
1838
- #~ msgstr "Importér Cookie"
1839
-
1840
- #~ msgid "BEGIN %s"
1841
- #~ msgstr "BEGYND%s"
1842
-
1843
- #~ msgid "[Line %1$s] %2$s"
1844
- #~ msgstr "[Linje %1$s] %2$s"
1845
-
1846
- #~ msgid "Import from a CSV file"
1847
- #~ msgstr "Importér en CSV- fil"
1848
-
1849
- #~ msgid ""
1850
- #~ "Notice: please make the directory %s writable so that you can see the "
1851
- #~ "error log."
1852
- #~ msgstr ""
1853
- #~ "Bemærk venligst at mappen %s ikke må være skrivebeskyttet, da du så ikke "
1854
- #~ "kan se fejlloggen."
1855
-
1856
- #~ msgid ", please <a href=\"%s\">check the error log</a>"
1857
- #~ msgstr ", <a href=\"%s\">se i fejlloggen</a>"
1858
-
1859
- #~ msgid "Error during file upload."
1860
- #~ msgstr "Fejl under upload af fil."
1861
-
1862
- #~ msgid "Cannot extract data from uploaded file or no file was uploaded."
1863
- #~ msgstr ""
1864
- #~ "Data kan ikke udtrækkes fra den uploadede fil eller ingen fil blev "
1865
- #~ "uploadet."
1866
-
1867
- #~ msgid "No posts was successfully imported%s."
1868
- #~ msgstr "Ingen poster blev importeret korrekt%s."
1869
-
1870
- #~ msgid "Some posts were successfully imported but some were not%s."
1871
- #~ msgstr "Nogle poster blev importeret korrekt, men nogle blev ikke%s."
1872
-
1873
- #~ msgid "Post import was successful."
1874
- #~ msgstr "Posten blev importeret korrekt."
1875
-
1876
- #~ msgid "CSV file"
1877
- #~ msgstr "CSV fil"
1878
-
1879
- #~ msgid "You may want to see <a href=\"%s\">the example of the CSV file</a>."
1880
- #~ msgstr "Her kan du se <a href=\"%s\">et eksempel på CSV-filen</a>."
1881
-
1882
- #~ msgid "Import"
1883
- #~ msgstr "Importér"
1884
-
1885
- #~ msgid "Show preview"
1886
- #~ msgstr "Vis preview"
1887
-
1888
- #~ msgid "Hide preview"
1889
- #~ msgstr "Gem preview"
1890
-
1891
- #~ msgid "Update background"
1892
- #~ msgstr "Opdater baggrunden"
1893
-
1894
- #~ msgid "Themes"
1895
- #~ msgstr "Temaer"
1896
-
1897
- #~ msgid "Updating theme will overwrite your current styling"
1898
- #~ msgstr "Ved opdatering af temaet overskrives dine nuværende formater"
1899
-
1900
- #~ msgid "Show only for EU Countries ( GeoIP )"
1901
- #~ msgstr "Vises kun for EU lande (GeoIP)"
1902
-
1903
- #~ msgid ""
1904
- #~ "You can use `do_shortcode` function to add shortcodes inside the template "
1905
- #~ "file."
1906
- #~ msgstr ""
1907
- #~ "Hvordan man bruger do_shortcode funktionen til at tilføje kortkoder inde "
1908
- #~ "i en skabelon"
1909
-
1910
- #~ msgid "This is the \"main button\" you can customise."
1911
- #~ msgstr "Dette er \"den vigtigste\" knap, som du kan tilpasse"
1912
-
1913
- #~ msgid "This is the \"read more\" link you can customise."
1914
- #~ msgstr "Dette er \"Læs mere\" linket, som du kan tilpasse."
1915
-
1916
- #~ msgid "This prints out a nice table of cookies by category."
1917
- #~ msgstr ""
1918
- #~ "Denne udskriver en formateret tabel over cookies opdelt efter deres "
1919
- #~ "kategori."
1920
-
1921
- #~ msgid "This prints the settings popup of cookie category."
1922
- #~ msgstr ""
1923
- #~ "Denne udskriver indstillingerne for cookie kategorier i et popup vindue."
1924
-
1925
- #~ msgid "Add any text you like useful if you want to add another language"
1926
- #~ msgstr ""
1927
- #~ "Tilføj en tekst her. Det er praktisk hvis du f.eks. vil tilføje et andet "
1928
- #~ "sprog"
1929
-
1930
- #~ msgid ""
1931
- #~ "Add content after accepting the cookie notice. Category wise checking "
1932
- #~ "allowed"
1933
- #~ msgstr ""
1934
- #~ "Tilføj indhold efter at man har accepteret cookie beskeden. Kan "
1935
- #~ "koordineres med kategorierne"
1936
-
1937
- #~ msgid ""
1938
- #~ "Add content only if the consent has been obtained for the specified "
1939
- #~ "category."
1940
- #~ msgstr ""
1941
- #~ "Tilføj indhold, hvis tilladelse er blevet indhentet for den gældende "
1942
- #~ "kategori"
1943
-
1944
- #~ msgid ""
1945
- #~ "Add content if consent has been obtained for all/or any of the specified "
1946
- #~ "categories."
1947
- #~ msgstr ""
1948
- #~ "Tilføj indhold, hvis tilladelse er blevet indhentet for alle kategorier "
1949
- #~ "eller for den valgte kategori"
1950
-
1951
- #~ msgid "Shortcodes allowed: see the Help guide"
1952
- #~ msgstr "Kortkoder tilladt. Se under Hjælp"
1953
-
1954
- #~ msgid ""
1955
- #~ "The license key for %s has expired. You can reactivate or purchase a "
1956
- #~ "license key from your account <a href=\"%s\" target=\"_blank\">dashboard</"
1957
- #~ "a>."
1958
- #~ msgstr ""
1959
- #~ "Licensnøglen for %s er udløbet. Du kan genaktivere den eller købe en ny "
1960
- #~ "licensnøgle fra din kontos <a href=\"%s\" target=\"_blank\">dashboard</a>."
1961
-
1962
- #~ msgid ""
1963
- #~ "The subscription for %s is on-hold. You can reactivate the subscription "
1964
- #~ "from your account <a href=\"%s\" target=\"_blank\">dashboard</a>."
1965
- #~ msgstr ""
1966
- #~ "Abonnementet for %s er på hold. Du kan genaktivere abonnementet fra din "
1967
- #~ "kontos <a href=\"%s\" target=\"_blank\">dashboard</a>."
1968
-
1969
- #~ msgid ""
1970
- #~ "The subscription for %s has been cancelled. You can renew the "
1971
- #~ "subscription from your account <a href=\"%s\" target=\"_blank"
1972
- #~ "\">dashboard</a>. A new license key will be emailed to you after your "
1973
- #~ "order has been completed."
1974
- #~ msgstr ""
1975
- #~ "Abonnementet for %s er slettet. Du kan forny abonnementet fra din kontos "
1976
- #~ "<a href=\"%s\" target=\"_blank\">dashboard</a>. En ny licensnøgle vil "
1977
- #~ "blive sendt til dig når din ordre er blevet ekspederet."
1978
-
1979
- #~ msgid ""
1980
- #~ "The subscription for %s has expired. You can reactivate the subscription "
1981
- #~ "from your account <a href=\"%s\" target=\"_blank\">dashboard</a>."
1982
- #~ msgstr ""
1983
- #~ "Abonnementet for %s er udløbet. Du kan genaktivere abonnementet fra din "
1984
- #~ "kontos <a href=\"%s\" target=\"_blank\">dashboard</a>."
1985
-
1986
- #~ msgid ""
1987
- #~ "The subscription for %s has been suspended. You can reactivate the "
1988
- #~ "subscription from your account <a href=\"%s\" target=\"_blank"
1989
- #~ "\">dashboard</a>."
1990
- #~ msgstr ""
1991
- #~ "Abonnementet for %s er blevet afbrudt. Du kan genaktivere abonnementet "
1992
- #~ "fra din kontos <a href=\"%s\" target=\"_blank\">dashboard</a>."
1993
-
1994
- #~ msgid ""
1995
- #~ "The subscription for %s is still pending. You can check on the status of "
1996
- #~ "the subscription from your account <a href=\"%s\" target=\"_blank"
1997
- #~ "\">dashboard</a>."
1998
- #~ msgstr ""
1999
- #~ "Abonnementet for %s er ikke godkendt. Du kan tjekke status på dit "
2000
- #~ "abonnement fra din kontos <a href=\"%s\" target=\"_blank\">dashboard</a>."
2001
-
2002
- #~ msgid ""
2003
- #~ "The subscription for %s has been placed in the trash and will be deleted "
2004
- #~ "soon. You can purchase a new subscription from your account <a href=\"%s"
2005
- #~ "\" target=\"_blank\">dashboard</a>."
2006
- #~ msgstr ""
2007
- #~ "Abonnementet for %s er lagt i papirkuirven og vil snart blive slettet. Du "
2008
- #~ "kan købe et nyt abonnement fra din kontos <a href=\"%s\" target=\"_blank"
2009
- #~ "\">dashboard</a>."
2010
-
2011
- #~ msgid ""
2012
- #~ "A subscription for %s could not be found. You can purchase a subscription "
2013
- #~ "from your account <a href=\"%s\" target=\"_blank\">dashboard</a>."
2014
- #~ msgstr ""
2015
- #~ "Der blev ikke fundet noget abonnement for %s. Du kan købe et abonnement "
2016
- #~ "fra din kontos <a href=\"%s\" target=\"_blank\">dashboard</a>."
2017
-
2018
- #~ msgid ""
2019
- #~ "A license key for %s could not be found. Maybe you forgot to enter a "
2020
- #~ "license key when setting up %s, or the key was deactivated in your "
2021
- #~ "account. You can reactivate license key at your plugin <a href=\"%s\" "
2022
- #~ "target=\"_blank\">settings page</a>."
2023
- #~ msgstr ""
2024
- #~ "Der blev ikke fundet nogen licensnøgle for %s. Måske har du glemt at "
2025
- #~ "indtaste licensnøglen under opsætningen af %s eller licensnøglen er "
2026
- #~ "blevet deaktiverer. Du kan genaktivere licensnøglen fra din plugins <a "
2027
- #~ "href=\"%s\" target=\"_blank\">indstillinger</a>."
2028
-
2029
- #~ msgid ""
2030
- #~ "Download permission for %s has been revoked possibly due to a license key "
2031
- #~ "or subscription expiring. You can reactivate or purchase a license key "
2032
- #~ "from your account <a href=\"%s\" target=\"_blank\">dashboard</a>."
2033
- #~ msgstr ""
2034
- #~ "Tilladelse til download for %s er blevet tilbagekaldt, muligvis fordi din "
2035
- #~ "licensnøgle eller dit abonnement er udløbet. Du kan genaktivere eller "
2036
- #~ "købe en ny licensnøgle fra din kontos <a href=\"%s\" target=\"_blank"
2037
- #~ "\">dashboard</a>."
2038
-
2039
- #~ msgid ""
2040
- #~ "%s has not been activated. Go to the plugin <a href=\"%s\" target=\"_blank"
2041
- #~ "\">settings page</a> and enter the license key and license email to "
2042
- #~ "activate %s."
2043
- #~ msgstr ""
2044
- #~ "%s er ikke aktiveret. Gå til din plugins <a href=\"%s\" target=\"_blank"
2045
- #~ "\">indstillinger</a> og genindtaste licensnøglen og den tilhørende email "
2046
- #~ "for at aktivere %s."
2047
-
2048
- #~ msgid ""
2049
- #~ "You changed the subscription for %s, so you will need to enter your new "
2050
- #~ "API License Key in the settings page. The License Key should have arrived "
2051
- #~ "in your email inbox, if not you can get it by logging into your account "
2052
- #~ "<a href=\"%s\" target=\"_blank\">dashboard</a>."
2053
- #~ msgstr ""
2054
- #~ "Du har ændret abonnementet for %s, så du bliver nødt til at indtaste en "
2055
- #~ "ny API licensnøgle under indstillinger. Licensnøglen skulle være kommet "
2056
- #~ "til dig med email. Hvis ikke, kan du hente licensnøglen i din kontos <a "
2057
- #~ "href=\"%s\" target=\"_blank\">dashboard</a>"
2058
-
2059
- #~ msgid "Licence Activation"
2060
- #~ msgstr "Licensaktivering"
2061
-
2062
- #~ msgid "API Licence Key:"
2063
- #~ msgstr "API Licensnøgle:"
2064
-
2065
- #~ msgid "Licence Key"
2066
- #~ msgstr "Licensnøgle"
2067
-
2068
- #~ msgid "Licence Email"
2069
- #~ msgstr "Licens Email"
2070
-
2071
- #~ msgid "Activate"
2072
- #~ msgstr "Aktivér"
2073
-
2074
- #~ msgid "Cookie Category"
2075
- #~ msgstr "Cookie kategori"
2076
-
2077
- #~ msgid "Google Analytics"
2078
- #~ msgstr "Google Analytics"
2079
-
2080
- #~ msgid "Facebook Pixel Code"
2081
- #~ msgstr "Facebook Pixel Code"
2082
-
2083
- #~ msgid "Hotjar"
2084
- #~ msgstr "Hotjar"
2085
-
2086
- #~ msgid "Google Publisher Tag"
2087
- #~ msgstr "Google Publisher Tag"
2088
-
2089
- #~ msgid ""
2090
- #~ "Invalid index found in the thirdparties array. Index should be of type "
2091
- #~ "'string'. Index found: %d."
2092
- #~ msgstr ""
2093
- #~ "Ugyldigt index fundet i tredje-part array. Index skal være af typen "
2094
- #~ "'string'. Index der blev fundet: %d."
2095
-
2096
- #~ msgid "Action is unknown."
2097
- #~ msgstr "Denne handling er ukendt."
2098
-
2099
- #~ msgid "Output buffer type"
2100
- #~ msgstr "Output buffer type"
2101
-
2102
- #~ msgid "Multi"
2103
- #~ msgstr "Multi"
2104
-
2105
- #~ msgid "Single"
2106
- #~ msgstr "Enkelt"
2107
-
2108
- #~ msgid "Key"
2109
- #~ msgstr "Nøgle"
2110
-
2111
- #~ msgid "No Consent History"
2112
- #~ msgstr "Ingen samtykkehistorik"
2113
-
2114
- #~ msgid "IP Address"
2115
- #~ msgstr "IP-adresse"
2116
-
2117
- #~ msgid "Visited Date"
2118
- #~ msgstr "Besøgt dato"
2119
-
2120
- #~ msgid "User ID"
2121
- #~ msgstr "Bruger-ID"
2122
-
2123
- #~ msgid "GDPR Consent History"
2124
- #~ msgstr "GDPR-samtykkehistorik"
2125
-
2126
- #~ msgid "Export Report"
2127
- #~ msgstr "Eksporter rapport"
2128
-
2129
- #~ msgid "Event Logged Successfully"
2130
- #~ msgstr "Event blev logget"
2131
-
2132
- #~ msgid "Logging is not enabled"
2133
- #~ msgstr "Logning er ikke aktiveret"
2134
-
2135
- #~ msgid "Consent Report"
2136
- #~ msgstr "Samtykkerapport"
2137
-
2138
- #~ msgid "Cookie Bar as popup:"
2139
- #~ msgstr "Cookie Bar som popup"
2140
-
2141
- #~ msgid "Caution: This may broke the site."
2142
- #~ msgstr "Forsigtig ! Dette kan ødelægge din side"
2143
-
2144
- #~ msgid "&nbsp;"
2145
- #~ msgstr "&nbsp;"
2146
-
2147
- #~ msgid "Scan & Download"
2148
- #~ msgstr "Scan og download"
2149
-
2150
- #~ msgid "Export Cookie"
2151
- #~ msgstr "Eksportér cookie"
2152
-
2153
- #~ msgid "Export as CSV file"
2154
- #~ msgstr "Eksportér som CSV-fil"
2155
-
2156
- #~ msgid "Export"
2157
- #~ msgstr "Eksportér"
2158
-
2159
- #~ msgid "Scan & Import"
2160
- #~ msgstr "Scan og importér"
2161
-
2162
- #~ msgid "Error processing migration request (ERROR: 4)"
2163
- #~ msgstr "Fejl under migrering (FEJL: 4)"
2164
-
2165
- #~ msgid "Cookie Law Message Bar"
2166
- #~ msgstr "GDPR Consent meddelelseslinje"
2167
-
2168
- #~ msgid "Shortcodes allowed: see settngs section \"Using the Shortcodes\"."
2169
- #~ msgstr ""
2170
- #~ "Kortkoder tilladt: Se indstillinger i afsnittet \"Brug af the kortkoder\"."
2171
-
2172
- #~ msgid "Link Text"
2173
- #~ msgstr "Link tekst"
2174
-
2175
- #~ msgid "Open link in new window?"
2176
- #~ msgstr "Åbn i et nyt vindue?"
2177
-
2178
- #~ msgid "Link colour"
2179
- #~ msgstr "Link farve"
2180
-
2181
- #~ msgid "Show as button?"
2182
- #~ msgstr "Vis som knap?"
2183
-
2184
- #~ msgid "Button colour"
2185
- #~ msgstr "Knapfarve"
2186
-
2187
- #~ msgid "Button Size"
2188
- #~ msgstr "Knap størrelse"
2189
-
2190
- #~ msgid "Using the Shortcodes"
2191
- #~ msgstr "Brug af kortkoder"
2192
-
2193
- #~ msgid "The shortcodes are:"
2194
- #~ msgstr "Kortkoderne er:"
2195
-
2196
- #~ msgid "Are you sure you want to migrate settings?"
2197
- #~ msgstr "Er du sikker på, at du vil overføre indstillinger?"
2198
-
2199
- #~ msgid "Help"
2200
- #~ msgstr "Hjælp"
2201
-
2202
- #~ msgid "Report a Bug"
2203
- #~ msgstr "Rapportér en fejl"
2204
-
2205
- #~ msgid "Guide"
2206
- #~ msgstr "Vejledende beskrivelse"
2207
-
2208
- #~ msgid "About the law"
2209
- #~ msgstr "Om GDPR Cookie Consent"
2210
-
2211
- #~ msgid "Message Bar"
2212
- #~ msgstr "meddelelseslinje"
2213
-
2214
- #~ msgid "Licence"
2215
- #~ msgstr "Licens"
2216
-
2217
- #~ msgid ""
2218
- #~ "This website uses cookies to improve your experience. We'll assume you're "
2219
- #~ "ok with this, but you can opt-out if you wish.[cookie_button] "
2220
- #~ "[cookie_settings] [cookie_link]"
2221
- #~ msgstr ""
2222
- #~ "Denne hjemmeside bruger cookies til at forbedre din oplevelse. Vi antager "
2223
- #~ "du er OK med det, men du kan fravælge det, hvis du ønsker. "
2224
- #~ "[cookie_button] [cookie_settings] [cookie_link]"
2225
-
2226
- #~ msgid "Cookie Bar will be show in:"
2227
- #~ msgstr "Cookie Bar vil blive vist i:"
2228
-
2229
- #~ msgid "Auto-hide cookie bar after delay?"
2230
- #~ msgstr "Bil-skjule cookie bar efter forsinkelse?"
2231
-
2232
- #~ msgid "Auto-hide cookie bar if the user scrolls?"
2233
- #~ msgstr "Bil-skjule cookie bar hvis brugeren ruller?"
2234
-
2235
- #~ msgid "Button will only link to URL if Action = Show URL"
2236
- #~ msgstr "Knappen vil kun link til URL hvis Action = Vis URL"
2237
-
2238
- #~ msgid ""
2239
- #~ "We have moved header and footer scripts of this section to the "
2240
- #~ "corresponding fields of a 'Non-Necessary-Cookie' created under 'Non-"
2241
- #~ "Necessary' category."
2242
- #~ msgstr ""
2243
- #~ "Vi har flyttet sidehoved og sidefod scripts af dette afsnit til de "
2244
- #~ "tilsvarende felter i et 'ikke-nødvendige-Cookie' oprettet under 'Ikke-"
2245
- #~ "nødvendige' kategori."
2246
-
2247
- #~ msgid ""
2248
- #~ "So now all your Cookies and related scripts can be managed from a single "
2249
- #~ "place."
2250
- #~ msgstr ""
2251
- #~ "Så nu kan alle dine Cookies og relaterede scripts administreres fra et "
2252
- #~ "enkelt sted."
2253
-
2254
- #~ msgid "Accept"
2255
- #~ msgstr "Accepter"
2256
-
2257
- #~ msgid "Reject"
2258
- #~ msgstr "Afvis"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/cookie-law-info-de_DE.mo DELETED
Binary file
languages/cookie-law-info-de_DE.po DELETED
@@ -1,1971 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: \n"
4
- "POT-Creation-Date: 2020-11-17 11:30+0530\n"
5
- "PO-Revision-Date: 2020-11-17 11:30+0530\n"
6
- "Last-Translator: \n"
7
- "Language-Team: \n"
8
- "Language: de\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.4.2\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
- "X-Poedit-KeywordsList: __;_e\n"
16
- "X-Poedit-SearchPath-0: .\n"
17
-
18
- #: admin/class-cookie-law-info-admin.php:147
19
- #: admin/class-cookie-law-info-admin.php:148
20
- #: admin/class-cookie-law-info-admin.php:247
21
- #: admin/partials/cookie-law-info-admin_settings.php:31
22
- msgid "Settings"
23
- msgstr "Einstellungen"
24
-
25
- #: admin/class-cookie-law-info-admin.php:155
26
- #: admin/class-cookie-law-info-admin.php:156
27
- #: public/modules/script-blocker/views/settings.php:174
28
- #: public/views/cookie-law-info_popup_content.php:23
29
- msgid "Non-necessary"
30
- msgstr "Nicht notwendig"
31
-
32
- #: admin/class-cookie-law-info-admin.php:163
33
- #: admin/class-cookie-law-info-admin.php:164
34
- #: public/views/cookie-law-info_popup_content.php:22
35
- msgid "Necessary"
36
- msgstr "Notwendig"
37
-
38
- #: admin/class-cookie-law-info-admin.php:171
39
- #: admin/class-cookie-law-info-admin.php:172
40
- #: admin/partials/cookie-law-info-privacy_overview.php:25
41
- msgid "Privacy Overview"
42
- msgstr "Datenschutzübersicht"
43
-
44
- #: admin/class-cookie-law-info-admin.php:221
45
- #: admin/class-cookie-law-info-admin.php:276
46
- #: admin/class-cookie-law-info-admin.php:334
47
- #: admin/class-cookie-law-info-admin.php:378
48
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:22
49
- #: public/modules/script-blocker/script-blocker.php:133
50
- #: public/modules/script-blocker/script-blocker.php:173
51
- #: public/modules/script-blocker/script-blocker.php:310
52
- msgid "You do not have sufficient permission to perform this operation"
53
- msgstr "Sie haben nicht die Berechtigung diese Aktion durchzuführen"
54
-
55
- #: admin/class-cookie-law-info-admin.php:240
56
- #: admin/class-cookie-law-info-admin.php:306
57
- #: admin/class-cookie-law-info-admin.php:359
58
- #: admin/class-cookie-law-info-admin.php:403
59
- msgid "Settings Updated."
60
- msgstr "Einstellungen aktualisiert."
61
-
62
- #: admin/class-cookie-law-info-admin.php:248
63
- msgid "Support"
64
- msgstr "Unterstützung"
65
-
66
- #: admin/class-cookie-law-info-admin.php:249
67
- msgid "Premium Upgrade"
68
- msgstr "Premium Upgrade"
69
-
70
- #: admin/class-cookie-law-info-admin.php:418
71
- msgid "ERROR MIGRATING SETTINGS (ERROR: 2)"
72
- msgstr "FEHLER BEIM MIGRIEREN DER EINSTELLUNGEN (FEHLER: 2)"
73
-
74
- #: admin/class-cookie-law-info-admin.php:436
75
- msgid "Cookie ID"
76
- msgstr "Cookie ID"
77
-
78
- #: admin/class-cookie-law-info-admin.php:437
79
- msgid "Cookie Type"
80
- msgstr "Cookie-Typ"
81
-
82
- #: admin/class-cookie-law-info-admin.php:438
83
- msgid "Cookie Duration"
84
- msgstr "Cookie-Dauer"
85
-
86
- #: admin/class-cookie-law-info-admin.php:439
87
- msgid "Cookie Sensitivity"
88
- msgstr "Cookie-Empfindlichkeit"
89
-
90
- #: admin/class-cookie-law-info-admin.php:689
91
- msgid "Close Header"
92
- msgstr "Header schließen"
93
-
94
- #: admin/class-cookie-law-info-admin.php:693
95
- msgid "Open URL"
96
- msgstr "Öffne URL"
97
-
98
- #: admin/class-cookie-law-info-admin.php:706
99
- msgid "Extra Large"
100
- msgstr "Extra groß"
101
-
102
- #: admin/class-cookie-law-info-admin.php:710
103
- msgid "Large"
104
- msgstr "Groß"
105
-
106
- #: admin/class-cookie-law-info-admin.php:714
107
- msgid "Medium"
108
- msgstr "Mittel"
109
-
110
- #: admin/class-cookie-law-info-admin.php:718
111
- msgid "Small"
112
- msgstr "Klein"
113
-
114
- #: admin/class-cookie-law-info-admin.php:732
115
- msgid "Default theme font"
116
- msgstr "Standard-Theme-Schriftart"
117
-
118
- #: admin/class-cookie-law-info-admin.php:736
119
- msgid "Sans Serif"
120
- msgstr "Sans Serif"
121
-
122
- #: admin/class-cookie-law-info-admin.php:740
123
- msgid "Serif"
124
- msgstr "Serif"
125
-
126
- #: admin/class-cookie-law-info-admin.php:744
127
- msgid "Arial"
128
- msgstr "Arial"
129
-
130
- #: admin/class-cookie-law-info-admin.php:748
131
- msgid "Arial Black"
132
- msgstr "Arial Black"
133
-
134
- #: admin/class-cookie-law-info-admin.php:752
135
- msgid "Georgia, serif"
136
- msgstr "Georgia, serif"
137
-
138
- #: admin/class-cookie-law-info-admin.php:756
139
- msgid "Helvetica"
140
- msgstr "Helvetica"
141
-
142
- #: admin/class-cookie-law-info-admin.php:760
143
- msgid "Lucida"
144
- msgstr "Lucida"
145
-
146
- #: admin/class-cookie-law-info-admin.php:764
147
- msgid "Tahoma"
148
- msgstr "Tahoma"
149
-
150
- #: admin/class-cookie-law-info-admin.php:768
151
- msgid "Times New Roman"
152
- msgstr "Times New Roman"
153
-
154
- #: admin/class-cookie-law-info-admin.php:772
155
- msgid "Trebuchet"
156
- msgstr "Trebuchet"
157
-
158
- #: admin/class-cookie-law-info-admin.php:776
159
- msgid "Verdana"
160
- msgstr "Verdana"
161
-
162
- #: admin/modules/ccpa/ccpa.php:106
163
- msgid "Do you really wish to opt out?"
164
- msgstr "Möchten Sie sich wirklich abmelden?"
165
-
166
- #: admin/modules/ccpa/ccpa.php:107
167
- msgid "Confirm"
168
- msgstr "Bestätigen"
169
-
170
- #: admin/modules/ccpa/ccpa.php:108
171
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:154
172
- msgid "Cancel"
173
- msgstr "Abbrechen"
174
-
175
- #: admin/modules/ccpa/ccpa.php:145
176
- msgid "Select the type of law"
177
- msgstr "Wählen Sie die Art des Gesetzes"
178
-
179
- #: admin/modules/ccpa/ccpa.php:149
180
- msgid "GDPR"
181
- msgstr "GDPR"
182
-
183
- #: admin/modules/ccpa/ccpa.php:150 admin/modules/ccpa/ccpa.php:158
184
- msgid ""
185
- "Customize the buttons, notice, themes from the relevant tabs to setup your "
186
- "cookie notice accordingly."
187
- msgstr ""
188
- "Passen Sie die Schaltflächen, Hinweise und Themen auf den entsprechenden "
189
- "Registerkarten an, um Ihre Cookie-Benachrichtigung entsprechend einzurichten."
190
-
191
- #: admin/modules/ccpa/ccpa.php:153
192
- msgid "CCPA"
193
- msgstr "CCPA"
194
-
195
- #: admin/modules/ccpa/ccpa.php:154
196
- msgid ""
197
- "Most of the customizations from the tabs for buttons, notice or themes are "
198
- "not relevant especially if you choose to not show the notice, except the Do "
199
- "not sell within the buttons."
200
- msgstr ""
201
- "Die meisten Anpassungen auf den Registerkarten für Schaltflächen, Hinweise "
202
- "oder Themen sind nicht relevant, insbesondere wenn Sie den Hinweis nicht "
203
- "anzeigen möchten, mit Ausnahme der Option Nicht innerhalb der Schaltflächen "
204
- "verkaufen."
205
-
206
- #: admin/modules/ccpa/ccpa.php:157
207
- msgid "CCPA & GDPR"
208
- msgstr "CCPA & GDPR"
209
-
210
- #: admin/modules/ccpa/views/ccpa_settings.php:7
211
- msgid "CCPA Settings"
212
- msgstr "CCPA-Einstellungen"
213
-
214
- #: admin/modules/ccpa/views/ccpa_settings.php:7
215
- msgid ""
216
- "The right to opt out in the California Consumer Privacy Act gives consumers "
217
- "the ability to direct a business not to sell their personal information to a "
218
- "third party. If the user considers to not sell their personal information, "
219
- "all the scripts related to the categories which are configured to sell "
220
- "personal information will be blocked. The DO NOT SELL option is facilitated "
221
- "via a shortcode [wt_cli_ccpa_optout]."
222
- msgstr ""
223
- "Das Recht, sich vom California Consumer Privacy Act abzumelden, gibt "
224
- "Verbrauchern die Möglichkeit, ein Unternehmen anzuweisen, ihre persönlichen "
225
- "Daten nicht an Dritte zu verkaufen. Wenn der Benutzer erwägt, seine "
226
- "persönlichen Daten nicht zu verkaufen, werden alle Skripte in Bezug auf die "
227
- "Kategorien, die für den Verkauf persönlicher Daten konfiguriert sind, "
228
- "blockiert. Die Option NICHT VERKAUFEN wird über einen Shortcode "
229
- "[wt_cli_ccpa_optout] erleichtert."
230
-
231
- #: admin/modules/ccpa/views/ccpa_settings.php:10
232
- msgid "Enable CCPA ?"
233
- msgstr "CCPA aktivieren?"
234
-
235
- #: admin/modules/ccpa/views/ccpa_settings.php:18
236
- msgid "Enable CCPA notice"
237
- msgstr "Aktivieren Sie die CCPA-Benachrichtigung"
238
-
239
- #: admin/modules/ccpa/views/ccpa_settings.php:18
240
- msgid ""
241
- "Enabling the notice will display the banner with the relevant text as per "
242
- "your configuration. Use this option particularly to record prior consent "
243
- "from the website visitors."
244
- msgstr ""
245
- "Wenn Sie den Hinweis aktivieren, wird das Banner mit dem entsprechenden Text "
246
- "gemäß Ihrer Konfiguration angezeigt. Verwenden Sie diese Option "
247
- "insbesondere, um die vorherige Zustimmung der Website-Besucher aufzuzeichnen."
248
-
249
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:26
250
- msgid "Unable to handle your request."
251
- msgstr "Ihre Anfrage konnte nicht bearbeitet werden."
252
-
253
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:96
254
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:130
255
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:132
256
- msgid "Error"
257
- msgstr "Error"
258
-
259
- #: admin/modules/cli-policy-generator/classes/class-preview-page.php:27
260
- msgid "Cookie Policy"
261
- msgstr "Cookie-Richtlinie"
262
-
263
- #: admin/modules/cli-policy-generator/classes/class-preview-page.php:83
264
- msgid "Auto reload preview"
265
- msgstr "Auto reload preview"
266
-
267
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:106
268
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:107
269
- #: admin/modules/cli-policy-generator/views/policy-generator.php:21
270
- msgid "Policy generator"
271
- msgstr "Richtliniengenerator"
272
-
273
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:133
274
- msgid "Success"
275
- msgstr "Erfolg"
276
-
277
- #: admin/modules/cli-policy-generator/views/policy-generator.php:25
278
- msgid "Sample heading"
279
- msgstr "Beispielüberschrift"
280
-
281
- #: admin/modules/cli-policy-generator/views/policy-generator.php:26
282
- msgid "Sample content"
283
- msgstr "Beispielinhalt"
284
-
285
- #: admin/modules/cli-policy-generator/views/policy-generator.php:27
286
- msgid "Delete"
287
- msgstr "Löschen"
288
-
289
- #: admin/modules/cli-policy-generator/views/policy-generator.php:49
290
- msgid "Add new"
291
- msgstr "Neue hinzufügen"
292
-
293
- #: admin/modules/cli-policy-generator/views/policy-generator.php:53
294
- msgid "Heading"
295
- msgstr "Überschrift"
296
-
297
- #: admin/modules/cli-policy-generator/views/policy-generator.php:57
298
- #: admin/views/admin_necessary_cookie.php:39
299
- #: admin/views/admin_non_necessary_cookie.php:54
300
- #: public/modules/script-blocker/views/settings.php:142
301
- #: public/modules/shortcode/shortcode.php:220
302
- msgid "Description"
303
- msgstr "Beschreibung"
304
-
305
- #: admin/modules/cli-policy-generator/views/policy-generator.php:65
306
- msgid ""
307
- "Enabling this option will help us spread the word by placing a credit to "
308
- "WebToffee at the very end of the Cookie Policy page."
309
- msgstr ""
310
- "Wenn Sie diese Option aktivieren, können Sie das Wort verbreiten, indem Sie "
311
- "WebToffee am Ende der Cookie-Richtlinien-Seite eine Gutschrift hinzufügen."
312
-
313
- #: admin/modules/cli-policy-generator/views/policy-generator.php:82
314
- msgid "Update existing Cookie Policy page"
315
- msgstr "Aktualisieren Sie die Seite \"Cookie-Richtlinie\""
316
-
317
- #: admin/modules/cli-policy-generator/views/policy-generator.php:88
318
- msgid "Create Cookie Policy page"
319
- msgstr "Seite Cookie-Richtlinie erstellen"
320
-
321
- #: admin/modules/cli-policy-generator/views/policy-generator.php:92
322
- msgid "Live preview"
323
- msgstr "Live Vorschau"
324
-
325
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:43
326
- msgid "The plugin is complex to set up"
327
- msgstr "Das Plugin ist komplex einzurichten"
328
-
329
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:45
330
- msgid "Please describe which area you are facing difficulties"
331
- msgstr "Bitte beschreiben Sie, in welchem Bereich Sie Schwierigkeiten haben"
332
-
333
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:49
334
- msgid "I found a better plugin"
335
- msgstr "Ich fand ein besseres PlugIn"
336
-
337
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:51
338
- msgid "Which plugin?"
339
- msgstr "Welches Plugin?"
340
-
341
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:55
342
- msgid "The plugin is great, but I need specific feature that you don't support"
343
- msgstr ""
344
- "Das Plugin ist grosartig, aber ich brauche besondere Funktionen, die das "
345
- "Plugin nicht bietet"
346
-
347
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:57
348
- msgid "Could you tell us more about that feature?"
349
- msgstr "Können Sie uns mehr über diese Funktion erzählen?"
350
-
351
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:61
352
- msgid "The plugin didn't work as expected"
353
- msgstr "Das Plugin funktioniert nicht wie erwartet"
354
-
355
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:63
356
- msgid "What did you expect?"
357
- msgstr "Was hast Du erwartet?"
358
-
359
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:67
360
- msgid "A conflict with another plugin or theme"
361
- msgstr "Ein Konflikt mit einem anderen Plugin oder Thema"
362
-
363
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:69
364
- msgid "Which plugin or theme?"
365
- msgstr "Welches Plugin oder Thema?"
366
-
367
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:73
368
- msgid "Translation issues"
369
- msgstr "Übersetzungsprobleme"
370
-
371
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:77
372
- msgid "Incorrect/missing translation"
373
- msgstr "Falsche / fehlende Übersetzung"
374
-
375
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:79
376
- msgid "Name the language"
377
- msgstr "Nennen Sie die Sprache"
378
-
379
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:83
380
- msgid ""
381
- "Unable to translate my dynamic content e.g, cookie message, button text etc"
382
- msgstr ""
383
- "Mein dynamischer Inhalt, z. B. Cookie-Nachricht, Schaltflächentext usw., "
384
- "Kann nicht übersetzt werden"
385
-
386
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:85
387
- msgid "Name the language and the translator plugin that you are using"
388
- msgstr "Nennen Sie die Sprache und das Übersetzer-Plugin, das Sie verwenden"
389
-
390
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:91
391
- msgid "Upgrade to pro"
392
- msgstr "Upgrade Elementor Pro"
393
-
394
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:95
395
- #: admin/views/admin-settings-general.php:10
396
- #: admin/views/admin-settings-general.php:66
397
- msgid "Other"
398
- msgstr "Andere"
399
-
400
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:97
401
- msgid "Could you tell us a bit more?"
402
- msgstr "Können Sie uns etwas mehr erzählen?"
403
-
404
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:117
405
- msgid "If you have a moment, please let us know why you are deactivating:"
406
- msgstr ""
407
- "Wenn Sie einen Moment Zeit haben, lassen Sie uns wissen, warum Sie es "
408
- "abschalten:"
409
-
410
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:144
411
- msgid ""
412
- "We do not collect any personal data when you submit this form. It's your "
413
- "feedback that we value."
414
- msgstr ""
415
- "Wir sammeln keine persönlichen Daten, wenn Sie dieses Formular senden. Es "
416
- "ist Ihr Feedback, das wir schätzen."
417
-
418
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:145
419
- msgid "Privacy Policy"
420
- msgstr "Datenschutzerklärung"
421
-
422
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:152
423
- msgid "Go to support"
424
- msgstr "Gehen Sie zur Unterstützung"
425
-
426
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:153
427
- msgid "Submit & Deactivate"
428
- msgstr "Absenden & deaktivieren"
429
-
430
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:155
431
- msgid "I rather wouldn't say"
432
- msgstr "Eher würde ich nicht sagen"
433
-
434
- #: admin/partials/cookie-law-info-admin_settings.php:25
435
- #: admin/views/admin_necessary_cookie.php:20
436
- #: admin/views/admin_non_necessary_cookie.php:17
437
- msgid "Settings updated."
438
- msgstr "Einstellungen aktualisiert."
439
-
440
- #: admin/partials/cookie-law-info-admin_settings.php:26
441
- #: admin/views/admin_necessary_cookie.php:21
442
- #: admin/views/admin_non_necessary_cookie.php:18
443
- msgid "Unable to update Settings."
444
- msgstr "Einstellungen können nicht aktualisiert werden."
445
-
446
- #: admin/partials/cookie-law-info-admin_settings.php:27
447
- msgid "Settings reset to defaults."
448
- msgstr "Einstellungen werden auf die Standardeinstellungen zurückgesetzt."
449
-
450
- #: admin/partials/cookie-law-info-admin_settings.php:28
451
- msgid "Unable to reset settings."
452
- msgstr "Einstellungen können nicht zurückgesetzt werden."
453
-
454
- #: admin/partials/cookie-law-info-admin_settings.php:39
455
- msgid "Cookie bar is currently active"
456
- msgstr "Die Cookie-Leiste ist derzeit aktiv"
457
-
458
- #: admin/partials/cookie-law-info-admin_settings.php:47
459
- msgid "Cookie bar is currently inactive"
460
- msgstr "Die Cookie-Leiste ist derzeit inaktiv"
461
-
462
- #: admin/partials/cookie-law-info-admin_settings.php:57
463
- #: admin/views/admin-settings-general.php:9
464
- msgid "General"
465
- msgstr "Allgemeines"
466
-
467
- #: admin/partials/cookie-law-info-admin_settings.php:58
468
- msgid "Customise Cookie Bar"
469
- msgstr "Cookie-Leiste anpassen"
470
-
471
- #: admin/partials/cookie-law-info-admin_settings.php:59
472
- msgid "Customise Buttons"
473
- msgstr "Anpassen der Schaltflächen"
474
-
475
- #: admin/partials/cookie-law-info-admin_settings.php:60
476
- #: admin/views/admin-settings-advanced.php:8
477
- msgid "Advanced"
478
- msgstr "Erweitert"
479
-
480
- #: admin/partials/cookie-law-info-admin_settings.php:61
481
- msgid "Help Guide"
482
- msgstr "Leitfaden"
483
-
484
- #: admin/partials/cookie-law-info-privacy_overview.php:32
485
- msgid "Privacy Overview Title"
486
- msgstr "Datenschutz Übersicht Titel"
487
-
488
- #: admin/partials/cookie-law-info-privacy_overview.php:38
489
- #: admin/partials/cookie-law-info-privacy_overview.php:53
490
- msgid "This will be shown in the settings visible for user on consent screen."
491
- msgstr ""
492
- "Dies wird in den Einstellungen für Benutzer auf zustimmungsbildschirm "
493
- "sichtbar angezeigt werden."
494
-
495
- #: admin/partials/cookie-law-info-privacy_overview.php:61
496
- msgid "Save Settings"
497
- msgstr "Einstellungen speichern"
498
-
499
- #: admin/views/admin-settings-advanced.php:9
500
- msgid ""
501
- "Sometimes themes apply settings that clash with plugins. If that happens, "
502
- "try adjusting these settings."
503
- msgstr ""
504
- "Manchmal wenden Themes Einstellungen an, die mit Plugins kollidieren. "
505
- "Versuchen Sie in diesem Fall, diese Einstellungen anzupassen."
506
-
507
- #: admin/views/admin-settings-advanced.php:13
508
- msgid "Reset all values"
509
- msgstr "Alle Werte zurücksetzen"
510
-
511
- #: admin/views/admin-settings-advanced.php:15
512
- msgid "Delete settings and reset"
513
- msgstr "Alle Einstellungen löschen und Werte zurücksetzen"
514
-
515
- #: admin/views/admin-settings-advanced.php:15
516
- msgid "Are you sure you want to delete all your settings?"
517
- msgstr "Sind Sie sicher, dass Sie die Einstellungen löschen möchten?"
518
-
519
- #: admin/views/admin-settings-advanced.php:16
520
- msgid "Warning: this will actually delete your current settings."
521
- msgstr "Warnung: Ihre aktuellen Einstellungen werden gelöscht."
522
-
523
- #: admin/views/admin-settings-buttons.php:10
524
- msgid "Accept Button"
525
- msgstr "Titel der Schaltfläche \"Akzeptieren\""
526
-
527
- #: admin/views/admin-settings-buttons.php:11
528
- #: admin/views/admin-settings-buttons.php:93
529
- msgid "Reject Button"
530
- msgstr "Titel der Schaltfläche “Ablehnen“"
531
-
532
- #: admin/views/admin-settings-buttons.php:12
533
- #: admin/views/admin-settings-buttons.php:163
534
- msgid "Settings Button"
535
- msgstr "Titel der Schaltfläche “Einstellungen“"
536
-
537
- #: admin/views/admin-settings-buttons.php:13
538
- #: admin/views/admin-settings-buttons.php:206
539
- msgid "Read More Link"
540
- msgstr "Titel der Schaltfläche \"Mehr lesen\""
541
-
542
- #: admin/views/admin-settings-buttons.php:14
543
- #: admin/views/admin-settings-buttons.php:326
544
- msgid "Do not sell link"
545
- msgstr "Link nicht verkaufen"
546
-
547
- #: admin/views/admin-settings-buttons.php:20
548
- msgid "Main Button"
549
- msgstr "Haupt-Schaltfläche"
550
-
551
- #: admin/views/admin-settings-buttons.php:21
552
- msgid ""
553
- "This button/link can be customised to either simply close the cookie bar, or "
554
- "follow a link. You can also customise the colours and styles, and show it as "
555
- "a link or a button."
556
- msgstr ""
557
- "Dieser Button/Link kann angepasst werden, um entweder die Cookie-Leiste zu "
558
- "schließen oder einem Link zu folgen. Sie können die Farben und Stile auch "
559
- "anpassen und als Link oder Schaltfläche anzeigen."
560
-
561
- #: admin/views/admin-settings-buttons.php:24
562
- #: admin/views/admin-settings-buttons.php:96
563
- #: admin/views/admin-settings-buttons.php:166
564
- #: admin/views/admin-settings-buttons.php:220
565
- msgid "Text"
566
- msgstr "Text"
567
-
568
- #: admin/views/admin-settings-buttons.php:30
569
- #: admin/views/admin-settings-buttons.php:102
570
- #: admin/views/admin-settings-buttons.php:172
571
- #: admin/views/admin-settings-buttons.php:226
572
- #: admin/views/admin-settings-buttons.php:346
573
- msgid "Text colour"
574
- msgstr "Schriftfarbe"
575
-
576
- #: admin/views/admin-settings-buttons.php:38
577
- #: admin/views/admin-settings-buttons.php:110
578
- #: admin/views/admin-settings-buttons.php:180
579
- #: admin/views/admin-settings-buttons.php:234
580
- #: admin/views/admin-settings-buttons.php:335
581
- msgid "Show as"
582
- msgstr "Zeige als"
583
-
584
- #: admin/views/admin-settings-buttons.php:40
585
- #: admin/views/admin-settings-buttons.php:112
586
- #: admin/views/admin-settings-buttons.php:182
587
- #: admin/views/admin-settings-buttons.php:236
588
- msgid "Button"
589
- msgstr "Schaltfläche"
590
-
591
- #: admin/views/admin-settings-buttons.php:42
592
- #: admin/views/admin-settings-buttons.php:114
593
- #: admin/views/admin-settings-buttons.php:184
594
- #: admin/views/admin-settings-buttons.php:238
595
- #: admin/views/admin-settings-buttons.php:337
596
- msgid "Link"
597
- msgstr "Link"
598
-
599
- #: admin/views/admin-settings-buttons.php:46
600
- #: admin/views/admin-settings-buttons.php:118
601
- #: admin/views/admin-settings-buttons.php:188
602
- #: admin/views/admin-settings-buttons.php:242
603
- msgid "Background colour"
604
- msgstr "Hintergrundfarbe"
605
-
606
- #: admin/views/admin-settings-buttons.php:55
607
- #: admin/views/admin-settings-buttons.php:126
608
- msgid "Action"
609
- msgstr "Aktion"
610
-
611
- #: admin/views/admin-settings-buttons.php:63
612
- #: admin/views/admin-settings-buttons.php:138
613
- #: admin/views/admin-settings-buttons.php:253
614
- #: admin/views/admin-settings-buttons.php:260
615
- msgid "URL"
616
- msgstr "Externe URL"
617
-
618
- #: admin/views/admin-settings-buttons.php:66
619
- #: admin/views/admin-settings-buttons.php:141
620
- msgid "Button will only link to URL if Action = Open URL"
621
- msgstr ""
622
- "Die Schaltfläche wird nur auf die URL verlinken, wenn die ausgewählte Aktion "
623
- "\"URL öffnen\" ist"
624
-
625
- #: admin/views/admin-settings-buttons.php:71
626
- #: admin/views/admin-settings-buttons.php:146
627
- msgid "Open URL in new window?"
628
- msgstr "URL in neuem Fenster öffnen?"
629
-
630
- #: admin/views/admin-settings-buttons.php:73
631
- #: admin/views/admin-settings-buttons.php:148
632
- #: admin/views/admin-settings-buttons.php:304
633
- #: admin/views/admin-settings-buttons.php:311
634
- #: admin/views/admin-settings-general.php:38
635
- #: admin/views/admin-settings-general.php:54
636
- #: admin/views/admin-settings-general.php:74
637
- #: admin/views/admin-settings-general.php:82
638
- #: admin/views/admin-settings-general.php:89
639
- #: admin/views/admin-settings-messagebar.php:86
640
- #: admin/views/admin-settings-messagebar.php:110
641
- #: admin/views/admin_non_necessary_cookie.php:32
642
- msgid "Yes"
643
- msgstr "Ja"
644
-
645
- #: admin/views/admin-settings-buttons.php:75
646
- #: admin/views/admin-settings-buttons.php:149
647
- #: admin/views/admin-settings-buttons.php:305
648
- #: admin/views/admin-settings-buttons.php:312
649
- #: admin/views/admin-settings-general.php:39
650
- #: admin/views/admin-settings-general.php:55
651
- #: admin/views/admin-settings-general.php:75
652
- #: admin/views/admin-settings-general.php:83
653
- #: admin/views/admin-settings-general.php:90
654
- #: admin/views/admin-settings-messagebar.php:87
655
- #: admin/views/admin-settings-messagebar.php:111
656
- #: admin/views/admin_non_necessary_cookie.php:33
657
- #: public/modules/script-blocker/views/settings.php:139
658
- msgid "No"
659
- msgstr "Nein"
660
-
661
- #: admin/views/admin-settings-buttons.php:82
662
- #: admin/views/admin-settings-buttons.php:153
663
- #: admin/views/admin-settings-buttons.php:196
664
- #: admin/views/admin-settings-buttons.php:316
665
- msgid "Size"
666
- msgstr "Größe"
667
-
668
- #: admin/views/admin-settings-buttons.php:207
669
- msgid ""
670
- "This button/link can be used to provide a link out to your Privacy & Cookie "
671
- "Policy. You can customise it any way you like."
672
- msgstr ""
673
- "Diese Schaltfläche/dieser Link kann verwendet werden, um einen Link zu Ihrer "
674
- "Datenschutz- und Cookie-Richtlinie bereitzustellen. Sie können die "
675
- "Schaltfläche beliebig anpassen."
676
-
677
- #: admin/views/admin-settings-buttons.php:212
678
- msgid "Click"
679
- msgstr "Klicken"
680
-
681
- #: admin/views/admin-settings-buttons.php:212
682
- msgid "here"
683
- msgstr "Hier"
684
-
685
- #: admin/views/admin-settings-buttons.php:212
686
- msgid " to generate content for Cookie Policy page."
687
- msgstr " um Inhalte für die Cookie-Richtlinienseite zu generieren."
688
-
689
- #: admin/views/admin-settings-buttons.php:251
690
- msgid "URL or Page?"
691
- msgstr "URL oder Seite?"
692
-
693
- #: admin/views/admin-settings-buttons.php:255
694
- #: admin/views/admin-settings-buttons.php:266
695
- msgid "Page"
696
- msgstr "Seite"
697
-
698
- #: admin/views/admin-settings-buttons.php:269
699
- msgid "Select One"
700
- msgstr "Wähle eins"
701
-
702
- #: admin/views/admin-settings-buttons.php:294
703
- msgid "The currently selected page does not exist. Please select a new page."
704
- msgstr ""
705
- "Die aktuell ausgewählte Seite ist nicht vorhanden. Bitte wählen Sie eine "
706
- "neue Seite aus."
707
-
708
- #: admin/views/admin-settings-buttons.php:302
709
- msgid "Minimize Cookie Bar in this page/URL?"
710
- msgstr "Cookie-Leiste in dieser Seite / URL minimieren?"
711
-
712
- #: admin/views/admin-settings-buttons.php:309
713
- msgid "Open in new window?"
714
- msgstr "In einem neuen Fenster öffnen?"
715
-
716
- #: admin/views/admin-settings-buttons.php:329
717
- msgid "CCPA Text"
718
- msgstr "CCPA-Text"
719
-
720
- #: admin/views/admin-settings-buttons.php:338
721
- msgid "Checkbox"
722
- msgstr "Checkbox"
723
-
724
- #: admin/views/admin-settings-buttons.php:340
725
- msgid "The shortcode will be represented as a link whereever used."
726
- msgstr "Der Shortcode wird, wo immer er verwendet wird, als Link dargestellt."
727
-
728
- #: admin/views/admin-settings-buttons.php:341
729
- msgid ""
730
- "The shortcode will be represented as a checkbox with select option to record "
731
- "consent."
732
- msgstr ""
733
- "Der Shortcode wird als Kontrollkästchen mit Auswahloption zum Aufzeichnen "
734
- "der Zustimmung dargestellt."
735
-
736
- #: admin/views/admin-settings-general.php:17
737
- msgid "Enable cookie bar"
738
- msgstr "Cookie-Leiste aktivieren"
739
-
740
- #: admin/views/admin-settings-general.php:19
741
- msgid "On"
742
- msgstr "Aktiv"
743
-
744
- #: admin/views/admin-settings-general.php:20
745
- msgid "Off"
746
- msgstr "Aus"
747
-
748
- #: admin/views/admin-settings-general.php:36
749
- msgid "Auto-hide(Accept) cookie bar after delay?"
750
- msgstr "Cookie-Leiste nach bestimmter Zeit automatisch ausblenden?"
751
-
752
- #: admin/views/admin-settings-general.php:43
753
- msgid "Milliseconds until hidden"
754
- msgstr "Millisekunden bis zum Ausblenden"
755
-
756
- #: admin/views/admin-settings-general.php:46
757
- msgid "Specify milliseconds (not seconds)"
758
- msgstr "Geben Sie Millisekunden (nicht Sekunden) an"
759
-
760
- #: admin/views/admin-settings-general.php:46
761
- msgid "seconds"
762
- msgstr "Sekunden"
763
-
764
- #: admin/views/admin-settings-general.php:52
765
- msgid "Auto-hide cookie bar if the user scrolls ( Accept on Scroll )?"
766
- msgstr ""
767
- "Cookie-Leister automatisch ausblenden, wenn der Benutzer scrollt (Durch "
768
- "Scrollen akzeptieren)?"
769
-
770
- #: admin/views/admin-settings-general.php:56
771
- msgid ""
772
- "As per latest GDPR policies it is required to take an explicit consent for "
773
- "the cookies. Use this option with discretion especially if you serve EU"
774
- msgstr ""
775
- "Nach den neuesten DSGVO-Richtlinien ist es erforderlich, eine ausdrückliche "
776
- "Zustimmung für die Nutzung von Cookies einzuholen. Verwenden Sie diese "
777
- "Option mit Diskretion, vor allem, wenn Ihre Website Besucher aus der EU hat "
778
- "oder Sie den Richtlinien der DSGVO unterliegen"
779
-
780
- #: admin/views/admin-settings-general.php:57
781
- msgid "This option will not work along with `Popup overlay`."
782
- msgstr ""
783
- "Diese Option funktioniert nicht bei gleichzeitiger Nutzung der \"Popup "
784
- "Overlay\" Funktion."
785
-
786
- #: admin/views/admin-settings-general.php:69
787
- msgid "Reload after \"scroll accept\" event?"
788
- msgstr ""
789
- "Seite neu laden, nachdem die Hinweise durch Scrollen akzeptiert wurden?"
790
-
791
- #: admin/views/admin-settings-general.php:80
792
- msgid "Reload after Accept button click"
793
- msgstr "Seite neu laden bei Klick auf \"Akzeptieren\"-Schaltfläche"
794
-
795
- #: admin/views/admin-settings-general.php:87
796
- msgid "Reload after Reject button click"
797
- msgstr "Seite neu laden bei Klick auf \"Ablehnen\"-Schaltfläche"
798
-
799
- #: admin/views/admin-settings-help.php:9
800
- msgid "Shortcodes"
801
- msgstr "Shortcodes"
802
-
803
- #: admin/views/admin-settings-help.php:10
804
- #: admin/views/admin-settings-help.php:103
805
- msgid "Help Links"
806
- msgstr "Hilfe-Links"
807
-
808
- #: admin/views/admin-settings-help.php:16
809
- msgid "Cookie bar shortcodes"
810
- msgstr "Cookie-Leiste Shortcodes"
811
-
812
- #: admin/views/admin-settings-help.php:17
813
- msgid ""
814
- "You can enter the shortcodes in the \"message\" field of the Cookie Law Info "
815
- "bar. They add nicely formatted buttons and/or links into the cookie bar, "
816
- "without you having to add any HTML."
817
- msgstr ""
818
- "Sie können die Shortcodes im Feld \"Nachricht\" der Cookie Law Infoleiste "
819
- "eingeben. Sie fügen schön formatierte Schaltflächen und/oder Links in die "
820
- "Cookie-Leiste ein, ohne dass Sie HTML hinzufügen müssen."
821
-
822
- #: admin/views/admin-settings-help.php:22
823
- msgid "This is the \"main button\" you customise above."
824
- msgstr "Dies ist die \"Haupt-Schaltfläche\", die Sie oben anpassen können."
825
-
826
- #: admin/views/admin-settings-help.php:26
827
- msgid "This is the cookie reject button shortcode."
828
- msgstr "Dies ist der Shortcode für die \"Ablehnen\"-Schaltfläche."
829
-
830
- #: admin/views/admin-settings-help.php:30
831
- msgid "This is the cookie settings button rendering shortcode."
832
- msgstr ""
833
- "Dies ist die Schaltfläche für die Cookie-Einstellungen, die den Shortcode "
834
- "darstellt."
835
-
836
- #: admin/views/admin-settings-help.php:33
837
- msgid "This is the \"read more\" link you customise above."
838
- msgstr "Dies ist der \"Weiterlesen\"-Link, den Sie oben anpassen können."
839
-
840
- #: admin/views/admin-settings-help.php:36
841
- msgid "Setup margin for above buttons"
842
- msgstr "Einstellrand für die obigen Tasten"
843
-
844
- #: admin/views/admin-settings-help.php:65
845
- msgid "Other shortcodes"
846
- msgstr "Weitere Shortcodes"
847
-
848
- #: admin/views/admin-settings-help.php:66
849
- msgid ""
850
- "These shortcodes can be used in pages and posts on your website. It is not "
851
- "recommended to use these inside the cookie bar itself."
852
- msgstr ""
853
- "Diese Shortcodes können in Seiten und Beiträgen auf Ihrer Website verwendet "
854
- "werden. Es wird nicht empfohlen, diese in der Cookie-Leiste selbst zu "
855
- "verwenden."
856
-
857
- #: admin/views/admin-settings-help.php:72
858
- msgid ""
859
- "This prints out a nice table of cookies, in line with the guidance given by "
860
- "the ICO."
861
- msgstr ""
862
- "Dies druckt eine schöne Tabelle mit Cookies aus, die den Richtlinien der ICO "
863
- "entspricht."
864
-
865
- #: admin/views/admin-settings-help.php:72
866
- msgid ""
867
- "You need to enter the cookies your website uses via the Cookie Law Info menu "
868
- "in your WordPress dashboard."
869
- msgstr ""
870
- "Sie müssen die Cookies, die Ihre Website verwendet, über das Cookie Law Info-"
871
- "Menü in Ihrem WordPress-Dashboard eingeben."
872
-
873
- #: admin/views/admin-settings-help.php:80
874
- msgid "Styles included"
875
- msgstr "Styles enthalten"
876
-
877
- #: admin/views/admin-settings-help.php:82
878
- msgid "Columns available"
879
- msgstr "Spalten zur Verfügung"
880
-
881
- #: admin/views/admin-settings-help.php:82
882
- msgid "Will print all columns by default."
883
- msgstr "Druckt standardmäßig alle Spalten."
884
-
885
- #: admin/views/admin-settings-help.php:86
886
- msgid ""
887
- "This shortcode will display a normal HTML link which when clicked, will "
888
- "delete the cookie set by Cookie Law Info (this cookie is used to remember "
889
- "that the cookie bar is closed)."
890
- msgstr ""
891
- "Dieser Shortcode wird einen normalen HTML-Link anzeigen, welcher den Cookie, "
892
- "der vom Cookie Law Info Plugin gesetzt wird, entfernt, sobald der Link "
893
- "geklickt wird (dieser Cookie dient dazu, zu speichern, dass die Cookie-"
894
- "Leiste bereits angezeigt und geschlossen wurde)."
895
-
896
- #: admin/views/admin-settings-help.php:90
897
- msgid ""
898
- "Add any text you like- useful if you want e.g. another language to English."
899
- msgstr ""
900
- "Fügen Sie beliebigen Text ein (hilfreich z. B., wenn Sie außer Englisch eine "
901
- "weitere Sprache nutzen möchten)"
902
-
903
- #: admin/views/admin-settings-help.php:94
904
- msgid "Add content after accepting the cookie notice."
905
- msgstr ""
906
- "Fügen Sie Inhalte hinzu, nachdem Sie die Cookie-Benachrichtigung akzeptiert "
907
- "haben."
908
-
909
- #: admin/views/admin-settings-help.php:107
910
- #: admin/views/admin-settings-help.php:110 admin/views/goto-pro.php:103
911
- msgid "Documentation"
912
- msgstr "Dokumentation"
913
-
914
- #: admin/views/admin-settings-help.php:108
915
- msgid "Refer to our documentation to set and get started"
916
- msgstr "Werfen Sie einen Blick in unsere Dokumentation für erste Schritte"
917
-
918
- #: admin/views/admin-settings-help.php:115
919
- msgid "Help and Support"
920
- msgstr "Hilfe und Support"
921
-
922
- #: admin/views/admin-settings-help.php:116
923
- msgid "We would love to help you on any queries or issues."
924
- msgstr "Wir helfen Ihnen gerne bei Fragen oder Problemen."
925
-
926
- #: admin/views/admin-settings-help.php:118
927
- msgid "Contact Us"
928
- msgstr "Kontaktieren Sie uns"
929
-
930
- #: admin/views/admin-settings-messagebar.php:9
931
- msgid "Cookie bar"
932
- msgstr "Keksbar"
933
-
934
- #: admin/views/admin-settings-messagebar.php:10
935
- #: admin/views/admin-settings-messagebar.php:145
936
- msgid "Revisit consent"
937
- msgstr "Überprüfung der Zustimmung"
938
-
939
- #: admin/views/admin-settings-messagebar.php:15
940
- msgid "Cookie Bar"
941
- msgstr "Cookie-Leiste"
942
-
943
- #: admin/views/admin-settings-messagebar.php:18
944
- msgid "Message Heading"
945
- msgstr "Überschrift"
946
-
947
- #: admin/views/admin-settings-messagebar.php:21
948
- msgid "Leave it blank, If you do not need a heading"
949
- msgstr "Lassen Sie es leer, wenn Sie keine Überschrift benötigen"
950
-
951
- #: admin/views/admin-settings-messagebar.php:26
952
- msgid "Message"
953
- msgstr "Nachricht"
954
-
955
- #: admin/views/admin-settings-messagebar.php:32
956
- msgid "Shortcodes allowed: see the Help Guide tab"
957
- msgstr "Shortcodes sind möglich - siehe den Tab \"Leitfaden\""
958
-
959
- #: admin/views/admin-settings-messagebar.php:32
960
- msgid ""
961
- "Examples: \"We use cookies on this website [cookie_accept] to find out how "
962
- "to delete cookies [cookie_link].\""
963
- msgstr ""
964
- "Beispiele: \"Wir verwenden Cookies auf dieser Website [cookie_accept], um "
965
- "herauszufinden, wie Sie Cookies [cookie_link] löschen können.\""
966
-
967
- #: admin/views/admin-settings-messagebar.php:36
968
- msgid "Cookie Bar Colour"
969
- msgstr "Farbe der Cookie-Leiste"
970
-
971
- #: admin/views/admin-settings-messagebar.php:46
972
- msgid "Text Colour"
973
- msgstr "Schriftfarbe"
974
-
975
- #: admin/views/admin-settings-messagebar.php:55
976
- msgid "Font"
977
- msgstr "Schriftart"
978
-
979
- #: admin/views/admin-settings-messagebar.php:63
980
- msgid "Show cookie bar as"
981
- msgstr "Cookie-Leiste anzeigen als"
982
-
983
- #: admin/views/admin-settings-messagebar.php:68
984
- msgid "Banner"
985
- msgstr "Banner"
986
-
987
- #: admin/views/admin-settings-messagebar.php:69
988
- msgid "Popup"
989
- msgstr "Pop-up"
990
-
991
- #: admin/views/admin-settings-messagebar.php:70
992
- msgid "Widget"
993
- msgstr "Widget"
994
-
995
- #: admin/views/admin-settings-messagebar.php:74
996
- msgid "Position"
997
- msgstr "Position"
998
-
999
- #: admin/views/admin-settings-messagebar.php:84
1000
- msgid "Add overlay?"
1001
- msgstr "Overlay hinzufügen?"
1002
-
1003
- #: admin/views/admin-settings-messagebar.php:88
1004
- msgid ""
1005
- "When the popup is active, an overlay will block the user from browsing the "
1006
- "site."
1007
- msgstr ""
1008
- "Wenn das Popup aktiv ist, wird ein Overlay den Nutzer vom Anzeigen der Seite "
1009
- "abhalten."
1010
-
1011
- #: admin/views/admin-settings-messagebar.php:89
1012
- msgid "`Accept on scroll` will not work along with this option."
1013
- msgstr ""
1014
- "\"Durch Scrollen akzeptieren\" wird mit dieser Option nicht funktionieren."
1015
-
1016
- #: admin/views/admin-settings-messagebar.php:93
1017
- msgid "Position:"
1018
- msgstr "Position:"
1019
-
1020
- #: admin/views/admin-settings-messagebar.php:98
1021
- msgid "Header"
1022
- msgstr "Header"
1023
-
1024
- #: admin/views/admin-settings-messagebar.php:99
1025
- msgid "Footer"
1026
- msgstr "Footer"
1027
-
1028
- #: admin/views/admin-settings-messagebar.php:108
1029
- msgid "Fix Cookie Bar to Header?"
1030
- msgstr "Cookie-Leiste im Header fixieren?"
1031
-
1032
- #: admin/views/admin-settings-messagebar.php:112
1033
- msgid ""
1034
- "If you select \"Header\" then you can optionally stick the cookie bar to the "
1035
- "header. Will not have any effect if you select \"Footer\"."
1036
- msgstr ""
1037
- "Wenn Sie \"Header\" wählen, kann die Cookie Leiste optional im Header "
1038
- "fixiert werden (sog. \"Sticky\"-Verhalten). Wenn Sie \"Footer\" wählen, wird "
1039
- "dieser Effekt nicht angewendet."
1040
-
1041
- #: admin/views/admin-settings-messagebar.php:120
1042
- msgid "On load"
1043
- msgstr "Beim Laden der Seite"
1044
-
1045
- #: admin/views/admin-settings-messagebar.php:125
1046
- #: admin/views/admin-settings-messagebar.php:135
1047
- msgid "Animate"
1048
- msgstr "Animieren"
1049
-
1050
- #: admin/views/admin-settings-messagebar.php:126
1051
- #: admin/views/admin-settings-messagebar.php:136
1052
- msgid "Sticky"
1053
- msgstr "Angeheftet"
1054
-
1055
- #: admin/views/admin-settings-messagebar.php:130
1056
- msgid "On hide"
1057
- msgstr "Beim Ausblenden"
1058
-
1059
- #: admin/views/admin-settings-messagebar.php:145
1060
- msgid "previously"
1061
- msgstr "vorheriger Artikel"
1062
-
1063
- #: admin/views/admin-settings-messagebar.php:145
1064
- msgid "Show again tab"
1065
- msgstr "Tab \"Wieder einblenden\""
1066
-
1067
- #: admin/views/admin-settings-messagebar.php:147
1068
- msgid ""
1069
- "Revisit consent will allow the visitors to view/edit/revoke their prior "
1070
- "preferences. This can be done via a widget and/or a shortcode. A small "
1071
- "privacy widget is automatically displayed at the footer of your website if "
1072
- "the widget option is enabled. You can also manually insert a link to manage "
1073
- "consent by adding the shortcode <b>[wt_cli_manage_consent]</b> to your "
1074
- "website."
1075
- msgstr ""
1076
- "Durch die Einwilligung zum erneuten Besuch können die Besucher ihre "
1077
- "vorherigen Einstellungen anzeigen / bearbeiten / widerrufen. Dies kann über "
1078
- "ein Widget und / oder einen Shortcode erfolgen. Ein kleines Datenschutz-"
1079
- "Widget wird automatisch in der Fußzeile Ihrer Website angezeigt, wenn die "
1080
- "Widget-Option aktiviert ist. Sie können auch manuell einen Link einfügen, um "
1081
- "die Einwilligung zu verwalten, indem <b>Sie</b> Ihrer Website den "
1082
- "<b>Shortcode [wt_cli_manage_consent]</b> hinzufügen."
1083
-
1084
- #: admin/views/admin-settings-messagebar.php:152
1085
- msgid "Enable revisit consent widget"
1086
- msgstr ""
1087
- "Aktivieren Sie das Widget für die Einwilligung zur erneuten Überprüfung"
1088
-
1089
- #: admin/views/admin-settings-messagebar.php:152
1090
- msgid ""
1091
- "By enabling this option a small privacy widget is automatically displayed at "
1092
- "the footer of your website."
1093
- msgstr ""
1094
- "Durch Aktivieren dieser Option wird automatisch ein kleines Datenschutz-"
1095
- "Widget in der Fußzeile Ihrer Website angezeigt."
1096
-
1097
- #: admin/views/admin-settings-messagebar.php:163
1098
- #: admin/views/admin-settings-messagebar.php:180
1099
- msgid "Tab Position"
1100
- msgstr "Tab-Position"
1101
-
1102
- #: admin/views/admin-settings-messagebar.php:168
1103
- #: admin/views/admin-settings-messagebar.php:171
1104
- msgid "Right"
1105
- msgstr "Rechts"
1106
-
1107
- #: admin/views/admin-settings-messagebar.php:169
1108
- #: admin/views/admin-settings-messagebar.php:172
1109
- msgid "Left"
1110
- msgstr "Links"
1111
-
1112
- #: admin/views/admin-settings-messagebar.php:187
1113
- msgid "Bottom Right"
1114
- msgstr "Unten rechts"
1115
-
1116
- #: admin/views/admin-settings-messagebar.php:190
1117
- msgid "Bottom Left"
1118
- msgstr "Unten links"
1119
-
1120
- #: admin/views/admin-settings-messagebar.php:193
1121
- msgid "Top Right"
1122
- msgstr "Oben rechts"
1123
-
1124
- #: admin/views/admin-settings-messagebar.php:196
1125
- msgid "Top Left"
1126
- msgstr "Oben links"
1127
-
1128
- #: admin/views/admin-settings-messagebar.php:203
1129
- msgid "From Right Margin"
1130
- msgstr "Vom rechten Rand"
1131
-
1132
- #: admin/views/admin-settings-messagebar.php:203
1133
- msgid "From Left Margin"
1134
- msgstr "Linker Abstand"
1135
-
1136
- #: admin/views/admin-settings-messagebar.php:206
1137
- msgid "Specify"
1138
- msgstr "Angeben"
1139
-
1140
- #: admin/views/admin-settings-messagebar.php:215
1141
- #: admin/views/admin_necessary_cookie.php:33
1142
- #: admin/views/admin_non_necessary_cookie.php:48
1143
- msgid "Title"
1144
- msgstr "Titel"
1145
-
1146
- #: admin/views/admin-settings-save-button.php:12
1147
- #: admin/views/admin_necessary_cookie.php:52
1148
- #: admin/views/admin_non_necessary_cookie.php:87
1149
- #: public/modules/script-blocker/script-blocker.php:219
1150
- msgid "Update Settings"
1151
- msgstr "Einstellungen speichern"
1152
-
1153
- #: admin/views/admin_necessary_cookie.php:26
1154
- msgid "Necessary Cookie Settings"
1155
- msgstr "Notwendige Cookie-Einstellungen"
1156
-
1157
- #: admin/views/admin_non_necessary_cookie.php:23
1158
- msgid "Non-necessary Cookie Settings"
1159
- msgstr "Einstellungen für nicht erforderliche Cookies"
1160
-
1161
- #: admin/views/admin_non_necessary_cookie.php:31
1162
- msgid "Enable Non-necessary Cookie"
1163
- msgstr "Nicht erforderliche Cookies aktivieren"
1164
-
1165
- #: admin/views/admin_non_necessary_cookie.php:38
1166
- msgid "Default state"
1167
- msgstr "Standardverhalten"
1168
-
1169
- #: admin/views/admin_non_necessary_cookie.php:39
1170
- #: public/modules/script-blocker/views/settings.php:141
1171
- #: public/views/cookie-law-info_popup_content.php:7
1172
- msgid "Enabled"
1173
- msgstr "Aktiviert"
1174
-
1175
- #: admin/views/admin_non_necessary_cookie.php:40
1176
- #: public/views/cookie-law-info_popup_content.php:8
1177
- msgid "Disabled"
1178
- msgstr "Deaktiviert"
1179
-
1180
- #: admin/views/admin_non_necessary_cookie.php:42
1181
- msgid ""
1182
- "If you enable this option, the category toggle button will be in the active "
1183
- "state for cookie consent."
1184
- msgstr ""
1185
- "Wenn Sie diese Option aktivieren, befindet sich die Kategorie-Umschaltfläche "
1186
- "im aktiven Status für die Cookie-Zustimmung."
1187
-
1188
- #: admin/views/admin_non_necessary_cookie.php:62
1189
- msgid ""
1190
- "This script will be added to the page HEAD section if the above settings is "
1191
- "enabled and user has give consent."
1192
- msgstr ""
1193
- "Dieses Skript wird im HEAD-Bereich der Seite hinzugefügt, wenn die oben "
1194
- "genannten Einstellungen aktiviert sind und der Benutzer seine Zustimmung "
1195
- "gegeben hat."
1196
-
1197
- #: admin/views/admin_non_necessary_cookie.php:67
1198
- msgid ""
1199
- "Print scripts in the head tag on the front end if above cookie settings is "
1200
- "enabled and user has given consent."
1201
- msgstr ""
1202
- "Skripte im HEAD-Tag des Frontends ausgeben, wenn die oben genannten "
1203
- "Einstellungen aktiviert sind und der Benutzer seine Zustimmung gegeben hat."
1204
-
1205
- #: admin/views/admin_non_necessary_cookie.php:74
1206
- msgid ""
1207
- "This script will be added right after the BODY section if the above settings "
1208
- "is enabled and user has given consent."
1209
- msgstr ""
1210
- "Dieses Skript wird direkt nach dem BODY-Abschnitt hinzugefügt, wenn die "
1211
- "obigen Einstellungen aktiviert sind und der Benutzer seine Zustimmung "
1212
- "gegeben hat."
1213
-
1214
- #: admin/views/admin_non_necessary_cookie.php:77
1215
- msgid ""
1216
- "Print scripts before the closing body tag on the front end if above cookie "
1217
- "settings is enabled and user has given consent."
1218
- msgstr ""
1219
- "Skripte vor dem schließenden BODY-Tag des Frontends ausgeben, wenn die oben "
1220
- "genannten Einstellungen aktiviert sind und der Benutzer seine Zustimmung "
1221
- "gegeben hat."
1222
-
1223
- #: admin/views/goto-pro.php:56
1224
- msgid "Where did my settings go?"
1225
- msgstr "Wo befinden sich meine Einstellungen?"
1226
-
1227
- #: admin/views/goto-pro.php:57
1228
- msgid "Cookie Law Info version 0.9 has been updated and has new settings."
1229
- msgstr ""
1230
- "Cookie Law Info Version 0.9 wurde aktualisiert und hat neue Einstellungen."
1231
-
1232
- #: admin/views/goto-pro.php:57
1233
- msgid "Your previous settings are safe."
1234
- msgstr "Ihre vorherigen Einstellungen sind sicher."
1235
-
1236
- #: admin/views/goto-pro.php:58
1237
- msgid ""
1238
- "You can either copy over your old settings to this version, or use the new "
1239
- "default values."
1240
- msgstr ""
1241
- "Sie können entweder Ihre alten Einstellungen in diese Version kopieren oder "
1242
- "die neuen Standardwerte verwenden."
1243
-
1244
- #: admin/views/goto-pro.php:60
1245
- msgid "Would you like to:"
1246
- msgstr "Was möchten Sie gerne machen:"
1247
-
1248
- #: admin/views/goto-pro.php:62
1249
- msgid "Use previous settings"
1250
- msgstr "Vorherige Einstellungen verwenden"
1251
-
1252
- #: admin/views/goto-pro.php:63
1253
- msgid "Start afresh with the new version"
1254
- msgstr "Beginnen Sie neu mit der neuen Version"
1255
-
1256
- #: admin/views/goto-pro.php:67
1257
- msgid ""
1258
- "If you want to go back to the previous version you can always download it "
1259
- "again from"
1260
- msgstr ""
1261
- "Wenn Sie zurück auf die vorherige Version wechseln möchten, können Sie diese "
1262
- "jederzeit hier herunterladen"
1263
-
1264
- #: admin/views/goto-pro.php:73
1265
- msgid "30 Day Money Back Guarantee"
1266
- msgstr "30 Tage Geld-zurück-Garantie"
1267
-
1268
- #: admin/views/goto-pro.php:74
1269
- msgid "Fast and Superior Support"
1270
- msgstr "Schnelle und überlegene Unterstützung"
1271
-
1272
- #: admin/views/goto-pro.php:75
1273
- msgid "10X Powerful with GDPR Cookie Consent Features That Every Site Needs"
1274
- msgstr ""
1275
- "10-fach leistungsfähig mit GDPR-Cookie-Zustimmungsfunktionen, die jeder "
1276
- "Standort benötigt"
1277
-
1278
- #: admin/views/goto-pro.php:78
1279
- msgid "Upgrade to Premium"
1280
- msgstr "Auf Premium upgraden"
1281
-
1282
- #: admin/views/goto-pro.php:84
1283
- msgid "Automatic Cookie Scanner"
1284
- msgstr "Automatischer Cookie-Scanner"
1285
-
1286
- #: admin/views/goto-pro.php:85
1287
- msgid ""
1288
- "Auto block scripts - Google Analytics, Facebook Pixel, Google Tag Manager, "
1289
- "Hotjar Analytics, Google Publisher Tag, Youtube embed, Vimeo embed, Google "
1290
- "maps, Addthis widget, Sharethis widget, Twitter widget, Soundcloud embed, "
1291
- "Slideshare embed, Linkedin widget, Instagram embed, Pinterest widget"
1292
- msgstr ""
1293
- "Auto-Block-Skripts - Google Analytics, Facebook Pixel, Google Tag-Manager, "
1294
- "Hotjar Analytics, Google Publisher-Tag, Youtube-Einbettung, Vimeo-"
1295
- "Einbettung, Google Maps, Addthis-Widget, Sharethis-Widget, Twitter-Widget, "
1296
- "Soundcloud-Einbettung, Slideshare-Einbettung, Linkedin-Widget, Instagram-"
1297
- "Einbettung , Pinterest-Widget"
1298
-
1299
- #: admin/views/goto-pro.php:86
1300
- msgid "Location based exclusion of cookie notice for EU countries"
1301
- msgstr "Standortbezogener Ausschluss der Cookie-Benachrichtigung für EU-Länder"
1302
-
1303
- #: admin/views/goto-pro.php:87
1304
- msgid "Granular control over the cookies/scipts used by the website"
1305
- msgstr ""
1306
- "Detaillierte Kontrolle über die von der Website verwendeten Cookies / Skripts"
1307
-
1308
- #: admin/views/goto-pro.php:88
1309
- msgid "User consent audit logs"
1310
- msgstr "Überwachungsprotokolle für die Zustimmung der Benutzer"
1311
-
1312
- #: admin/views/goto-pro.php:89
1313
- msgid "Customized privacy overview"
1314
- msgstr "Benutzerdefinierte Datenschutzübersicht"
1315
-
1316
- #: admin/views/goto-pro.php:90
1317
- msgid "Cookie bar preview in admin settings page"
1318
- msgstr "Cookie bar vorschau auf der Admin-Einstellungsseite"
1319
-
1320
- #: admin/views/goto-pro.php:91
1321
- msgid "Advanced support for cache plugins"
1322
- msgstr "Erweiterte Unterstützung für Cache-Plugins"
1323
-
1324
- #: admin/views/goto-pro.php:92
1325
- msgid "Cookie bar theme customizer for banner/ widgets/ popup"
1326
- msgstr "Anpassen der Cookie-Leiste für Banner / Widgets / Popup"
1327
-
1328
- #: admin/views/goto-pro.php:93
1329
- msgid "GDPR compliance with Google Tag Manager"
1330
- msgstr "GDPR-Konformität mit Google Tag Manager"
1331
-
1332
- #: admin/views/goto-pro.php:94
1333
- msgid "Javascript helper functions"
1334
- msgstr "Javascript-Hilfsfunktionen"
1335
-
1336
- #: admin/views/goto-pro.php:108
1337
- msgid "Like this plugin?"
1338
- msgstr "Gefällt Ihnen dieses Plugin?"
1339
-
1340
- #: admin/views/goto-pro.php:109
1341
- msgid "If you find this plugin useful please show your support and rate it"
1342
- msgstr "Wenn"
1343
-
1344
- #: admin/views/goto-pro.php:109
1345
- msgid " on"
1346
- msgstr " auf"
1347
-
1348
- #: admin/views/goto-pro.php:109
1349
- msgid " much appreciated!"
1350
- msgstr " Herzlichen Dank!"
1351
-
1352
- #: cookie-law-info.php:80
1353
- msgid ""
1354
- "Please make sure the cache is cleared after each plugin update especially if "
1355
- "you have minified JS and/or CSS files."
1356
- msgstr ""
1357
- "Stellen Sie sicher, dass der Cache nach jedem Plugin-Update gelöscht wird, "
1358
- "insbesondere wenn Sie JS- und / oder CSS-Dateien minimiert haben."
1359
-
1360
- #: includes/class-cookie-law-info-review_request.php:52
1361
- #, php-format
1362
- msgid ""
1363
- "Hey, we at %sWebToffee%s would like to thank you for using our plugin. We "
1364
- "would really appreciate if you could take a moment to drop a quick review "
1365
- "that will inspire us to keep going."
1366
- msgstr ""
1367
- "Hey, wir bei %sWebToffee% möchten uns bei Ihnen für die Verwendung unseres "
1368
- "Plugins bedanken. Wir würden uns sehr freuen, wenn Sie sich einen Moment "
1369
- "Zeit nehmen könnten, um eine kurze Bewertung abzugeben, die uns dazu "
1370
- "inspirieren wird, weiterzumachen."
1371
-
1372
- #: includes/class-cookie-law-info-review_request.php:55
1373
- msgid "Remind me later"
1374
- msgstr "Später daran erinnern"
1375
-
1376
- #: includes/class-cookie-law-info-review_request.php:56
1377
- msgid "Not interested"
1378
- msgstr "Kein Interesse"
1379
-
1380
- #: includes/class-cookie-law-info-review_request.php:57
1381
- msgid "Review now"
1382
- msgstr "Überprüfen Sie jetzt"
1383
-
1384
- #: public/class-cookie-law-info-public.php:251
1385
- msgid "GDPR Cookie Consent"
1386
- msgstr "GDPR Cookie Consent"
1387
-
1388
- #: public/class-cookie-law-info-public.php:252
1389
- msgid "Cookie List"
1390
- msgstr "Cookie-Liste"
1391
-
1392
- #: public/class-cookie-law-info-public.php:253
1393
- #: public/modules/shortcode/shortcode.php:208
1394
- msgid "Cookie"
1395
- msgstr "Cookie"
1396
-
1397
- #: public/class-cookie-law-info-public.php:254
1398
- msgid "Add New"
1399
- msgstr "Neue hinzufügen"
1400
-
1401
- #: public/class-cookie-law-info-public.php:255
1402
- msgid "Add New Cookie Type"
1403
- msgstr "Neuen Cookie-Typ hinzufügen"
1404
-
1405
- #: public/class-cookie-law-info-public.php:256
1406
- msgid "Edit Cookie Type"
1407
- msgstr "Cookie-Typ bearbeiten"
1408
-
1409
- #: public/class-cookie-law-info-public.php:257
1410
- msgid "New Cookie Type"
1411
- msgstr "Neuer Cookie-Typ"
1412
-
1413
- #: public/class-cookie-law-info-public.php:258
1414
- msgid "View Cookie Type"
1415
- msgstr "Cookie-Typ anzeigen"
1416
-
1417
- #: public/class-cookie-law-info-public.php:259
1418
- msgid "Search Cookies"
1419
- msgstr "Nach Cookies suchen"
1420
-
1421
- #: public/class-cookie-law-info-public.php:260
1422
- msgid "Nothing found"
1423
- msgstr "Es wurden keine Einträge gefunden"
1424
-
1425
- #: public/class-cookie-law-info-public.php:261
1426
- msgid "Nothing found in Trash"
1427
- msgstr "Es wurden keine Einträge im Papierkorb gefunden"
1428
-
1429
- #: public/modules/script-blocker/script-blocker.php:156
1430
- #: public/modules/script-blocker/script-blocker.php:157
1431
- msgid "Script Blocker"
1432
- msgstr "Script Blocker"
1433
-
1434
- #: public/modules/script-blocker/script-blocker.php:182
1435
- msgid "Status updated"
1436
- msgstr "Status aktualisiert"
1437
-
1438
- #: public/modules/script-blocker/script-blocker.php:206
1439
- msgid "Advanced script rendering"
1440
- msgstr "Erweitertes Skript-Rendering"
1441
-
1442
- #: public/modules/script-blocker/script-blocker.php:208
1443
- #: public/modules/script-blocker/views/settings.php:7
1444
- msgid "Enable"
1445
- msgstr "Aktivieren"
1446
-
1447
- #: public/modules/script-blocker/script-blocker.php:209
1448
- #: public/modules/script-blocker/views/settings.php:7
1449
- msgid "Disable"
1450
- msgstr "Deaktivieren"
1451
-
1452
- #: public/modules/script-blocker/script-blocker.php:210
1453
- msgid ""
1454
- "Advanced script rendering will render the blocked scripts using javascript "
1455
- "thus eliminating the need for a page refresh. It is also optimized for "
1456
- "caching since there is no server-side processing after obtaining the consent."
1457
- msgstr ""
1458
- "Durch das erweiterte Rendern von Skripten werden die blockierten Skripte mit "
1459
- "Javascript gerendert, sodass keine Seitenaktualisierung erforderlich ist. Es "
1460
- "ist auch für das Caching optimiert, da nach Einholung der Zustimmung keine "
1461
- "serverseitige Verarbeitung erfolgt."
1462
-
1463
- #: public/modules/script-blocker/views/settings.php:9
1464
- msgid "Script blocker is enabled."
1465
- msgstr "Skriptblocker ist aktiviert."
1466
-
1467
- #: public/modules/script-blocker/views/settings.php:9
1468
- msgid ""
1469
- "Script blocker is currently disabled. Enable the blocker if you want any of "
1470
- "the below listed plugins to be auto blocked."
1471
- msgstr ""
1472
- "Der Skriptblocker ist derzeit deaktiviert. Aktivieren Sie den Blocker, wenn "
1473
- "eines der unten aufgeführten Plugins automatisch blockiert werden soll."
1474
-
1475
- #: public/modules/script-blocker/views/settings.php:10
1476
- #, php-format
1477
- msgid "<a href=\"javascript: submitform()\">%s</a>"
1478
- msgstr "<a href=\"javascript: submitform()\">%s</a>"
1479
-
1480
- #: public/modules/script-blocker/views/settings.php:14
1481
- #, php-format
1482
- msgid ""
1483
- "Advanced script rendering is currently disabled. It should be enabled for "
1484
- "the automatic script blocker to function. <a href=\"%s\">Enable.</a>"
1485
- msgstr ""
1486
- "Das erweiterte Rendern von Skripten ist derzeit deaktiviert. Es sollte "
1487
- "aktiviert sein, damit der automatische Skriptblocker funktioniert. <a href="
1488
- "\"%s\">Aktivieren.</a>"
1489
-
1490
- #: public/modules/script-blocker/views/settings.php:113
1491
- msgid "Manage Script Blocking"
1492
- msgstr "Manage Script Blocking"
1493
-
1494
- #: public/modules/script-blocker/views/settings.php:134
1495
- #, php-format
1496
- msgid ""
1497
- "Below is the list of plugins currently supported for auto blocking. Plugins "
1498
- "marked inactive are either not installed or activated on your website. "
1499
- "Enabled plugins will be blocked by default on the front-end of your website "
1500
- "prior to obtaining user consent and rendered respectively based on consent. "
1501
- "<a href=\"%s\" target=\"_blank\">Read more.</a>"
1502
- msgstr ""
1503
- "Unten finden Sie eine Liste der Plugins, die derzeit für die automatische "
1504
- "Blockierung unterstützt werden. Als inaktiv gekennzeichnete Plugins werden "
1505
- "entweder nicht auf Ihrer Website installiert oder aktiviert. Aktivierte "
1506
- "Plugins werden standardmäßig im Front-End Ihrer Website blockiert, bevor die "
1507
- "Zustimmung des Benutzers eingeholt und auf der Grundlage der Zustimmung "
1508
- "gerendert wird. <a href=\"%s\" target=\"_blank\">Weiterlesen.</a>"
1509
-
1510
- #: public/modules/script-blocker/views/settings.php:140
1511
- msgid "Name"
1512
- msgstr "Name"
1513
-
1514
- #: public/modules/script-blocker/views/settings.php:141
1515
- msgid ""
1516
- "Enabled: Plugins will be blocked by default prior to obtaining user consent."
1517
- msgstr ""
1518
- "Aktiviert: Plugins werden standardmäßig blockiert, bevor die Zustimmung des "
1519
- "Benutzers eingeholt wird."
1520
-
1521
- #: public/modules/script-blocker/views/settings.php:141
1522
- msgid "Disabled: Plugins will be rendered prior to obtaining consent."
1523
- msgstr "Deaktiviert: Plugins werden vor Einholung der Zustimmung gerendert."
1524
-
1525
- #: public/modules/script-blocker/views/settings.php:175
1526
- msgid "Inactive"
1527
- msgstr "Inaktiv"
1528
-
1529
- #: public/modules/shortcode/shortcode.php:99
1530
- msgid "Your current state:"
1531
- msgstr "Ihr aktueller Stand:"
1532
-
1533
- #: public/modules/shortcode/shortcode.php:104
1534
- msgid "Consent accepted."
1535
- msgstr "Zustimmung akzeptiert."
1536
-
1537
- #: public/modules/shortcode/shortcode.php:107
1538
- msgid "Consent rejected."
1539
- msgstr "Zustimmung abgelehnt."
1540
-
1541
- #: public/modules/shortcode/shortcode.php:111
1542
- msgid "No consent given."
1543
- msgstr "Keine Einwilligung erteilt."
1544
-
1545
- #: public/modules/shortcode/shortcode.php:113
1546
- msgid "Manage your consent."
1547
- msgstr "Verwalten Sie Ihre Einwilligung."
1548
-
1549
- #: public/modules/shortcode/shortcode.php:150
1550
- msgid "Delete Cookies"
1551
- msgstr "Cookies löschen"
1552
-
1553
- #: public/modules/shortcode/shortcode.php:186
1554
- msgid "No records found"
1555
- msgstr "Keine Aufzeichnungen gefunden"
1556
-
1557
- #: public/modules/shortcode/shortcode.php:212
1558
- msgid "Type"
1559
- msgstr "Typ"
1560
-
1561
- #: public/modules/shortcode/shortcode.php:216
1562
- msgid "Duration"
1563
- msgstr "Dauer"
1564
-
1565
- #: public/modules/shortcode/shortcode.php:533
1566
- msgid "Close the cookie bar"
1567
- msgstr "Schließen Sie die Cookie-Leiste"
1568
-
1569
- #: public/modules/shortcode/shortcode.php:533
1570
- msgid "Close and Accept"
1571
- msgstr "Schließen und akzeptieren"
1572
-
1573
- #: public/views/cookie-law-info_bar.php:23
1574
- msgid "Close"
1575
- msgstr "Schließen"
1576
-
1577
- #: public/views/cookie-law-info_popup_content.php:6
1578
- msgid "Always Enabled"
1579
- msgstr "Immer aktiviert"
1580
-
1581
- #: public/views/cookie-law-info_popup_content.php:9
1582
- msgid "Show more"
1583
- msgstr "Zeig mehr"
1584
-
1585
- #: public/views/cookie-law-info_popup_content.php:9
1586
- msgid "Show less"
1587
- msgstr "Zeige weniger"
1588
-
1589
- #~ msgid ""
1590
- #~ "Which plugin are you using for language translation? Could you tell us a "
1591
- #~ "bit more?"
1592
- #~ msgstr ""
1593
- #~ "Welches Plugin verwenden Sie für die Sprachübersetzung? Können Sie uns "
1594
- #~ "etwas mehr erzählen?"
1595
-
1596
- #~ msgid "Caching issues"
1597
- #~ msgstr "Caching-Probleme"
1598
-
1599
- #~ msgid "Which caching plugin are you using? Could you tell us a bit more?"
1600
- #~ msgstr ""
1601
- #~ "Welches Caching-Plugin verwenden Sie? Können Sie uns etwas mehr erzählen?"
1602
-
1603
- #~ msgid "Cookie Law Settings"
1604
- #~ msgstr "Cookie-Law-Einstellungen"
1605
-
1606
- #~ msgid "Show Again Tab"
1607
- #~ msgstr "Tab \"Wieder einblenden\""
1608
-
1609
- #~ msgid "Use Show Again Tab?"
1610
- #~ msgstr "Den Tab \"Wieder einblenden\" verwenden?"
1611
-
1612
- #~ msgid "Show More Text"
1613
- #~ msgstr "\"Mehr anzeigen\"-Text"
1614
-
1615
- #~ msgid "Non-necessary Cookie"
1616
- #~ msgstr "Nicht erforderlicher Cookie"
1617
-
1618
- #~ msgid "Necessary Cookie"
1619
- #~ msgstr "Notwendiges Cookie"
1620
-
1621
- #~ msgid "Your Cookie Law Info bar is switched on"
1622
- #~ msgstr "Ihr Cookie Gesetz Info-Leiste ist eingeschaltet"
1623
-
1624
- #~ msgid "Your Cookie Law Info bar is switched off"
1625
- #~ msgstr "Ihre Cookie Law Infoleiste ist eingeschaltet"
1626
-
1627
- #~ msgid "Cookie Bar will be shown in:"
1628
- #~ msgstr "Die Cookie-Leiste wird angezeigt im:"
1629
-
1630
- #~ msgid "Disappear"
1631
- #~ msgstr "Ausblenden"
1632
-
1633
- #~ msgid "Show Border?"
1634
- #~ msgstr "Rahmen anzeigen?"
1635
-
1636
- #~ msgid "Border Colour"
1637
- #~ msgstr "Rahmenfarbe"
1638
-
1639
- #~ msgid ""
1640
- #~ "If you just want a standard green \"Accept\" button that closes the "
1641
- #~ "header and nothing more, use this shortcode. It is already styled, you "
1642
- #~ "don't need to customise it."
1643
- #~ msgstr ""
1644
- #~ "Wenn Sie nur eine grüne Standard-Schaltfläche \"Akzeptieren\" wünschen, "
1645
- #~ "die die Kopfzeile schließt und sonst nichts, verwenden Sie diesen "
1646
- #~ "Shortcode. Er ist bereits formatiert und Sie müssen nichts anpassen."
1647
-
1648
- #~ msgid ""
1649
- #~ "Alternatively you can add a colour value. Choose from: red, blue, orange, "
1650
- #~ "yellow, green or pink."
1651
- #~ msgstr ""
1652
- #~ "Alternativ können Sie einen Farbwert hinzufügen. Wählen Sie aus den "
1653
- #~ "Farben Rot, Blau, Orange, Gelb, Grün oder Pink."
1654
-
1655
- #~ msgid "Careful to use the British spelling of \"colour\" for the attribute."
1656
- #~ msgstr ""
1657
- #~ "Achten Sie darauf, die britische Schreibweise \"colour\" für das Attribut "
1658
- #~ "zu verwenden."
1659
-
1660
- #~ msgid "Cookie Bar as popup:"
1661
- #~ msgstr "Cookie bar als:"
1662
-
1663
- #~ msgid ""
1664
- #~ "Manage list of cookies ( Name, CookieID, Description, Duration, Type, "
1665
- #~ "Category, Header Script, Footer Script)."
1666
- #~ msgstr ""
1667
- #~ "Cookie-Liste verwalten (Name, Cookie-ID, Beschreibung, Dauer, Typ, "
1668
- #~ "Kategorie, Header-Skript, Footer-Skript)."
1669
-
1670
- #~ msgid "Manage Cookie Categories."
1671
- #~ msgstr "Cookie-Kategorien verwalten."
1672
-
1673
- #~ msgid ""
1674
- #~ "Scan and auto block scripts - Google Analytics, FB Pixel, Google tag "
1675
- #~ "manager."
1676
- #~ msgstr ""
1677
- #~ "Automatisches Scannen und Blockieren von Skripts - Google Analytics, FB "
1678
- #~ "Pixel, Google Tag Manager."
1679
-
1680
- #~ msgid "Location based exclusion of cookie notice for EU countries."
1681
- #~ msgstr "Geo-basierter Ausschluss vom Cookie-Hinweis für EU-Länder."
1682
-
1683
- #~ msgid ""
1684
- #~ "Provide the users with the granular control over the cookies/scipts used "
1685
- #~ "by the website."
1686
- #~ msgstr ""
1687
- #~ "Detaillierte Kontrolle über die Cookies und Skripts, die die Website "
1688
- #~ "nutzt, für den Benutzer."
1689
-
1690
- #~ msgid "Optionally log users' consent and export into a CSV file."
1691
- #~ msgstr ""
1692
- #~ "Benutzer-Einwilligungen optional protokollieren und in eine CSV-Datei "
1693
- #~ "exportieren."
1694
-
1695
- #~ msgid "Customize the privacy overview in the cookie settings popup."
1696
- #~ msgstr "Anpassung der Datenschutz-Übersicht im Cookie-Einstellungen-Popup."
1697
-
1698
- #~ msgid "Export/import cookies and related information via CSV file."
1699
- #~ msgstr ""
1700
- #~ "Export und Import von Cookies und relevanten Informationen via CSV-Datei."
1701
-
1702
- #~ msgid "Scan and import/export the cookies in the homepage."
1703
- #~ msgstr ""
1704
- #~ "Scannen und Importieren / Exportieren Sie die Cookies auf der Startseite."
1705
-
1706
- #~ msgid ""
1707
- #~ "Customisable to look just like your own website's style: customise the "
1708
- #~ "colours, styles and fonts."
1709
- #~ msgstr ""
1710
- #~ "Anpassbar, um genau wie Ihre Website auszusehen: Wählen Sie die Farben, "
1711
- #~ "Styles und Schriftarten."
1712
-
1713
- #~ msgid "Put the cookie bar in either the header or the footer."
1714
- #~ msgstr "Anzeige der Cookie-Leiste wahlweise im Header oder Footer."
1715
-
1716
- #~ msgid ""
1717
- #~ "Allow to display cookie cettings popup where site visitors can opt-in or "
1718
- #~ "give consent to cookie categories."
1719
- #~ msgstr ""
1720
- #~ "Anzeigen eines Cookie-Einstellungen-Popups, wo der Website-Besucher seine "
1721
- #~ "Einwillung für bestimmte Cookie-Kategorien erteilen kann."
1722
-
1723
- #~ msgid "Priority: (Numeric - Higher the value, higher the priority)"
1724
- #~ msgstr "Priorität: (numerische - höhere Wert, höher die Priorität)"
1725
-
1726
- #~ msgid "Priority"
1727
- #~ msgstr "Priorität"
1728
-
1729
- #~ msgid "Scan & Download"
1730
- #~ msgstr "Scannen & Herunterladen"
1731
-
1732
- #~ msgid "Export Cookie"
1733
- #~ msgstr "Cookie exportieren"
1734
-
1735
- #~ msgid "You do not have sufficient permissions to access this page."
1736
- #~ msgstr ""
1737
- #~ "Sie haben nicht die nötigen Berechtigungen auf die Seite zuzugreifen."
1738
-
1739
- #~ msgid "Export as CSV file"
1740
- #~ msgstr "Exportieren als CSV-Datei"
1741
-
1742
- #~ msgid "Export"
1743
- #~ msgstr "Export"
1744
-
1745
- #~ msgid "Scan & Import"
1746
- #~ msgstr "Scannen und Importieren"
1747
-
1748
- #~ msgid "Import Cookie"
1749
- #~ msgstr "Cookie importieren"
1750
-
1751
- #~ msgid "BEGIN %s"
1752
- #~ msgstr "Beginnt %s"
1753
-
1754
- #~ msgid "[Line %1$s] %2$s"
1755
- #~ msgstr "[Zeile %1$s] %2$s"
1756
-
1757
- #~ msgid "Import from a CSV file"
1758
- #~ msgstr "Importieren aus einer CSV-Datei"
1759
-
1760
- #~ msgid ""
1761
- #~ "Notice: please make the directory %s writable so that you can see the "
1762
- #~ "error log."
1763
- #~ msgstr "Wichtig!: Setzen Sie das Verzeichnis %s beschreibbar (7777)"
1764
-
1765
- #~ msgid ", please <a href=\"%s\">check the error log</a>"
1766
- #~ msgstr ", bitte <a href=\"%s\">Überprüfen Sie das Fehlerprotokoll</a>"
1767
-
1768
- #~ msgid "Error during file upload."
1769
- #~ msgstr "Fehler beim Hochladen der Datei."
1770
-
1771
- #~ msgid "Cannot extract data from uploaded file or no file was uploaded."
1772
- #~ msgstr ""
1773
- #~ "Es können keine Daten aus der hochgeladenen Datei extrahiert werden oder "
1774
- #~ "es wurde keine Datei hochgeladen."
1775
-
1776
- #~ msgid "No posts was successfully imported%s."
1777
- #~ msgstr "Keine Posts wurden erfolgreich importiert %s."
1778
-
1779
- #~ msgid "Some posts were successfully imported but some were not%s."
1780
- #~ msgstr "Einige Posts wurden erfolgreich importiert, einige jedoch nicht%s."
1781
-
1782
- #~ msgid "Post import was successful."
1783
- #~ msgstr "Post-Import war erfolgreich."
1784
-
1785
- #~ msgid "CSV file"
1786
- #~ msgstr "CSV-Datei"
1787
-
1788
- #~ msgid "You may want to see <a href=\"%s\">the example of the CSV file</a>."
1789
- #~ msgstr ""
1790
- #~ "Möglicherweise möchten Sie <a href=\"%s\"> das Beispiel der CSV-Datei "
1791
- #~ "sehen </a>."
1792
-
1793
- #~ msgid "Import"
1794
- #~ msgstr "Einführen"
1795
-
1796
- #~ msgid "Licence"
1797
- #~ msgstr "Lizenz"
1798
-
1799
- #~ msgid "Show only for EU Countries ( GeoIP )"
1800
- #~ msgstr "Nur für EU-Länder anzeigen (GeoIP)"
1801
-
1802
- #~ msgid "This is the \"main button\" you can customise."
1803
- #~ msgstr "Dies ist die \"Haupt-Schaltfläche\", die Sie oben anpassen können."
1804
-
1805
- #~ msgid "This is the \"read more\" link you can customise."
1806
- #~ msgstr "Dies ist der \"Weiterlesen\"-Link, den Sie oben anpassen können."
1807
-
1808
- #~ msgid "This prints out a nice table of cookies by category."
1809
- #~ msgstr "Dies druckt eine nette Tabelle von Cookies nach Kategorie aus."
1810
-
1811
- #~ msgid "This prints the settings popup of cookie category."
1812
- #~ msgstr "Dies druckt das Einstellungs-Popup der Cookie-Kategorie."
1813
-
1814
- #~ msgid "Add any text you like useful if you want to add another language"
1815
- #~ msgstr ""
1816
- #~ "Fügen Sie beliebigen Text ein (hilfreich z. B., wenn Sie außer Englisch "
1817
- #~ "eine weitere Sprache nutzen möchten)"
1818
-
1819
- #~ msgid "Shortcodes allowed: see the Help guide"
1820
- #~ msgstr "Shortcodes sind möglich - siehe den Tab \"Leitfaden\""
1821
-
1822
- #~ msgid ""
1823
- #~ "The license key for %s has expired. You can reactivate or purchase a "
1824
- #~ "license key from your account <a href=\"%s\" target=\"_blank\">dashboard</"
1825
- #~ "a>."
1826
- #~ msgstr ""
1827
- #~ "Der Lizenzschlüssel für %s ist abgelaufen. Sie können ihn reaktivieren "
1828
- #~ "oder einen neuen Lizenzschlüssel über Ihr Konto <a href=\"%s\" target="
1829
- #~ "\"_blank\"> Dashboard</a> kaufen."
1830
-
1831
- #~ msgid "Licence Activation"
1832
- #~ msgstr "Lizenz-Aktivierung"
1833
-
1834
- #~ msgid "API Licence Key:"
1835
- #~ msgstr "Lizenz"
1836
-
1837
- #~ msgid "Licence Key"
1838
- #~ msgstr "Lizenzkey"
1839
-
1840
- #~ msgid "Licence Email"
1841
- #~ msgstr "Mail:"
1842
-
1843
- #~ msgid "Activate"
1844
- #~ msgstr "Aktivieren"
1845
-
1846
- #~ msgid "This website uses cookies"
1847
- #~ msgstr "Diese Website nutzt Cookies"
1848
-
1849
- #~ msgid "Cookie Category"
1850
- #~ msgstr "Cookie-Kategorie"
1851
-
1852
- #~ msgid "Action is unknown."
1853
- #~ msgstr "Aktion ist unbekannt."
1854
-
1855
- #~ msgid "Category"
1856
- #~ msgstr "Kategorie"
1857
-
1858
- #~ msgid "Key"
1859
- #~ msgstr "key"
1860
-
1861
- #~ msgid "No Consent History"
1862
- #~ msgstr "Keine Einverständniserklärung"
1863
-
1864
- #~ msgid "IP Address"
1865
- #~ msgstr "IP Adresse"
1866
-
1867
- #~ msgid "Visited Date"
1868
- #~ msgstr "Besuchsdatum"
1869
-
1870
- #~ msgid "User ID"
1871
- #~ msgstr "Benutzeridentifikation"
1872
-
1873
- #~ msgid "GDPR Consent History"
1874
- #~ msgstr "DSG-Einverständniserklärung"
1875
-
1876
- #~ msgid "Export Report"
1877
- #~ msgstr "Liste exportieren"
1878
-
1879
- #~ msgid "Event Logged Successfully"
1880
- #~ msgstr "Ereignis erfolgreich protokolliert"
1881
-
1882
- #~ msgid "Logging is not enabled"
1883
- #~ msgstr "Protokollierung ist nicht aktiviert"
1884
-
1885
- #~ msgid "Consent Report"
1886
- #~ msgstr "Einverständniserklärung"
1887
-
1888
- #~ msgid "Error processing migration request (ERROR: 4)"
1889
- #~ msgstr "Fehler beim Verarbeiten der Migrationsanforderung (Fehler: 4)"
1890
-
1891
- #~ msgid "Cookie Law Message Bar"
1892
- #~ msgstr "Cookie-Gesetz-Statusleiste"
1893
-
1894
- #~ msgid "Shortcodes allowed: see settngs section \"Using the Shortcodes\"."
1895
- #~ msgstr "Shortcodes sind möglich - siehe den Tab \"Leitfaden\""
1896
-
1897
- #~ msgid "Link Text"
1898
- #~ msgstr "Link Text"
1899
-
1900
- #~ msgid "Open link in new window?"
1901
- #~ msgstr "Link in einem neuen Fenster öffnen?"
1902
-
1903
- #~ msgid "Link colour"
1904
- #~ msgstr "Linkfarbe"
1905
-
1906
- #~ msgid "Show as button?"
1907
- #~ msgstr "Schaltfläche \"angezeigt?"
1908
-
1909
- #~ msgid "Button colour"
1910
- #~ msgstr "Button Farbe"
1911
-
1912
- #~ msgid "Button Size"
1913
- #~ msgstr "Schaltflächen-Größe"
1914
-
1915
- #~ msgid "Using the Shortcodes"
1916
- #~ msgstr "Verwenden der Shortcodes"
1917
-
1918
- #~ msgid "The shortcodes are:"
1919
- #~ msgstr "Die Shortcodes sind:"
1920
-
1921
- #~ msgid "Are you sure you want to migrate settings?"
1922
- #~ msgstr "Sind Sie sicher, dass Sie Einstellungen migrieren möchten?"
1923
-
1924
- #~ msgid "Help"
1925
- #~ msgstr "Hilfe"
1926
-
1927
- #~ msgid "Report a Bug"
1928
- #~ msgstr "Einen Fehler melden"
1929
-
1930
- #~ msgid "Guide"
1931
- #~ msgstr "Ratgeber"
1932
-
1933
- #~ msgid "About the law"
1934
- #~ msgstr "Über uns"
1935
-
1936
- #~ msgid "Message Bar"
1937
- #~ msgstr "<g id=\"1863\"/>Mitteilungsleiste:"
1938
-
1939
- #~ msgid ""
1940
- #~ "This website uses cookies to improve your experience. We'll assume you're "
1941
- #~ "ok with this, but you can opt-out if you wish.[cookie_button] "
1942
- #~ "[cookie_settings] [cookie_link]"
1943
- #~ msgstr ""
1944
- #~ "Diese Website verwendet Cookies, um Ihre Erfahrung zu verbessern. Wir "
1945
- #~ "gehen davon aus, dass Sie damit einverstanden sind, aber Sie können sich "
1946
- #~ "abmelden, wenn Sie möchten. [cookie_button] [cookie_settings] "
1947
- #~ "[cookie_link]"
1948
-
1949
- #~ msgid "Reject Button:"
1950
- #~ msgstr "Schaltfläche \"ablehnen:"
1951
-
1952
- #~ msgid "Cookie Bar will be show in:"
1953
- #~ msgstr "Cookie-Bar wird angezeigt in:"
1954
-
1955
- #~ msgid "Auto-hide cookie bar after delay?"
1956
- #~ msgstr "Cookie-Leiste nach Verzögerung automatisch ausblenden?"
1957
-
1958
- #~ msgid "Auto-hide cookie bar if the user scrolls?"
1959
- #~ msgstr "Ausblenden Auto-Cookie Bar, wenn der Benutzer einen Bildlauf?"
1960
-
1961
- #~ msgid "Button will only link to URL if Action = Show URL"
1962
- #~ msgstr "Taste wird nur auf URL verlinken, wenn Action = URL zeigen"
1963
-
1964
- #~ msgid "Save"
1965
- #~ msgstr "sparen"
1966
-
1967
- #~ msgid "Accept"
1968
- #~ msgstr "Akzeptieren"
1969
-
1970
- #~ msgid "Reject"
1971
- #~ msgstr "Ablehnen"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/cookie-law-info-es_ES.mo DELETED
Binary file
languages/cookie-law-info-es_ES.po DELETED
@@ -1,1866 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: \n"
4
- "POT-Creation-Date: 2020-11-17 11:30+0530\n"
5
- "PO-Revision-Date: 2020-11-17 11:31+0530\n"
6
- "Last-Translator: \n"
7
- "Language-Team: \n"
8
- "Language: es\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.4.2\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
- "X-Poedit-KeywordsList: __;_e\n"
16
- "X-Poedit-SearchPath-0: .\n"
17
-
18
- #: admin/class-cookie-law-info-admin.php:147
19
- #: admin/class-cookie-law-info-admin.php:148
20
- #: admin/class-cookie-law-info-admin.php:247
21
- #: admin/partials/cookie-law-info-admin_settings.php:31
22
- msgid "Settings"
23
- msgstr "Ajustes"
24
-
25
- #: admin/class-cookie-law-info-admin.php:155
26
- #: admin/class-cookie-law-info-admin.php:156
27
- #: public/modules/script-blocker/views/settings.php:174
28
- #: public/views/cookie-law-info_popup_content.php:23
29
- msgid "Non-necessary"
30
- msgstr "No es necesario"
31
-
32
- #: admin/class-cookie-law-info-admin.php:163
33
- #: admin/class-cookie-law-info-admin.php:164
34
- #: public/views/cookie-law-info_popup_content.php:22
35
- msgid "Necessary"
36
- msgstr "Necesario"
37
-
38
- #: admin/class-cookie-law-info-admin.php:171
39
- #: admin/class-cookie-law-info-admin.php:172
40
- #: admin/partials/cookie-law-info-privacy_overview.php:25
41
- msgid "Privacy Overview"
42
- msgstr "Descripción general de privacidad"
43
-
44
- #: admin/class-cookie-law-info-admin.php:221
45
- #: admin/class-cookie-law-info-admin.php:276
46
- #: admin/class-cookie-law-info-admin.php:334
47
- #: admin/class-cookie-law-info-admin.php:378
48
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:22
49
- #: public/modules/script-blocker/script-blocker.php:133
50
- #: public/modules/script-blocker/script-blocker.php:173
51
- #: public/modules/script-blocker/script-blocker.php:310
52
- msgid "You do not have sufficient permission to perform this operation"
53
- msgstr "No tienes suficientes permisos para realizar esta operación"
54
-
55
- #: admin/class-cookie-law-info-admin.php:240
56
- #: admin/class-cookie-law-info-admin.php:306
57
- #: admin/class-cookie-law-info-admin.php:359
58
- #: admin/class-cookie-law-info-admin.php:403
59
- msgid "Settings Updated."
60
- msgstr "Ajustes actualizados."
61
-
62
- #: admin/class-cookie-law-info-admin.php:248
63
- msgid "Support"
64
- msgstr "Soporte"
65
-
66
- #: admin/class-cookie-law-info-admin.php:249
67
- msgid "Premium Upgrade"
68
- msgstr "Actualización premium"
69
-
70
- #: admin/class-cookie-law-info-admin.php:418
71
- msgid "ERROR MIGRATING SETTINGS (ERROR: 2)"
72
- msgstr "CONFIGURACIÓN DE ERROR MIGRANTE (ERROR: 2)"
73
-
74
- #: admin/class-cookie-law-info-admin.php:436
75
- msgid "Cookie ID"
76
- msgstr "ID de cookie"
77
-
78
- #: admin/class-cookie-law-info-admin.php:437
79
- msgid "Cookie Type"
80
- msgstr "Tipo de cookie"
81
-
82
- #: admin/class-cookie-law-info-admin.php:438
83
- msgid "Cookie Duration"
84
- msgstr "Duración de la cookie"
85
-
86
- #: admin/class-cookie-law-info-admin.php:439
87
- msgid "Cookie Sensitivity"
88
- msgstr "Sensibilidad a las galletas"
89
-
90
- #: admin/class-cookie-law-info-admin.php:689
91
- msgid "Close Header"
92
- msgstr "Cerrar encabezado"
93
-
94
- #: admin/class-cookie-law-info-admin.php:693
95
- msgid "Open URL"
96
- msgstr "Abrir URL"
97
-
98
- #: admin/class-cookie-law-info-admin.php:706
99
- msgid "Extra Large"
100
- msgstr "Extra grande"
101
-
102
- #: admin/class-cookie-law-info-admin.php:710
103
- msgid "Large"
104
- msgstr "Grande"
105
-
106
- #: admin/class-cookie-law-info-admin.php:714
107
- msgid "Medium"
108
- msgstr "Medio"
109
-
110
- #: admin/class-cookie-law-info-admin.php:718
111
- msgid "Small"
112
- msgstr "Pequeña"
113
-
114
- #: admin/class-cookie-law-info-admin.php:732
115
- msgid "Default theme font"
116
- msgstr "Fuente de tema por defecto"
117
-
118
- #: admin/class-cookie-law-info-admin.php:736
119
- msgid "Sans Serif"
120
- msgstr "Sans Serif"
121
-
122
- #: admin/class-cookie-law-info-admin.php:740
123
- msgid "Serif"
124
- msgstr "Serif"
125
-
126
- #: admin/class-cookie-law-info-admin.php:744
127
- msgid "Arial"
128
- msgstr "Arial"
129
-
130
- #: admin/class-cookie-law-info-admin.php:748
131
- msgid "Arial Black"
132
- msgstr "Arial Black"
133
-
134
- #: admin/class-cookie-law-info-admin.php:752
135
- msgid "Georgia, serif"
136
- msgstr "Georgia, serif"
137
-
138
- #: admin/class-cookie-law-info-admin.php:756
139
- msgid "Helvetica"
140
- msgstr "Helvetica"
141
-
142
- #: admin/class-cookie-law-info-admin.php:760
143
- msgid "Lucida"
144
- msgstr "Lucida"
145
-
146
- #: admin/class-cookie-law-info-admin.php:764
147
- msgid "Tahoma"
148
- msgstr "Tahoma"
149
-
150
- #: admin/class-cookie-law-info-admin.php:768
151
- msgid "Times New Roman"
152
- msgstr "Times New Roman"
153
-
154
- #: admin/class-cookie-law-info-admin.php:772
155
- msgid "Trebuchet"
156
- msgstr "Trebuchet"
157
-
158
- #: admin/class-cookie-law-info-admin.php:776
159
- msgid "Verdana"
160
- msgstr "Verdana"
161
-
162
- #: admin/modules/ccpa/ccpa.php:106
163
- msgid "Do you really wish to opt out?"
164
- msgstr "¿Realmente desea optar por no participar?"
165
-
166
- #: admin/modules/ccpa/ccpa.php:107
167
- msgid "Confirm"
168
- msgstr "Confirmar"
169
-
170
- #: admin/modules/ccpa/ccpa.php:108
171
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:154
172
- msgid "Cancel"
173
- msgstr "Cancelar"
174
-
175
- #: admin/modules/ccpa/ccpa.php:145
176
- msgid "Select the type of law"
177
- msgstr "Seleccione el tipo de ley"
178
-
179
- #: admin/modules/ccpa/ccpa.php:149
180
- msgid "GDPR"
181
- msgstr "GDPR"
182
-
183
- #: admin/modules/ccpa/ccpa.php:150 admin/modules/ccpa/ccpa.php:158
184
- msgid ""
185
- "Customize the buttons, notice, themes from the relevant tabs to setup your "
186
- "cookie notice accordingly."
187
- msgstr ""
188
- "Personalice los botones, avisos, temas de las pestañas relevantes para "
189
- "configurar su aviso de cookies en consecuencia."
190
-
191
- #: admin/modules/ccpa/ccpa.php:153
192
- msgid "CCPA"
193
- msgstr "CCPA"
194
-
195
- #: admin/modules/ccpa/ccpa.php:154
196
- msgid ""
197
- "Most of the customizations from the tabs for buttons, notice or themes are "
198
- "not relevant especially if you choose to not show the notice, except the Do "
199
- "not sell within the buttons."
200
- msgstr ""
201
- "La mayoría de las personalizaciones de las pestañas para botones, avisos o "
202
- "temas no son relevantes, especialmente si elige no mostrar el aviso, excepto "
203
- "No vender dentro de los botones."
204
-
205
- #: admin/modules/ccpa/ccpa.php:157
206
- msgid "CCPA & GDPR"
207
- msgstr "CCPA y GDPR"
208
-
209
- #: admin/modules/ccpa/views/ccpa_settings.php:7
210
- msgid "CCPA Settings"
211
- msgstr "Configuración de CCPA"
212
-
213
- #: admin/modules/ccpa/views/ccpa_settings.php:7
214
- msgid ""
215
- "The right to opt out in the California Consumer Privacy Act gives consumers "
216
- "the ability to direct a business not to sell their personal information to a "
217
- "third party. If the user considers to not sell their personal information, "
218
- "all the scripts related to the categories which are configured to sell "
219
- "personal information will be blocked. The DO NOT SELL option is facilitated "
220
- "via a shortcode [wt_cli_ccpa_optout]."
221
- msgstr ""
222
- "El derecho a optar por no participar en la Ley de Privacidad del Consumidor "
223
- "de California les brinda a los consumidores la capacidad de dirigir una "
224
- "empresa para que no venda su información personal a un tercero. Si el "
225
- "usuario considera no vender su información personal, se bloquearán todos los "
226
- "scripts relacionados con las categorías configuradas para vender información "
227
- "personal. La opción NO VENDER se facilita a través de un shortcode "
228
- "[wt_cli_ccpa_optout]."
229
-
230
- #: admin/modules/ccpa/views/ccpa_settings.php:10
231
- msgid "Enable CCPA ?"
232
- msgstr "¿Habilitar CCPA?"
233
-
234
- #: admin/modules/ccpa/views/ccpa_settings.php:18
235
- msgid "Enable CCPA notice"
236
- msgstr "Habilitar aviso de CCPA"
237
-
238
- #: admin/modules/ccpa/views/ccpa_settings.php:18
239
- msgid ""
240
- "Enabling the notice will display the banner with the relevant text as per "
241
- "your configuration. Use this option particularly to record prior consent "
242
- "from the website visitors."
243
- msgstr ""
244
- "Al habilitar el aviso, se mostrará el banner con el texto relevante según su "
245
- "configuración. Use esta opción particularmente para registrar el "
246
- "consentimiento previo de los visitantes del sitio web."
247
-
248
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:26
249
- msgid "Unable to handle your request."
250
- msgstr "No se puede manejar su solicitud."
251
-
252
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:96
253
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:130
254
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:132
255
- msgid "Error"
256
- msgstr "Error: archivo no editable"
257
-
258
- #: admin/modules/cli-policy-generator/classes/class-preview-page.php:27
259
- msgid "Cookie Policy"
260
- msgstr "Política de cookies"
261
-
262
- #: admin/modules/cli-policy-generator/classes/class-preview-page.php:83
263
- msgid "Auto reload preview"
264
- msgstr "Vista previa de recarga automática"
265
-
266
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:106
267
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:107
268
- #: admin/modules/cli-policy-generator/views/policy-generator.php:21
269
- msgid "Policy generator"
270
- msgstr "Generador de politicas"
271
-
272
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:133
273
- msgid "Success"
274
- msgstr "Éxito"
275
-
276
- #: admin/modules/cli-policy-generator/views/policy-generator.php:25
277
- msgid "Sample heading"
278
- msgstr "Encabezado de muestra"
279
-
280
- #: admin/modules/cli-policy-generator/views/policy-generator.php:26
281
- msgid "Sample content"
282
- msgstr "Contenido de muestra"
283
-
284
- #: admin/modules/cli-policy-generator/views/policy-generator.php:27
285
- msgid "Delete"
286
- msgstr "Borrar"
287
-
288
- #: admin/modules/cli-policy-generator/views/policy-generator.php:49
289
- msgid "Add new"
290
- msgstr "Añadir nuevo"
291
-
292
- #: admin/modules/cli-policy-generator/views/policy-generator.php:53
293
- msgid "Heading"
294
- msgstr "Título"
295
-
296
- #: admin/modules/cli-policy-generator/views/policy-generator.php:57
297
- #: admin/views/admin_necessary_cookie.php:39
298
- #: admin/views/admin_non_necessary_cookie.php:54
299
- #: public/modules/script-blocker/views/settings.php:142
300
- #: public/modules/shortcode/shortcode.php:220
301
- msgid "Description"
302
- msgstr "Descripción"
303
-
304
- #: admin/modules/cli-policy-generator/views/policy-generator.php:65
305
- msgid ""
306
- "Enabling this option will help us spread the word by placing a credit to "
307
- "WebToffee at the very end of the Cookie Policy page."
308
- msgstr ""
309
- "Habilitar esta opción nos ayudará a correr la voz colocando un crédito para "
310
- "WebToffee al final de la página de la Política de cookies."
311
-
312
- #: admin/modules/cli-policy-generator/views/policy-generator.php:82
313
- msgid "Update existing Cookie Policy page"
314
- msgstr "Actualizar la página de la Política de cookies existente"
315
-
316
- #: admin/modules/cli-policy-generator/views/policy-generator.php:88
317
- msgid "Create Cookie Policy page"
318
- msgstr "Crear página de política de cookies"
319
-
320
- #: admin/modules/cli-policy-generator/views/policy-generator.php:92
321
- msgid "Live preview"
322
- msgstr "Vista previa en vivo"
323
-
324
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:43
325
- msgid "The plugin is complex to set up"
326
- msgstr "El complemento es complejo de configurar"
327
-
328
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:45
329
- msgid "Please describe which area you are facing difficulties"
330
- msgstr "Describe en qué área tienes dificultades"
331
-
332
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:49
333
- msgid "I found a better plugin"
334
- msgstr "Encontré un plugin mejor"
335
-
336
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:51
337
- msgid "Which plugin?"
338
- msgstr "¿Qué complemento?"
339
-
340
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:55
341
- msgid "The plugin is great, but I need specific feature that you don't support"
342
- msgstr ""
343
- "El plugin es bueno, pero necesito características específicas que no tienen"
344
-
345
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:57
346
- msgid "Could you tell us more about that feature?"
347
- msgstr "¿Podrías decirnos más acerca de esa característica?"
348
-
349
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:61
350
- msgid "The plugin didn't work as expected"
351
- msgstr "El plugin no funcionó como esperaba"
352
-
353
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:63
354
- msgid "What did you expect?"
355
- msgstr "¿Qué esperabas?"
356
-
357
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:67
358
- msgid "A conflict with another plugin or theme"
359
- msgstr "Un conflicto con otro complemento o tema"
360
-
361
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:69
362
- msgid "Which plugin or theme?"
363
- msgstr "¿Qué plugin o tema?"
364
-
365
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:73
366
- msgid "Translation issues"
367
- msgstr "Problemas de traducción"
368
-
369
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:77
370
- msgid "Incorrect/missing translation"
371
- msgstr "Traducción incorrecta / faltante"
372
-
373
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:79
374
- msgid "Name the language"
375
- msgstr "Nombra el idioma"
376
-
377
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:83
378
- msgid ""
379
- "Unable to translate my dynamic content e.g, cookie message, button text etc"
380
- msgstr ""
381
- "No puedo traducir mi contenido dinámico, por ejemplo, mensaje de cookie, "
382
- "texto de botón, etc."
383
-
384
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:85
385
- msgid "Name the language and the translator plugin that you are using"
386
- msgstr "Nombre el idioma y el complemento de traductor que está utilizando"
387
-
388
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:91
389
- msgid "Upgrade to pro"
390
- msgstr "Mejorar a pro"
391
-
392
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:95
393
- #: admin/views/admin-settings-general.php:10
394
- #: admin/views/admin-settings-general.php:66
395
- msgid "Other"
396
- msgstr "Otro"
397
-
398
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:97
399
- msgid "Could you tell us a bit more?"
400
- msgstr "¿Podrías contarnos un poco más?"
401
-
402
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:117
403
- msgid "If you have a moment, please let us know why you are deactivating:"
404
- msgstr ""
405
- "Si tiene un momento, por favor, háganos saber por qué está desactivando:"
406
-
407
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:144
408
- msgid ""
409
- "We do not collect any personal data when you submit this form. It's your "
410
- "feedback that we value."
411
- msgstr ""
412
- "No recopilamos ningún dato personal cuando envía este formulario. Son sus "
413
- "comentarios los que valoramos."
414
-
415
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:145
416
- msgid "Privacy Policy"
417
- msgstr "Política de privacidad"
418
-
419
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:152
420
- msgid "Go to support"
421
- msgstr "Ir a soporte"
422
-
423
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:153
424
- msgid "Submit & Deactivate"
425
- msgstr "Enviar y desactivar"
426
-
427
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:155
428
- msgid "I rather wouldn't say"
429
- msgstr "Prefiero no decir"
430
-
431
- #: admin/partials/cookie-law-info-admin_settings.php:25
432
- #: admin/views/admin_necessary_cookie.php:20
433
- #: admin/views/admin_non_necessary_cookie.php:17
434
- msgid "Settings updated."
435
- msgstr "Preferencias actualizadas."
436
-
437
- #: admin/partials/cookie-law-info-admin_settings.php:26
438
- #: admin/views/admin_necessary_cookie.php:21
439
- #: admin/views/admin_non_necessary_cookie.php:18
440
- msgid "Unable to update Settings."
441
- msgstr "No se puede actualizar la configuración."
442
-
443
- #: admin/partials/cookie-law-info-admin_settings.php:27
444
- msgid "Settings reset to defaults."
445
- msgstr "Los ajustes se restablecen a los valores predeterminados."
446
-
447
- #: admin/partials/cookie-law-info-admin_settings.php:28
448
- msgid "Unable to reset settings."
449
- msgstr "No se puede restablecer la configuración."
450
-
451
- #: admin/partials/cookie-law-info-admin_settings.php:39
452
- msgid "Cookie bar is currently active"
453
- msgstr "La barra de cookies está actualmente activa"
454
-
455
- #: admin/partials/cookie-law-info-admin_settings.php:47
456
- msgid "Cookie bar is currently inactive"
457
- msgstr "La barra de cookies está inactiva actualmente"
458
-
459
- #: admin/partials/cookie-law-info-admin_settings.php:57
460
- #: admin/views/admin-settings-general.php:9
461
- msgid "General"
462
- msgstr "General"
463
-
464
- #: admin/partials/cookie-law-info-admin_settings.php:58
465
- msgid "Customise Cookie Bar"
466
- msgstr "Personalizar Cookie Bar"
467
-
468
- #: admin/partials/cookie-law-info-admin_settings.php:59
469
- msgid "Customise Buttons"
470
- msgstr "Personalizar botones"
471
-
472
- #: admin/partials/cookie-law-info-admin_settings.php:60
473
- #: admin/views/admin-settings-advanced.php:8
474
- msgid "Advanced"
475
- msgstr "Ajustes"
476
-
477
- #: admin/partials/cookie-law-info-admin_settings.php:61
478
- msgid "Help Guide"
479
- msgstr "Guía de ayuda"
480
-
481
- #: admin/partials/cookie-law-info-privacy_overview.php:32
482
- msgid "Privacy Overview Title"
483
- msgstr "Título de la descripción de privacidad"
484
-
485
- #: admin/partials/cookie-law-info-privacy_overview.php:38
486
- #: admin/partials/cookie-law-info-privacy_overview.php:53
487
- msgid "This will be shown in the settings visible for user on consent screen."
488
- msgstr ""
489
- "Esto se mostrará en la configuración visible para el usuario en la pantalla "
490
- "de consentimiento."
491
-
492
- #: admin/partials/cookie-law-info-privacy_overview.php:61
493
- msgid "Save Settings"
494
- msgstr "Guardar ajustes"
495
-
496
- #: admin/views/admin-settings-advanced.php:9
497
- msgid ""
498
- "Sometimes themes apply settings that clash with plugins. If that happens, "
499
- "try adjusting these settings."
500
- msgstr ""
501
- "Algunas veces, los temas aplican configuraciones que chocan con los "
502
- "complementos. Si eso sucede, intente ajustar estas configuraciones."
503
-
504
- #: admin/views/admin-settings-advanced.php:13
505
- msgid "Reset all values"
506
- msgstr "Reiniciar todos los valores"
507
-
508
- #: admin/views/admin-settings-advanced.php:15
509
- msgid "Delete settings and reset"
510
- msgstr "Borrar ajustes y restablecer"
511
-
512
- #: admin/views/admin-settings-advanced.php:15
513
- msgid "Are you sure you want to delete all your settings?"
514
- msgstr "¿estás seguro de que desea borrar todas las imágenes?"
515
-
516
- #: admin/views/admin-settings-advanced.php:16
517
- msgid "Warning: this will actually delete your current settings."
518
- msgstr "ADVERTENCIA: esto realmente borra la configuración actual."
519
-
520
- #: admin/views/admin-settings-buttons.php:10
521
- msgid "Accept Button"
522
- msgstr "Bouton Accepter"
523
-
524
- #: admin/views/admin-settings-buttons.php:11
525
- #: admin/views/admin-settings-buttons.php:93
526
- msgid "Reject Button"
527
- msgstr "Etiqueta botón"
528
-
529
- #: admin/views/admin-settings-buttons.php:12
530
- #: admin/views/admin-settings-buttons.php:163
531
- msgid "Settings Button"
532
- msgstr "Botón de ajustes"
533
-
534
- #: admin/views/admin-settings-buttons.php:13
535
- #: admin/views/admin-settings-buttons.php:206
536
- msgid "Read More Link"
537
- msgstr "Leer más enlace"
538
-
539
- #: admin/views/admin-settings-buttons.php:14
540
- #: admin/views/admin-settings-buttons.php:326
541
- msgid "Do not sell link"
542
- msgstr "No vender enlace"
543
-
544
- #: admin/views/admin-settings-buttons.php:20
545
- msgid "Main Button"
546
- msgstr "BOTÓN"
547
-
548
- #: admin/views/admin-settings-buttons.php:21
549
- msgid ""
550
- "This button/link can be customised to either simply close the cookie bar, or "
551
- "follow a link. You can also customise the colours and styles, and show it as "
552
- "a link or a button."
553
- msgstr ""
554
- "Este botón / enlace se puede personalizar para que simplemente cierre la "
555
- "barra de cookies o siga un enlace. También puede personalizar los colores y "
556
- "estilos, y mostrarlo como un enlace o un botón."
557
-
558
- #: admin/views/admin-settings-buttons.php:24
559
- #: admin/views/admin-settings-buttons.php:96
560
- #: admin/views/admin-settings-buttons.php:166
561
- #: admin/views/admin-settings-buttons.php:220
562
- msgid "Text"
563
- msgstr "Texto"
564
-
565
- #: admin/views/admin-settings-buttons.php:30
566
- #: admin/views/admin-settings-buttons.php:102
567
- #: admin/views/admin-settings-buttons.php:172
568
- #: admin/views/admin-settings-buttons.php:226
569
- #: admin/views/admin-settings-buttons.php:346
570
- msgid "Text colour"
571
- msgstr "Color de texto"
572
-
573
- #: admin/views/admin-settings-buttons.php:38
574
- #: admin/views/admin-settings-buttons.php:110
575
- #: admin/views/admin-settings-buttons.php:180
576
- #: admin/views/admin-settings-buttons.php:234
577
- #: admin/views/admin-settings-buttons.php:335
578
- msgid "Show as"
579
- msgstr "Mostrar como"
580
-
581
- #: admin/views/admin-settings-buttons.php:40
582
- #: admin/views/admin-settings-buttons.php:112
583
- #: admin/views/admin-settings-buttons.php:182
584
- #: admin/views/admin-settings-buttons.php:236
585
- msgid "Button"
586
- msgstr "Botón"
587
-
588
- #: admin/views/admin-settings-buttons.php:42
589
- #: admin/views/admin-settings-buttons.php:114
590
- #: admin/views/admin-settings-buttons.php:184
591
- #: admin/views/admin-settings-buttons.php:238
592
- #: admin/views/admin-settings-buttons.php:337
593
- msgid "Link"
594
- msgstr "Enlace"
595
-
596
- #: admin/views/admin-settings-buttons.php:46
597
- #: admin/views/admin-settings-buttons.php:118
598
- #: admin/views/admin-settings-buttons.php:188
599
- #: admin/views/admin-settings-buttons.php:242
600
- msgid "Background colour"
601
- msgstr "Color de fondo"
602
-
603
- #: admin/views/admin-settings-buttons.php:55
604
- #: admin/views/admin-settings-buttons.php:126
605
- msgid "Action"
606
- msgstr "Acción"
607
-
608
- #: admin/views/admin-settings-buttons.php:63
609
- #: admin/views/admin-settings-buttons.php:138
610
- #: admin/views/admin-settings-buttons.php:253
611
- #: admin/views/admin-settings-buttons.php:260
612
- msgid "URL"
613
- msgstr "URL"
614
-
615
- #: admin/views/admin-settings-buttons.php:66
616
- #: admin/views/admin-settings-buttons.php:141
617
- msgid "Button will only link to URL if Action = Open URL"
618
- msgstr "El botón solo enlazará a la URL si Acción = Abrir URL"
619
-
620
- #: admin/views/admin-settings-buttons.php:71
621
- #: admin/views/admin-settings-buttons.php:146
622
- msgid "Open URL in new window?"
623
- msgstr "¿Abrir enlace en una nueva pestaña?"
624
-
625
- #: admin/views/admin-settings-buttons.php:73
626
- #: admin/views/admin-settings-buttons.php:148
627
- #: admin/views/admin-settings-buttons.php:304
628
- #: admin/views/admin-settings-buttons.php:311
629
- #: admin/views/admin-settings-general.php:38
630
- #: admin/views/admin-settings-general.php:54
631
- #: admin/views/admin-settings-general.php:74
632
- #: admin/views/admin-settings-general.php:82
633
- #: admin/views/admin-settings-general.php:89
634
- #: admin/views/admin-settings-messagebar.php:86
635
- #: admin/views/admin-settings-messagebar.php:110
636
- #: admin/views/admin_non_necessary_cookie.php:32
637
- msgid "Yes"
638
- msgstr "Sí"
639
-
640
- #: admin/views/admin-settings-buttons.php:75
641
- #: admin/views/admin-settings-buttons.php:149
642
- #: admin/views/admin-settings-buttons.php:305
643
- #: admin/views/admin-settings-buttons.php:312
644
- #: admin/views/admin-settings-general.php:39
645
- #: admin/views/admin-settings-general.php:55
646
- #: admin/views/admin-settings-general.php:75
647
- #: admin/views/admin-settings-general.php:83
648
- #: admin/views/admin-settings-general.php:90
649
- #: admin/views/admin-settings-messagebar.php:87
650
- #: admin/views/admin-settings-messagebar.php:111
651
- #: admin/views/admin_non_necessary_cookie.php:33
652
- #: public/modules/script-blocker/views/settings.php:139
653
- msgid "No"
654
- msgstr "No"
655
-
656
- #: admin/views/admin-settings-buttons.php:82
657
- #: admin/views/admin-settings-buttons.php:153
658
- #: admin/views/admin-settings-buttons.php:196
659
- #: admin/views/admin-settings-buttons.php:316
660
- msgid "Size"
661
- msgstr "Tamaño"
662
-
663
- #: admin/views/admin-settings-buttons.php:207
664
- msgid ""
665
- "This button/link can be used to provide a link out to your Privacy & Cookie "
666
- "Policy. You can customise it any way you like."
667
- msgstr ""
668
- "Este botón / enlace puede usarse para proporcionar un enlace a su Política "
669
- "de Privacidad y Cookies. Puedes personalizarlo como quieras."
670
-
671
- #: admin/views/admin-settings-buttons.php:212
672
- msgid "Click"
673
- msgstr "Hacer clic"
674
-
675
- #: admin/views/admin-settings-buttons.php:212
676
- msgid "here"
677
- msgstr "aquí"
678
-
679
- #: admin/views/admin-settings-buttons.php:212
680
- msgid " to generate content for Cookie Policy page."
681
- msgstr " para generar contenido para la página de Política de Cookies."
682
-
683
- #: admin/views/admin-settings-buttons.php:251
684
- msgid "URL or Page?"
685
- msgstr "URL o página?"
686
-
687
- #: admin/views/admin-settings-buttons.php:255
688
- #: admin/views/admin-settings-buttons.php:266
689
- msgid "Page"
690
- msgstr "Página"
691
-
692
- #: admin/views/admin-settings-buttons.php:269
693
- msgid "Select One"
694
- msgstr "Select One"
695
-
696
- #: admin/views/admin-settings-buttons.php:294
697
- msgid "The currently selected page does not exist. Please select a new page."
698
- msgstr ""
699
- "La página seleccionada actualmente no existe. Por favor seleccione una nueva "
700
- "página."
701
-
702
- #: admin/views/admin-settings-buttons.php:302
703
- msgid "Minimize Cookie Bar in this page/URL?"
704
- msgstr "¿Minimizar la barra de cookies en esta página / URL?"
705
-
706
- #: admin/views/admin-settings-buttons.php:309
707
- msgid "Open in new window?"
708
- msgstr "¿Abrir en Nueva ventana?"
709
-
710
- #: admin/views/admin-settings-buttons.php:329
711
- msgid "CCPA Text"
712
- msgstr "Texto CCPA"
713
-
714
- #: admin/views/admin-settings-buttons.php:338
715
- msgid "Checkbox"
716
- msgstr "Casilla"
717
-
718
- #: admin/views/admin-settings-buttons.php:340
719
- msgid "The shortcode will be represented as a link whereever used."
720
- msgstr "El shortcode se representará como un enlace siempre que se use."
721
-
722
- #: admin/views/admin-settings-buttons.php:341
723
- msgid ""
724
- "The shortcode will be represented as a checkbox with select option to record "
725
- "consent."
726
- msgstr ""
727
- "El shortcode se representará como una casilla de verificación con la opción "
728
- "de seleccionar para registrar el consentimiento."
729
-
730
- #: admin/views/admin-settings-general.php:17
731
- msgid "Enable cookie bar"
732
- msgstr "Habilitar la barra de cookies"
733
-
734
- #: admin/views/admin-settings-general.php:19
735
- msgid "On"
736
- msgstr "Encendido"
737
-
738
- #: admin/views/admin-settings-general.php:20
739
- msgid "Off"
740
- msgstr "Apagado"
741
-
742
- #: admin/views/admin-settings-general.php:36
743
- msgid "Auto-hide(Accept) cookie bar after delay?"
744
- msgstr "¿Barra de galleta auto-Hide(Accept) retraso?"
745
-
746
- #: admin/views/admin-settings-general.php:43
747
- msgid "Milliseconds until hidden"
748
- msgstr "Milisegundos hasta oculto"
749
-
750
- #: admin/views/admin-settings-general.php:46
751
- msgid "Specify milliseconds (not seconds)"
752
- msgstr "Especificar milisegundos (no segundos)"
753
-
754
- #: admin/views/admin-settings-general.php:46
755
- msgid "seconds"
756
- msgstr "segundos"
757
-
758
- #: admin/views/admin-settings-general.php:52
759
- msgid "Auto-hide cookie bar if the user scrolls ( Accept on Scroll )?"
760
- msgstr ""
761
- "¿Ocultar automáticamente bar cookie si el usuario desplaza (aceptar el "
762
- "desplazamiento)?"
763
-
764
- #: admin/views/admin-settings-general.php:56
765
- msgid ""
766
- "As per latest GDPR policies it is required to take an explicit consent for "
767
- "the cookies. Use this option with discretion especially if you serve EU"
768
- msgstr ""
769
- "Según las últimas políticas GDPR es necesaria para tener un consentimiento "
770
- "explícito para las galletas. Se usa con discreción, especialmente si usted "
771
- "servir EU"
772
-
773
- #: admin/views/admin-settings-general.php:57
774
- msgid "This option will not work along with `Popup overlay`."
775
- msgstr "Esta opción no funcionará junto con `Superposición emergente`."
776
-
777
- #: admin/views/admin-settings-general.php:69
778
- msgid "Reload after \"scroll accept\" event?"
779
- msgstr "¿Volver a cargar después de \"desplazarse aceptar\"?"
780
-
781
- #: admin/views/admin-settings-general.php:80
782
- msgid "Reload after Accept button click"
783
- msgstr "Recargar después de clic de botón de aceptar"
784
-
785
- #: admin/views/admin-settings-general.php:87
786
- msgid "Reload after Reject button click"
787
- msgstr "Volver a cargar después de clic en el botón rechazar"
788
-
789
- #: admin/views/admin-settings-help.php:9
790
- msgid "Shortcodes"
791
- msgstr "Códigos cortos"
792
-
793
- #: admin/views/admin-settings-help.php:10
794
- #: admin/views/admin-settings-help.php:103
795
- msgid "Help Links"
796
- msgstr "Enlaces de ayuda"
797
-
798
- #: admin/views/admin-settings-help.php:16
799
- msgid "Cookie bar shortcodes"
800
- msgstr "Cookie bar shortcodes"
801
-
802
- #: admin/views/admin-settings-help.php:17
803
- msgid ""
804
- "You can enter the shortcodes in the \"message\" field of the Cookie Law Info "
805
- "bar. They add nicely formatted buttons and/or links into the cookie bar, "
806
- "without you having to add any HTML."
807
- msgstr ""
808
- "Puede ingresar los códigos abreviados en el campo \"mensaje\" de la barra de "
809
- "información de la ley de cookies. Agregan botones y / o enlaces con buen "
810
- "formato en la barra de cookies, sin tener que agregar ningún código HTML."
811
-
812
- #: admin/views/admin-settings-help.php:22
813
- msgid "This is the \"main button\" you customise above."
814
- msgstr "Este es el \"botón principal\" personalizar por encima."
815
-
816
- #: admin/views/admin-settings-help.php:26
817
- msgid "This is the cookie reject button shortcode."
818
- msgstr "Este es el shortcode de botón de rechazar cookies."
819
-
820
- #: admin/views/admin-settings-help.php:30
821
- msgid "This is the cookie settings button rendering shortcode."
822
- msgstr "Este es el cookie ajustes botón renderizado shortcode."
823
-
824
- #: admin/views/admin-settings-help.php:33
825
- msgid "This is the \"read more\" link you customise above."
826
- msgstr "Este es el link \"leer más\" que personalizar todo encima."
827
-
828
- #: admin/views/admin-settings-help.php:36
829
- msgid "Setup margin for above buttons"
830
- msgstr "Margen de configuración para los botones de arriba"
831
-
832
- #: admin/views/admin-settings-help.php:65
833
- msgid "Other shortcodes"
834
- msgstr "Otros Shortcodes"
835
-
836
- #: admin/views/admin-settings-help.php:66
837
- msgid ""
838
- "These shortcodes can be used in pages and posts on your website. It is not "
839
- "recommended to use these inside the cookie bar itself."
840
- msgstr ""
841
- "Estos códigos abreviados se pueden usar en páginas y publicaciones en su "
842
- "sitio web. No se recomienda usar estos dentro de la barra de cookies."
843
-
844
- #: admin/views/admin-settings-help.php:72
845
- msgid ""
846
- "This prints out a nice table of cookies, in line with the guidance given by "
847
- "the ICO."
848
- msgstr ""
849
- "Esto imprime una buena tabla de cookies, en línea con la orientación dada "
850
- "por el ICO."
851
-
852
- #: admin/views/admin-settings-help.php:72
853
- msgid ""
854
- "You need to enter the cookies your website uses via the Cookie Law Info menu "
855
- "in your WordPress dashboard."
856
- msgstr ""
857
- "Debe ingresar las cookies que utiliza su sitio web a través del menú "
858
- "Información de cookies en su tablero de WordPress."
859
-
860
- #: admin/views/admin-settings-help.php:80
861
- msgid "Styles included"
862
- msgstr "Estilos incluidos"
863
-
864
- #: admin/views/admin-settings-help.php:82
865
- msgid "Columns available"
866
- msgstr "Columnas disponibles"
867
-
868
- #: admin/views/admin-settings-help.php:82
869
- msgid "Will print all columns by default."
870
- msgstr "Imprimirá todas las columnas por defecto."
871
-
872
- #: admin/views/admin-settings-help.php:86
873
- msgid ""
874
- "This shortcode will display a normal HTML link which when clicked, will "
875
- "delete the cookie set by Cookie Law Info (this cookie is used to remember "
876
- "that the cookie bar is closed)."
877
- msgstr ""
878
- "Este código mostrará un enlace HTML normal que cuando hace clic en, se "
879
- "borrará la cookie por información de ley Cookie (se utiliza esta cookie para "
880
- "recordar que la barra de la galleta está cerrada)."
881
-
882
- #: admin/views/admin-settings-help.php:90
883
- msgid ""
884
- "Add any text you like- useful if you want e.g. another language to English."
885
- msgstr ""
886
- "Agregue cualquier texto que desee, útil si desea, por ejemplo, otro idioma "
887
- "para inglés."
888
-
889
- #: admin/views/admin-settings-help.php:94
890
- msgid "Add content after accepting the cookie notice."
891
- msgstr "Añadir contenido después de aceptar el aviso de cookie."
892
-
893
- #: admin/views/admin-settings-help.php:107
894
- #: admin/views/admin-settings-help.php:110 admin/views/goto-pro.php:103
895
- msgid "Documentation"
896
- msgstr "Documentación"
897
-
898
- #: admin/views/admin-settings-help.php:108
899
- msgid "Refer to our documentation to set and get started"
900
- msgstr "Consulte nuestra documentación para establecer y empezar"
901
-
902
- #: admin/views/admin-settings-help.php:115
903
- msgid "Help and Support"
904
- msgstr "Ayuda y soporte"
905
-
906
- #: admin/views/admin-settings-help.php:116
907
- msgid "We would love to help you on any queries or issues."
908
- msgstr "Nos encantaría ayudarle en cualquier consulta o problema."
909
-
910
- #: admin/views/admin-settings-help.php:118
911
- msgid "Contact Us"
912
- msgstr "Contáctenos"
913
-
914
- #: admin/views/admin-settings-messagebar.php:9
915
- msgid "Cookie bar"
916
- msgstr "Barra de galletas"
917
-
918
- #: admin/views/admin-settings-messagebar.php:10
919
- #: admin/views/admin-settings-messagebar.php:145
920
- msgid "Revisit consent"
921
- msgstr "Revisar el consentimiento"
922
-
923
- #: admin/views/admin-settings-messagebar.php:15
924
- msgid "Cookie Bar"
925
- msgstr "Barra de galletas"
926
-
927
- #: admin/views/admin-settings-messagebar.php:18
928
- msgid "Message Heading"
929
- msgstr "Encabezado del mensaje"
930
-
931
- #: admin/views/admin-settings-messagebar.php:21
932
- msgid "Leave it blank, If you do not need a heading"
933
- msgstr "Déjelo en blanco, si no necesita un título"
934
-
935
- #: admin/views/admin-settings-messagebar.php:26
936
- msgid "Message"
937
- msgstr "Mensaje"
938
-
939
- #: admin/views/admin-settings-messagebar.php:32
940
- msgid "Shortcodes allowed: see the Help Guide tab"
941
- msgstr "Códigos cortos permitidos: consulte la pestaña Guía de ayuda"
942
-
943
- #: admin/views/admin-settings-messagebar.php:32
944
- msgid ""
945
- "Examples: \"We use cookies on this website [cookie_accept] to find out how "
946
- "to delete cookies [cookie_link].\""
947
- msgstr ""
948
- "Ejemplos: \"utilizamos cookies en este sitio web [cookie_accept] para "
949
- "averiguar cómo eliminar cookies [cookie_link].\""
950
-
951
- #: admin/views/admin-settings-messagebar.php:36
952
- msgid "Cookie Bar Colour"
953
- msgstr "Cookie Bar Color"
954
-
955
- #: admin/views/admin-settings-messagebar.php:46
956
- msgid "Text Colour"
957
- msgstr "Color de texto"
958
-
959
- #: admin/views/admin-settings-messagebar.php:55
960
- msgid "Font"
961
- msgstr "Fuente"
962
-
963
- #: admin/views/admin-settings-messagebar.php:63
964
- msgid "Show cookie bar as"
965
- msgstr "Mostrar barra de cookies como"
966
-
967
- #: admin/views/admin-settings-messagebar.php:68
968
- msgid "Banner"
969
- msgstr "Bandera"
970
-
971
- #: admin/views/admin-settings-messagebar.php:69
972
- msgid "Popup"
973
- msgstr "Surgir"
974
-
975
- #: admin/views/admin-settings-messagebar.php:70
976
- msgid "Widget"
977
- msgstr "Widget"
978
-
979
- #: admin/views/admin-settings-messagebar.php:74
980
- msgid "Position"
981
- msgstr "Posición"
982
-
983
- #: admin/views/admin-settings-messagebar.php:84
984
- msgid "Add overlay?"
985
- msgstr "Añadir superposición?"
986
-
987
- #: admin/views/admin-settings-messagebar.php:88
988
- msgid ""
989
- "When the popup is active, an overlay will block the user from browsing the "
990
- "site."
991
- msgstr ""
992
- "Cuando la ventana emergente está activa, una superposición evitará que el "
993
- "usuario navegue por el sitio."
994
-
995
- #: admin/views/admin-settings-messagebar.php:89
996
- msgid "`Accept on scroll` will not work along with this option."
997
- msgstr "`Accept on scroll` no funcionará junto con esta opción."
998
-
999
- #: admin/views/admin-settings-messagebar.php:93
1000
- msgid "Position:"
1001
- msgstr "Posición:"
1002
-
1003
- #: admin/views/admin-settings-messagebar.php:98
1004
- msgid "Header"
1005
- msgstr "Encabezado"
1006
-
1007
- #: admin/views/admin-settings-messagebar.php:99
1008
- msgid "Footer"
1009
- msgstr "Pie de página"
1010
-
1011
- #: admin/views/admin-settings-messagebar.php:108
1012
- msgid "Fix Cookie Bar to Header?"
1013
- msgstr "¿Repara la barra de cookies en el encabezado?"
1014
-
1015
- #: admin/views/admin-settings-messagebar.php:112
1016
- msgid ""
1017
- "If you select \"Header\" then you can optionally stick the cookie bar to the "
1018
- "header. Will not have any effect if you select \"Footer\"."
1019
- msgstr ""
1020
- "Si selecciona \"Encabezado\", puede colocar la barra de cookies en el "
1021
- "encabezado. No tendrá ningún efecto si selecciona \"Pie de página\"."
1022
-
1023
- #: admin/views/admin-settings-messagebar.php:120
1024
- msgid "On load"
1025
- msgstr "On Cargar"
1026
-
1027
- #: admin/views/admin-settings-messagebar.php:125
1028
- #: admin/views/admin-settings-messagebar.php:135
1029
- msgid "Animate"
1030
- msgstr "Animacion"
1031
-
1032
- #: admin/views/admin-settings-messagebar.php:126
1033
- #: admin/views/admin-settings-messagebar.php:136
1034
- msgid "Sticky"
1035
- msgstr "Sticky"
1036
-
1037
- #: admin/views/admin-settings-messagebar.php:130
1038
- msgid "On hide"
1039
- msgstr "En la piel"
1040
-
1041
- #: admin/views/admin-settings-messagebar.php:145
1042
- msgid "previously"
1043
- msgstr "previamente"
1044
-
1045
- #: admin/views/admin-settings-messagebar.php:145
1046
- msgid "Show again tab"
1047
- msgstr "Mostrar pestaña de nuevo"
1048
-
1049
- #: admin/views/admin-settings-messagebar.php:147
1050
- msgid ""
1051
- "Revisit consent will allow the visitors to view/edit/revoke their prior "
1052
- "preferences. This can be done via a widget and/or a shortcode. A small "
1053
- "privacy widget is automatically displayed at the footer of your website if "
1054
- "the widget option is enabled. You can also manually insert a link to manage "
1055
- "consent by adding the shortcode <b>[wt_cli_manage_consent]</b> to your "
1056
- "website."
1057
- msgstr ""
1058
- "El consentimiento de revisión permitirá a los visitantes ver / editar / "
1059
- "revocar sus preferencias anteriores. Esto se puede hacer a través de un "
1060
- "widget y / o un shortcode. Un pequeño widget de privacidad se muestra "
1061
- "automáticamente en el pie de página de su sitio web si la opción de widget "
1062
- "está habilitada. También puede insertar manualmente un enlace para "
1063
- "administrar el consentimiento agregando el código corto "
1064
- "<b>[wt_cli_manage_consent]</b> a su sitio web."
1065
-
1066
- #: admin/views/admin-settings-messagebar.php:152
1067
- msgid "Enable revisit consent widget"
1068
- msgstr "Habilitar el widget de consentimiento para volver a visitar"
1069
-
1070
- #: admin/views/admin-settings-messagebar.php:152
1071
- msgid ""
1072
- "By enabling this option a small privacy widget is automatically displayed at "
1073
- "the footer of your website."
1074
- msgstr ""
1075
- "Al habilitar esta opción, se muestra automáticamente un pequeño widget de "
1076
- "privacidad en el pie de página de su sitio web."
1077
-
1078
- #: admin/views/admin-settings-messagebar.php:163
1079
- #: admin/views/admin-settings-messagebar.php:180
1080
- msgid "Tab Position"
1081
- msgstr "Posición de Tabla"
1082
-
1083
- #: admin/views/admin-settings-messagebar.php:168
1084
- #: admin/views/admin-settings-messagebar.php:171
1085
- msgid "Right"
1086
- msgstr "Derecha"
1087
-
1088
- #: admin/views/admin-settings-messagebar.php:169
1089
- #: admin/views/admin-settings-messagebar.php:172
1090
- msgid "Left"
1091
- msgstr "Izquierda"
1092
-
1093
- #: admin/views/admin-settings-messagebar.php:187
1094
- msgid "Bottom Right"
1095
- msgstr "Abajo a la derecha"
1096
-
1097
- #: admin/views/admin-settings-messagebar.php:190
1098
- msgid "Bottom Left"
1099
- msgstr "Abajo a la izquierda"
1100
-
1101
- #: admin/views/admin-settings-messagebar.php:193
1102
- msgid "Top Right"
1103
- msgstr "Parte superior derecha"
1104
-
1105
- #: admin/views/admin-settings-messagebar.php:196
1106
- msgid "Top Left"
1107
- msgstr "Arriba a la izquierda"
1108
-
1109
- #: admin/views/admin-settings-messagebar.php:203
1110
- msgid "From Right Margin"
1111
- msgstr "Desde el margen derecho"
1112
-
1113
- #: admin/views/admin-settings-messagebar.php:203
1114
- msgid "From Left Margin"
1115
- msgstr "Margen izquierdo"
1116
-
1117
- #: admin/views/admin-settings-messagebar.php:206
1118
- msgid "Specify"
1119
- msgstr "Especificar"
1120
-
1121
- #: admin/views/admin-settings-messagebar.php:215
1122
- #: admin/views/admin_necessary_cookie.php:33
1123
- #: admin/views/admin_non_necessary_cookie.php:48
1124
- msgid "Title"
1125
- msgstr "Título"
1126
-
1127
- #: admin/views/admin-settings-save-button.php:12
1128
- #: admin/views/admin_necessary_cookie.php:52
1129
- #: admin/views/admin_non_necessary_cookie.php:87
1130
- #: public/modules/script-blocker/script-blocker.php:219
1131
- msgid "Update Settings"
1132
- msgstr "Actualizar ajustes"
1133
-
1134
- #: admin/views/admin_necessary_cookie.php:26
1135
- msgid "Necessary Cookie Settings"
1136
- msgstr "Configuraciones de cookies necesarias"
1137
-
1138
- #: admin/views/admin_non_necessary_cookie.php:23
1139
- msgid "Non-necessary Cookie Settings"
1140
- msgstr "Configuraciones de cookies no necesarias"
1141
-
1142
- #: admin/views/admin_non_necessary_cookie.php:31
1143
- msgid "Enable Non-necessary Cookie"
1144
- msgstr "Habilitar la cookie no necesaria"
1145
-
1146
- #: admin/views/admin_non_necessary_cookie.php:38
1147
- msgid "Default state"
1148
- msgstr "Estado predeterminado"
1149
-
1150
- #: admin/views/admin_non_necessary_cookie.php:39
1151
- #: public/modules/script-blocker/views/settings.php:141
1152
- #: public/views/cookie-law-info_popup_content.php:7
1153
- msgid "Enabled"
1154
- msgstr "Habilitado"
1155
-
1156
- #: admin/views/admin_non_necessary_cookie.php:40
1157
- #: public/views/cookie-law-info_popup_content.php:8
1158
- msgid "Disabled"
1159
- msgstr "Discapacitado"
1160
-
1161
- #: admin/views/admin_non_necessary_cookie.php:42
1162
- msgid ""
1163
- "If you enable this option, the category toggle button will be in the active "
1164
- "state for cookie consent."
1165
- msgstr ""
1166
- "Si habilita esta opción, el botón de alternar categoría estará en el estado "
1167
- "activo para el consentimiento de cookies."
1168
-
1169
- #: admin/views/admin_non_necessary_cookie.php:62
1170
- msgid ""
1171
- "This script will be added to the page HEAD section if the above settings is "
1172
- "enabled and user has give consent."
1173
- msgstr ""
1174
- "Esta secuencia de comandos se agregará a la página HEAD si la configuración "
1175
- "anterior está habilitada y el usuario ha dado su consentimiento."
1176
-
1177
- #: admin/views/admin_non_necessary_cookie.php:67
1178
- msgid ""
1179
- "Print scripts in the head tag on the front end if above cookie settings is "
1180
- "enabled and user has given consent."
1181
- msgstr ""
1182
- "Imprima los scripts en la etiqueta de cabecera en el extremo frontal si la "
1183
- "configuración de cookies anterior está habilitada y el usuario ha dado su "
1184
- "consentimiento."
1185
-
1186
- #: admin/views/admin_non_necessary_cookie.php:74
1187
- msgid ""
1188
- "This script will be added right after the BODY section if the above settings "
1189
- "is enabled and user has given consent."
1190
- msgstr ""
1191
- "Esta secuencia de comandos se agregará justo después de la sección CUERPO si "
1192
- "las configuraciones anteriores están habilitadas y el usuario ha dado su "
1193
- "consentimiento."
1194
-
1195
- #: admin/views/admin_non_necessary_cookie.php:77
1196
- msgid ""
1197
- "Print scripts before the closing body tag on the front end if above cookie "
1198
- "settings is enabled and user has given consent."
1199
- msgstr ""
1200
- "Imprima los scripts antes de la etiqueta de cierre del cuerpo en el extremo "
1201
- "frontal si la configuración de cookies anterior está habilitada y el usuario "
1202
- "ha dado su consentimiento."
1203
-
1204
- #: admin/views/goto-pro.php:56
1205
- msgid "Where did my settings go?"
1206
- msgstr "¿A dónde fue mi configuración?"
1207
-
1208
- #: admin/views/goto-pro.php:57
1209
- msgid "Cookie Law Info version 0.9 has been updated and has new settings."
1210
- msgstr ""
1211
- "Cookie Law Info versión 0.9 se ha actualizado y tiene una nueva "
1212
- "configuración."
1213
-
1214
- #: admin/views/goto-pro.php:57
1215
- msgid "Your previous settings are safe."
1216
- msgstr "Tu configuración previa es segura."
1217
-
1218
- #: admin/views/goto-pro.php:58
1219
- msgid ""
1220
- "You can either copy over your old settings to this version, or use the new "
1221
- "default values."
1222
- msgstr ""
1223
- "Puede copiar su configuración antigua a esta versión, o utilizar los nuevos "
1224
- "valores por defecto."
1225
-
1226
- #: admin/views/goto-pro.php:60
1227
- msgid "Would you like to:"
1228
- msgstr "¿Te gustaría:"
1229
-
1230
- #: admin/views/goto-pro.php:62
1231
- msgid "Use previous settings"
1232
- msgstr "Deshacer la configuración anterior"
1233
-
1234
- #: admin/views/goto-pro.php:63
1235
- msgid "Start afresh with the new version"
1236
- msgstr "Comienza de nuevo con la nueva versión"
1237
-
1238
- #: admin/views/goto-pro.php:67
1239
- msgid ""
1240
- "If you want to go back to the previous version you can always download it "
1241
- "again from"
1242
- msgstr ""
1243
- "Si desea volver a la versión anterior, siempre puede volver a descargarla "
1244
- "desde"
1245
-
1246
- #: admin/views/goto-pro.php:73
1247
- msgid "30 Day Money Back Guarantee"
1248
- msgstr "30 días de garantía de devolución de dinero"
1249
-
1250
- #: admin/views/goto-pro.php:74
1251
- msgid "Fast and Superior Support"
1252
- msgstr "Soporte rápido y superior"
1253
-
1254
- #: admin/views/goto-pro.php:75
1255
- msgid "10X Powerful with GDPR Cookie Consent Features That Every Site Needs"
1256
- msgstr ""
1257
- "Potente 10X con características de consentimiento de cookie GDPR que cada "
1258
- "sitio necesita"
1259
-
1260
- #: admin/views/goto-pro.php:78
1261
- msgid "Upgrade to Premium"
1262
- msgstr "Mejorado a Premium"
1263
-
1264
- #: admin/views/goto-pro.php:84
1265
- msgid "Automatic Cookie Scanner"
1266
- msgstr "Escáner de galletas automático"
1267
-
1268
- #: admin/views/goto-pro.php:85
1269
- msgid ""
1270
- "Auto block scripts - Google Analytics, Facebook Pixel, Google Tag Manager, "
1271
- "Hotjar Analytics, Google Publisher Tag, Youtube embed, Vimeo embed, Google "
1272
- "maps, Addthis widget, Sharethis widget, Twitter widget, Soundcloud embed, "
1273
- "Slideshare embed, Linkedin widget, Instagram embed, Pinterest widget"
1274
- msgstr ""
1275
- "Guiones de bloqueo automático: Google Analytics, Facebook Pixel, Google Tag "
1276
- "Manager, Hotjar Analytics, Google Publisher Tag, Youtube embed, Vimeo embed, "
1277
- "Google maps, Addthis widget, Sharethis widget, Twitter widget, Soundcloud "
1278
- "embed, Slideshare embed, Linkedin widget, Instagram embed , Widget de "
1279
- "Pinterest"
1280
-
1281
- #: admin/views/goto-pro.php:86
1282
- msgid "Location based exclusion of cookie notice for EU countries"
1283
- msgstr ""
1284
- "Exclusión basada en la ubicación del aviso de cookies para países de la UE"
1285
-
1286
- #: admin/views/goto-pro.php:87
1287
- msgid "Granular control over the cookies/scipts used by the website"
1288
- msgstr ""
1289
- "Control granular sobre las cookies / scipts utilizados por el sitio web"
1290
-
1291
- #: admin/views/goto-pro.php:88
1292
- msgid "User consent audit logs"
1293
- msgstr "Registros de auditoría de consentimiento del usuario"
1294
-
1295
- #: admin/views/goto-pro.php:89
1296
- msgid "Customized privacy overview"
1297
- msgstr "Visión general personalizada de la privacidad"
1298
-
1299
- #: admin/views/goto-pro.php:90
1300
- msgid "Cookie bar preview in admin settings page"
1301
- msgstr ""
1302
- "Vista previa de la barra de cookies en la página de configuración del "
1303
- "administrador"
1304
-
1305
- #: admin/views/goto-pro.php:91
1306
- msgid "Advanced support for cache plugins"
1307
- msgstr "Soporte avanzado para complementos de caché"
1308
-
1309
- #: admin/views/goto-pro.php:92
1310
- msgid "Cookie bar theme customizer for banner/ widgets/ popup"
1311
- msgstr ""
1312
- "Personalizador de tema de la barra de cookies para banner / widgets / popup"
1313
-
1314
- #: admin/views/goto-pro.php:93
1315
- msgid "GDPR compliance with Google Tag Manager"
1316
- msgstr "Cumplimiento GDPR con Google Tag Manager"
1317
-
1318
- #: admin/views/goto-pro.php:94
1319
- msgid "Javascript helper functions"
1320
- msgstr "Funciones de ayuda de Javascript"
1321
-
1322
- #: admin/views/goto-pro.php:108
1323
- msgid "Like this plugin?"
1324
- msgstr "¿Te gusta este plugin?"
1325
-
1326
- #: admin/views/goto-pro.php:109
1327
- msgid "If you find this plugin useful please show your support and rate it"
1328
- msgstr "Si encuentra útil este complemento, muestre su soporte y califíquelo"
1329
-
1330
- #: admin/views/goto-pro.php:109
1331
- msgid " on"
1332
- msgstr " en"
1333
-
1334
- #: admin/views/goto-pro.php:109
1335
- msgid " much appreciated!"
1336
- msgstr " muy apreciado!"
1337
-
1338
- #: cookie-law-info.php:80
1339
- msgid ""
1340
- "Please make sure the cache is cleared after each plugin update especially if "
1341
- "you have minified JS and/or CSS files."
1342
- msgstr ""
1343
- "Asegúrese de que la caché se borre después de cada actualización del "
1344
- "complemento, especialmente si ha minificado archivos JS y / o CSS."
1345
-
1346
- #: includes/class-cookie-law-info-review_request.php:52
1347
- #, php-format
1348
- msgid ""
1349
- "Hey, we at %sWebToffee%s would like to thank you for using our plugin. We "
1350
- "would really appreciate if you could take a moment to drop a quick review "
1351
- "that will inspire us to keep going."
1352
- msgstr ""
1353
- "Hola, en %sWebToffee% s queremos agradecerle por usar nuestro complemento. "
1354
- "Realmente apreciaríamos si pudiera tomarse un momento para dejar una reseña "
1355
- "rápida que nos inspire a seguir adelante."
1356
-
1357
- #: includes/class-cookie-law-info-review_request.php:55
1358
- msgid "Remind me later"
1359
- msgstr "Recordame más tarde"
1360
-
1361
- #: includes/class-cookie-law-info-review_request.php:56
1362
- msgid "Not interested"
1363
- msgstr "No interesado"
1364
-
1365
- #: includes/class-cookie-law-info-review_request.php:57
1366
- msgid "Review now"
1367
- msgstr "Revisar ahora"
1368
-
1369
- #: public/class-cookie-law-info-public.php:251
1370
- msgid "GDPR Cookie Consent"
1371
- msgstr "Cookie Consent"
1372
-
1373
- #: public/class-cookie-law-info-public.php:252
1374
- msgid "Cookie List"
1375
- msgstr "Cookie"
1376
-
1377
- #: public/class-cookie-law-info-public.php:253
1378
- #: public/modules/shortcode/shortcode.php:208
1379
- msgid "Cookie"
1380
- msgstr "Cookie"
1381
-
1382
- #: public/class-cookie-law-info-public.php:254
1383
- msgid "Add New"
1384
- msgstr "Añadir nuevo"
1385
-
1386
- #: public/class-cookie-law-info-public.php:255
1387
- msgid "Add New Cookie Type"
1388
- msgstr "Agregar nueva Cookie"
1389
-
1390
- #: public/class-cookie-law-info-public.php:256
1391
- msgid "Edit Cookie Type"
1392
- msgstr "Tipo de cookie"
1393
-
1394
- #: public/class-cookie-law-info-public.php:257
1395
- msgid "New Cookie Type"
1396
- msgstr "Tipo de cookie"
1397
-
1398
- #: public/class-cookie-law-info-public.php:258
1399
- msgid "View Cookie Type"
1400
- msgstr "Tipo de cookie"
1401
-
1402
- #: public/class-cookie-law-info-public.php:259
1403
- msgid "Search Cookies"
1404
- msgstr "La búsqueda Cookies"
1405
-
1406
- #: public/class-cookie-law-info-public.php:260
1407
- msgid "Nothing found"
1408
- msgstr "Nada Encontrado"
1409
-
1410
- #: public/class-cookie-law-info-public.php:261
1411
- msgid "Nothing found in Trash"
1412
- msgstr "Nada encontrado en la Papelera"
1413
-
1414
- #: public/modules/script-blocker/script-blocker.php:156
1415
- #: public/modules/script-blocker/script-blocker.php:157
1416
- msgid "Script Blocker"
1417
- msgstr "Bloqueador de script"
1418
-
1419
- #: public/modules/script-blocker/script-blocker.php:182
1420
- msgid "Status updated"
1421
- msgstr "Status actualizado"
1422
-
1423
- #: public/modules/script-blocker/script-blocker.php:206
1424
- msgid "Advanced script rendering"
1425
- msgstr "Representación avanzada de secuencias de comandos"
1426
-
1427
- #: public/modules/script-blocker/script-blocker.php:208
1428
- #: public/modules/script-blocker/views/settings.php:7
1429
- msgid "Enable"
1430
- msgstr "Habilitar"
1431
-
1432
- #: public/modules/script-blocker/script-blocker.php:209
1433
- #: public/modules/script-blocker/views/settings.php:7
1434
- msgid "Disable"
1435
- msgstr "Inhabilitar"
1436
-
1437
- #: public/modules/script-blocker/script-blocker.php:210
1438
- msgid ""
1439
- "Advanced script rendering will render the blocked scripts using javascript "
1440
- "thus eliminating the need for a page refresh. It is also optimized for "
1441
- "caching since there is no server-side processing after obtaining the consent."
1442
- msgstr ""
1443
- "La representación avanzada de scripts procesará los scripts bloqueados "
1444
- "utilizando javascript, eliminando así la necesidad de actualizar la página. "
1445
- "También está optimizado para el almacenamiento en caché, ya que no hay "
1446
- "procesamiento del lado del servidor después de obtener el consentimiento."
1447
-
1448
- #: public/modules/script-blocker/views/settings.php:9
1449
- msgid "Script blocker is enabled."
1450
- msgstr "El bloqueador de scripts está habilitado."
1451
-
1452
- #: public/modules/script-blocker/views/settings.php:9
1453
- msgid ""
1454
- "Script blocker is currently disabled. Enable the blocker if you want any of "
1455
- "the below listed plugins to be auto blocked."
1456
- msgstr ""
1457
- "El bloqueador de scripts está actualmente deshabilitado. Habilite el "
1458
- "bloqueador si desea que alguno de los complementos enumerados a continuación "
1459
- "se bloquee automáticamente."
1460
-
1461
- #: public/modules/script-blocker/views/settings.php:10
1462
- #, php-format
1463
- msgid "<a href=\"javascript: submitform()\">%s</a>"
1464
- msgstr "<a href=\"javascript: submitform()\">%s</a>"
1465
-
1466
- #: public/modules/script-blocker/views/settings.php:14
1467
- #, php-format
1468
- msgid ""
1469
- "Advanced script rendering is currently disabled. It should be enabled for "
1470
- "the automatic script blocker to function. <a href=\"%s\">Enable.</a>"
1471
- msgstr ""
1472
- "La representación avanzada de scripts está actualmente deshabilitada. Debe "
1473
- "estar habilitado para que funcione el bloqueador automático de scripts. <a "
1474
- "href=\"%s\">Habilitar.</a>"
1475
-
1476
- #: public/modules/script-blocker/views/settings.php:113
1477
- msgid "Manage Script Blocking"
1478
- msgstr "Gestión de bloqueo de secuencia de comandos"
1479
-
1480
- #: public/modules/script-blocker/views/settings.php:134
1481
- #, php-format
1482
- msgid ""
1483
- "Below is the list of plugins currently supported for auto blocking. Plugins "
1484
- "marked inactive are either not installed or activated on your website. "
1485
- "Enabled plugins will be blocked by default on the front-end of your website "
1486
- "prior to obtaining user consent and rendered respectively based on consent. "
1487
- "<a href=\"%s\" target=\"_blank\">Read more.</a>"
1488
- msgstr ""
1489
- "A continuación se muestra la lista de complementos actualmente compatibles "
1490
- "con el bloqueo automático. Los complementos marcados como inactivos no están "
1491
- "instalados o activados en su sitio web. Los complementos habilitados se "
1492
- "bloquearán de forma predeterminada en el front-end de su sitio web antes de "
1493
- "obtener el consentimiento del usuario y se procesarán respectivamente según "
1494
- "el consentimiento. <a href=\"%s\" target=\"_blank\">Lee mas.</a>"
1495
-
1496
- #: public/modules/script-blocker/views/settings.php:140
1497
- msgid "Name"
1498
- msgstr "Nombre"
1499
-
1500
- #: public/modules/script-blocker/views/settings.php:141
1501
- msgid ""
1502
- "Enabled: Plugins will be blocked by default prior to obtaining user consent."
1503
- msgstr ""
1504
- "Habilitado: los complementos se bloquearán de forma predeterminada antes de "
1505
- "obtener el consentimiento del usuario."
1506
-
1507
- #: public/modules/script-blocker/views/settings.php:141
1508
- msgid "Disabled: Plugins will be rendered prior to obtaining consent."
1509
- msgstr ""
1510
- "Deshabilitado: los complementos se procesarán antes de obtener el "
1511
- "consentimiento."
1512
-
1513
- #: public/modules/script-blocker/views/settings.php:175
1514
- msgid "Inactive"
1515
- msgstr "Inactiva"
1516
-
1517
- #: public/modules/shortcode/shortcode.php:99
1518
- msgid "Your current state:"
1519
- msgstr "Su estado actual:"
1520
-
1521
- #: public/modules/shortcode/shortcode.php:104
1522
- msgid "Consent accepted."
1523
- msgstr "Consentimiento aceptado."
1524
-
1525
- #: public/modules/shortcode/shortcode.php:107
1526
- msgid "Consent rejected."
1527
- msgstr "Consentimiento rechazado."
1528
-
1529
- #: public/modules/shortcode/shortcode.php:111
1530
- msgid "No consent given."
1531
- msgstr "No hay consentimiento dado."
1532
-
1533
- #: public/modules/shortcode/shortcode.php:113
1534
- msgid "Manage your consent."
1535
- msgstr "Gestiona tu consentimiento."
1536
-
1537
- #: public/modules/shortcode/shortcode.php:150
1538
- msgid "Delete Cookies"
1539
- msgstr "Eliminar Cookies"
1540
-
1541
- #: public/modules/shortcode/shortcode.php:186
1542
- msgid "No records found"
1543
- msgstr "No se encontrarón archivos"
1544
-
1545
- #: public/modules/shortcode/shortcode.php:212
1546
- msgid "Type"
1547
- msgstr "Tipo"
1548
-
1549
- #: public/modules/shortcode/shortcode.php:216
1550
- msgid "Duration"
1551
- msgstr "Duración"
1552
-
1553
- #: public/modules/shortcode/shortcode.php:533
1554
- msgid "Close the cookie bar"
1555
- msgstr "Cerrar la barra de galletas"
1556
-
1557
- #: public/modules/shortcode/shortcode.php:533
1558
- msgid "Close and Accept"
1559
- msgstr "Cerrar y aceptar"
1560
-
1561
- #: public/views/cookie-law-info_bar.php:23
1562
- msgid "Close"
1563
- msgstr "Cerrar"
1564
-
1565
- #: public/views/cookie-law-info_popup_content.php:6
1566
- msgid "Always Enabled"
1567
- msgstr "Siempre habilitado"
1568
-
1569
- #: public/views/cookie-law-info_popup_content.php:9
1570
- msgid "Show more"
1571
- msgstr "Mostrar más"
1572
-
1573
- #: public/views/cookie-law-info_popup_content.php:9
1574
- msgid "Show less"
1575
- msgstr "Muestra menos"
1576
-
1577
- #~ msgid ""
1578
- #~ "Which plugin are you using for language translation? Could you tell us a "
1579
- #~ "bit more?"
1580
- #~ msgstr ""
1581
- #~ "¿Qué complemento está utilizando para la traducción de idiomas? ¿Podrías "
1582
- #~ "contarnos un poco más?"
1583
-
1584
- #~ msgid "Caching issues"
1585
- #~ msgstr "Problemas de almacenamiento en caché"
1586
-
1587
- #~ msgid "Which caching plugin are you using? Could you tell us a bit more?"
1588
- #~ msgstr ""
1589
- #~ "¿Qué complemento de almacenamiento en caché estás usando? ¿Podrías "
1590
- #~ "contarnos un poco más?"
1591
-
1592
- #~ msgid "Cookie Law Settings"
1593
- #~ msgstr "Configuración de la ley de cookies"
1594
-
1595
- #~ msgid "Show Again Tab"
1596
- #~ msgstr "Mostrar otra vez la pestaña"
1597
-
1598
- #~ msgid "Use Show Again Tab?"
1599
- #~ msgstr "¿Usar la pestaña Mostrar de nuevo?"
1600
-
1601
- #~ msgid "Show More Text"
1602
- #~ msgstr "Mostrar más texto"
1603
-
1604
- #~ msgid "Non-necessary Cookie"
1605
- #~ msgstr "Cookie no necesaria"
1606
-
1607
- #~ msgid "Necessary Cookie"
1608
- #~ msgstr "Galleta necesaria"
1609
-
1610
- #~ msgid "Your Cookie Law Info bar is switched on"
1611
- #~ msgstr "La barra de información de la ley de cookies está activada"
1612
-
1613
- #~ msgid "Your Cookie Law Info bar is switched off"
1614
- #~ msgstr "La barra de información de la ley de cookies está desactivada"
1615
-
1616
- #~ msgid "Cookie Bar will be shown in:"
1617
- #~ msgstr "Aparecerá la barra de galletas en:"
1618
-
1619
- #~ msgid "Disappear"
1620
- #~ msgstr "Desaparecer"
1621
-
1622
- #~ msgid "Show Border?"
1623
- #~ msgstr "Mostrar borde?"
1624
-
1625
- #~ msgid "Border Colour"
1626
- #~ msgstr "Color de borde"
1627
-
1628
- #~ msgid "Priority: (Numeric - Higher the value, higher the priority)"
1629
- #~ msgstr ""
1630
- #~ "Prioridad: (Numérico: cuanto mayor sea el valor, mayor será la prioridad)"
1631
-
1632
- #~ msgid "Priority"
1633
- #~ msgstr "Prioridad"
1634
-
1635
- #~ msgid "Scan & Download"
1636
- #~ msgstr "Escanear y descargar"
1637
-
1638
- #~ msgid "Export Cookie"
1639
- #~ msgstr "Exportar Cookie"
1640
-
1641
- #~ msgid "You do not have sufficient permissions to access this page."
1642
- #~ msgstr ""
1643
- #~ "Usted no tiene los permisos suficientes para ingresar a esta pagina."
1644
-
1645
- #~ msgid "Export as CSV file"
1646
- #~ msgstr "Exportar como CSV"
1647
-
1648
- #~ msgid "Export"
1649
- #~ msgstr "Gracias por confirmar tu solicitud de exportación."
1650
-
1651
- #~ msgid "Scan & Import"
1652
- #~ msgstr "Escanear e Importar"
1653
-
1654
- #~ msgid "Import Cookie"
1655
- #~ msgstr "Importar cookie"
1656
-
1657
- #~ msgid "BEGIN %s"
1658
- #~ msgstr "COMIENZA %s"
1659
-
1660
- #~ msgid "[Line %1$s] %2$s"
1661
- #~ msgstr "[Línea %1$s] %2$s"
1662
-
1663
- #~ msgid "Import from a CSV file"
1664
- #~ msgstr "Importar desde un archivo CSV"
1665
-
1666
- #~ msgid ""
1667
- #~ "Notice: please make the directory %s writable so that you can see the "
1668
- #~ "error log."
1669
- #~ msgstr ""
1670
- #~ "Aviso: por favor otorga permisos de escritura al directorio %s para que "
1671
- #~ "puedas ver el registro de errores."
1672
-
1673
- #~ msgid ", please <a href=\"%s\">check the error log</a>"
1674
- #~ msgstr "por favor <a href=\"%s\">revisa el registro de errores</a>"
1675
-
1676
- #~ msgid "Error during file upload."
1677
- #~ msgstr "Error durante la carga del archivo."
1678
-
1679
- #~ msgid "Cannot extract data from uploaded file or no file was uploaded."
1680
- #~ msgstr ""
1681
- #~ "No se pueden extraer datos del archivo subido o no se ha cargado algún "
1682
- #~ "archivo."
1683
-
1684
- #~ msgid "No posts was successfully imported%s."
1685
- #~ msgstr "No se ha importado los usuarios correctamente %s."
1686
-
1687
- #~ msgid "Some posts were successfully imported but some were not%s."
1688
- #~ msgstr "Algunos usuarios se importaron correctamente, pero otros no %s."
1689
-
1690
- #~ msgid "Post import was successful."
1691
- #~ msgstr "La importación fue exitosa"
1692
-
1693
- #~ msgid "CSV file"
1694
- #~ msgstr "Archivo CSV"
1695
-
1696
- #~ msgid "Import"
1697
- #~ msgstr "Importar"
1698
-
1699
- #~ msgid "Error processing migration request (ERROR: 4)"
1700
- #~ msgstr "Error al procesar la solicitud de migración (ERROR: 4)"
1701
-
1702
- #~ msgid "Show only for EU Countries ( GeoIP )"
1703
- #~ msgstr "Mostrar solo para países de la UE (GeoIP)"
1704
-
1705
- #~ msgid "Cookie Law Message Bar"
1706
- #~ msgstr "Cookie Message Bar"
1707
-
1708
- #~ msgid "Shortcodes allowed: see settngs section \"Using the Shortcodes\"."
1709
- #~ msgstr ""
1710
- #~ "Shortcodes permitidos: vea la sección de configuración \"Uso de códigos "
1711
- #~ "cortos\"."
1712
-
1713
- #~ msgid "Link Text"
1714
- #~ msgstr "Texto de Enlace"
1715
-
1716
- #~ msgid "Open link in new window?"
1717
- #~ msgstr "¿Abrir Link en una nueva Ventana?"
1718
-
1719
- #~ msgid "Link colour"
1720
- #~ msgstr "Color del enlace"
1721
-
1722
- #~ msgid "Show as button?"
1723
- #~ msgstr "Como botón"
1724
-
1725
- #~ msgid "Button colour"
1726
- #~ msgstr "Color del botón"
1727
-
1728
- #~ msgid "Button Size"
1729
- #~ msgstr "Tamaño del botón"
1730
-
1731
- #~ msgid "Using the Shortcodes"
1732
- #~ msgstr "Usando los Shortcodes"
1733
-
1734
- #~ msgid "The shortcodes are:"
1735
- #~ msgstr "Los shortcodes son:"
1736
-
1737
- #~ msgid ""
1738
- #~ "If you just want a standard green \"Accept\" button that closes the "
1739
- #~ "header and nothing more, use this shortcode. It is already styled, you "
1740
- #~ "don't need to customise it."
1741
- #~ msgstr ""
1742
- #~ "Si solo quiere un botón \"Aceptar\" verde estándar que cierra el "
1743
- #~ "encabezado y nada más, use este código breve. Ya está diseñado, no es "
1744
- #~ "necesario personalizarlo."
1745
-
1746
- #~ msgid ""
1747
- #~ "Alternatively you can add a colour value. Choose from: red, blue, orange, "
1748
- #~ "yellow, green or pink."
1749
- #~ msgstr ""
1750
- #~ "También puede Agregar un valor de color. Elegir entre: rojo, azul, "
1751
- #~ "naranja, amarillo, verde o rosa."
1752
-
1753
- #~ msgid "Careful to use the British spelling of \"colour\" for the attribute."
1754
- #~ msgstr "Cuidado con la ortografía británica de \"color\" para el atributo."
1755
-
1756
- #~ msgid "This prints out a nice table of cookies by category."
1757
- #~ msgstr "Esto imprime una agradable mesa de galletas por categoría."
1758
-
1759
- #~ msgid "This prints the settings popup of cookie category."
1760
- #~ msgstr ""
1761
- #~ "Esto imprime la ventana de configuración de la categoría de galletas."
1762
-
1763
- #~ msgid "Are you sure you want to migrate settings?"
1764
- #~ msgstr "¿Seguro que desea restablecer la configuración?"
1765
-
1766
- #~ msgid "Help"
1767
- #~ msgstr "Ayuda"
1768
-
1769
- #~ msgid "Report a Bug"
1770
- #~ msgstr "Informar de un error"
1771
-
1772
- #~ msgid "Guide"
1773
- #~ msgstr "Guía"
1774
-
1775
- #~ msgid "About the law"
1776
- #~ msgstr "Acerca de"
1777
-
1778
- #~ msgid "Message Bar"
1779
- #~ msgstr "Barra de Mensajes"
1780
-
1781
- #~ msgid "Licence"
1782
- #~ msgstr "Licencia"
1783
-
1784
- #~ msgid "Licence Activation"
1785
- #~ msgstr "Activación de Licencia"
1786
-
1787
- #~ msgid "API Licence Key:"
1788
- #~ msgstr "API Licence Key:"
1789
-
1790
- #~ msgid "Licence Key"
1791
- #~ msgstr "Clave de Licencia"
1792
-
1793
- #~ msgid "Licence Email"
1794
- #~ msgstr "Correo licencia API:"
1795
-
1796
- #~ msgid "Activate"
1797
- #~ msgstr "Activar"
1798
-
1799
- #~ msgid ""
1800
- #~ "This website uses cookies to improve your experience. We'll assume you're "
1801
- #~ "ok with this, but you can opt-out if you wish.[cookie_button] "
1802
- #~ "[cookie_settings] [cookie_link]"
1803
- #~ msgstr ""
1804
- #~ "Este sitio web utiliza cookies para mejorar tu experiencia. Asumiremos "
1805
- #~ "que usted está bien con esto, pero usted puede optar si lo desea. "
1806
- #~ "[cookie_button] [cookie_settings] [cookie_link]"
1807
-
1808
- #~ msgid "Cookie Category"
1809
- #~ msgstr "Categoría de la cookie"
1810
-
1811
- #~ msgid "Action is unknown."
1812
- #~ msgstr "Acción desconocida."
1813
-
1814
- #~ msgid "Category"
1815
- #~ msgstr "Categoría"
1816
-
1817
- #~ msgid "Key"
1818
- #~ msgstr "Clave API"
1819
-
1820
- #~ msgid "No Consent History"
1821
- #~ msgstr "Sin consentimiento de la historia"
1822
-
1823
- #~ msgid "IP Address"
1824
- #~ msgstr "Dirección IP:"
1825
-
1826
- #~ msgid "Visited Date"
1827
- #~ msgstr "Visitado"
1828
-
1829
- #~ msgid "User ID"
1830
- #~ msgstr "ID de Usuario"
1831
-
1832
- #~ msgid "GDPR Consent History"
1833
- #~ msgstr "Historia de consentimiento GDPR"
1834
-
1835
- #~ msgid "Export Report"
1836
- #~ msgstr "Exportar informe"
1837
-
1838
- #~ msgid "Event Logged Successfully"
1839
- #~ msgstr "Evento registrado con éxito"
1840
-
1841
- #~ msgid "Logging is not enabled"
1842
- #~ msgstr "El registro no está habilitado"
1843
-
1844
- #~ msgid "Consent Report"
1845
- #~ msgstr "documentación de consentimiento - informe"
1846
-
1847
- #~ msgid "Reject Button:"
1848
- #~ msgstr "Botón de rechazo:"
1849
-
1850
- #~ msgid "Cookie Bar will be show in:"
1851
- #~ msgstr "Cookie Bar se mostrará en:"
1852
-
1853
- #~ msgid "Auto-hide cookie bar after delay?"
1854
- #~ msgstr "¿Auto-ocultar barra de galleta retraso?"
1855
-
1856
- #~ msgid "Button will only link to URL if Action = Show URL"
1857
- #~ msgstr "Botón sólo vinculará a URL si acción = Mostrar URL"
1858
-
1859
- #~ msgid "Save"
1860
- #~ msgstr "Guardar"
1861
-
1862
- #~ msgid "Accept"
1863
- #~ msgstr "Aceptar"
1864
-
1865
- #~ msgid "Reject"
1866
- #~ msgstr "Rechazar"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/cookie-law-info-fi.mo DELETED
Binary file
languages/cookie-law-info-fi.po DELETED
@@ -1,1632 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: GDPR Cookie Consent\n"
4
- "POT-Creation-Date: 2020-11-17 11:31+0530\n"
5
- "PO-Revision-Date: 2020-11-17 11:31+0530\n"
6
- "Last-Translator: Hannu Jaatinen <hannu.jaatinen@jargon.fi>\n"
7
- "Language-Team: Hannu Jaatinen <hannu.jaatinen@jargon.fi>\n"
8
- "Language: fi\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.4.2\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
- "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
16
- "X-Poedit-WPHeader: cookie-law-info.php\n"
17
- "X-Poedit-SourceCharset: UTF-8\n"
18
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
19
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
20
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
21
- "X-Poedit-SearchPath-0: .\n"
22
- "X-Poedit-SearchPathExcluded-0: *.js\n"
23
-
24
- #: admin/class-cookie-law-info-admin.php:147
25
- #: admin/class-cookie-law-info-admin.php:148
26
- #: admin/class-cookie-law-info-admin.php:247
27
- #: admin/partials/cookie-law-info-admin_settings.php:31
28
- msgid "Settings"
29
- msgstr "Asetukset"
30
-
31
- #: admin/class-cookie-law-info-admin.php:155
32
- #: admin/class-cookie-law-info-admin.php:156
33
- #: public/modules/script-blocker/views/settings.php:174
34
- #: public/views/cookie-law-info_popup_content.php:23
35
- msgid "Non-necessary"
36
- msgstr "Ei-välttämätön"
37
-
38
- #: admin/class-cookie-law-info-admin.php:163
39
- #: admin/class-cookie-law-info-admin.php:164
40
- #: public/views/cookie-law-info_popup_content.php:22
41
- msgid "Necessary"
42
- msgstr "Välttämätön"
43
-
44
- #: admin/class-cookie-law-info-admin.php:171
45
- #: admin/class-cookie-law-info-admin.php:172
46
- #: admin/partials/cookie-law-info-privacy_overview.php:25
47
- msgid "Privacy Overview"
48
- msgstr "Tietosuojan yleiskuvaus"
49
-
50
- #: admin/class-cookie-law-info-admin.php:221
51
- #: admin/class-cookie-law-info-admin.php:276
52
- #: admin/class-cookie-law-info-admin.php:334
53
- #: admin/class-cookie-law-info-admin.php:378
54
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:22
55
- #: public/modules/script-blocker/script-blocker.php:133
56
- #: public/modules/script-blocker/script-blocker.php:173
57
- #: public/modules/script-blocker/script-blocker.php:310
58
- msgid "You do not have sufficient permission to perform this operation"
59
- msgstr "Sinulla ei ole riittäviä oikeuksia tämän toiminnon suorittamiseen"
60
-
61
- #: admin/class-cookie-law-info-admin.php:240
62
- #: admin/class-cookie-law-info-admin.php:306
63
- #: admin/class-cookie-law-info-admin.php:359
64
- #: admin/class-cookie-law-info-admin.php:403
65
- msgid "Settings Updated."
66
- msgstr "Asetukset päivitetty."
67
-
68
- #: admin/class-cookie-law-info-admin.php:248
69
- msgid "Support"
70
- msgstr "Tuki"
71
-
72
- #: admin/class-cookie-law-info-admin.php:249
73
- msgid "Premium Upgrade"
74
- msgstr "Premium-päivitys"
75
-
76
- #: admin/class-cookie-law-info-admin.php:418
77
- msgid "ERROR MIGRATING SETTINGS (ERROR: 2)"
78
- msgstr "VIRHE SIIRRETTÄESSÄ ASETUKSIA (VIRHE: 2)"
79
-
80
- #: admin/class-cookie-law-info-admin.php:436
81
- msgid "Cookie ID"
82
- msgstr "Evästeen tunnus"
83
-
84
- #: admin/class-cookie-law-info-admin.php:437
85
- msgid "Cookie Type"
86
- msgstr "Evästetyyppi"
87
-
88
- #: admin/class-cookie-law-info-admin.php:438
89
- msgid "Cookie Duration"
90
- msgstr "Evästeen kesto"
91
-
92
- #: admin/class-cookie-law-info-admin.php:439
93
- msgid "Cookie Sensitivity"
94
- msgstr "Evästeen herkkyys"
95
-
96
- #: admin/class-cookie-law-info-admin.php:689
97
- msgid "Close Header"
98
- msgstr "Sulje otsikko"
99
-
100
- #: admin/class-cookie-law-info-admin.php:693
101
- msgid "Open URL"
102
- msgstr "Avaa URL-osoite"
103
-
104
- #: admin/class-cookie-law-info-admin.php:706
105
- msgid "Extra Large"
106
- msgstr "Erittäin suuri"
107
-
108
- #: admin/class-cookie-law-info-admin.php:710
109
- msgid "Large"
110
- msgstr "Suuri"
111
-
112
- #: admin/class-cookie-law-info-admin.php:714
113
- msgid "Medium"
114
- msgstr "Keskikokoinen"
115
-
116
- #: admin/class-cookie-law-info-admin.php:718
117
- msgid "Small"
118
- msgstr "Pieni"
119
-
120
- #: admin/class-cookie-law-info-admin.php:732
121
- msgid "Default theme font"
122
- msgstr "Teeman oletusfontti"
123
-
124
- #: admin/class-cookie-law-info-admin.php:736
125
- msgid "Sans Serif"
126
- msgstr "Sans Serif"
127
-
128
- #: admin/class-cookie-law-info-admin.php:740
129
- msgid "Serif"
130
- msgstr "Serif"
131
-
132
- #: admin/class-cookie-law-info-admin.php:744
133
- msgid "Arial"
134
- msgstr "Arial"
135
-
136
- #: admin/class-cookie-law-info-admin.php:748
137
- msgid "Arial Black"
138
- msgstr "Arial Black"
139
-
140
- #: admin/class-cookie-law-info-admin.php:752
141
- msgid "Georgia, serif"
142
- msgstr "Georgia, serif"
143
-
144
- #: admin/class-cookie-law-info-admin.php:756
145
- msgid "Helvetica"
146
- msgstr "Helvetica"
147
-
148
- #: admin/class-cookie-law-info-admin.php:760
149
- msgid "Lucida"
150
- msgstr "Lucida"
151
-
152
- #: admin/class-cookie-law-info-admin.php:764
153
- msgid "Tahoma"
154
- msgstr "Tahoma"
155
-
156
- #: admin/class-cookie-law-info-admin.php:768
157
- msgid "Times New Roman"
158
- msgstr "Times New Roman"
159
-
160
- #: admin/class-cookie-law-info-admin.php:772
161
- msgid "Trebuchet"
162
- msgstr "Trebuchet"
163
-
164
- #: admin/class-cookie-law-info-admin.php:776
165
- msgid "Verdana"
166
- msgstr "Verdana"
167
-
168
- #: admin/modules/ccpa/ccpa.php:106
169
- msgid "Do you really wish to opt out?"
170
- msgstr "Haluatko todella kieltäytyä käytöstä?"
171
-
172
- #: admin/modules/ccpa/ccpa.php:107
173
- msgid "Confirm"
174
- msgstr "Vahvista"
175
-
176
- #: admin/modules/ccpa/ccpa.php:108
177
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:154
178
- msgid "Cancel"
179
- msgstr "Peruuta"
180
-
181
- #: admin/modules/ccpa/ccpa.php:145
182
- msgid "Select the type of law"
183
- msgstr "Valitse lain tyyppi"
184
-
185
- #: admin/modules/ccpa/ccpa.php:149
186
- msgid "GDPR"
187
- msgstr "GDPR"
188
-
189
- #: admin/modules/ccpa/ccpa.php:150 admin/modules/ccpa/ccpa.php:158
190
- msgid ""
191
- "Customize the buttons, notice, themes from the relevant tabs to setup your "
192
- "cookie notice accordingly."
193
- msgstr ""
194
- "Määritä evästeilmoitus mukauttamalla painikkeet, ilmoitus ja teemat niitä "
195
- "koskevista välilehdistä."
196
-
197
- #: admin/modules/ccpa/ccpa.php:153
198
- msgid "CCPA"
199
- msgstr "CCPA"
200
-
201
- #: admin/modules/ccpa/ccpa.php:154
202
- msgid ""
203
- "Most of the customizations from the tabs for buttons, notice or themes are "
204
- "not relevant especially if you choose to not show the notice, except the Do "
205
- "not sell within the buttons."
206
- msgstr ""
207
- "Useimmat painikkeiden, huomautusten tai teemojen välilehtien mukautukset "
208
- "eivät ole merkityksellisiä, varsinkin jos et halua näyttää ilmoitusta, "
209
- "paitsi Älä myy painikkeiden sisällä."
210
-
211
- #: admin/modules/ccpa/ccpa.php:157
212
- msgid "CCPA & GDPR"
213
- msgstr "CCPA ja GDPR"
214
-
215
- #: admin/modules/ccpa/views/ccpa_settings.php:7
216
- msgid "CCPA Settings"
217
- msgstr "CCPA-asetukset"
218
-
219
- #: admin/modules/ccpa/views/ccpa_settings.php:7
220
- msgid ""
221
- "The right to opt out in the California Consumer Privacy Act gives consumers "
222
- "the ability to direct a business not to sell their personal information to a "
223
- "third party. If the user considers to not sell their personal information, "
224
- "all the scripts related to the categories which are configured to sell "
225
- "personal information will be blocked. The DO NOT SELL option is facilitated "
226
- "via a shortcode [wt_cli_ccpa_optout]."
227
- msgstr ""
228
- "Kalifornian kuluttajansuojalaissa annettu oikeus kieltäytyä antaa "
229
- "kuluttajille mahdollisuuden ohjata yritystä olemaan myymättä "
230
- "henkilökohtaisia tietojaan kolmannelle osapuolelle. Jos käyttäjä harkitsee "
231
- "myymättä henkilökohtaisia tietojaan, kaikki komentosarjat, jotka liittyvät "
232
- "luokkiin, jotka on määritetty myymään henkilökohtaisia tietoja, estetään. "
233
- "ÄLÄ MYY-vaihtoehtoa helpotetaan lyhytkoodin avulla [wt_cli_ccpa_optout]."
234
-
235
- #: admin/modules/ccpa/views/ccpa_settings.php:10
236
- msgid "Enable CCPA ?"
237
- msgstr "Ota CCPA käyttöön?"
238
-
239
- #: admin/modules/ccpa/views/ccpa_settings.php:18
240
- msgid "Enable CCPA notice"
241
- msgstr "Ota CCPA-ilmoitus käyttöön"
242
-
243
- #: admin/modules/ccpa/views/ccpa_settings.php:18
244
- msgid ""
245
- "Enabling the notice will display the banner with the relevant text as per "
246
- "your configuration. Use this option particularly to record prior consent "
247
- "from the website visitors."
248
- msgstr ""
249
- "Ilmoituksen ottaminen käyttöön näyttää bannerin ja siihen liittyvän tekstin "
250
- "määrityksien mukaan. Käytä tätä vaihtoehtoa erityisesti verkkosivustojen "
251
- "kävijöiden aikaisemman suostumuksen tallentamiseen."
252
-
253
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:26
254
- msgid "Unable to handle your request."
255
- msgstr "Pyyntöä ei voi käsitellä."
256
-
257
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:96
258
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:130
259
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:132
260
- msgid "Error"
261
- msgstr "Virhe"
262
-
263
- #: admin/modules/cli-policy-generator/classes/class-preview-page.php:27
264
- msgid "Cookie Policy"
265
- msgstr "Evästekäytäntö"
266
-
267
- #: admin/modules/cli-policy-generator/classes/class-preview-page.php:83
268
- msgid "Auto reload preview"
269
- msgstr "Lataa esikatselu automaattisesti uudelleen"
270
-
271
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:106
272
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:107
273
- #: admin/modules/cli-policy-generator/views/policy-generator.php:21
274
- msgid "Policy generator"
275
- msgstr "Tietosuojakäytännön luontitoiminto"
276
-
277
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:133
278
- msgid "Success"
279
- msgstr "Onnistui"
280
-
281
- #: admin/modules/cli-policy-generator/views/policy-generator.php:25
282
- msgid "Sample heading"
283
- msgstr "Esimerkkiotsikko"
284
-
285
- #: admin/modules/cli-policy-generator/views/policy-generator.php:26
286
- msgid "Sample content"
287
- msgstr "Esimerkki sisällöstä"
288
-
289
- #: admin/modules/cli-policy-generator/views/policy-generator.php:27
290
- msgid "Delete"
291
- msgstr "Poista"
292
-
293
- #: admin/modules/cli-policy-generator/views/policy-generator.php:49
294
- msgid "Add new"
295
- msgstr "Lisää uusi"
296
-
297
- #: admin/modules/cli-policy-generator/views/policy-generator.php:53
298
- msgid "Heading"
299
- msgstr "Otsikko"
300
-
301
- #: admin/modules/cli-policy-generator/views/policy-generator.php:57
302
- #: admin/views/admin_necessary_cookie.php:39
303
- #: admin/views/admin_non_necessary_cookie.php:54
304
- #: public/modules/script-blocker/views/settings.php:142
305
- #: public/modules/shortcode/shortcode.php:220
306
- msgid "Description"
307
- msgstr "Kuvaus"
308
-
309
- #: admin/modules/cli-policy-generator/views/policy-generator.php:65
310
- msgid ""
311
- "Enabling this option will help us spread the word by placing a credit to "
312
- "WebToffee at the very end of the Cookie Policy page."
313
- msgstr ""
314
- "Tämän vaihtoehdon käyttöönotto auttaa meitä levittämään sanaa asettamalla "
315
- "evästekäytäntösivun loppuun linkin WebToffeen sivustolle."
316
-
317
- #: admin/modules/cli-policy-generator/views/policy-generator.php:82
318
- msgid "Update existing Cookie Policy page"
319
- msgstr "Päivitä aiemmin luotu evästekäytäntösivu"
320
-
321
- #: admin/modules/cli-policy-generator/views/policy-generator.php:88
322
- msgid "Create Cookie Policy page"
323
- msgstr "Luo evästekäytäntö -sivu"
324
-
325
- #: admin/modules/cli-policy-generator/views/policy-generator.php:92
326
- msgid "Live preview"
327
- msgstr "Reaaliaikainen esikatselu"
328
-
329
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:43
330
- msgid "The plugin is complex to set up"
331
- msgstr "Laajennuksen asentaminen on monimutkaista"
332
-
333
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:45
334
- msgid "Please describe which area you are facing difficulties"
335
- msgstr "Kuvaile mitä aluetta sinulla on vaikeuksia"
336
-
337
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:49
338
- msgid "I found a better plugin"
339
- msgstr "Löysin paremman lisäosan"
340
-
341
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:51
342
- msgid "Which plugin?"
343
- msgstr "Kuten tämä plugin?"
344
-
345
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:55
346
- msgid "The plugin is great, but I need specific feature that you don't support"
347
- msgstr ""
348
- "Lisäosa on hyvä, mutta tarvitsen tietyn ominaisuuden, jota ette tällä "
349
- "hetkellä tue"
350
-
351
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:57
352
- msgid "Could you tell us more about that feature?"
353
- msgstr "Voisitteko kertoa meille lisää ominaisuudesta?"
354
-
355
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:61
356
- msgid "The plugin didn't work as expected"
357
- msgstr "Laajennus ei toiminut odotetulla tavalla"
358
-
359
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:63
360
- msgid "What did you expect?"
361
- msgstr "Mitä oikein odotit?"
362
-
363
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:67
364
- msgid "A conflict with another plugin or theme"
365
- msgstr "Ristiriita toisen laajennuksen tai teeman kanssa"
366
-
367
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:69
368
- msgid "Which plugin or theme?"
369
- msgstr "Mikä laajennus tai teema?"
370
-
371
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:73
372
- msgid "Translation issues"
373
- msgstr "Käännöskysymykset"
374
-
375
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:77
376
- msgid "Incorrect/missing translation"
377
- msgstr "Virheellinen / puuttuva käännös"
378
-
379
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:79
380
- msgid "Name the language"
381
- msgstr "Nimeä kieli"
382
-
383
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:83
384
- msgid ""
385
- "Unable to translate my dynamic content e.g, cookie message, button text etc"
386
- msgstr ""
387
- "Ei voida kääntää dynaamista sisältöäni, esim. Evästeviestiä, painikkeen "
388
- "tekstiä jne"
389
-
390
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:85
391
- msgid "Name the language and the translator plugin that you are using"
392
- msgstr "Nimeä käyttämäsi kieli ja kääntäjälaajennus"
393
-
394
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:91
395
- msgid "Upgrade to pro"
396
- msgstr "Päivittää Pro: hon"
397
-
398
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:95
399
- #: admin/views/admin-settings-general.php:10
400
- #: admin/views/admin-settings-general.php:66
401
- msgid "Other"
402
- msgstr "Muut"
403
-
404
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:97
405
- msgid "Could you tell us a bit more?"
406
- msgstr "Voisitko kertoa meille hieman enemmän?"
407
-
408
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:117
409
- msgid "If you have a moment, please let us know why you are deactivating:"
410
- msgstr "Jos sinulla on hetki, kerro meille miksi olet aktivoinnin poistaminen:"
411
-
412
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:144
413
- msgid ""
414
- "We do not collect any personal data when you submit this form. It's your "
415
- "feedback that we value."
416
- msgstr ""
417
- "Emme kerää mitään henkilötietoja, kun lähetät tämän lomakkeen. Arvostamme "
418
- "palautettasi."
419
-
420
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:145
421
- msgid "Privacy Policy"
422
- msgstr "Tietosuojakäytäntö"
423
-
424
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:152
425
- msgid "Go to support"
426
- msgstr "Mene tukeen"
427
-
428
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:153
429
- msgid "Submit & Deactivate"
430
- msgstr "Lähetä ja poista käytöstä"
431
-
432
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:155
433
- msgid "I rather wouldn't say"
434
- msgstr "Mieluummin en sanoa"
435
-
436
- #: admin/partials/cookie-law-info-admin_settings.php:25
437
- #: admin/views/admin_necessary_cookie.php:20
438
- #: admin/views/admin_non_necessary_cookie.php:17
439
- msgid "Settings updated."
440
- msgstr "Asetukset päivitetty."
441
-
442
- #: admin/partials/cookie-law-info-admin_settings.php:26
443
- #: admin/views/admin_necessary_cookie.php:21
444
- #: admin/views/admin_non_necessary_cookie.php:18
445
- msgid "Unable to update Settings."
446
- msgstr "Asetuksia ei voi päivittää."
447
-
448
- #: admin/partials/cookie-law-info-admin_settings.php:27
449
- msgid "Settings reset to defaults."
450
- msgstr "Asetukset palautuvat oletusarvoihin."
451
-
452
- #: admin/partials/cookie-law-info-admin_settings.php:28
453
- msgid "Unable to reset settings."
454
- msgstr "Asetusten palauttaminen ei onnistu."
455
-
456
- #: admin/partials/cookie-law-info-admin_settings.php:39
457
- msgid "Cookie bar is currently active"
458
- msgstr "Evästepalkki on tällä hetkellä aktiivinen"
459
-
460
- #: admin/partials/cookie-law-info-admin_settings.php:47
461
- msgid "Cookie bar is currently inactive"
462
- msgstr "Evästepalkki ei ole tällä hetkellä aktiivinen"
463
-
464
- #: admin/partials/cookie-law-info-admin_settings.php:57
465
- #: admin/views/admin-settings-general.php:9
466
- msgid "General"
467
- msgstr "Yleinen"
468
-
469
- #: admin/partials/cookie-law-info-admin_settings.php:58
470
- msgid "Customise Cookie Bar"
471
- msgstr "Mukauta evästepalkki"
472
-
473
- #: admin/partials/cookie-law-info-admin_settings.php:59
474
- msgid "Customise Buttons"
475
- msgstr "Mukauta painikkeet"
476
-
477
- #: admin/partials/cookie-law-info-admin_settings.php:60
478
- #: admin/views/admin-settings-advanced.php:8
479
- msgid "Advanced"
480
- msgstr "Lisäasetukset"
481
-
482
- #: admin/partials/cookie-law-info-admin_settings.php:61
483
- msgid "Help Guide"
484
- msgstr "Ohjeopas"
485
-
486
- #: admin/partials/cookie-law-info-privacy_overview.php:32
487
- msgid "Privacy Overview Title"
488
- msgstr "Tietosuojan yleiskuvauksen otsikko"
489
-
490
- #: admin/partials/cookie-law-info-privacy_overview.php:38
491
- #: admin/partials/cookie-law-info-privacy_overview.php:53
492
- msgid "This will be shown in the settings visible for user on consent screen."
493
- msgstr "Tämä näkyy käyttäjän suostumusnäytössä näkyvissä asetuksissa."
494
-
495
- #: admin/partials/cookie-law-info-privacy_overview.php:61
496
- msgid "Save Settings"
497
- msgstr "Tallenna asetukset"
498
-
499
- #: admin/views/admin-settings-advanced.php:9
500
- msgid ""
501
- "Sometimes themes apply settings that clash with plugins. If that happens, "
502
- "try adjusting these settings."
503
- msgstr ""
504
- "Joskus teemat käyttävät asetuksia, jotka ovat ristiriidassa lisäosien "
505
- "kanssa. Jos näin käy, yritä säätää näitä asetuksia."
506
-
507
- #: admin/views/admin-settings-advanced.php:13
508
- msgid "Reset all values"
509
- msgstr "Nollaa kaikki arvot"
510
-
511
- #: admin/views/admin-settings-advanced.php:15
512
- msgid "Delete settings and reset"
513
- msgstr "Poista asetukset ja nollaa"
514
-
515
- #: admin/views/admin-settings-advanced.php:15
516
- msgid "Are you sure you want to delete all your settings?"
517
- msgstr "Haluatko varmasti poistaa kaikki asetukset?"
518
-
519
- #: admin/views/admin-settings-advanced.php:16
520
- msgid "Warning: this will actually delete your current settings."
521
- msgstr "Varoitus: tämä poistaa nykyiset asetukset."
522
-
523
- #: admin/views/admin-settings-buttons.php:10
524
- msgid "Accept Button"
525
- msgstr "Hyväksy-painike"
526
-
527
- #: admin/views/admin-settings-buttons.php:11
528
- #: admin/views/admin-settings-buttons.php:93
529
- msgid "Reject Button"
530
- msgstr "Hylkää-painike"
531
-
532
- #: admin/views/admin-settings-buttons.php:12
533
- #: admin/views/admin-settings-buttons.php:163
534
- msgid "Settings Button"
535
- msgstr "Asetukset-painike"
536
-
537
- #: admin/views/admin-settings-buttons.php:13
538
- #: admin/views/admin-settings-buttons.php:206
539
- msgid "Read More Link"
540
- msgstr "Lue lisää -linkki"
541
-
542
- #: admin/views/admin-settings-buttons.php:14
543
- #: admin/views/admin-settings-buttons.php:326
544
- msgid "Do not sell link"
545
- msgstr "Älä myy -linkki"
546
-
547
- #: admin/views/admin-settings-buttons.php:20
548
- msgid "Main Button"
549
- msgstr "Päänäppäin"
550
-
551
- #: admin/views/admin-settings-buttons.php:21
552
- msgid ""
553
- "This button/link can be customised to either simply close the cookie bar, or "
554
- "follow a link. You can also customise the colours and styles, and show it as "
555
- "a link or a button."
556
- msgstr ""
557
- "Tämä painike/linkki voidaan mukauttaa joko sulkemaan evästepalkki tai "
558
- "seuraamaan linkkiä. Voit myös mukauttaa värejä ja tyylejä ja näyttää sen "
559
- "linkkinä tai painikkeena."
560
-
561
- #: admin/views/admin-settings-buttons.php:24
562
- #: admin/views/admin-settings-buttons.php:96
563
- #: admin/views/admin-settings-buttons.php:166
564
- #: admin/views/admin-settings-buttons.php:220
565
- msgid "Text"
566
- msgstr "Teksti"
567
-
568
- #: admin/views/admin-settings-buttons.php:30
569
- #: admin/views/admin-settings-buttons.php:102
570
- #: admin/views/admin-settings-buttons.php:172
571
- #: admin/views/admin-settings-buttons.php:226
572
- #: admin/views/admin-settings-buttons.php:346
573
- msgid "Text colour"
574
- msgstr "Tekstin väri"
575
-
576
- #: admin/views/admin-settings-buttons.php:38
577
- #: admin/views/admin-settings-buttons.php:110
578
- #: admin/views/admin-settings-buttons.php:180
579
- #: admin/views/admin-settings-buttons.php:234
580
- #: admin/views/admin-settings-buttons.php:335
581
- msgid "Show as"
582
- msgstr "Näytä muodossa"
583
-
584
- #: admin/views/admin-settings-buttons.php:40
585
- #: admin/views/admin-settings-buttons.php:112
586
- #: admin/views/admin-settings-buttons.php:182
587
- #: admin/views/admin-settings-buttons.php:236
588
- msgid "Button"
589
- msgstr "Painike"
590
-
591
- #: admin/views/admin-settings-buttons.php:42
592
- #: admin/views/admin-settings-buttons.php:114
593
- #: admin/views/admin-settings-buttons.php:184
594
- #: admin/views/admin-settings-buttons.php:238
595
- #: admin/views/admin-settings-buttons.php:337
596
- msgid "Link"
597
- msgstr "Linkki"
598
-
599
- #: admin/views/admin-settings-buttons.php:46
600
- #: admin/views/admin-settings-buttons.php:118
601
- #: admin/views/admin-settings-buttons.php:188
602
- #: admin/views/admin-settings-buttons.php:242
603
- msgid "Background colour"
604
- msgstr "Taustaväri"
605
-
606
- #: admin/views/admin-settings-buttons.php:55
607
- #: admin/views/admin-settings-buttons.php:126
608
- msgid "Action"
609
- msgstr "Toiminto"
610
-
611
- #: admin/views/admin-settings-buttons.php:63
612
- #: admin/views/admin-settings-buttons.php:138
613
- #: admin/views/admin-settings-buttons.php:253
614
- #: admin/views/admin-settings-buttons.php:260
615
- msgid "URL"
616
- msgstr "URL"
617
-
618
- #: admin/views/admin-settings-buttons.php:66
619
- #: admin/views/admin-settings-buttons.php:141
620
- msgid "Button will only link to URL if Action = Open URL"
621
- msgstr "Painike linkittää URL-osoitteeseen vain, jos Toiminto = Avaa URL"
622
-
623
- #: admin/views/admin-settings-buttons.php:71
624
- #: admin/views/admin-settings-buttons.php:146
625
- msgid "Open URL in new window?"
626
- msgstr "Avaa URL-osoite uudessa ikkunassa?"
627
-
628
- #: admin/views/admin-settings-buttons.php:73
629
- #: admin/views/admin-settings-buttons.php:148
630
- #: admin/views/admin-settings-buttons.php:304
631
- #: admin/views/admin-settings-buttons.php:311
632
- #: admin/views/admin-settings-general.php:38
633
- #: admin/views/admin-settings-general.php:54
634
- #: admin/views/admin-settings-general.php:74
635
- #: admin/views/admin-settings-general.php:82
636
- #: admin/views/admin-settings-general.php:89
637
- #: admin/views/admin-settings-messagebar.php:86
638
- #: admin/views/admin-settings-messagebar.php:110
639
- #: admin/views/admin_non_necessary_cookie.php:32
640
- msgid "Yes"
641
- msgstr "Kyllä"
642
-
643
- #: admin/views/admin-settings-buttons.php:75
644
- #: admin/views/admin-settings-buttons.php:149
645
- #: admin/views/admin-settings-buttons.php:305
646
- #: admin/views/admin-settings-buttons.php:312
647
- #: admin/views/admin-settings-general.php:39
648
- #: admin/views/admin-settings-general.php:55
649
- #: admin/views/admin-settings-general.php:75
650
- #: admin/views/admin-settings-general.php:83
651
- #: admin/views/admin-settings-general.php:90
652
- #: admin/views/admin-settings-messagebar.php:87
653
- #: admin/views/admin-settings-messagebar.php:111
654
- #: admin/views/admin_non_necessary_cookie.php:33
655
- #: public/modules/script-blocker/views/settings.php:139
656
- msgid "No"
657
- msgstr "Ei"
658
-
659
- #: admin/views/admin-settings-buttons.php:82
660
- #: admin/views/admin-settings-buttons.php:153
661
- #: admin/views/admin-settings-buttons.php:196
662
- #: admin/views/admin-settings-buttons.php:316
663
- msgid "Size"
664
- msgstr "Koko"
665
-
666
- #: admin/views/admin-settings-buttons.php:207
667
- msgid ""
668
- "This button/link can be used to provide a link out to your Privacy & Cookie "
669
- "Policy. You can customise it any way you like."
670
- msgstr ""
671
- "Tämän painikkeen/linkin avulla voit tarjota linkin tietosuoja- ja "
672
- "evästekäytäntöösi. Voit muokata sitä haluamallasi tavalla."
673
-
674
- #: admin/views/admin-settings-buttons.php:212
675
- msgid "Click"
676
- msgstr "Napsauta"
677
-
678
- #: admin/views/admin-settings-buttons.php:212
679
- msgid "here"
680
- msgstr "tässä"
681
-
682
- #: admin/views/admin-settings-buttons.php:212
683
- msgid " to generate content for Cookie Policy page."
684
- msgstr " luoda sisältöä evästekäytäntösivulle."
685
-
686
- #: admin/views/admin-settings-buttons.php:251
687
- msgid "URL or Page?"
688
- msgstr "URL-osoite tai sivu?"
689
-
690
- #: admin/views/admin-settings-buttons.php:255
691
- #: admin/views/admin-settings-buttons.php:266
692
- msgid "Page"
693
- msgstr "Sivu"
694
-
695
- #: admin/views/admin-settings-buttons.php:269
696
- msgid "Select One"
697
- msgstr "Valitse yksi"
698
-
699
- #: admin/views/admin-settings-buttons.php:294
700
- msgid "The currently selected page does not exist. Please select a new page."
701
- msgstr "Tällä hetkellä valittua sivua ei ole. Valitse uusi sivu."
702
-
703
- #: admin/views/admin-settings-buttons.php:302
704
- msgid "Minimize Cookie Bar in this page/URL?"
705
- msgstr "Pienennä evästepalkki tällä sivulla/URLissa?"
706
-
707
- #: admin/views/admin-settings-buttons.php:309
708
- msgid "Open in new window?"
709
- msgstr "Avaa uudessa ikkunassa?"
710
-
711
- #: admin/views/admin-settings-buttons.php:329
712
- msgid "CCPA Text"
713
- msgstr "CCPA-teksti"
714
-
715
- #: admin/views/admin-settings-buttons.php:338
716
- msgid "Checkbox"
717
- msgstr "Valintaruutu"
718
-
719
- #: admin/views/admin-settings-buttons.php:340
720
- msgid "The shortcode will be represented as a link whereever used."
721
- msgstr "Lyhytkoodi esitetään linkkinä missä tahansa."
722
-
723
- #: admin/views/admin-settings-buttons.php:341
724
- msgid ""
725
- "The shortcode will be represented as a checkbox with select option to record "
726
- "consent."
727
- msgstr ""
728
- "Lyhytkoodi esitetään valintaruutuna, jossa on valinta suostumuksen "
729
- "tallentamiseen."
730
-
731
- #: admin/views/admin-settings-general.php:17
732
- msgid "Enable cookie bar"
733
- msgstr "Ota evästepalkki käyttöön"
734
-
735
- #: admin/views/admin-settings-general.php:19
736
- msgid "On"
737
- msgstr "Päällä"
738
-
739
- #: admin/views/admin-settings-general.php:20
740
- msgid "Off"
741
- msgstr "Pois päältä"
742
-
743
- #: admin/views/admin-settings-general.php:36
744
- msgid "Auto-hide(Accept) cookie bar after delay?"
745
- msgstr "Piilota automaattisesti (Hyväksy) evästepalkki viiveen jälkeen?"
746
-
747
- #: admin/views/admin-settings-general.php:43
748
- msgid "Milliseconds until hidden"
749
- msgstr "Millisekuntia, kunnes piilotettu"
750
-
751
- #: admin/views/admin-settings-general.php:46
752
- msgid "Specify milliseconds (not seconds)"
753
- msgstr "Määritä millisekunneissa (ei sekunteina)"
754
-
755
- #: admin/views/admin-settings-general.php:46
756
- msgid "seconds"
757
- msgstr "sekuntia"
758
-
759
- #: admin/views/admin-settings-general.php:52
760
- msgid "Auto-hide cookie bar if the user scrolls ( Accept on Scroll )?"
761
- msgstr ""
762
- "Piilota evästeet automaattisesti, jos käyttäjä vierittää (Hyväksy "
763
- "vierittämällä)?"
764
-
765
- #: admin/views/admin-settings-general.php:56
766
- msgid ""
767
- "As per latest GDPR policies it is required to take an explicit consent for "
768
- "the cookies. Use this option with discretion especially if you serve EU"
769
- msgstr ""
770
- "Viimeisimpien GDPR-käytäntöjen mukaan evästeiden käytölle on annettava "
771
- "nimenomainen suostumus. Käytä tätä vaihtoehtoa harkinnan mukaan erityisesti, "
772
- "jos toimit EU:ssa"
773
-
774
- #: admin/views/admin-settings-general.php:57
775
- msgid "This option will not work along with `Popup overlay`."
776
- msgstr ""
777
- "Tämä vaihtoehto ei toimi yhdessä Ponnahdusikkuna peitteellä -asetuksen "
778
- "kanssa."
779
-
780
- #: admin/views/admin-settings-general.php:69
781
- msgid "Reload after \"scroll accept\" event?"
782
- msgstr "Lataa uudelleen ”hyväksy vierittämällä\" -tapahtuman jälkeen?"
783
-
784
- #: admin/views/admin-settings-general.php:80
785
- msgid "Reload after Accept button click"
786
- msgstr "Lataa uudelleen Hyväksy-painikkeen napsauttamisen jälkeen"
787
-
788
- #: admin/views/admin-settings-general.php:87
789
- msgid "Reload after Reject button click"
790
- msgstr "Lataa uudelleen Hylkää-painikkeen napsautuksen jälkeen"
791
-
792
- #: admin/views/admin-settings-help.php:9
793
- msgid "Shortcodes"
794
- msgstr "Lyhytkoodit"
795
-
796
- #: admin/views/admin-settings-help.php:10
797
- #: admin/views/admin-settings-help.php:103
798
- msgid "Help Links"
799
- msgstr "Ohjeen linkit"
800
-
801
- #: admin/views/admin-settings-help.php:16
802
- msgid "Cookie bar shortcodes"
803
- msgstr "Evästepalkin lyhytkoodit"
804
-
805
- #: admin/views/admin-settings-help.php:17
806
- msgid ""
807
- "You can enter the shortcodes in the \"message\" field of the Cookie Law Info "
808
- "bar. They add nicely formatted buttons and/or links into the cookie bar, "
809
- "without you having to add any HTML."
810
- msgstr ""
811
- "Voit syöttää lyhytkoodeja Cookie Law’n tietopalkin \"viesti\" -kenttään. Ne "
812
- "lisäävät hienosti muotoiltuja painikkeita ja/tai linkkejä evästepalkkiin "
813
- "ilman, että sinun tarvitsee lisätä HTML-koodia."
814
-
815
- #: admin/views/admin-settings-help.php:22
816
- msgid "This is the \"main button\" you customise above."
817
- msgstr "Tämä on \"pääpainike\" jota mukautat yllä olevilla toiminnoilla."
818
-
819
- #: admin/views/admin-settings-help.php:26
820
- msgid "This is the cookie reject button shortcode."
821
- msgstr "Tämä on evästeen hylkäyspainikkeen lyhytkoodi."
822
-
823
- #: admin/views/admin-settings-help.php:30
824
- msgid "This is the cookie settings button rendering shortcode."
825
- msgstr "Tämä on evästeasetusten painikkeen tekevä lyhytkoodi."
826
-
827
- #: admin/views/admin-settings-help.php:33
828
- msgid "This is the \"read more\" link you customise above."
829
- msgstr "Tämä on ”Lue lisää\" -linkki, jota mukautat yllä."
830
-
831
- #: admin/views/admin-settings-help.php:36
832
- msgid "Setup margin for above buttons"
833
- msgstr "Edellä mainittujen painikkeiden marginaalin määrittäminen"
834
-
835
- #: admin/views/admin-settings-help.php:65
836
- msgid "Other shortcodes"
837
- msgstr "Muut lyhytkoodit"
838
-
839
- #: admin/views/admin-settings-help.php:66
840
- msgid ""
841
- "These shortcodes can be used in pages and posts on your website. It is not "
842
- "recommended to use these inside the cookie bar itself."
843
- msgstr ""
844
- "Näitä lyhytkoodeja voidaan käyttää sivustosi sivuilla ja artikkeleissa. "
845
- "Niitä ei kannata käyttää itse evästepalkin sisällä."
846
-
847
- #: admin/views/admin-settings-help.php:72
848
- msgid ""
849
- "This prints out a nice table of cookies, in line with the guidance given by "
850
- "the ICO."
851
- msgstr ""
852
- "Tämä tulostaa hienon evästeiden taulukon ICO:n antamien ohjeiden mukaisesti."
853
-
854
- #: admin/views/admin-settings-help.php:72
855
- msgid ""
856
- "You need to enter the cookies your website uses via the Cookie Law Info menu "
857
- "in your WordPress dashboard."
858
- msgstr ""
859
- "Sinun on syötettävä sivustosi käyttämät evästeet WordPress-hallintapaneelin "
860
- "Cookie Law Info -valikon kautta."
861
-
862
- #: admin/views/admin-settings-help.php:80
863
- msgid "Styles included"
864
- msgstr "Tyylit mukana"
865
-
866
- #: admin/views/admin-settings-help.php:82
867
- msgid "Columns available"
868
- msgstr "Käytettävissä olevat sarakkeet"
869
-
870
- #: admin/views/admin-settings-help.php:82
871
- msgid "Will print all columns by default."
872
- msgstr "Tulostaa kaikki sarakkeet oletusarvoisesti."
873
-
874
- #: admin/views/admin-settings-help.php:86
875
- msgid ""
876
- "This shortcode will display a normal HTML link which when clicked, will "
877
- "delete the cookie set by Cookie Law Info (this cookie is used to remember "
878
- "that the cookie bar is closed)."
879
- msgstr ""
880
- "Tämä lyhytkoodi näyttää normaalin HTML-linkin, joka napsautettaessa poistaa "
881
- "evästelain tietojen asettaman evästeen (tätä evästettä käytetään muistamaan, "
882
- "että evästepalkki on suljettu)."
883
-
884
- #: admin/views/admin-settings-help.php:90
885
- msgid ""
886
- "Add any text you like- useful if you want e.g. another language to English."
887
- msgstr ""
888
- "Lisää haluamasi teksti - hyödyllinen, jos haluat esimeriksi käyttää "
889
- "englantia toisena kielenä."
890
-
891
- #: admin/views/admin-settings-help.php:94
892
- msgid "Add content after accepting the cookie notice."
893
- msgstr "Lisää sisältöä evästeiden ilmoituksen hyväksymisen jälkeen."
894
-
895
- #: admin/views/admin-settings-help.php:107
896
- #: admin/views/admin-settings-help.php:110 admin/views/goto-pro.php:103
897
- msgid "Documentation"
898
- msgstr "Ohjeet"
899
-
900
- #: admin/views/admin-settings-help.php:108
901
- msgid "Refer to our documentation to set and get started"
902
- msgstr "Katso ohjeistamme lisätietoja määrityksistä ja käyttöönotosta"
903
-
904
- #: admin/views/admin-settings-help.php:115
905
- msgid "Help and Support"
906
- msgstr "Ohjeet ja tuki"
907
-
908
- #: admin/views/admin-settings-help.php:116
909
- msgid "We would love to help you on any queries or issues."
910
- msgstr "Autamme mielellämme kaikissa kyselyissä tai kysymyksissä."
911
-
912
- #: admin/views/admin-settings-help.php:118
913
- msgid "Contact Us"
914
- msgstr "Ota meihin yhteyttä"
915
-
916
- #: admin/views/admin-settings-messagebar.php:9
917
- msgid "Cookie bar"
918
- msgstr "Evästepalkki"
919
-
920
- #: admin/views/admin-settings-messagebar.php:10
921
- #: admin/views/admin-settings-messagebar.php:145
922
- msgid "Revisit consent"
923
- msgstr "Tarkista suostumus uudelleen"
924
-
925
- #: admin/views/admin-settings-messagebar.php:15
926
- msgid "Cookie Bar"
927
- msgstr "Evästepalkki"
928
-
929
- #: admin/views/admin-settings-messagebar.php:18
930
- msgid "Message Heading"
931
- msgstr "Viestin otsikko"
932
-
933
- #: admin/views/admin-settings-messagebar.php:21
934
- msgid "Leave it blank, If you do not need a heading"
935
- msgstr "Jätä tyhjäksi, jos et tarvitse otsikkoa"
936
-
937
- #: admin/views/admin-settings-messagebar.php:26
938
- msgid "Message"
939
- msgstr "Viesti"
940
-
941
- #: admin/views/admin-settings-messagebar.php:32
942
- msgid "Shortcodes allowed: see the Help Guide tab"
943
- msgstr "Sallitut lyhytkoodit: katso Ohjeopas-välilehti"
944
-
945
- #: admin/views/admin-settings-messagebar.php:32
946
- msgid ""
947
- "Examples: \"We use cookies on this website [cookie_accept] to find out how "
948
- "to delete cookies [cookie_link].\""
949
- msgstr ""
950
- "Esimerkkejä: \"Käytämme evästeitä tällä sivustolla [cookie_accept] "
951
- "selvittääksesi, miten evästeet poistetaan [cookie_link].\""
952
-
953
- #: admin/views/admin-settings-messagebar.php:36
954
- msgid "Cookie Bar Colour"
955
- msgstr "Evästepalkin väri"
956
-
957
- #: admin/views/admin-settings-messagebar.php:46
958
- msgid "Text Colour"
959
- msgstr "Tekstin väri"
960
-
961
- #: admin/views/admin-settings-messagebar.php:55
962
- msgid "Font"
963
- msgstr "Fontti"
964
-
965
- #: admin/views/admin-settings-messagebar.php:63
966
- msgid "Show cookie bar as"
967
- msgstr "Näytä evästepalkki muodossa"
968
-
969
- #: admin/views/admin-settings-messagebar.php:68
970
- msgid "Banner"
971
- msgstr "Banneri"
972
-
973
- #: admin/views/admin-settings-messagebar.php:69
974
- msgid "Popup"
975
- msgstr "Ponnahdusikkuna"
976
-
977
- #: admin/views/admin-settings-messagebar.php:70
978
- msgid "Widget"
979
- msgstr "Vimpain"
980
-
981
- #: admin/views/admin-settings-messagebar.php:74
982
- msgid "Position"
983
- msgstr "Sijainti"
984
-
985
- #: admin/views/admin-settings-messagebar.php:84
986
- msgid "Add overlay?"
987
- msgstr "Lisää peite?"
988
-
989
- #: admin/views/admin-settings-messagebar.php:88
990
- msgid ""
991
- "When the popup is active, an overlay will block the user from browsing the "
992
- "site."
993
- msgstr ""
994
- "Kun ponnahdusikkuna on aktiivinen, peite estää käyttäjän selaamasta sivustoa."
995
-
996
- #: admin/views/admin-settings-messagebar.php:89
997
- msgid "`Accept on scroll` will not work along with this option."
998
- msgstr "\"Hyväksy vierittämällä\" ei toimi tämän vaihtoehdon kanssa."
999
-
1000
- #: admin/views/admin-settings-messagebar.php:93
1001
- msgid "Position:"
1002
- msgstr "Sijainti:"
1003
-
1004
- #: admin/views/admin-settings-messagebar.php:98
1005
- msgid "Header"
1006
- msgstr "Sivun yläreuna"
1007
-
1008
- #: admin/views/admin-settings-messagebar.php:99
1009
- msgid "Footer"
1010
- msgstr "Sivun alareuna"
1011
-
1012
- #: admin/views/admin-settings-messagebar.php:108
1013
- msgid "Fix Cookie Bar to Header?"
1014
- msgstr "Kiinnitä evästepalkki sivun yläreunaan?"
1015
-
1016
- #: admin/views/admin-settings-messagebar.php:112
1017
- msgid ""
1018
- "If you select \"Header\" then you can optionally stick the cookie bar to the "
1019
- "header. Will not have any effect if you select \"Footer\"."
1020
- msgstr ""
1021
- "Jos valitset ”Sivun yläreuna”, voit kiinnittää evästepalkin sivun "
1022
- "yläreunaan. Tällä asetuksella ei ole vaikutusta, jos valitset Sivun alareuna."
1023
-
1024
- #: admin/views/admin-settings-messagebar.php:120
1025
- msgid "On load"
1026
- msgstr "Latautuminen"
1027
-
1028
- #: admin/views/admin-settings-messagebar.php:125
1029
- #: admin/views/admin-settings-messagebar.php:135
1030
- msgid "Animate"
1031
- msgstr "Animoitu"
1032
-
1033
- #: admin/views/admin-settings-messagebar.php:126
1034
- #: admin/views/admin-settings-messagebar.php:136
1035
- msgid "Sticky"
1036
- msgstr "Kiinnitetty"
1037
-
1038
- #: admin/views/admin-settings-messagebar.php:130
1039
- msgid "On hide"
1040
- msgstr "Piilotus"
1041
-
1042
- #: admin/views/admin-settings-messagebar.php:145
1043
- msgid "previously"
1044
- msgstr "aiemmin"
1045
-
1046
- #: admin/views/admin-settings-messagebar.php:145
1047
- msgid "Show again tab"
1048
- msgstr "Näytä uudelleen -välilehti"
1049
-
1050
- #: admin/views/admin-settings-messagebar.php:147
1051
- msgid ""
1052
- "Revisit consent will allow the visitors to view/edit/revoke their prior "
1053
- "preferences. This can be done via a widget and/or a shortcode. A small "
1054
- "privacy widget is automatically displayed at the footer of your website if "
1055
- "the widget option is enabled. You can also manually insert a link to manage "
1056
- "consent by adding the shortcode <b>[wt_cli_manage_consent]</b> to your "
1057
- "website."
1058
- msgstr ""
1059
- "Suostumuksen uudelleenkäynnistys antaa kävijöille mahdollisuuden "
1060
- "tarkastella / muokata / kumota aiempia asetuksiaan. Tämä voidaan tehdä "
1061
- "widgetin ja / tai pikakoodin kautta. Pieni tietosuoja-widget näkyy "
1062
- "automaattisesti verkkosivustosi alatunnisteessa, jos widget-vaihtoehto on "
1063
- "käytössä. Voit myös lisätä manuaalisesti linkin hallita suostumusta "
1064
- "lisäämällä lyhytkoodi <b>[wt_cli_manage_consent]</b> verkkosivustoosi."
1065
-
1066
- #: admin/views/admin-settings-messagebar.php:152
1067
- msgid "Enable revisit consent widget"
1068
- msgstr "Ota uudelleen käyttöön suostumuswidget"
1069
-
1070
- #: admin/views/admin-settings-messagebar.php:152
1071
- msgid ""
1072
- "By enabling this option a small privacy widget is automatically displayed at "
1073
- "the footer of your website."
1074
- msgstr ""
1075
- "Kun otat tämän vaihtoehdon käyttöön, pieni yksityisyyswidget näkyy "
1076
- "automaattisesti verkkosivustosi alatunnisteessa."
1077
-
1078
- #: admin/views/admin-settings-messagebar.php:163
1079
- #: admin/views/admin-settings-messagebar.php:180
1080
- msgid "Tab Position"
1081
- msgstr "Välilehden sijainti"
1082
-
1083
- #: admin/views/admin-settings-messagebar.php:168
1084
- #: admin/views/admin-settings-messagebar.php:171
1085
- msgid "Right"
1086
- msgstr "Oikea"
1087
-
1088
- #: admin/views/admin-settings-messagebar.php:169
1089
- #: admin/views/admin-settings-messagebar.php:172
1090
- msgid "Left"
1091
- msgstr "Vasen"
1092
-
1093
- #: admin/views/admin-settings-messagebar.php:187
1094
- msgid "Bottom Right"
1095
- msgstr "Alhaalla oikealla"
1096
-
1097
- #: admin/views/admin-settings-messagebar.php:190
1098
- msgid "Bottom Left"
1099
- msgstr "Alhaalla vasemmalla"
1100
-
1101
- #: admin/views/admin-settings-messagebar.php:193
1102
- msgid "Top Right"
1103
- msgstr "Ylhäällä oikealla"
1104
-
1105
- #: admin/views/admin-settings-messagebar.php:196
1106
- msgid "Top Left"
1107
- msgstr "Ylhäällä vasemmalla"
1108
-
1109
- #: admin/views/admin-settings-messagebar.php:203
1110
- msgid "From Right Margin"
1111
- msgstr "Oikealta marginaalilta"
1112
-
1113
- #: admin/views/admin-settings-messagebar.php:203
1114
- msgid "From Left Margin"
1115
- msgstr "Vasemmasta reunasta"
1116
-
1117
- #: admin/views/admin-settings-messagebar.php:206
1118
- msgid "Specify"
1119
- msgstr "Määritä"
1120
-
1121
- #: admin/views/admin-settings-messagebar.php:215
1122
- #: admin/views/admin_necessary_cookie.php:33
1123
- #: admin/views/admin_non_necessary_cookie.php:48
1124
- msgid "Title"
1125
- msgstr "Titteli"
1126
-
1127
- #: admin/views/admin-settings-save-button.php:12
1128
- #: admin/views/admin_necessary_cookie.php:52
1129
- #: admin/views/admin_non_necessary_cookie.php:87
1130
- #: public/modules/script-blocker/script-blocker.php:219
1131
- msgid "Update Settings"
1132
- msgstr "Päivitä asetukset"
1133
-
1134
- #: admin/views/admin_necessary_cookie.php:26
1135
- msgid "Necessary Cookie Settings"
1136
- msgstr "Välttämättömien evästeiden asetukset"
1137
-
1138
- #: admin/views/admin_non_necessary_cookie.php:23
1139
- msgid "Non-necessary Cookie Settings"
1140
- msgstr "Ei-välttämättömien evästeiden asetukset"
1141
-
1142
- #: admin/views/admin_non_necessary_cookie.php:31
1143
- msgid "Enable Non-necessary Cookie"
1144
- msgstr "Ota käyttöön ei-välttämätön eväste"
1145
-
1146
- #: admin/views/admin_non_necessary_cookie.php:38
1147
- msgid "Default state"
1148
- msgstr "Oletustila"
1149
-
1150
- #: admin/views/admin_non_necessary_cookie.php:39
1151
- #: public/modules/script-blocker/views/settings.php:141
1152
- #: public/views/cookie-law-info_popup_content.php:7
1153
- msgid "Enabled"
1154
- msgstr "Käytössä"
1155
-
1156
- #: admin/views/admin_non_necessary_cookie.php:40
1157
- #: public/views/cookie-law-info_popup_content.php:8
1158
- msgid "Disabled"
1159
- msgstr "Ei käytössä"
1160
-
1161
- #: admin/views/admin_non_necessary_cookie.php:42
1162
- msgid ""
1163
- "If you enable this option, the category toggle button will be in the active "
1164
- "state for cookie consent."
1165
- msgstr ""
1166
- "Jos otat tämän vaihtoehdon käyttöön, luokan vaihtopainike on aktiivisessa "
1167
- "tilassa evästeiden suostumukselle."
1168
-
1169
- #: admin/views/admin_non_necessary_cookie.php:62
1170
- msgid ""
1171
- "This script will be added to the page HEAD section if the above settings is "
1172
- "enabled and user has give consent."
1173
- msgstr ""
1174
- "Tämä skripti lisätään sivun HEAD-osioon, jos yllä olevat asetukset ovat "
1175
- "käytössä ja käyttäjä on antanut suostumuksensa."
1176
-
1177
- #: admin/views/admin_non_necessary_cookie.php:67
1178
- msgid ""
1179
- "Print scripts in the head tag on the front end if above cookie settings is "
1180
- "enabled and user has given consent."
1181
- msgstr ""
1182
- "Tulostaa skriptit sivun head-osioon, jos yllä olevat evästeasetukset ovat "
1183
- "käytössä ja käyttäjä on antanut suostumuksensa."
1184
-
1185
- #: admin/views/admin_non_necessary_cookie.php:74
1186
- msgid ""
1187
- "This script will be added right after the BODY section if the above settings "
1188
- "is enabled and user has given consent."
1189
- msgstr ""
1190
- "Tämä skripti lisätään heti BODY-osion jälkeen, jos yllä olevat asetukset "
1191
- "ovat käytössä ja käyttäjä on antanut suostumuksensa."
1192
-
1193
- #: admin/views/admin_non_necessary_cookie.php:77
1194
- msgid ""
1195
- "Print scripts before the closing body tag on the front end if above cookie "
1196
- "settings is enabled and user has given consent."
1197
- msgstr ""
1198
- "Tulostaa skriptit sivulle ennen body-tunnisteen päättymistä, jos yllä olevat "
1199
- "evästeasetukset ovat käytössä ja käyttäjä on antanut suostumuksensa."
1200
-
1201
- #: admin/views/goto-pro.php:56
1202
- msgid "Where did my settings go?"
1203
- msgstr "Mihin asetukset menivät?"
1204
-
1205
- #: admin/views/goto-pro.php:57
1206
- msgid "Cookie Law Info version 0.9 has been updated and has new settings."
1207
- msgstr "Cookie Law Infon versio 0.9 on päivitetty ja siinä on uusia asetuksia."
1208
-
1209
- #: admin/views/goto-pro.php:57
1210
- msgid "Your previous settings are safe."
1211
- msgstr "Aiemmat asetuksesi ovat turvassa."
1212
-
1213
- #: admin/views/goto-pro.php:58
1214
- msgid ""
1215
- "You can either copy over your old settings to this version, or use the new "
1216
- "default values."
1217
- msgstr ""
1218
- "Voit joko kopioida vanhat asetukset tähän versioon tai käyttää uusia "
1219
- "oletusarvoja."
1220
-
1221
- #: admin/views/goto-pro.php:60
1222
- msgid "Would you like to:"
1223
- msgstr "Haluatko:"
1224
-
1225
- #: admin/views/goto-pro.php:62
1226
- msgid "Use previous settings"
1227
- msgstr "Käytä aiempia asetuksia"
1228
-
1229
- #: admin/views/goto-pro.php:63
1230
- msgid "Start afresh with the new version"
1231
- msgstr "Aloita uudesta versiosta uudestaan"
1232
-
1233
- #: admin/views/goto-pro.php:67
1234
- msgid ""
1235
- "If you want to go back to the previous version you can always download it "
1236
- "again from"
1237
- msgstr "Jos haluat palata edelliseen versioon, voit ladata sen uudelleen"
1238
-
1239
- #: admin/views/goto-pro.php:73
1240
- msgid "30 Day Money Back Guarantee"
1241
- msgstr "30 päivän rahat takaisin takuu"
1242
-
1243
- #: admin/views/goto-pro.php:74
1244
- msgid "Fast and Superior Support"
1245
- msgstr "Nopea ja erinomainen tuki"
1246
-
1247
- #: admin/views/goto-pro.php:75
1248
- msgid "10X Powerful with GDPR Cookie Consent Features That Every Site Needs"
1249
- msgstr ""
1250
- "10X tehokkaammat GDPR-asetuksen mukaiset evästelupaominaisuudet, joita "
1251
- "tarvitaan jokaisella sivustolla"
1252
-
1253
- #: admin/views/goto-pro.php:78
1254
- msgid "Upgrade to Premium"
1255
- msgstr "Päivitä Premiumiin"
1256
-
1257
- #: admin/views/goto-pro.php:84
1258
- msgid "Automatic Cookie Scanner"
1259
- msgstr "Automaattinen evästeiden skanneri"
1260
-
1261
- #: admin/views/goto-pro.php:85
1262
- msgid ""
1263
- "Auto block scripts - Google Analytics, Facebook Pixel, Google Tag Manager, "
1264
- "Hotjar Analytics, Google Publisher Tag, Youtube embed, Vimeo embed, Google "
1265
- "maps, Addthis widget, Sharethis widget, Twitter widget, Soundcloud embed, "
1266
- "Slideshare embed, Linkedin widget, Instagram embed, Pinterest widget"
1267
- msgstr ""
1268
- "Estä skriptit automaattisesti - Google Analytics, Facebook Pixel, Google Tag "
1269
- "Manager, Hotjar Analytics, Google Publisher Tag, Youtube-upotus, Vimeo-"
1270
- "upotus, Google-kartat, Addthis-widget, Sharethis-widget, Twitter-widget, "
1271
- "Soundcloud-upotus, Slideshare-upotus, Linkedin-widget, Instagram-upotus, "
1272
- "Linkedin-widget , Pinterest-widget"
1273
-
1274
- #: admin/views/goto-pro.php:86
1275
- msgid "Location based exclusion of cookie notice for EU countries"
1276
- msgstr ""
1277
- "EU:ssa tarvittavab evästeilmoituksen käytöstä poistaminen sijainnin mukaan"
1278
-
1279
- #: admin/views/goto-pro.php:87
1280
- msgid "Granular control over the cookies/scipts used by the website"
1281
- msgstr "Yksityiskohtainen sivuston käyttämien evästeiden/skriptien hallinta"
1282
-
1283
- #: admin/views/goto-pro.php:88
1284
- msgid "User consent audit logs"
1285
- msgstr "Käyttäjän suostumuksen tarkastuslokit"
1286
-
1287
- #: admin/views/goto-pro.php:89
1288
- msgid "Customized privacy overview"
1289
- msgstr "Mukautettu tietosuojan yleiskatsaus"
1290
-
1291
- #: admin/views/goto-pro.php:90
1292
- msgid "Cookie bar preview in admin settings page"
1293
- msgstr "Evästepalkin esikatselu ylläpidon asetussivulla"
1294
-
1295
- #: admin/views/goto-pro.php:91
1296
- msgid "Advanced support for cache plugins"
1297
- msgstr "Edistynyt tuki välimuistilisäosille"
1298
-
1299
- #: admin/views/goto-pro.php:92
1300
- msgid "Cookie bar theme customizer for banner/ widgets/ popup"
1301
- msgstr ""
1302
- "Evästepalkin teeman räätälöinti bannerille/widgetille/ponnahdusikkunalle"
1303
-
1304
- #: admin/views/goto-pro.php:93
1305
- msgid "GDPR compliance with Google Tag Manager"
1306
- msgstr "GDPR:n noudattaminen Google Tag Managerin kanssa"
1307
-
1308
- #: admin/views/goto-pro.php:94
1309
- msgid "Javascript helper functions"
1310
- msgstr "Javascriptin avustajatoiminnot"
1311
-
1312
- #: admin/views/goto-pro.php:108
1313
- msgid "Like this plugin?"
1314
- msgstr "Tykkäätkö tästä lisäosasta?"
1315
-
1316
- #: admin/views/goto-pro.php:109
1317
- msgid "If you find this plugin useful please show your support and rate it"
1318
- msgstr "Jos koet tämän lisäosan hyödylliseksi, anna siitä hyvä arvio"
1319
-
1320
- #: admin/views/goto-pro.php:109
1321
- msgid " on"
1322
- msgstr " päällä"
1323
-
1324
- #: admin/views/goto-pro.php:109
1325
- msgid " much appreciated!"
1326
- msgstr " Kiitos paljon!"
1327
-
1328
- #: cookie-law-info.php:80
1329
- msgid ""
1330
- "Please make sure the cache is cleared after each plugin update especially if "
1331
- "you have minified JS and/or CSS files."
1332
- msgstr ""
1333
- "Varmista, että välimuisti on tyhjennetty jokaisen laajennuksen päivityksen "
1334
- "jälkeen, varsinkin jos olet minimoinut JS- ja / tai CSS-tiedostot."
1335
-
1336
- #: includes/class-cookie-law-info-review_request.php:52
1337
- #, fuzzy, php-format
1338
- msgid ""
1339
- "Hey, we at %sWebToffee%s would like to thank you for using our plugin. We "
1340
- "would really appreciate if you could take a moment to drop a quick review "
1341
- "that will inspire us to keep going."
1342
- msgstr ""
1343
- "Hei, %sWebToffee% haluamme kiittää sinua laajennuksemme käytöstä. Olisimme "
1344
- "todella kiitollisia, jos voisit käyttää hetken pudottaaksesi nopean "
1345
- "arvostelun, joka innostaa meitä jatkamaan."
1346
-
1347
- #: includes/class-cookie-law-info-review_request.php:55
1348
- msgid "Remind me later"
1349
- msgstr "Muistuta myöhemmin"
1350
-
1351
- #: includes/class-cookie-law-info-review_request.php:56
1352
- msgid "Not interested"
1353
- msgstr "Ei kiinnosta"
1354
-
1355
- #: includes/class-cookie-law-info-review_request.php:57
1356
- msgid "Review now"
1357
- msgstr "Kirjoita arvostelu nyt"
1358
-
1359
- #. Plugin Name of the plugin/theme
1360
- #: public/class-cookie-law-info-public.php:251
1361
- msgid "GDPR Cookie Consent"
1362
- msgstr "GDPR:n mukainen evästelupa"
1363
-
1364
- #: public/class-cookie-law-info-public.php:252
1365
- msgid "Cookie List"
1366
- msgstr "Evästeiden luettelo"
1367
-
1368
- #: public/class-cookie-law-info-public.php:253
1369
- #: public/modules/shortcode/shortcode.php:208
1370
- msgid "Cookie"
1371
- msgstr "Eväste"
1372
-
1373
- #: public/class-cookie-law-info-public.php:254
1374
- msgid "Add New"
1375
- msgstr "Lisää uusi"
1376
-
1377
- #: public/class-cookie-law-info-public.php:255
1378
- msgid "Add New Cookie Type"
1379
- msgstr "Lisää uusi evästetyyppi"
1380
-
1381
- #: public/class-cookie-law-info-public.php:256
1382
- msgid "Edit Cookie Type"
1383
- msgstr "Muokkaa evästetyyppiä"
1384
-
1385
- #: public/class-cookie-law-info-public.php:257
1386
- msgid "New Cookie Type"
1387
- msgstr "Uusi evästetyyppi"
1388
-
1389
- #: public/class-cookie-law-info-public.php:258
1390
- msgid "View Cookie Type"
1391
- msgstr "Näytä evästeen tyyppi"
1392
-
1393
- #: public/class-cookie-law-info-public.php:259
1394
- msgid "Search Cookies"
1395
- msgstr "Etsi evästeitä"
1396
-
1397
- #: public/class-cookie-law-info-public.php:260
1398
- msgid "Nothing found"
1399
- msgstr "Tietoja ei löytynyt"
1400
-
1401
- #: public/class-cookie-law-info-public.php:261
1402
- msgid "Nothing found in Trash"
1403
- msgstr "Mitään ei löytynyt roskakorista"
1404
-
1405
- #: public/modules/script-blocker/script-blocker.php:156
1406
- #: public/modules/script-blocker/script-blocker.php:157
1407
- msgid "Script Blocker"
1408
- msgstr "Komentosarjan esto"
1409
-
1410
- #: public/modules/script-blocker/script-blocker.php:182
1411
- msgid "Status updated"
1412
- msgstr "Tila päivitetty"
1413
-
1414
- #: public/modules/script-blocker/script-blocker.php:206
1415
- msgid "Advanced script rendering"
1416
- msgstr "Advanced script rendering"
1417
-
1418
- #: public/modules/script-blocker/script-blocker.php:208
1419
- #: public/modules/script-blocker/views/settings.php:7
1420
- msgid "Enable"
1421
- msgstr "Ota käyttöön"
1422
-
1423
- #: public/modules/script-blocker/script-blocker.php:209
1424
- #: public/modules/script-blocker/views/settings.php:7
1425
- msgid "Disable"
1426
- msgstr "Poista käytöstä"
1427
-
1428
- #: public/modules/script-blocker/script-blocker.php:210
1429
- msgid ""
1430
- "Advanced script rendering will render the blocked scripts using javascript "
1431
- "thus eliminating the need for a page refresh. It is also optimized for "
1432
- "caching since there is no server-side processing after obtaining the consent."
1433
- msgstr ""
1434
- "Tarkennettu komentosarjojen renderöinti estää estetyt komentosarjat "
1435
- "javascriptin avulla, jolloin sivun päivitys ei ole tarpeen. Se on myös "
1436
- "optimoitu välimuistiin, koska suostumuksen saatuaan ei tapahdu "
1437
- "palvelinpuolen käsittelyä."
1438
-
1439
- #: public/modules/script-blocker/views/settings.php:9
1440
- msgid "Script blocker is enabled."
1441
- msgstr "Komentosarjan esto on käytössä."
1442
-
1443
- #: public/modules/script-blocker/views/settings.php:9
1444
- msgid ""
1445
- "Script blocker is currently disabled. Enable the blocker if you want any of "
1446
- "the below listed plugins to be auto blocked."
1447
- msgstr ""
1448
- "Komentosarjojen esto on tällä hetkellä pois käytöstä. Ota esto käyttöön, jos "
1449
- "haluat, että jokin alla luetelluista laajennuksista estetään automaattisesti."
1450
-
1451
- #: public/modules/script-blocker/views/settings.php:10
1452
- #, php-format
1453
- msgid "<a href=\"javascript: submitform()\">%s</a>"
1454
- msgstr "<a href=\"javascript: submitform()\">%s</a>"
1455
-
1456
- #: public/modules/script-blocker/views/settings.php:14
1457
- #, php-format
1458
- msgid ""
1459
- "Advanced script rendering is currently disabled. It should be enabled for "
1460
- "the automatic script blocker to function. <a href=\"%s\">Enable.</a>"
1461
- msgstr ""
1462
- "Tarkennettu komentosarjojen renderöinti on tällä hetkellä pois käytöstä. Sen "
1463
- "pitäisi olla käytössä, jotta automaattinen komentosarjan esto toimisi. <a "
1464
- "href=\"%s\">Ota käyttöön.</a>"
1465
-
1466
- #: public/modules/script-blocker/views/settings.php:113
1467
- msgid "Manage Script Blocking"
1468
- msgstr "Hallitse komentosarjojen estämistä"
1469
-
1470
- #: public/modules/script-blocker/views/settings.php:134
1471
- #, php-format
1472
- msgid ""
1473
- "Below is the list of plugins currently supported for auto blocking. Plugins "
1474
- "marked inactive are either not installed or activated on your website. "
1475
- "Enabled plugins will be blocked by default on the front-end of your website "
1476
- "prior to obtaining user consent and rendered respectively based on consent. "
1477
- "<a href=\"%s\" target=\"_blank\">Read more.</a>"
1478
- msgstr ""
1479
- "Alla on luettelo laajennuksista, joita tällä hetkellä tuetaan "
1480
- "automaattisessa estämisessä. Ei-aktiivisiksi merkittyjä laajennuksia ei ole "
1481
- "asennettu tai aktivoitu verkkosivustollesi. Käytössä olevat laajennukset "
1482
- "estetään oletusarvoisesti verkkosivustosi käyttöliittymässä ennen käyttäjän "
1483
- "suostumuksen saamista ja renderöidään vastaavasti suostumuksen perusteella. "
1484
- "<a href=\"%s\" target=\"_blank\">Lue lisää.</a>"
1485
-
1486
- #: public/modules/script-blocker/views/settings.php:140
1487
- msgid "Name"
1488
- msgstr "Nimi"
1489
-
1490
- #: public/modules/script-blocker/views/settings.php:141
1491
- msgid ""
1492
- "Enabled: Plugins will be blocked by default prior to obtaining user consent."
1493
- msgstr ""
1494
- "Käytössä: Laajennukset estetään oletuksena ennen käyttäjän suostumuksen "
1495
- "hankkimista."
1496
-
1497
- #: public/modules/script-blocker/views/settings.php:141
1498
- msgid "Disabled: Plugins will be rendered prior to obtaining consent."
1499
- msgstr "Ei käytössä: Laajennukset renderöidään ennen suostumuksen hankkimista."
1500
-
1501
- #: public/modules/script-blocker/views/settings.php:175
1502
- msgid "Inactive"
1503
- msgstr "Pois käytöstä"
1504
-
1505
- #: public/modules/shortcode/shortcode.php:99
1506
- msgid "Your current state:"
1507
- msgstr "Nykyinen tila:"
1508
-
1509
- #: public/modules/shortcode/shortcode.php:104
1510
- msgid "Consent accepted."
1511
- msgstr "Suostumus hyväksytty."
1512
-
1513
- #: public/modules/shortcode/shortcode.php:107
1514
- msgid "Consent rejected."
1515
- msgstr "Suostumus hylätty."
1516
-
1517
- #: public/modules/shortcode/shortcode.php:111
1518
- msgid "No consent given."
1519
- msgstr "Suostumusta ei ole annettu."
1520
-
1521
- #: public/modules/shortcode/shortcode.php:113
1522
- msgid "Manage your consent."
1523
- msgstr "Hallitse suostumustasi."
1524
-
1525
- #: public/modules/shortcode/shortcode.php:150
1526
- msgid "Delete Cookies"
1527
- msgstr "Poista evästeet"
1528
-
1529
- #: public/modules/shortcode/shortcode.php:186
1530
- msgid "No records found"
1531
- msgstr "Tietoja ei löydy"
1532
-
1533
- #: public/modules/shortcode/shortcode.php:212
1534
- msgid "Type"
1535
- msgstr "Tyyppi"
1536
-
1537
- #: public/modules/shortcode/shortcode.php:216
1538
- msgid "Duration"
1539
- msgstr "Kesto"
1540
-
1541
- #: public/modules/shortcode/shortcode.php:533
1542
- msgid "Close the cookie bar"
1543
- msgstr "Sulje evästepalkki"
1544
-
1545
- #: public/modules/shortcode/shortcode.php:533
1546
- msgid "Close and Accept"
1547
- msgstr "Sulje ja hyväksy"
1548
-
1549
- #: public/views/cookie-law-info_bar.php:23
1550
- msgid "Close"
1551
- msgstr "Sulje"
1552
-
1553
- #: public/views/cookie-law-info_popup_content.php:6
1554
- msgid "Always Enabled"
1555
- msgstr "Aina käytössä"
1556
-
1557
- #: public/views/cookie-law-info_popup_content.php:9
1558
- msgid "Show more"
1559
- msgstr "Näytä lisää"
1560
-
1561
- #: public/views/cookie-law-info_popup_content.php:9
1562
- msgid "Show less"
1563
- msgstr "Näytä vähemmän"
1564
-
1565
- #. Plugin URI of the plugin/theme
1566
- msgid "https://www.webtoffee.com/product/gdpr-cookie-consent/"
1567
- msgstr "https://www.webtoffee.com/product/gdpr-cookie-consent/"
1568
-
1569
- #. Description of the plugin/theme
1570
- msgid ""
1571
- "A simple way to show your website complies with the EU Cookie Law / GDPR."
1572
- msgstr ""
1573
- "Yksinkertainen tapa näyttää, että sivustosi on EU:n evästelain/GDPR-"
1574
- "asetuksen mukainen."
1575
-
1576
- #. Author of the plugin/theme
1577
- msgid "WebToffee"
1578
- msgstr "WebToffee"
1579
-
1580
- #. Author URI of the plugin/theme
1581
- msgid "http://cookielawinfo.com/"
1582
- msgstr "http://cookielawinfo.com/"
1583
-
1584
- #~ msgid ""
1585
- #~ "Which plugin are you using for language translation? Could you tell us a "
1586
- #~ "bit more?"
1587
- #~ msgstr ""
1588
- #~ "Mitä laajennusta käytät kielen kääntämiseen? Voisitko kertoa meille "
1589
- #~ "hieman enemmän?"
1590
-
1591
- #~ msgid "Caching issues"
1592
- #~ msgstr "Välimuistiongelmat"
1593
-
1594
- #~ msgid "Which caching plugin are you using? Could you tell us a bit more?"
1595
- #~ msgstr ""
1596
- #~ "Mitä välimuistilaajennusta käytät? Voisitko kertoa meille hieman enemmän?"
1597
-
1598
- #~ msgid "Cookie Law Settings"
1599
- #~ msgstr "Cookie Law’n asetukset"
1600
-
1601
- #~ msgid "Show Again Tab"
1602
- #~ msgstr "Näytä uudelleen -välilehti"
1603
-
1604
- #~ msgid "Use Show Again Tab?"
1605
- #~ msgstr "Käytä Näytä uudelleen -välilehteä?"
1606
-
1607
- #~ msgid "Show More Text"
1608
- #~ msgstr "Näytä lisää -teksti"
1609
-
1610
- #~ msgid "Non-necessary Cookie"
1611
- #~ msgstr "Ei-välttämätön eväste"
1612
-
1613
- #~ msgid "Necessary Cookie"
1614
- #~ msgstr "Välttämätön eväste"
1615
-
1616
- #~ msgid "Your Cookie Law Info bar is switched on"
1617
- #~ msgstr "Evästeoikeuksien ilmoituspalkki on päällä"
1618
-
1619
- #~ msgid "Your Cookie Law Info bar is switched off"
1620
- #~ msgstr "Evästeoikeuksien ilmoituspalkki on pois päältä"
1621
-
1622
- #~ msgid "Cookie Bar will be shown in:"
1623
- #~ msgstr "Evästepalkki näkyy:"
1624
-
1625
- #~ msgid "Disappear"
1626
- #~ msgstr "Kadota"
1627
-
1628
- #~ msgid "Show Border?"
1629
- #~ msgstr "Näytä raja?"
1630
-
1631
- #~ msgid "Border Colour"
1632
- #~ msgstr "Rajan väri"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/cookie-law-info-fr_FR.mo DELETED
Binary file
languages/cookie-law-info-fr_FR.po DELETED
@@ -1,1724 +0,0 @@
1
- # Translation of Plugins - GDPR Cookie Consent - French (France)
2
- # This file is distributed under the same license as the Plugins - GDPR Cookie Consent
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Plugins - GDPR Cookie Consent\n"
6
- "POT-Creation-Date: 2020-11-17 11:32+0530\n"
7
- "PO-Revision-Date: 2020-11-17 11:32+0530\n"
8
- "Last-Translator: \n"
9
- "Language-Team: \n"
10
- "Language: fr\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "Plural-Forms: nplurals=2; plural=n > 1;\n"
15
- "X-Generator: Poedit 2.4.2\n"
16
- "X-Poedit-Basepath: ..\n"
17
- "X-Poedit-KeywordsList: __;_e\n"
18
- "X-Poedit-SearchPath-0: .\n"
19
-
20
- #: admin/class-cookie-law-info-admin.php:147
21
- #: admin/class-cookie-law-info-admin.php:148
22
- #: admin/class-cookie-law-info-admin.php:247
23
- #: admin/partials/cookie-law-info-admin_settings.php:31
24
- msgid "Settings"
25
- msgstr "Réglages"
26
-
27
- #: admin/class-cookie-law-info-admin.php:155
28
- #: admin/class-cookie-law-info-admin.php:156
29
- #: public/modules/script-blocker/views/settings.php:174
30
- #: public/views/cookie-law-info_popup_content.php:23
31
- msgid "Non-necessary"
32
- msgstr "Non nécessaire"
33
-
34
- #: admin/class-cookie-law-info-admin.php:163
35
- #: admin/class-cookie-law-info-admin.php:164
36
- #: public/views/cookie-law-info_popup_content.php:22
37
- msgid "Necessary"
38
- msgstr "Nécessaire"
39
-
40
- #: admin/class-cookie-law-info-admin.php:171
41
- #: admin/class-cookie-law-info-admin.php:172
42
- #: admin/partials/cookie-law-info-privacy_overview.php:25
43
- msgid "Privacy Overview"
44
- msgstr "Aperçu de la confidentialité"
45
-
46
- #: admin/class-cookie-law-info-admin.php:221
47
- #: admin/class-cookie-law-info-admin.php:276
48
- #: admin/class-cookie-law-info-admin.php:334
49
- #: admin/class-cookie-law-info-admin.php:378
50
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:22
51
- #: public/modules/script-blocker/script-blocker.php:133
52
- #: public/modules/script-blocker/script-blocker.php:173
53
- #: public/modules/script-blocker/script-blocker.php:310
54
- msgid "You do not have sufficient permission to perform this operation"
55
- msgstr "Vous n’avez pas les droits suffisants pour exécuter cette opération"
56
-
57
- #: admin/class-cookie-law-info-admin.php:240
58
- #: admin/class-cookie-law-info-admin.php:306
59
- #: admin/class-cookie-law-info-admin.php:359
60
- #: admin/class-cookie-law-info-admin.php:403
61
- msgid "Settings Updated."
62
- msgstr "Réglages mis à jour."
63
-
64
- #: admin/class-cookie-law-info-admin.php:248
65
- msgid "Support"
66
- msgstr "Support"
67
-
68
- #: admin/class-cookie-law-info-admin.php:249
69
- msgid "Premium Upgrade"
70
- msgstr "Mise à niveau Premium"
71
-
72
- #: admin/class-cookie-law-info-admin.php:418
73
- msgid "ERROR MIGRATING SETTINGS (ERROR: 2)"
74
- msgstr "ERREUR DE MIGRATION DES RÉGLAGES (ERREUR : 2)"
75
-
76
- #: admin/class-cookie-law-info-admin.php:436
77
- msgid "Cookie ID"
78
- msgstr "ID de cookie"
79
-
80
- #: admin/class-cookie-law-info-admin.php:437
81
- msgid "Cookie Type"
82
- msgstr "Type de cookie"
83
-
84
- #: admin/class-cookie-law-info-admin.php:438
85
- msgid "Cookie Duration"
86
- msgstr "Durée cookies"
87
-
88
- #: admin/class-cookie-law-info-admin.php:439
89
- msgid "Cookie Sensitivity"
90
- msgstr "Sensibilité aux cookies"
91
-
92
- #: admin/class-cookie-law-info-admin.php:689
93
- msgid "Close Header"
94
- msgstr "Fermer l'en-tête"
95
-
96
- #: admin/class-cookie-law-info-admin.php:693
97
- msgid "Open URL"
98
- msgstr "Ouvrir le lien"
99
-
100
- #: admin/class-cookie-law-info-admin.php:706
101
- msgid "Extra Large"
102
- msgstr "Très Grand"
103
-
104
- #: admin/class-cookie-law-info-admin.php:710
105
- msgid "Large"
106
- msgstr "Grand"
107
-
108
- #: admin/class-cookie-law-info-admin.php:714
109
- msgid "Medium"
110
- msgstr "Moyen"
111
-
112
- #: admin/class-cookie-law-info-admin.php:718
113
- msgid "Small"
114
- msgstr "Petit"
115
-
116
- #: admin/class-cookie-law-info-admin.php:732
117
- msgid "Default theme font"
118
- msgstr "Police de thème par défaut"
119
-
120
- #: admin/class-cookie-law-info-admin.php:736
121
- msgid "Sans Serif"
122
- msgstr "Sans Serif"
123
-
124
- #: admin/class-cookie-law-info-admin.php:740
125
- msgid "Serif"
126
- msgstr "Serif"
127
-
128
- #: admin/class-cookie-law-info-admin.php:744
129
- msgid "Arial"
130
- msgstr "Arial"
131
-
132
- #: admin/class-cookie-law-info-admin.php:748
133
- msgid "Arial Black"
134
- msgstr "Arial Black"
135
-
136
- #: admin/class-cookie-law-info-admin.php:752
137
- msgid "Georgia, serif"
138
- msgstr "Georgia, serif"
139
-
140
- #: admin/class-cookie-law-info-admin.php:756
141
- msgid "Helvetica"
142
- msgstr "Helvetica"
143
-
144
- #: admin/class-cookie-law-info-admin.php:760
145
- msgid "Lucida"
146
- msgstr "Lucida"
147
-
148
- #: admin/class-cookie-law-info-admin.php:764
149
- msgid "Tahoma"
150
- msgstr "Tahoma"
151
-
152
- #: admin/class-cookie-law-info-admin.php:768
153
- msgid "Times New Roman"
154
- msgstr "Times New Roman"
155
-
156
- #: admin/class-cookie-law-info-admin.php:772
157
- msgid "Trebuchet"
158
- msgstr "Trebuchet"
159
-
160
- #: admin/class-cookie-law-info-admin.php:776
161
- msgid "Verdana"
162
- msgstr "Verdana"
163
-
164
- #: admin/modules/ccpa/ccpa.php:106
165
- msgid "Do you really wish to opt out?"
166
- msgstr "Souhaitez-vous vraiment vous retirer?"
167
-
168
- #: admin/modules/ccpa/ccpa.php:107
169
- msgid "Confirm"
170
- msgstr "Confirmer"
171
-
172
- #: admin/modules/ccpa/ccpa.php:108
173
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:154
174
- msgid "Cancel"
175
- msgstr "Annuler"
176
-
177
- #: admin/modules/ccpa/ccpa.php:145
178
- msgid "Select the type of law"
179
- msgstr "Sélectionnez le type de loi"
180
-
181
- #: admin/modules/ccpa/ccpa.php:149
182
- msgid "GDPR"
183
- msgstr "GDPR"
184
-
185
- #: admin/modules/ccpa/ccpa.php:150 admin/modules/ccpa/ccpa.php:158
186
- msgid ""
187
- "Customize the buttons, notice, themes from the relevant tabs to setup your "
188
- "cookie notice accordingly."
189
- msgstr ""
190
- "Personnalisez les boutons, les avis et les thèmes des onglets appropriés "
191
- "pour configurer votre avis sur les cookies en conséquence."
192
-
193
- #: admin/modules/ccpa/ccpa.php:153
194
- msgid "CCPA"
195
- msgstr "CCPA"
196
-
197
- #: admin/modules/ccpa/ccpa.php:154
198
- msgid ""
199
- "Most of the customizations from the tabs for buttons, notice or themes are "
200
- "not relevant especially if you choose to not show the notice, except the Do "
201
- "not sell within the buttons."
202
- msgstr ""
203
- "La plupart des personnalisations des onglets pour les boutons, les avis ou "
204
- "les thèmes ne sont pas pertinentes, surtout si vous choisissez de ne pas "
205
- "afficher l'avis, à l'exception de Ne pas vendre dans les boutons."
206
-
207
- #: admin/modules/ccpa/ccpa.php:157
208
- msgid "CCPA & GDPR"
209
- msgstr "CCPA & GDPR"
210
-
211
- #: admin/modules/ccpa/views/ccpa_settings.php:7
212
- msgid "CCPA Settings"
213
- msgstr "Paramètres CCPA"
214
-
215
- #: admin/modules/ccpa/views/ccpa_settings.php:7
216
- msgid ""
217
- "The right to opt out in the California Consumer Privacy Act gives consumers "
218
- "the ability to direct a business not to sell their personal information to a "
219
- "third party. If the user considers to not sell their personal information, "
220
- "all the scripts related to the categories which are configured to sell "
221
- "personal information will be blocked. The DO NOT SELL option is facilitated "
222
- "via a shortcode [wt_cli_ccpa_optout]."
223
- msgstr ""
224
- "Le droit de retrait dans le California Consumer Privacy Act donne aux "
225
- "consommateurs la possibilité de demander à une entreprise de ne pas vendre "
226
- "leurs informations personnelles à un tiers. Si l'utilisateur considère ne "
227
- "pas vendre ses informations personnelles, tous les scripts liés aux "
228
- "catégories configurées pour vendre des informations personnelles seront "
229
- "bloqués. L'option NE PAS VENDRE est facilitée via un shortcode "
230
- "[wt_cli_ccpa_optout]."
231
-
232
- #: admin/modules/ccpa/views/ccpa_settings.php:10
233
- msgid "Enable CCPA ?"
234
- msgstr "Activer CCPA?"
235
-
236
- #: admin/modules/ccpa/views/ccpa_settings.php:18
237
- msgid "Enable CCPA notice"
238
- msgstr "Activer l'avis CCPA"
239
-
240
- #: admin/modules/ccpa/views/ccpa_settings.php:18
241
- msgid ""
242
- "Enabling the notice will display the banner with the relevant text as per "
243
- "your configuration. Use this option particularly to record prior consent "
244
- "from the website visitors."
245
- msgstr ""
246
- "L'activation de l'avis affichera la bannière avec le texte correspondant "
247
- "selon votre configuration. Utilisez cette option en particulier pour "
248
- "enregistrer le consentement préalable des visiteurs du site Web."
249
-
250
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:26
251
- msgid "Unable to handle your request."
252
- msgstr "Impossible de traiter votre demande."
253
-
254
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:96
255
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:130
256
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:132
257
- msgid "Error"
258
- msgstr "Erreur"
259
-
260
- #: admin/modules/cli-policy-generator/classes/class-preview-page.php:27
261
- msgid "Cookie Policy"
262
- msgstr "Politique de cookie"
263
-
264
- #: admin/modules/cli-policy-generator/classes/class-preview-page.php:83
265
- msgid "Auto reload preview"
266
- msgstr "Aperçu de recharge automatique"
267
-
268
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:106
269
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:107
270
- #: admin/modules/cli-policy-generator/views/policy-generator.php:21
271
- msgid "Policy generator"
272
- msgstr "Générateur de politique"
273
-
274
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:133
275
- msgid "Success"
276
- msgstr "Succès"
277
-
278
- #: admin/modules/cli-policy-generator/views/policy-generator.php:25
279
- msgid "Sample heading"
280
- msgstr "Titre de l'échantillon"
281
-
282
- #: admin/modules/cli-policy-generator/views/policy-generator.php:26
283
- msgid "Sample content"
284
- msgstr "Contenu de l'échantillon"
285
-
286
- #: admin/modules/cli-policy-generator/views/policy-generator.php:27
287
- msgid "Delete"
288
- msgstr "Effacer"
289
-
290
- #: admin/modules/cli-policy-generator/views/policy-generator.php:49
291
- msgid "Add new"
292
- msgstr "Ajouter nouveau"
293
-
294
- #: admin/modules/cli-policy-generator/views/policy-generator.php:53
295
- msgid "Heading"
296
- msgstr "Titre"
297
-
298
- #: admin/modules/cli-policy-generator/views/policy-generator.php:57
299
- #: admin/views/admin_necessary_cookie.php:39
300
- #: admin/views/admin_non_necessary_cookie.php:54
301
- #: public/modules/script-blocker/views/settings.php:142
302
- #: public/modules/shortcode/shortcode.php:220
303
- msgid "Description"
304
- msgstr "La description"
305
-
306
- #: admin/modules/cli-policy-generator/views/policy-generator.php:65
307
- msgid ""
308
- "Enabling this option will help us spread the word by placing a credit to "
309
- "WebToffee at the very end of the Cookie Policy page."
310
- msgstr ""
311
- "Activer cette option nous aidera à faire passer le mot en plaçant un crédit "
312
- "auprès de WebToffee à la fin de la page Politique en matière de cookies."
313
-
314
- #: admin/modules/cli-policy-generator/views/policy-generator.php:82
315
- msgid "Update existing Cookie Policy page"
316
- msgstr "Mettre à jour la page de stratégie de cookie existante"
317
-
318
- #: admin/modules/cli-policy-generator/views/policy-generator.php:88
319
- msgid "Create Cookie Policy page"
320
- msgstr "Page de création d'une politique de cookie"
321
-
322
- #: admin/modules/cli-policy-generator/views/policy-generator.php:92
323
- msgid "Live preview"
324
- msgstr "Aperçu en direct"
325
-
326
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:43
327
- msgid "The plugin is complex to set up"
328
- msgstr "Le plugin est complexe à mettre en place"
329
-
330
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:45
331
- msgid "Please describe which area you are facing difficulties"
332
- msgstr "Veuillez décrire dans quel domaine vous rencontrez des difficultés"
333
-
334
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:49
335
- msgid "I found a better plugin"
336
- msgstr "Trouvé un meilleur plugin"
337
-
338
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:51
339
- msgid "Which plugin?"
340
- msgstr "Quel plugin?"
341
-
342
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:55
343
- msgid "The plugin is great, but I need specific feature that you don't support"
344
- msgstr ""
345
- "Le plugin est génial, mais j’ai besoin d’une fonctionnalité spécifique que "
346
- "vous ne supportez pas"
347
-
348
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:57
349
- msgid "Could you tell us more about that feature?"
350
- msgstr "Pourriez-vous nous en dire plus sur cette fonctionnalité?"
351
-
352
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:61
353
- msgid "The plugin didn't work as expected"
354
- msgstr "Le plugin n’a pas fonctionné comme prévu"
355
-
356
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:63
357
- msgid "What did you expect?"
358
- msgstr "A quoi vous attendiez-vous ?"
359
-
360
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:67
361
- msgid "A conflict with another plugin or theme"
362
- msgstr "Un conflit avec un autre plugin ou thème"
363
-
364
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:69
365
- msgid "Which plugin or theme?"
366
- msgstr "Quel plugin ou thème?"
367
-
368
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:73
369
- msgid "Translation issues"
370
- msgstr "Problèmes de traduction"
371
-
372
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:77
373
- msgid "Incorrect/missing translation"
374
- msgstr "Traduction incorrecte / manquante"
375
-
376
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:79
377
- msgid "Name the language"
378
- msgstr "Nommez la langue"
379
-
380
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:83
381
- msgid ""
382
- "Unable to translate my dynamic content e.g, cookie message, button text etc"
383
- msgstr ""
384
- "Impossible de traduire mon contenu dynamique, par exemple, message de "
385
- "cookie, texte de bouton, etc."
386
-
387
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:85
388
- msgid "Name the language and the translator plugin that you are using"
389
- msgstr "Nommez la langue et le plugin de traduction que vous utilisez"
390
-
391
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:91
392
- msgid "Upgrade to pro"
393
- msgstr "Passer à Pro"
394
-
395
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:95
396
- #: admin/views/admin-settings-general.php:10
397
- #: admin/views/admin-settings-general.php:66
398
- msgid "Other"
399
- msgstr "Autre"
400
-
401
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:97
402
- msgid "Could you tell us a bit more?"
403
- msgstr "Pourriez-vous nous en dire un peu plus ?"
404
-
405
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:117
406
- msgid "If you have a moment, please let us know why you are deactivating:"
407
- msgstr "Si vous avez un moment, faites nous savoir pourquoi vous désactivez:"
408
-
409
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:144
410
- msgid ""
411
- "We do not collect any personal data when you submit this form. It's your "
412
- "feedback that we value."
413
- msgstr ""
414
- "Nous ne collectons aucune donnée personnelle lorsque vous soumettez ce "
415
- "formulaire. Ce sont vos commentaires que nous apprécions."
416
-
417
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:145
418
- msgid "Privacy Policy"
419
- msgstr "Politique de confidentialité"
420
-
421
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:152
422
- msgid "Go to support"
423
- msgstr "Passer à support"
424
-
425
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:153
426
- msgid "Submit & Deactivate"
427
- msgstr "Soumettre & désactiver"
428
-
429
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:155
430
- msgid "I rather wouldn't say"
431
- msgstr "Je préfère ne pas dire"
432
-
433
- #: admin/partials/cookie-law-info-admin_settings.php:25
434
- #: admin/views/admin_necessary_cookie.php:20
435
- #: admin/views/admin_non_necessary_cookie.php:17
436
- msgid "Settings updated."
437
- msgstr "Réglages mis à jour."
438
-
439
- #: admin/partials/cookie-law-info-admin_settings.php:26
440
- #: admin/views/admin_necessary_cookie.php:21
441
- #: admin/views/admin_non_necessary_cookie.php:18
442
- msgid "Unable to update Settings."
443
- msgstr "Impossible de mettre à jour les réglages."
444
-
445
- #: admin/partials/cookie-law-info-admin_settings.php:27
446
- msgid "Settings reset to defaults."
447
- msgstr "Réglages réinitialisés aux valeurs par défaut."
448
-
449
- #: admin/partials/cookie-law-info-admin_settings.php:28
450
- msgid "Unable to reset settings."
451
- msgstr "Impossible de réinitialiser les réglages."
452
-
453
- #: admin/partials/cookie-law-info-admin_settings.php:39
454
- msgid "Cookie bar is currently active"
455
- msgstr "La barre de cookies est actuellement active"
456
-
457
- #: admin/partials/cookie-law-info-admin_settings.php:47
458
- msgid "Cookie bar is currently inactive"
459
- msgstr "La barre de cookies est actuellement inactive"
460
-
461
- #: admin/partials/cookie-law-info-admin_settings.php:57
462
- #: admin/views/admin-settings-general.php:9
463
- msgid "General"
464
- msgstr "Général"
465
-
466
- #: admin/partials/cookie-law-info-admin_settings.php:58
467
- msgid "Customise Cookie Bar"
468
- msgstr "Personnaliser la barre de cookie"
469
-
470
- #: admin/partials/cookie-law-info-admin_settings.php:59
471
- msgid "Customise Buttons"
472
- msgstr "Personnalisez vos boutons"
473
-
474
- #: admin/partials/cookie-law-info-admin_settings.php:60
475
- #: admin/views/admin-settings-advanced.php:8
476
- msgid "Advanced"
477
- msgstr "Avancé"
478
-
479
- #: admin/partials/cookie-law-info-admin_settings.php:61
480
- msgid "Help Guide"
481
- msgstr "Guide d'aide"
482
-
483
- #: admin/partials/cookie-law-info-privacy_overview.php:32
484
- msgid "Privacy Overview Title"
485
- msgstr "Titre de la confidentialité"
486
-
487
- #: admin/partials/cookie-law-info-privacy_overview.php:38
488
- #: admin/partials/cookie-law-info-privacy_overview.php:53
489
- msgid "This will be shown in the settings visible for user on consent screen."
490
- msgstr ""
491
- "Cela apparaîtra dans les paramètres visibles pour l’écran de consentement de "
492
- "l’utilisateur."
493
-
494
- #: admin/partials/cookie-law-info-privacy_overview.php:61
495
- msgid "Save Settings"
496
- msgstr "Enregistrer les paramètres"
497
-
498
- #: admin/views/admin-settings-advanced.php:9
499
- msgid ""
500
- "Sometimes themes apply settings that clash with plugins. If that happens, "
501
- "try adjusting these settings."
502
- msgstr ""
503
- "Parfois les thèmes appliquent des réglages qui entrent en conflit avec "
504
- "certaines extensions. Essayez d’ajuster ces réglages."
505
-
506
- #: admin/views/admin-settings-advanced.php:13
507
- msgid "Reset all values"
508
- msgstr "Remettre à zéro toutes les valeurs"
509
-
510
- #: admin/views/admin-settings-advanced.php:15
511
- msgid "Delete settings and reset"
512
- msgstr "Supprimer les réglages et réinitialiser"
513
-
514
- #: admin/views/admin-settings-advanced.php:15
515
- msgid "Are you sure you want to delete all your settings?"
516
- msgstr "Êtes-vous sûr de vouloir supprimer tous vos paramètres?"
517
-
518
- #: admin/views/admin-settings-advanced.php:16
519
- msgid "Warning: this will actually delete your current settings."
520
- msgstr "Attention : cela va vraiment supprimer vos réglages actuels."
521
-
522
- #: admin/views/admin-settings-buttons.php:10
523
- msgid "Accept Button"
524
- msgstr "Bouton Accepter"
525
-
526
- #: admin/views/admin-settings-buttons.php:11
527
- #: admin/views/admin-settings-buttons.php:93
528
- msgid "Reject Button"
529
- msgstr "Bouton Rejeter"
530
-
531
- #: admin/views/admin-settings-buttons.php:12
532
- #: admin/views/admin-settings-buttons.php:163
533
- msgid "Settings Button"
534
- msgstr "Bouton Paramètres"
535
-
536
- #: admin/views/admin-settings-buttons.php:13
537
- #: admin/views/admin-settings-buttons.php:206
538
- msgid "Read More Link"
539
- msgstr "Lien En savoir plus"
540
-
541
- #: admin/views/admin-settings-buttons.php:14
542
- #: admin/views/admin-settings-buttons.php:326
543
- msgid "Do not sell link"
544
- msgstr "Ne pas vendre de lien"
545
-
546
- #: admin/views/admin-settings-buttons.php:20
547
- msgid "Main Button"
548
- msgstr "Bouton principal"
549
-
550
- #: admin/views/admin-settings-buttons.php:21
551
- msgid ""
552
- "This button/link can be customised to either simply close the cookie bar, or "
553
- "follow a link. You can also customise the colours and styles, and show it as "
554
- "a link or a button."
555
- msgstr ""
556
- "Ce bouton / lien peut être personnalisé pour fermer simplement la barre des "
557
- "cookies ou pour suivre un lien. Vous pouvez également personnaliser les "
558
- "couleurs et les styles et les afficher sous forme de lien ou de bouton."
559
-
560
- #: admin/views/admin-settings-buttons.php:24
561
- #: admin/views/admin-settings-buttons.php:96
562
- #: admin/views/admin-settings-buttons.php:166
563
- #: admin/views/admin-settings-buttons.php:220
564
- msgid "Text"
565
- msgstr "Texte"
566
-
567
- #: admin/views/admin-settings-buttons.php:30
568
- #: admin/views/admin-settings-buttons.php:102
569
- #: admin/views/admin-settings-buttons.php:172
570
- #: admin/views/admin-settings-buttons.php:226
571
- #: admin/views/admin-settings-buttons.php:346
572
- msgid "Text colour"
573
- msgstr "Couleur du texte"
574
-
575
- #: admin/views/admin-settings-buttons.php:38
576
- #: admin/views/admin-settings-buttons.php:110
577
- #: admin/views/admin-settings-buttons.php:180
578
- #: admin/views/admin-settings-buttons.php:234
579
- #: admin/views/admin-settings-buttons.php:335
580
- msgid "Show as"
581
- msgstr "Afficher comme"
582
-
583
- #: admin/views/admin-settings-buttons.php:40
584
- #: admin/views/admin-settings-buttons.php:112
585
- #: admin/views/admin-settings-buttons.php:182
586
- #: admin/views/admin-settings-buttons.php:236
587
- msgid "Button"
588
- msgstr "Bouton"
589
-
590
- #: admin/views/admin-settings-buttons.php:42
591
- #: admin/views/admin-settings-buttons.php:114
592
- #: admin/views/admin-settings-buttons.php:184
593
- #: admin/views/admin-settings-buttons.php:238
594
- #: admin/views/admin-settings-buttons.php:337
595
- msgid "Link"
596
- msgstr "Lien"
597
-
598
- #: admin/views/admin-settings-buttons.php:46
599
- #: admin/views/admin-settings-buttons.php:118
600
- #: admin/views/admin-settings-buttons.php:188
601
- #: admin/views/admin-settings-buttons.php:242
602
- msgid "Background colour"
603
- msgstr "Couleur d’arrière-plan"
604
-
605
- #: admin/views/admin-settings-buttons.php:55
606
- #: admin/views/admin-settings-buttons.php:126
607
- msgid "Action"
608
- msgstr "Action"
609
-
610
- #: admin/views/admin-settings-buttons.php:63
611
- #: admin/views/admin-settings-buttons.php:138
612
- #: admin/views/admin-settings-buttons.php:253
613
- #: admin/views/admin-settings-buttons.php:260
614
- msgid "URL"
615
- msgstr "URL"
616
-
617
- #: admin/views/admin-settings-buttons.php:66
618
- #: admin/views/admin-settings-buttons.php:141
619
- msgid "Button will only link to URL if Action = Open URL"
620
- msgstr "Le bouton ne liera à l'URL que si Action = Open URL"
621
-
622
- #: admin/views/admin-settings-buttons.php:71
623
- #: admin/views/admin-settings-buttons.php:146
624
- msgid "Open URL in new window?"
625
- msgstr "Ouvrir l’URL dans une nouvelle fenêtre ?"
626
-
627
- #: admin/views/admin-settings-buttons.php:73
628
- #: admin/views/admin-settings-buttons.php:148
629
- #: admin/views/admin-settings-buttons.php:304
630
- #: admin/views/admin-settings-buttons.php:311
631
- #: admin/views/admin-settings-general.php:38
632
- #: admin/views/admin-settings-general.php:54
633
- #: admin/views/admin-settings-general.php:74
634
- #: admin/views/admin-settings-general.php:82
635
- #: admin/views/admin-settings-general.php:89
636
- #: admin/views/admin-settings-messagebar.php:86
637
- #: admin/views/admin-settings-messagebar.php:110
638
- #: admin/views/admin_non_necessary_cookie.php:32
639
- msgid "Yes"
640
- msgstr "Oui"
641
-
642
- #: admin/views/admin-settings-buttons.php:75
643
- #: admin/views/admin-settings-buttons.php:149
644
- #: admin/views/admin-settings-buttons.php:305
645
- #: admin/views/admin-settings-buttons.php:312
646
- #: admin/views/admin-settings-general.php:39
647
- #: admin/views/admin-settings-general.php:55
648
- #: admin/views/admin-settings-general.php:75
649
- #: admin/views/admin-settings-general.php:83
650
- #: admin/views/admin-settings-general.php:90
651
- #: admin/views/admin-settings-messagebar.php:87
652
- #: admin/views/admin-settings-messagebar.php:111
653
- #: admin/views/admin_non_necessary_cookie.php:33
654
- #: public/modules/script-blocker/views/settings.php:139
655
- msgid "No"
656
- msgstr "Non"
657
-
658
- #: admin/views/admin-settings-buttons.php:82
659
- #: admin/views/admin-settings-buttons.php:153
660
- #: admin/views/admin-settings-buttons.php:196
661
- #: admin/views/admin-settings-buttons.php:316
662
- msgid "Size"
663
- msgstr "Taille"
664
-
665
- #: admin/views/admin-settings-buttons.php:207
666
- msgid ""
667
- "This button/link can be used to provide a link out to your Privacy & Cookie "
668
- "Policy. You can customise it any way you like."
669
- msgstr ""
670
- "Ce bouton/lien peut être utilisé pour fournir un lien vers votre page de "
671
- "politique de confidentialité sur les cookies. Vous pouvez personnaliser "
672
- "cela comme vous le souhaitez."
673
-
674
- #: admin/views/admin-settings-buttons.php:212
675
- msgid "Click"
676
- msgstr "Cliquez sur"
677
-
678
- #: admin/views/admin-settings-buttons.php:212
679
- msgid "here"
680
- msgstr "ici"
681
-
682
- #: admin/views/admin-settings-buttons.php:212
683
- msgid " to generate content for Cookie Policy page."
684
- msgstr " générer du contenu pour la page de stratégie de cookie."
685
-
686
- #: admin/views/admin-settings-buttons.php:251
687
- msgid "URL or Page?"
688
- msgstr "URL ou page ?"
689
-
690
- #: admin/views/admin-settings-buttons.php:255
691
- #: admin/views/admin-settings-buttons.php:266
692
- msgid "Page"
693
- msgstr "Page"
694
-
695
- #: admin/views/admin-settings-buttons.php:269
696
- msgid "Select One"
697
- msgstr "Choisissez un"
698
-
699
- #: admin/views/admin-settings-buttons.php:294
700
- msgid "The currently selected page does not exist. Please select a new page."
701
- msgstr ""
702
- "La page actuellement sélectionnée n'existe pas. Veuillez sélectionner une "
703
- "nouvelle page."
704
-
705
- #: admin/views/admin-settings-buttons.php:302
706
- msgid "Minimize Cookie Bar in this page/URL?"
707
- msgstr "Réduire la barre des cookies dans cette page / URL?"
708
-
709
- #: admin/views/admin-settings-buttons.php:309
710
- msgid "Open in new window?"
711
- msgstr "Ouvrir dans une nouvelle fenêtre ?"
712
-
713
- #: admin/views/admin-settings-buttons.php:329
714
- msgid "CCPA Text"
715
- msgstr "Texte CCPA"
716
-
717
- #: admin/views/admin-settings-buttons.php:338
718
- msgid "Checkbox"
719
- msgstr "Checkbox"
720
-
721
- #: admin/views/admin-settings-buttons.php:340
722
- msgid "The shortcode will be represented as a link whereever used."
723
- msgstr "Le shortcode sera représenté comme un lien où qu'il soit utilisé."
724
-
725
- #: admin/views/admin-settings-buttons.php:341
726
- msgid ""
727
- "The shortcode will be represented as a checkbox with select option to record "
728
- "consent."
729
- msgstr ""
730
- "Le shortcode sera représenté comme une case à cocher avec une option de "
731
- "sélection pour enregistrer le consentement."
732
-
733
- #: admin/views/admin-settings-general.php:17
734
- msgid "Enable cookie bar"
735
- msgstr "Activer la barre de cookies"
736
-
737
- #: admin/views/admin-settings-general.php:19
738
- msgid "On"
739
- msgstr "Oui"
740
-
741
- #: admin/views/admin-settings-general.php:20
742
- msgid "Off"
743
- msgstr "Non"
744
-
745
- #: admin/views/admin-settings-general.php:36
746
- msgid "Auto-hide(Accept) cookie bar after delay?"
747
- msgstr ""
748
- "Masquer automatiquement (accepter) la barre des cookies après un délai?"
749
-
750
- #: admin/views/admin-settings-general.php:43
751
- msgid "Milliseconds until hidden"
752
- msgstr "Millièmes de secondes avant le masquage"
753
-
754
- #: admin/views/admin-settings-general.php:46
755
- msgid "Specify milliseconds (not seconds)"
756
- msgstr "Spécifiez les millisecondes (pas les secondes)"
757
-
758
- #: admin/views/admin-settings-general.php:46
759
- msgid "seconds"
760
- msgstr "secondes"
761
-
762
- #: admin/views/admin-settings-general.php:52
763
- msgid "Auto-hide cookie bar if the user scrolls ( Accept on Scroll )?"
764
- msgstr ""
765
- "Masquer automatiquement la barre de cookie si l’utilisateur fait défiler "
766
- "(Accepter au défilement) ?"
767
-
768
- #: admin/views/admin-settings-general.php:56
769
- msgid ""
770
- "As per latest GDPR policies it is required to take an explicit consent for "
771
- "the cookies. Use this option with discretion especially if you serve EU"
772
- msgstr ""
773
- "Conformément aux dernières politiques GDPR, un consentement explicite aux "
774
- "cookies est requis. Utilisez cette option avec discrétion, en particulier si "
775
- "vous servez au service de l’UE"
776
-
777
- #: admin/views/admin-settings-general.php:57
778
- msgid "This option will not work along with `Popup overlay`."
779
- msgstr "Cette option ne fonctionnera pas avec `Popup Overlay`."
780
-
781
- #: admin/views/admin-settings-general.php:69
782
- msgid "Reload after \"scroll accept\" event?"
783
- msgstr "Recharger après l’événement d’acceptation lié au défilement ?"
784
-
785
- #: admin/views/admin-settings-general.php:80
786
- msgid "Reload after Accept button click"
787
- msgstr "Recharger la page au clic sur le bouton de consentement"
788
-
789
- #: admin/views/admin-settings-general.php:87
790
- msgid "Reload after Reject button click"
791
- msgstr "Recharger la page au clic sur le bouton de refus"
792
-
793
- #: admin/views/admin-settings-help.php:9
794
- msgid "Shortcodes"
795
- msgstr "Codes courts"
796
-
797
- #: admin/views/admin-settings-help.php:10
798
- #: admin/views/admin-settings-help.php:103
799
- msgid "Help Links"
800
- msgstr "Liens d’aide"
801
-
802
- #: admin/views/admin-settings-help.php:16
803
- msgid "Cookie bar shortcodes"
804
- msgstr "Codes courts du bandeau cookies"
805
-
806
- #: admin/views/admin-settings-help.php:17
807
- msgid ""
808
- "You can enter the shortcodes in the \"message\" field of the Cookie Law Info "
809
- "bar. They add nicely formatted buttons and/or links into the cookie bar, "
810
- "without you having to add any HTML."
811
- msgstr ""
812
- "Vous pouvez entrer les codes abrégés dans le champ \"message\" de la barre "
813
- "d'informations sur les lois relatives aux cookies. Ils ajoutent des boutons "
814
- "et / ou des liens bien formatés dans la barre des cookies, sans que vous "
815
- "ayez à ajouter de code HTML."
816
-
817
- #: admin/views/admin-settings-help.php:22
818
- msgid "This is the \"main button\" you customise above."
819
- msgstr "C'est le \"bouton principal\" que vous personnalisez ci-dessus."
820
-
821
- #: admin/views/admin-settings-help.php:26
822
- msgid "This is the cookie reject button shortcode."
823
- msgstr "C'est le shortcode du bouton de rejet des cookies."
824
-
825
- #: admin/views/admin-settings-help.php:30
826
- msgid "This is the cookie settings button rendering shortcode."
827
- msgstr "C’est le bouton de configuration des cookies qui rend le shortcode."
828
-
829
- #: admin/views/admin-settings-help.php:33
830
- msgid "This is the \"read more\" link you customise above."
831
- msgstr "C’est le lien \"en savoir plus\" que vous personnalisez ci-dessus."
832
-
833
- #: admin/views/admin-settings-help.php:36
834
- msgid "Setup margin for above buttons"
835
- msgstr "Marge de configuration pour les boutons ci-dessus"
836
-
837
- #: admin/views/admin-settings-help.php:65
838
- msgid "Other shortcodes"
839
- msgstr "Autres codes courts"
840
-
841
- #: admin/views/admin-settings-help.php:66
842
- msgid ""
843
- "These shortcodes can be used in pages and posts on your website. It is not "
844
- "recommended to use these inside the cookie bar itself."
845
- msgstr ""
846
- "Ces codes courts peuvent être utilisés avec des pages ou des articles sur "
847
- "votre site. Il n’est pas recommandé de les utilisé à l’intérieur du bandeau "
848
- "de cookies lui-même."
849
-
850
- #: admin/views/admin-settings-help.php:72
851
- msgid ""
852
- "This prints out a nice table of cookies, in line with the guidance given by "
853
- "the ICO."
854
- msgstr ""
855
- "Cela affiche un joli tableau de cookies le plus conforme possible avec la "
856
- "règlementation."
857
-
858
- #: admin/views/admin-settings-help.php:72
859
- msgid ""
860
- "You need to enter the cookies your website uses via the Cookie Law Info menu "
861
- "in your WordPress dashboard."
862
- msgstr ""
863
- "Vous devez saisir les cookies que votre site utilise avec le menu Cookies "
864
- "dans votre tableau de bord WordPress."
865
-
866
- #: admin/views/admin-settings-help.php:80
867
- msgid "Styles included"
868
- msgstr "Styles inclus"
869
-
870
- #: admin/views/admin-settings-help.php:82
871
- msgid "Columns available"
872
- msgstr "Colonnes disponibles"
873
-
874
- #: admin/views/admin-settings-help.php:82
875
- msgid "Will print all columns by default."
876
- msgstr "Imprime toutes les colonnes par défaut."
877
-
878
- #: admin/views/admin-settings-help.php:86
879
- msgid ""
880
- "This shortcode will display a normal HTML link which when clicked, will "
881
- "delete the cookie set by Cookie Law Info (this cookie is used to remember "
882
- "that the cookie bar is closed)."
883
- msgstr ""
884
- "Ce code court affichera un lien HTML classique. Lorsqu’il sera cliqué, il "
885
- "supprimera le cookie déposé par Cookie Law Info (ce cookie est utilisé pour "
886
- "se souvenir que le bandeau de cookies a été fermé)."
887
-
888
- #: admin/views/admin-settings-help.php:90
889
- msgid ""
890
- "Add any text you like- useful if you want e.g. another language to English."
891
- msgstr ""
892
- "Ajouter le texte que vous souhaitez – utile par exemple pour le multilingue."
893
-
894
- #: admin/views/admin-settings-help.php:94
895
- msgid "Add content after accepting the cookie notice."
896
- msgstr "Ajouter du contenu après avoir accepté la notification de cookie."
897
-
898
- #: admin/views/admin-settings-help.php:107
899
- #: admin/views/admin-settings-help.php:110 admin/views/goto-pro.php:103
900
- msgid "Documentation"
901
- msgstr "Documentation"
902
-
903
- #: admin/views/admin-settings-help.php:108
904
- msgid "Refer to our documentation to set and get started"
905
- msgstr "Reportez-vous à notre documentation pour définir et commencer"
906
-
907
- #: admin/views/admin-settings-help.php:115
908
- msgid "Help and Support"
909
- msgstr "Aide et support"
910
-
911
- #: admin/views/admin-settings-help.php:116
912
- msgid "We would love to help you on any queries or issues."
913
- msgstr ""
914
- "Nous serions ravis de vous aider si vous avez des questions ou des problèmes."
915
-
916
- #: admin/views/admin-settings-help.php:118
917
- msgid "Contact Us"
918
- msgstr "Contactez-nous"
919
-
920
- #: admin/views/admin-settings-messagebar.php:9
921
- msgid "Cookie bar"
922
- msgstr "Barre de cookies"
923
-
924
- #: admin/views/admin-settings-messagebar.php:10
925
- #: admin/views/admin-settings-messagebar.php:145
926
- msgid "Revisit consent"
927
- msgstr "Revoir le consentement"
928
-
929
- #: admin/views/admin-settings-messagebar.php:15
930
- msgid "Cookie Bar"
931
- msgstr "Barre de cookie"
932
-
933
- #: admin/views/admin-settings-messagebar.php:18
934
- msgid "Message Heading"
935
- msgstr "En-tête du message"
936
-
937
- #: admin/views/admin-settings-messagebar.php:21
938
- msgid "Leave it blank, If you do not need a heading"
939
- msgstr "Laissez le champ vide, si vous n'avez pas besoin d'un titre"
940
-
941
- #: admin/views/admin-settings-messagebar.php:26
942
- msgid "Message"
943
- msgstr "Message"
944
-
945
- #: admin/views/admin-settings-messagebar.php:32
946
- msgid "Shortcodes allowed: see the Help Guide tab"
947
- msgstr "Shortcodes autorisés: voir l'onglet Help Guide"
948
-
949
- #: admin/views/admin-settings-messagebar.php:32
950
- msgid ""
951
- "Examples: \"We use cookies on this website [cookie_accept] to find out how "
952
- "to delete cookies [cookie_link].\""
953
- msgstr ""
954
- "Exemples: \"Nous utilisons des cookies sur ce site Web [cookie_accept] pour "
955
- "savoir comment supprimer les cookies [cookie_link].\""
956
-
957
- #: admin/views/admin-settings-messagebar.php:36
958
- msgid "Cookie Bar Colour"
959
- msgstr "Couleur du bandeau de cookies"
960
-
961
- #: admin/views/admin-settings-messagebar.php:46
962
- msgid "Text Colour"
963
- msgstr "Couleur du texte"
964
-
965
- #: admin/views/admin-settings-messagebar.php:55
966
- msgid "Font"
967
- msgstr "Police"
968
-
969
- #: admin/views/admin-settings-messagebar.php:63
970
- msgid "Show cookie bar as"
971
- msgstr "Afficher la barre de cookies comme"
972
-
973
- #: admin/views/admin-settings-messagebar.php:68
974
- msgid "Banner"
975
- msgstr "Bannière"
976
-
977
- #: admin/views/admin-settings-messagebar.php:69
978
- msgid "Popup"
979
- msgstr "Fenêtre surgissante"
980
-
981
- #: admin/views/admin-settings-messagebar.php:70
982
- msgid "Widget"
983
- msgstr "Widget"
984
-
985
- #: admin/views/admin-settings-messagebar.php:74
986
- msgid "Position"
987
- msgstr "Position"
988
-
989
- #: admin/views/admin-settings-messagebar.php:84
990
- msgid "Add overlay?"
991
- msgstr "Ajouter une superposition?"
992
-
993
- #: admin/views/admin-settings-messagebar.php:88
994
- msgid ""
995
- "When the popup is active, an overlay will block the user from browsing the "
996
- "site."
997
- msgstr ""
998
- "Lorsque la fenêtre contextuelle est active, une superposition empêche "
999
- "l'utilisateur de naviguer sur le site."
1000
-
1001
- #: admin/views/admin-settings-messagebar.php:89
1002
- msgid "`Accept on scroll` will not work along with this option."
1003
- msgstr "`Accepter au défilement` ne fonctionnera pas avec cette option."
1004
-
1005
- #: admin/views/admin-settings-messagebar.php:93
1006
- msgid "Position:"
1007
- msgstr "Position :"
1008
-
1009
- #: admin/views/admin-settings-messagebar.php:98
1010
- msgid "Header"
1011
- msgstr "En-tête"
1012
-
1013
- #: admin/views/admin-settings-messagebar.php:99
1014
- msgid "Footer"
1015
- msgstr "Pied de page"
1016
-
1017
- #: admin/views/admin-settings-messagebar.php:108
1018
- msgid "Fix Cookie Bar to Header?"
1019
- msgstr "Lier la barre de Cookies à l’en-tête ?"
1020
-
1021
- #: admin/views/admin-settings-messagebar.php:112
1022
- msgid ""
1023
- "If you select \"Header\" then you can optionally stick the cookie bar to the "
1024
- "header. Will not have any effect if you select \"Footer\"."
1025
- msgstr ""
1026
- "Si vous sélectionnez \"En-tête\", vous pouvez éventuellement coller la barre "
1027
- "de cookies sur l'en-tête. N'aura aucun effet si vous sélectionnez \"Pied de "
1028
- "page\"."
1029
-
1030
- #: admin/views/admin-settings-messagebar.php:120
1031
- msgid "On load"
1032
- msgstr "Au chargement"
1033
-
1034
- #: admin/views/admin-settings-messagebar.php:125
1035
- #: admin/views/admin-settings-messagebar.php:135
1036
- msgid "Animate"
1037
- msgstr "Animer"
1038
-
1039
- #: admin/views/admin-settings-messagebar.php:126
1040
- #: admin/views/admin-settings-messagebar.php:136
1041
- msgid "Sticky"
1042
- msgstr "Èpinglé"
1043
-
1044
- #: admin/views/admin-settings-messagebar.php:130
1045
- msgid "On hide"
1046
- msgstr "Au masquage"
1047
-
1048
- #: admin/views/admin-settings-messagebar.php:145
1049
- msgid "previously"
1050
- msgstr "précédemment"
1051
-
1052
- #: admin/views/admin-settings-messagebar.php:145
1053
- msgid "Show again tab"
1054
- msgstr "Afficher à nouveau l'onglet"
1055
-
1056
- #: admin/views/admin-settings-messagebar.php:147
1057
- msgid ""
1058
- "Revisit consent will allow the visitors to view/edit/revoke their prior "
1059
- "preferences. This can be done via a widget and/or a shortcode. A small "
1060
- "privacy widget is automatically displayed at the footer of your website if "
1061
- "the widget option is enabled. You can also manually insert a link to manage "
1062
- "consent by adding the shortcode <b>[wt_cli_manage_consent]</b> to your "
1063
- "website."
1064
- msgstr ""
1065
- "Le consentement de réexamen permettra aux visiteurs de visualiser / "
1066
- "modifier / révoquer leurs préférences antérieures. Cela peut être fait via "
1067
- "un widget et / ou un shortcode. Un petit widget de confidentialité s'affiche "
1068
- "automatiquement en pied de page de votre site Web si l'option widget est "
1069
- "activée. Vous pouvez également insérer manuellement un lien pour gérer le "
1070
- "consentement en ajoutant le shortcode <b>[wt_cli_manage_consent]</b> à votre "
1071
- "site Web."
1072
-
1073
- #: admin/views/admin-settings-messagebar.php:152
1074
- msgid "Enable revisit consent widget"
1075
- msgstr "Activer le widget de réexamen de consentement"
1076
-
1077
- #: admin/views/admin-settings-messagebar.php:152
1078
- msgid ""
1079
- "By enabling this option a small privacy widget is automatically displayed at "
1080
- "the footer of your website."
1081
- msgstr ""
1082
- "En activant cette option, un petit widget de confidentialité s'affiche "
1083
- "automatiquement en pied de page de votre site Web."
1084
-
1085
- #: admin/views/admin-settings-messagebar.php:163
1086
- #: admin/views/admin-settings-messagebar.php:180
1087
- msgid "Tab Position"
1088
- msgstr "Position de l’onglet"
1089
-
1090
- #: admin/views/admin-settings-messagebar.php:168
1091
- #: admin/views/admin-settings-messagebar.php:171
1092
- msgid "Right"
1093
- msgstr "Droite"
1094
-
1095
- #: admin/views/admin-settings-messagebar.php:169
1096
- #: admin/views/admin-settings-messagebar.php:172
1097
- msgid "Left"
1098
- msgstr "Gauche"
1099
-
1100
- #: admin/views/admin-settings-messagebar.php:187
1101
- msgid "Bottom Right"
1102
- msgstr "En bas à droite"
1103
-
1104
- #: admin/views/admin-settings-messagebar.php:190
1105
- msgid "Bottom Left"
1106
- msgstr "En bas à gauche"
1107
-
1108
- #: admin/views/admin-settings-messagebar.php:193
1109
- msgid "Top Right"
1110
- msgstr "En haut à droite"
1111
-
1112
- #: admin/views/admin-settings-messagebar.php:196
1113
- msgid "Top Left"
1114
- msgstr "En haut à gauche"
1115
-
1116
- #: admin/views/admin-settings-messagebar.php:203
1117
- msgid "From Right Margin"
1118
- msgstr "De la marge droite"
1119
-
1120
- #: admin/views/admin-settings-messagebar.php:203
1121
- msgid "From Left Margin"
1122
- msgstr "Depuis la marge externe de gauche"
1123
-
1124
- #: admin/views/admin-settings-messagebar.php:206
1125
- msgid "Specify"
1126
- msgstr "Spécifier"
1127
-
1128
- #: admin/views/admin-settings-messagebar.php:215
1129
- #: admin/views/admin_necessary_cookie.php:33
1130
- #: admin/views/admin_non_necessary_cookie.php:48
1131
- msgid "Title"
1132
- msgstr "Titre"
1133
-
1134
- #: admin/views/admin-settings-save-button.php:12
1135
- #: admin/views/admin_necessary_cookie.php:52
1136
- #: admin/views/admin_non_necessary_cookie.php:87
1137
- #: public/modules/script-blocker/script-blocker.php:219
1138
- msgid "Update Settings"
1139
- msgstr "Mettre à jour les réglages"
1140
-
1141
- #: admin/views/admin_necessary_cookie.php:26
1142
- msgid "Necessary Cookie Settings"
1143
- msgstr "Paramètres de cookies nécessaires"
1144
-
1145
- #: admin/views/admin_non_necessary_cookie.php:23
1146
- msgid "Non-necessary Cookie Settings"
1147
- msgstr "Réglages de cookies non indispensables"
1148
-
1149
- #: admin/views/admin_non_necessary_cookie.php:31
1150
- msgid "Enable Non-necessary Cookie"
1151
- msgstr "Activer les cookies non indispensables"
1152
-
1153
- #: admin/views/admin_non_necessary_cookie.php:38
1154
- msgid "Default state"
1155
- msgstr "Catégorie d'article par défaut"
1156
-
1157
- #: admin/views/admin_non_necessary_cookie.php:39
1158
- #: public/modules/script-blocker/views/settings.php:141
1159
- #: public/views/cookie-law-info_popup_content.php:7
1160
- msgid "Enabled"
1161
- msgstr "Activée"
1162
-
1163
- #: admin/views/admin_non_necessary_cookie.php:40
1164
- #: public/views/cookie-law-info_popup_content.php:8
1165
- msgid "Disabled"
1166
- msgstr "Désactivé"
1167
-
1168
- #: admin/views/admin_non_necessary_cookie.php:42
1169
- msgid ""
1170
- "If you enable this option, the category toggle button will be in the active "
1171
- "state for cookie consent."
1172
- msgstr ""
1173
- "Si vous activez cette option, le bouton de basculement de catégorie sera à "
1174
- "l'état actif pour l'autorisation de cookie."
1175
-
1176
- #: admin/views/admin_non_necessary_cookie.php:62
1177
- msgid ""
1178
- "This script will be added to the page HEAD section if the above settings is "
1179
- "enabled and user has give consent."
1180
- msgstr ""
1181
- "Ce script sera ajouté dans l’élément HEAD si le réglage ci-dessus est activé "
1182
- "et si le visiteur a donné son consentement."
1183
-
1184
- #: admin/views/admin_non_necessary_cookie.php:67
1185
- msgid ""
1186
- "Print scripts in the head tag on the front end if above cookie settings is "
1187
- "enabled and user has given consent."
1188
- msgstr ""
1189
- "Intégrer les scripts dans l’élément head en frontal, si le visiteur a donné "
1190
- "son consentement à l’utilisation des cookies et si son navigateur permet "
1191
- "leur usage."
1192
-
1193
- #: admin/views/admin_non_necessary_cookie.php:74
1194
- msgid ""
1195
- "This script will be added right after the BODY section if the above settings "
1196
- "is enabled and user has given consent."
1197
- msgstr ""
1198
- "Ce script sera ajouté juste après l’élément BODY si le réglage ci-dessus est "
1199
- "activé et si le visiteur a donné son consentement."
1200
-
1201
- #: admin/views/admin_non_necessary_cookie.php:77
1202
- msgid ""
1203
- "Print scripts before the closing body tag on the front end if above cookie "
1204
- "settings is enabled and user has given consent."
1205
- msgstr ""
1206
- "Intégrer les scripts avant la fermeture de l’élément body en frontal, si le "
1207
- "visiteur a donné son consentement à l’utilisation des cookies et si son "
1208
- "navigateur permet leur usage."
1209
-
1210
- #: admin/views/goto-pro.php:56
1211
- msgid "Where did my settings go?"
1212
- msgstr "Où sont passés mes réglages ?"
1213
-
1214
- #: admin/views/goto-pro.php:57
1215
- msgid "Cookie Law Info version 0.9 has been updated and has new settings."
1216
- msgstr ""
1217
- "Cookie Law Info version 0.9 a été mis à jour et dispose de nouveaux réglages."
1218
-
1219
- #: admin/views/goto-pro.php:57
1220
- msgid "Your previous settings are safe."
1221
- msgstr "Vos réglages précédents sont sécurisés."
1222
-
1223
- #: admin/views/goto-pro.php:58
1224
- msgid ""
1225
- "You can either copy over your old settings to this version, or use the new "
1226
- "default values."
1227
- msgstr ""
1228
- "Vous pouvez copier vos anciens réglages vers cette version, ou utiliser les "
1229
- "nouvelles valeurs par défaut."
1230
-
1231
- #: admin/views/goto-pro.php:60
1232
- msgid "Would you like to:"
1233
- msgstr "Souhaitez-vous :"
1234
-
1235
- #: admin/views/goto-pro.php:62
1236
- msgid "Use previous settings"
1237
- msgstr "Utiliser les réglages précédents"
1238
-
1239
- #: admin/views/goto-pro.php:63
1240
- msgid "Start afresh with the new version"
1241
- msgstr "Recommencer à nouveau avec la nouvelle version"
1242
-
1243
- #: admin/views/goto-pro.php:67
1244
- msgid ""
1245
- "If you want to go back to the previous version you can always download it "
1246
- "again from"
1247
- msgstr ""
1248
- "Si vous voulez revenir à la version précédente vous pouvez toujours la "
1249
- "télécharger à nouveau sur"
1250
-
1251
- #: admin/views/goto-pro.php:73
1252
- msgid "30 Day Money Back Guarantee"
1253
- msgstr "Garantie de remboursement de 30 jours"
1254
-
1255
- #: admin/views/goto-pro.php:74
1256
- msgid "Fast and Superior Support"
1257
- msgstr "Support rapide et supérieur"
1258
-
1259
- #: admin/views/goto-pro.php:75
1260
- msgid "10X Powerful with GDPR Cookie Consent Features That Every Site Needs"
1261
- msgstr ""
1262
- "10X puissant avec le consentement de cookie GDPR: toutes les fonctionnalités "
1263
- "nécessaires"
1264
-
1265
- #: admin/views/goto-pro.php:78
1266
- msgid "Upgrade to Premium"
1267
- msgstr "Passer à la version premium"
1268
-
1269
- #: admin/views/goto-pro.php:84
1270
- msgid "Automatic Cookie Scanner"
1271
- msgstr "Scanner de cookies automatique"
1272
-
1273
- #: admin/views/goto-pro.php:85
1274
- msgid ""
1275
- "Auto block scripts - Google Analytics, Facebook Pixel, Google Tag Manager, "
1276
- "Hotjar Analytics, Google Publisher Tag, Youtube embed, Vimeo embed, Google "
1277
- "maps, Addthis widget, Sharethis widget, Twitter widget, Soundcloud embed, "
1278
- "Slideshare embed, Linkedin widget, Instagram embed, Pinterest widget"
1279
- msgstr ""
1280
- "Scripts autobloquants - Google Analytics, Facebook Pixel, Google Tag "
1281
- "Manager, Hotjar Analytics, Google Publisher Tag, YouTube intégré, Vimeo "
1282
- "intégré, Google Maps, widget Addthis, Sharethis, Twitter, Twitter, "
1283
- "Soundcloud intégré, SlideShare intégré, Linkedin intégré, Instagram "
1284
- "intégré , Widget Pinterest"
1285
-
1286
- #: admin/views/goto-pro.php:86
1287
- msgid "Location based exclusion of cookie notice for EU countries"
1288
- msgstr ""
1289
- "Exclusion basée sur la localisation de l'avis de cookie pour les pays de l'UE"
1290
-
1291
- #: admin/views/goto-pro.php:87
1292
- msgid "Granular control over the cookies/scipts used by the website"
1293
- msgstr "Contrôle granulaire des cookies utilisés par le site Web"
1294
-
1295
- #: admin/views/goto-pro.php:88
1296
- msgid "User consent audit logs"
1297
- msgstr "Journaux d'audit du consentement de l'utilisateur"
1298
-
1299
- #: admin/views/goto-pro.php:89
1300
- msgid "Customized privacy overview"
1301
- msgstr "Aperçu personnalisé de la confidentialité"
1302
-
1303
- #: admin/views/goto-pro.php:90
1304
- msgid "Cookie bar preview in admin settings page"
1305
- msgstr ""
1306
- "Aperçu de la barre des cookies dans la page des paramètres de "
1307
- "l'administrateur"
1308
-
1309
- #: admin/views/goto-pro.php:91
1310
- msgid "Advanced support for cache plugins"
1311
- msgstr "Prise en charge avancée des plugins de cache"
1312
-
1313
- #: admin/views/goto-pro.php:92
1314
- msgid "Cookie bar theme customizer for banner/ widgets/ popup"
1315
- msgstr ""
1316
- "Personnalisateur de thème de barre de cookies pour bannière / widgets / popup"
1317
-
1318
- #: admin/views/goto-pro.php:93
1319
- msgid "GDPR compliance with Google Tag Manager"
1320
- msgstr "Conformité GDPR avec Google Tag Manager"
1321
-
1322
- #: admin/views/goto-pro.php:94
1323
- msgid "Javascript helper functions"
1324
- msgstr "Fonctions d'assistance Javascript"
1325
-
1326
- #: admin/views/goto-pro.php:108
1327
- msgid "Like this plugin?"
1328
- msgstr "Vous aimez cette extension ?"
1329
-
1330
- #: admin/views/goto-pro.php:109
1331
- msgid "If you find this plugin useful please show your support and rate it"
1332
- msgstr ""
1333
- "Si vous avez trouvé cette extension utile, merci de montrer votre soutien et "
1334
- "la noter"
1335
-
1336
- #: admin/views/goto-pro.php:109
1337
- msgid " on"
1338
- msgstr " sur"
1339
-
1340
- #: admin/views/goto-pro.php:109
1341
- msgid " much appreciated!"
1342
- msgstr " Très apprécié !"
1343
-
1344
- #: cookie-law-info.php:80
1345
- msgid ""
1346
- "Please make sure the cache is cleared after each plugin update especially if "
1347
- "you have minified JS and/or CSS files."
1348
- msgstr ""
1349
- "Veuillez vous assurer que le cache est effacé après chaque mise à jour du "
1350
- "plugin, surtout si vous avez minifié des fichiers JS et / ou CSS."
1351
-
1352
- #: includes/class-cookie-law-info-review_request.php:52
1353
- #, php-format
1354
- msgid ""
1355
- "Hey, we at %sWebToffee%s would like to thank you for using our plugin. We "
1356
- "would really appreciate if you could take a moment to drop a quick review "
1357
- "that will inspire us to keep going."
1358
- msgstr ""
1359
- "Hé, chez %sWebToffee% s, nous tenons à vous remercier d'avoir utilisé notre "
1360
- "plugin. Nous apprécierions vraiment que vous preniez un moment pour déposer "
1361
- "une critique rapide qui nous inspirera à continuer."
1362
-
1363
- #: includes/class-cookie-law-info-review_request.php:55
1364
- msgid "Remind me later"
1365
- msgstr "Rappelez-moi plus tard"
1366
-
1367
- #: includes/class-cookie-law-info-review_request.php:56
1368
- msgid "Not interested"
1369
- msgstr "Pas intéressé"
1370
-
1371
- #: includes/class-cookie-law-info-review_request.php:57
1372
- msgid "Review now"
1373
- msgstr "Revoir maintenant"
1374
-
1375
- #: public/class-cookie-law-info-public.php:251
1376
- msgid "GDPR Cookie Consent"
1377
- msgstr "GDPR Cookie Consent"
1378
-
1379
- #: public/class-cookie-law-info-public.php:252
1380
- msgid "Cookie List"
1381
- msgstr "Liste des Cookies"
1382
-
1383
- #: public/class-cookie-law-info-public.php:253
1384
- #: public/modules/shortcode/shortcode.php:208
1385
- msgid "Cookie"
1386
- msgstr "Cookie"
1387
-
1388
- #: public/class-cookie-law-info-public.php:254
1389
- msgid "Add New"
1390
- msgstr "Ajouter un nouveau"
1391
-
1392
- #: public/class-cookie-law-info-public.php:255
1393
- msgid "Add New Cookie Type"
1394
- msgstr "Ajouter un nouveau type de Cookie"
1395
-
1396
- #: public/class-cookie-law-info-public.php:256
1397
- msgid "Edit Cookie Type"
1398
- msgstr "Modifier le type de Cookie"
1399
-
1400
- #: public/class-cookie-law-info-public.php:257
1401
- msgid "New Cookie Type"
1402
- msgstr "Nouveau type de Cookie"
1403
-
1404
- #: public/class-cookie-law-info-public.php:258
1405
- msgid "View Cookie Type"
1406
- msgstr "Voir le type de cookie"
1407
-
1408
- #: public/class-cookie-law-info-public.php:259
1409
- msgid "Search Cookies"
1410
- msgstr "Rechercher des cookies"
1411
-
1412
- #: public/class-cookie-law-info-public.php:260
1413
- msgid "Nothing found"
1414
- msgstr "Rien de trouvé"
1415
-
1416
- #: public/class-cookie-law-info-public.php:261
1417
- msgid "Nothing found in Trash"
1418
- msgstr "Rien de trouvé dans la corbeille"
1419
-
1420
- #: public/modules/script-blocker/script-blocker.php:156
1421
- #: public/modules/script-blocker/script-blocker.php:157
1422
- msgid "Script Blocker"
1423
- msgstr "Bloqueur de scripts"
1424
-
1425
- #: public/modules/script-blocker/script-blocker.php:182
1426
- msgid "Status updated"
1427
- msgstr "Statut mis à jour"
1428
-
1429
- #: public/modules/script-blocker/script-blocker.php:206
1430
- msgid "Advanced script rendering"
1431
- msgstr "Rendu de script avancé"
1432
-
1433
- #: public/modules/script-blocker/script-blocker.php:208
1434
- #: public/modules/script-blocker/views/settings.php:7
1435
- msgid "Enable"
1436
- msgstr "Activer"
1437
-
1438
- #: public/modules/script-blocker/script-blocker.php:209
1439
- #: public/modules/script-blocker/views/settings.php:7
1440
- msgid "Disable"
1441
- msgstr "Désactiver"
1442
-
1443
- #: public/modules/script-blocker/script-blocker.php:210
1444
- msgid ""
1445
- "Advanced script rendering will render the blocked scripts using javascript "
1446
- "thus eliminating the need for a page refresh. It is also optimized for "
1447
- "caching since there is no server-side processing after obtaining the consent."
1448
- msgstr ""
1449
- "Le rendu de script avancé rendra les scripts bloqués à l'aide de javascript, "
1450
- "éliminant ainsi la nécessité d'une actualisation de la page. Il est "
1451
- "également optimisé pour la mise en cache car il n'y a pas de traitement côté "
1452
- "serveur après l'obtention du consentement."
1453
-
1454
- #: public/modules/script-blocker/views/settings.php:9
1455
- msgid "Script blocker is enabled."
1456
- msgstr "Le bloqueur de script est activé."
1457
-
1458
- #: public/modules/script-blocker/views/settings.php:9
1459
- msgid ""
1460
- "Script blocker is currently disabled. Enable the blocker if you want any of "
1461
- "the below listed plugins to be auto blocked."
1462
- msgstr ""
1463
- "Le bloqueur de script est actuellement désactivé. Activez le bloqueur si "
1464
- "vous souhaitez que l'un des plugins répertoriés ci-dessous soit "
1465
- "automatiquement bloqué."
1466
-
1467
- #: public/modules/script-blocker/views/settings.php:10
1468
- #, php-format
1469
- msgid "<a href=\"javascript: submitform()\">%s</a>"
1470
- msgstr "<a href=\"javascript: submitform()\">%s</a>"
1471
-
1472
- #: public/modules/script-blocker/views/settings.php:14
1473
- #, php-format
1474
- msgid ""
1475
- "Advanced script rendering is currently disabled. It should be enabled for "
1476
- "the automatic script blocker to function. <a href=\"%s\">Enable.</a>"
1477
- msgstr ""
1478
- "Le rendu de script avancé est actuellement désactivé. Il doit être activé "
1479
- "pour que le bloqueur de script automatique fonctionne. <a href=\"%s"
1480
- "\">Activer.</a>"
1481
-
1482
- #: public/modules/script-blocker/views/settings.php:113
1483
- msgid "Manage Script Blocking"
1484
- msgstr "Gérer le blocage des scripts"
1485
-
1486
- #: public/modules/script-blocker/views/settings.php:134
1487
- #, php-format
1488
- msgid ""
1489
- "Below is the list of plugins currently supported for auto blocking. Plugins "
1490
- "marked inactive are either not installed or activated on your website. "
1491
- "Enabled plugins will be blocked by default on the front-end of your website "
1492
- "prior to obtaining user consent and rendered respectively based on consent. "
1493
- "<a href=\"%s\" target=\"_blank\">Read more.</a>"
1494
- msgstr ""
1495
- "Vous trouverez ci-dessous la liste des plugins actuellement pris en charge "
1496
- "pour le blocage automatique. Les plugins marqués comme inactifs ne sont pas "
1497
- "installés ou activés sur votre site Web. Les plugins activés seront bloqués "
1498
- "par défaut sur le front-end de votre site Web avant l'obtention du "
1499
- "consentement de l'utilisateur et rendus respectivement sur la base du "
1500
- "consentement. <a href=\"%s\" target=\"_blank\">Lire la suite.</a>"
1501
-
1502
- #: public/modules/script-blocker/views/settings.php:140
1503
- msgid "Name"
1504
- msgstr "Nom"
1505
-
1506
- #: public/modules/script-blocker/views/settings.php:141
1507
- msgid ""
1508
- "Enabled: Plugins will be blocked by default prior to obtaining user consent."
1509
- msgstr ""
1510
- "Activé: les plugins seront bloqués par défaut avant l'obtention du "
1511
- "consentement de l'utilisateur."
1512
-
1513
- #: public/modules/script-blocker/views/settings.php:141
1514
- msgid "Disabled: Plugins will be rendered prior to obtaining consent."
1515
- msgstr ""
1516
- "Désactivé: les plugins seront rendus avant l'obtention du consentement."
1517
-
1518
- #: public/modules/script-blocker/views/settings.php:175
1519
- msgid "Inactive"
1520
- msgstr "Inactive"
1521
-
1522
- #: public/modules/shortcode/shortcode.php:99
1523
- msgid "Your current state:"
1524
- msgstr "Votre état actuel:"
1525
-
1526
- #: public/modules/shortcode/shortcode.php:104
1527
- msgid "Consent accepted."
1528
- msgstr "Consentement accepté."
1529
-
1530
- #: public/modules/shortcode/shortcode.php:107
1531
- msgid "Consent rejected."
1532
- msgstr "Consentement rejeté."
1533
-
1534
- #: public/modules/shortcode/shortcode.php:111
1535
- msgid "No consent given."
1536
- msgstr "Aucun consentement donné."
1537
-
1538
- #: public/modules/shortcode/shortcode.php:113
1539
- msgid "Manage your consent."
1540
- msgstr "Gérez votre consentement."
1541
-
1542
- #: public/modules/shortcode/shortcode.php:150
1543
- msgid "Delete Cookies"
1544
- msgstr "Supprimer les cookies"
1545
-
1546
- #: public/modules/shortcode/shortcode.php:186
1547
- msgid "No records found"
1548
- msgstr "Aucun enregistrement trouvé"
1549
-
1550
- #: public/modules/shortcode/shortcode.php:212
1551
- msgid "Type"
1552
- msgstr "Type"
1553
-
1554
- #: public/modules/shortcode/shortcode.php:216
1555
- msgid "Duration"
1556
- msgstr "Durée"
1557
-
1558
- #: public/modules/shortcode/shortcode.php:533
1559
- msgid "Close the cookie bar"
1560
- msgstr "Fermez la barre de cookies"
1561
-
1562
- #: public/modules/shortcode/shortcode.php:533
1563
- msgid "Close and Accept"
1564
- msgstr "Fermer l'en-tête"
1565
-
1566
- #: public/views/cookie-law-info_bar.php:23
1567
- msgid "Close"
1568
- msgstr "Fermer"
1569
-
1570
- #: public/views/cookie-law-info_popup_content.php:6
1571
- msgid "Always Enabled"
1572
- msgstr "Toujours activé"
1573
-
1574
- #: public/views/cookie-law-info_popup_content.php:9
1575
- msgid "Show more"
1576
- msgstr "Montre plus"
1577
-
1578
- #: public/views/cookie-law-info_popup_content.php:9
1579
- msgid "Show less"
1580
- msgstr "Montre moins"
1581
-
1582
- #~ msgid ""
1583
- #~ "Which plugin are you using for language translation? Could you tell us a "
1584
- #~ "bit more?"
1585
- #~ msgstr ""
1586
- #~ "Quel plugin utilisez-vous pour la traduction linguistique? Pouvez-vous "
1587
- #~ "nous en dire un peu plus?"
1588
-
1589
- #~ msgid "Caching issues"
1590
- #~ msgstr "Problèmes de mise en cache"
1591
-
1592
- #~ msgid "Which caching plugin are you using? Could you tell us a bit more?"
1593
- #~ msgstr ""
1594
- #~ "Quel plugin de mise en cache utilisez-vous? Pouvez-vous nous en dire un "
1595
- #~ "peu plus?"
1596
-
1597
- #~ msgid "Cookie Law Settings"
1598
- #~ msgstr "Réglages Cookie Law"
1599
-
1600
- #~ msgid "Show Again Tab"
1601
- #~ msgstr "Afficher de nouveau la barre"
1602
-
1603
- #~ msgid "Use Show Again Tab?"
1604
- #~ msgstr "Utiliser l’onglet Afficher à nouveau ?"
1605
-
1606
- #~ msgid "Show More Text"
1607
- #~ msgstr "Texte du message permettant d’en savoir plus"
1608
-
1609
- #~ msgid "Non-necessary Cookie"
1610
- #~ msgstr "Cookie non nécessaire"
1611
-
1612
- #~ msgid "Necessary Cookie"
1613
- #~ msgstr "Cookie nécessaire"
1614
-
1615
- #~ msgid "Your Cookie Law Info bar is switched on"
1616
- #~ msgstr ""
1617
- #~ "Votre barre d’information sur la loi relative aux Cookies est activée"
1618
-
1619
- #~ msgid "Your Cookie Law Info bar is switched off"
1620
- #~ msgstr ""
1621
- #~ "Votre barre d’information sur la loi relative aux Cookies est désactivée"
1622
-
1623
- #~ msgid "Cookie Bar will be shown in:"
1624
- #~ msgstr "La barre de Cookies sera affichée dans :"
1625
-
1626
- #~ msgid "Disappear"
1627
- #~ msgstr "Faire disparaître"
1628
-
1629
- #~ msgid "Show Border?"
1630
- #~ msgstr "Afficher la bordure ?"
1631
-
1632
- #~ msgid "Border Colour"
1633
- #~ msgstr "Couleur de la bordure"
1634
-
1635
- #~ msgid ""
1636
- #~ "If you just want a standard green \"Accept\" button that closes the "
1637
- #~ "header and nothing more, use this shortcode. It is already styled, you "
1638
- #~ "don't need to customise it."
1639
- #~ msgstr ""
1640
- #~ "Si vous voulez juste un bouton vert \"Accepter\" standard qui ferme l'en-"
1641
- #~ "tête et rien de plus, utilisez ce shortcode Il est déjà stylé, vous "
1642
- #~ "n'avez pas besoin de le personnaliser."
1643
-
1644
- #~ msgid ""
1645
- #~ "Alternatively you can add a colour value. Choose from: red, blue, orange, "
1646
- #~ "yellow, green or pink."
1647
- #~ msgstr ""
1648
- #~ ".Vous pouvez aussi ajouter un nom de couleur (en anglais) Choisissez "
1649
- #~ "parmi : red, blue, orange, yellow, green or pink."
1650
-
1651
- #~ msgid "Careful to use the British spelling of \"colour\" for the attribute."
1652
- #~ msgstr ""
1653
- #~ "Attention à utiliser l'orthographe britannique de \"couleur\" pour "
1654
- #~ "l'attribut."
1655
-
1656
- #~ msgid "Cookie bar preview in admin settings page."
1657
- #~ msgstr ""
1658
- #~ "Aperçu de la barre de cookie dans la page de réglages de l’administration."
1659
-
1660
- #~ msgid "http://cookielawinfo.com/"
1661
- #~ msgstr "http://cookielawinfo.com/"
1662
-
1663
- #~ msgid "Scan and import/export the cookies in the website."
1664
- #~ msgstr "Scannez et importez / exportez les cookies sur le site Web."
1665
-
1666
- #~ msgid "Export/import cookies and related information via CSV file."
1667
- #~ msgstr ""
1668
- #~ "Exporter / importer des cookies et des informations connexes via un "
1669
- #~ "fichier CSV."
1670
-
1671
- #~ msgid "Customize the privacy overview in the cookie settings popup."
1672
- #~ msgstr ""
1673
- #~ "Personnalisez la vue d'ensemble de la confidentialité dans la fenêtre "
1674
- #~ "contextuelle des paramètres de cookies."
1675
-
1676
- #~ msgid "Optionally log users' consent and export into a CSV file."
1677
- #~ msgstr "Log user consent and export it to a CSV file."
1678
-
1679
- #~ msgid ""
1680
- #~ "Provide the users with the granular control over the cookies/scipts used "
1681
- #~ "by the website."
1682
- #~ msgstr ""
1683
- #~ "Fournissez aux utilisateurs le contrôle granulaire sur les cookies / "
1684
- #~ "scipts utilisés par le site."
1685
-
1686
- #~ msgid ""
1687
- #~ "Scan and auto block scripts - Google Analytics, FB Pixel, Google tag "
1688
- #~ "manager."
1689
- #~ msgstr ""
1690
- #~ "Scanner et bloquer automatiquement les scripts - Google Analytics, FB "
1691
- #~ "Pixel, Google tag manager. "
1692
-
1693
- #~ msgid "WebToffee"
1694
- #~ msgstr "WebToffee"
1695
-
1696
- #~ msgid "https://www.webtoffee.com/product/gdpr-cookie-consent/"
1697
- #~ msgstr "https://www.webtoffee.com/product/gdpr-cookie-consent/"
1698
-
1699
- #~ msgid ""
1700
- #~ "A simple way to show your website complies with the EU Cookie Law / GDPR."
1701
- #~ msgstr ""
1702
- #~ "Un moyen simple de montrer que votre site Web est conforme à la loi "
1703
- #~ "européenne sur les cookies (GDPR)."
1704
-
1705
- #~ msgid "Put the cookie bar in either the header or the footer."
1706
- #~ msgstr "Placez la barre des cookies dans l'en-tête ou le pied de page."
1707
-
1708
- #~ msgid ""
1709
- #~ "Allow to display cookie settings popup where site visitors can opt-in or "
1710
- #~ "give consent to cookie categories."
1711
- #~ msgstr ""
1712
- #~ "Permet d'afficher les paramètres de cookies contextuels où les visiteurs "
1713
- #~ "du site peuvent choisir ou donner leur consentement aux catégories de "
1714
- #~ "cookies."
1715
-
1716
- #~ msgid "Manage Cookie Categories."
1717
- #~ msgstr "Gérer les catégories de cookies."
1718
-
1719
- #~ msgid ""
1720
- #~ "Manage list of cookies ( Name, CookieID, Description, Duration, Type, "
1721
- #~ "Category, Header Script, Footer Script)."
1722
- #~ msgstr ""
1723
- #~ "Gérer la liste des cookies (Nom, ID Cookie, Description, Durée, Type, "
1724
- #~ "Catégorie, Script d’en-tête, Script de pied de page)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/cookie-law-info-hr.mo DELETED
Binary file
languages/cookie-law-info-hr.po DELETED
@@ -1,1754 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: \n"
4
- "POT-Creation-Date: 2020-11-17 11:32+0530\n"
5
- "PO-Revision-Date: 2020-11-17 11:33+0530\n"
6
- "Last-Translator: \n"
7
- "Language-Team: \n"
8
- "Language: hr\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.4.2\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
15
- "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
16
- "X-Poedit-KeywordsList: __;_e\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
-
19
- #: admin/class-cookie-law-info-admin.php:147
20
- #: admin/class-cookie-law-info-admin.php:148
21
- #: admin/class-cookie-law-info-admin.php:247
22
- #: admin/partials/cookie-law-info-admin_settings.php:31
23
- msgid "Settings"
24
- msgstr "Podešavanja"
25
-
26
- #: admin/class-cookie-law-info-admin.php:155
27
- #: admin/class-cookie-law-info-admin.php:156
28
- #: public/modules/script-blocker/views/settings.php:174
29
- #: public/views/cookie-law-info_popup_content.php:23
30
- msgid "Non-necessary"
31
- msgstr "Non-potrebno"
32
-
33
- #: admin/class-cookie-law-info-admin.php:163
34
- #: admin/class-cookie-law-info-admin.php:164
35
- #: public/views/cookie-law-info_popup_content.php:22
36
- msgid "Necessary"
37
- msgstr "Potreban"
38
-
39
- #: admin/class-cookie-law-info-admin.php:171
40
- #: admin/class-cookie-law-info-admin.php:172
41
- #: admin/partials/cookie-law-info-privacy_overview.php:25
42
- msgid "Privacy Overview"
43
- msgstr "Pregled privatnosti"
44
-
45
- #: admin/class-cookie-law-info-admin.php:221
46
- #: admin/class-cookie-law-info-admin.php:276
47
- #: admin/class-cookie-law-info-admin.php:334
48
- #: admin/class-cookie-law-info-admin.php:378
49
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:22
50
- #: public/modules/script-blocker/script-blocker.php:133
51
- #: public/modules/script-blocker/script-blocker.php:173
52
- #: public/modules/script-blocker/script-blocker.php:310
53
- msgid "You do not have sufficient permission to perform this operation"
54
- msgstr "Nemate dovoljno dopuštenja za izvođenje ove operacije"
55
-
56
- #: admin/class-cookie-law-info-admin.php:240
57
- #: admin/class-cookie-law-info-admin.php:306
58
- #: admin/class-cookie-law-info-admin.php:359
59
- #: admin/class-cookie-law-info-admin.php:403
60
- msgid "Settings Updated."
61
- msgstr "Postavke su obnovljene."
62
-
63
- #: admin/class-cookie-law-info-admin.php:248
64
- msgid "Support"
65
- msgstr "Podrška"
66
-
67
- #: admin/class-cookie-law-info-admin.php:249
68
- msgid "Premium Upgrade"
69
- msgstr "Premium Upgrade"
70
-
71
- #: admin/class-cookie-law-info-admin.php:418
72
- msgid "ERROR MIGRATING SETTINGS (ERROR: 2)"
73
- msgstr "MJERENJE POSTAVLJANJA ERRORA (ERROR: 2)"
74
-
75
- #: admin/class-cookie-law-info-admin.php:436
76
- msgid "Cookie ID"
77
- msgstr "ID kolačića"
78
-
79
- #: admin/class-cookie-law-info-admin.php:437
80
- msgid "Cookie Type"
81
- msgstr "Vrsta kolačića"
82
-
83
- #: admin/class-cookie-law-info-admin.php:438
84
- msgid "Cookie Duration"
85
- msgstr "Trajanje kolačića"
86
-
87
- #: admin/class-cookie-law-info-admin.php:439
88
- msgid "Cookie Sensitivity"
89
- msgstr "Osjetljivost kolačića"
90
-
91
- #: admin/class-cookie-law-info-admin.php:689
92
- msgid "Close Header"
93
- msgstr "Zatvori zaglavlje"
94
-
95
- #: admin/class-cookie-law-info-admin.php:693
96
- msgid "Open URL"
97
- msgstr "Otvori URL"
98
-
99
- #: admin/class-cookie-law-info-admin.php:706
100
- msgid "Extra Large"
101
- msgstr "Ekstra velika"
102
-
103
- #: admin/class-cookie-law-info-admin.php:710
104
- msgid "Large"
105
- msgstr "Veliko"
106
-
107
- #: admin/class-cookie-law-info-admin.php:714
108
- msgid "Medium"
109
- msgstr "Srednje"
110
-
111
- #: admin/class-cookie-law-info-admin.php:718
112
- msgid "Small"
113
- msgstr "Mali"
114
-
115
- #: admin/class-cookie-law-info-admin.php:732
116
- msgid "Default theme font"
117
- msgstr "Zadani font teme"
118
-
119
- #: admin/class-cookie-law-info-admin.php:736
120
- msgid "Sans Serif"
121
- msgstr "Sans Serif"
122
-
123
- #: admin/class-cookie-law-info-admin.php:740
124
- msgid "Serif"
125
- msgstr "Serif"
126
-
127
- #: admin/class-cookie-law-info-admin.php:744
128
- msgid "Arial"
129
- msgstr "Arial"
130
-
131
- #: admin/class-cookie-law-info-admin.php:748
132
- msgid "Arial Black"
133
- msgstr "Arial Black"
134
-
135
- #: admin/class-cookie-law-info-admin.php:752
136
- msgid "Georgia, serif"
137
- msgstr "Georgia, serif"
138
-
139
- #: admin/class-cookie-law-info-admin.php:756
140
- msgid "Helvetica"
141
- msgstr "Helvetica"
142
-
143
- #: admin/class-cookie-law-info-admin.php:760
144
- msgid "Lucida"
145
- msgstr "Lucida"
146
-
147
- #: admin/class-cookie-law-info-admin.php:764
148
- msgid "Tahoma"
149
- msgstr "Tahoma"
150
-
151
- #: admin/class-cookie-law-info-admin.php:768
152
- msgid "Times New Roman"
153
- msgstr "Times New Roman"
154
-
155
- #: admin/class-cookie-law-info-admin.php:772
156
- msgid "Trebuchet"
157
- msgstr "Trebuchet"
158
-
159
- #: admin/class-cookie-law-info-admin.php:776
160
- msgid "Verdana"
161
- msgstr "Verdana"
162
-
163
- #: admin/modules/ccpa/ccpa.php:106
164
- msgid "Do you really wish to opt out?"
165
- msgstr "Doista se želite odjaviti?"
166
-
167
- #: admin/modules/ccpa/ccpa.php:107
168
- msgid "Confirm"
169
- msgstr "Potvrda"
170
-
171
- #: admin/modules/ccpa/ccpa.php:108
172
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:154
173
- msgid "Cancel"
174
- msgstr "Otkaži"
175
-
176
- #: admin/modules/ccpa/ccpa.php:145
177
- msgid "Select the type of law"
178
- msgstr "Odaberite vrstu zakona"
179
-
180
- #: admin/modules/ccpa/ccpa.php:149
181
- msgid "GDPR"
182
- msgstr "GDPR"
183
-
184
- #: admin/modules/ccpa/ccpa.php:150 admin/modules/ccpa/ccpa.php:158
185
- msgid ""
186
- "Customize the buttons, notice, themes from the relevant tabs to setup your "
187
- "cookie notice accordingly."
188
- msgstr ""
189
- "Prilagodite gumbe, obavijesti, teme s relevantnih kartica kako biste u "
190
- "skladu s tim postavili obavijest o kolačićima."
191
-
192
- #: admin/modules/ccpa/ccpa.php:153
193
- msgid "CCPA"
194
- msgstr "CCPA"
195
-
196
- #: admin/modules/ccpa/ccpa.php:154
197
- msgid ""
198
- "Most of the customizations from the tabs for buttons, notice or themes are "
199
- "not relevant especially if you choose to not show the notice, except the Do "
200
- "not sell within the buttons."
201
- msgstr ""
202
- "Većina prilagodbi na karticama za gumbe, obavijesti ili teme nisu "
203
- "relevantne, posebno ako odlučite ne pokazati oglas, osim ako ne prodaje "
204
- "unutar gumba."
205
-
206
- #: admin/modules/ccpa/ccpa.php:157
207
- msgid "CCPA & GDPR"
208
- msgstr "CCPA i GDPR"
209
-
210
- #: admin/modules/ccpa/views/ccpa_settings.php:7
211
- msgid "CCPA Settings"
212
- msgstr "CCPA postavke"
213
-
214
- #: admin/modules/ccpa/views/ccpa_settings.php:7
215
- msgid ""
216
- "The right to opt out in the California Consumer Privacy Act gives consumers "
217
- "the ability to direct a business not to sell their personal information to a "
218
- "third party. If the user considers to not sell their personal information, "
219
- "all the scripts related to the categories which are configured to sell "
220
- "personal information will be blocked. The DO NOT SELL option is facilitated "
221
- "via a shortcode [wt_cli_ccpa_optout]."
222
- msgstr ""
223
- "Pravo na isključivanje u kalifornijskom zakonu o privatnosti potrošača "
224
- "potrošačima omogućuje usmjeravanje tvrtke da ne prodaje svoje osobne podatke "
225
- "trećoj strani. Ako korisnik smatra da ne prodaje svoje osobne podatke, sve "
226
- "skripte koje se odnose na kategorije konfigurirane za prodaju osobnih "
227
- "podataka bit će blokirane. Opcija DO SELL se olakšava putem kratkog koda "
228
- "[wt_cli_ccpa_optout]."
229
-
230
- #: admin/modules/ccpa/views/ccpa_settings.php:10
231
- msgid "Enable CCPA ?"
232
- msgstr "Omogućiti CCPA?"
233
-
234
- #: admin/modules/ccpa/views/ccpa_settings.php:18
235
- msgid "Enable CCPA notice"
236
- msgstr "Omogući CCPA obavijest"
237
-
238
- #: admin/modules/ccpa/views/ccpa_settings.php:18
239
- msgid ""
240
- "Enabling the notice will display the banner with the relevant text as per "
241
- "your configuration. Use this option particularly to record prior consent "
242
- "from the website visitors."
243
- msgstr ""
244
- "Omogućivanje obavijesti prikazat će natpis s relevantnim tekstom prema vašoj "
245
- "konfiguraciji. Ovu opciju posebno koristite za snimanje prethodnih pristanka "
246
- "posjetitelja web stranice."
247
-
248
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:26
249
- msgid "Unable to handle your request."
250
- msgstr "Nije moguće obraditi vaš zahtjev."
251
-
252
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:96
253
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:130
254
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:132
255
- msgid "Error"
256
- msgstr "Greška"
257
-
258
- #: admin/modules/cli-policy-generator/classes/class-preview-page.php:27
259
- msgid "Cookie Policy"
260
- msgstr "Pravila kolačića"
261
-
262
- #: admin/modules/cli-policy-generator/classes/class-preview-page.php:83
263
- msgid "Auto reload preview"
264
- msgstr "Pregled za automatsko ponovno učitavanje"
265
-
266
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:106
267
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:107
268
- #: admin/modules/cli-policy-generator/views/policy-generator.php:21
269
- msgid "Policy generator"
270
- msgstr "Generator pravila"
271
-
272
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:133
273
- msgid "Success"
274
- msgstr "Uspjeh"
275
-
276
- #: admin/modules/cli-policy-generator/views/policy-generator.php:25
277
- msgid "Sample heading"
278
- msgstr "Naslov uzorka"
279
-
280
- #: admin/modules/cli-policy-generator/views/policy-generator.php:26
281
- msgid "Sample content"
282
- msgstr "Sadržaj uzorka"
283
-
284
- #: admin/modules/cli-policy-generator/views/policy-generator.php:27
285
- msgid "Delete"
286
- msgstr "Izbrisati"
287
-
288
- #: admin/modules/cli-policy-generator/views/policy-generator.php:49
289
- msgid "Add new"
290
- msgstr "Dodaj novi"
291
-
292
- #: admin/modules/cli-policy-generator/views/policy-generator.php:53
293
- msgid "Heading"
294
- msgstr "Naslov"
295
-
296
- #: admin/modules/cli-policy-generator/views/policy-generator.php:57
297
- #: admin/views/admin_necessary_cookie.php:39
298
- #: admin/views/admin_non_necessary_cookie.php:54
299
- #: public/modules/script-blocker/views/settings.php:142
300
- #: public/modules/shortcode/shortcode.php:220
301
- msgid "Description"
302
- msgstr "Opis"
303
-
304
- #: admin/modules/cli-policy-generator/views/policy-generator.php:65
305
- msgid ""
306
- "Enabling this option will help us spread the word by placing a credit to "
307
- "WebToffee at the very end of the Cookie Policy page."
308
- msgstr ""
309
- "Ako omogućite ovu opciju, pomoći ćete nam da proširimo riječ postavljanjem "
310
- "kredita WebToffeeu na samom kraju stranice Pravila kolačića."
311
-
312
- #: admin/modules/cli-policy-generator/views/policy-generator.php:82
313
- msgid "Update existing Cookie Policy page"
314
- msgstr "Ažurirajte postojeću stranicu Politike kolačića"
315
-
316
- #: admin/modules/cli-policy-generator/views/policy-generator.php:88
317
- msgid "Create Cookie Policy page"
318
- msgstr "Stvorite stranicu Pravila kolačića"
319
-
320
- #: admin/modules/cli-policy-generator/views/policy-generator.php:92
321
- msgid "Live preview"
322
- msgstr "Pregled uživo"
323
-
324
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:43
325
- msgid "The plugin is complex to set up"
326
- msgstr "Dodatak je složen za postavljanje"
327
-
328
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:45
329
- msgid "Please describe which area you are facing difficulties"
330
- msgstr "Opišite na kojem se području suočavate s poteškoćama"
331
-
332
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:49
333
- msgid "I found a better plugin"
334
- msgstr "Pronašao sam bolji dodatak"
335
-
336
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:51
337
- msgid "Which plugin?"
338
- msgstr "Koji dodatak?"
339
-
340
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:55
341
- msgid "The plugin is great, but I need specific feature that you don't support"
342
- msgstr "Dodatak je sjajan, ali trebam određenu značajku koju ne podržavate"
343
-
344
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:57
345
- msgid "Could you tell us more about that feature?"
346
- msgstr "Možete li nam reći više o toj značajci?"
347
-
348
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:61
349
- msgid "The plugin didn't work as expected"
350
- msgstr "Dodatak nije radio kako se očekivalo"
351
-
352
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:63
353
- msgid "What did you expect?"
354
- msgstr "Što si očekivao?"
355
-
356
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:67
357
- msgid "A conflict with another plugin or theme"
358
- msgstr "Sukob s drugim dodatkom ili temom"
359
-
360
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:69
361
- msgid "Which plugin or theme?"
362
- msgstr "Koji dodatak ili tema?"
363
-
364
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:73
365
- msgid "Translation issues"
366
- msgstr "Problemi s prijevodom"
367
-
368
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:77
369
- msgid "Incorrect/missing translation"
370
- msgstr "Pogrešan / nedostaje prijevod"
371
-
372
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:79
373
- msgid "Name the language"
374
- msgstr "Nazovite jezik"
375
-
376
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:83
377
- msgid ""
378
- "Unable to translate my dynamic content e.g, cookie message, button text etc"
379
- msgstr ""
380
- "Ne mogu prevesti svoj dinamički sadržaj, npr. Poruku kolačića, tekst gumba "
381
- "itd"
382
-
383
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:85
384
- msgid "Name the language and the translator plugin that you are using"
385
- msgstr "Nazovite jezik i dodatak za prevoditelj koji koristite"
386
-
387
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:91
388
- msgid "Upgrade to pro"
389
- msgstr "Nadogradi na pro"
390
-
391
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:95
392
- #: admin/views/admin-settings-general.php:10
393
- #: admin/views/admin-settings-general.php:66
394
- msgid "Other"
395
- msgstr "Drugo"
396
-
397
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:97
398
- msgid "Could you tell us a bit more?"
399
- msgstr "Možete li nam reći nešto više?"
400
-
401
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:117
402
- msgid "If you have a moment, please let us know why you are deactivating:"
403
- msgstr "Ako imate trenutak, javite nam zašto deaktivirate:"
404
-
405
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:144
406
- msgid ""
407
- "We do not collect any personal data when you submit this form. It's your "
408
- "feedback that we value."
409
- msgstr ""
410
- "Kad predate ovaj obrazac, ne prikupljamo nikakve osobne podatke. Vaše "
411
- "povratne informacije cijenimo."
412
-
413
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:145
414
- msgid "Privacy Policy"
415
- msgstr "Postavke pravila o privatnosti"
416
-
417
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:152
418
- msgid "Go to support"
419
- msgstr "Idite na podršku"
420
-
421
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:153
422
- msgid "Submit & Deactivate"
423
- msgstr "Pošaljite i deaktivirajte"
424
-
425
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:155
426
- msgid "I rather wouldn't say"
427
- msgstr "Radije ne bih rekao"
428
-
429
- #: admin/partials/cookie-law-info-admin_settings.php:25
430
- #: admin/views/admin_necessary_cookie.php:20
431
- #: admin/views/admin_non_necessary_cookie.php:17
432
- msgid "Settings updated."
433
- msgstr "Postavke su obnovljene."
434
-
435
- #: admin/partials/cookie-law-info-admin_settings.php:26
436
- #: admin/views/admin_necessary_cookie.php:21
437
- #: admin/views/admin_non_necessary_cookie.php:18
438
- msgid "Unable to update Settings."
439
- msgstr "Ažuriranje postavki nije moguće."
440
-
441
- #: admin/partials/cookie-law-info-admin_settings.php:27
442
- msgid "Settings reset to defaults."
443
- msgstr "Postavke su obnovljene."
444
-
445
- #: admin/partials/cookie-law-info-admin_settings.php:28
446
- msgid "Unable to reset settings."
447
- msgstr "Ažuriranje postavki nije moguće."
448
-
449
- #: admin/partials/cookie-law-info-admin_settings.php:39
450
- msgid "Cookie bar is currently active"
451
- msgstr "Traka kolačića trenutno je aktivna"
452
-
453
- #: admin/partials/cookie-law-info-admin_settings.php:47
454
- msgid "Cookie bar is currently inactive"
455
- msgstr "Traka kolačića trenutno je neaktivna"
456
-
457
- #: admin/partials/cookie-law-info-admin_settings.php:57
458
- #: admin/views/admin-settings-general.php:9
459
- msgid "General"
460
- msgstr "Glavno"
461
-
462
- #: admin/partials/cookie-law-info-admin_settings.php:58
463
- msgid "Customise Cookie Bar"
464
- msgstr "Cookie Bar će biti prikazan u:"
465
-
466
- #: admin/partials/cookie-law-info-admin_settings.php:59
467
- msgid "Customise Buttons"
468
- msgstr "Prilagodi gumbe"
469
-
470
- #: admin/partials/cookie-law-info-admin_settings.php:60
471
- #: admin/views/admin-settings-advanced.php:8
472
- msgid "Advanced"
473
- msgstr "Napredno"
474
-
475
- #: admin/partials/cookie-law-info-admin_settings.php:61
476
- msgid "Help Guide"
477
- msgstr "Vodič"
478
-
479
- #: admin/partials/cookie-law-info-privacy_overview.php:32
480
- msgid "Privacy Overview Title"
481
- msgstr "Pregled naslova privatnosti"
482
-
483
- #: admin/partials/cookie-law-info-privacy_overview.php:38
484
- #: admin/partials/cookie-law-info-privacy_overview.php:53
485
- msgid "This will be shown in the settings visible for user on consent screen."
486
- msgstr ""
487
- "To će se prikazati u postavkama koje su vidljive korisnicima na zaslonu "
488
- "pristanka."
489
-
490
- #: admin/partials/cookie-law-info-privacy_overview.php:61
491
- msgid "Save Settings"
492
- msgstr "Postavke su obnovljene"
493
-
494
- #: admin/views/admin-settings-advanced.php:9
495
- msgid ""
496
- "Sometimes themes apply settings that clash with plugins. If that happens, "
497
- "try adjusting these settings."
498
- msgstr ""
499
- "Ponekad teme primjenjuju postavke koje se sukobljavaju s dodatcima. Ako se "
500
- "to dogodi, pokušajte prilagoditi te postavke."
501
-
502
- #: admin/views/admin-settings-advanced.php:13
503
- msgid "Reset all values"
504
- msgstr "Sve postavite u početno stanje"
505
-
506
- #: admin/views/admin-settings-advanced.php:15
507
- msgid "Delete settings and reset"
508
- msgstr "Izbriši kolačiće"
509
-
510
- #: admin/views/admin-settings-advanced.php:15
511
- msgid "Are you sure you want to delete all your settings?"
512
- msgstr "Jeste li sigurni da želite izbrisati sve postavke?"
513
-
514
- #: admin/views/admin-settings-advanced.php:16
515
- msgid "Warning: this will actually delete your current settings."
516
- msgstr "Upozorenje: ovo će zapravo izbrisati vaše trenutne postavke."
517
-
518
- #: admin/views/admin-settings-buttons.php:10
519
- msgid "Accept Button"
520
- msgstr "Prihvati gumb"
521
-
522
- #: admin/views/admin-settings-buttons.php:11
523
- #: admin/views/admin-settings-buttons.php:93
524
- msgid "Reject Button"
525
- msgstr "Prihvati gumb"
526
-
527
- #: admin/views/admin-settings-buttons.php:12
528
- #: admin/views/admin-settings-buttons.php:163
529
- msgid "Settings Button"
530
- msgstr "Tipka Postavke"
531
-
532
- #: admin/views/admin-settings-buttons.php:13
533
- #: admin/views/admin-settings-buttons.php:206
534
- msgid "Read More Link"
535
- msgstr "Prikaži više"
536
-
537
- #: admin/views/admin-settings-buttons.php:14
538
- #: admin/views/admin-settings-buttons.php:326
539
- msgid "Do not sell link"
540
- msgstr "Ne prodajte vezu"
541
-
542
- #: admin/views/admin-settings-buttons.php:20
543
- msgid "Main Button"
544
- msgstr "Gumb"
545
-
546
- #: admin/views/admin-settings-buttons.php:21
547
- msgid ""
548
- "This button/link can be customised to either simply close the cookie bar, or "
549
- "follow a link. You can also customise the colours and styles, and show it as "
550
- "a link or a button."
551
- msgstr ""
552
- "Ovaj gumb / veza može se prilagoditi tako da jednostavno zatvorite traku "
553
- "kolačića ili slijedite vezu. Također možete prilagoditi boje i stilove i "
554
- "prikazati je kao vezu ili gumb."
555
-
556
- #: admin/views/admin-settings-buttons.php:24
557
- #: admin/views/admin-settings-buttons.php:96
558
- #: admin/views/admin-settings-buttons.php:166
559
- #: admin/views/admin-settings-buttons.php:220
560
- msgid "Text"
561
- msgstr "Tekst"
562
-
563
- #: admin/views/admin-settings-buttons.php:30
564
- #: admin/views/admin-settings-buttons.php:102
565
- #: admin/views/admin-settings-buttons.php:172
566
- #: admin/views/admin-settings-buttons.php:226
567
- #: admin/views/admin-settings-buttons.php:346
568
- msgid "Text colour"
569
- msgstr "Postavi boju teksta"
570
-
571
- #: admin/views/admin-settings-buttons.php:38
572
- #: admin/views/admin-settings-buttons.php:110
573
- #: admin/views/admin-settings-buttons.php:180
574
- #: admin/views/admin-settings-buttons.php:234
575
- #: admin/views/admin-settings-buttons.php:335
576
- msgid "Show as"
577
- msgstr "Ne prikazuj ponovo"
578
-
579
- #: admin/views/admin-settings-buttons.php:40
580
- #: admin/views/admin-settings-buttons.php:112
581
- #: admin/views/admin-settings-buttons.php:182
582
- #: admin/views/admin-settings-buttons.php:236
583
- msgid "Button"
584
- msgstr "Gumb"
585
-
586
- #: admin/views/admin-settings-buttons.php:42
587
- #: admin/views/admin-settings-buttons.php:114
588
- #: admin/views/admin-settings-buttons.php:184
589
- #: admin/views/admin-settings-buttons.php:238
590
- #: admin/views/admin-settings-buttons.php:337
591
- msgid "Link"
592
- msgstr "Poveznica"
593
-
594
- #: admin/views/admin-settings-buttons.php:46
595
- #: admin/views/admin-settings-buttons.php:118
596
- #: admin/views/admin-settings-buttons.php:188
597
- #: admin/views/admin-settings-buttons.php:242
598
- msgid "Background colour"
599
- msgstr "Pozadinska boja"
600
-
601
- #: admin/views/admin-settings-buttons.php:55
602
- #: admin/views/admin-settings-buttons.php:126
603
- msgid "Action"
604
- msgstr "Akcija"
605
-
606
- #: admin/views/admin-settings-buttons.php:63
607
- #: admin/views/admin-settings-buttons.php:138
608
- #: admin/views/admin-settings-buttons.php:253
609
- #: admin/views/admin-settings-buttons.php:260
610
- msgid "URL"
611
- msgstr "URL"
612
-
613
- #: admin/views/admin-settings-buttons.php:66
614
- #: admin/views/admin-settings-buttons.php:141
615
- msgid "Button will only link to URL if Action = Open URL"
616
- msgstr "Gumb će se povezati samo s URL-om ako je radnja = Otvori URL"
617
-
618
- #: admin/views/admin-settings-buttons.php:71
619
- #: admin/views/admin-settings-buttons.php:146
620
- msgid "Open URL in new window?"
621
- msgstr "Otvori u novom prozoru?"
622
-
623
- #: admin/views/admin-settings-buttons.php:73
624
- #: admin/views/admin-settings-buttons.php:148
625
- #: admin/views/admin-settings-buttons.php:304
626
- #: admin/views/admin-settings-buttons.php:311
627
- #: admin/views/admin-settings-general.php:38
628
- #: admin/views/admin-settings-general.php:54
629
- #: admin/views/admin-settings-general.php:74
630
- #: admin/views/admin-settings-general.php:82
631
- #: admin/views/admin-settings-general.php:89
632
- #: admin/views/admin-settings-messagebar.php:86
633
- #: admin/views/admin-settings-messagebar.php:110
634
- #: admin/views/admin_non_necessary_cookie.php:32
635
- msgid "Yes"
636
- msgstr "Da"
637
-
638
- #: admin/views/admin-settings-buttons.php:75
639
- #: admin/views/admin-settings-buttons.php:149
640
- #: admin/views/admin-settings-buttons.php:305
641
- #: admin/views/admin-settings-buttons.php:312
642
- #: admin/views/admin-settings-general.php:39
643
- #: admin/views/admin-settings-general.php:55
644
- #: admin/views/admin-settings-general.php:75
645
- #: admin/views/admin-settings-general.php:83
646
- #: admin/views/admin-settings-general.php:90
647
- #: admin/views/admin-settings-messagebar.php:87
648
- #: admin/views/admin-settings-messagebar.php:111
649
- #: admin/views/admin_non_necessary_cookie.php:33
650
- #: public/modules/script-blocker/views/settings.php:139
651
- msgid "No"
652
- msgstr "Ne"
653
-
654
- #: admin/views/admin-settings-buttons.php:82
655
- #: admin/views/admin-settings-buttons.php:153
656
- #: admin/views/admin-settings-buttons.php:196
657
- #: admin/views/admin-settings-buttons.php:316
658
- msgid "Size"
659
- msgstr "Veličina"
660
-
661
- #: admin/views/admin-settings-buttons.php:207
662
- msgid ""
663
- "This button/link can be used to provide a link out to your Privacy & Cookie "
664
- "Policy. You can customise it any way you like."
665
- msgstr ""
666
- "Ovaj gumb / veza može se koristiti za povezivanje s Vašom politikom "
667
- "privatnosti i kolačića. Možete ga prilagoditi na bilo koji način."
668
-
669
- #: admin/views/admin-settings-buttons.php:212
670
- msgid "Click"
671
- msgstr "Klik"
672
-
673
- #: admin/views/admin-settings-buttons.php:212
674
- msgid "here"
675
- msgstr "ovdje"
676
-
677
- #: admin/views/admin-settings-buttons.php:212
678
- msgid " to generate content for Cookie Policy page."
679
- msgstr " generirati sadržaj za stranicu Politike kolačića."
680
-
681
- #: admin/views/admin-settings-buttons.php:251
682
- msgid "URL or Page?"
683
- msgstr "URL ili stranicu?"
684
-
685
- #: admin/views/admin-settings-buttons.php:255
686
- #: admin/views/admin-settings-buttons.php:266
687
- msgid "Page"
688
- msgstr "Stranica"
689
-
690
- #: admin/views/admin-settings-buttons.php:269
691
- msgid "Select One"
692
- msgstr "Odaberi jedan"
693
-
694
- #: admin/views/admin-settings-buttons.php:294
695
- msgid "The currently selected page does not exist. Please select a new page."
696
- msgstr "Trenutno odabrana stranica ne postoji. Odaberite novu stranicu."
697
-
698
- #: admin/views/admin-settings-buttons.php:302
699
- msgid "Minimize Cookie Bar in this page/URL?"
700
- msgstr "Minimiziraj traku kolačića na ovoj stranici / URL-u?"
701
-
702
- #: admin/views/admin-settings-buttons.php:309
703
- msgid "Open in new window?"
704
- msgstr "Otvori u novom prozoru?"
705
-
706
- #: admin/views/admin-settings-buttons.php:329
707
- msgid "CCPA Text"
708
- msgstr "CCPA tekst"
709
-
710
- #: admin/views/admin-settings-buttons.php:338
711
- msgid "Checkbox"
712
- msgstr "Kvadratić"
713
-
714
- #: admin/views/admin-settings-buttons.php:340
715
- msgid "The shortcode will be represented as a link whereever used."
716
- msgstr ""
717
- "Kratki kôd bit će predstavljen kao veza bez obzira na to gdje se koristi."
718
-
719
- #: admin/views/admin-settings-buttons.php:341
720
- msgid ""
721
- "The shortcode will be represented as a checkbox with select option to record "
722
- "consent."
723
- msgstr ""
724
- "Kratki kôd bit će predstavljen kao potvrdni okvir s odabranom opcijom za "
725
- "snimanje pristanka."
726
-
727
- #: admin/views/admin-settings-general.php:17
728
- msgid "Enable cookie bar"
729
- msgstr "Omogući traku kolačića"
730
-
731
- #: admin/views/admin-settings-general.php:19
732
- msgid "On"
733
- msgstr "Dana"
734
-
735
- #: admin/views/admin-settings-general.php:20
736
- msgid "Off"
737
- msgstr "Isključeno"
738
-
739
- #: admin/views/admin-settings-general.php:36
740
- msgid "Auto-hide(Accept) cookie bar after delay?"
741
- msgstr "Automatsko skrivanje (prihvaćanje) trake kolačića nakon odgode?"
742
-
743
- #: admin/views/admin-settings-general.php:43
744
- msgid "Milliseconds until hidden"
745
- msgstr "Milisekunde dok se ne sakrije"
746
-
747
- #: admin/views/admin-settings-general.php:46
748
- msgid "Specify milliseconds (not seconds)"
749
- msgstr "Navedite milisekunde (ne sekunde)"
750
-
751
- #: admin/views/admin-settings-general.php:46
752
- msgid "seconds"
753
- msgstr "sekunde"
754
-
755
- #: admin/views/admin-settings-general.php:52
756
- msgid "Auto-hide cookie bar if the user scrolls ( Accept on Scroll )?"
757
- msgstr ""
758
- "Ako se korisnik pomiče (Prihvati na pomicanje), automatski skrij traku "
759
- "kolačića?"
760
-
761
- #: admin/views/admin-settings-general.php:56
762
- msgid ""
763
- "As per latest GDPR policies it is required to take an explicit consent for "
764
- "the cookies. Use this option with discretion especially if you serve EU"
765
- msgstr ""
766
- "Prema najnovijim pravilima GDPR-a potrebno je uzeti izričiti pristanak za "
767
- "kolačiće. Koristite ovu opciju s diskrecijom, pogotovo ako služite EU"
768
-
769
- #: admin/views/admin-settings-general.php:57
770
- msgid "This option will not work along with `Popup overlay`."
771
- msgstr "Ova opcija neće raditi zajedno s opcijom \"Popup overlay\"."
772
-
773
- #: admin/views/admin-settings-general.php:69
774
- msgid "Reload after \"scroll accept\" event?"
775
- msgstr "Ponovo učitati nakon događaja \"scroll accept\"?"
776
-
777
- #: admin/views/admin-settings-general.php:80
778
- msgid "Reload after Accept button click"
779
- msgstr "Ponovno učitavanje nakon što kliknete na gumb Prihvati"
780
-
781
- #: admin/views/admin-settings-general.php:87
782
- msgid "Reload after Reject button click"
783
- msgstr "Ponovno učitavanje nakon klika gumba Odbij"
784
-
785
- #: admin/views/admin-settings-help.php:9
786
- msgid "Shortcodes"
787
- msgstr "Rezervirano mjesto"
788
-
789
- #: admin/views/admin-settings-help.php:10
790
- #: admin/views/admin-settings-help.php:103
791
- msgid "Help Links"
792
- msgstr "Linkovi za pomoć"
793
-
794
- #: admin/views/admin-settings-help.php:16
795
- msgid "Cookie bar shortcodes"
796
- msgstr "Postavke kolačića"
797
-
798
- #: admin/views/admin-settings-help.php:17
799
- msgid ""
800
- "You can enter the shortcodes in the \"message\" field of the Cookie Law Info "
801
- "bar. They add nicely formatted buttons and/or links into the cookie bar, "
802
- "without you having to add any HTML."
803
- msgstr ""
804
- "Možete unijeti kratke kodove u polje \"poruka\" u traci informacija o zakonu "
805
- "Cookie. Oni dodaju lijepo oblikovane gumbe i / ili veze u traku s "
806
- "kolačićima, bez potrebe za dodavanjem bilo kojeg HTML-a."
807
-
808
- #: admin/views/admin-settings-help.php:22
809
- msgid "This is the \"main button\" you customise above."
810
- msgstr "Ovo je \"glavni gumb\" koji ste prilagodili gore."
811
-
812
- #: admin/views/admin-settings-help.php:26
813
- msgid "This is the cookie reject button shortcode."
814
- msgstr "This is the cookie reject button shortcode."
815
-
816
- #: admin/views/admin-settings-help.php:30
817
- msgid "This is the cookie settings button rendering shortcode."
818
- msgstr "Ovo je kratki kod prikaza gumba postavki kolačića."
819
-
820
- #: admin/views/admin-settings-help.php:33
821
- msgid "This is the \"read more\" link you customise above."
822
- msgstr "Ovo je veza \"više\" koju prilagodite gore."
823
-
824
- #: admin/views/admin-settings-help.php:36
825
- msgid "Setup margin for above buttons"
826
- msgstr "Postavljanje margine za gore navedene gumbe"
827
-
828
- #: admin/views/admin-settings-help.php:65
829
- msgid "Other shortcodes"
830
- msgstr "Ostali kratki kodovi"
831
-
832
- #: admin/views/admin-settings-help.php:66
833
- msgid ""
834
- "These shortcodes can be used in pages and posts on your website. It is not "
835
- "recommended to use these inside the cookie bar itself."
836
- msgstr ""
837
- "Ti se kratki kodovi mogu koristiti na stranicama i postovima na vašoj web-"
838
- "lokaciji. Nije preporučljivo koristiti ih u samoj traci kolačića."
839
-
840
- #: admin/views/admin-settings-help.php:72
841
- msgid ""
842
- "This prints out a nice table of cookies, in line with the guidance given by "
843
- "the ICO."
844
- msgstr "Time se ispisuje lijepa tablica kolačića, u skladu s uputama ICO-a."
845
-
846
- #: admin/views/admin-settings-help.php:72
847
- msgid ""
848
- "You need to enter the cookies your website uses via the Cookie Law Info menu "
849
- "in your WordPress dashboard."
850
- msgstr ""
851
- "Morate unijeti kolačiće koje web-lokacija koristi putem izbornika Cookie Law "
852
- "Info u vašoj WordPress nadzornoj ploči."
853
-
854
- #: admin/views/admin-settings-help.php:80
855
- msgid "Styles included"
856
- msgstr "Uključeni stilovi"
857
-
858
- #: admin/views/admin-settings-help.php:82
859
- msgid "Columns available"
860
- msgstr "Dostupni su stupci"
861
-
862
- #: admin/views/admin-settings-help.php:82
863
- msgid "Will print all columns by default."
864
- msgstr "Po zadanom će ispisati sve stupce."
865
-
866
- #: admin/views/admin-settings-help.php:86
867
- msgid ""
868
- "This shortcode will display a normal HTML link which when clicked, will "
869
- "delete the cookie set by Cookie Law Info (this cookie is used to remember "
870
- "that the cookie bar is closed)."
871
- msgstr ""
872
- "Ovaj kratki kôd prikazat će normalnu HTML vezu koja će, kada se klikne, "
873
- "izbrisati kolačić koji je postavio Cookie Law Info (ovaj kolačić se koristi "
874
- "za pamćenje da je traka kolačića zatvorena)."
875
-
876
- #: admin/views/admin-settings-help.php:90
877
- msgid ""
878
- "Add any text you like- useful if you want e.g. another language to English."
879
- msgstr "Dodajte bilo koji tekst - koristan ako želite npr. na drugi jezik."
880
-
881
- #: admin/views/admin-settings-help.php:94
882
- msgid "Add content after accepting the cookie notice."
883
- msgstr "Dodajte sadržaj nakon što prihvatite obavijest o kolačićima."
884
-
885
- #: admin/views/admin-settings-help.php:107
886
- #: admin/views/admin-settings-help.php:110 admin/views/goto-pro.php:103
887
- msgid "Documentation"
888
- msgstr "Dokumentacija"
889
-
890
- #: admin/views/admin-settings-help.php:108
891
- msgid "Refer to our documentation to set and get started"
892
- msgstr "Pogledajte našu dokumentaciju za"
893
-
894
- #: admin/views/admin-settings-help.php:115
895
- msgid "Help and Support"
896
- msgstr "Podrška"
897
-
898
- #: admin/views/admin-settings-help.php:116
899
- msgid "We would love to help you on any queries or issues."
900
- msgstr "Voljeli bismo vam pomoći u svim pitanjima ili pitanjima."
901
-
902
- #: admin/views/admin-settings-help.php:118
903
- msgid "Contact Us"
904
- msgstr "Kontaktirajte nas"
905
-
906
- #: admin/views/admin-settings-messagebar.php:9
907
- msgid "Cookie bar"
908
- msgstr "Kolačić s kolačićima"
909
-
910
- #: admin/views/admin-settings-messagebar.php:10
911
- #: admin/views/admin-settings-messagebar.php:145
912
- msgid "Revisit consent"
913
- msgstr "Ponovno posjetite pristanak"
914
-
915
- #: admin/views/admin-settings-messagebar.php:15
916
- msgid "Cookie Bar"
917
- msgstr "Kolačić"
918
-
919
- #: admin/views/admin-settings-messagebar.php:18
920
- msgid "Message Heading"
921
- msgstr "Naslov poruke"
922
-
923
- #: admin/views/admin-settings-messagebar.php:21
924
- msgid "Leave it blank, If you do not need a heading"
925
- msgstr "Ostavite ga praznim, ako vam ne treba naslov"
926
-
927
- #: admin/views/admin-settings-messagebar.php:26
928
- msgid "Message"
929
- msgstr "Poruka"
930
-
931
- #: admin/views/admin-settings-messagebar.php:32
932
- msgid "Shortcodes allowed: see the Help Guide tab"
933
- msgstr "Dopušteni kratki kodovi: pogledajte karticu Vodič za pomoć"
934
-
935
- #: admin/views/admin-settings-messagebar.php:32
936
- msgid ""
937
- "Examples: \"We use cookies on this website [cookie_accept] to find out how "
938
- "to delete cookies [cookie_link].\""
939
- msgstr ""
940
- "Primjeri: \"Kolačići koristimo na ovoj web stranici [cookie_accept] kako "
941
- "bismo saznali kako izbrisati kolačiće [cookie_link]\"."
942
-
943
- #: admin/views/admin-settings-messagebar.php:36
944
- msgid "Cookie Bar Colour"
945
- msgstr "Boja kolačića"
946
-
947
- #: admin/views/admin-settings-messagebar.php:46
948
- msgid "Text Colour"
949
- msgstr "Postavi boju teksta"
950
-
951
- #: admin/views/admin-settings-messagebar.php:55
952
- msgid "Font"
953
- msgstr "Font"
954
-
955
- #: admin/views/admin-settings-messagebar.php:63
956
- msgid "Show cookie bar as"
957
- msgstr "Prikaži traku kolačića kao"
958
-
959
- #: admin/views/admin-settings-messagebar.php:68
960
- msgid "Banner"
961
- msgstr "Zastava"
962
-
963
- #: admin/views/admin-settings-messagebar.php:69
964
- msgid "Popup"
965
- msgstr "Iskočiti"
966
-
967
- #: admin/views/admin-settings-messagebar.php:70
968
- msgid "Widget"
969
- msgstr "Widget"
970
-
971
- #: admin/views/admin-settings-messagebar.php:74
972
- msgid "Position"
973
- msgstr "Position"
974
-
975
- #: admin/views/admin-settings-messagebar.php:84
976
- msgid "Add overlay?"
977
- msgstr "Dodaj sloj?"
978
-
979
- #: admin/views/admin-settings-messagebar.php:88
980
- msgid ""
981
- "When the popup is active, an overlay will block the user from browsing the "
982
- "site."
983
- msgstr ""
984
- "Kada je skočni prozor aktivan, sloj će onemogućiti pregledavanje stranice."
985
-
986
- #: admin/views/admin-settings-messagebar.php:89
987
- msgid "`Accept on scroll` will not work along with this option."
988
- msgstr "`Prihvati na svitak` neće raditi zajedno s ovom opcijom."
989
-
990
- #: admin/views/admin-settings-messagebar.php:93
991
- msgid "Position:"
992
- msgstr "Položaj:"
993
-
994
- #: admin/views/admin-settings-messagebar.php:98
995
- msgid "Header"
996
- msgstr "Zaglavlje"
997
-
998
- #: admin/views/admin-settings-messagebar.php:99
999
- msgid "Footer"
1000
- msgstr "Footer"
1001
-
1002
- #: admin/views/admin-settings-messagebar.php:108
1003
- msgid "Fix Cookie Bar to Header?"
1004
- msgstr "Popraviti kolačić kolačića zaglavlju?"
1005
-
1006
- #: admin/views/admin-settings-messagebar.php:112
1007
- msgid ""
1008
- "If you select \"Header\" then you can optionally stick the cookie bar to the "
1009
- "header. Will not have any effect if you select \"Footer\"."
1010
- msgstr ""
1011
- "Ako odaberete \"Zaglavlje\", izbornu traku kolačića možete staviti u "
1012
- "zaglavlje. Neće imati nikakvog učinka ako odaberete \"Podnožje\"."
1013
-
1014
- #: admin/views/admin-settings-messagebar.php:120
1015
- msgid "On load"
1016
- msgstr "Hide Menu on Load"
1017
-
1018
- #: admin/views/admin-settings-messagebar.php:125
1019
- #: admin/views/admin-settings-messagebar.php:135
1020
- msgid "Animate"
1021
- msgstr "Animiraj"
1022
-
1023
- #: admin/views/admin-settings-messagebar.php:126
1024
- #: admin/views/admin-settings-messagebar.php:136
1025
- msgid "Sticky"
1026
- msgstr "Lepljivo"
1027
-
1028
- #: admin/views/admin-settings-messagebar.php:130
1029
- msgid "On hide"
1030
- msgstr "Na skrovištu"
1031
-
1032
- #: admin/views/admin-settings-messagebar.php:145
1033
- msgid "previously"
1034
- msgstr "prijašnji"
1035
-
1036
- #: admin/views/admin-settings-messagebar.php:145
1037
- msgid "Show again tab"
1038
- msgstr "Ne prikazuj ponovo"
1039
-
1040
- #: admin/views/admin-settings-messagebar.php:147
1041
- msgid ""
1042
- "Revisit consent will allow the visitors to view/edit/revoke their prior "
1043
- "preferences. This can be done via a widget and/or a shortcode. A small "
1044
- "privacy widget is automatically displayed at the footer of your website if "
1045
- "the widget option is enabled. You can also manually insert a link to manage "
1046
- "consent by adding the shortcode <b>[wt_cli_manage_consent]</b> to your "
1047
- "website."
1048
- msgstr ""
1049
- "Pristanak za ponovni posjet omogućit će posjetiteljima da pregledaju / "
1050
- "uređuju / opozivaju svoje prethodne postavke. To se može učiniti pomoću "
1051
- "widgeta i / ili kratkog koda. Mali widget za privatnost automatski se "
1052
- "prikazuje u podnožju vašeg web mjesta ako je opcija widgeta omogućena. "
1053
- "Također možete ručno umetnuti vezu za upravljanje pristankom dodavanjem "
1054
- "<b>kratkog koda [wt_cli_manage_consent]</b> na svoje web mjesto."
1055
-
1056
- #: admin/views/admin-settings-messagebar.php:152
1057
- msgid "Enable revisit consent widget"
1058
- msgstr "Omogućite ponovni posjet widgetu za pristanak"
1059
-
1060
- #: admin/views/admin-settings-messagebar.php:152
1061
- msgid ""
1062
- "By enabling this option a small privacy widget is automatically displayed at "
1063
- "the footer of your website."
1064
- msgstr ""
1065
- "Omogućavanjem ove opcije mali se widget za privatnost automatski prikazuje u "
1066
- "podnožju vašeg web mjesta."
1067
-
1068
- #: admin/views/admin-settings-messagebar.php:163
1069
- #: admin/views/admin-settings-messagebar.php:180
1070
- msgid "Tab Position"
1071
- msgstr "Pozicija"
1072
-
1073
- #: admin/views/admin-settings-messagebar.php:168
1074
- #: admin/views/admin-settings-messagebar.php:171
1075
- msgid "Right"
1076
- msgstr "Desno"
1077
-
1078
- #: admin/views/admin-settings-messagebar.php:169
1079
- #: admin/views/admin-settings-messagebar.php:172
1080
- msgid "Left"
1081
- msgstr "Lijevo"
1082
-
1083
- #: admin/views/admin-settings-messagebar.php:187
1084
- msgid "Bottom Right"
1085
- msgstr "Dolje desno"
1086
-
1087
- #: admin/views/admin-settings-messagebar.php:190
1088
- msgid "Bottom Left"
1089
- msgstr "Dole lijevo"
1090
-
1091
- #: admin/views/admin-settings-messagebar.php:193
1092
- msgid "Top Right"
1093
- msgstr "Gore desno"
1094
-
1095
- #: admin/views/admin-settings-messagebar.php:196
1096
- msgid "Top Left"
1097
- msgstr "Gore lijevo"
1098
-
1099
- #: admin/views/admin-settings-messagebar.php:203
1100
- msgid "From Right Margin"
1101
- msgstr "S desne margine"
1102
-
1103
- #: admin/views/admin-settings-messagebar.php:203
1104
- msgid "From Left Margin"
1105
- msgstr "Lijeva margina"
1106
-
1107
- #: admin/views/admin-settings-messagebar.php:206
1108
- msgid "Specify"
1109
- msgstr "Ukloni masku"
1110
-
1111
- #: admin/views/admin-settings-messagebar.php:215
1112
- #: admin/views/admin_necessary_cookie.php:33
1113
- #: admin/views/admin_non_necessary_cookie.php:48
1114
- msgid "Title"
1115
- msgstr "Naslov"
1116
-
1117
- #: admin/views/admin-settings-save-button.php:12
1118
- #: admin/views/admin_necessary_cookie.php:52
1119
- #: admin/views/admin_non_necessary_cookie.php:87
1120
- #: public/modules/script-blocker/script-blocker.php:219
1121
- msgid "Update Settings"
1122
- msgstr "Ažuriraj postavke"
1123
-
1124
- #: admin/views/admin_necessary_cookie.php:26
1125
- msgid "Necessary Cookie Settings"
1126
- msgstr "Potrebne postavke kolačića"
1127
-
1128
- #: admin/views/admin_non_necessary_cookie.php:23
1129
- msgid "Non-necessary Cookie Settings"
1130
- msgstr "Nepotrebne postavke kolačića"
1131
-
1132
- #: admin/views/admin_non_necessary_cookie.php:31
1133
- msgid "Enable Non-necessary Cookie"
1134
- msgstr "Omogući nepotrebni kolačić"
1135
-
1136
- #: admin/views/admin_non_necessary_cookie.php:38
1137
- msgid "Default state"
1138
- msgstr "Zadano stanje"
1139
-
1140
- #: admin/views/admin_non_necessary_cookie.php:39
1141
- #: public/modules/script-blocker/views/settings.php:141
1142
- #: public/views/cookie-law-info_popup_content.php:7
1143
- msgid "Enabled"
1144
- msgstr "Omogućeno"
1145
-
1146
- #: admin/views/admin_non_necessary_cookie.php:40
1147
- #: public/views/cookie-law-info_popup_content.php:8
1148
- msgid "Disabled"
1149
- msgstr "Onemogućeno"
1150
-
1151
- #: admin/views/admin_non_necessary_cookie.php:42
1152
- msgid ""
1153
- "If you enable this option, the category toggle button will be in the active "
1154
- "state for cookie consent."
1155
- msgstr ""
1156
- "Ako omogućite ovu opciju, gumb za uključivanje kategorije bit će u aktivnom "
1157
- "stanju radi pristanka kolačića."
1158
-
1159
- #: admin/views/admin_non_necessary_cookie.php:62
1160
- msgid ""
1161
- "This script will be added to the page HEAD section if the above settings is "
1162
- "enabled and user has give consent."
1163
- msgstr ""
1164
- "Ova skripta bit će dodana u stranicu HEAD, ako su gore navedene postavke "
1165
- "omogućene, a korisnik je dao svoj pristanak."
1166
-
1167
- #: admin/views/admin_non_necessary_cookie.php:67
1168
- msgid ""
1169
- "Print scripts in the head tag on the front end if above cookie settings is "
1170
- "enabled and user has given consent."
1171
- msgstr ""
1172
- "Ispisujte skripte u oznaku glave na prednjoj strani ako su gore navedene "
1173
- "postavke kolačića omogućene i korisnik je dao pristanak."
1174
-
1175
- #: admin/views/admin_non_necessary_cookie.php:74
1176
- msgid ""
1177
- "This script will be added right after the BODY section if the above settings "
1178
- "is enabled and user has given consent."
1179
- msgstr ""
1180
- "Ova skripta bit će dodana odmah nakon odjeljka BODY ako su gore navedene "
1181
- "postavke omogućene i korisnik je dao pristanak."
1182
-
1183
- #: admin/views/admin_non_necessary_cookie.php:77
1184
- msgid ""
1185
- "Print scripts before the closing body tag on the front end if above cookie "
1186
- "settings is enabled and user has given consent."
1187
- msgstr ""
1188
- "Ispisujte skripte ispred završne oznake tijela na prednjoj strani ako su "
1189
- "gore navedene postavke kolačića omogućene i korisnik je dao pristanak."
1190
-
1191
- #: admin/views/goto-pro.php:56
1192
- msgid "Where did my settings go?"
1193
- msgstr "Kamo su otišle moje postavke?"
1194
-
1195
- #: admin/views/goto-pro.php:57
1196
- msgid "Cookie Law Info version 0.9 has been updated and has new settings."
1197
- msgstr "Cookie Law Info verzija 0.9 je ažurirana i ima nove postavke."
1198
-
1199
- #: admin/views/goto-pro.php:57
1200
- msgid "Your previous settings are safe."
1201
- msgstr "Vaše prethodne postavke su sigurne."
1202
-
1203
- #: admin/views/goto-pro.php:58
1204
- msgid ""
1205
- "You can either copy over your old settings to this version, or use the new "
1206
- "default values."
1207
- msgstr ""
1208
- "Možete kopirati stare postavke na ovu verziju ili koristiti nove zadane "
1209
- "vrijednosti."
1210
-
1211
- #: admin/views/goto-pro.php:60
1212
- msgid "Would you like to:"
1213
- msgstr "Would you like to:"
1214
-
1215
- #: admin/views/goto-pro.php:62
1216
- msgid "Use previous settings"
1217
- msgstr "Koristite prethodne postavke"
1218
-
1219
- #: admin/views/goto-pro.php:63
1220
- msgid "Start afresh with the new version"
1221
- msgstr "Počnite iznova s ​​novom verzijom"
1222
-
1223
- #: admin/views/goto-pro.php:67
1224
- msgid ""
1225
- "If you want to go back to the previous version you can always download it "
1226
- "again from"
1227
- msgstr ""
1228
- "Ako se želite vratiti na prethodnu verziju, uvijek je možete ponovo preuzeti"
1229
-
1230
- #: admin/views/goto-pro.php:73
1231
- msgid "30 Day Money Back Guarantee"
1232
- msgstr "30-dnevno jamstvo povrata novca"
1233
-
1234
- #: admin/views/goto-pro.php:74
1235
- msgid "Fast and Superior Support"
1236
- msgstr "Brza i vrhunska podrška"
1237
-
1238
- #: admin/views/goto-pro.php:75
1239
- msgid "10X Powerful with GDPR Cookie Consent Features That Every Site Needs"
1240
- msgstr "10X Snažan s GDPR Cookie pristanak Značajke koje svaki site potrebe"
1241
-
1242
- #: admin/views/goto-pro.php:78
1243
- msgid "Upgrade to Premium"
1244
- msgstr "Nadogradite na Premium"
1245
-
1246
- #: admin/views/goto-pro.php:84
1247
- msgid "Automatic Cookie Scanner"
1248
- msgstr "Automatski skener kolačića"
1249
-
1250
- #: admin/views/goto-pro.php:85
1251
- msgid ""
1252
- "Auto block scripts - Google Analytics, Facebook Pixel, Google Tag Manager, "
1253
- "Hotjar Analytics, Google Publisher Tag, Youtube embed, Vimeo embed, Google "
1254
- "maps, Addthis widget, Sharethis widget, Twitter widget, Soundcloud embed, "
1255
- "Slideshare embed, Linkedin widget, Instagram embed, Pinterest widget"
1256
- msgstr ""
1257
- "Automatsko blokiranje skripti - Google Analytics, Facebook Pixel, Google "
1258
- "upravitelj oznaka, Hotjar Analytics, oznaka Googleovog izdavača, ugradnja na "
1259
- "Youtube, Vimeo ugrađivanje, Google karte, Addthis widget, Sharethis widget, "
1260
- "widget Twitter, Soundcloud embed , Pinterest widget"
1261
-
1262
- #: admin/views/goto-pro.php:86
1263
- msgid "Location based exclusion of cookie notice for EU countries"
1264
- msgstr ""
1265
- "Isključivanje obavijesti o kolačićima na temelju lokacije za zemlje EU-a"
1266
-
1267
- #: admin/views/goto-pro.php:87
1268
- msgid "Granular control over the cookies/scipts used by the website"
1269
- msgstr ""
1270
- "Granularna kontrola nad kolačićima / sciptima koje web-lokacija koristi"
1271
-
1272
- #: admin/views/goto-pro.php:88
1273
- msgid "User consent audit logs"
1274
- msgstr "Dnevnici revizije pristanka korisnika"
1275
-
1276
- #: admin/views/goto-pro.php:89
1277
- msgid "Customized privacy overview"
1278
- msgstr "Prilagođeni pregled privatnosti"
1279
-
1280
- #: admin/views/goto-pro.php:90
1281
- msgid "Cookie bar preview in admin settings page"
1282
- msgstr "Pregled kolačića na stranici postavki administratora"
1283
-
1284
- #: admin/views/goto-pro.php:91
1285
- msgid "Advanced support for cache plugins"
1286
- msgstr "Napredna podrška za dodatke za predmemoriju"
1287
-
1288
- #: admin/views/goto-pro.php:92
1289
- msgid "Cookie bar theme customizer for banner/ widgets/ popup"
1290
- msgstr "Cookie bar tema za prilagođavanje za banner / widgets / popup"
1291
-
1292
- #: admin/views/goto-pro.php:93
1293
- msgid "GDPR compliance with Google Tag Manager"
1294
- msgstr "GDPR usklađenost s Google Tag Manager-om"
1295
-
1296
- #: admin/views/goto-pro.php:94
1297
- msgid "Javascript helper functions"
1298
- msgstr "Pomoćne funkcije za Javascript"
1299
-
1300
- #: admin/views/goto-pro.php:108
1301
- msgid "Like this plugin?"
1302
- msgstr "Sviđa vam se ovaj dodatak?"
1303
-
1304
- #: admin/views/goto-pro.php:109
1305
- msgid "If you find this plugin useful please show your support and rate it"
1306
- msgstr ""
1307
- "Ako smatrate da je ovaj dodatak koristan, pokažite svoju podršku i ocijenite "
1308
- "ga"
1309
-
1310
- #: admin/views/goto-pro.php:109
1311
- msgid " on"
1312
- msgstr " od"
1313
-
1314
- #: admin/views/goto-pro.php:109
1315
- msgid " much appreciated!"
1316
- msgstr " mnogo poštovati!"
1317
-
1318
- #: cookie-law-info.php:80
1319
- msgid ""
1320
- "Please make sure the cache is cleared after each plugin update especially if "
1321
- "you have minified JS and/or CSS files."
1322
- msgstr ""
1323
- "Molimo provjerite je li predmemorija izbrisana nakon svakog ažuriranja "
1324
- "dodatka, posebno ako imate minificirane JS i / ili CSS datoteke."
1325
-
1326
- #: includes/class-cookie-law-info-review_request.php:52
1327
- #, php-format
1328
- msgid ""
1329
- "Hey, we at %sWebToffee%s would like to thank you for using our plugin. We "
1330
- "would really appreciate if you could take a moment to drop a quick review "
1331
- "that will inspire us to keep going."
1332
- msgstr ""
1333
- "Hej, mi na %sWebToffee% s želimo vam zahvaliti što koristite naš dodatak. "
1334
- "Zaista bismo bili zahvalni ako biste izdvojili trenutak i odustali od "
1335
- "kratkog pregleda koji će nas nadahnuti da nastavimo dalje."
1336
-
1337
- #: includes/class-cookie-law-info-review_request.php:55
1338
- msgid "Remind me later"
1339
- msgstr "Podsjeti me kasnije"
1340
-
1341
- #: includes/class-cookie-law-info-review_request.php:56
1342
- msgid "Not interested"
1343
- msgstr "Ne zanima me"
1344
-
1345
- #: includes/class-cookie-law-info-review_request.php:57
1346
- msgid "Review now"
1347
- msgstr "Pregledajte odmah"
1348
-
1349
- #: public/class-cookie-law-info-public.php:251
1350
- msgid "GDPR Cookie Consent"
1351
- msgstr "Omogući prijavu pristanka"
1352
-
1353
- #: public/class-cookie-law-info-public.php:252
1354
- msgid "Cookie List"
1355
- msgstr "Popis kolačića"
1356
-
1357
- #: public/class-cookie-law-info-public.php:253
1358
- #: public/modules/shortcode/shortcode.php:208
1359
- msgid "Cookie"
1360
- msgstr "Kolačić"
1361
-
1362
- #: public/class-cookie-law-info-public.php:254
1363
- msgid "Add New"
1364
- msgstr "Unesi nov"
1365
-
1366
- #: public/class-cookie-law-info-public.php:255
1367
- msgid "Add New Cookie Type"
1368
- msgstr "Dodati novi tip kolačića"
1369
-
1370
- #: public/class-cookie-law-info-public.php:256
1371
- msgid "Edit Cookie Type"
1372
- msgstr "Urediti novi tip kolačića"
1373
-
1374
- #: public/class-cookie-law-info-public.php:257
1375
- msgid "New Cookie Type"
1376
- msgstr "Novi tip kolačića"
1377
-
1378
- #: public/class-cookie-law-info-public.php:258
1379
- msgid "View Cookie Type"
1380
- msgstr "Pregledati tip kolačića"
1381
-
1382
- #: public/class-cookie-law-info-public.php:259
1383
- msgid "Search Cookies"
1384
- msgstr "Tražiti kolačiće"
1385
-
1386
- #: public/class-cookie-law-info-public.php:260
1387
- msgid "Nothing found"
1388
- msgstr "Ništa nije pronađeno"
1389
-
1390
- #: public/class-cookie-law-info-public.php:261
1391
- msgid "Nothing found in Trash"
1392
- msgstr "Ništa nije pronađeno u smeću"
1393
-
1394
- #: public/modules/script-blocker/script-blocker.php:156
1395
- #: public/modules/script-blocker/script-blocker.php:157
1396
- msgid "Script Blocker"
1397
- msgstr "Script Blocker"
1398
-
1399
- #: public/modules/script-blocker/script-blocker.php:182
1400
- msgid "Status updated"
1401
- msgstr "Status ažuriran"
1402
-
1403
- #: public/modules/script-blocker/script-blocker.php:206
1404
- msgid "Advanced script rendering"
1405
- msgstr "Napredno prikazivanje skripti"
1406
-
1407
- #: public/modules/script-blocker/script-blocker.php:208
1408
- #: public/modules/script-blocker/views/settings.php:7
1409
- msgid "Enable"
1410
- msgstr "Omogući"
1411
-
1412
- #: public/modules/script-blocker/script-blocker.php:209
1413
- #: public/modules/script-blocker/views/settings.php:7
1414
- msgid "Disable"
1415
- msgstr "Onemogući"
1416
-
1417
- #: public/modules/script-blocker/script-blocker.php:210
1418
- msgid ""
1419
- "Advanced script rendering will render the blocked scripts using javascript "
1420
- "thus eliminating the need for a page refresh. It is also optimized for "
1421
- "caching since there is no server-side processing after obtaining the consent."
1422
- msgstr ""
1423
- "Napredno prikazivanje skripti prikazat će blokirane skripte pomoću "
1424
- "javascripta, čime se eliminira potreba za osvježavanjem stranice. Također je "
1425
- "optimiziran za predmemoriranje jer nema obrade na strani poslužitelja nakon "
1426
- "dobivanja pristanka."
1427
-
1428
- #: public/modules/script-blocker/views/settings.php:9
1429
- msgid "Script blocker is enabled."
1430
- msgstr "Omogućen je blokator skripti."
1431
-
1432
- #: public/modules/script-blocker/views/settings.php:9
1433
- msgid ""
1434
- "Script blocker is currently disabled. Enable the blocker if you want any of "
1435
- "the below listed plugins to be auto blocked."
1436
- msgstr ""
1437
- "Blokator skripti trenutno je onemogućen. Omogućite bloker ako želite da se "
1438
- "bilo koji od dolje navedenih dodataka automatski blokira."
1439
-
1440
- #: public/modules/script-blocker/views/settings.php:10
1441
- #, php-format
1442
- msgid "<a href=\"javascript: submitform()\">%s</a>"
1443
- msgstr "<a href=\"javascript: submitform()\">%s</a>"
1444
-
1445
- #: public/modules/script-blocker/views/settings.php:14
1446
- #, php-format
1447
- msgid ""
1448
- "Advanced script rendering is currently disabled. It should be enabled for "
1449
- "the automatic script blocker to function. <a href=\"%s\">Enable.</a>"
1450
- msgstr ""
1451
- "Napredno prikazivanje skripti trenutno je onemogućeno. Trebao bi biti "
1452
- "omogućen za rad automatskog blokatora skripti. <a href=\"%s\">Omogućiti.</a>"
1453
-
1454
- #: public/modules/script-blocker/views/settings.php:113
1455
- msgid "Manage Script Blocking"
1456
- msgstr "Upravljanje blokiranjem skripti"
1457
-
1458
- #: public/modules/script-blocker/views/settings.php:134
1459
- #, php-format
1460
- msgid ""
1461
- "Below is the list of plugins currently supported for auto blocking. Plugins "
1462
- "marked inactive are either not installed or activated on your website. "
1463
- "Enabled plugins will be blocked by default on the front-end of your website "
1464
- "prior to obtaining user consent and rendered respectively based on consent. "
1465
- "<a href=\"%s\" target=\"_blank\">Read more.</a>"
1466
- msgstr ""
1467
- "Ispod je popis dodataka koji su trenutno podržani za automatsko blokiranje. "
1468
- "Dodaci označeni kao neaktivni ili nisu instalirani ili aktivirani na vašem "
1469
- "web mjestu. Omogućeni dodaci bit će prema zadanim postavkama blokirani na "
1470
- "prednjoj strani vašeg web mjesta prije dobivanja korisničkog pristanka i "
1471
- "generirani na temelju pristanka. <a href=\"%s\" target=\"_blank\">Čitaj više."
1472
- "</a>"
1473
-
1474
- #: public/modules/script-blocker/views/settings.php:140
1475
- msgid "Name"
1476
- msgstr "Nazivu"
1477
-
1478
- #: public/modules/script-blocker/views/settings.php:141
1479
- msgid ""
1480
- "Enabled: Plugins will be blocked by default prior to obtaining user consent."
1481
- msgstr ""
1482
- "Omogućeno: Dodaci će se prema zadanim postavkama blokirati prije dobivanja "
1483
- "korisničkog pristanka."
1484
-
1485
- #: public/modules/script-blocker/views/settings.php:141
1486
- msgid "Disabled: Plugins will be rendered prior to obtaining consent."
1487
- msgstr "Onemogućeno: dodaci će se prikazati prije dobivanja pristanka."
1488
-
1489
- #: public/modules/script-blocker/views/settings.php:175
1490
- msgid "Inactive"
1491
- msgstr "Neaktivno"
1492
-
1493
- #: public/modules/shortcode/shortcode.php:99
1494
- msgid "Your current state:"
1495
- msgstr "Vaše trenutno stanje:"
1496
-
1497
- #: public/modules/shortcode/shortcode.php:104
1498
- msgid "Consent accepted."
1499
- msgstr "Pristanak prihvaćen."
1500
-
1501
- #: public/modules/shortcode/shortcode.php:107
1502
- msgid "Consent rejected."
1503
- msgstr "Pristanak odbijen."
1504
-
1505
- #: public/modules/shortcode/shortcode.php:111
1506
- msgid "No consent given."
1507
- msgstr "Nema pristanka."
1508
-
1509
- #: public/modules/shortcode/shortcode.php:113
1510
- msgid "Manage your consent."
1511
- msgstr "Upravljajte svojim pristankom."
1512
-
1513
- #: public/modules/shortcode/shortcode.php:150
1514
- msgid "Delete Cookies"
1515
- msgstr "Izbriši kolačiće"
1516
-
1517
- #: public/modules/shortcode/shortcode.php:186
1518
- msgid "No records found"
1519
- msgstr "Nije pronađen nijedan zapis"
1520
-
1521
- #: public/modules/shortcode/shortcode.php:212
1522
- msgid "Type"
1523
- msgstr "Tip"
1524
-
1525
- #: public/modules/shortcode/shortcode.php:216
1526
- msgid "Duration"
1527
- msgstr "Trajanje"
1528
-
1529
- #: public/modules/shortcode/shortcode.php:533
1530
- msgid "Close the cookie bar"
1531
- msgstr "Zatvorite traku s kolačićima"
1532
-
1533
- #: public/modules/shortcode/shortcode.php:533
1534
- msgid "Close and Accept"
1535
- msgstr "Zatvori i prihvati"
1536
-
1537
- #: public/views/cookie-law-info_bar.php:23
1538
- msgid "Close"
1539
- msgstr "Zatvori"
1540
-
1541
- #: public/views/cookie-law-info_popup_content.php:6
1542
- msgid "Always Enabled"
1543
- msgstr "Uvijek omogućeno"
1544
-
1545
- #: public/views/cookie-law-info_popup_content.php:9
1546
- msgid "Show more"
1547
- msgstr "Prikaži više"
1548
-
1549
- #: public/views/cookie-law-info_popup_content.php:9
1550
- msgid "Show less"
1551
- msgstr "Prikaži manje"
1552
-
1553
- #~ msgid ""
1554
- #~ "Which plugin are you using for language translation? Could you tell us a "
1555
- #~ "bit more?"
1556
- #~ msgstr ""
1557
- #~ "Koji dodatak koristite za prijevod jezika? Možete li nam reći nešto više?"
1558
-
1559
- #~ msgid "Caching issues"
1560
- #~ msgstr "Problemi s predmemoriranjem"
1561
-
1562
- #~ msgid "Which caching plugin are you using? Could you tell us a bit more?"
1563
- #~ msgstr ""
1564
- #~ "Koji dodatak za predmemoriranje koristite? Možete li nam reći nešto više?"
1565
-
1566
- #~ msgid "Cookie Law Settings"
1567
- #~ msgstr "Postavke kolačića"
1568
-
1569
- #~ msgid "Show Again Tab"
1570
- #~ msgstr "Ne prikazuj ponovo"
1571
-
1572
- #~ msgid "Use Show Again Tab?"
1573
- #~ msgstr "Koristite karticu Ponovno prikazivanje?"
1574
-
1575
- #~ msgid "Show More Text"
1576
- #~ msgstr "Prikaži više"
1577
-
1578
- #~ msgid "Non-necessary Cookie"
1579
- #~ msgstr "Postavke kolačića"
1580
-
1581
- #~ msgid "Necessary Cookie"
1582
- #~ msgstr "Potreban kolačić"
1583
-
1584
- #~ msgid "Your Cookie Law Info bar is switched on"
1585
- #~ msgstr "Vaša Cookie Law Info bar je uključena"
1586
-
1587
- #~ msgid "Your Cookie Law Info bar is switched off"
1588
- #~ msgstr "Vaša Cookie Law Info bar je isključena"
1589
-
1590
- #~ msgid "Cookie Bar will be shown in:"
1591
- #~ msgstr "Cookie Bar će biti prikazan u:"
1592
-
1593
- #~ msgid "Disappear"
1594
- #~ msgstr "Nestati"
1595
-
1596
- #~ msgid "Show Border?"
1597
- #~ msgstr "Prikaži granicu?"
1598
-
1599
- #~ msgid "Border Colour"
1600
- #~ msgstr "Granična boja"
1601
-
1602
- #~ msgid "Message Bar"
1603
- #~ msgstr "Postavke kolačića"
1604
-
1605
- #, fuzzy
1606
- #~ msgid ""
1607
- #~ "Alternatively you can add a colour value. Choose from: red, blue, orange, "
1608
- #~ "yellow, green or pink."
1609
- #~ msgstr ""
1610
- #~ "Alternativno možete dodati vrijednost boje. Izaberite između: crvene, "
1611
- #~ "plave, narančaste, žute, zelene ili ružičaste boje."
1612
-
1613
- #~ msgid "Help"
1614
- #~ msgstr "Pomoć"
1615
-
1616
- #~ msgid "Report a Bug"
1617
- #~ msgstr "Prijavite bug"
1618
-
1619
- #~ msgid "Suggest a Feature"
1620
- #~ msgstr "Predloži značajku"
1621
-
1622
- #~ msgid "About the law"
1623
- #~ msgstr "Postavke kolačića"
1624
-
1625
- #~ msgid "Priority"
1626
- #~ msgstr "Prioritet"
1627
-
1628
- #~ msgid "Scan & Download"
1629
- #~ msgstr "Pokreni prijavnu ljusku"
1630
-
1631
- #~ msgid "Export Cookie"
1632
- #~ msgstr "Izvoz"
1633
-
1634
- #~ msgid "You do not have sufficient permissions to access this page."
1635
- #~ msgstr "Nema prava za pristup ovoj stranici."
1636
-
1637
- #~ msgid "Export as CSV file"
1638
- #~ msgstr "Izvezi CSV popis..."
1639
-
1640
- #~ msgid "Export"
1641
- #~ msgstr "Export"
1642
-
1643
- #~ msgid "Scan & Import"
1644
- #~ msgstr "& Uvezi"
1645
-
1646
- #~ msgid "Import Cookie"
1647
- #~ msgstr "Uvoz"
1648
-
1649
- #~ msgid "BEGIN %s"
1650
- #~ msgstr "Počni"
1651
-
1652
- #~ msgid "[Line %1$s] %2$s"
1653
- #~ msgstr "%1$s, %2$s"
1654
-
1655
- #~ msgid "Import from a CSV file"
1656
- #~ msgstr "Uvoz iz datoteke"
1657
-
1658
- #~ msgid "Error during file upload."
1659
- #~ msgstr "Pogreška pri kopiranju datoteke."
1660
-
1661
- #~ msgid "Post import was successful."
1662
- #~ msgstr "Uvoz pošte bio je uspješan."
1663
-
1664
- #~ msgid "CSV file"
1665
- #~ msgstr "CSV datoteka"
1666
-
1667
- #~ msgid "Import"
1668
- #~ msgstr "Uvezi"
1669
-
1670
- #~ msgid "Error processing migration request (ERROR: 4)"
1671
- #~ msgstr "Pogreška prilikom obrade zahtjeva za migraciju (ERROR: 4)"
1672
-
1673
- #~ msgid "Show only for EU Countries ( GeoIP )"
1674
- #~ msgstr "Prikaži samo za zemlje EU (GeoIP)"
1675
-
1676
- #~ msgid "Cookie Law Message Bar"
1677
- #~ msgstr "Postavke kolačića"
1678
-
1679
- #~ msgid "Link Text"
1680
- #~ msgstr "Tekst poveznice"
1681
-
1682
- #~ msgid "Open link in new window?"
1683
- #~ msgstr "Otvori poveznicu u novom prozoru"
1684
-
1685
- #~ msgid "Link colour"
1686
- #~ msgstr "BOJA"
1687
-
1688
- #~ msgid "Show as button?"
1689
- #~ msgstr "Prikaži kao popis"
1690
-
1691
- #~ msgid "Button colour"
1692
- #~ msgstr "Granična boja"
1693
-
1694
- #~ msgid "Button Size"
1695
- #~ msgstr "Gumb"
1696
-
1697
- #~ msgid "Guide"
1698
- #~ msgstr "Vodič"
1699
-
1700
- #~ msgid "Licence"
1701
- #~ msgstr "Licencija"
1702
-
1703
- #~ msgid "Licence Activation"
1704
- #~ msgstr "Aktivacija"
1705
-
1706
- #~ msgid "Licence Key"
1707
- #~ msgstr "Licencija"
1708
-
1709
- #~ msgid "Licence Email"
1710
- #~ msgstr "E-ADRESA"
1711
-
1712
- #~ msgid "Action is unknown."
1713
- #~ msgstr "poznat."
1714
-
1715
- #~ msgid "Category"
1716
- #~ msgstr "Kategorija "
1717
-
1718
- #~ msgid "Key"
1719
- #~ msgstr "Ključ"
1720
-
1721
- #~ msgid "No Consent History"
1722
- #~ msgstr "Nema povlastice za suglasnost"
1723
-
1724
- #~ msgid "IP Address"
1725
- #~ msgstr "IP adresa"
1726
-
1727
- #~ msgid "Visited Date"
1728
- #~ msgstr "Posjećeno"
1729
-
1730
- #~ msgid "User ID"
1731
- #~ msgstr "ID korisnika"
1732
-
1733
- #~ msgid "GDPR Consent History"
1734
- #~ msgstr "Omogući prijavu pristanka"
1735
-
1736
- #~ msgid "Export Report"
1737
- #~ msgstr "Izvoz izvješća"
1738
-
1739
- #~ msgid "Event Logged Successfully"
1740
- #~ msgstr "Događaj je prijavljen uspješno"
1741
-
1742
- #~ msgid "Logging is not enabled"
1743
- #~ msgstr "Omogući prijavu pristanka"
1744
-
1745
- #~ msgid "Consent Report"
1746
- #~ msgstr "Omogući prijavu pristanka"
1747
-
1748
- #, fuzzy
1749
- #~ msgid "Accept"
1750
- #~ msgstr "Prihvati"
1751
-
1752
- #, fuzzy
1753
- #~ msgid "Reject"
1754
- #~ msgstr "Uskrati"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/cookie-law-info-is_IS.mo DELETED
Binary file
languages/cookie-law-info-is_IS.po DELETED
@@ -1,1776 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: \n"
4
- "POT-Creation-Date: 2020-11-17 11:33+0530\n"
5
- "PO-Revision-Date: 2020-11-17 11:33+0530\n"
6
- "Last-Translator: \n"
7
- "Language-Team: \n"
8
- "Language: is\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.4.2\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
- "X-Poedit-KeywordsList: __;_e\n"
16
- "X-Poedit-SearchPath-0: .\n"
17
-
18
- #: admin/class-cookie-law-info-admin.php:147
19
- #: admin/class-cookie-law-info-admin.php:148
20
- #: admin/class-cookie-law-info-admin.php:247
21
- #: admin/partials/cookie-law-info-admin_settings.php:31
22
- msgid "Settings"
23
- msgstr "Stillingar"
24
-
25
- #: admin/class-cookie-law-info-admin.php:155
26
- #: admin/class-cookie-law-info-admin.php:156
27
- #: public/modules/script-blocker/views/settings.php:174
28
- #: public/views/cookie-law-info_popup_content.php:23
29
- msgid "Non-necessary"
30
- msgstr "Ekki nauðsynlegt"
31
-
32
- #: admin/class-cookie-law-info-admin.php:163
33
- #: admin/class-cookie-law-info-admin.php:164
34
- #: public/views/cookie-law-info_popup_content.php:22
35
- msgid "Necessary"
36
- msgstr "Nauðsynlegt"
37
-
38
- #: admin/class-cookie-law-info-admin.php:171
39
- #: admin/class-cookie-law-info-admin.php:172
40
- #: admin/partials/cookie-law-info-privacy_overview.php:25
41
- msgid "Privacy Overview"
42
- msgstr "Persónuupplýsingar Yfirlit"
43
-
44
- #: admin/class-cookie-law-info-admin.php:221
45
- #: admin/class-cookie-law-info-admin.php:276
46
- #: admin/class-cookie-law-info-admin.php:334
47
- #: admin/class-cookie-law-info-admin.php:378
48
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:22
49
- #: public/modules/script-blocker/script-blocker.php:133
50
- #: public/modules/script-blocker/script-blocker.php:173
51
- #: public/modules/script-blocker/script-blocker.php:310
52
- msgid "You do not have sufficient permission to perform this operation"
53
- msgstr "Þú hefur ekki nægilegt leyfi til að framkvæma þessa aðgerð"
54
-
55
- #: admin/class-cookie-law-info-admin.php:240
56
- #: admin/class-cookie-law-info-admin.php:306
57
- #: admin/class-cookie-law-info-admin.php:359
58
- #: admin/class-cookie-law-info-admin.php:403
59
- msgid "Settings Updated."
60
- msgstr "Stillingar Uppfærðar."
61
-
62
- #: admin/class-cookie-law-info-admin.php:248
63
- msgid "Support"
64
- msgstr "Stoð"
65
-
66
- #: admin/class-cookie-law-info-admin.php:249
67
- msgid "Premium Upgrade"
68
- msgstr "Premium Uppfærsla"
69
-
70
- #: admin/class-cookie-law-info-admin.php:418
71
- msgid "ERROR MIGRATING SETTINGS (ERROR: 2)"
72
- msgstr "ERROR MIGRATING SETTINGS (ERROR: 2)"
73
-
74
- #: admin/class-cookie-law-info-admin.php:436
75
- msgid "Cookie ID"
76
- msgstr "Cookie ID"
77
-
78
- #: admin/class-cookie-law-info-admin.php:437
79
- msgid "Cookie Type"
80
- msgstr "Kex gerð"
81
-
82
- #: admin/class-cookie-law-info-admin.php:438
83
- msgid "Cookie Duration"
84
- msgstr "Cookie Duration"
85
-
86
- #: admin/class-cookie-law-info-admin.php:439
87
- msgid "Cookie Sensitivity"
88
- msgstr "Næmni fyrir vafrakökum"
89
-
90
- #: admin/class-cookie-law-info-admin.php:689
91
- msgid "Close Header"
92
- msgstr "Loka fyrirsögn"
93
-
94
- #: admin/class-cookie-law-info-admin.php:693
95
- msgid "Open URL"
96
- msgstr "Opna vefslóð"
97
-
98
- #: admin/class-cookie-law-info-admin.php:706
99
- msgid "Extra Large"
100
- msgstr "Sérstaklega stórt"
101
-
102
- #: admin/class-cookie-law-info-admin.php:710
103
- msgid "Large"
104
- msgstr "Stórt"
105
-
106
- #: admin/class-cookie-law-info-admin.php:714
107
- msgid "Medium"
108
- msgstr "Miðlungs"
109
-
110
- #: admin/class-cookie-law-info-admin.php:718
111
- msgid "Small"
112
- msgstr "Lítið"
113
-
114
- #: admin/class-cookie-law-info-admin.php:732
115
- msgid "Default theme font"
116
- msgstr "Sjálfgefið þema letur"
117
-
118
- #: admin/class-cookie-law-info-admin.php:736
119
- msgid "Sans Serif"
120
- msgstr "Sans Serif"
121
-
122
- #: admin/class-cookie-law-info-admin.php:740
123
- msgid "Serif"
124
- msgstr "Serif"
125
-
126
- #: admin/class-cookie-law-info-admin.php:744
127
- msgid "Arial"
128
- msgstr "Arial"
129
-
130
- #: admin/class-cookie-law-info-admin.php:748
131
- msgid "Arial Black"
132
- msgstr "Arial Black"
133
-
134
- #: admin/class-cookie-law-info-admin.php:752
135
- msgid "Georgia, serif"
136
- msgstr "Georgia, serif"
137
-
138
- #: admin/class-cookie-law-info-admin.php:756
139
- msgid "Helvetica"
140
- msgstr "Helvetica"
141
-
142
- #: admin/class-cookie-law-info-admin.php:760
143
- msgid "Lucida"
144
- msgstr "Lucida"
145
-
146
- #: admin/class-cookie-law-info-admin.php:764
147
- msgid "Tahoma"
148
- msgstr "Tahoma"
149
-
150
- #: admin/class-cookie-law-info-admin.php:768
151
- msgid "Times New Roman"
152
- msgstr "Times New Roman"
153
-
154
- #: admin/class-cookie-law-info-admin.php:772
155
- msgid "Trebuchet"
156
- msgstr "Trebuchet"
157
-
158
- #: admin/class-cookie-law-info-admin.php:776
159
- msgid "Verdana"
160
- msgstr "Verdana"
161
-
162
- #: admin/modules/ccpa/ccpa.php:106
163
- msgid "Do you really wish to opt out?"
164
- msgstr "Viltu virkilega afþakka?"
165
-
166
- #: admin/modules/ccpa/ccpa.php:107
167
- msgid "Confirm"
168
- msgstr "Staðfesta"
169
-
170
- #: admin/modules/ccpa/ccpa.php:108
171
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:154
172
- msgid "Cancel"
173
- msgstr "Hætta við"
174
-
175
- #: admin/modules/ccpa/ccpa.php:145
176
- msgid "Select the type of law"
177
- msgstr "Veldu tegund laga"
178
-
179
- #: admin/modules/ccpa/ccpa.php:149
180
- msgid "GDPR"
181
- msgstr "GDPR"
182
-
183
- #: admin/modules/ccpa/ccpa.php:150 admin/modules/ccpa/ccpa.php:158
184
- msgid ""
185
- "Customize the buttons, notice, themes from the relevant tabs to setup your "
186
- "cookie notice accordingly."
187
- msgstr ""
188
- "Sérsníddu hnappana, taktu eftir, þemu frá viðeigandi flipum til að setja upp "
189
- "smákökutilkynninguna í samræmi við það."
190
-
191
- #: admin/modules/ccpa/ccpa.php:153
192
- msgid "CCPA"
193
- msgstr "CCPA"
194
-
195
- #: admin/modules/ccpa/ccpa.php:154
196
- msgid ""
197
- "Most of the customizations from the tabs for buttons, notice or themes are "
198
- "not relevant especially if you choose to not show the notice, except the Do "
199
- "not sell within the buttons."
200
- msgstr ""
201
- "Flestar aðlaganirnar á flipunum fyrir hnappa, tilkynningu eða þemu eru ekki "
202
- "viðeigandi sérstaklega ef þú velur að sýna ekki tilkynninguna, nema selja "
203
- "ekki innan hnappanna."
204
-
205
- #: admin/modules/ccpa/ccpa.php:157
206
- msgid "CCPA & GDPR"
207
- msgstr "CCPA & GDPR"
208
-
209
- #: admin/modules/ccpa/views/ccpa_settings.php:7
210
- msgid "CCPA Settings"
211
- msgstr "CCPA stillingar"
212
-
213
- #: admin/modules/ccpa/views/ccpa_settings.php:7
214
- msgid ""
215
- "The right to opt out in the California Consumer Privacy Act gives consumers "
216
- "the ability to direct a business not to sell their personal information to a "
217
- "third party. If the user considers to not sell their personal information, "
218
- "all the scripts related to the categories which are configured to sell "
219
- "personal information will be blocked. The DO NOT SELL option is facilitated "
220
- "via a shortcode [wt_cli_ccpa_optout]."
221
- msgstr ""
222
- "Rétturinn til að afþakka lög um neytendavernd í Kaliforníu veitir neytendum "
223
- "möguleika á að beina viðskiptum til að selja ekki persónulegar upplýsingar "
224
- "sínar til þriðja aðila. Ef notandi telur að selja ekki persónulegar "
225
- "upplýsingar sínar verður lokað fyrir öll forskriftir sem tengjast flokkunum "
226
- "sem eru búnir til að selja persónulegar upplýsingar. Ekki er hægt að selja "
227
- "valmöguleikann með stuttan kóða [wt_cli_ccpa_optout]."
228
-
229
- #: admin/modules/ccpa/views/ccpa_settings.php:10
230
- msgid "Enable CCPA ?"
231
- msgstr "Virkja CCPA?"
232
-
233
- #: admin/modules/ccpa/views/ccpa_settings.php:18
234
- msgid "Enable CCPA notice"
235
- msgstr "Virkja CCPA tilkynningu"
236
-
237
- #: admin/modules/ccpa/views/ccpa_settings.php:18
238
- msgid ""
239
- "Enabling the notice will display the banner with the relevant text as per "
240
- "your configuration. Use this option particularly to record prior consent "
241
- "from the website visitors."
242
- msgstr ""
243
- "Ef þú virkjar tilkynninguna mun borðið birtast með viðeigandi texta samkvæmt "
244
- "stillingum þínum. Notaðu þennan valmöguleika sérstaklega til að skrá "
245
- "fyrirfram samþykki gesta gesta."
246
-
247
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:26
248
- msgid "Unable to handle your request."
249
- msgstr "Ekki tókst að takast á við beiðnina þína."
250
-
251
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:96
252
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:130
253
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:132
254
- msgid "Error"
255
- msgstr "Villa"
256
-
257
- #: admin/modules/cli-policy-generator/classes/class-preview-page.php:27
258
- msgid "Cookie Policy"
259
- msgstr "Cookie Policy"
260
-
261
- #: admin/modules/cli-policy-generator/classes/class-preview-page.php:83
262
- msgid "Auto reload preview"
263
- msgstr "Sjálfvirk endurhlaða forskoðun"
264
-
265
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:106
266
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:107
267
- #: admin/modules/cli-policy-generator/views/policy-generator.php:21
268
- msgid "Policy generator"
269
- msgstr "Stefna rafall"
270
-
271
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:133
272
- msgid "Success"
273
- msgstr "Arangur"
274
-
275
- #: admin/modules/cli-policy-generator/views/policy-generator.php:25
276
- msgid "Sample heading"
277
- msgstr "Dæmi fyrirsögn"
278
-
279
- #: admin/modules/cli-policy-generator/views/policy-generator.php:26
280
- msgid "Sample content"
281
- msgstr "Dæmi um efni"
282
-
283
- #: admin/modules/cli-policy-generator/views/policy-generator.php:27
284
- msgid "Delete"
285
- msgstr "Eyða"
286
-
287
- #: admin/modules/cli-policy-generator/views/policy-generator.php:49
288
- msgid "Add new"
289
- msgstr "Bæta við"
290
-
291
- #: admin/modules/cli-policy-generator/views/policy-generator.php:53
292
- msgid "Heading"
293
- msgstr "Fyrirsögn"
294
-
295
- #: admin/modules/cli-policy-generator/views/policy-generator.php:57
296
- #: admin/views/admin_necessary_cookie.php:39
297
- #: admin/views/admin_non_necessary_cookie.php:54
298
- #: public/modules/script-blocker/views/settings.php:142
299
- #: public/modules/shortcode/shortcode.php:220
300
- msgid "Description"
301
- msgstr "Lýsing"
302
-
303
- #: admin/modules/cli-policy-generator/views/policy-generator.php:65
304
- msgid ""
305
- "Enabling this option will help us spread the word by placing a credit to "
306
- "WebToffee at the very end of the Cookie Policy page."
307
- msgstr ""
308
- "Ef þessi valkostur er virkur munum við hjálpa okkur að breiða út orðið með "
309
- "því að leggja fram kredit fyrir WebToffee í heild sinni á síðunni Cookie "
310
- "Policy."
311
-
312
- #: admin/modules/cli-policy-generator/views/policy-generator.php:82
313
- msgid "Update existing Cookie Policy page"
314
- msgstr "Uppfæra núverandi Cookie Policy síðu"
315
-
316
- #: admin/modules/cli-policy-generator/views/policy-generator.php:88
317
- msgid "Create Cookie Policy page"
318
- msgstr "Búðu til Cookie Policy síðu"
319
-
320
- #: admin/modules/cli-policy-generator/views/policy-generator.php:92
321
- msgid "Live preview"
322
- msgstr "Live sýnishorn"
323
-
324
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:43
325
- msgid "The plugin is complex to set up"
326
- msgstr "Viðbótin er flókin í uppsetningu"
327
-
328
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:45
329
- msgid "Please describe which area you are facing difficulties"
330
- msgstr "Vinsamlegast lýsið hvaða svæði þú ert að glíma við"
331
-
332
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:49
333
- msgid "I found a better plugin"
334
- msgstr "Ég fann betra viðbót"
335
-
336
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:51
337
- msgid "Which plugin?"
338
- msgstr "Hvaða viðbót?"
339
-
340
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:55
341
- msgid "The plugin is great, but I need specific feature that you don't support"
342
- msgstr "Viðbótin er frábær en ég þarf sérstakan eiginleika sem þú styður ekki"
343
-
344
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:57
345
- msgid "Could you tell us more about that feature?"
346
- msgstr "Gætirðu sagt okkur meira um þann eiginleika?"
347
-
348
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:61
349
- msgid "The plugin didn't work as expected"
350
- msgstr "Viðbótin virkaði ekki eins og búist var við"
351
-
352
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:63
353
- msgid "What did you expect?"
354
- msgstr "Við hverju bjóstu?"
355
-
356
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:67
357
- msgid "A conflict with another plugin or theme"
358
- msgstr "Átök við annað viðbót eða þema"
359
-
360
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:69
361
- msgid "Which plugin or theme?"
362
- msgstr "Hvaða viðbót eða þema?"
363
-
364
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:73
365
- msgid "Translation issues"
366
- msgstr "Þýðingarmál"
367
-
368
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:77
369
- msgid "Incorrect/missing translation"
370
- msgstr "Rangt / vantar þýðingu"
371
-
372
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:79
373
- msgid "Name the language"
374
- msgstr "Nefndu tungumálið"
375
-
376
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:83
377
- msgid ""
378
- "Unable to translate my dynamic content e.g, cookie message, button text etc"
379
- msgstr ""
380
- "Ekki er hægt að þýða kraftmikið efni mitt, td, smákökuskilaboð, hnappatexta "
381
- "osfrv"
382
-
383
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:85
384
- msgid "Name the language and the translator plugin that you are using"
385
- msgstr "Nefndu tungumálið og þýðandi viðbótina sem þú notar"
386
-
387
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:91
388
- msgid "Upgrade to pro"
389
- msgstr "Uppfærðu í atvinnumann"
390
-
391
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:95
392
- #: admin/views/admin-settings-general.php:10
393
- #: admin/views/admin-settings-general.php:66
394
- msgid "Other"
395
- msgstr "Annað"
396
-
397
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:97
398
- msgid "Could you tell us a bit more?"
399
- msgstr "Gætirðu sagt okkur aðeins meira?"
400
-
401
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:117
402
- msgid "If you have a moment, please let us know why you are deactivating:"
403
- msgstr ""
404
- "Ef þú hefur augnablik, vinsamlegast láttu okkur vita af hverju þú ert að "
405
- "gera óvirk:"
406
-
407
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:144
408
- msgid ""
409
- "We do not collect any personal data when you submit this form. It's your "
410
- "feedback that we value."
411
- msgstr ""
412
- "Við söfnum engum persónulegum gögnum þegar þú sendir þetta form. Það er þitt "
413
- "álit sem við metum mikils."
414
-
415
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:145
416
- msgid "Privacy Policy"
417
- msgstr "Persónuverndarstefna"
418
-
419
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:152
420
- msgid "Go to support"
421
- msgstr "Farðu til stuðnings"
422
-
423
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:153
424
- msgid "Submit & Deactivate"
425
- msgstr "Senda og gera óvirkt"
426
-
427
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:155
428
- msgid "I rather wouldn't say"
429
- msgstr "Ég myndi frekar ekki segja það"
430
-
431
- #: admin/partials/cookie-law-info-admin_settings.php:25
432
- #: admin/views/admin_necessary_cookie.php:20
433
- #: admin/views/admin_non_necessary_cookie.php:17
434
- msgid "Settings updated."
435
- msgstr "Stillingar Uppfærðar."
436
-
437
- #: admin/partials/cookie-law-info-admin_settings.php:26
438
- #: admin/views/admin_necessary_cookie.php:21
439
- #: admin/views/admin_non_necessary_cookie.php:18
440
- msgid "Unable to update Settings."
441
- msgstr "Ekki er hægt að uppfæra stillingar."
442
-
443
- #: admin/partials/cookie-law-info-admin_settings.php:27
444
- msgid "Settings reset to defaults."
445
- msgstr "Stillingar endurstilla á vanskilum."
446
-
447
- #: admin/partials/cookie-law-info-admin_settings.php:28
448
- msgid "Unable to reset settings."
449
- msgstr "Ekki er hægt að endurstilla stillingar."
450
-
451
- #: admin/partials/cookie-law-info-admin_settings.php:39
452
- msgid "Cookie bar is currently active"
453
- msgstr "Fótspor er nú virk"
454
-
455
- #: admin/partials/cookie-law-info-admin_settings.php:47
456
- msgid "Cookie bar is currently inactive"
457
- msgstr "Kökubar er sem stendur óvirkt"
458
-
459
- #: admin/partials/cookie-law-info-admin_settings.php:57
460
- #: admin/views/admin-settings-general.php:9
461
- msgid "General"
462
- msgstr "Almennt"
463
-
464
- #: admin/partials/cookie-law-info-admin_settings.php:58
465
- msgid "Customise Cookie Bar"
466
- msgstr "Sérsníða Cookie Bar"
467
-
468
- #: admin/partials/cookie-law-info-admin_settings.php:59
469
- msgid "Customise Buttons"
470
- msgstr "Hnappar"
471
-
472
- #: admin/partials/cookie-law-info-admin_settings.php:60
473
- #: admin/views/admin-settings-advanced.php:8
474
- msgid "Advanced"
475
- msgstr "Flókin"
476
-
477
- #: admin/partials/cookie-law-info-admin_settings.php:61
478
- msgid "Help Guide"
479
- msgstr "Hjálpargögn"
480
-
481
- #: admin/partials/cookie-law-info-privacy_overview.php:32
482
- msgid "Privacy Overview Title"
483
- msgstr "Persónuvernd Yfirlit Titill"
484
-
485
- #: admin/partials/cookie-law-info-privacy_overview.php:38
486
- #: admin/partials/cookie-law-info-privacy_overview.php:53
487
- msgid "This will be shown in the settings visible for user on consent screen."
488
- msgstr ""
489
- "Þetta mun birtast í stillingum sem eru sýnilegar fyrir notanda á "
490
- "samþykkisskjánum."
491
-
492
- #: admin/partials/cookie-law-info-privacy_overview.php:61
493
- msgid "Save Settings"
494
- msgstr "Vista stillingar"
495
-
496
- #: admin/views/admin-settings-advanced.php:9
497
- msgid ""
498
- "Sometimes themes apply settings that clash with plugins. If that happens, "
499
- "try adjusting these settings."
500
- msgstr ""
501
- "Stundum gilda þemu um stillingar sem stangast á við viðbætur. Ef það gerist "
502
- "skaltu reyna að breyta þessum stillingum."
503
-
504
- #: admin/views/admin-settings-advanced.php:13
505
- msgid "Reset all values"
506
- msgstr "Endurstilla allar gildin"
507
-
508
- #: admin/views/admin-settings-advanced.php:15
509
- msgid "Delete settings and reset"
510
- msgstr "Eyða stillingum og endurstilla"
511
-
512
- #: admin/views/admin-settings-advanced.php:15
513
- msgid "Are you sure you want to delete all your settings?"
514
- msgstr "Ertu viss um að þú viljir eyða öllum þínum stillingum?"
515
-
516
- #: admin/views/admin-settings-advanced.php:16
517
- msgid "Warning: this will actually delete your current settings."
518
- msgstr "Viðvörun: Þetta mun í raun eyða núverandi stillingum."
519
-
520
- #: admin/views/admin-settings-buttons.php:10
521
- msgid "Accept Button"
522
- msgstr "Hnappur"
523
-
524
- #: admin/views/admin-settings-buttons.php:11
525
- #: admin/views/admin-settings-buttons.php:93
526
- msgid "Reject Button"
527
- msgstr "Hafna hnappi"
528
-
529
- #: admin/views/admin-settings-buttons.php:12
530
- #: admin/views/admin-settings-buttons.php:163
531
- msgid "Settings Button"
532
- msgstr "Stillingar"
533
-
534
- #: admin/views/admin-settings-buttons.php:13
535
- #: admin/views/admin-settings-buttons.php:206
536
- msgid "Read More Link"
537
- msgstr "Sjá Meira"
538
-
539
- #: admin/views/admin-settings-buttons.php:14
540
- #: admin/views/admin-settings-buttons.php:326
541
- msgid "Do not sell link"
542
- msgstr "Ekki selja hlekk"
543
-
544
- #: admin/views/admin-settings-buttons.php:20
545
- msgid "Main Button"
546
- msgstr "Hnappur"
547
-
548
- #: admin/views/admin-settings-buttons.php:21
549
- msgid ""
550
- "This button/link can be customised to either simply close the cookie bar, or "
551
- "follow a link. You can also customise the colours and styles, and show it as "
552
- "a link or a button."
553
- msgstr ""
554
- "Þessi hnappur / hlekkur er hægt að aðlaga til að annaðhvort einfaldlega loka "
555
- "kexbarninu eða fylgja tengli. Þú getur einnig sérsniðið liti og stíl og sýnt "
556
- "það sem tengil eða hnapp."
557
-
558
- #: admin/views/admin-settings-buttons.php:24
559
- #: admin/views/admin-settings-buttons.php:96
560
- #: admin/views/admin-settings-buttons.php:166
561
- #: admin/views/admin-settings-buttons.php:220
562
- msgid "Text"
563
- msgstr "Tenglatexti"
564
-
565
- #: admin/views/admin-settings-buttons.php:30
566
- #: admin/views/admin-settings-buttons.php:102
567
- #: admin/views/admin-settings-buttons.php:172
568
- #: admin/views/admin-settings-buttons.php:226
569
- #: admin/views/admin-settings-buttons.php:346
570
- msgid "Text colour"
571
- msgstr "Litur"
572
-
573
- #: admin/views/admin-settings-buttons.php:38
574
- #: admin/views/admin-settings-buttons.php:110
575
- #: admin/views/admin-settings-buttons.php:180
576
- #: admin/views/admin-settings-buttons.php:234
577
- #: admin/views/admin-settings-buttons.php:335
578
- msgid "Show as"
579
- msgstr "Sýna sem"
580
-
581
- #: admin/views/admin-settings-buttons.php:40
582
- #: admin/views/admin-settings-buttons.php:112
583
- #: admin/views/admin-settings-buttons.php:182
584
- #: admin/views/admin-settings-buttons.php:236
585
- msgid "Button"
586
- msgstr "Hnappur"
587
-
588
- #: admin/views/admin-settings-buttons.php:42
589
- #: admin/views/admin-settings-buttons.php:114
590
- #: admin/views/admin-settings-buttons.php:184
591
- #: admin/views/admin-settings-buttons.php:238
592
- #: admin/views/admin-settings-buttons.php:337
593
- msgid "Link"
594
- msgstr "Tengill"
595
-
596
- #: admin/views/admin-settings-buttons.php:46
597
- #: admin/views/admin-settings-buttons.php:118
598
- #: admin/views/admin-settings-buttons.php:188
599
- #: admin/views/admin-settings-buttons.php:242
600
- msgid "Background colour"
601
- msgstr "Bakgrunslitur"
602
-
603
- #: admin/views/admin-settings-buttons.php:55
604
- #: admin/views/admin-settings-buttons.php:126
605
- msgid "Action"
606
- msgstr "Aðgerð"
607
-
608
- #: admin/views/admin-settings-buttons.php:63
609
- #: admin/views/admin-settings-buttons.php:138
610
- #: admin/views/admin-settings-buttons.php:253
611
- #: admin/views/admin-settings-buttons.php:260
612
- msgid "URL"
613
- msgstr "Vefslóð"
614
-
615
- #: admin/views/admin-settings-buttons.php:66
616
- #: admin/views/admin-settings-buttons.php:141
617
- msgid "Button will only link to URL if Action = Open URL"
618
- msgstr "Hnappur mun aðeins tengjast URL ef aðgerð = Opna vefslóð"
619
-
620
- #: admin/views/admin-settings-buttons.php:71
621
- #: admin/views/admin-settings-buttons.php:146
622
- msgid "Open URL in new window?"
623
- msgstr "Opnaðu slóðina í nýjum glugga?"
624
-
625
- #: admin/views/admin-settings-buttons.php:73
626
- #: admin/views/admin-settings-buttons.php:148
627
- #: admin/views/admin-settings-buttons.php:304
628
- #: admin/views/admin-settings-buttons.php:311
629
- #: admin/views/admin-settings-general.php:38
630
- #: admin/views/admin-settings-general.php:54
631
- #: admin/views/admin-settings-general.php:74
632
- #: admin/views/admin-settings-general.php:82
633
- #: admin/views/admin-settings-general.php:89
634
- #: admin/views/admin-settings-messagebar.php:86
635
- #: admin/views/admin-settings-messagebar.php:110
636
- #: admin/views/admin_non_necessary_cookie.php:32
637
- msgid "Yes"
638
- msgstr "Já"
639
-
640
- #: admin/views/admin-settings-buttons.php:75
641
- #: admin/views/admin-settings-buttons.php:149
642
- #: admin/views/admin-settings-buttons.php:305
643
- #: admin/views/admin-settings-buttons.php:312
644
- #: admin/views/admin-settings-general.php:39
645
- #: admin/views/admin-settings-general.php:55
646
- #: admin/views/admin-settings-general.php:75
647
- #: admin/views/admin-settings-general.php:83
648
- #: admin/views/admin-settings-general.php:90
649
- #: admin/views/admin-settings-messagebar.php:87
650
- #: admin/views/admin-settings-messagebar.php:111
651
- #: admin/views/admin_non_necessary_cookie.php:33
652
- #: public/modules/script-blocker/views/settings.php:139
653
- msgid "No"
654
- msgstr "Nei"
655
-
656
- #: admin/views/admin-settings-buttons.php:82
657
- #: admin/views/admin-settings-buttons.php:153
658
- #: admin/views/admin-settings-buttons.php:196
659
- #: admin/views/admin-settings-buttons.php:316
660
- msgid "Size"
661
- msgstr "Stærð"
662
-
663
- #: admin/views/admin-settings-buttons.php:207
664
- msgid ""
665
- "This button/link can be used to provide a link out to your Privacy & Cookie "
666
- "Policy. You can customise it any way you like."
667
- msgstr ""
668
- "Þessi hnappur / hlekkur er hægt að nota til að bjóða upp á tengil á "
669
- "persónuvernd og smákökum. Þú getur sérsniðið það eins og þú vilt."
670
-
671
- #: admin/views/admin-settings-buttons.php:212
672
- msgid "Click"
673
- msgstr "Smellur"
674
-
675
- #: admin/views/admin-settings-buttons.php:212
676
- msgid "here"
677
- msgstr "hér"
678
-
679
- #: admin/views/admin-settings-buttons.php:212
680
- msgid " to generate content for Cookie Policy page."
681
- msgstr " til að búa til efni fyrir síðu Cookie Policy."
682
-
683
- #: admin/views/admin-settings-buttons.php:251
684
- msgid "URL or Page?"
685
- msgstr "URL eða síðu?"
686
-
687
- #: admin/views/admin-settings-buttons.php:255
688
- #: admin/views/admin-settings-buttons.php:266
689
- msgid "Page"
690
- msgstr "Síða"
691
-
692
- #: admin/views/admin-settings-buttons.php:269
693
- msgid "Select One"
694
- msgstr "Veldu einn"
695
-
696
- #: admin/views/admin-settings-buttons.php:294
697
- msgid "The currently selected page does not exist. Please select a new page."
698
- msgstr "Núverandi síða er ekki til. Vinsamlegast veldu nýja síðu."
699
-
700
- #: admin/views/admin-settings-buttons.php:302
701
- msgid "Minimize Cookie Bar in this page/URL?"
702
- msgstr "Minnka kökuborð á þessari síðu / vefslóð?"
703
-
704
- #: admin/views/admin-settings-buttons.php:309
705
- msgid "Open in new window?"
706
- msgstr "Opnaðu í nýjum glugga?"
707
-
708
- #: admin/views/admin-settings-buttons.php:329
709
- msgid "CCPA Text"
710
- msgstr "CCPA texti"
711
-
712
- #: admin/views/admin-settings-buttons.php:338
713
- msgid "Checkbox"
714
- msgstr "Hak"
715
-
716
- #: admin/views/admin-settings-buttons.php:340
717
- msgid "The shortcode will be represented as a link whereever used."
718
- msgstr "Stutkóðinn verður fulltrúi sem hlekkur hvar sem er notaður."
719
-
720
- #: admin/views/admin-settings-buttons.php:341
721
- msgid ""
722
- "The shortcode will be represented as a checkbox with select option to record "
723
- "consent."
724
- msgstr ""
725
- "Styttingarkóðinn verður fulltrúi sem gátreitur með valinn möguleika til að "
726
- "skrá samþykki."
727
-
728
- #: admin/views/admin-settings-general.php:17
729
- msgid "Enable cookie bar"
730
- msgstr "Virkja vafrakökur"
731
-
732
- #: admin/views/admin-settings-general.php:19
733
- msgid "On"
734
- msgstr "Virkt"
735
-
736
- #: admin/views/admin-settings-general.php:20
737
- msgid "Off"
738
- msgstr "Af"
739
-
740
- #: admin/views/admin-settings-general.php:36
741
- msgid "Auto-hide(Accept) cookie bar after delay?"
742
- msgstr "Sjálfkrafa (Accept) kexbar eftir tafar?"
743
-
744
- #: admin/views/admin-settings-general.php:43
745
- msgid "Milliseconds until hidden"
746
- msgstr "Millisekúndur þar til hann er falinn"
747
-
748
- #: admin/views/admin-settings-general.php:46
749
- msgid "Specify milliseconds (not seconds)"
750
- msgstr "Tilgreindu millisekúndur (ekki sekúndur)"
751
-
752
- #: admin/views/admin-settings-general.php:46
753
- msgid "seconds"
754
- msgstr "sekúndur"
755
-
756
- #: admin/views/admin-settings-general.php:52
757
- msgid "Auto-hide cookie bar if the user scrolls ( Accept on Scroll )?"
758
- msgstr "Sjálfkrafa köku bar ef notandi rollar (Accept on Scroll)?"
759
-
760
- #: admin/views/admin-settings-general.php:56
761
- msgid ""
762
- "As per latest GDPR policies it is required to take an explicit consent for "
763
- "the cookies. Use this option with discretion especially if you serve EU"
764
- msgstr ""
765
- "Samkvæmt nýjustu GDPR stefnu er nauðsynlegt að taka skýrt samþykki fyrir "
766
- "smákökum. Notaðu þennan möguleika með valdi, sérstaklega ef þú þjónar ESB"
767
-
768
- #: admin/views/admin-settings-general.php:57
769
- msgid "This option will not work along with `Popup overlay`."
770
- msgstr "Þessi valkostur mun ekki virka með `Popup overlay`."
771
-
772
- #: admin/views/admin-settings-general.php:69
773
- msgid "Reload after \"scroll accept\" event?"
774
- msgstr "Endurhlaða eftir \"skruna samþykkja\" atburði?"
775
-
776
- #: admin/views/admin-settings-general.php:80
777
- msgid "Reload after Accept button click"
778
- msgstr "Endurhlaða eftir Samþykkja hnappinn smellur"
779
-
780
- #: admin/views/admin-settings-general.php:87
781
- msgid "Reload after Reject button click"
782
- msgstr "Endurhlaða eftir Hætta við hnappinn"
783
-
784
- #: admin/views/admin-settings-help.php:9
785
- msgid "Shortcodes"
786
- msgstr "Skammstafanir"
787
-
788
- #: admin/views/admin-settings-help.php:10
789
- #: admin/views/admin-settings-help.php:103
790
- msgid "Help Links"
791
- msgstr "Hjálp Tenglar"
792
-
793
- #: admin/views/admin-settings-help.php:16
794
- msgid "Cookie bar shortcodes"
795
- msgstr "Smákökum fyrir smákökur"
796
-
797
- #: admin/views/admin-settings-help.php:17
798
- msgid ""
799
- "You can enter the shortcodes in the \"message\" field of the Cookie Law Info "
800
- "bar. They add nicely formatted buttons and/or links into the cookie bar, "
801
- "without you having to add any HTML."
802
- msgstr ""
803
- "Þú getur slegið inn skammstafana í \"skilaboðasvæðinu\" í upplýsingalistanum "
804
- "fyrir smákökurétt. Þeir bæta við fallega sniðnum hnöppum og / eða tenglum "
805
- "inn í smákökuborðið, án þess að þurfa að bæta við neinum HTML."
806
-
807
- #: admin/views/admin-settings-help.php:22
808
- msgid "This is the \"main button\" you customise above."
809
- msgstr "Þetta er \"aðalhnappur\" sem þú sérsniðir hér að ofan."
810
-
811
- #: admin/views/admin-settings-help.php:26
812
- msgid "This is the cookie reject button shortcode."
813
- msgstr "Þetta er smákóðun smákökunarhnappsins."
814
-
815
- #: admin/views/admin-settings-help.php:30
816
- msgid "This is the cookie settings button rendering shortcode."
817
- msgstr ""
818
- "Þetta er stillingarhnappurinn fyrir smákökur sem gefur til kynna "
819
- "skammstafanir."
820
-
821
- #: admin/views/admin-settings-help.php:33
822
- msgid "This is the \"read more\" link you customise above."
823
- msgstr "Þetta er \"lesa meira\" tengilinn sem þú sérsníður hér að ofan."
824
-
825
- #: admin/views/admin-settings-help.php:36
826
- msgid "Setup margin for above buttons"
827
- msgstr "Uppsetningarmörk fyrir ofan hnappa"
828
-
829
- #: admin/views/admin-settings-help.php:65
830
- msgid "Other shortcodes"
831
- msgstr "Annað"
832
-
833
- #: admin/views/admin-settings-help.php:66
834
- msgid ""
835
- "These shortcodes can be used in pages and posts on your website. It is not "
836
- "recommended to use these inside the cookie bar itself."
837
- msgstr ""
838
- "Þessar skammstafanir má nota á síðum og færslum á vefsíðunni þinni. Ekki er "
839
- "mælt með því að nota þetta innan kökubarna sjálfs."
840
-
841
- #: admin/views/admin-settings-help.php:72
842
- msgid ""
843
- "This prints out a nice table of cookies, in line with the guidance given by "
844
- "the ICO."
845
- msgstr ""
846
- "Þetta prentar út gott borð af smákökum, í samræmi við leiðbeiningar ICO."
847
-
848
- #: admin/views/admin-settings-help.php:72
849
- msgid ""
850
- "You need to enter the cookies your website uses via the Cookie Law Info menu "
851
- "in your WordPress dashboard."
852
- msgstr ""
853
- "Þú þarft að slá inn smákökur sem vefsvæðið þitt notar í gegnum Cookie Law "
854
- "Info valmyndina í WordPress mælaborðinu þínu."
855
-
856
- #: admin/views/admin-settings-help.php:80
857
- msgid "Styles included"
858
- msgstr "Stíll innifalinn"
859
-
860
- #: admin/views/admin-settings-help.php:82
861
- msgid "Columns available"
862
- msgstr "Dálkar í boði"
863
-
864
- #: admin/views/admin-settings-help.php:82
865
- msgid "Will print all columns by default."
866
- msgstr "Mun prenta alla dálka sjálfgefið."
867
-
868
- #: admin/views/admin-settings-help.php:86
869
- msgid ""
870
- "This shortcode will display a normal HTML link which when clicked, will "
871
- "delete the cookie set by Cookie Law Info (this cookie is used to remember "
872
- "that the cookie bar is closed)."
873
- msgstr ""
874
- "Þessi stutta letur mun sýna eðlilega HTML tengil sem þegar smellt er á, mun "
875
- "það eyða smákökunum með Cookie Law Info (þetta kex er notað til að muna að "
876
- "kökuborðið er lokað)."
877
-
878
- #: admin/views/admin-settings-help.php:90
879
- msgid ""
880
- "Add any text you like- useful if you want e.g. another language to English."
881
- msgstr ""
882
- "Bættu við texta sem þú vilt - gagnlegt ef þú vilt t.d. annað tungumál á "
883
- "ensku."
884
-
885
- #: admin/views/admin-settings-help.php:94
886
- msgid "Add content after accepting the cookie notice."
887
- msgstr "Bættu við efni eftir að þú samþykkir smákökuna."
888
-
889
- #: admin/views/admin-settings-help.php:107
890
- #: admin/views/admin-settings-help.php:110 admin/views/goto-pro.php:103
891
- msgid "Documentation"
892
- msgstr "Handbækur"
893
-
894
- #: admin/views/admin-settings-help.php:108
895
- msgid "Refer to our documentation to set and get started"
896
- msgstr "Skoðaðu skjölin okkar til að setja og byrja"
897
-
898
- #: admin/views/admin-settings-help.php:115
899
- msgid "Help and Support"
900
- msgstr "Hjálp og stuðningur"
901
-
902
- #: admin/views/admin-settings-help.php:116
903
- msgid "We would love to help you on any queries or issues."
904
- msgstr "Við viljum hjálpa þér við allar fyrirspurnir eða mál."
905
-
906
- #: admin/views/admin-settings-help.php:118
907
- msgid "Contact Us"
908
- msgstr "Hafa samband"
909
-
910
- #: admin/views/admin-settings-messagebar.php:9
911
- msgid "Cookie bar"
912
- msgstr "Kökubar"
913
-
914
- #: admin/views/admin-settings-messagebar.php:10
915
- #: admin/views/admin-settings-messagebar.php:145
916
- msgid "Revisit consent"
917
- msgstr "Farðu aftur yfir samþykki"
918
-
919
- #: admin/views/admin-settings-messagebar.php:15
920
- msgid "Cookie Bar"
921
- msgstr "Kexbar"
922
-
923
- #: admin/views/admin-settings-messagebar.php:18
924
- msgid "Message Heading"
925
- msgstr "Message heading"
926
-
927
- #: admin/views/admin-settings-messagebar.php:21
928
- msgid "Leave it blank, If you do not need a heading"
929
- msgstr "Leyfðu henni að eyða, ef þú þarft ekki fyrirsögn"
930
-
931
- #: admin/views/admin-settings-messagebar.php:26
932
- msgid "Message"
933
- msgstr "Skilaboð"
934
-
935
- #: admin/views/admin-settings-messagebar.php:32
936
- msgid "Shortcodes allowed: see the Help Guide tab"
937
- msgstr "Leyfilegir skammkóðar: Sjá flipann Hjálpa leiðbeiningar"
938
-
939
- #: admin/views/admin-settings-messagebar.php:32
940
- msgid ""
941
- "Examples: \"We use cookies on this website [cookie_accept] to find out how "
942
- "to delete cookies [cookie_link].\""
943
- msgstr ""
944
- "Dæmi: \"Við notum kökur á þessari vefsíðu [cookie_accept] til að finna út "
945
- "hvernig á að eyða smákökum [cookie_link].\""
946
-
947
- #: admin/views/admin-settings-messagebar.php:36
948
- msgid "Cookie Bar Colour"
949
- msgstr "Litur"
950
-
951
- #: admin/views/admin-settings-messagebar.php:46
952
- msgid "Text Colour"
953
- msgstr "Litur"
954
-
955
- #: admin/views/admin-settings-messagebar.php:55
956
- msgid "Font"
957
- msgstr "Leturgerð"
958
-
959
- #: admin/views/admin-settings-messagebar.php:63
960
- msgid "Show cookie bar as"
961
- msgstr "Sýna smákökubar sem"
962
-
963
- #: admin/views/admin-settings-messagebar.php:68
964
- msgid "Banner"
965
- msgstr "Borði"
966
-
967
- #: admin/views/admin-settings-messagebar.php:69
968
- msgid "Popup"
969
- msgstr "Skjóta upp kollinum"
970
-
971
- #: admin/views/admin-settings-messagebar.php:70
972
- msgid "Widget"
973
- msgstr "Græjur"
974
-
975
- #: admin/views/admin-settings-messagebar.php:74
976
- msgid "Position"
977
- msgstr "Staða"
978
-
979
- #: admin/views/admin-settings-messagebar.php:84
980
- msgid "Add overlay?"
981
- msgstr "Bæta við yfirliti?"
982
-
983
- #: admin/views/admin-settings-messagebar.php:88
984
- msgid ""
985
- "When the popup is active, an overlay will block the user from browsing the "
986
- "site."
987
- msgstr ""
988
- "Þegar sprettiglugga er virkur mun yfirborð loka notandanum frá því að vafra "
989
- "um síðuna."
990
-
991
- #: admin/views/admin-settings-messagebar.php:89
992
- msgid "`Accept on scroll` will not work along with this option."
993
- msgstr "\"Samþykkja á skrúfu\" mun ekki virka með þessari valkost."
994
-
995
- #: admin/views/admin-settings-messagebar.php:93
996
- msgid "Position:"
997
- msgstr "Staða:"
998
-
999
- #: admin/views/admin-settings-messagebar.php:98
1000
- msgid "Header"
1001
- msgstr "Haus"
1002
-
1003
- #: admin/views/admin-settings-messagebar.php:99
1004
- msgid "Footer"
1005
- msgstr "Fótur"
1006
-
1007
- #: admin/views/admin-settings-messagebar.php:108
1008
- msgid "Fix Cookie Bar to Header?"
1009
- msgstr "Festa Cookie Bar til haus?"
1010
-
1011
- #: admin/views/admin-settings-messagebar.php:112
1012
- msgid ""
1013
- "If you select \"Header\" then you can optionally stick the cookie bar to the "
1014
- "header. Will not have any effect if you select \"Footer\"."
1015
- msgstr ""
1016
- "Ef þú velur \"Header\" þá geturðu valið kakaastikuna mögulega í hausinn. Mun "
1017
- "ekki hafa nein áhrif ef þú velur \"Footer\"."
1018
-
1019
- #: admin/views/admin-settings-messagebar.php:120
1020
- msgid "On load"
1021
- msgstr "Á álagi"
1022
-
1023
- #: admin/views/admin-settings-messagebar.php:125
1024
- #: admin/views/admin-settings-messagebar.php:135
1025
- msgid "Animate"
1026
- msgstr "Sýna hreyfingar"
1027
-
1028
- #: admin/views/admin-settings-messagebar.php:126
1029
- #: admin/views/admin-settings-messagebar.php:136
1030
- msgid "Sticky"
1031
- msgstr "Loðir við"
1032
-
1033
- #: admin/views/admin-settings-messagebar.php:130
1034
- msgid "On hide"
1035
- msgstr "Sæktu sjálfkrafa kökuhnapp eftir töf"
1036
-
1037
- #: admin/views/admin-settings-messagebar.php:145
1038
- msgid "previously"
1039
- msgstr "áður"
1040
-
1041
- #: admin/views/admin-settings-messagebar.php:145
1042
- msgid "Show again tab"
1043
- msgstr "Sýna aftur flipann"
1044
-
1045
- #: admin/views/admin-settings-messagebar.php:147
1046
- msgid ""
1047
- "Revisit consent will allow the visitors to view/edit/revoke their prior "
1048
- "preferences. This can be done via a widget and/or a shortcode. A small "
1049
- "privacy widget is automatically displayed at the footer of your website if "
1050
- "the widget option is enabled. You can also manually insert a link to manage "
1051
- "consent by adding the shortcode <b>[wt_cli_manage_consent]</b> to your "
1052
- "website."
1053
- msgstr ""
1054
- "Endurskoðun samþykkis gerir gestum kleift að skoða / breyta / afturkalla "
1055
- "fyrri óskir sínar. Þetta er hægt að gera í gegnum búnað og / eða stuttan "
1056
- "kóða. Lítil persónuverndargræja birtist sjálfkrafa við fótinn á vefsíðunni "
1057
- "þinni ef búnaðurinn er virkur. Þú getur einnig sett inn tengil handvirkt til "
1058
- "að stjórna samþykki með því að bæta <b>skammkóðanum [wt_cli_manage_consent]</"
1059
- "b> við vefsíðuna þína."
1060
-
1061
- #: admin/views/admin-settings-messagebar.php:152
1062
- msgid "Enable revisit consent widget"
1063
- msgstr "Virkja endurheimt samþykkisgræju"
1064
-
1065
- #: admin/views/admin-settings-messagebar.php:152
1066
- msgid ""
1067
- "By enabling this option a small privacy widget is automatically displayed at "
1068
- "the footer of your website."
1069
- msgstr ""
1070
- "Með því að virkja þennan valkost birtist sjálfkrafa lítill búnaður fyrir "
1071
- "friðhelgi við fótinn á vefsíðunni þinni."
1072
-
1073
- #: admin/views/admin-settings-messagebar.php:163
1074
- #: admin/views/admin-settings-messagebar.php:180
1075
- msgid "Tab Position"
1076
- msgstr "Staða"
1077
-
1078
- #: admin/views/admin-settings-messagebar.php:168
1079
- #: admin/views/admin-settings-messagebar.php:171
1080
- msgid "Right"
1081
- msgstr "Hægri"
1082
-
1083
- #: admin/views/admin-settings-messagebar.php:169
1084
- #: admin/views/admin-settings-messagebar.php:172
1085
- msgid "Left"
1086
- msgstr "Vinstri"
1087
-
1088
- #: admin/views/admin-settings-messagebar.php:187
1089
- msgid "Bottom Right"
1090
- msgstr "Neðst til hægri"
1091
-
1092
- #: admin/views/admin-settings-messagebar.php:190
1093
- msgid "Bottom Left"
1094
- msgstr "Neðst til vinstri"
1095
-
1096
- #: admin/views/admin-settings-messagebar.php:193
1097
- msgid "Top Right"
1098
- msgstr "Efst til hægri"
1099
-
1100
- #: admin/views/admin-settings-messagebar.php:196
1101
- msgid "Top Left"
1102
- msgstr "Efst til vinstri"
1103
-
1104
- #: admin/views/admin-settings-messagebar.php:203
1105
- msgid "From Right Margin"
1106
- msgstr "Frá Hægri framlegð"
1107
-
1108
- #: admin/views/admin-settings-messagebar.php:203
1109
- msgid "From Left Margin"
1110
- msgstr "Vinstri spássía"
1111
-
1112
- #: admin/views/admin-settings-messagebar.php:206
1113
- msgid "Specify"
1114
- msgstr "Lag"
1115
-
1116
- #: admin/views/admin-settings-messagebar.php:215
1117
- #: admin/views/admin_necessary_cookie.php:33
1118
- #: admin/views/admin_non_necessary_cookie.php:48
1119
- msgid "Title"
1120
- msgstr "Persónuvernd Yfirlit Titill"
1121
-
1122
- #: admin/views/admin-settings-save-button.php:12
1123
- #: admin/views/admin_necessary_cookie.php:52
1124
- #: admin/views/admin_non_necessary_cookie.php:87
1125
- #: public/modules/script-blocker/script-blocker.php:219
1126
- msgid "Update Settings"
1127
- msgstr "Uppfærsla af stillingum mistókst"
1128
-
1129
- #: admin/views/admin_necessary_cookie.php:26
1130
- msgid "Necessary Cookie Settings"
1131
- msgstr "Nauðsynlegar smákökastillingar"
1132
-
1133
- #: admin/views/admin_non_necessary_cookie.php:23
1134
- msgid "Non-necessary Cookie Settings"
1135
- msgstr "Óþarfa Cookie Settings"
1136
-
1137
- #: admin/views/admin_non_necessary_cookie.php:31
1138
- msgid "Enable Non-necessary Cookie"
1139
- msgstr "Virkja óþarfa smákökur"
1140
-
1141
- #: admin/views/admin_non_necessary_cookie.php:38
1142
- msgid "Default state"
1143
- msgstr "Sjálfgefið ástand"
1144
-
1145
- #: admin/views/admin_non_necessary_cookie.php:39
1146
- #: public/modules/script-blocker/views/settings.php:141
1147
- #: public/views/cookie-law-info_popup_content.php:7
1148
- msgid "Enabled"
1149
- msgstr "Virkjuð"
1150
-
1151
- #: admin/views/admin_non_necessary_cookie.php:40
1152
- #: public/views/cookie-law-info_popup_content.php:8
1153
- msgid "Disabled"
1154
- msgstr "Óvirkt"
1155
-
1156
- #: admin/views/admin_non_necessary_cookie.php:42
1157
- msgid ""
1158
- "If you enable this option, the category toggle button will be in the active "
1159
- "state for cookie consent."
1160
- msgstr ""
1161
- "Ef þú kveikir á þessum valkosti, mun víkjahnappurinn í flokknum vera í virku "
1162
- "ástandi fyrir samþykki fótspora."
1163
-
1164
- #: admin/views/admin_non_necessary_cookie.php:62
1165
- msgid ""
1166
- "This script will be added to the page HEAD section if the above settings is "
1167
- "enabled and user has give consent."
1168
- msgstr ""
1169
- "Þetta handrit verður bætt við síðu HEAD kafla ef ofangreindar stillingar eru "
1170
- "virk og notandi hefur gefið samþykki."
1171
-
1172
- #: admin/views/admin_non_necessary_cookie.php:67
1173
- msgid ""
1174
- "Print scripts in the head tag on the front end if above cookie settings is "
1175
- "enabled and user has given consent."
1176
- msgstr ""
1177
- "Prenta forskriftir í höfuðmerkinu á framhliðinni ef stillingar fyrir ofan "
1178
- "stillingar eru virk og notandi hefur gefið samþykki."
1179
-
1180
- #: admin/views/admin_non_necessary_cookie.php:74
1181
- msgid ""
1182
- "This script will be added right after the BODY section if the above settings "
1183
- "is enabled and user has given consent."
1184
- msgstr ""
1185
- "Þessi handrit verður bætt strax eftir líkama kafla ef ofangreindar "
1186
- "stillingar eru virkir og notandi hefur gefið samþykki."
1187
-
1188
- #: admin/views/admin_non_necessary_cookie.php:77
1189
- msgid ""
1190
- "Print scripts before the closing body tag on the front end if above cookie "
1191
- "settings is enabled and user has given consent."
1192
- msgstr ""
1193
- "Prentaðu forskriftir áður en lokunarljósið er á framhliðinni ef stillingar "
1194
- "fyrir ofan kex eru virk og notandi hefur gefið samþykki."
1195
-
1196
- #: admin/views/goto-pro.php:56
1197
- msgid "Where did my settings go?"
1198
- msgstr "Hvar fór stillingarnar mínar?"
1199
-
1200
- #: admin/views/goto-pro.php:57
1201
- msgid "Cookie Law Info version 0.9 has been updated and has new settings."
1202
- msgstr ""
1203
- "Cookie Law Info útgáfa 0.9 hefur verið uppfærð og hefur nýjar stillingar."
1204
-
1205
- #: admin/views/goto-pro.php:57
1206
- msgid "Your previous settings are safe."
1207
- msgstr "Fyrri stillingar þínar eru öruggar."
1208
-
1209
- #: admin/views/goto-pro.php:58
1210
- msgid ""
1211
- "You can either copy over your old settings to this version, or use the new "
1212
- "default values."
1213
- msgstr ""
1214
- "Þú getur annaðhvort afritað yfir gömlu stillingarnar þínar í þessa útgáfu "
1215
- "eða notað nýju sjálfgefin gildi."
1216
-
1217
- #: admin/views/goto-pro.php:60
1218
- msgid "Would you like to:"
1219
- msgstr "Viltu að:"
1220
-
1221
- #: admin/views/goto-pro.php:62
1222
- msgid "Use previous settings"
1223
- msgstr "Notaðu fyrri stillingar"
1224
-
1225
- #: admin/views/goto-pro.php:63
1226
- msgid "Start afresh with the new version"
1227
- msgstr "Byrjaðu aftur með nýju útgáfunni"
1228
-
1229
- #: admin/views/goto-pro.php:67
1230
- msgid ""
1231
- "If you want to go back to the previous version you can always download it "
1232
- "again from"
1233
- msgstr "Ef þú vilt fara aftur í fyrri útgáfu geturðu alltaf sótt það aftur frá"
1234
-
1235
- #: admin/views/goto-pro.php:73
1236
- msgid "30 Day Money Back Guarantee"
1237
- msgstr "30 daga peningarábyrgð"
1238
-
1239
- #: admin/views/goto-pro.php:74
1240
- msgid "Fast and Superior Support"
1241
- msgstr "Fljótur og frábær stuðningur"
1242
-
1243
- #: admin/views/goto-pro.php:75
1244
- msgid "10X Powerful with GDPR Cookie Consent Features That Every Site Needs"
1245
- msgstr "10X Öflugur með GDPR Cookie Samþykktaraðgerðir sem hvert vefsvæði þarf"
1246
-
1247
- #: admin/views/goto-pro.php:78
1248
- msgid "Upgrade to Premium"
1249
- msgstr "Uppfæra í Premium"
1250
-
1251
- #: admin/views/goto-pro.php:84
1252
- msgid "Automatic Cookie Scanner"
1253
- msgstr "Sjálfvirk smákökuskanni"
1254
-
1255
- #: admin/views/goto-pro.php:85
1256
- msgid ""
1257
- "Auto block scripts - Google Analytics, Facebook Pixel, Google Tag Manager, "
1258
- "Hotjar Analytics, Google Publisher Tag, Youtube embed, Vimeo embed, Google "
1259
- "maps, Addthis widget, Sharethis widget, Twitter widget, Soundcloud embed, "
1260
- "Slideshare embed, Linkedin widget, Instagram embed, Pinterest widget"
1261
- msgstr ""
1262
- "Sjálfvirkar blokkarskriftir - Google Analytics, Facebook Pixel, Google Tag "
1263
- "Manager, Hotjar Analytics, Google Útgefandi Tag, Youtube embed, Vimeo embed "
1264
- "in, Google kort, Addthis búnaður, Sharethis búnaður, Twitter búnaður, "
1265
- "Soundcloud embed, Slideshare embed in, Linkedin widget, Instagram embed , "
1266
- "Pinterest búnaður"
1267
-
1268
- #: admin/views/goto-pro.php:86
1269
- msgid "Location based exclusion of cookie notice for EU countries"
1270
- msgstr "Staðbundin útilokun á tilkynningu fyrir smákökur fyrir ESB lönd"
1271
-
1272
- #: admin/views/goto-pro.php:87
1273
- msgid "Granular control over the cookies/scipts used by the website"
1274
- msgstr "Granular stjórn á smákökum / skurðum sem notaðar eru af vefsíðunni"
1275
-
1276
- #: admin/views/goto-pro.php:88
1277
- msgid "User consent audit logs"
1278
- msgstr "Notendur samþykkja endurskoðunarskrár"
1279
-
1280
- #: admin/views/goto-pro.php:89
1281
- msgid "Customized privacy overview"
1282
- msgstr "Sérsniðið næði yfirlit"
1283
-
1284
- #: admin/views/goto-pro.php:90
1285
- msgid "Cookie bar preview in admin settings page"
1286
- msgstr "Forskoðun á smákökum bar á stjórnunarstillingar síðu"
1287
-
1288
- #: admin/views/goto-pro.php:91
1289
- msgid "Advanced support for cache plugins"
1290
- msgstr "Ítarlegri stuðningur við skyndiminni"
1291
-
1292
- #: admin/views/goto-pro.php:92
1293
- msgid "Cookie bar theme customizer for banner/ widgets/ popup"
1294
- msgstr "Kaka bar þema customizer fyrir borði / widgets / almenningur"
1295
-
1296
- #: admin/views/goto-pro.php:93
1297
- msgid "GDPR compliance with Google Tag Manager"
1298
- msgstr "GDPR-samræmi við Google Tag Manager"
1299
-
1300
- #: admin/views/goto-pro.php:94
1301
- msgid "Javascript helper functions"
1302
- msgstr "Javascript hjálparaðgerðir"
1303
-
1304
- #: admin/views/goto-pro.php:108
1305
- msgid "Like this plugin?"
1306
- msgstr "Eins og þetta tappi?"
1307
-
1308
- #: admin/views/goto-pro.php:109
1309
- msgid "If you find this plugin useful please show your support and rate it"
1310
- msgstr ""
1311
- "Ef þú finnur þessa tappa gagnlegt skaltu sýna stuðningnum þínum og meta það"
1312
-
1313
- #: admin/views/goto-pro.php:109
1314
- msgid " on"
1315
- msgstr " á"
1316
-
1317
- #: admin/views/goto-pro.php:109
1318
- msgid " much appreciated!"
1319
- msgstr " vel þegið!"
1320
-
1321
- #: cookie-law-info.php:80
1322
- msgid ""
1323
- "Please make sure the cache is cleared after each plugin update especially if "
1324
- "you have minified JS and/or CSS files."
1325
- msgstr ""
1326
- "Gakktu úr skugga um að skyndiminnið sé hreinsað eftir hverja "
1327
- "viðbótaruppfærslu, sérstaklega ef þú hefur lágmarkað JS og / eða CSS skrár."
1328
-
1329
- #: includes/class-cookie-law-info-review_request.php:52
1330
- #, php-format
1331
- msgid ""
1332
- "Hey, we at %sWebToffee%s would like to thank you for using our plugin. We "
1333
- "would really appreciate if you could take a moment to drop a quick review "
1334
- "that will inspire us to keep going."
1335
- msgstr ""
1336
- "Hey, við hjá %sWebToffee% viljum þakka þér fyrir að nota viðbótina okkar. "
1337
- "Við myndum mjög meta það ef þú gætir tekið smá stund til að láta frá þér "
1338
- "skyndiúttekt sem mun hvetja okkur til að halda áfram."
1339
-
1340
- #: includes/class-cookie-law-info-review_request.php:55
1341
- msgid "Remind me later"
1342
- msgstr "Minntu mig á það seinna"
1343
-
1344
- #: includes/class-cookie-law-info-review_request.php:56
1345
- msgid "Not interested"
1346
- msgstr "Ekki áhuga"
1347
-
1348
- #: includes/class-cookie-law-info-review_request.php:57
1349
- msgid "Review now"
1350
- msgstr "Farðu yfir núna"
1351
-
1352
- #: public/class-cookie-law-info-public.php:251
1353
- msgid "GDPR Cookie Consent"
1354
- msgstr "Samþykki GDPR Cookie"
1355
-
1356
- #: public/class-cookie-law-info-public.php:252
1357
- msgid "Cookie List"
1358
- msgstr "Smákaka"
1359
-
1360
- #: public/class-cookie-law-info-public.php:253
1361
- #: public/modules/shortcode/shortcode.php:208
1362
- msgid "Cookie"
1363
- msgstr "Smákaka"
1364
-
1365
- #: public/class-cookie-law-info-public.php:254
1366
- msgid "Add New"
1367
- msgstr "Bæta við"
1368
-
1369
- #: public/class-cookie-law-info-public.php:255
1370
- msgid "Add New Cookie Type"
1371
- msgstr "Bæta við nýjum kexgerð"
1372
-
1373
- #: public/class-cookie-law-info-public.php:256
1374
- msgid "Edit Cookie Type"
1375
- msgstr "Breyta smákökutegund"
1376
-
1377
- #: public/class-cookie-law-info-public.php:257
1378
- msgid "New Cookie Type"
1379
- msgstr "Nýtt kex gerð"
1380
-
1381
- #: public/class-cookie-law-info-public.php:258
1382
- msgid "View Cookie Type"
1383
- msgstr "Skoða smákökutegund"
1384
-
1385
- #: public/class-cookie-law-info-public.php:259
1386
- msgid "Search Cookies"
1387
- msgstr "Leita"
1388
-
1389
- #: public/class-cookie-law-info-public.php:260
1390
- msgid "Nothing found"
1391
- msgstr "Ekkert fannst"
1392
-
1393
- #: public/class-cookie-law-info-public.php:261
1394
- msgid "Nothing found in Trash"
1395
- msgstr "Ekkert fannst í ruslafötu"
1396
-
1397
- #: public/modules/script-blocker/script-blocker.php:156
1398
- #: public/modules/script-blocker/script-blocker.php:157
1399
- msgid "Script Blocker"
1400
- msgstr "Handritavörn"
1401
-
1402
- #: public/modules/script-blocker/script-blocker.php:182
1403
- msgid "Status updated"
1404
- msgstr "Staða uppfærð"
1405
-
1406
- #: public/modules/script-blocker/script-blocker.php:206
1407
- msgid "Advanced script rendering"
1408
- msgstr "Ítarlegri flutningur handrita"
1409
-
1410
- #: public/modules/script-blocker/script-blocker.php:208
1411
- #: public/modules/script-blocker/views/settings.php:7
1412
- msgid "Enable"
1413
- msgstr "Virkja"
1414
-
1415
- #: public/modules/script-blocker/script-blocker.php:209
1416
- #: public/modules/script-blocker/views/settings.php:7
1417
- msgid "Disable"
1418
- msgstr "Slökkva"
1419
-
1420
- #: public/modules/script-blocker/script-blocker.php:210
1421
- msgid ""
1422
- "Advanced script rendering will render the blocked scripts using javascript "
1423
- "thus eliminating the need for a page refresh. It is also optimized for "
1424
- "caching since there is no server-side processing after obtaining the consent."
1425
- msgstr ""
1426
- "Ítarlegri flutningur handrita mun skila lokuðu skriftunum með því að nota "
1427
- "javascript og þannig útilokar þörfina á uppfærslu á síðu. Það er einnig "
1428
- "bjartsýni fyrir skyndiminni þar sem engin vinnsla miðlarans er gerð eftir að "
1429
- "samþykki hefur verið fengið."
1430
-
1431
- #: public/modules/script-blocker/views/settings.php:9
1432
- msgid "Script blocker is enabled."
1433
- msgstr "Virkni handritalokara."
1434
-
1435
- #: public/modules/script-blocker/views/settings.php:9
1436
- msgid ""
1437
- "Script blocker is currently disabled. Enable the blocker if you want any of "
1438
- "the below listed plugins to be auto blocked."
1439
- msgstr ""
1440
- "Slökkt er á handritavörn. Virkaðu blokka ef þú vilt að einhver af "
1441
- "neðangreindum viðbótum verði lokað sjálfvirkt."
1442
-
1443
- #: public/modules/script-blocker/views/settings.php:10
1444
- #, php-format
1445
- msgid "<a href=\"javascript: submitform()\">%s</a>"
1446
- msgstr "<a href=\"javascript: submitform()\">%s</a>"
1447
-
1448
- #: public/modules/script-blocker/views/settings.php:14
1449
- #, php-format
1450
- msgid ""
1451
- "Advanced script rendering is currently disabled. It should be enabled for "
1452
- "the automatic script blocker to function. <a href=\"%s\">Enable.</a>"
1453
- msgstr ""
1454
- "Ítarleg flutningur handrita er óvirkur eins og er. Það ætti að vera virkt "
1455
- "fyrir sjálfvirka handritavörnina að virka. <a href=\"%s\">Virkja.</a>"
1456
-
1457
- #: public/modules/script-blocker/views/settings.php:113
1458
- msgid "Manage Script Blocking"
1459
- msgstr "Stjórna lokun handrita"
1460
-
1461
- #: public/modules/script-blocker/views/settings.php:134
1462
- #, php-format
1463
- msgid ""
1464
- "Below is the list of plugins currently supported for auto blocking. Plugins "
1465
- "marked inactive are either not installed or activated on your website. "
1466
- "Enabled plugins will be blocked by default on the front-end of your website "
1467
- "prior to obtaining user consent and rendered respectively based on consent. "
1468
- "<a href=\"%s\" target=\"_blank\">Read more.</a>"
1469
- msgstr ""
1470
- "Hér að neðan er listi yfir viðbætur sem nú eru studdar til að loka "
1471
- "sjálfvirkt. Viðbætur merktar óvirkar eru annað hvort ekki settar upp eða "
1472
- "virkjaðar á vefsíðu þinni. Virkjum viðbótum verður sjálfgefið lokað á "
1473
- "framhlið vefsíðu þinnar áður en þú færð samþykki notanda og er veitt í sömu "
1474
- "röð byggt á samþykki. <a href=\"%s\" target=\"_blank\">Lestu meira.</a>"
1475
-
1476
- #: public/modules/script-blocker/views/settings.php:140
1477
- msgid "Name"
1478
- msgstr "Nafn"
1479
-
1480
- #: public/modules/script-blocker/views/settings.php:141
1481
- msgid ""
1482
- "Enabled: Plugins will be blocked by default prior to obtaining user consent."
1483
- msgstr ""
1484
- "Virkt: Tappi verða lokaðir sjálfgefið áður en samþykki notanda er aflað."
1485
-
1486
- #: public/modules/script-blocker/views/settings.php:141
1487
- msgid "Disabled: Plugins will be rendered prior to obtaining consent."
1488
- msgstr "Óvirk: Viðbætur verða gefnar út áður en samþykki er fengið."
1489
-
1490
- #: public/modules/script-blocker/views/settings.php:175
1491
- msgid "Inactive"
1492
- msgstr "Óvirk"
1493
-
1494
- #: public/modules/shortcode/shortcode.php:99
1495
- msgid "Your current state:"
1496
- msgstr "Núverandi ástand þitt:"
1497
-
1498
- #: public/modules/shortcode/shortcode.php:104
1499
- msgid "Consent accepted."
1500
- msgstr "Samþykki samþykkt."
1501
-
1502
- #: public/modules/shortcode/shortcode.php:107
1503
- msgid "Consent rejected."
1504
- msgstr "Samþykki hafnað."
1505
-
1506
- #: public/modules/shortcode/shortcode.php:111
1507
- msgid "No consent given."
1508
- msgstr "Ekkert samþykki gefið."
1509
-
1510
- #: public/modules/shortcode/shortcode.php:113
1511
- msgid "Manage your consent."
1512
- msgstr "Stjórna samþykki þitt."
1513
-
1514
- #: public/modules/shortcode/shortcode.php:150
1515
- msgid "Delete Cookies"
1516
- msgstr "Eyða kökum"
1517
-
1518
- #: public/modules/shortcode/shortcode.php:186
1519
- msgid "No records found"
1520
- msgstr "Engar færslur fundust"
1521
-
1522
- #: public/modules/shortcode/shortcode.php:212
1523
- msgid "Type"
1524
- msgstr "Tegund"
1525
-
1526
- #: public/modules/shortcode/shortcode.php:216
1527
- msgid "Duration"
1528
- msgstr "Tímalengd"
1529
-
1530
- #: public/modules/shortcode/shortcode.php:533
1531
- msgid "Close the cookie bar"
1532
- msgstr "Lokaðu kökubarnum"
1533
-
1534
- #: public/modules/shortcode/shortcode.php:533
1535
- msgid "Close and Accept"
1536
- msgstr "Loka og samþykkja"
1537
-
1538
- #: public/views/cookie-law-info_bar.php:23
1539
- msgid "Close"
1540
- msgstr "Loka"
1541
-
1542
- #: public/views/cookie-law-info_popup_content.php:6
1543
- msgid "Always Enabled"
1544
- msgstr "Alltaf virk"
1545
-
1546
- #: public/views/cookie-law-info_popup_content.php:9
1547
- msgid "Show more"
1548
- msgstr "Sýna meira"
1549
-
1550
- #: public/views/cookie-law-info_popup_content.php:9
1551
- msgid "Show less"
1552
- msgstr "Sýna minna"
1553
-
1554
- #~ msgid ""
1555
- #~ "Which plugin are you using for language translation? Could you tell us a "
1556
- #~ "bit more?"
1557
- #~ msgstr ""
1558
- #~ "Hvaða viðbót ertu að nota til að þýða tungumál? Gætirðu sagt okkur aðeins "
1559
- #~ "meira?"
1560
-
1561
- #~ msgid "Caching issues"
1562
- #~ msgstr "Skyndiminni"
1563
-
1564
- #~ msgid "Which caching plugin are you using? Could you tell us a bit more?"
1565
- #~ msgstr ""
1566
- #~ "Hvaða skyndiminni viðbót ertu að nota? Gætirðu sagt okkur aðeins meira?"
1567
-
1568
- #~ msgid "Cookie Law Settings"
1569
- #~ msgstr "Stillingar köku lög"
1570
-
1571
- #~ msgid "Show Again Tab"
1572
- #~ msgstr "Sýna aftur flipa"
1573
-
1574
- #~ msgid "Use Show Again Tab?"
1575
- #~ msgstr "Notaðu Show Again Tab?"
1576
-
1577
- #~ msgid "Show More Text"
1578
- #~ msgstr "Sýna fleiri texta"
1579
-
1580
- #~ msgid "Non-necessary Cookie"
1581
- #~ msgstr "Óþarfa smákökur"
1582
-
1583
- #~ msgid "Necessary Cookie"
1584
- #~ msgstr "Nauðsynleg smákaka"
1585
-
1586
- #~ msgid "Your Cookie Law Info bar is switched on"
1587
- #~ msgstr "Smáatriði upplýsingalistans fyrir smákökur þínar er kveikt á"
1588
-
1589
- #~ msgid "Your Cookie Law Info bar is switched off"
1590
- #~ msgstr "Cookie Law Info Bar þín er slökkt"
1591
-
1592
- #~ msgid "Cookie Bar will be shown in:"
1593
- #~ msgstr "Cookie Bar verður sýndur í:"
1594
-
1595
- #~ msgid "Disappear"
1596
- #~ msgstr "Bendill"
1597
-
1598
- #~ msgid "Show Border?"
1599
- #~ msgstr "Sýna Border?"
1600
-
1601
- #~ msgid "Border Colour"
1602
- #~ msgstr "Feitletrað"
1603
-
1604
- #~ msgid "Priority"
1605
- #~ msgstr "Forgangsröðun"
1606
-
1607
- #~ msgid "Scan & Download"
1608
- #~ msgstr "& Hala niður"
1609
-
1610
- #~ msgid "Export Cookie"
1611
- #~ msgstr "Stillingar köku lög"
1612
-
1613
- #~ msgid "You do not have sufficient permissions to access this page."
1614
- #~ msgstr "Þú hefur ekki nægar heimildir til að fá aðgang að þessari síðu."
1615
-
1616
- #~ msgid "Export as CSV file"
1617
- #~ msgstr "Flytja út CSV lista..."
1618
-
1619
- #~ msgid "Export"
1620
- #~ msgstr "Flytja út"
1621
-
1622
- #~ msgid "Scan & Import"
1623
- #~ msgstr "& Flytja inn"
1624
-
1625
- #~ msgid "Import Cookie"
1626
- #~ msgstr "Flytja inn smákökur"
1627
-
1628
- #~ msgid "BEGIN %s"
1629
- #~ msgstr "BEGIN %s"
1630
-
1631
- #~ msgid "[Line %1$s] %2$s"
1632
- #~ msgstr "%1$s, %2$s"
1633
-
1634
- #~ msgid "Import from a CSV file"
1635
- #~ msgstr "Flytja inn úr CSV skrá"
1636
-
1637
- #~ msgid ""
1638
- #~ "Notice: please make the directory %s writable so that you can see the "
1639
- #~ "error log."
1640
- #~ msgstr "Tilkynning: vinsamlegast notaðu möppuna%s til að sjá villuskráinn."
1641
-
1642
- #~ msgid "Error during file upload."
1643
- #~ msgstr "Villa við skráarupphleðslu."
1644
-
1645
- #~ msgid "No posts was successfully imported%s."
1646
- #~ msgstr "Engar færslur voru fluttar inn%s."
1647
-
1648
- #~ msgid "Some posts were successfully imported but some were not%s."
1649
- #~ msgstr "Sumar færslur voru fluttar inn en sumir voru ekki%s."
1650
-
1651
- #~ msgid "Post import was successful."
1652
- #~ msgstr "Innflutningur innflutnings tókst."
1653
-
1654
- #~ msgid "CSV file"
1655
- #~ msgstr "Skrá"
1656
-
1657
- #~ msgid "Import"
1658
- #~ msgstr "Flytja Inn"
1659
-
1660
- #~ msgid "Error processing migration request (ERROR: 4)"
1661
- #~ msgstr "Villa við að vinna úr flutningsbeiðni (ERROR: 4)"
1662
-
1663
- #~ msgid "Cookie Law Message Bar"
1664
- #~ msgstr "Stillingar köku lög"
1665
-
1666
- #~ msgid "Link Text"
1667
- #~ msgstr "Tenglatexti"
1668
-
1669
- #~ msgid "Open link in new window?"
1670
- #~ msgstr "_Opna í nýjum glugga"
1671
-
1672
- #~ msgid "Link colour"
1673
- #~ msgstr "Litur"
1674
-
1675
- #~ msgid "Show as button?"
1676
- #~ msgstr "Feitletrað"
1677
-
1678
- #~ msgid "Button colour"
1679
- #~ msgstr "Hnappur litur"
1680
-
1681
- #~ msgid "Button Size"
1682
- #~ msgstr "Stærð hnappa"
1683
-
1684
- #~ msgid "Using the Shortcodes"
1685
- #~ msgstr "Að nota skammstafana"
1686
-
1687
- #~ msgid "The shortcodes are:"
1688
- #~ msgstr "Skammstafarnir eru:"
1689
-
1690
- #~ msgid ""
1691
- #~ "If you just want a standard green \"Accept\" button that closes the "
1692
- #~ "header and nothing more, use this shortcode. It is already styled, you "
1693
- #~ "don't need to customise it."
1694
- #~ msgstr ""
1695
- #~ "Ef þú vilt bara staðlaða græna \"Samþykkja\" hnappinn sem lokar hausnum "
1696
- #~ "og ekkert meira, notaðu þetta strikamerki. Það er nú þegar stíll, þú "
1697
- #~ "þarft ekki að aðlaga það."
1698
-
1699
- #~ msgid ""
1700
- #~ "Alternatively you can add a colour value. Choose from: red, blue, orange, "
1701
- #~ "yellow, green or pink."
1702
- #~ msgstr ""
1703
- #~ "Einnig er hægt að bæta við litavali. Veldu úr: rauður, blár, "
1704
- #~ "appelsínugulur, gulur, grænn eða bleikur."
1705
-
1706
- #~ msgid "Help"
1707
- #~ msgstr "Hjálp"
1708
-
1709
- #~ msgid "Report a Bug"
1710
- #~ msgstr "Tilkynna vandamál..."
1711
-
1712
- #~ msgid "About the law"
1713
- #~ msgstr "Stillingar köku lög"
1714
-
1715
- #~ msgid "Licence"
1716
- #~ msgstr "Leyfi"
1717
-
1718
- #~ msgid "API Licence Key:"
1719
- #~ msgstr "Leyfisleitaskírteini API"
1720
-
1721
- #~ msgid "Licence Key"
1722
- #~ msgstr "Leyfi"
1723
-
1724
- #~ msgid "Licence Email"
1725
- #~ msgstr "License Email"
1726
-
1727
- #~ msgid "Activate"
1728
- #~ msgstr "Virkja"
1729
-
1730
- #~ msgid ""
1731
- #~ "This website uses cookies to improve your experience. We'll assume you're "
1732
- #~ "ok with this, but you can opt-out if you wish.[cookie_button] "
1733
- #~ "[cookie_settings] [cookie_link]"
1734
- #~ msgstr ""
1735
- #~ "Þessi vefsíða notar smákökur til að bæta reynslu þína. Við gerum ráð "
1736
- #~ "fyrir að þú hafir allt í lagi með þetta, en þú getur skráð þig út ef þú "
1737
- #~ "vilt. [Cookie_button] [cookie_settings] [cookie_link]"
1738
-
1739
- #~ msgid "Action is unknown."
1740
- #~ msgstr "Aðgerð"
1741
-
1742
- #~ msgid "Category"
1743
- #~ msgstr "Flokkur"
1744
-
1745
- #~ msgid "Key"
1746
- #~ msgstr "Lykill"
1747
-
1748
- #~ msgid "IP Address"
1749
- #~ msgstr "IP Vistfang"
1750
-
1751
- #~ msgid "Visited Date"
1752
- #~ msgstr "heimsótt"
1753
-
1754
- #~ msgid "User ID"
1755
- #~ msgstr "Notandi Nr"
1756
-
1757
- #~ msgid "GDPR Consent History"
1758
- #~ msgstr "Samþykktarsaga GDPR"
1759
-
1760
- #~ msgid "Export Report"
1761
- #~ msgstr "Útflutningsskýrsla"
1762
-
1763
- #~ msgid "Event Logged Successfully"
1764
- #~ msgstr "Atburður Logged tókst"
1765
-
1766
- #~ msgid "Logging is not enabled"
1767
- #~ msgstr "Logging er ekki virk"
1768
-
1769
- #~ msgid "Auto-hide cookie bar after delay?"
1770
- #~ msgstr "Sæktu sjálfkrafa kökuhnapp eftir töf"
1771
-
1772
- #~ msgid "Accept"
1773
- #~ msgstr "Samþykkja"
1774
-
1775
- #~ msgid "Reject"
1776
- #~ msgstr "Hafna"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/cookie-law-info-it_IT.mo DELETED
Binary file
languages/cookie-law-info-nl_NL.mo DELETED
Binary file
languages/cookie-law-info-nl_NL.po DELETED
@@ -1,1799 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: \n"
4
- "POT-Creation-Date: 2020-11-17 11:34+0530\n"
5
- "PO-Revision-Date: 2020-11-17 11:34+0530\n"
6
- "Last-Translator: \n"
7
- "Language-Team: \n"
8
- "Language: nl\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.4.2\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
- "X-Poedit-KeywordsList: __;_e\n"
16
- "X-Poedit-SearchPath-0: .\n"
17
-
18
- #: admin/class-cookie-law-info-admin.php:147
19
- #: admin/class-cookie-law-info-admin.php:148
20
- #: admin/class-cookie-law-info-admin.php:247
21
- #: admin/partials/cookie-law-info-admin_settings.php:31
22
- msgid "Settings"
23
- msgstr "Instellingen"
24
-
25
- #: admin/class-cookie-law-info-admin.php:155
26
- #: admin/class-cookie-law-info-admin.php:156
27
- #: public/modules/script-blocker/views/settings.php:174
28
- #: public/views/cookie-law-info_popup_content.php:23
29
- msgid "Non-necessary"
30
- msgstr "Niet-noodzakelijke"
31
-
32
- #: admin/class-cookie-law-info-admin.php:163
33
- #: admin/class-cookie-law-info-admin.php:164
34
- #: public/views/cookie-law-info_popup_content.php:22
35
- msgid "Necessary"
36
- msgstr "Noodzakelijk"
37
-
38
- #: admin/class-cookie-law-info-admin.php:171
39
- #: admin/class-cookie-law-info-admin.php:172
40
- #: admin/partials/cookie-law-info-privacy_overview.php:25
41
- msgid "Privacy Overview"
42
- msgstr "Privacy-Overzicht"
43
-
44
- #: admin/class-cookie-law-info-admin.php:221
45
- #: admin/class-cookie-law-info-admin.php:276
46
- #: admin/class-cookie-law-info-admin.php:334
47
- #: admin/class-cookie-law-info-admin.php:378
48
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:22
49
- #: public/modules/script-blocker/script-blocker.php:133
50
- #: public/modules/script-blocker/script-blocker.php:173
51
- #: public/modules/script-blocker/script-blocker.php:310
52
- msgid "You do not have sufficient permission to perform this operation"
53
- msgstr "U hebt niet voldoende machtigingen voor deze bewerking"
54
-
55
- #: admin/class-cookie-law-info-admin.php:240
56
- #: admin/class-cookie-law-info-admin.php:306
57
- #: admin/class-cookie-law-info-admin.php:359
58
- #: admin/class-cookie-law-info-admin.php:403
59
- msgid "Settings Updated."
60
- msgstr "Instellingen geüpdated."
61
-
62
- #: admin/class-cookie-law-info-admin.php:248
63
- msgid "Support"
64
- msgstr "Ondersteuningsforum"
65
-
66
- #: admin/class-cookie-law-info-admin.php:249
67
- msgid "Premium Upgrade"
68
- msgstr "Premium-upgrade"
69
-
70
- #: admin/class-cookie-law-info-admin.php:418
71
- msgid "ERROR MIGRATING SETTINGS (ERROR: 2)"
72
- msgstr "INSTELLINGEN VOOR HET MIGREREN VAN FOUTPAGINA (FOUT: 2)"
73
-
74
- #: admin/class-cookie-law-info-admin.php:436
75
- msgid "Cookie ID"
76
- msgstr "Cookie-ID"
77
-
78
- #: admin/class-cookie-law-info-admin.php:437
79
- msgid "Cookie Type"
80
- msgstr "Cookie Type"
81
-
82
- #: admin/class-cookie-law-info-admin.php:438
83
- msgid "Cookie Duration"
84
- msgstr "Duur van de cookie"
85
-
86
- #: admin/class-cookie-law-info-admin.php:439
87
- msgid "Cookie Sensitivity"
88
- msgstr "Cookie-gevoeligheid"
89
-
90
- #: admin/class-cookie-law-info-admin.php:689
91
- msgid "Close Header"
92
- msgstr "Kop sluiten"
93
-
94
- #: admin/class-cookie-law-info-admin.php:693
95
- msgid "Open URL"
96
- msgstr "Open url"
97
-
98
- #: admin/class-cookie-law-info-admin.php:706
99
- msgid "Extra Large"
100
- msgstr "Extra groot"
101
-
102
- #: admin/class-cookie-law-info-admin.php:710
103
- msgid "Large"
104
- msgstr "Groot"
105
-
106
- #: admin/class-cookie-law-info-admin.php:714
107
- msgid "Medium"
108
- msgstr "Medium"
109
-
110
- #: admin/class-cookie-law-info-admin.php:718
111
- msgid "Small"
112
- msgstr "Klein"
113
-
114
- #: admin/class-cookie-law-info-admin.php:732
115
- msgid "Default theme font"
116
- msgstr "Standaard thema lettertype"
117
-
118
- #: admin/class-cookie-law-info-admin.php:736
119
- msgid "Sans Serif"
120
- msgstr "Sans Serif"
121
-
122
- #: admin/class-cookie-law-info-admin.php:740
123
- msgid "Serif"
124
- msgstr "Serif"
125
-
126
- #: admin/class-cookie-law-info-admin.php:744
127
- msgid "Arial"
128
- msgstr "Arial"
129
-
130
- #: admin/class-cookie-law-info-admin.php:748
131
- msgid "Arial Black"
132
- msgstr "Arial Black"
133
-
134
- #: admin/class-cookie-law-info-admin.php:752
135
- msgid "Georgia, serif"
136
- msgstr "Georgia, serif"
137
-
138
- #: admin/class-cookie-law-info-admin.php:756
139
- msgid "Helvetica"
140
- msgstr "Helvetica"
141
-
142
- #: admin/class-cookie-law-info-admin.php:760
143
- msgid "Lucida"
144
- msgstr "Lucida"
145
-
146
- #: admin/class-cookie-law-info-admin.php:764
147
- msgid "Tahoma"
148
- msgstr "Tahoma"
149
-
150
- #: admin/class-cookie-law-info-admin.php:768
151
- msgid "Times New Roman"
152
- msgstr "Times New Roman"
153
-
154
- #: admin/class-cookie-law-info-admin.php:772
155
- msgid "Trebuchet"
156
- msgstr "Trebuchet"
157
-
158
- #: admin/class-cookie-law-info-admin.php:776
159
- msgid "Verdana"
160
- msgstr "Verdana"
161
-
162
- #: admin/modules/ccpa/ccpa.php:106
163
- msgid "Do you really wish to opt out?"
164
- msgstr "Wilt u zich echt afmelden?"
165
-
166
- #: admin/modules/ccpa/ccpa.php:107
167
- msgid "Confirm"
168
- msgstr "Bevestigen"
169
-
170
- #: admin/modules/ccpa/ccpa.php:108
171
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:154
172
- msgid "Cancel"
173
- msgstr "Annuleren"
174
-
175
- #: admin/modules/ccpa/ccpa.php:145
176
- msgid "Select the type of law"
177
- msgstr "Selecteer het type wet"
178
-
179
- #: admin/modules/ccpa/ccpa.php:149
180
- msgid "GDPR"
181
- msgstr "GDPR"
182
-
183
- #: admin/modules/ccpa/ccpa.php:150 admin/modules/ccpa/ccpa.php:158
184
- msgid ""
185
- "Customize the buttons, notice, themes from the relevant tabs to setup your "
186
- "cookie notice accordingly."
187
- msgstr ""
188
- "Pas de knoppen, kennisgeving, thema's van de relevante tabbladen aan om uw "
189
- "cookiemelding dienovereenkomstig in te stellen."
190
-
191
- #: admin/modules/ccpa/ccpa.php:153
192
- msgid "CCPA"
193
- msgstr "CCPA"
194
-
195
- #: admin/modules/ccpa/ccpa.php:154
196
- msgid ""
197
- "Most of the customizations from the tabs for buttons, notice or themes are "
198
- "not relevant especially if you choose to not show the notice, except the Do "
199
- "not sell within the buttons."
200
- msgstr ""
201
- "De meeste aanpassingen van de tabbladen voor knoppen, bericht of thema's zijn "
202
- "niet relevant, vooral als u ervoor kiest om het bericht niet weer te geven, "
203
- "behalve de knop Niet verkopen binnen de knoppen."
204
-
205
- #: admin/modules/ccpa/ccpa.php:157
206
- msgid "CCPA & GDPR"
207
- msgstr "CCPA & GDPR"
208
-
209
- #: admin/modules/ccpa/views/ccpa_settings.php:7
210
- msgid "CCPA Settings"
211
- msgstr "CCPA-instellingen"
212
-
213
- #: admin/modules/ccpa/views/ccpa_settings.php:7
214
- msgid ""
215
- "The right to opt out in the California Consumer Privacy Act gives consumers "
216
- "the ability to direct a business not to sell their personal information to a "
217
- "third party. If the user considers to not sell their personal information, "
218
- "all the scripts related to the categories which are configured to sell "
219
- "personal information will be blocked. The DO NOT SELL option is facilitated "
220
- "via a shortcode [wt_cli_ccpa_optout]."
221
- msgstr ""
222
- "Het recht om zich af te melden in de California Consumer Privacy Act geeft "
223
- "consumenten de mogelijkheid om een bedrijf te leiden hun persoonlijke "
224
- "gegevens niet aan derden te verkopen. Als de gebruiker overweegt zijn "
225
- "persoonlijke informatie niet te verkopen, worden alle scripts met betrekking "
226
- "tot de categorieën die zijn geconfigureerd om persoonlijke informatie te "
227
- "verkopen, geblokkeerd. De optie NIET VERKOPEN wordt mogelijk gemaakt via een "
228
- "shortcode [wt_cli_ccpa_optout]."
229
-
230
- #: admin/modules/ccpa/views/ccpa_settings.php:10
231
- msgid "Enable CCPA ?"
232
- msgstr "CCPA inschakelen?"
233
-
234
- #: admin/modules/ccpa/views/ccpa_settings.php:18
235
- msgid "Enable CCPA notice"
236
- msgstr "Schakel CCPA-melding in"
237
-
238
- #: admin/modules/ccpa/views/ccpa_settings.php:18
239
- msgid ""
240
- "Enabling the notice will display the banner with the relevant text as per "
241
- "your configuration. Use this option particularly to record prior consent from "
242
- "the website visitors."
243
- msgstr ""
244
- "Als u de melding inschakelt, wordt de banner weergegeven met de relevante "
245
- "tekst volgens uw configuratie. Gebruik deze optie vooral om voorafgaande "
246
- "toestemming van de bezoekers van de website vast te leggen."
247
-
248
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:26
249
- msgid "Unable to handle your request."
250
- msgstr "Kan uw aanvraag niet verwerken."
251
-
252
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:96
253
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:130
254
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:132
255
- msgid "Error"
256
- msgstr "Fout"
257
-
258
- #: admin/modules/cli-policy-generator/classes/class-preview-page.php:27
259
- msgid "Cookie Policy"
260
- msgstr "Cookie beleid"
261
-
262
- #: admin/modules/cli-policy-generator/classes/class-preview-page.php:83
263
- msgid "Auto reload preview"
264
- msgstr "Voorbeeld van automatisch opnieuw laden"
265
-
266
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:106
267
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:107
268
- #: admin/modules/cli-policy-generator/views/policy-generator.php:21
269
- msgid "Policy generator"
270
- msgstr "Beleidsgenerator"
271
-
272
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:133
273
- msgid "Success"
274
- msgstr "Succes"
275
-
276
- #: admin/modules/cli-policy-generator/views/policy-generator.php:25
277
- msgid "Sample heading"
278
- msgstr "Voorbeeldkop"
279
-
280
- #: admin/modules/cli-policy-generator/views/policy-generator.php:26
281
- msgid "Sample content"
282
- msgstr "Voorbeeld inhoud"
283
-
284
- #: admin/modules/cli-policy-generator/views/policy-generator.php:27
285
- msgid "Delete"
286
- msgstr "Verwijder"
287
-
288
- #: admin/modules/cli-policy-generator/views/policy-generator.php:49
289
- msgid "Add new"
290
- msgstr "Voeg nieuw toe"
291
-
292
- #: admin/modules/cli-policy-generator/views/policy-generator.php:53
293
- msgid "Heading"
294
- msgstr "Heading"
295
-
296
- #: admin/modules/cli-policy-generator/views/policy-generator.php:57
297
- #: admin/views/admin_necessary_cookie.php:39
298
- #: admin/views/admin_non_necessary_cookie.php:54
299
- #: public/modules/script-blocker/views/settings.php:142
300
- #: public/modules/shortcode/shortcode.php:220
301
- msgid "Description"
302
- msgstr "Omschrijving"
303
-
304
- #: admin/modules/cli-policy-generator/views/policy-generator.php:65
305
- msgid ""
306
- "Enabling this option will help us spread the word by placing a credit to "
307
- "WebToffee at the very end of the Cookie Policy page."
308
- msgstr ""
309
- "Door deze optie in te schakelen, kunnen we het woord verspreiden door een "
310
- "credit toe te kennen aan WebToffee helemaal aan het einde van de pagina "
311
- "Cookiebeleid."
312
-
313
- #: admin/modules/cli-policy-generator/views/policy-generator.php:82
314
- msgid "Update existing Cookie Policy page"
315
- msgstr "Update bestaande Cookiebeleid-pagina"
316
-
317
- #: admin/modules/cli-policy-generator/views/policy-generator.php:88
318
- msgid "Create Cookie Policy page"
319
- msgstr "Maak een cookiebeleid-pagina"
320
-
321
- #: admin/modules/cli-policy-generator/views/policy-generator.php:92
322
- msgid "Live preview"
323
- msgstr "Live voorvertoning"
324
-
325
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:43
326
- msgid "The plugin is complex to set up"
327
- msgstr "De plug-in is complex om in te stellen"
328
-
329
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:45
330
- msgid "Please describe which area you are facing difficulties"
331
- msgstr "Beschrijf alstublieft in welk gebied u moeilijkheden ondervindt"
332
-
333
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:49
334
- msgid "I found a better plugin"
335
- msgstr "Ik heb een betere plugin gevonden"
336
-
337
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:51
338
- msgid "Which plugin?"
339
- msgstr "Welke plugin?"
340
-
341
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:55
342
- msgid "The plugin is great, but I need specific feature that you don't support"
343
- msgstr ""
344
- "Deze plugin is prima, maar ik heb een specifieke functie nodig die jullie "
345
- "niet ondersteunen"
346
-
347
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:57
348
- msgid "Could you tell us more about that feature?"
349
- msgstr "Kan je ons meer vertellen over die functie?"
350
-
351
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:61
352
- msgid "The plugin didn't work as expected"
353
- msgstr "De plugin werkte niet zoals verwacht"
354
-
355
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:63
356
- msgid "What did you expect?"
357
- msgstr "Wat was verwachting?"
358
-
359
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:67
360
- msgid "A conflict with another plugin or theme"
361
- msgstr "Een conflict met een andere plug-in of een ander thema"
362
-
363
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:69
364
- msgid "Which plugin or theme?"
365
- msgstr "Welke plug-in of welk thema?"
366
-
367
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:73
368
- msgid "Translation issues"
369
- msgstr "Vertaalproblemen"
370
-
371
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:77
372
- msgid "Incorrect/missing translation"
373
- msgstr "Onjuiste / ontbrekende vertaling"
374
-
375
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:79
376
- msgid "Name the language"
377
- msgstr "Noem de taal"
378
-
379
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:83
380
- msgid ""
381
- "Unable to translate my dynamic content e.g, cookie message, button text etc"
382
- msgstr ""
383
- "Kan mijn dynamische inhoud niet vertalen, bijvoorbeeld cookiemelding, "
384
- "knoptekst enz"
385
-
386
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:85
387
- msgid "Name the language and the translator plugin that you are using"
388
- msgstr "Noem de taal en de vertaler-plug-in die u gebruikt"
389
-
390
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:91
391
- msgid "Upgrade to pro"
392
- msgstr "Upgraden naar Pro"
393
-
394
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:95
395
- #: admin/views/admin-settings-general.php:10
396
- #: admin/views/admin-settings-general.php:66
397
- msgid "Other"
398
- msgstr "Anders"
399
-
400
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:97
401
- msgid "Could you tell us a bit more?"
402
- msgstr "Kun je ons wat meer vertellen?"
403
-
404
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:117
405
- msgid "If you have a moment, please let us know why you are deactivating:"
406
- msgstr "Wij horen graag waarom u ervoor kiest om te deactiveren:"
407
-
408
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:144
409
- msgid ""
410
- "We do not collect any personal data when you submit this form. It's your "
411
- "feedback that we value."
412
- msgstr ""
413
- "We verzamelen geen persoonlijke gegevens wanneer u dit formulier verzendt. "
414
- "Het is uw feedback die we waarderen."
415
-
416
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:145
417
- msgid "Privacy Policy"
418
- msgstr "Privacybeleid"
419
-
420
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:152
421
- msgid "Go to support"
422
- msgstr "Ga naar ondersteuning"
423
-
424
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:153
425
- msgid "Submit & Deactivate"
426
- msgstr "Inzenden & Deactiveren"
427
-
428
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:155
429
- msgid "I rather wouldn't say"
430
- msgstr "Zeg ik liever niet"
431
-
432
- #: admin/partials/cookie-law-info-admin_settings.php:25
433
- #: admin/views/admin_necessary_cookie.php:20
434
- #: admin/views/admin_non_necessary_cookie.php:17
435
- msgid "Settings updated."
436
- msgstr "Instellingen bijgewerkt."
437
-
438
- #: admin/partials/cookie-law-info-admin_settings.php:26
439
- #: admin/views/admin_necessary_cookie.php:21
440
- #: admin/views/admin_non_necessary_cookie.php:18
441
- msgid "Unable to update Settings."
442
- msgstr "Kan instellingen niet bijwerken."
443
-
444
- #: admin/partials/cookie-law-info-admin_settings.php:27
445
- msgid "Settings reset to defaults."
446
- msgstr "Instellingen gereset naar standaardinstellingen."
447
-
448
- #: admin/partials/cookie-law-info-admin_settings.php:28
449
- msgid "Unable to reset settings."
450
- msgstr "Kon instellingen niet opnieuw instellen."
451
-
452
- #: admin/partials/cookie-law-info-admin_settings.php:39
453
- msgid "Cookie bar is currently active"
454
- msgstr "Cookiebalk is momenteel actief"
455
-
456
- #: admin/partials/cookie-law-info-admin_settings.php:47
457
- msgid "Cookie bar is currently inactive"
458
- msgstr "Cookiebalk is momenteel inactief"
459
-
460
- #: admin/partials/cookie-law-info-admin_settings.php:57
461
- #: admin/views/admin-settings-general.php:9
462
- msgid "General"
463
- msgstr "Algemeen"
464
-
465
- #: admin/partials/cookie-law-info-admin_settings.php:58
466
- msgid "Customise Cookie Bar"
467
- msgstr "Aanpassen Cookie Bar"
468
-
469
- #: admin/partials/cookie-law-info-admin_settings.php:59
470
- msgid "Customise Buttons"
471
- msgstr "Knoppen aanpassen"
472
-
473
- #: admin/partials/cookie-law-info-admin_settings.php:60
474
- #: admin/views/admin-settings-advanced.php:8
475
- msgid "Advanced"
476
- msgstr "Geavanceerd"
477
-
478
- #: admin/partials/cookie-law-info-admin_settings.php:61
479
- msgid "Help Guide"
480
- msgstr "Help-gids"
481
-
482
- #: admin/partials/cookie-law-info-privacy_overview.php:32
483
- msgid "Privacy Overview Title"
484
- msgstr "Privacyoverzicht Titel"
485
-
486
- #: admin/partials/cookie-law-info-privacy_overview.php:38
487
- #: admin/partials/cookie-law-info-privacy_overview.php:53
488
- msgid "This will be shown in the settings visible for user on consent screen."
489
- msgstr ""
490
- "Dit wordt weergegeven in de instellingen die zichtbaar zijn voor gebruikers "
491
- "op toestemmingsscherm."
492
-
493
- #: admin/partials/cookie-law-info-privacy_overview.php:61
494
- msgid "Save Settings"
495
- msgstr "Instellingen Opslaan"
496
-
497
- #: admin/views/admin-settings-advanced.php:9
498
- msgid ""
499
- "Sometimes themes apply settings that clash with plugins. If that happens, try "
500
- "adjusting these settings."
501
- msgstr ""
502
- "Soms passen thema's instellingen toe die botsen met plug-ins. Als dat "
503
- "gebeurt, probeer dan deze instellingen aan te passen."
504
-
505
- #: admin/views/admin-settings-advanced.php:13
506
- msgid "Reset all values"
507
- msgstr "Reset alle waarden"
508
-
509
- #: admin/views/admin-settings-advanced.php:15
510
- msgid "Delete settings and reset"
511
- msgstr "Verwijder instellingen en reset"
512
-
513
- #: admin/views/admin-settings-advanced.php:15
514
- msgid "Are you sure you want to delete all your settings?"
515
- msgstr "Weet je zeker dat je al je instellingen wilt verwijderen?"
516
-
517
- #: admin/views/admin-settings-advanced.php:16
518
- msgid "Warning: this will actually delete your current settings."
519
- msgstr ""
520
- "Waarschuwing: hiermee worden uw huidige instellingen daadwerkelijk verwijderd."
521
-
522
- #: admin/views/admin-settings-buttons.php:10
523
- msgid "Accept Button"
524
- msgstr "Knop accepteren"
525
-
526
- #: admin/views/admin-settings-buttons.php:11
527
- #: admin/views/admin-settings-buttons.php:93
528
- msgid "Reject Button"
529
- msgstr "Knop Weigeren"
530
-
531
- #: admin/views/admin-settings-buttons.php:12
532
- #: admin/views/admin-settings-buttons.php:163
533
- msgid "Settings Button"
534
- msgstr "Instellingen Knop"
535
-
536
- #: admin/views/admin-settings-buttons.php:13
537
- #: admin/views/admin-settings-buttons.php:206
538
- msgid "Read More Link"
539
- msgstr "Meer lezen Link"
540
-
541
- #: admin/views/admin-settings-buttons.php:14
542
- #: admin/views/admin-settings-buttons.php:326
543
- msgid "Do not sell link"
544
- msgstr "Link niet verkopen"
545
-
546
- #: admin/views/admin-settings-buttons.php:20
547
- msgid "Main Button"
548
- msgstr "Hoofdknop"
549
-
550
- #: admin/views/admin-settings-buttons.php:21
551
- msgid ""
552
- "This button/link can be customised to either simply close the cookie bar, or "
553
- "follow a link. You can also customise the colours and styles, and show it as "
554
- "a link or a button."
555
- msgstr ""
556
- "Deze knop / koppeling kan worden aangepast om de cookiereep eenvoudig te "
557
- "sluiten of een link te volgen. U kunt de kleuren en stijlen ook aanpassen en "
558
- "weergeven als een koppeling of knop."
559
-
560
- #: admin/views/admin-settings-buttons.php:24
561
- #: admin/views/admin-settings-buttons.php:96
562
- #: admin/views/admin-settings-buttons.php:166
563
- #: admin/views/admin-settings-buttons.php:220
564
- msgid "Text"
565
- msgstr "Tekst"
566
-
567
- #: admin/views/admin-settings-buttons.php:30
568
- #: admin/views/admin-settings-buttons.php:102
569
- #: admin/views/admin-settings-buttons.php:172
570
- #: admin/views/admin-settings-buttons.php:226
571
- #: admin/views/admin-settings-buttons.php:346
572
- msgid "Text colour"
573
- msgstr "Tekstkleur"
574
-
575
- #: admin/views/admin-settings-buttons.php:38
576
- #: admin/views/admin-settings-buttons.php:110
577
- #: admin/views/admin-settings-buttons.php:180
578
- #: admin/views/admin-settings-buttons.php:234
579
- #: admin/views/admin-settings-buttons.php:335
580
- msgid "Show as"
581
- msgstr "Tonen als"
582
-
583
- #: admin/views/admin-settings-buttons.php:40
584
- #: admin/views/admin-settings-buttons.php:112
585
- #: admin/views/admin-settings-buttons.php:182
586
- #: admin/views/admin-settings-buttons.php:236
587
- msgid "Button"
588
- msgstr "Knop"
589
-
590
- #: admin/views/admin-settings-buttons.php:42
591
- #: admin/views/admin-settings-buttons.php:114
592
- #: admin/views/admin-settings-buttons.php:184
593
- #: admin/views/admin-settings-buttons.php:238
594
- #: admin/views/admin-settings-buttons.php:337
595
- msgid "Link"
596
- msgstr "Link"
597
-
598
- #: admin/views/admin-settings-buttons.php:46
599
- #: admin/views/admin-settings-buttons.php:118
600
- #: admin/views/admin-settings-buttons.php:188
601
- #: admin/views/admin-settings-buttons.php:242
602
- msgid "Background colour"
603
- msgstr "Achtergrond kleur"
604
-
605
- #: admin/views/admin-settings-buttons.php:55
606
- #: admin/views/admin-settings-buttons.php:126
607
- msgid "Action"
608
- msgstr "Actie"
609
-
610
- #: admin/views/admin-settings-buttons.php:63
611
- #: admin/views/admin-settings-buttons.php:138
612
- #: admin/views/admin-settings-buttons.php:253
613
- #: admin/views/admin-settings-buttons.php:260
614
- msgid "URL"
615
- msgstr "URL"
616
-
617
- #: admin/views/admin-settings-buttons.php:66
618
- #: admin/views/admin-settings-buttons.php:141
619
- msgid "Button will only link to URL if Action = Open URL"
620
- msgstr "Knop linkt alleen naar URL als Actie = URL openen"
621
-
622
- #: admin/views/admin-settings-buttons.php:71
623
- #: admin/views/admin-settings-buttons.php:146
624
- msgid "Open URL in new window?"
625
- msgstr "Open URL in nieuw venster?"
626
-
627
- #: admin/views/admin-settings-buttons.php:73
628
- #: admin/views/admin-settings-buttons.php:148
629
- #: admin/views/admin-settings-buttons.php:304
630
- #: admin/views/admin-settings-buttons.php:311
631
- #: admin/views/admin-settings-general.php:38
632
- #: admin/views/admin-settings-general.php:54
633
- #: admin/views/admin-settings-general.php:74
634
- #: admin/views/admin-settings-general.php:82
635
- #: admin/views/admin-settings-general.php:89
636
- #: admin/views/admin-settings-messagebar.php:86
637
- #: admin/views/admin-settings-messagebar.php:110
638
- #: admin/views/admin_non_necessary_cookie.php:32
639
- msgid "Yes"
640
- msgstr "Ja"
641
-
642
- #: admin/views/admin-settings-buttons.php:75
643
- #: admin/views/admin-settings-buttons.php:149
644
- #: admin/views/admin-settings-buttons.php:305
645
- #: admin/views/admin-settings-buttons.php:312
646
- #: admin/views/admin-settings-general.php:39
647
- #: admin/views/admin-settings-general.php:55
648
- #: admin/views/admin-settings-general.php:75
649
- #: admin/views/admin-settings-general.php:83
650
- #: admin/views/admin-settings-general.php:90
651
- #: admin/views/admin-settings-messagebar.php:87
652
- #: admin/views/admin-settings-messagebar.php:111
653
- #: admin/views/admin_non_necessary_cookie.php:33
654
- #: public/modules/script-blocker/views/settings.php:139
655
- msgid "No"
656
- msgstr "Nee"
657
-
658
- #: admin/views/admin-settings-buttons.php:82
659
- #: admin/views/admin-settings-buttons.php:153
660
- #: admin/views/admin-settings-buttons.php:196
661
- #: admin/views/admin-settings-buttons.php:316
662
- msgid "Size"
663
- msgstr "Grootte"
664
-
665
- #: admin/views/admin-settings-buttons.php:207
666
- msgid ""
667
- "This button/link can be used to provide a link out to your Privacy & Cookie "
668
- "Policy. You can customise it any way you like."
669
- msgstr ""
670
- "Deze knop / koppeling kan worden gebruikt om een ​​koppeling naar uw privacy- "
671
- "en cookiebeleid te bieden. U kunt het op elke gewenste manier aanpassen."
672
-
673
- #: admin/views/admin-settings-buttons.php:212
674
- msgid "Click"
675
- msgstr "Klik"
676
-
677
- #: admin/views/admin-settings-buttons.php:212
678
- msgid "here"
679
- msgstr "hier"
680
-
681
- #: admin/views/admin-settings-buttons.php:212
682
- msgid " to generate content for Cookie Policy page."
683
- msgstr " om inhoud te genereren voor de pagina Cookiebeleid."
684
-
685
- #: admin/views/admin-settings-buttons.php:251
686
- msgid "URL or Page?"
687
- msgstr "URL of pagina?"
688
-
689
- #: admin/views/admin-settings-buttons.php:255
690
- #: admin/views/admin-settings-buttons.php:266
691
- msgid "Page"
692
- msgstr "Pagina"
693
-
694
- #: admin/views/admin-settings-buttons.php:269
695
- msgid "Select One"
696
- msgstr "Kies een"
697
-
698
- #: admin/views/admin-settings-buttons.php:294
699
- msgid "The currently selected page does not exist. Please select a new page."
700
- msgstr ""
701
- "De momenteel geselecteerde pagina bestaat niet. Selecteer alstublieft een "
702
- "nieuwe pagina."
703
-
704
- #: admin/views/admin-settings-buttons.php:302
705
- msgid "Minimize Cookie Bar in this page/URL?"
706
- msgstr "Minimaliseer Cookie Bar in deze pagina / URL?"
707
-
708
- #: admin/views/admin-settings-buttons.php:309
709
- msgid "Open in new window?"
710
- msgstr "Openen in een nieuw venster?"
711
-
712
- #: admin/views/admin-settings-buttons.php:329
713
- msgid "CCPA Text"
714
- msgstr "CCPA-tekst"
715
-
716
- #: admin/views/admin-settings-buttons.php:338
717
- msgid "Checkbox"
718
- msgstr "Checkbox"
719
-
720
- #: admin/views/admin-settings-buttons.php:340
721
- msgid "The shortcode will be represented as a link whereever used."
722
- msgstr "De shortcode wordt weergegeven als een link waar deze wordt gebruikt."
723
-
724
- #: admin/views/admin-settings-buttons.php:341
725
- msgid ""
726
- "The shortcode will be represented as a checkbox with select option to record "
727
- "consent."
728
- msgstr ""
729
- "De shortcode wordt weergegeven als een selectievakje met de optie om "
730
- "toestemming vast te leggen."
731
-
732
- #: admin/views/admin-settings-general.php:17
733
- msgid "Enable cookie bar"
734
- msgstr "Cookiebalk inschakelen"
735
-
736
- #: admin/views/admin-settings-general.php:19
737
- msgid "On"
738
- msgstr "Bij"
739
-
740
- #: admin/views/admin-settings-general.php:20
741
- msgid "Off"
742
- msgstr "Uit"
743
-
744
- #: admin/views/admin-settings-general.php:36
745
- msgid "Auto-hide(Accept) cookie bar after delay?"
746
- msgstr "Auto-Hide(accept) cookie bar na vertraging?"
747
-
748
- #: admin/views/admin-settings-general.php:43
749
- msgid "Milliseconds until hidden"
750
- msgstr "Milliseconden tot verborgen"
751
-
752
- #: admin/views/admin-settings-general.php:46
753
- msgid "Specify milliseconds (not seconds)"
754
- msgstr "Milliseconden (niet seconden) opgeven"
755
-
756
- #: admin/views/admin-settings-general.php:46
757
- msgid "seconds"
758
- msgstr "seconden"
759
-
760
- #: admin/views/admin-settings-general.php:52
761
- msgid "Auto-hide cookie bar if the user scrolls ( Accept on Scroll )?"
762
- msgstr ""
763
- "Cookiesbalk automatisch verbergen als de gebruiker scrolt (Accepteer op "
764
- "scrollen)?"
765
-
766
- #: admin/views/admin-settings-general.php:56
767
- msgid ""
768
- "As per latest GDPR policies it is required to take an explicit consent for "
769
- "the cookies. Use this option with discretion especially if you serve EU"
770
- msgstr ""
771
- "Volgens nieuwste GDPR beleid is het verplicht te nemen van een uitdrukkelijke "
772
- "toestemming voor de cookies. Gebruik deze optie met discretie, vooral als je "
773
- "EU dienen"
774
-
775
- #: admin/views/admin-settings-general.php:57
776
- msgid "This option will not work along with `Popup overlay`."
777
- msgstr "Deze optie werkt niet samen met `Popup-overlay`."
778
-
779
- #: admin/views/admin-settings-general.php:69
780
- msgid "Reload after \"scroll accept\" event?"
781
- msgstr "Herladen na \"scrollen accepteren\" -gebeurtenis?"
782
-
783
- #: admin/views/admin-settings-general.php:80
784
- msgid "Reload after Accept button click"
785
- msgstr "Herladen na klikken op Accepteren"
786
-
787
- #: admin/views/admin-settings-general.php:87
788
- msgid "Reload after Reject button click"
789
- msgstr "Opnieuw laden na klikken op Weigeren"
790
-
791
- #: admin/views/admin-settings-help.php:9
792
- msgid "Shortcodes"
793
- msgstr "Shortcodes"
794
-
795
- #: admin/views/admin-settings-help.php:10
796
- #: admin/views/admin-settings-help.php:103
797
- msgid "Help Links"
798
- msgstr "Help links"
799
-
800
- #: admin/views/admin-settings-help.php:16
801
- msgid "Cookie bar shortcodes"
802
- msgstr "Cookie bar shortcodes"
803
-
804
- #: admin/views/admin-settings-help.php:17
805
- msgid ""
806
- "You can enter the shortcodes in the \"message\" field of the Cookie Law Info "
807
- "bar. They add nicely formatted buttons and/or links into the cookie bar, "
808
- "without you having to add any HTML."
809
- msgstr ""
810
- "U kunt de shortcodes invoeren in het veld \"message\" van de cookiewetinfo-"
811
- "balk. Ze voegen mooi opgemaakte knoppen en / of koppelingen toe aan de "
812
- "cookiebalk, zonder dat u HTML hoeft toe te voegen."
813
-
814
- #: admin/views/admin-settings-help.php:22
815
- msgid "This is the \"main button\" you customise above."
816
- msgstr "Dit is de \"main button\" u hierboven aanpassen."
817
-
818
- #: admin/views/admin-settings-help.php:26
819
- msgid "This is the cookie reject button shortcode."
820
- msgstr "Dit is de shortcode van de cookieverwijderingsknop."
821
-
822
- #: admin/views/admin-settings-help.php:30
823
- msgid "This is the cookie settings button rendering shortcode."
824
- msgstr "Dit is de shortcode voor het renderen van cookietypes."
825
-
826
- #: admin/views/admin-settings-help.php:33
827
- msgid "This is the \"read more\" link you customise above."
828
- msgstr "Dit is de \"Lees meer\" link van hierboven."
829
-
830
- #: admin/views/admin-settings-help.php:36
831
- msgid "Setup margin for above buttons"
832
- msgstr "Setupmarge voor bovenstaande knoppen"
833
-
834
- #: admin/views/admin-settings-help.php:65
835
- msgid "Other shortcodes"
836
- msgstr "Andere shortcodes"
837
-
838
- #: admin/views/admin-settings-help.php:66
839
- msgid ""
840
- "These shortcodes can be used in pages and posts on your website. It is not "
841
- "recommended to use these inside the cookie bar itself."
842
- msgstr ""
843
- "Deze shortcodes kunnen worden gebruikt in pagina's en berichten op uw "
844
- "website. Het is niet aan te raden om deze in de koekjesbalk zelf te gebruiken."
845
-
846
- #: admin/views/admin-settings-help.php:72
847
- msgid ""
848
- "This prints out a nice table of cookies, in line with the guidance given by "
849
- "the ICO."
850
- msgstr ""
851
- "Dit drukt een mooie tabel met cookies uit, in overeenstemming met de "
852
- "richtlijnen van de ICO."
853
-
854
- #: admin/views/admin-settings-help.php:72
855
- msgid ""
856
- "You need to enter the cookies your website uses via the Cookie Law Info menu "
857
- "in your WordPress dashboard."
858
- msgstr ""
859
- "U moet uw cookies invoeren via het menu Cookie Law Info in uw WordPress-"
860
- "dashboard."
861
-
862
- #: admin/views/admin-settings-help.php:80
863
- msgid "Styles included"
864
- msgstr "Stijlen inbegrepen"
865
-
866
- #: admin/views/admin-settings-help.php:82
867
- msgid "Columns available"
868
- msgstr "Kolommen beschikbaar"
869
-
870
- #: admin/views/admin-settings-help.php:82
871
- msgid "Will print all columns by default."
872
- msgstr "Alle kolommen worden standaard afgedrukt."
873
-
874
- #: admin/views/admin-settings-help.php:86
875
- msgid ""
876
- "This shortcode will display a normal HTML link which when clicked, will "
877
- "delete the cookie set by Cookie Law Info (this cookie is used to remember "
878
- "that the cookie bar is closed)."
879
- msgstr ""
880
- "Deze shortcode geeft een normale cookie weer die door de cookieverzameling "
881
- "zal worden gebruikt. Cookie Law Info (deze cookie wordt gebruikt om te "
882
- "onthouden dat de cookie-balk gesloten is)."
883
-
884
- #: admin/views/admin-settings-help.php:90
885
- msgid ""
886
- "Add any text you like- useful if you want e.g. another language to English."
887
- msgstr ""
888
- "Voeg elke gewenste tekst toe, handig als u bijvoorbeeld een andere taal wilt "
889
- "gebruiken in het Engels."
890
-
891
- #: admin/views/admin-settings-help.php:94
892
- msgid "Add content after accepting the cookie notice."
893
- msgstr "Voeg inhoud toe nadat u de cookie-melding hebt geaccepteerd."
894
-
895
- #: admin/views/admin-settings-help.php:107
896
- #: admin/views/admin-settings-help.php:110 admin/views/goto-pro.php:103
897
- msgid "Documentation"
898
- msgstr "Documentatie"
899
-
900
- #: admin/views/admin-settings-help.php:108
901
- msgid "Refer to our documentation to set and get started"
902
- msgstr "Raadpleeg onze documentatie om in te stellen en aan de slag te gaan"
903
-
904
- #: admin/views/admin-settings-help.php:115
905
- msgid "Help and Support"
906
- msgstr "Hulp en ondersteuning"
907
-
908
- #: admin/views/admin-settings-help.php:116
909
- msgid "We would love to help you on any queries or issues."
910
- msgstr "We helpen je graag bij vragen of problemen."
911
-
912
- #: admin/views/admin-settings-help.php:118
913
- msgid "Contact Us"
914
- msgstr "Neem contact met ons op"
915
-
916
- #: admin/views/admin-settings-messagebar.php:9
917
- msgid "Cookie bar"
918
- msgstr "Koekjesbalk"
919
-
920
- #: admin/views/admin-settings-messagebar.php:10
921
- #: admin/views/admin-settings-messagebar.php:145
922
- msgid "Revisit consent"
923
- msgstr "Herhaal toestemming"
924
-
925
- #: admin/views/admin-settings-messagebar.php:15
926
- msgid "Cookie Bar"
927
- msgstr "Cookie Bar"
928
-
929
- #: admin/views/admin-settings-messagebar.php:18
930
- msgid "Message Heading"
931
- msgstr "Berichtkop"
932
-
933
- #: admin/views/admin-settings-messagebar.php:21
934
- msgid "Leave it blank, If you do not need a heading"
935
- msgstr "Laat het leeg, als u geen titel nodig heeft"
936
-
937
- #: admin/views/admin-settings-messagebar.php:26
938
- msgid "Message"
939
- msgstr "Bericht"
940
-
941
- #: admin/views/admin-settings-messagebar.php:32
942
- msgid "Shortcodes allowed: see the Help Guide tab"
943
- msgstr "Toegestane kortingscodes: zie het tabblad Helpgids"
944
-
945
- #: admin/views/admin-settings-messagebar.php:32
946
- msgid ""
947
- "Examples: \"We use cookies on this website [cookie_accept] to find out how to "
948
- "delete cookies [cookie_link].\""
949
- msgstr ""
950
- "Voorbeelden: \"We gebruiken cookies op deze website [cookie_accept] om "
951
- "erachter te komen hoe cookies kunnen worden verwijderd [cookie_link].\""
952
-
953
- #: admin/views/admin-settings-messagebar.php:36
954
- msgid "Cookie Bar Colour"
955
- msgstr "Cookie Bar Color"
956
-
957
- #: admin/views/admin-settings-messagebar.php:46
958
- msgid "Text Colour"
959
- msgstr "Text Colour"
960
-
961
- #: admin/views/admin-settings-messagebar.php:55
962
- msgid "Font"
963
- msgstr "Doopvont"
964
-
965
- #: admin/views/admin-settings-messagebar.php:63
966
- msgid "Show cookie bar as"
967
- msgstr "Laat de koekjesbalk zien als"
968
-
969
- #: admin/views/admin-settings-messagebar.php:68
970
- msgid "Banner"
971
- msgstr "Banner"
972
-
973
- #: admin/views/admin-settings-messagebar.php:69
974
- msgid "Popup"
975
- msgstr "Pop-up"
976
-
977
- #: admin/views/admin-settings-messagebar.php:70
978
- msgid "Widget"
979
- msgstr "Widget"
980
-
981
- #: admin/views/admin-settings-messagebar.php:74
982
- msgid "Position"
983
- msgstr "Positie"
984
-
985
- #: admin/views/admin-settings-messagebar.php:84
986
- msgid "Add overlay?"
987
- msgstr "Overlay toevoegen?"
988
-
989
- #: admin/views/admin-settings-messagebar.php:88
990
- msgid ""
991
- "When the popup is active, an overlay will block the user from browsing the "
992
- "site."
993
- msgstr ""
994
- "Wanneer de pop-up actief is, blokkeert een overlay de gebruiker van het "
995
- "surfen op de site."
996
-
997
- #: admin/views/admin-settings-messagebar.php:89
998
- msgid "`Accept on scroll` will not work along with this option."
999
- msgstr "`Accepteren bij scrollen` werkt niet samen met deze optie."
1000
-
1001
- #: admin/views/admin-settings-messagebar.php:93
1002
- msgid "Position:"
1003
- msgstr "Positie:"
1004
-
1005
- #: admin/views/admin-settings-messagebar.php:98
1006
- msgid "Header"
1007
- msgstr "Header"
1008
-
1009
- #: admin/views/admin-settings-messagebar.php:99
1010
- msgid "Footer"
1011
- msgstr "Voettekst gebied"
1012
-
1013
- #: admin/views/admin-settings-messagebar.php:108
1014
- msgid "Fix Cookie Bar to Header?"
1015
- msgstr "Fix Cookie Bar aan kop?"
1016
-
1017
- #: admin/views/admin-settings-messagebar.php:112
1018
- msgid ""
1019
- "If you select \"Header\" then you can optionally stick the cookie bar to the "
1020
- "header. Will not have any effect if you select \"Footer\"."
1021
- msgstr ""
1022
- "Als u \"Koptekst\" selecteert, kunt u de cookie-balk optioneel aan de kop "
1023
- "toevoegen. Heeft geen effect als u \"Voettekst\" selecteert."
1024
-
1025
- #: admin/views/admin-settings-messagebar.php:120
1026
- msgid "On load"
1027
- msgstr "Bij het laden"
1028
-
1029
- #: admin/views/admin-settings-messagebar.php:125
1030
- #: admin/views/admin-settings-messagebar.php:135
1031
- msgid "Animate"
1032
- msgstr "Animeer"
1033
-
1034
- #: admin/views/admin-settings-messagebar.php:126
1035
- #: admin/views/admin-settings-messagebar.php:136
1036
- msgid "Sticky"
1037
- msgstr "Sticky"
1038
-
1039
- #: admin/views/admin-settings-messagebar.php:130
1040
- msgid "On hide"
1041
- msgstr "Op hide"
1042
-
1043
- #: admin/views/admin-settings-messagebar.php:145
1044
- msgid "previously"
1045
- msgstr "eerder"
1046
-
1047
- #: admin/views/admin-settings-messagebar.php:145
1048
- msgid "Show again tab"
1049
- msgstr "Weergeven tabblad"
1050
-
1051
- #: admin/views/admin-settings-messagebar.php:147
1052
- msgid ""
1053
- "Revisit consent will allow the visitors to view/edit/revoke their prior "
1054
- "preferences. This can be done via a widget and/or a shortcode. A small "
1055
- "privacy widget is automatically displayed at the footer of your website if "
1056
- "the widget option is enabled. You can also manually insert a link to manage "
1057
- "consent by adding the shortcode <b>[wt_cli_manage_consent]</b> to your "
1058
- "website."
1059
- msgstr ""
1060
- "Door de toestemming opnieuw te bezoeken, kunnen bezoekers hun eerdere "
1061
- "voorkeuren bekijken / bewerken / intrekken. Dit kan via een widget en / of "
1062
- "een shortcode. Een kleine privacywidget wordt automatisch weergegeven in de "
1063
- "voettekst van uw website als de widgetoptie is ingeschakeld. U kunt ook "
1064
- "handmatig een link invoegen om toestemming te beheren door de shortcode "
1065
- "<b>[wt_cli_manage_consent]</b> aan uw website toe te voegen."
1066
-
1067
- #: admin/views/admin-settings-messagebar.php:152
1068
- msgid "Enable revisit consent widget"
1069
- msgstr "Schakel widget voor opnieuw bezoeken van toestemming in"
1070
-
1071
- #: admin/views/admin-settings-messagebar.php:152
1072
- msgid ""
1073
- "By enabling this option a small privacy widget is automatically displayed at "
1074
- "the footer of your website."
1075
- msgstr ""
1076
- "Door deze optie in te schakelen, wordt automatisch een kleine privacywidget "
1077
- "weergegeven onder aan uw website."
1078
-
1079
- #: admin/views/admin-settings-messagebar.php:163
1080
- #: admin/views/admin-settings-messagebar.php:180
1081
- msgid "Tab Position"
1082
- msgstr "Positie van het tabblad"
1083
-
1084
- #: admin/views/admin-settings-messagebar.php:168
1085
- #: admin/views/admin-settings-messagebar.php:171
1086
- msgid "Right"
1087
- msgstr "Rechts"
1088
-
1089
- #: admin/views/admin-settings-messagebar.php:169
1090
- #: admin/views/admin-settings-messagebar.php:172
1091
- msgid "Left"
1092
- msgstr "Links"
1093
-
1094
- #: admin/views/admin-settings-messagebar.php:187
1095
- msgid "Bottom Right"
1096
- msgstr "Rechts onder"
1097
-
1098
- #: admin/views/admin-settings-messagebar.php:190
1099
- msgid "Bottom Left"
1100
- msgstr "Linksonder"
1101
-
1102
- #: admin/views/admin-settings-messagebar.php:193
1103
- msgid "Top Right"
1104
- msgstr "Rechtsboven"
1105
-
1106
- #: admin/views/admin-settings-messagebar.php:196
1107
- msgid "Top Left"
1108
- msgstr "Linksboven"
1109
-
1110
- #: admin/views/admin-settings-messagebar.php:203
1111
- msgid "From Right Margin"
1112
- msgstr "Vanaf de rechtermarge"
1113
-
1114
- #: admin/views/admin-settings-messagebar.php:203
1115
- msgid "From Left Margin"
1116
- msgstr "Van linkermarge"
1117
-
1118
- #: admin/views/admin-settings-messagebar.php:206
1119
- msgid "Specify"
1120
- msgstr "Specifiek"
1121
-
1122
- #: admin/views/admin-settings-messagebar.php:215
1123
- #: admin/views/admin_necessary_cookie.php:33
1124
- #: admin/views/admin_non_necessary_cookie.php:48
1125
- msgid "Title"
1126
- msgstr "Titel"
1127
-
1128
- #: admin/views/admin-settings-save-button.php:12
1129
- #: admin/views/admin_necessary_cookie.php:52
1130
- #: admin/views/admin_non_necessary_cookie.php:87
1131
- #: public/modules/script-blocker/script-blocker.php:219
1132
- msgid "Update Settings"
1133
- msgstr "Bijwerken Instellingen"
1134
-
1135
- #: admin/views/admin_necessary_cookie.php:26
1136
- msgid "Necessary Cookie Settings"
1137
- msgstr "Noodzakelijke cookie-instellingen"
1138
-
1139
- #: admin/views/admin_non_necessary_cookie.php:23
1140
- msgid "Non-necessary Cookie Settings"
1141
- msgstr "Niet-noodzakelijke cookie-instellingen"
1142
-
1143
- #: admin/views/admin_non_necessary_cookie.php:31
1144
- msgid "Enable Non-necessary Cookie"
1145
- msgstr "Schakel niet noodzakelijke cookies in"
1146
-
1147
- #: admin/views/admin_non_necessary_cookie.php:38
1148
- msgid "Default state"
1149
- msgstr "Standaardstatus"
1150
-
1151
- #: admin/views/admin_non_necessary_cookie.php:39
1152
- #: public/modules/script-blocker/views/settings.php:141
1153
- #: public/views/cookie-law-info_popup_content.php:7
1154
- msgid "Enabled"
1155
- msgstr "Ingeschakeld"
1156
-
1157
- #: admin/views/admin_non_necessary_cookie.php:40
1158
- #: public/views/cookie-law-info_popup_content.php:8
1159
- msgid "Disabled"
1160
- msgstr "Invalide"
1161
-
1162
- #: admin/views/admin_non_necessary_cookie.php:42
1163
- msgid ""
1164
- "If you enable this option, the category toggle button will be in the active "
1165
- "state for cookie consent."
1166
- msgstr ""
1167
- "Als u deze optie inschakelt, bevindt de schakelaar voor categorieknoppen zich "
1168
- "in de actieve status voor toestemming voor cookies."
1169
-
1170
- #: admin/views/admin_non_necessary_cookie.php:62
1171
- msgid ""
1172
- "This script will be added to the page HEAD section if the above settings is "
1173
- "enabled and user has give consent."
1174
- msgstr "Dit script wordt toegevoegd aan de HEAD-sectie indien ingeschakeld."
1175
-
1176
- #: admin/views/admin_non_necessary_cookie.php:67
1177
- msgid ""
1178
- "Print scripts in the head tag on the front end if above cookie settings is "
1179
- "enabled and user has given consent."
1180
- msgstr "Gedrukte scripts in de head-tag aan de voorkant."
1181
-
1182
- #: admin/views/admin_non_necessary_cookie.php:74
1183
- msgid ""
1184
- "This script will be added right after the BODY section if the above settings "
1185
- "is enabled and user has given consent."
1186
- msgstr "Dit script wordt toegevoegd na de BODY-sectie, indien ingeschakeld."
1187
-
1188
- #: admin/views/admin_non_necessary_cookie.php:77
1189
- msgid ""
1190
- "Print scripts before the closing body tag on the front end if above cookie "
1191
- "settings is enabled and user has given consent."
1192
- msgstr "Print scripts vóór de afsluitende body-tag aan de voorkant."
1193
-
1194
- #: admin/views/goto-pro.php:56
1195
- msgid "Where did my settings go?"
1196
- msgstr "Waar zijn mijn instellingen gebleven?"
1197
-
1198
- #: admin/views/goto-pro.php:57
1199
- msgid "Cookie Law Info version 0.9 has been updated and has new settings."
1200
- msgstr "Cookie Law Info versie 0.9 is bijgewerkt en heeft nieuwe instellingen."
1201
-
1202
- #: admin/views/goto-pro.php:57
1203
- msgid "Your previous settings are safe."
1204
- msgstr "Je vorige instellingen zijn veilig."
1205
-
1206
- #: admin/views/goto-pro.php:58
1207
- msgid ""
1208
- "You can either copy over your old settings to this version, or use the new "
1209
- "default values."
1210
- msgstr ""
1211
- "U kunt uw oude instellingen naar deze versie kopiëren of de nieuwe "
1212
- "standaardwaarden gebruiken."
1213
-
1214
- #: admin/views/goto-pro.php:60
1215
- msgid "Would you like to:"
1216
- msgstr "Zou jij willen:"
1217
-
1218
- #: admin/views/goto-pro.php:62
1219
- msgid "Use previous settings"
1220
- msgstr "Gebruik de vorige instellingen"
1221
-
1222
- #: admin/views/goto-pro.php:63
1223
- msgid "Start afresh with the new version"
1224
- msgstr "Begin opnieuw met de nieuwe versie"
1225
-
1226
- #: admin/views/goto-pro.php:67
1227
- msgid ""
1228
- "If you want to go back to the previous version you can always download it "
1229
- "again from"
1230
- msgstr ""
1231
- "Als u terug wilt naar de vorige versie, kunt u deze altijd opnieuw downloaden"
1232
-
1233
- #: admin/views/goto-pro.php:73
1234
- msgid "30 Day Money Back Guarantee"
1235
- msgstr "30-dagen geld terug garantie"
1236
-
1237
- #: admin/views/goto-pro.php:74
1238
- msgid "Fast and Superior Support"
1239
- msgstr "Snelle en superieure ondersteuning"
1240
-
1241
- #: admin/views/goto-pro.php:75
1242
- msgid "10X Powerful with GDPR Cookie Consent Features That Every Site Needs"
1243
- msgstr ""
1244
- "10x Krachtig met GDPR Cookie-toestemmingskenmerken die elke site nodig heeft"
1245
-
1246
- #: admin/views/goto-pro.php:78
1247
- msgid "Upgrade to Premium"
1248
- msgstr "Upgrade naar premium"
1249
-
1250
- #: admin/views/goto-pro.php:84
1251
- msgid "Automatic Cookie Scanner"
1252
- msgstr "Automatische cookie-scanner"
1253
-
1254
- #: admin/views/goto-pro.php:85
1255
- msgid ""
1256
- "Auto block scripts - Google Analytics, Facebook Pixel, Google Tag Manager, "
1257
- "Hotjar Analytics, Google Publisher Tag, Youtube embed, Vimeo embed, Google "
1258
- "maps, Addthis widget, Sharethis widget, Twitter widget, Soundcloud embed, "
1259
- "Slideshare embed, Linkedin widget, Instagram embed, Pinterest widget"
1260
- msgstr ""
1261
- "Automatische blokscripts - Google Analytics, Facebook Pixel, Google Tag "
1262
- "Manager, Hotjar Analytics, Google-uitgeverstag, YouTube-embed, Vimeo embed, "
1263
- "Google maps, Addthis-widget, Sharethis-widget, Twitter-widget, Soundcloud-"
1264
- "embed, Slideshare-embed, Linkedin-widget, Instagram-embed , Pinterest-widget"
1265
-
1266
- #: admin/views/goto-pro.php:86
1267
- msgid "Location based exclusion of cookie notice for EU countries"
1268
- msgstr "Op locatie gebaseerde uitsluiting van cookiemelding voor EU-landen"
1269
-
1270
- #: admin/views/goto-pro.php:87
1271
- msgid "Granular control over the cookies/scipts used by the website"
1272
- msgstr "Granulaire controle over de cookies / scipts gebruikt door de website"
1273
-
1274
- #: admin/views/goto-pro.php:88
1275
- msgid "User consent audit logs"
1276
- msgstr "Controlelogboeken voor gebruikerstoestemming"
1277
-
1278
- #: admin/views/goto-pro.php:89
1279
- msgid "Customized privacy overview"
1280
- msgstr "Aangepast privacyoverzicht"
1281
-
1282
- #: admin/views/goto-pro.php:90
1283
- msgid "Cookie bar preview in admin settings page"
1284
- msgstr ""
1285
- "Voorbeeld van de voorbeeldpagina van de cookie op de pagina met "
1286
- "beheerdersinstellingen"
1287
-
1288
- #: admin/views/goto-pro.php:91
1289
- msgid "Advanced support for cache plugins"
1290
- msgstr "Geavanceerde ondersteuning voor cache-plug-ins"
1291
-
1292
- #: admin/views/goto-pro.php:92
1293
- msgid "Cookie bar theme customizer for banner/ widgets/ popup"
1294
- msgstr "Cookie bar thema-aanpasser voor banner / widgets / pop-up"
1295
-
1296
- #: admin/views/goto-pro.php:93
1297
- msgid "GDPR compliance with Google Tag Manager"
1298
- msgstr "GDPR-conformiteit met Google Tag Manager"
1299
-
1300
- #: admin/views/goto-pro.php:94
1301
- msgid "Javascript helper functions"
1302
- msgstr "Javascript-helperfuncties"
1303
-
1304
- #: admin/views/goto-pro.php:108
1305
- msgid "Like this plugin?"
1306
- msgstr "Vind je deze plug-in leuk?"
1307
-
1308
- #: admin/views/goto-pro.php:109
1309
- msgid "If you find this plugin useful please show your support and rate it"
1310
- msgstr ""
1311
- "Als u deze plug-in nuttig vindt, toon dan alstublieft uw steun en beoordeel "
1312
- "deze"
1313
-
1314
- #: admin/views/goto-pro.php:109
1315
- msgid " on"
1316
- msgstr " op"
1317
-
1318
- #: admin/views/goto-pro.php:109
1319
- msgid " much appreciated!"
1320
- msgstr " zeer gewaardeerd!"
1321
-
1322
- #: cookie-law-info.php:80
1323
- msgid ""
1324
- "Please make sure the cache is cleared after each plugin update especially if "
1325
- "you have minified JS and/or CSS files."
1326
- msgstr ""
1327
- "Zorg ervoor dat het cachegeheugen wordt gewist na elke update van de plug-in, "
1328
- "vooral als je verkleinde JS- en / of CSS-bestanden hebt."
1329
-
1330
- #: includes/class-cookie-law-info-review_request.php:52
1331
- #, php-format
1332
- msgid ""
1333
- "Hey, we at %sWebToffee%s would like to thank you for using our plugin. We "
1334
- "would really appreciate if you could take a moment to drop a quick review "
1335
- "that will inspire us to keep going."
1336
- msgstr ""
1337
- "Hallo, wij bij %sWebToffee% s willen je bedanken voor het gebruik van onze "
1338
- "plug-in. We zouden het erg op prijs stellen als u even de tijd neemt om een "
1339
- "korte recensie achter te laten die ons zal inspireren om door te gaan."
1340
-
1341
- #: includes/class-cookie-law-info-review_request.php:55
1342
- msgid "Remind me later"
1343
- msgstr "Herinner me er later aan"
1344
-
1345
- #: includes/class-cookie-law-info-review_request.php:56
1346
- msgid "Not interested"
1347
- msgstr "Niet geïnteresseerd"
1348
-
1349
- #: includes/class-cookie-law-info-review_request.php:57
1350
- msgid "Review now"
1351
- msgstr "Nu beoordelen"
1352
-
1353
- #: public/class-cookie-law-info-public.php:251
1354
- msgid "GDPR Cookie Consent"
1355
- msgstr "GDPR Cookie-toestemming"
1356
-
1357
- #: public/class-cookie-law-info-public.php:252
1358
- msgid "Cookie List"
1359
- msgstr "Cookie lijst"
1360
-
1361
- #: public/class-cookie-law-info-public.php:253
1362
- #: public/modules/shortcode/shortcode.php:208
1363
- msgid "Cookie"
1364
- msgstr "Koekje"
1365
-
1366
- #: public/class-cookie-law-info-public.php:254
1367
- msgid "Add New"
1368
- msgstr "Voeg nieuw toe"
1369
-
1370
- #: public/class-cookie-law-info-public.php:255
1371
- msgid "Add New Cookie Type"
1372
- msgstr "Voeg nieuw Cookie Type toe"
1373
-
1374
- #: public/class-cookie-law-info-public.php:256
1375
- msgid "Edit Cookie Type"
1376
- msgstr "Bewerk het cookie type"
1377
-
1378
- #: public/class-cookie-law-info-public.php:257
1379
- msgid "New Cookie Type"
1380
- msgstr "Nieuw Cookie Type"
1381
-
1382
- #: public/class-cookie-law-info-public.php:258
1383
- msgid "View Cookie Type"
1384
- msgstr "Bekijk Cookie Type"
1385
-
1386
- #: public/class-cookie-law-info-public.php:259
1387
- msgid "Search Cookies"
1388
- msgstr "Zoek in cookies"
1389
-
1390
- #: public/class-cookie-law-info-public.php:260
1391
- msgid "Nothing found"
1392
- msgstr "Niets gevonden"
1393
-
1394
- #: public/class-cookie-law-info-public.php:261
1395
- msgid "Nothing found in Trash"
1396
- msgstr "Niets gevonden in de prullenbak"
1397
-
1398
- #: public/modules/script-blocker/script-blocker.php:156
1399
- #: public/modules/script-blocker/script-blocker.php:157
1400
- msgid "Script Blocker"
1401
- msgstr "Scriptblocker"
1402
-
1403
- #: public/modules/script-blocker/script-blocker.php:182
1404
- msgid "Status updated"
1405
- msgstr "Status bijgewerkt"
1406
-
1407
- #: public/modules/script-blocker/script-blocker.php:206
1408
- msgid "Advanced script rendering"
1409
- msgstr "Geavanceerde scriptweergave"
1410
-
1411
- #: public/modules/script-blocker/script-blocker.php:208
1412
- #: public/modules/script-blocker/views/settings.php:7
1413
- msgid "Enable"
1414
- msgstr "Inschakelen"
1415
-
1416
- #: public/modules/script-blocker/script-blocker.php:209
1417
- #: public/modules/script-blocker/views/settings.php:7
1418
- msgid "Disable"
1419
- msgstr "Uitschakelen"
1420
-
1421
- #: public/modules/script-blocker/script-blocker.php:210
1422
- msgid ""
1423
- "Advanced script rendering will render the blocked scripts using javascript "
1424
- "thus eliminating the need for a page refresh. It is also optimized for "
1425
- "caching since there is no server-side processing after obtaining the consent."
1426
- msgstr ""
1427
- "Geavanceerde scriptweergave geeft de geblokkeerde scripts weer met "
1428
- "JavaScript, waardoor de pagina niet hoeft te worden vernieuwd. Het is ook "
1429
- "geoptimaliseerd voor caching, aangezien er geen server-side verwerking "
1430
- "plaatsvindt na het verkrijgen van de toestemming."
1431
-
1432
- #: public/modules/script-blocker/views/settings.php:9
1433
- msgid "Script blocker is enabled."
1434
- msgstr "Scriptblokkering is ingeschakeld."
1435
-
1436
- #: public/modules/script-blocker/views/settings.php:9
1437
- msgid ""
1438
- "Script blocker is currently disabled. Enable the blocker if you want any of "
1439
- "the below listed plugins to be auto blocked."
1440
- msgstr ""
1441
- "Scriptblokkering is momenteel uitgeschakeld. Schakel de blocker in als u wilt "
1442
- "dat een van de onderstaande plug-ins automatisch wordt geblokkeerd."
1443
-
1444
- #: public/modules/script-blocker/views/settings.php:10
1445
- #, php-format
1446
- msgid "<a href=\"javascript: submitform()\">%s</a>"
1447
- msgstr "<a href=\"javascript: submitform()\">%s</a>"
1448
-
1449
- #: public/modules/script-blocker/views/settings.php:14
1450
- #, php-format
1451
- msgid ""
1452
- "Advanced script rendering is currently disabled. It should be enabled for the "
1453
- "automatic script blocker to function. <a href=\"%s\">Enable.</a>"
1454
- msgstr ""
1455
- "Geavanceerde scriptweergave is momenteel uitgeschakeld. Het moet zijn "
1456
- "ingeschakeld om de automatische scriptblokkering te laten werken. <a href=\"%s"
1457
- "\">Inschakelen.</a>"
1458
-
1459
- #: public/modules/script-blocker/views/settings.php:113
1460
- msgid "Manage Script Blocking"
1461
- msgstr "Beheer Scriptblokkering"
1462
-
1463
- #: public/modules/script-blocker/views/settings.php:134
1464
- #, php-format
1465
- msgid ""
1466
- "Below is the list of plugins currently supported for auto blocking. Plugins "
1467
- "marked inactive are either not installed or activated on your website. "
1468
- "Enabled plugins will be blocked by default on the front-end of your website "
1469
- "prior to obtaining user consent and rendered respectively based on consent. "
1470
- "<a href=\"%s\" target=\"_blank\">Read more.</a>"
1471
- msgstr ""
1472
- "Hieronder staat de lijst met plug-ins die momenteel worden ondersteund voor "
1473
- "automatisch blokkeren. Plug-ins die als inactief zijn gemarkeerd, zijn niet "
1474
- "geïnstalleerd of geactiveerd op uw website. Ingeschakelde plug-ins worden "
1475
- "standaard geblokkeerd aan de voorkant van uw website voordat toestemming van "
1476
- "de gebruiker wordt verkregen en respectievelijk op basis van toestemming. <a "
1477
- "href=\"%s\" target=\"_blank\">Lees verder.</a>"
1478
-
1479
- #: public/modules/script-blocker/views/settings.php:140
1480
- msgid "Name"
1481
- msgstr "Naam"
1482
-
1483
- #: public/modules/script-blocker/views/settings.php:141
1484
- msgid ""
1485
- "Enabled: Plugins will be blocked by default prior to obtaining user consent."
1486
- msgstr ""
1487
- "Ingeschakeld: plug-ins worden standaard geblokkeerd voordat toestemming van "
1488
- "de gebruiker wordt verkregen."
1489
-
1490
- #: public/modules/script-blocker/views/settings.php:141
1491
- msgid "Disabled: Plugins will be rendered prior to obtaining consent."
1492
- msgstr ""
1493
- "Uitgeschakeld: plug-ins worden weergegeven voordat toestemming is verkregen."
1494
-
1495
- #: public/modules/script-blocker/views/settings.php:175
1496
- msgid "Inactive"
1497
- msgstr "Inactief"
1498
-
1499
- #: public/modules/shortcode/shortcode.php:99
1500
- msgid "Your current state:"
1501
- msgstr "Uw huidige staat:"
1502
-
1503
- #: public/modules/shortcode/shortcode.php:104
1504
- msgid "Consent accepted."
1505
- msgstr "Toestemming geaccepteerd."
1506
-
1507
- #: public/modules/shortcode/shortcode.php:107
1508
- msgid "Consent rejected."
1509
- msgstr "Toestemming afgewezen."
1510
-
1511
- #: public/modules/shortcode/shortcode.php:111
1512
- msgid "No consent given."
1513
- msgstr "Geen toestemming gegeven."
1514
-
1515
- #: public/modules/shortcode/shortcode.php:113
1516
- msgid "Manage your consent."
1517
- msgstr "Beheer uw toestemming."
1518
-
1519
- #: public/modules/shortcode/shortcode.php:150
1520
- msgid "Delete Cookies"
1521
- msgstr "Verwijder cookies"
1522
-
1523
- #: public/modules/shortcode/shortcode.php:186
1524
- msgid "No records found"
1525
- msgstr "Geen verslagen gevonden"
1526
-
1527
- #: public/modules/shortcode/shortcode.php:212
1528
- msgid "Type"
1529
- msgstr "Type"
1530
-
1531
- #: public/modules/shortcode/shortcode.php:216
1532
- msgid "Duration"
1533
- msgstr "Duur"
1534
-
1535
- #: public/modules/shortcode/shortcode.php:533
1536
- msgid "Close the cookie bar"
1537
- msgstr "Sluit de koekjesbalk"
1538
-
1539
- #: public/modules/shortcode/shortcode.php:533
1540
- msgid "Close and Accept"
1541
- msgstr "Sluit en accepteer"
1542
-
1543
- #: public/views/cookie-law-info_bar.php:23
1544
- msgid "Close"
1545
- msgstr "Sluiten"
1546
-
1547
- #: public/views/cookie-law-info_popup_content.php:6
1548
- msgid "Always Enabled"
1549
- msgstr "Altijd ingeschakeld"
1550
-
1551
- #: public/views/cookie-law-info_popup_content.php:9
1552
- msgid "Show more"
1553
- msgstr "Meer weergeven"
1554
-
1555
- #: public/views/cookie-law-info_popup_content.php:9
1556
- msgid "Show less"
1557
- msgstr "Laat minder zien"
1558
-
1559
- #~ msgid ""
1560
- #~ "Which plugin are you using for language translation? Could you tell us a "
1561
- #~ "bit more?"
1562
- #~ msgstr ""
1563
- #~ "Welke plug-in gebruik je voor taalvertaling? Kunt u ons iets meer "
1564
- #~ "vertellen?"
1565
-
1566
- #~ msgid "Caching issues"
1567
- #~ msgstr "Cacheproblemen"
1568
-
1569
- #~ msgid "Which caching plugin are you using? Could you tell us a bit more?"
1570
- #~ msgstr "Welke caching-plug-in gebruikt u? Kunt u ons iets meer vertellen?"
1571
-
1572
- #~ msgid "Cookie Law Settings"
1573
- #~ msgstr "Cookiewetgeving"
1574
-
1575
- #~ msgid "Show Again Tab"
1576
- #~ msgstr "Weergeven Tab"
1577
-
1578
- #~ msgid "Use Show Again Tab?"
1579
- #~ msgstr "Gebruik het tabblad Weergeven?"
1580
-
1581
- #~ msgid "Show More Text"
1582
- #~ msgstr "Meer tekst weergeven"
1583
-
1584
- #~ msgid "Non-necessary Cookie"
1585
- #~ msgstr "Niet noodzakelijk Cookie"
1586
-
1587
- #~ msgid "Necessary Cookie"
1588
- #~ msgstr "Noodzakelijke Cookie"
1589
-
1590
- #~ msgid "Your Cookie Law Info bar is switched on"
1591
- #~ msgstr "Uw cookiewetinfo-balk is ingeschakeld"
1592
-
1593
- #~ msgid "Your Cookie Law Info bar is switched off"
1594
- #~ msgstr "Uw cookiewetinfo-balk is uitgeschakeld"
1595
-
1596
- #~ msgid "Cookie Bar will be shown in:"
1597
- #~ msgstr "Cookie Bar wordt getoond in:"
1598
-
1599
- #~ msgid "Disappear"
1600
- #~ msgstr "Verdwijnen"
1601
-
1602
- #~ msgid "Show Border?"
1603
- #~ msgstr "Rand weergeven?"
1604
-
1605
- #~ msgid "Border Colour"
1606
- #~ msgstr "Randkleur"
1607
-
1608
- #~ msgid "Priority: (Numeric - Higher the value, higher the priority)"
1609
- #~ msgstr "Prioriteit: (numerieke - hoger de waarde, hoe hoger de prioriteit)"
1610
-
1611
- #~ msgid "Priority"
1612
- #~ msgstr "Prioriteit"
1613
-
1614
- #~ msgid "Scan & Download"
1615
- #~ msgstr "Scan & downloaden"
1616
-
1617
- #~ msgid "Export Cookie"
1618
- #~ msgstr "Exporteren van Cookie"
1619
-
1620
- #~ msgid "You do not have sufficient permissions to access this page."
1621
- #~ msgstr "U hebt onvoldoende machtigingen om deze pagina te openen."
1622
-
1623
- #~ msgid "Export as CSV file"
1624
- #~ msgstr "Exporteren als een CSV-bestand"
1625
-
1626
- #~ msgid "Export"
1627
- #~ msgstr "Exporteren"
1628
-
1629
- #~ msgid "Scan & Import"
1630
- #~ msgstr "Scan & importeren"
1631
-
1632
- #~ msgid "Import Cookie"
1633
- #~ msgstr "Importeer Cookie"
1634
-
1635
- #~ msgid "BEGIN %s"
1636
- #~ msgstr "BEGIN %s"
1637
-
1638
- #, fuzzy
1639
- #~ msgid "[Line %1$s] %2$s"
1640
- #~ msgstr "%1$s %2$s"
1641
-
1642
- #, fuzzy
1643
- #~ msgid "Import from a CSV file"
1644
- #~ msgstr "Uit bestand importeren"
1645
-
1646
- #, fuzzy
1647
- #~ msgid ""
1648
- #~ "Notice: please make the directory %s writable so that you can see the "
1649
- #~ "error log."
1650
- #~ msgstr ""
1651
- #~ "Opmerking: maak de map%s schrijfbaar zodat u het foutenlogboek kunt zien."
1652
-
1653
- #, fuzzy
1654
- #~ msgid ", please <a href=\"%s\">check the error log</a>"
1655
- #~ msgstr ", Alsjeblieft <a href=“%s”>check the error log</a>"
1656
-
1657
- #, fuzzy
1658
- #~ msgid "Error during file upload."
1659
- #~ msgstr "Fout tijdens het uploaden."
1660
-
1661
- #, fuzzy
1662
- #~ msgid "Cannot extract data from uploaded file or no file was uploaded."
1663
- #~ msgstr ""
1664
- #~ "Kan geen gegevens uit het geüploade bestand extraheren of er is geen "
1665
- #~ "bestand geüpload."
1666
-
1667
- #~ msgid "No posts was successfully imported%s."
1668
- #~ msgstr "Geen enkele gebruiker is%s succesvol geïmporteerd."
1669
-
1670
- #~ msgid "Some posts were successfully imported but some were not%s."
1671
- #~ msgstr ""
1672
- #~ "Sommige berichten zijn succesvol geïmporteerd, maar sommige zijn niet%s."
1673
-
1674
- #~ msgid "Post import was successful."
1675
- #~ msgstr "Importeren was succesvol"
1676
-
1677
- #~ msgid "CSV file"
1678
- #~ msgstr ".csv file"
1679
-
1680
- #~ msgid "Import"
1681
- #~ msgstr ""
1682
- #~ "Voor deze invoer, moet u ervoor zorgen dat alle aanbevolen plugins zijn "
1683
- #~ "geïnstalleerd en geactiveerd. Tevens moet u de slider afzonderlijk "
1684
- #~ "instellen."
1685
-
1686
- #~ msgid "Error processing migration request (ERROR: 4)"
1687
- #~ msgstr "Fout bij verwerken van migratieaanvraag (FOUT: 4)"
1688
-
1689
- #~ msgid "Show only for EU Countries ( GeoIP )"
1690
- #~ msgstr "Toon alleen voor EU-landen (GeoIP)"
1691
-
1692
- #, fuzzy
1693
- #~ msgid "Shortcodes allowed: see settngs section \"Using the Shortcodes\"."
1694
- #~ msgstr "Shortcodes toegestaan: settngs Zie \"Via de Shortcodes\"."
1695
-
1696
- #, fuzzy
1697
- #~ msgid "Link Text"
1698
- #~ msgstr "Link Tekst"
1699
-
1700
- #, fuzzy
1701
- #~ msgid "Open link in new window?"
1702
- #~ msgstr "Link openen in nieuw venster"
1703
-
1704
- #, fuzzy
1705
- #~ msgid "Link colour"
1706
- #~ msgstr "Link Colour"
1707
-
1708
- #, fuzzy
1709
- #~ msgid "Show as button?"
1710
- #~ msgstr "Toon als knop?"
1711
-
1712
- #, fuzzy
1713
- #~ msgid "Button colour"
1714
- #~ msgstr "Knopkleur"
1715
-
1716
- #, fuzzy
1717
- #~ msgid "Button Size"
1718
- #~ msgstr "Knop grootte"
1719
-
1720
- #, fuzzy
1721
- #~ msgid "The shortcodes are:"
1722
- #~ msgstr "De shortcodes zijn:"
1723
-
1724
- #, fuzzy
1725
- #~ msgid ""
1726
- #~ "If you just want a standard green \"Accept\" button that closes the header "
1727
- #~ "and nothing more, use this shortcode. It is already styled, you don't need "
1728
- #~ "to customise it."
1729
- #~ msgstr ""
1730
- #~ "Als u alleen een standaard groene \"Accept\" -knop wilt die de koptekst "
1731
- #~ "sluit en niets meer, gebruikt u deze shortcode. Het is al gestileerd, je "
1732
- #~ "hoeft het niet aan te passen."
1733
-
1734
- #, fuzzy
1735
- #~ msgid "Careful to use the British spelling of \"colour\" for the attribute."
1736
- #~ msgstr ""
1737
- #~ "Voorzichtig moet worden gebruikt de Britse spelling van \"kleur\" voor het "
1738
- #~ "kenmerk."
1739
-
1740
- #, fuzzy
1741
- #~ msgid "Are you sure you want to migrate settings?"
1742
- #~ msgstr "Weet u zeker dat u wilt migreren van de instellingen?"
1743
-
1744
- #, fuzzy
1745
- #~ msgid "Help"
1746
- #~ msgstr "Hulp"
1747
-
1748
- #, fuzzy
1749
- #~ msgid "Report a Bug"
1750
- #~ msgstr "Meld een programmafout"
1751
-
1752
- #, fuzzy
1753
- #~ msgid "About the law"
1754
- #~ msgstr "Over de wet"
1755
-
1756
- #, fuzzy
1757
- #~ msgid ""
1758
- #~ "This website uses cookies to improve your experience. We'll assume you're "
1759
- #~ "ok with this, but you can opt-out if you wish.[cookie_button] "
1760
- #~ "[cookie_settings] [cookie_link]"
1761
- #~ msgstr ""
1762
- #~ "Deze website maakt gebruik van cookies om uw ervaring te verbeteren. Wij "
1763
- #~ "gaan ervan uit dat je bent ok met dit, maar u kunt opt-out als u wenst. "
1764
- #~ "[cookie_button] [cookie_settings] [cookie_link]"
1765
-
1766
- #, fuzzy
1767
- #~ msgid "Cookie Category"
1768
- #~ msgstr "Cookie categorie"
1769
-
1770
- #, fuzzy
1771
- #~ msgid "Reject Button:"
1772
- #~ msgstr "Weigeren knop:"
1773
-
1774
- #, fuzzy
1775
- #~ msgid "Cookie Bar will be show in:"
1776
- #~ msgstr "Cookie Bar wordt getoond in:"
1777
-
1778
- #, fuzzy
1779
- #~ msgid "Auto-hide cookie bar after delay?"
1780
- #~ msgstr "Auto-huid de staaf van de cookie na vertraging?"
1781
-
1782
- #, fuzzy
1783
- #~ msgid "Auto-hide cookie bar if the user scrolls?"
1784
- #~ msgstr "Auto-huid de staaf van de cookie als de gebruiker wordt geschoven?"
1785
-
1786
- #, fuzzy
1787
- #~ msgid "Button will only link to URL if Action = Show URL"
1788
- #~ msgstr "Knop zal alleen een link naar de URL als actie = URL weergeven"
1789
-
1790
- #~ msgid "Save"
1791
- #~ msgstr "Opslaan"
1792
-
1793
- #, fuzzy
1794
- #~ msgid "Accept"
1795
- #~ msgstr "Accepteren"
1796
-
1797
- #, fuzzy
1798
- #~ msgid "Reject"
1799
- #~ msgstr "Reject"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/cookie-law-info-pt_BR.mo DELETED
Binary file
languages/cookie-law-info-pt_BR.po DELETED
@@ -1,1639 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: GDPR Cookie Consent\n"
4
- "POT-Creation-Date: 2020-11-17 11:34+0530\n"
5
- "PO-Revision-Date: 2020-11-17 11:35+0530\n"
6
- "Last-Translator: \n"
7
- "Language-Team: \n"
8
- "Language: pt\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.4.2\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "X-Poedit-WPHeader: cookie-law-info.php\n"
15
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
18
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
19
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
20
- "X-Poedit-SearchPath-0: .\n"
21
- "X-Poedit-SearchPathExcluded-0: *.js\n"
22
-
23
- #: admin/class-cookie-law-info-admin.php:147
24
- #: admin/class-cookie-law-info-admin.php:148
25
- #: admin/class-cookie-law-info-admin.php:247
26
- #: admin/partials/cookie-law-info-admin_settings.php:31
27
- msgid "Settings"
28
- msgstr "Definições"
29
-
30
- #: admin/class-cookie-law-info-admin.php:155
31
- #: admin/class-cookie-law-info-admin.php:156
32
- #: public/modules/script-blocker/views/settings.php:174
33
- #: public/views/cookie-law-info_popup_content.php:23
34
- msgid "Non-necessary"
35
- msgstr "Não necessário"
36
-
37
- #: admin/class-cookie-law-info-admin.php:163
38
- #: admin/class-cookie-law-info-admin.php:164
39
- #: public/views/cookie-law-info_popup_content.php:22
40
- msgid "Necessary"
41
- msgstr "Necessário"
42
-
43
- #: admin/class-cookie-law-info-admin.php:171
44
- #: admin/class-cookie-law-info-admin.php:172
45
- #: admin/partials/cookie-law-info-privacy_overview.php:25
46
- msgid "Privacy Overview"
47
- msgstr "Visão Geral de Privacidade"
48
-
49
- #: admin/class-cookie-law-info-admin.php:221
50
- #: admin/class-cookie-law-info-admin.php:276
51
- #: admin/class-cookie-law-info-admin.php:334
52
- #: admin/class-cookie-law-info-admin.php:378
53
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:22
54
- #: public/modules/script-blocker/script-blocker.php:133
55
- #: public/modules/script-blocker/script-blocker.php:173
56
- #: public/modules/script-blocker/script-blocker.php:310
57
- msgid "You do not have sufficient permission to perform this operation"
58
- msgstr "Você não tem permissão suficiente para executar esta operação"
59
-
60
- #: admin/class-cookie-law-info-admin.php:240
61
- #: admin/class-cookie-law-info-admin.php:306
62
- #: admin/class-cookie-law-info-admin.php:359
63
- #: admin/class-cookie-law-info-admin.php:403
64
- msgid "Settings Updated."
65
- msgstr "Configurações Atualizadas."
66
-
67
- #: admin/class-cookie-law-info-admin.php:248
68
- msgid "Support"
69
- msgstr "Suporte"
70
-
71
- #: admin/class-cookie-law-info-admin.php:249
72
- msgid "Premium Upgrade"
73
- msgstr "Upgrade Premium"
74
-
75
- #: admin/class-cookie-law-info-admin.php:418
76
- msgid "ERROR MIGRATING SETTINGS (ERROR: 2)"
77
- msgstr "ERRO MIGRAÇÃO DE CONFIGURAÇÕES (ERRO: 2)"
78
-
79
- #: admin/class-cookie-law-info-admin.php:436
80
- msgid "Cookie ID"
81
- msgstr "ID do Cookie"
82
-
83
- #: admin/class-cookie-law-info-admin.php:437
84
- msgid "Cookie Type"
85
- msgstr "Tipo de Cookie"
86
-
87
- #: admin/class-cookie-law-info-admin.php:438
88
- msgid "Cookie Duration"
89
- msgstr "Duração do Cookie"
90
-
91
- #: admin/class-cookie-law-info-admin.php:439
92
- msgid "Cookie Sensitivity"
93
- msgstr "Sensibilidade de Cookie"
94
-
95
- #: admin/class-cookie-law-info-admin.php:689
96
- msgid "Close Header"
97
- msgstr "Fechar Cabeçalho"
98
-
99
- #: admin/class-cookie-law-info-admin.php:693
100
- msgid "Open URL"
101
- msgstr "Abrir URL"
102
-
103
- #: admin/class-cookie-law-info-admin.php:706
104
- msgid "Extra Large"
105
- msgstr "Extra Largo"
106
-
107
- #: admin/class-cookie-law-info-admin.php:710
108
- msgid "Large"
109
- msgstr "Largo"
110
-
111
- #: admin/class-cookie-law-info-admin.php:714
112
- msgid "Medium"
113
- msgstr "Médio"
114
-
115
- #: admin/class-cookie-law-info-admin.php:718
116
- msgid "Small"
117
- msgstr "Pequeno"
118
-
119
- #: admin/class-cookie-law-info-admin.php:732
120
- msgid "Default theme font"
121
- msgstr "Fonte padrão do tema"
122
-
123
- #: admin/class-cookie-law-info-admin.php:736
124
- msgid "Sans Serif"
125
- msgstr "Sans Serif"
126
-
127
- #: admin/class-cookie-law-info-admin.php:740
128
- msgid "Serif"
129
- msgstr "Serif"
130
-
131
- #: admin/class-cookie-law-info-admin.php:744
132
- msgid "Arial"
133
- msgstr "Arial"
134
-
135
- #: admin/class-cookie-law-info-admin.php:748
136
- msgid "Arial Black"
137
- msgstr "Arial Black"
138
-
139
- #: admin/class-cookie-law-info-admin.php:752
140
- msgid "Georgia, serif"
141
- msgstr "Georgia, serif"
142
-
143
- #: admin/class-cookie-law-info-admin.php:756
144
- msgid "Helvetica"
145
- msgstr "Helvetica"
146
-
147
- #: admin/class-cookie-law-info-admin.php:760
148
- msgid "Lucida"
149
- msgstr "Lucida"
150
-
151
- #: admin/class-cookie-law-info-admin.php:764
152
- msgid "Tahoma"
153
- msgstr "Tahoma"
154
-
155
- #: admin/class-cookie-law-info-admin.php:768
156
- msgid "Times New Roman"
157
- msgstr "Times New Roman"
158
-
159
- #: admin/class-cookie-law-info-admin.php:772
160
- msgid "Trebuchet"
161
- msgstr "Trebuchet"
162
-
163
- #: admin/class-cookie-law-info-admin.php:776
164
- msgid "Verdana"
165
- msgstr "Verdana"
166
-
167
- #: admin/modules/ccpa/ccpa.php:106
168
- msgid "Do you really wish to opt out?"
169
- msgstr "Você realmente deseja optar por sair?"
170
-
171
- #: admin/modules/ccpa/ccpa.php:107
172
- msgid "Confirm"
173
- msgstr "Confirmar"
174
-
175
- #: admin/modules/ccpa/ccpa.php:108
176
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:154
177
- msgid "Cancel"
178
- msgstr "Cancelar"
179
-
180
- #: admin/modules/ccpa/ccpa.php:145
181
- msgid "Select the type of law"
182
- msgstr "Selecione o tipo de lei"
183
-
184
- #: admin/modules/ccpa/ccpa.php:149
185
- msgid "GDPR"
186
- msgstr "GDPR"
187
-
188
- #: admin/modules/ccpa/ccpa.php:150 admin/modules/ccpa/ccpa.php:158
189
- msgid ""
190
- "Customize the buttons, notice, themes from the relevant tabs to setup your "
191
- "cookie notice accordingly."
192
- msgstr ""
193
- "Personalize os botões, avisos e temas das guias relevantes para configurar o "
194
- "aviso de cookies de acordo."
195
-
196
- #: admin/modules/ccpa/ccpa.php:153
197
- msgid "CCPA"
198
- msgstr "CCPA"
199
-
200
- #: admin/modules/ccpa/ccpa.php:154
201
- msgid ""
202
- "Most of the customizations from the tabs for buttons, notice or themes are not "
203
- "relevant especially if you choose to not show the notice, except the Do not "
204
- "sell within the buttons."
205
- msgstr ""
206
- "A maioria das personalizações das guias para botões, avisos ou temas não são "
207
- "relevantes especialmente se você optar por não exibir o aviso, exceto o Não "
208
- "vender dentro dos botões."
209
-
210
- #: admin/modules/ccpa/ccpa.php:157
211
- msgid "CCPA & GDPR"
212
- msgstr "CCPA & GDPR"
213
-
214
- #: admin/modules/ccpa/views/ccpa_settings.php:7
215
- msgid "CCPA Settings"
216
- msgstr "Configurações CCPA"
217
-
218
- #: admin/modules/ccpa/views/ccpa_settings.php:7
219
- msgid ""
220
- "The right to opt out in the California Consumer Privacy Act gives consumers "
221
- "the ability to direct a business not to sell their personal information to a "
222
- "third party. If the user considers to not sell their personal information, all "
223
- "the scripts related to the categories which are configured to sell personal "
224
- "information will be blocked. The DO NOT SELL option is facilitated via a "
225
- "shortcode [wt_cli_ccpa_optout]."
226
- msgstr ""
227
- "O direito de optar pela Lei de Privacidade do Consumidor da Califórnia dá aos "
228
- "consumidores a capacidade de dirigir uma empresa para não vender suas "
229
- "informações pessoais a terceiros. Se o usuário considerar não vender suas "
230
- "informações pessoais, todos os scripts relacionados às categorias configuradas "
231
- "para vender informações pessoais serão bloqueados. A opção NÃO VENDER é "
232
- "facilitada através de um código curto [wt_cli_ccpa_optout]."
233
-
234
- #: admin/modules/ccpa/views/ccpa_settings.php:10
235
- msgid "Enable CCPA ?"
236
- msgstr "Habilitar CCPA?"
237
-
238
- #: admin/modules/ccpa/views/ccpa_settings.php:18
239
- msgid "Enable CCPA notice"
240
- msgstr "Habilite aviso CCPA"
241
-
242
- #: admin/modules/ccpa/views/ccpa_settings.php:18
243
- msgid ""
244
- "Enabling the notice will display the banner with the relevant text as per your "
245
- "configuration. Use this option particularly to record prior consent from the "
246
- "website visitors."
247
- msgstr ""
248
- "Habilitar o aviso exibirá o banner com o texto relevante de acordo com sua "
249
- "configuração. Use esta opção especialmente para registrar o consentimento "
250
- "prévio dos visitantes do site."
251
-
252
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:26
253
- msgid "Unable to handle your request."
254
- msgstr "Incapaz de atender sua solicitação."
255
-
256
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:96
257
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:130
258
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:132
259
- msgid "Error"
260
- msgstr "Erro"
261
-
262
- #: admin/modules/cli-policy-generator/classes/class-preview-page.php:27
263
- msgid "Cookie Policy"
264
- msgstr "Política de Cookies"
265
-
266
- #: admin/modules/cli-policy-generator/classes/class-preview-page.php:83
267
- msgid "Auto reload preview"
268
- msgstr "Pré-visualização de carregamento automático"
269
-
270
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:106
271
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:107
272
- #: admin/modules/cli-policy-generator/views/policy-generator.php:21
273
- msgid "Policy generator"
274
- msgstr "Gerador de políticas"
275
-
276
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:133
277
- msgid "Success"
278
- msgstr "Sucesso"
279
-
280
- #: admin/modules/cli-policy-generator/views/policy-generator.php:25
281
- msgid "Sample heading"
282
- msgstr "Exemplo de cabeçalho"
283
-
284
- #: admin/modules/cli-policy-generator/views/policy-generator.php:26
285
- msgid "Sample content"
286
- msgstr "Exemplo de conteúdo"
287
-
288
- #: admin/modules/cli-policy-generator/views/policy-generator.php:27
289
- msgid "Delete"
290
- msgstr "Excluir"
291
-
292
- #: admin/modules/cli-policy-generator/views/policy-generator.php:49
293
- msgid "Add new"
294
- msgstr "Adicionar novo"
295
-
296
- #: admin/modules/cli-policy-generator/views/policy-generator.php:53
297
- msgid "Heading"
298
- msgstr "Cabeçalho"
299
-
300
- #: admin/modules/cli-policy-generator/views/policy-generator.php:57
301
- #: admin/views/admin_necessary_cookie.php:39
302
- #: admin/views/admin_non_necessary_cookie.php:54
303
- #: public/modules/script-blocker/views/settings.php:142
304
- #: public/modules/shortcode/shortcode.php:220
305
- msgid "Description"
306
- msgstr "Descrição"
307
-
308
- #: admin/modules/cli-policy-generator/views/policy-generator.php:65
309
- msgid ""
310
- "Enabling this option will help us spread the word by placing a credit to "
311
- "WebToffee at the very end of the Cookie Policy page."
312
- msgstr ""
313
- "Ativando esta opção nos ajudará a espalhar a palavra colocando um crédito no "
314
- "WebToffee no final da página Política de Cookies."
315
-
316
- #: admin/modules/cli-policy-generator/views/policy-generator.php:82
317
- msgid "Update existing Cookie Policy page"
318
- msgstr "Atualizar a página existente de Política de Cookies"
319
-
320
- #: admin/modules/cli-policy-generator/views/policy-generator.php:88
321
- msgid "Create Cookie Policy page"
322
- msgstr "Criar página de Política de Cookies"
323
-
324
- #: admin/modules/cli-policy-generator/views/policy-generator.php:92
325
- msgid "Live preview"
326
- msgstr "Pré-visualizar"
327
-
328
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:43
329
- msgid "The plugin is complex to set up"
330
- msgstr "O plugin é complexo de configurar"
331
-
332
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:45
333
- msgid "Please describe which area you are facing difficulties"
334
- msgstr "Descreva em qual área você está enfrentando dificuldades"
335
-
336
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:49
337
- msgid "I found a better plugin"
338
- msgstr "Encontrei um Plugin Melhor"
339
-
340
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:51
341
- msgid "Which plugin?"
342
- msgstr "Qual plugin?"
343
-
344
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:55
345
- msgid "The plugin is great, but I need specific feature that you don't support"
346
- msgstr ""
347
- "O plugin é ótimo, mas preciso de uma característica específica que você não "
348
- "suporta"
349
-
350
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:57
351
- msgid "Could you tell us more about that feature?"
352
- msgstr "Você poderia nos contar mais sobre esse recurso?"
353
-
354
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:61
355
- msgid "The plugin didn't work as expected"
356
- msgstr "O plugin não funcionou como esperado"
357
-
358
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:63
359
- msgid "What did you expect?"
360
- msgstr "O que você esperava?"
361
-
362
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:67
363
- msgid "A conflict with another plugin or theme"
364
- msgstr "Um conflito com outro plugin ou tema"
365
-
366
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:69
367
- msgid "Which plugin or theme?"
368
- msgstr "Qual plugin ou tema?"
369
-
370
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:73
371
- msgid "Translation issues"
372
- msgstr "Problemas de tradução"
373
-
374
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:77
375
- msgid "Incorrect/missing translation"
376
- msgstr "Tradução incorreta / ausente"
377
-
378
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:79
379
- msgid "Name the language"
380
- msgstr "Nomeie o idioma"
381
-
382
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:83
383
- msgid ""
384
- "Unable to translate my dynamic content e.g, cookie message, button text etc"
385
- msgstr ""
386
- "Não é possível traduzir meu conteúdo dinâmico, por exemplo, mensagem de "
387
- "cookie, texto do botão etc."
388
-
389
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:85
390
- msgid "Name the language and the translator plugin that you are using"
391
- msgstr "Nomeie o idioma e o plugin tradutor que você está usando"
392
-
393
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:91
394
- msgid "Upgrade to pro"
395
- msgstr "Atualização para pro"
396
-
397
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:95
398
- #: admin/views/admin-settings-general.php:10
399
- #: admin/views/admin-settings-general.php:66
400
- msgid "Other"
401
- msgstr "Outro"
402
-
403
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:97
404
- msgid "Could you tell us a bit more?"
405
- msgstr "Você poderia nos contar um pouco mais?"
406
-
407
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:117
408
- msgid "If you have a moment, please let us know why you are deactivating:"
409
- msgstr "Se você tiver um momento, deixe-nos saber por que você está desativando:"
410
-
411
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:144
412
- msgid ""
413
- "We do not collect any personal data when you submit this form. It's your "
414
- "feedback that we value."
415
- msgstr ""
416
- "Não recolhemos quaisquer dados pessoais quando envia este formulário. É o seu "
417
- "feedback que valorizamos."
418
-
419
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:145
420
- msgid "Privacy Policy"
421
- msgstr "Política de Privacidade"
422
-
423
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:152
424
- msgid "Go to support"
425
- msgstr "Vá para o suporte"
426
-
427
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:153
428
- msgid "Submit & Deactivate"
429
- msgstr "Enviar & Desativar"
430
-
431
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:155
432
- msgid "I rather wouldn't say"
433
- msgstr "Eu prefiro não dizer"
434
-
435
- #: admin/partials/cookie-law-info-admin_settings.php:25
436
- #: admin/views/admin_necessary_cookie.php:20
437
- #: admin/views/admin_non_necessary_cookie.php:17
438
- msgid "Settings updated."
439
- msgstr "Configurações atualizadas."
440
-
441
- #: admin/partials/cookie-law-info-admin_settings.php:26
442
- #: admin/views/admin_necessary_cookie.php:21
443
- #: admin/views/admin_non_necessary_cookie.php:18
444
- msgid "Unable to update Settings."
445
- msgstr "Não é possível atualizar as Configurações."
446
-
447
- #: admin/partials/cookie-law-info-admin_settings.php:27
448
- msgid "Settings reset to defaults."
449
- msgstr "Redefinidas as configurações para os padrões."
450
-
451
- #: admin/partials/cookie-law-info-admin_settings.php:28
452
- msgid "Unable to reset settings."
453
- msgstr "Não é possível redefinir as configurações."
454
-
455
- #: admin/partials/cookie-law-info-admin_settings.php:39
456
- msgid "Cookie bar is currently active"
457
- msgstr "A barra de cookies está ativa no momento"
458
-
459
- #: admin/partials/cookie-law-info-admin_settings.php:47
460
- msgid "Cookie bar is currently inactive"
461
- msgstr "A barra de cookies está atualmente inativa"
462
-
463
- #: admin/partials/cookie-law-info-admin_settings.php:57
464
- #: admin/views/admin-settings-general.php:9
465
- msgid "General"
466
- msgstr "Geral"
467
-
468
- #: admin/partials/cookie-law-info-admin_settings.php:58
469
- msgid "Customise Cookie Bar"
470
- msgstr "Personalizar Barra de Cookie"
471
-
472
- #: admin/partials/cookie-law-info-admin_settings.php:59
473
- msgid "Customise Buttons"
474
- msgstr "Personalize botões"
475
-
476
- #: admin/partials/cookie-law-info-admin_settings.php:60
477
- #: admin/views/admin-settings-advanced.php:8
478
- msgid "Advanced"
479
- msgstr "Avançado"
480
-
481
- #: admin/partials/cookie-law-info-admin_settings.php:61
482
- msgid "Help Guide"
483
- msgstr "Guia de Ajuda"
484
-
485
- #: admin/partials/cookie-law-info-privacy_overview.php:32
486
- msgid "Privacy Overview Title"
487
- msgstr "Visão Geral do Título de Privacidade"
488
-
489
- #: admin/partials/cookie-law-info-privacy_overview.php:38
490
- #: admin/partials/cookie-law-info-privacy_overview.php:53
491
- msgid "This will be shown in the settings visible for user on consent screen."
492
- msgstr ""
493
- "Isto será mostrado nas configurações visíveis para o usuário na tela de "
494
- "consentimento."
495
-
496
- #: admin/partials/cookie-law-info-privacy_overview.php:61
497
- msgid "Save Settings"
498
- msgstr "Salvar Configurações"
499
-
500
- #: admin/views/admin-settings-advanced.php:9
501
- msgid ""
502
- "Sometimes themes apply settings that clash with plugins. If that happens, try "
503
- "adjusting these settings."
504
- msgstr ""
505
- "Às vezes, os temas aplicam configurações que conflitam com os plugins. Se isso "
506
- "acontecer, tente ajustar essas configurações."
507
-
508
- #: admin/views/admin-settings-advanced.php:13
509
- msgid "Reset all values"
510
- msgstr "Redefinir todos os valores"
511
-
512
- #: admin/views/admin-settings-advanced.php:15
513
- msgid "Delete settings and reset"
514
- msgstr "Excluir configurações e redefinir"
515
-
516
- #: admin/views/admin-settings-advanced.php:15
517
- msgid "Are you sure you want to delete all your settings?"
518
- msgstr "Tem certeza de que deseja excluir todas as suas configurações?"
519
-
520
- #: admin/views/admin-settings-advanced.php:16
521
- msgid "Warning: this will actually delete your current settings."
522
- msgstr "Aviso: isso realmente excluirá as configurações atuais."
523
-
524
- #: admin/views/admin-settings-buttons.php:10
525
- msgid "Accept Button"
526
- msgstr "Botão Aceitar"
527
-
528
- #: admin/views/admin-settings-buttons.php:11
529
- #: admin/views/admin-settings-buttons.php:93
530
- msgid "Reject Button"
531
- msgstr "Botão Rejeitar"
532
-
533
- #: admin/views/admin-settings-buttons.php:12
534
- #: admin/views/admin-settings-buttons.php:163
535
- msgid "Settings Button"
536
- msgstr "Configurações de Botões"
537
-
538
- #: admin/views/admin-settings-buttons.php:13
539
- #: admin/views/admin-settings-buttons.php:206
540
- msgid "Read More Link"
541
- msgstr "Link Leia Mais"
542
-
543
- #: admin/views/admin-settings-buttons.php:14
544
- #: admin/views/admin-settings-buttons.php:326
545
- msgid "Do not sell link"
546
- msgstr "Link de não venda"
547
-
548
- #: admin/views/admin-settings-buttons.php:20
549
- msgid "Main Button"
550
- msgstr "Botão Principal"
551
-
552
- #: admin/views/admin-settings-buttons.php:21
553
- msgid ""
554
- "This button/link can be customised to either simply close the cookie bar, or "
555
- "follow a link. You can also customise the colours and styles, and show it as a "
556
- "link or a button."
557
- msgstr ""
558
- "Este botão/link pode ser customizado para simplesmente fechar a barra de "
559
- "cookies ou seguir um link. Você também pode personalizar as cores e estilos, e "
560
- "mostrá-lo como um link ou um botão."
561
-
562
- #: admin/views/admin-settings-buttons.php:24
563
- #: admin/views/admin-settings-buttons.php:96
564
- #: admin/views/admin-settings-buttons.php:166
565
- #: admin/views/admin-settings-buttons.php:220
566
- msgid "Text"
567
- msgstr "Texto"
568
-
569
- #: admin/views/admin-settings-buttons.php:30
570
- #: admin/views/admin-settings-buttons.php:102
571
- #: admin/views/admin-settings-buttons.php:172
572
- #: admin/views/admin-settings-buttons.php:226
573
- #: admin/views/admin-settings-buttons.php:346
574
- msgid "Text colour"
575
- msgstr "Cor do texto"
576
-
577
- #: admin/views/admin-settings-buttons.php:38
578
- #: admin/views/admin-settings-buttons.php:110
579
- #: admin/views/admin-settings-buttons.php:180
580
- #: admin/views/admin-settings-buttons.php:234
581
- #: admin/views/admin-settings-buttons.php:335
582
- msgid "Show as"
583
- msgstr "Mostrar como"
584
-
585
- #: admin/views/admin-settings-buttons.php:40
586
- #: admin/views/admin-settings-buttons.php:112
587
- #: admin/views/admin-settings-buttons.php:182
588
- #: admin/views/admin-settings-buttons.php:236
589
- msgid "Button"
590
- msgstr "Botão"
591
-
592
- #: admin/views/admin-settings-buttons.php:42
593
- #: admin/views/admin-settings-buttons.php:114
594
- #: admin/views/admin-settings-buttons.php:184
595
- #: admin/views/admin-settings-buttons.php:238
596
- #: admin/views/admin-settings-buttons.php:337
597
- msgid "Link"
598
- msgstr "Link"
599
-
600
- #: admin/views/admin-settings-buttons.php:46
601
- #: admin/views/admin-settings-buttons.php:118
602
- #: admin/views/admin-settings-buttons.php:188
603
- #: admin/views/admin-settings-buttons.php:242
604
- msgid "Background colour"
605
- msgstr "Cor de fundo"
606
-
607
- #: admin/views/admin-settings-buttons.php:55
608
- #: admin/views/admin-settings-buttons.php:126
609
- msgid "Action"
610
- msgstr "Ação"
611
-
612
- #: admin/views/admin-settings-buttons.php:63
613
- #: admin/views/admin-settings-buttons.php:138
614
- #: admin/views/admin-settings-buttons.php:253
615
- #: admin/views/admin-settings-buttons.php:260
616
- msgid "URL"
617
- msgstr "URL"
618
-
619
- #: admin/views/admin-settings-buttons.php:66
620
- #: admin/views/admin-settings-buttons.php:141
621
- msgid "Button will only link to URL if Action = Open URL"
622
- msgstr "Botão só se vinculará ao URL se Ação = Abrir URL"
623
-
624
- #: admin/views/admin-settings-buttons.php:71
625
- #: admin/views/admin-settings-buttons.php:146
626
- msgid "Open URL in new window?"
627
- msgstr "Abrir URL em nova janela?"
628
-
629
- #: admin/views/admin-settings-buttons.php:73
630
- #: admin/views/admin-settings-buttons.php:148
631
- #: admin/views/admin-settings-buttons.php:304
632
- #: admin/views/admin-settings-buttons.php:311
633
- #: admin/views/admin-settings-general.php:38
634
- #: admin/views/admin-settings-general.php:54
635
- #: admin/views/admin-settings-general.php:74
636
- #: admin/views/admin-settings-general.php:82
637
- #: admin/views/admin-settings-general.php:89
638
- #: admin/views/admin-settings-messagebar.php:86
639
- #: admin/views/admin-settings-messagebar.php:110
640
- #: admin/views/admin_non_necessary_cookie.php:32
641
- msgid "Yes"
642
- msgstr "Sim"
643
-
644
- #: admin/views/admin-settings-buttons.php:75
645
- #: admin/views/admin-settings-buttons.php:149
646
- #: admin/views/admin-settings-buttons.php:305
647
- #: admin/views/admin-settings-buttons.php:312
648
- #: admin/views/admin-settings-general.php:39
649
- #: admin/views/admin-settings-general.php:55
650
- #: admin/views/admin-settings-general.php:75
651
- #: admin/views/admin-settings-general.php:83
652
- #: admin/views/admin-settings-general.php:90
653
- #: admin/views/admin-settings-messagebar.php:87
654
- #: admin/views/admin-settings-messagebar.php:111
655
- #: admin/views/admin_non_necessary_cookie.php:33
656
- #: public/modules/script-blocker/views/settings.php:139
657
- msgid "No"
658
- msgstr "Não"
659
-
660
- #: admin/views/admin-settings-buttons.php:82
661
- #: admin/views/admin-settings-buttons.php:153
662
- #: admin/views/admin-settings-buttons.php:196
663
- #: admin/views/admin-settings-buttons.php:316
664
- msgid "Size"
665
- msgstr "Tamanho"
666
-
667
- #: admin/views/admin-settings-buttons.php:207
668
- msgid ""
669
- "This button/link can be used to provide a link out to your Privacy & Cookie "
670
- "Policy. You can customise it any way you like."
671
- msgstr ""
672
- "Este botão/link pode ser usado para fornecer um link para sua Política de "
673
- "Privacidade & Cookies. Você pode personalizá-lo do jeito que quiser."
674
-
675
- #: admin/views/admin-settings-buttons.php:212
676
- msgid "Click"
677
- msgstr "Clique"
678
-
679
- #: admin/views/admin-settings-buttons.php:212
680
- msgid "here"
681
- msgstr "aqui"
682
-
683
- #: admin/views/admin-settings-buttons.php:212
684
- msgid " to generate content for Cookie Policy page."
685
- msgstr " para gerar o conteúdo para a página de Política de Cookies."
686
-
687
- #: admin/views/admin-settings-buttons.php:251
688
- msgid "URL or Page?"
689
- msgstr "URL ou Página?"
690
-
691
- #: admin/views/admin-settings-buttons.php:255
692
- #: admin/views/admin-settings-buttons.php:266
693
- msgid "Page"
694
- msgstr "Página"
695
-
696
- #: admin/views/admin-settings-buttons.php:269
697
- msgid "Select One"
698
- msgstr "Selecionar Um"
699
-
700
- #: admin/views/admin-settings-buttons.php:294
701
- msgid "The currently selected page does not exist. Please select a new page."
702
- msgstr ""
703
- "A página selecionada no momento não existe. Por favor, selecione uma nova "
704
- "página."
705
-
706
- #: admin/views/admin-settings-buttons.php:302
707
- msgid "Minimize Cookie Bar in this page/URL?"
708
- msgstr "Minimizar Barra de Cookie nesta página/URL?"
709
-
710
- #: admin/views/admin-settings-buttons.php:309
711
- msgid "Open in new window?"
712
- msgstr "Abrir em nova janela?"
713
-
714
- #: admin/views/admin-settings-buttons.php:329
715
- msgid "CCPA Text"
716
- msgstr "Texto CCPA"
717
-
718
- #: admin/views/admin-settings-buttons.php:338
719
- msgid "Checkbox"
720
- msgstr "Caixa de Seleção"
721
-
722
- #: admin/views/admin-settings-buttons.php:340
723
- msgid "The shortcode will be represented as a link whereever used."
724
- msgstr "O códigos de acesso será representado como um link onde for usado."
725
-
726
- #: admin/views/admin-settings-buttons.php:341
727
- msgid ""
728
- "The shortcode will be represented as a checkbox with select option to record "
729
- "consent."
730
- msgstr ""
731
- "O códigos de acesso será representado como uma caixa de seleção com opção "
732
- "selecionada para registrar o consentimento."
733
-
734
- #: admin/views/admin-settings-general.php:17
735
- msgid "Enable cookie bar"
736
- msgstr "Ativar barra de cookies"
737
-
738
- #: admin/views/admin-settings-general.php:19
739
- msgid "On"
740
- msgstr "Ligado"
741
-
742
- #: admin/views/admin-settings-general.php:20
743
- msgid "Off"
744
- msgstr "Desligado"
745
-
746
- #: admin/views/admin-settings-general.php:36
747
- msgid "Auto-hide(Accept) cookie bar after delay?"
748
- msgstr "Ocultar automaticamente (Aceitar) a barra de cookies após um tempo?"
749
-
750
- #: admin/views/admin-settings-general.php:43
751
- msgid "Milliseconds until hidden"
752
- msgstr "Milissegundos até ocultar"
753
-
754
- #: admin/views/admin-settings-general.php:46
755
- msgid "Specify milliseconds (not seconds)"
756
- msgstr "Especifique milissegundos (não segundos)"
757
-
758
- #: admin/views/admin-settings-general.php:46
759
- msgid "seconds"
760
- msgstr "segundos"
761
-
762
- #: admin/views/admin-settings-general.php:52
763
- msgid "Auto-hide cookie bar if the user scrolls ( Accept on Scroll )?"
764
- msgstr ""
765
- "Ocultar automaticamente a barra de cookies se o usuário rolar ( Aceitar em "
766
- "Rolagem )?"
767
-
768
- #: admin/views/admin-settings-general.php:56
769
- msgid ""
770
- "As per latest GDPR policies it is required to take an explicit consent for the "
771
- "cookies. Use this option with discretion especially if you serve EU"
772
- msgstr ""
773
- "De acordo com as últimas políticas GDPR/LGPD, é necessário ter um "
774
- "consentimento explícito para os cookies. Use esta opção com discrição, "
775
- "especialmente se você atender"
776
-
777
- #: admin/views/admin-settings-general.php:57
778
- msgid "This option will not work along with `Popup overlay`."
779
- msgstr "Esta opção não funcionará junto com `Janela sobreposta`."
780
-
781
- #: admin/views/admin-settings-general.php:69
782
- msgid "Reload after \"scroll accept\" event?"
783
- msgstr "Recarregar após o evento \"rolar aceito\"?"
784
-
785
- #: admin/views/admin-settings-general.php:80
786
- msgid "Reload after Accept button click"
787
- msgstr "Recarregar após clicar no botão Aceitar"
788
-
789
- #: admin/views/admin-settings-general.php:87
790
- msgid "Reload after Reject button click"
791
- msgstr "Recarregar após clicar no botão Rejeitar"
792
-
793
- #: admin/views/admin-settings-help.php:9
794
- msgid "Shortcodes"
795
- msgstr "Códigos de acesso"
796
-
797
- #: admin/views/admin-settings-help.php:10 admin/views/admin-settings-help.php:103
798
- msgid "Help Links"
799
- msgstr "Links de ajuda"
800
-
801
- #: admin/views/admin-settings-help.php:16
802
- msgid "Cookie bar shortcodes"
803
- msgstr "Códigos de acesso da barra de Cookies"
804
-
805
- #: admin/views/admin-settings-help.php:17
806
- msgid ""
807
- "You can enter the shortcodes in the \"message\" field of the Cookie Law Info "
808
- "bar. They add nicely formatted buttons and/or links into the cookie bar, "
809
- "without you having to add any HTML."
810
- msgstr ""
811
- "Você pode inserir os códigos de acesso no campo \"mensagem\" da barra de "
812
- "informações da Lei de Cookies. Eles adicionam botões bem formatados e/ou links "
813
- "na barra de cookies, sem que você tenha que adicionar qualquer HTML."
814
-
815
- #: admin/views/admin-settings-help.php:22
816
- msgid "This is the \"main button\" you customise above."
817
- msgstr "Este é o \"botão principal\" que você personaliza acima."
818
-
819
- #: admin/views/admin-settings-help.php:26
820
- msgid "This is the cookie reject button shortcode."
821
- msgstr "Este é o códigos de acesso do botão de rejeição de cookie."
822
-
823
- #: admin/views/admin-settings-help.php:30
824
- msgid "This is the cookie settings button rendering shortcode."
825
- msgstr ""
826
- "Este é o código de configurações do cookie que representa o código de acesso."
827
-
828
- #: admin/views/admin-settings-help.php:33
829
- msgid "This is the \"read more\" link you customise above."
830
- msgstr "Este é o link \"leia mais\" que você personaliza acima."
831
-
832
- #: admin/views/admin-settings-help.php:36
833
- msgid "Setup margin for above buttons"
834
- msgstr "Margem de configuração para os botões acima"
835
-
836
- #: admin/views/admin-settings-help.php:65
837
- msgid "Other shortcodes"
838
- msgstr "Outros códigos de acesso"
839
-
840
- #: admin/views/admin-settings-help.php:66
841
- msgid ""
842
- "These shortcodes can be used in pages and posts on your website. It is not "
843
- "recommended to use these inside the cookie bar itself."
844
- msgstr ""
845
- "Esses códigos de acesso podem ser usados ​​em páginas e postagens em seu site. "
846
- "Não é recomendado usá-los dentro da própria barra de cookies."
847
-
848
- #: admin/views/admin-settings-help.php:72
849
- msgid ""
850
- "This prints out a nice table of cookies, in line with the guidance given by "
851
- "the ICO."
852
- msgstr ""
853
- "Isso imprime uma boa tabela de cookies, de acordo com a orientação dada pelo "
854
- "ICO."
855
-
856
- #: admin/views/admin-settings-help.php:72
857
- msgid ""
858
- "You need to enter the cookies your website uses via the Cookie Law Info menu "
859
- "in your WordPress dashboard."
860
- msgstr ""
861
- "Você precisa inserir os cookies que seu site usa através do menu de Leis de "
862
- "Cookie no painel WordPress."
863
-
864
- #: admin/views/admin-settings-help.php:80
865
- msgid "Styles included"
866
- msgstr "Estilos incluídos"
867
-
868
- #: admin/views/admin-settings-help.php:82
869
- msgid "Columns available"
870
- msgstr "Colunas disponíveis"
871
-
872
- #: admin/views/admin-settings-help.php:82
873
- msgid "Will print all columns by default."
874
- msgstr "Imprimirá todas as colunas por padrão."
875
-
876
- #: admin/views/admin-settings-help.php:86
877
- msgid ""
878
- "This shortcode will display a normal HTML link which when clicked, will delete "
879
- "the cookie set by Cookie Law Info (this cookie is used to remember that the "
880
- "cookie bar is closed)."
881
- msgstr ""
882
- "Este código de acesso exibirá um link HTML normal que, quando clicado, "
883
- "excluirá o cookie definido por Cookie Law Info (esse cookie é usado para "
884
- "lembrar que a barra de cookies está fechada)."
885
-
886
- #: admin/views/admin-settings-help.php:90
887
- msgid ""
888
- "Add any text you like- useful if you want e.g. another language to English."
889
- msgstr ""
890
- "Adicione qualquer texto que você goste - útil se você quiser, por exemplo "
891
- "outro idioma para o inglês."
892
-
893
- #: admin/views/admin-settings-help.php:94
894
- msgid "Add content after accepting the cookie notice."
895
- msgstr "Adicione conteúdo depois de aceitar o aviso do cookie."
896
-
897
- #: admin/views/admin-settings-help.php:107
898
- #: admin/views/admin-settings-help.php:110 admin/views/goto-pro.php:103
899
- msgid "Documentation"
900
- msgstr "Documentação"
901
-
902
- #: admin/views/admin-settings-help.php:108
903
- msgid "Refer to our documentation to set and get started"
904
- msgstr "Consulte nossa documentação para definir e começar"
905
-
906
- #: admin/views/admin-settings-help.php:115
907
- msgid "Help and Support"
908
- msgstr "Ajuda e Suporte"
909
-
910
- #: admin/views/admin-settings-help.php:116
911
- msgid "We would love to help you on any queries or issues."
912
- msgstr "Adoraríamos ajudá-lo em quaisquer dúvidas ou problemas."
913
-
914
- #: admin/views/admin-settings-help.php:118
915
- msgid "Contact Us"
916
- msgstr "Contate-nos"
917
-
918
- #: admin/views/admin-settings-messagebar.php:9
919
- msgid "Cookie bar"
920
- msgstr "Barra de Cookie"
921
-
922
- #: admin/views/admin-settings-messagebar.php:10
923
- #: admin/views/admin-settings-messagebar.php:145
924
- msgid "Revisit consent"
925
- msgstr "Revisitar consentimento"
926
-
927
- #: admin/views/admin-settings-messagebar.php:15
928
- msgid "Cookie Bar"
929
- msgstr "Barra de Cookie"
930
-
931
- #: admin/views/admin-settings-messagebar.php:18
932
- msgid "Message Heading"
933
- msgstr "Título da Mensagem"
934
-
935
- #: admin/views/admin-settings-messagebar.php:21
936
- msgid "Leave it blank, If you do not need a heading"
937
- msgstr "Deixe-o em branco, se você não precisa de um título"
938
-
939
- #: admin/views/admin-settings-messagebar.php:26
940
- msgid "Message"
941
- msgstr "Mensagem"
942
-
943
- #: admin/views/admin-settings-messagebar.php:32
944
- msgid "Shortcodes allowed: see the Help Guide tab"
945
- msgstr "Códigos de acesso permitidos: consulte a guia Guia de ajuda"
946
-
947
- #: admin/views/admin-settings-messagebar.php:32
948
- msgid ""
949
- "Examples: \"We use cookies on this website [cookie_accept] to find out how to "
950
- "delete cookies [cookie_link].\""
951
- msgstr ""
952
- "Exemplos: \"Usamos cookies neste site [cookie_accept] para descobrir como "
953
- "deletar cookies [cookie_link].\""
954
-
955
- #: admin/views/admin-settings-messagebar.php:36
956
- msgid "Cookie Bar Colour"
957
- msgstr "Cor da Barra de Cookie"
958
-
959
- #: admin/views/admin-settings-messagebar.php:46
960
- msgid "Text Colour"
961
- msgstr "Cor do texto"
962
-
963
- #: admin/views/admin-settings-messagebar.php:55
964
- msgid "Font"
965
- msgstr "Fonte"
966
-
967
- #: admin/views/admin-settings-messagebar.php:63
968
- msgid "Show cookie bar as"
969
- msgstr "Mostrar barra de Cookie como"
970
-
971
- #: admin/views/admin-settings-messagebar.php:68
972
- msgid "Banner"
973
- msgstr "Banner"
974
-
975
- #: admin/views/admin-settings-messagebar.php:69
976
- msgid "Popup"
977
- msgstr "Janela"
978
-
979
- #: admin/views/admin-settings-messagebar.php:70
980
- msgid "Widget"
981
- msgstr "Widget"
982
-
983
- #: admin/views/admin-settings-messagebar.php:74
984
- msgid "Position"
985
- msgstr "Posição"
986
-
987
- #: admin/views/admin-settings-messagebar.php:84
988
- msgid "Add overlay?"
989
- msgstr "Adicionar sobreposição?"
990
-
991
- #: admin/views/admin-settings-messagebar.php:88
992
- msgid ""
993
- "When the popup is active, an overlay will block the user from browsing the "
994
- "site."
995
- msgstr ""
996
- "Quando a janela estiver ativa, uma sobreposição impedirá o usuário de navegar "
997
- "no site."
998
-
999
- #: admin/views/admin-settings-messagebar.php:89
1000
- msgid "`Accept on scroll` will not work along with this option."
1001
- msgstr "`Aceitar na rolagem` não funcionará junto com esta opção."
1002
-
1003
- #: admin/views/admin-settings-messagebar.php:93
1004
- msgid "Position:"
1005
- msgstr "Posição:"
1006
-
1007
- #: admin/views/admin-settings-messagebar.php:98
1008
- msgid "Header"
1009
- msgstr "Cabeçalho"
1010
-
1011
- #: admin/views/admin-settings-messagebar.php:99
1012
- msgid "Footer"
1013
- msgstr "Rodapé"
1014
-
1015
- #: admin/views/admin-settings-messagebar.php:108
1016
- msgid "Fix Cookie Bar to Header?"
1017
- msgstr "Fixar Cookie Bar no Cabeçalho?"
1018
-
1019
- #: admin/views/admin-settings-messagebar.php:112
1020
- msgid ""
1021
- "If you select \"Header\" then you can optionally stick the cookie bar to the "
1022
- "header. Will not have any effect if you select \"Footer\"."
1023
- msgstr ""
1024
- "Se você selecionar \"Cabeçalho\", então você pode opcionalmente colocar a "
1025
- "barra de cookies no cabeçalho. Não terá nenhum efeito se você selecionar "
1026
- "\"Rodapé\"."
1027
-
1028
- #: admin/views/admin-settings-messagebar.php:120
1029
- msgid "On load"
1030
- msgstr "No carregamento"
1031
-
1032
- #: admin/views/admin-settings-messagebar.php:125
1033
- #: admin/views/admin-settings-messagebar.php:135
1034
- msgid "Animate"
1035
- msgstr "Animado"
1036
-
1037
- #: admin/views/admin-settings-messagebar.php:126
1038
- #: admin/views/admin-settings-messagebar.php:136
1039
- msgid "Sticky"
1040
- msgstr "Fixo"
1041
-
1042
- #: admin/views/admin-settings-messagebar.php:130
1043
- msgid "On hide"
1044
- msgstr "Ocultar"
1045
-
1046
- #: admin/views/admin-settings-messagebar.php:145
1047
- msgid "previously"
1048
- msgstr "anteriormente"
1049
-
1050
- #: admin/views/admin-settings-messagebar.php:145
1051
- msgid "Show again tab"
1052
- msgstr "Mostrar Novamente Guia"
1053
-
1054
- #: admin/views/admin-settings-messagebar.php:147
1055
- msgid ""
1056
- "Revisit consent will allow the visitors to view/edit/revoke their prior "
1057
- "preferences. This can be done via a widget and/or a shortcode. A small privacy "
1058
- "widget is automatically displayed at the footer of your website if the widget "
1059
- "option is enabled. You can also manually insert a link to manage consent by "
1060
- "adding the shortcode <b>[wt_cli_manage_consent]</b> to your website."
1061
- msgstr ""
1062
- "O consentimento de revisitar permitirá que os visitantes visualizem / editem / "
1063
- "revoguem suas preferências anteriores. Isso pode ser feito por meio de um "
1064
- "widget e / ou um código de acesso. Um pequeno widget de privacidade é exibido "
1065
- "automaticamente no rodapé do seu site se a opção de widget estiver habilitada. "
1066
- "Você também pode inserir manualmente um link para gerenciar o consentimento, "
1067
- "adicionando o shortcode <b>[wt_cli_manage_consent]</b> ao seu site."
1068
-
1069
- #: admin/views/admin-settings-messagebar.php:152
1070
- msgid "Enable revisit consent widget"
1071
- msgstr "Ativar widget de consentimento para revisitar"
1072
-
1073
- #: admin/views/admin-settings-messagebar.php:152
1074
- msgid ""
1075
- "By enabling this option a small privacy widget is automatically displayed at "
1076
- "the footer of your website."
1077
- msgstr ""
1078
- "Ao habilitar esta opção, um pequeno widget de privacidade é automaticamente "
1079
- "exibido no rodapé do seu site."
1080
-
1081
- #: admin/views/admin-settings-messagebar.php:163
1082
- #: admin/views/admin-settings-messagebar.php:180
1083
- msgid "Tab Position"
1084
- msgstr "Posição da Guia"
1085
-
1086
- #: admin/views/admin-settings-messagebar.php:168
1087
- #: admin/views/admin-settings-messagebar.php:171
1088
- msgid "Right"
1089
- msgstr "Direita"
1090
-
1091
- #: admin/views/admin-settings-messagebar.php:169
1092
- #: admin/views/admin-settings-messagebar.php:172
1093
- msgid "Left"
1094
- msgstr "Esquerda"
1095
-
1096
- #: admin/views/admin-settings-messagebar.php:187
1097
- msgid "Bottom Right"
1098
- msgstr "Inferior Direito"
1099
-
1100
- #: admin/views/admin-settings-messagebar.php:190
1101
- msgid "Bottom Left"
1102
- msgstr "Inferior Esquerdo"
1103
-
1104
- #: admin/views/admin-settings-messagebar.php:193
1105
- msgid "Top Right"
1106
- msgstr "Superior Direito"
1107
-
1108
- #: admin/views/admin-settings-messagebar.php:196
1109
- msgid "Top Left"
1110
- msgstr "Superior Esquerda"
1111
-
1112
- #: admin/views/admin-settings-messagebar.php:203
1113
- msgid "From Right Margin"
1114
- msgstr "Da Margem Direita"
1115
-
1116
- #: admin/views/admin-settings-messagebar.php:203
1117
- msgid "From Left Margin"
1118
- msgstr "Na Margem Esquerda"
1119
-
1120
- #: admin/views/admin-settings-messagebar.php:206
1121
- msgid "Specify"
1122
- msgstr "Especificar"
1123
-
1124
- #: admin/views/admin-settings-messagebar.php:215
1125
- #: admin/views/admin_necessary_cookie.php:33
1126
- #: admin/views/admin_non_necessary_cookie.php:48
1127
- msgid "Title"
1128
- msgstr "Título"
1129
-
1130
- #: admin/views/admin-settings-save-button.php:12
1131
- #: admin/views/admin_necessary_cookie.php:52
1132
- #: admin/views/admin_non_necessary_cookie.php:87
1133
- #: public/modules/script-blocker/script-blocker.php:219
1134
- msgid "Update Settings"
1135
- msgstr "Atualizar configurações"
1136
-
1137
- #: admin/views/admin_necessary_cookie.php:26
1138
- msgid "Necessary Cookie Settings"
1139
- msgstr "Configurações de Cookie Necessários"
1140
-
1141
- #: admin/views/admin_non_necessary_cookie.php:23
1142
- msgid "Non-necessary Cookie Settings"
1143
- msgstr "Configurações de Cookies Não-Necessários"
1144
-
1145
- #: admin/views/admin_non_necessary_cookie.php:31
1146
- msgid "Enable Non-necessary Cookie"
1147
- msgstr "Ativar Cookie Não-Necessários"
1148
-
1149
- #: admin/views/admin_non_necessary_cookie.php:38
1150
- msgid "Default state"
1151
- msgstr "Estado Padrão"
1152
-
1153
- #: admin/views/admin_non_necessary_cookie.php:39
1154
- #: public/modules/script-blocker/views/settings.php:141
1155
- #: public/views/cookie-law-info_popup_content.php:7
1156
- msgid "Enabled"
1157
- msgstr "Ativado"
1158
-
1159
- #: admin/views/admin_non_necessary_cookie.php:40
1160
- #: public/views/cookie-law-info_popup_content.php:8
1161
- msgid "Disabled"
1162
- msgstr "Desativado"
1163
-
1164
- #: admin/views/admin_non_necessary_cookie.php:42
1165
- msgid ""
1166
- "If you enable this option, the category toggle button will be in the active "
1167
- "state for cookie consent."
1168
- msgstr ""
1169
- "Se você habilitar essa opção, o botão de alternar categoria estará no estado "
1170
- "ativo para o consentimento do cookie."
1171
-
1172
- #: admin/views/admin_non_necessary_cookie.php:62
1173
- msgid ""
1174
- "This script will be added to the page HEAD section if the above settings is "
1175
- "enabled and user has give consent."
1176
- msgstr ""
1177
- "Este script será adicionado à seção HEAD da página se as configurações acima "
1178
- "forem ativadas e o usuário tiver o consentimento."
1179
-
1180
- #: admin/views/admin_non_necessary_cookie.php:67
1181
- msgid ""
1182
- "Print scripts in the head tag on the front end if above cookie settings is "
1183
- "enabled and user has given consent."
1184
- msgstr ""
1185
- "Imprima scripts na tag head na parte frontal se as configurações acima do "
1186
- "cookie forem ativadas e o usuário tiver dado consentimento."
1187
-
1188
- #: admin/views/admin_non_necessary_cookie.php:74
1189
- msgid ""
1190
- "This script will be added right after the BODY section if the above settings "
1191
- "is enabled and user has given consent."
1192
- msgstr ""
1193
- "Este script será adicionado logo após a seção BODY se as configurações acima "
1194
- "forem ativadas e o usuário tiver dado consentimento."
1195
-
1196
- #: admin/views/admin_non_necessary_cookie.php:77
1197
- msgid ""
1198
- "Print scripts before the closing body tag on the front end if above cookie "
1199
- "settings is enabled and user has given consent."
1200
- msgstr ""
1201
- "Imprima scripts antes da tag de fechamento do corpo no front end se as "
1202
- "configurações de cookies acima estiverem habilitadas e o usuário tiver dado "
1203
- "consentimento."
1204
-
1205
- #: admin/views/goto-pro.php:56
1206
- msgid "Where did my settings go?"
1207
- msgstr "Para onde foram minhas configurações?"
1208
-
1209
- #: admin/views/goto-pro.php:57
1210
- msgid "Cookie Law Info version 0.9 has been updated and has new settings."
1211
- msgstr "O Cookie Law Info versão 0.9 foi atualizado e tem novas configurações."
1212
-
1213
- #: admin/views/goto-pro.php:57
1214
- msgid "Your previous settings are safe."
1215
- msgstr "Suas configurações anteriores são seguras."
1216
-
1217
- #: admin/views/goto-pro.php:58
1218
- msgid ""
1219
- "You can either copy over your old settings to this version, or use the new "
1220
- "default values."
1221
- msgstr ""
1222
- "Você pode copiar as configurações antigas para esta versão ou usar os novos "
1223
- "valores padrão."
1224
-
1225
- #: admin/views/goto-pro.php:60
1226
- msgid "Would you like to:"
1227
- msgstr "Você gostaria de:"
1228
-
1229
- #: admin/views/goto-pro.php:62
1230
- msgid "Use previous settings"
1231
- msgstr "Use as configurações anteriores"
1232
-
1233
- #: admin/views/goto-pro.php:63
1234
- msgid "Start afresh with the new version"
1235
- msgstr "Comece de novo com a nova versão"
1236
-
1237
- #: admin/views/goto-pro.php:67
1238
- msgid ""
1239
- "If you want to go back to the previous version you can always download it "
1240
- "again from"
1241
- msgstr ""
1242
- "Se você quiser voltar para a versão anterior, você sempre pode baixá-la "
1243
- "novamente de"
1244
-
1245
- #: admin/views/goto-pro.php:73
1246
- msgid "30 Day Money Back Guarantee"
1247
- msgstr "30 dias de Garantia ou seu dinheiro de volta"
1248
-
1249
- #: admin/views/goto-pro.php:74
1250
- msgid "Fast and Superior Support"
1251
- msgstr "Suporte Rápido e Superior"
1252
-
1253
- #: admin/views/goto-pro.php:75
1254
- msgid "10X Powerful with GDPR Cookie Consent Features That Every Site Needs"
1255
- msgstr ""
1256
- "10X Poderoso com os Recursos de Consentimento de Cookies GDPR que Todo Site "
1257
- "Precisa"
1258
-
1259
- #: admin/views/goto-pro.php:78
1260
- msgid "Upgrade to Premium"
1261
- msgstr "Atualizar para Premium"
1262
-
1263
- #: admin/views/goto-pro.php:84
1264
- msgid "Automatic Cookie Scanner"
1265
- msgstr "Scanner automático de cookies"
1266
-
1267
- #: admin/views/goto-pro.php:85
1268
- msgid ""
1269
- "Auto block scripts - Google Analytics, Facebook Pixel, Google Tag Manager, "
1270
- "Hotjar Analytics, Google Publisher Tag, Youtube embed, Vimeo embed, Google "
1271
- "maps, Addthis widget, Sharethis widget, Twitter widget, Soundcloud embed, "
1272
- "Slideshare embed, Linkedin widget, Instagram embed, Pinterest widget"
1273
- msgstr ""
1274
- "Bloqueio automático de scripts - Google Analytics, Facebook Pixel, Gerenciador "
1275
- "de tags do Google, Hotjar Analytics, Tag do editor do Google, incorporação do "
1276
- "YouTube, incorporação do Vimeo, mapas do Google, widget Addthis, widget "
1277
- "Sharethis, widget Twitter, incorporação do Soundcloud, incorporação do "
1278
- "Slideshare, widget Linkedin Widget Pinterest"
1279
-
1280
- #: admin/views/goto-pro.php:86
1281
- msgid "Location based exclusion of cookie notice for EU countries"
1282
- msgstr "Exclusão baseada em localização do aviso de cookies para países da UE"
1283
-
1284
- #: admin/views/goto-pro.php:87
1285
- msgid "Granular control over the cookies/scipts used by the website"
1286
- msgstr "Controle granular sobre os cookies/scripts usados pelo site"
1287
-
1288
- #: admin/views/goto-pro.php:88
1289
- msgid "User consent audit logs"
1290
- msgstr "Logs de auditoria de consentimento do usuário"
1291
-
1292
- #: admin/views/goto-pro.php:89
1293
- msgid "Customized privacy overview"
1294
- msgstr "Visão geral de privacidade customizada"
1295
-
1296
- #: admin/views/goto-pro.php:90
1297
- msgid "Cookie bar preview in admin settings page"
1298
- msgstr ""
1299
- "Visualização da barra de cookies na página de configurações de administrador"
1300
-
1301
- #: admin/views/goto-pro.php:91
1302
- msgid "Advanced support for cache plugins"
1303
- msgstr "Suporte avançado para plugins de cache"
1304
-
1305
- #: admin/views/goto-pro.php:92
1306
- msgid "Cookie bar theme customizer for banner/ widgets/ popup"
1307
- msgstr ""
1308
- "Personalizador de tema de barra de cookies para banner / widgets / janelas"
1309
-
1310
- #: admin/views/goto-pro.php:93
1311
- msgid "GDPR compliance with Google Tag Manager"
1312
- msgstr "Conformidade com o GDPR com o Gerenciador de tags do Google"
1313
-
1314
- #: admin/views/goto-pro.php:94
1315
- msgid "Javascript helper functions"
1316
- msgstr "Funções auxiliares de Javascript"
1317
-
1318
- #: admin/views/goto-pro.php:108
1319
- msgid "Like this plugin?"
1320
- msgstr "Gosta deste plugin?"
1321
-
1322
- #: admin/views/goto-pro.php:109
1323
- msgid "If you find this plugin useful please show your support and rate it"
1324
- msgstr "Se você achar este plugin útil, mostre seu apoio e avalie-o"
1325
-
1326
- #: admin/views/goto-pro.php:109
1327
- msgid " on"
1328
- msgstr " em"
1329
-
1330
- #: admin/views/goto-pro.php:109
1331
- msgid " much appreciated!"
1332
- msgstr " muito apreciado!"
1333
-
1334
- #: cookie-law-info.php:80
1335
- msgid ""
1336
- "Please make sure the cache is cleared after each plugin update especially if "
1337
- "you have minified JS and/or CSS files."
1338
- msgstr ""
1339
- "Certifique-se de que o cache seja limpo após cada atualização do plug-in, "
1340
- "especialmente se você tiver arquivos JS e / ou CSS reduzidos."
1341
-
1342
- #: includes/class-cookie-law-info-review_request.php:52
1343
- #, php-format
1344
- msgid ""
1345
- "Hey, we at %sWebToffee%s would like to thank you for using our plugin. We "
1346
- "would really appreciate if you could take a moment to drop a quick review that "
1347
- "will inspire us to keep going."
1348
- msgstr ""
1349
- "Ei, nós em %sWebToffee% s gostaríamos de agradecer por usar nosso plug-in. "
1350
- "Agradeceríamos muito se você pudesse reservar um momento para fazer uma "
1351
- "revisão rápida que nos inspirará a continuar."
1352
-
1353
- #: includes/class-cookie-law-info-review_request.php:55
1354
- msgid "Remind me later"
1355
- msgstr "Lembrar-me mais tarde"
1356
-
1357
- #: includes/class-cookie-law-info-review_request.php:56
1358
- msgid "Not interested"
1359
- msgstr "Sem interesse"
1360
-
1361
- #: includes/class-cookie-law-info-review_request.php:57
1362
- msgid "Review now"
1363
- msgstr "Reveja agora"
1364
-
1365
- #. Plugin Name of the plugin/theme
1366
- #: public/class-cookie-law-info-public.php:251
1367
- msgid "GDPR Cookie Consent"
1368
- msgstr "GDPR Consentimento de Cookie"
1369
-
1370
- #: public/class-cookie-law-info-public.php:252
1371
- msgid "Cookie List"
1372
- msgstr "Lista de cookies"
1373
-
1374
- #: public/class-cookie-law-info-public.php:253
1375
- #: public/modules/shortcode/shortcode.php:208
1376
- msgid "Cookie"
1377
- msgstr "Cookie"
1378
-
1379
- #: public/class-cookie-law-info-public.php:254
1380
- msgid "Add New"
1381
- msgstr "Adicionar Novo"
1382
-
1383
- #: public/class-cookie-law-info-public.php:255
1384
- msgid "Add New Cookie Type"
1385
- msgstr "Adicionar Novo Tipo de Cookie"
1386
-
1387
- #: public/class-cookie-law-info-public.php:256
1388
- msgid "Edit Cookie Type"
1389
- msgstr "Editar Tipo de Cookie"
1390
-
1391
- #: public/class-cookie-law-info-public.php:257
1392
- msgid "New Cookie Type"
1393
- msgstr "Novo Tipo de Cookie"
1394
-
1395
- #: public/class-cookie-law-info-public.php:258
1396
- msgid "View Cookie Type"
1397
- msgstr "Ver Tipo de Cookie"
1398
-
1399
- #: public/class-cookie-law-info-public.php:259
1400
- msgid "Search Cookies"
1401
- msgstr "Pesquisar Cookies"
1402
-
1403
- #: public/class-cookie-law-info-public.php:260
1404
- msgid "Nothing found"
1405
- msgstr "Nada encontrado"
1406
-
1407
- #: public/class-cookie-law-info-public.php:261
1408
- msgid "Nothing found in Trash"
1409
- msgstr "Nada encontrado na Lixeira"
1410
-
1411
- #: public/modules/script-blocker/script-blocker.php:156
1412
- #: public/modules/script-blocker/script-blocker.php:157
1413
- msgid "Script Blocker"
1414
- msgstr "Bloqueador de script"
1415
-
1416
- #: public/modules/script-blocker/script-blocker.php:182
1417
- msgid "Status updated"
1418
- msgstr "Status atualizado"
1419
-
1420
- #: public/modules/script-blocker/script-blocker.php:206
1421
- msgid "Advanced script rendering"
1422
- msgstr "Renderização avançada de script"
1423
-
1424
- #: public/modules/script-blocker/script-blocker.php:208
1425
- #: public/modules/script-blocker/views/settings.php:7
1426
- msgid "Enable"
1427
- msgstr "Habilitar"
1428
-
1429
- #: public/modules/script-blocker/script-blocker.php:209
1430
- #: public/modules/script-blocker/views/settings.php:7
1431
- msgid "Disable"
1432
- msgstr "Desativar"
1433
-
1434
- #: public/modules/script-blocker/script-blocker.php:210
1435
- msgid ""
1436
- "Advanced script rendering will render the blocked scripts using javascript "
1437
- "thus eliminating the need for a page refresh. It is also optimized for caching "
1438
- "since there is no server-side processing after obtaining the consent."
1439
- msgstr ""
1440
- "A renderização avançada de script renderizará os scripts bloqueados usando "
1441
- "javascript, eliminando assim a necessidade de atualização da página. Ele "
1442
- "também é otimizado para armazenamento em cache, pois não há processamento do "
1443
- "lado do servidor após a obtenção do consentimento."
1444
-
1445
- #: public/modules/script-blocker/views/settings.php:9
1446
- msgid "Script blocker is enabled."
1447
- msgstr "O bloqueador de scripts está habilitado."
1448
-
1449
- #: public/modules/script-blocker/views/settings.php:9
1450
- msgid ""
1451
- "Script blocker is currently disabled. Enable the blocker if you want any of "
1452
- "the below listed plugins to be auto blocked."
1453
- msgstr ""
1454
- "O bloqueador de scripts está desativado no momento. Habilite o bloqueador se "
1455
- "quiser que qualquer um dos plug-ins listados abaixo seja bloqueado "
1456
- "automaticamente."
1457
-
1458
- #: public/modules/script-blocker/views/settings.php:10
1459
- #, php-format
1460
- msgid "<a href=\"javascript: submitform()\">%s</a>"
1461
- msgstr "<a href=\"javascript: submitform()\">%s</a>"
1462
-
1463
- #: public/modules/script-blocker/views/settings.php:14
1464
- #, php-format
1465
- msgid ""
1466
- "Advanced script rendering is currently disabled. It should be enabled for the "
1467
- "automatic script blocker to function. <a href=\"%s\">Enable.</a>"
1468
- msgstr ""
1469
- "A renderização de script avançada está atualmente desativada. Deve ser "
1470
- "habilitado para que o bloqueador de script automático funcione. <a href=\"%s"
1471
- "\">Habilitar.</a>"
1472
-
1473
- #: public/modules/script-blocker/views/settings.php:113
1474
- msgid "Manage Script Blocking"
1475
- msgstr "Gerenciar Bloqueio de Script"
1476
-
1477
- #: public/modules/script-blocker/views/settings.php:134
1478
- #, php-format
1479
- msgid ""
1480
- "Below is the list of plugins currently supported for auto blocking. Plugins "
1481
- "marked inactive are either not installed or activated on your website. Enabled "
1482
- "plugins will be blocked by default on the front-end of your website prior to "
1483
- "obtaining user consent and rendered respectively based on consent. <a href=\"%s"
1484
- "\" target=\"_blank\">Read more.</a>"
1485
- msgstr ""
1486
- "Abaixo está a lista de plug-ins atualmente com suporte para bloqueio "
1487
- "automático. Os plug-ins marcados como inativos não estão instalados ou "
1488
- "ativados em seu site. Os plug-ins ativados serão bloqueados por padrão no "
1489
- "front-end do seu site antes de obter o consentimento do usuário e processados "
1490
- "respectivamente com base no consentimento. <a href=\"%s\" target=\"_blank"
1491
- "\">Consulte Mais informação.</a>"
1492
-
1493
- #: public/modules/script-blocker/views/settings.php:140
1494
- msgid "Name"
1495
- msgstr "Nome"
1496
-
1497
- #: public/modules/script-blocker/views/settings.php:141
1498
- msgid ""
1499
- "Enabled: Plugins will be blocked by default prior to obtaining user consent."
1500
- msgstr ""
1501
- "Habilitado: os plug-ins serão bloqueados por padrão antes de obter o "
1502
- "consentimento do usuário."
1503
-
1504
- #: public/modules/script-blocker/views/settings.php:141
1505
- msgid "Disabled: Plugins will be rendered prior to obtaining consent."
1506
- msgstr "Desativado: os plug-ins serão renderizados antes de obter consentimento."
1507
-
1508
- #: public/modules/script-blocker/views/settings.php:175
1509
- msgid "Inactive"
1510
- msgstr "Inativo"
1511
-
1512
- #: public/modules/shortcode/shortcode.php:99
1513
- msgid "Your current state:"
1514
- msgstr "Seu estado atual:"
1515
-
1516
- #: public/modules/shortcode/shortcode.php:104
1517
- msgid "Consent accepted."
1518
- msgstr "Aceito consentimento."
1519
-
1520
- #: public/modules/shortcode/shortcode.php:107
1521
- msgid "Consent rejected."
1522
- msgstr "Consentimento rejeitado."
1523
-
1524
- #: public/modules/shortcode/shortcode.php:111
1525
- msgid "No consent given."
1526
- msgstr "Nenhum consentimento dado."
1527
-
1528
- #: public/modules/shortcode/shortcode.php:113
1529
- msgid "Manage your consent."
1530
- msgstr "Gerencie seu consentimento."
1531
-
1532
- #: public/modules/shortcode/shortcode.php:150
1533
- msgid "Delete Cookies"
1534
- msgstr "Apagar Cookies"
1535
-
1536
- #: public/modules/shortcode/shortcode.php:186
1537
- msgid "No records found"
1538
- msgstr "Nenhum registro encontrado"
1539
-
1540
- #: public/modules/shortcode/shortcode.php:212
1541
- msgid "Type"
1542
- msgstr "Tipo"
1543
-
1544
- #: public/modules/shortcode/shortcode.php:216
1545
- msgid "Duration"
1546
- msgstr "Duração"
1547
-
1548
- #: public/modules/shortcode/shortcode.php:533
1549
- msgid "Close the cookie bar"
1550
- msgstr "Feche a barra de cookies"
1551
-
1552
- #: public/modules/shortcode/shortcode.php:533
1553
- msgid "Close and Accept"
1554
- msgstr "Fechar e Aceitar"
1555
-
1556
- #: public/views/cookie-law-info_bar.php:23
1557
- msgid "Close"
1558
- msgstr "Fechar"
1559
-
1560
- #: public/views/cookie-law-info_popup_content.php:6
1561
- msgid "Always Enabled"
1562
- msgstr "Sempre Ativado"
1563
-
1564
- #: public/views/cookie-law-info_popup_content.php:9
1565
- msgid "Show more"
1566
- msgstr "Mostrar mais"
1567
-
1568
- #: public/views/cookie-law-info_popup_content.php:9
1569
- msgid "Show less"
1570
- msgstr "Mostrar menos"
1571
-
1572
- #. Plugin URI of the plugin/theme
1573
- msgid "https://www.webtoffee.com/product/gdpr-cookie-consent/"
1574
- msgstr "https://www.webtoffee.com/product/gdpr-cookie-consent/"
1575
-
1576
- #. Description of the plugin/theme
1577
- msgid "A simple way to show your website complies with the EU Cookie Law / GDPR."
1578
- msgstr ""
1579
- "Uma maneira simples de mostrar que seu site está em conformidade com a Lei de "
1580
- "Cookies da UE / GDPR."
1581
-
1582
- #. Author of the plugin/theme
1583
- msgid "WebToffee"
1584
- msgstr "WebToffee"
1585
-
1586
- #. Author URI of the plugin/theme
1587
- msgid "http://cookielawinfo.com/"
1588
- msgstr "http://cookielawinfo.com/"
1589
-
1590
- #~ msgid ""
1591
- #~ "Which plugin are you using for language translation? Could you tell us a "
1592
- #~ "bit more?"
1593
- #~ msgstr ""
1594
- #~ "Qual plugin você está usando para tradução de idioma? Você poderia nos "
1595
- #~ "contar um pouco mais?"
1596
-
1597
- #~ msgid "Caching issues"
1598
- #~ msgstr "Problemas de cache"
1599
-
1600
- #~ msgid "Which caching plugin are you using? Could you tell us a bit more?"
1601
- #~ msgstr ""
1602
- #~ "Qual plugin de cache você está usando? Você poderia nos contar um pouco "
1603
- #~ "mais?"
1604
-
1605
- #~ msgid "Cookie Law Settings"
1606
- #~ msgstr "Definições de Lei de Cookies"
1607
-
1608
- #~ msgid "Show Again Tab"
1609
- #~ msgstr "Mostrar Novamente Guia"
1610
-
1611
- #~ msgid "Use Show Again Tab?"
1612
- #~ msgstr "Usar a Guia Mostrar Novamente?"
1613
-
1614
- #~ msgid "Show More Text"
1615
- #~ msgstr "Exibir Mais Texto"
1616
-
1617
- #~ msgid "Non-necessary Cookie"
1618
- #~ msgstr "Cookie Não-Necessários"
1619
-
1620
- #~ msgid "Necessary Cookie"
1621
- #~ msgstr "Cookie Necessários"
1622
-
1623
- #~ msgid "Your Cookie Law Info bar is switched on"
1624
- #~ msgstr "Sua barra de informações da Lei de Cookies está ligada"
1625
-
1626
- #~ msgid "Your Cookie Law Info bar is switched off"
1627
- #~ msgstr "Sua barra de informações da Lei de Cookies está desligada"
1628
-
1629
- #~ msgid "Cookie Bar will be shown in:"
1630
- #~ msgstr "Cookie Bar será mostrado em:"
1631
-
1632
- #~ msgid "Disappear"
1633
- #~ msgstr "Desaparecer"
1634
-
1635
- #~ msgid "Show Border?"
1636
- #~ msgstr "Mostrar borda?"
1637
-
1638
- #~ msgid "Border Colour"
1639
- #~ msgstr "Cor da borda"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/cookie-law-info-pt_PT.mo DELETED
Binary file
languages/cookie-law-info-pt_PT.po DELETED
@@ -1,1635 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: GDPR Cookie Consent\n"
4
- "POT-Creation-Date: 2020-11-17 11:35+0530\n"
5
- "PO-Revision-Date: 2020-11-17 11:35+0530\n"
6
- "Last-Translator: \n"
7
- "Language-Team: \n"
8
- "Language: pt\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.4.2\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "X-Poedit-WPHeader: cookie-law-info.php\n"
15
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
18
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
19
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
20
- "X-Poedit-SearchPath-0: .\n"
21
- "X-Poedit-SearchPathExcluded-0: *.js\n"
22
-
23
- #: admin/class-cookie-law-info-admin.php:147
24
- #: admin/class-cookie-law-info-admin.php:148
25
- #: admin/class-cookie-law-info-admin.php:247
26
- #: admin/partials/cookie-law-info-admin_settings.php:31
27
- msgid "Settings"
28
- msgstr "Definições"
29
-
30
- #: admin/class-cookie-law-info-admin.php:155
31
- #: admin/class-cookie-law-info-admin.php:156
32
- #: public/modules/script-blocker/views/settings.php:174
33
- #: public/views/cookie-law-info_popup_content.php:23
34
- msgid "Non-necessary"
35
- msgstr "Não necessário"
36
-
37
- #: admin/class-cookie-law-info-admin.php:163
38
- #: admin/class-cookie-law-info-admin.php:164
39
- #: public/views/cookie-law-info_popup_content.php:22
40
- msgid "Necessary"
41
- msgstr "Necessário"
42
-
43
- #: admin/class-cookie-law-info-admin.php:171
44
- #: admin/class-cookie-law-info-admin.php:172
45
- #: admin/partials/cookie-law-info-privacy_overview.php:25
46
- msgid "Privacy Overview"
47
- msgstr "Visão geral de privacidade"
48
-
49
- #: admin/class-cookie-law-info-admin.php:221
50
- #: admin/class-cookie-law-info-admin.php:276
51
- #: admin/class-cookie-law-info-admin.php:334
52
- #: admin/class-cookie-law-info-admin.php:378
53
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:22
54
- #: public/modules/script-blocker/script-blocker.php:133
55
- #: public/modules/script-blocker/script-blocker.php:173
56
- #: public/modules/script-blocker/script-blocker.php:310
57
- msgid "You do not have sufficient permission to perform this operation"
58
- msgstr "Você não tem permissão suficiente para executar esta operação"
59
-
60
- #: admin/class-cookie-law-info-admin.php:240
61
- #: admin/class-cookie-law-info-admin.php:306
62
- #: admin/class-cookie-law-info-admin.php:359
63
- #: admin/class-cookie-law-info-admin.php:403
64
- msgid "Settings Updated."
65
- msgstr "Configurações atualizadas."
66
-
67
- #: admin/class-cookie-law-info-admin.php:248
68
- msgid "Support"
69
- msgstr "Apoio, suporte"
70
-
71
- #: admin/class-cookie-law-info-admin.php:249
72
- msgid "Premium Upgrade"
73
- msgstr "Upgrade Premium"
74
-
75
- #: admin/class-cookie-law-info-admin.php:418
76
- msgid "ERROR MIGRATING SETTINGS (ERROR: 2)"
77
- msgstr "ERRO MIGRAR CONFIGURAÇÕES (ERRO: 2)"
78
-
79
- #: admin/class-cookie-law-info-admin.php:436
80
- msgid "Cookie ID"
81
- msgstr "ID do cookie"
82
-
83
- #: admin/class-cookie-law-info-admin.php:437
84
- msgid "Cookie Type"
85
- msgstr "Tipo de Cookie"
86
-
87
- #: admin/class-cookie-law-info-admin.php:438
88
- msgid "Cookie Duration"
89
- msgstr "Duração do cookie"
90
-
91
- #: admin/class-cookie-law-info-admin.php:439
92
- msgid "Cookie Sensitivity"
93
- msgstr "Sensibilidade de Cookie"
94
-
95
- #: admin/class-cookie-law-info-admin.php:689
96
- msgid "Close Header"
97
- msgstr "Fechar cabeçalho"
98
-
99
- #: admin/class-cookie-law-info-admin.php:693
100
- msgid "Open URL"
101
- msgstr "Url aberta"
102
-
103
- #: admin/class-cookie-law-info-admin.php:706
104
- msgid "Extra Large"
105
- msgstr "Extra grande"
106
-
107
- #: admin/class-cookie-law-info-admin.php:710
108
- msgid "Large"
109
- msgstr "Grande"
110
-
111
- #: admin/class-cookie-law-info-admin.php:714
112
- msgid "Medium"
113
- msgstr "Médio"
114
-
115
- #: admin/class-cookie-law-info-admin.php:718
116
- msgid "Small"
117
- msgstr "pequeno"
118
-
119
- #: admin/class-cookie-law-info-admin.php:732
120
- msgid "Default theme font"
121
- msgstr "Fonte do tema padrão"
122
-
123
- #: admin/class-cookie-law-info-admin.php:736
124
- msgid "Sans Serif"
125
- msgstr "Sans Serif"
126
-
127
- #: admin/class-cookie-law-info-admin.php:740
128
- msgid "Serif"
129
- msgstr "Serif"
130
-
131
- #: admin/class-cookie-law-info-admin.php:744
132
- msgid "Arial"
133
- msgstr "Arial"
134
-
135
- #: admin/class-cookie-law-info-admin.php:748
136
- msgid "Arial Black"
137
- msgstr "Arial Black"
138
-
139
- #: admin/class-cookie-law-info-admin.php:752
140
- msgid "Georgia, serif"
141
- msgstr "Georgia, serif"
142
-
143
- #: admin/class-cookie-law-info-admin.php:756
144
- msgid "Helvetica"
145
- msgstr "Helvetica"
146
-
147
- #: admin/class-cookie-law-info-admin.php:760
148
- msgid "Lucida"
149
- msgstr "Lucida"
150
-
151
- #: admin/class-cookie-law-info-admin.php:764
152
- msgid "Tahoma"
153
- msgstr "Tahoma"
154
-
155
- #: admin/class-cookie-law-info-admin.php:768
156
- msgid "Times New Roman"
157
- msgstr "Times New Roman"
158
-
159
- #: admin/class-cookie-law-info-admin.php:772
160
- msgid "Trebuchet"
161
- msgstr "Trebuchet"
162
-
163
- #: admin/class-cookie-law-info-admin.php:776
164
- msgid "Verdana"
165
- msgstr "Verdana"
166
-
167
- #: admin/modules/ccpa/ccpa.php:106
168
- msgid "Do you really wish to opt out?"
169
- msgstr "Deseja mesmo optar por não participar?"
170
-
171
- #: admin/modules/ccpa/ccpa.php:107
172
- msgid "Confirm"
173
- msgstr "Confirmar"
174
-
175
- #: admin/modules/ccpa/ccpa.php:108
176
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:154
177
- msgid "Cancel"
178
- msgstr "Cancelar"
179
-
180
- #: admin/modules/ccpa/ccpa.php:145
181
- msgid "Select the type of law"
182
- msgstr "Selecione o tipo de lei"
183
-
184
- #: admin/modules/ccpa/ccpa.php:149
185
- msgid "GDPR"
186
- msgstr "GDPR"
187
-
188
- #: admin/modules/ccpa/ccpa.php:150 admin/modules/ccpa/ccpa.php:158
189
- msgid ""
190
- "Customize the buttons, notice, themes from the relevant tabs to setup your "
191
- "cookie notice accordingly."
192
- msgstr ""
193
- "Personalize os botões, aviso, temas das guias relevantes para configurar seu "
194
- "aviso de cookie de acordo."
195
-
196
- #: admin/modules/ccpa/ccpa.php:153
197
- msgid "CCPA"
198
- msgstr "CCPA"
199
-
200
- #: admin/modules/ccpa/ccpa.php:154
201
- msgid ""
202
- "Most of the customizations from the tabs for buttons, notice or themes are not "
203
- "relevant especially if you choose to not show the notice, except the Do not "
204
- "sell within the buttons."
205
- msgstr ""
206
- "A maioria das personalizações das guias para botões, aviso ou temas não é "
207
- "relevante, especialmente se você optar por não mostrar o aviso, exceto a opção "
208
- "Não vender nos botões."
209
-
210
- #: admin/modules/ccpa/ccpa.php:157
211
- msgid "CCPA & GDPR"
212
- msgstr "CCPA e GDPR"
213
-
214
- #: admin/modules/ccpa/views/ccpa_settings.php:7
215
- msgid "CCPA Settings"
216
- msgstr "Configurações CCPA"
217
-
218
- #: admin/modules/ccpa/views/ccpa_settings.php:7
219
- msgid ""
220
- "The right to opt out in the California Consumer Privacy Act gives consumers "
221
- "the ability to direct a business not to sell their personal information to a "
222
- "third party. If the user considers to not sell their personal information, all "
223
- "the scripts related to the categories which are configured to sell personal "
224
- "information will be blocked. The DO NOT SELL option is facilitated via a "
225
- "shortcode [wt_cli_ccpa_optout]."
226
- msgstr ""
227
- "O direito de optar pela Lei de Privacidade do Consumidor da Califórnia oferece "
228
- "aos consumidores a capacidade de direcionar uma empresa a não vender suas "
229
- "informações pessoais a terceiros. Se o usuário considerar não vender suas "
230
- "informações pessoais, todos os scripts relacionados às categorias configuradas "
231
- "para vender informações pessoais serão bloqueados. A opção NÃO VENDER é "
232
- "facilitada através de um código curto [wt_cli_ccpa_optout]."
233
-
234
- #: admin/modules/ccpa/views/ccpa_settings.php:10
235
- msgid "Enable CCPA ?"
236
- msgstr "Ativar CCPA?"
237
-
238
- #: admin/modules/ccpa/views/ccpa_settings.php:18
239
- msgid "Enable CCPA notice"
240
- msgstr "Ativar aviso de CCPA"
241
-
242
- #: admin/modules/ccpa/views/ccpa_settings.php:18
243
- msgid ""
244
- "Enabling the notice will display the banner with the relevant text as per your "
245
- "configuration. Use this option particularly to record prior consent from the "
246
- "website visitors."
247
- msgstr ""
248
- "A ativação do aviso exibirá o banner com o texto relevante conforme sua "
249
- "configuração. Use esta opção particularmente para registrar o consentimento "
250
- "prévio dos visitantes do site."
251
-
252
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:26
253
- msgid "Unable to handle your request."
254
- msgstr "Não é possível lidar com o seu pedido."
255
-
256
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:96
257
- #: admin/modules/cli-policy-generator/classes/class-policy-generator-ajax.php:130
258
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:132
259
- msgid "Error"
260
- msgstr "Erro"
261
-
262
- #: admin/modules/cli-policy-generator/classes/class-preview-page.php:27
263
- msgid "Cookie Policy"
264
- msgstr "Política de Cookies"
265
-
266
- #: admin/modules/cli-policy-generator/classes/class-preview-page.php:83
267
- msgid "Auto reload preview"
268
- msgstr "Pré-visualização do recarregamento automático"
269
-
270
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:106
271
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:107
272
- #: admin/modules/cli-policy-generator/views/policy-generator.php:21
273
- msgid "Policy generator"
274
- msgstr "Gerador de políticas"
275
-
276
- #: admin/modules/cli-policy-generator/cli-policy-generator.php:133
277
- msgid "Success"
278
- msgstr "Sucesso"
279
-
280
- #: admin/modules/cli-policy-generator/views/policy-generator.php:25
281
- msgid "Sample heading"
282
- msgstr "Cabeçalho da amostra"
283
-
284
- #: admin/modules/cli-policy-generator/views/policy-generator.php:26
285
- msgid "Sample content"
286
- msgstr "Amostra de conteúdo"
287
-
288
- #: admin/modules/cli-policy-generator/views/policy-generator.php:27
289
- msgid "Delete"
290
- msgstr "Excluir"
291
-
292
- #: admin/modules/cli-policy-generator/views/policy-generator.php:49
293
- msgid "Add new"
294
- msgstr "Adicionar novo"
295
-
296
- #: admin/modules/cli-policy-generator/views/policy-generator.php:53
297
- msgid "Heading"
298
- msgstr "Título"
299
-
300
- #: admin/modules/cli-policy-generator/views/policy-generator.php:57
301
- #: admin/views/admin_necessary_cookie.php:39
302
- #: admin/views/admin_non_necessary_cookie.php:54
303
- #: public/modules/script-blocker/views/settings.php:142
304
- #: public/modules/shortcode/shortcode.php:220
305
- msgid "Description"
306
- msgstr "Descrição"
307
-
308
- #: admin/modules/cli-policy-generator/views/policy-generator.php:65
309
- msgid ""
310
- "Enabling this option will help us spread the word by placing a credit to "
311
- "WebToffee at the very end of the Cookie Policy page."
312
- msgstr ""
313
- "Habilitar essa opção nos ajudará a espalhar a palavra, colocando um crédito no "
314
- "WebToffee no final da página Política de Cookies."
315
-
316
- #: admin/modules/cli-policy-generator/views/policy-generator.php:82
317
- msgid "Update existing Cookie Policy page"
318
- msgstr "Atualize a página da Política de Cookies existente"
319
-
320
- #: admin/modules/cli-policy-generator/views/policy-generator.php:88
321
- msgid "Create Cookie Policy page"
322
- msgstr "Criar página de política de cookies"
323
-
324
- #: admin/modules/cli-policy-generator/views/policy-generator.php:92
325
- msgid "Live preview"
326
- msgstr "Visualização ao vivo"
327
-
328
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:43
329
- msgid "The plugin is complex to set up"
330
- msgstr "O plugin é complexo de configurar"
331
-
332
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:45
333
- msgid "Please describe which area you are facing difficulties"
334
- msgstr "Descreva em qual área você está enfrentando dificuldades"
335
-
336
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:49
337
- msgid "I found a better plugin"
338
- msgstr "Encontrei um plugin melhor"
339
-
340
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:51
341
- msgid "Which plugin?"
342
- msgstr "Qual plugin?"
343
-
344
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:55
345
- msgid "The plugin is great, but I need specific feature that you don't support"
346
- msgstr ""
347
- "O plugin é ótimo, mas eu preciso de um recurso específico que você não suporta"
348
-
349
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:57
350
- msgid "Could you tell us more about that feature?"
351
- msgstr "Você poderia nos contar mais sobre esse recurso?"
352
-
353
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:61
354
- msgid "The plugin didn't work as expected"
355
- msgstr "O plugin não funcionou como esperado"
356
-
357
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:63
358
- msgid "What did you expect?"
359
- msgstr "O que você esperava?"
360
-
361
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:67
362
- msgid "A conflict with another plugin or theme"
363
- msgstr "Um conflito com outro plugin ou tema"
364
-
365
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:69
366
- msgid "Which plugin or theme?"
367
- msgstr "Qual plugin ou tema?"
368
-
369
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:73
370
- msgid "Translation issues"
371
- msgstr "Problemas de tradução"
372
-
373
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:77
374
- msgid "Incorrect/missing translation"
375
- msgstr "Tradução incorreta / ausente"
376
-
377
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:79
378
- msgid "Name the language"
379
- msgstr "Nomeie o idioma"
380
-
381
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:83
382
- msgid ""
383
- "Unable to translate my dynamic content e.g, cookie message, button text etc"
384
- msgstr ""
385
- "Não é possível traduzir meu conteúdo dinâmico, por exemplo, mensagem de "
386
- "cookie, texto do botão etc."
387
-
388
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:85
389
- msgid "Name the language and the translator plugin that you are using"
390
- msgstr "Nomeie o idioma e o plugin tradutor que você está usando"
391
-
392
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:91
393
- msgid "Upgrade to pro"
394
- msgstr "Atualização para pro"
395
-
396
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:95
397
- #: admin/views/admin-settings-general.php:10
398
- #: admin/views/admin-settings-general.php:66
399
- msgid "Other"
400
- msgstr "De outros"
401
-
402
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:97
403
- msgid "Could you tell us a bit more?"
404
- msgstr "Você poderia nos contar um pouco mais?"
405
-
406
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:117
407
- msgid "If you have a moment, please let us know why you are deactivating:"
408
- msgstr "Se você tiver um momento, deixe-nos saber por que você está desativando:"
409
-
410
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:144
411
- msgid ""
412
- "We do not collect any personal data when you submit this form. It's your "
413
- "feedback that we value."
414
- msgstr ""
415
- "Não recolhemos quaisquer dados pessoais quando envia este formulário. É o seu "
416
- "feedback que valorizamos."
417
-
418
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:145
419
- msgid "Privacy Policy"
420
- msgstr "Política de Privacidade"
421
-
422
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:152
423
- msgid "Go to support"
424
- msgstr "Vá para o suporte"
425
-
426
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:153
427
- msgid "Submit & Deactivate"
428
- msgstr "Enviar & Desativar"
429
-
430
- #: admin/modules/uninstall-feedback/uninstall-feedback.php:155
431
- msgid "I rather wouldn't say"
432
- msgstr "Eu prefiro não dizer"
433
-
434
- #: admin/partials/cookie-law-info-admin_settings.php:25
435
- #: admin/views/admin_necessary_cookie.php:20
436
- #: admin/views/admin_non_necessary_cookie.php:17
437
- msgid "Settings updated."
438
- msgstr "Configurações atualizadas."
439
-
440
- #: admin/partials/cookie-law-info-admin_settings.php:26
441
- #: admin/views/admin_necessary_cookie.php:21
442
- #: admin/views/admin_non_necessary_cookie.php:18
443
- msgid "Unable to update Settings."
444
- msgstr "Não é possível atualizar as configurações."
445
-
446
- #: admin/partials/cookie-law-info-admin_settings.php:27
447
- msgid "Settings reset to defaults."
448
- msgstr "Configurações redefinidas para os padrões."
449
-
450
- #: admin/partials/cookie-law-info-admin_settings.php:28
451
- msgid "Unable to reset settings."
452
- msgstr "Não é possível redefinir as configurações."
453
-
454
- #: admin/partials/cookie-law-info-admin_settings.php:39
455
- msgid "Cookie bar is currently active"
456
- msgstr "A barra de cookies está ativa no momento"
457
-
458
- #: admin/partials/cookie-law-info-admin_settings.php:47
459
- msgid "Cookie bar is currently inactive"
460
- msgstr "A barra de cookies está atualmente inativa"
461
-
462
- #: admin/partials/cookie-law-info-admin_settings.php:57
463
- #: admin/views/admin-settings-general.php:9
464
- msgid "General"
465
- msgstr "Geral"
466
-
467
- #: admin/partials/cookie-law-info-admin_settings.php:58
468
- msgid "Customise Cookie Bar"
469
- msgstr "Personalizar Cookie Bar"
470
-
471
- #: admin/partials/cookie-law-info-admin_settings.php:59
472
- msgid "Customise Buttons"
473
- msgstr "Personalizar botões"
474
-
475
- #: admin/partials/cookie-law-info-admin_settings.php:60
476
- #: admin/views/admin-settings-advanced.php:8
477
- msgid "Advanced"
478
- msgstr "Avançado"
479
-
480
- #: admin/partials/cookie-law-info-admin_settings.php:61
481
- msgid "Help Guide"
482
- msgstr "Guia de ajuda"
483
-
484
- #: admin/partials/cookie-law-info-privacy_overview.php:32
485
- msgid "Privacy Overview Title"
486
- msgstr "Visão geral de privacidade Título"
487
-
488
- #: admin/partials/cookie-law-info-privacy_overview.php:38
489
- #: admin/partials/cookie-law-info-privacy_overview.php:53
490
- msgid "This will be shown in the settings visible for user on consent screen."
491
- msgstr ""
492
- "Isso será mostrado nas configurações visíveis para o usuário na tela de "
493
- "consentimento."
494
-
495
- #: admin/partials/cookie-law-info-privacy_overview.php:61
496
- msgid "Save Settings"
497
- msgstr "Salvar configurações"
498
-
499
- #: admin/views/admin-settings-advanced.php:9
500
- msgid ""
501
- "Sometimes themes apply settings that clash with plugins. If that happens, try "
502
- "adjusting these settings."
503
- msgstr ""
504
- "Às vezes, os temas aplicam configurações que se chocam com plug-ins. Se isso "
505
- "acontecer, tente ajustar essas configurações."
506
-
507
- #: admin/views/admin-settings-advanced.php:13
508
- msgid "Reset all values"
509
- msgstr "Redefinir todos os valores"
510
-
511
- #: admin/views/admin-settings-advanced.php:15
512
- msgid "Delete settings and reset"
513
- msgstr "Excluir configurações e redefinir"
514
-
515
- #: admin/views/admin-settings-advanced.php:15
516
- msgid "Are you sure you want to delete all your settings?"
517
- msgstr "Tem certeza de que deseja excluir todas as suas configurações?"
518
-
519
- #: admin/views/admin-settings-advanced.php:16
520
- msgid "Warning: this will actually delete your current settings."
521
- msgstr "Aviso: isso realmente excluirá suas configurações atuais."
522
-
523
- #: admin/views/admin-settings-buttons.php:10
524
- msgid "Accept Button"
525
- msgstr "Aceitar botão"
526
-
527
- #: admin/views/admin-settings-buttons.php:11
528
- #: admin/views/admin-settings-buttons.php:93
529
- msgid "Reject Button"
530
- msgstr "Botão Rejeitar"
531
-
532
- #: admin/views/admin-settings-buttons.php:12
533
- #: admin/views/admin-settings-buttons.php:163
534
- msgid "Settings Button"
535
- msgstr "Botão de configurações"
536
-
537
- #: admin/views/admin-settings-buttons.php:13
538
- #: admin/views/admin-settings-buttons.php:206
539
- msgid "Read More Link"
540
- msgstr "Leia mais link"
541
-
542
- #: admin/views/admin-settings-buttons.php:14
543
- #: admin/views/admin-settings-buttons.php:326
544
- msgid "Do not sell link"
545
- msgstr "Não vender link"
546
-
547
- #: admin/views/admin-settings-buttons.php:20
548
- msgid "Main Button"
549
- msgstr "Botão Principal"
550
-
551
- #: admin/views/admin-settings-buttons.php:21
552
- msgid ""
553
- "This button/link can be customised to either simply close the cookie bar, or "
554
- "follow a link. You can also customise the colours and styles, and show it as a "
555
- "link or a button."
556
- msgstr ""
557
- "Este botão / link pode ser personalizado para simplesmente fechar a barra de "
558
- "cookies ou seguir um link. Você também pode personalizar as cores e estilos e "
559
- "mostrá-lo como um link ou um botão."
560
-
561
- #: admin/views/admin-settings-buttons.php:24
562
- #: admin/views/admin-settings-buttons.php:96
563
- #: admin/views/admin-settings-buttons.php:166
564
- #: admin/views/admin-settings-buttons.php:220
565
- msgid "Text"
566
- msgstr "Texto"
567
-
568
- #: admin/views/admin-settings-buttons.php:30
569
- #: admin/views/admin-settings-buttons.php:102
570
- #: admin/views/admin-settings-buttons.php:172
571
- #: admin/views/admin-settings-buttons.php:226
572
- #: admin/views/admin-settings-buttons.php:346
573
- msgid "Text colour"
574
- msgstr "Cor do texto"
575
-
576
- #: admin/views/admin-settings-buttons.php:38
577
- #: admin/views/admin-settings-buttons.php:110
578
- #: admin/views/admin-settings-buttons.php:180
579
- #: admin/views/admin-settings-buttons.php:234
580
- #: admin/views/admin-settings-buttons.php:335
581
- msgid "Show as"
582
- msgstr "Mostrar como"
583
-
584
- #: admin/views/admin-settings-buttons.php:40
585
- #: admin/views/admin-settings-buttons.php:112
586
- #: admin/views/admin-settings-buttons.php:182
587
- #: admin/views/admin-settings-buttons.php:236
588
- msgid "Button"
589
- msgstr "Botão"
590
-
591
- #: admin/views/admin-settings-buttons.php:42
592
- #: admin/views/admin-settings-buttons.php:114
593
- #: admin/views/admin-settings-buttons.php:184
594
- #: admin/views/admin-settings-buttons.php:238
595
- #: admin/views/admin-settings-buttons.php:337
596
- msgid "Link"
597
- msgstr "Ligação"
598
-
599
- #: admin/views/admin-settings-buttons.php:46
600
- #: admin/views/admin-settings-buttons.php:118
601
- #: admin/views/admin-settings-buttons.php:188
602
- #: admin/views/admin-settings-buttons.php:242
603
- msgid "Background colour"
604
- msgstr "Cor de fundo"
605
-
606
- #: admin/views/admin-settings-buttons.php:55
607
- #: admin/views/admin-settings-buttons.php:126
608
- msgid "Action"
609
- msgstr "Açao"
610
-
611
- #: admin/views/admin-settings-buttons.php:63
612
- #: admin/views/admin-settings-buttons.php:138
613
- #: admin/views/admin-settings-buttons.php:253
614
- #: admin/views/admin-settings-buttons.php:260
615
- msgid "URL"
616
- msgstr "URL"
617
-
618
- #: admin/views/admin-settings-buttons.php:66
619
- #: admin/views/admin-settings-buttons.php:141
620
- msgid "Button will only link to URL if Action = Open URL"
621
- msgstr "O botão só irá vincular a URL se Ação = Abrir URL"
622
-
623
- #: admin/views/admin-settings-buttons.php:71
624
- #: admin/views/admin-settings-buttons.php:146
625
- msgid "Open URL in new window?"
626
- msgstr "Abrir URL em nova janela?"
627
-
628
- #: admin/views/admin-settings-buttons.php:73
629
- #: admin/views/admin-settings-buttons.php:148
630
- #: admin/views/admin-settings-buttons.php:304
631
- #: admin/views/admin-settings-buttons.php:311
632
- #: admin/views/admin-settings-general.php:38
633
- #: admin/views/admin-settings-general.php:54
634
- #: admin/views/admin-settings-general.php:74
635
- #: admin/views/admin-settings-general.php:82
636
- #: admin/views/admin-settings-general.php:89
637
- #: admin/views/admin-settings-messagebar.php:86
638
- #: admin/views/admin-settings-messagebar.php:110
639
- #: admin/views/admin_non_necessary_cookie.php:32
640
- msgid "Yes"
641
- msgstr "sim"
642
-
643
- #: admin/views/admin-settings-buttons.php:75
644
- #: admin/views/admin-settings-buttons.php:149
645
- #: admin/views/admin-settings-buttons.php:305
646
- #: admin/views/admin-settings-buttons.php:312
647
- #: admin/views/admin-settings-general.php:39
648
- #: admin/views/admin-settings-general.php:55
649
- #: admin/views/admin-settings-general.php:75
650
- #: admin/views/admin-settings-general.php:83
651
- #: admin/views/admin-settings-general.php:90
652
- #: admin/views/admin-settings-messagebar.php:87
653
- #: admin/views/admin-settings-messagebar.php:111
654
- #: admin/views/admin_non_necessary_cookie.php:33
655
- #: public/modules/script-blocker/views/settings.php:139
656
- msgid "No"
657
- msgstr "Não"
658
-
659
- #: admin/views/admin-settings-buttons.php:82
660
- #: admin/views/admin-settings-buttons.php:153
661
- #: admin/views/admin-settings-buttons.php:196
662
- #: admin/views/admin-settings-buttons.php:316
663
- msgid "Size"
664
- msgstr "Tamanho"
665
-
666
- #: admin/views/admin-settings-buttons.php:207
667
- msgid ""
668
- "This button/link can be used to provide a link out to your Privacy & Cookie "
669
- "Policy. You can customise it any way you like."
670
- msgstr ""
671
- "Este botão / link pode ser usado para fornecer um link para sua Política de "
672
- "Privacidade e Cookies. Você pode personalizá-lo como quiser."
673
-
674
- #: admin/views/admin-settings-buttons.php:212
675
- msgid "Click"
676
- msgstr "Clique"
677
-
678
- #: admin/views/admin-settings-buttons.php:212
679
- msgid "here"
680
- msgstr "Aqui"
681
-
682
- #: admin/views/admin-settings-buttons.php:212
683
- msgid " to generate content for Cookie Policy page."
684
- msgstr "para gerar conteúdo para a página Política de Cookies."
685
-
686
- #: admin/views/admin-settings-buttons.php:251
687
- msgid "URL or Page?"
688
- msgstr "URL ou página?"
689
-
690
- #: admin/views/admin-settings-buttons.php:255
691
- #: admin/views/admin-settings-buttons.php:266
692
- msgid "Page"
693
- msgstr "Página"
694
-
695
- #: admin/views/admin-settings-buttons.php:269
696
- msgid "Select One"
697
- msgstr "Selecione um"
698
-
699
- #: admin/views/admin-settings-buttons.php:294
700
- msgid "The currently selected page does not exist. Please select a new page."
701
- msgstr ""
702
- "A página atualmente selecionada não existe. Por favor, selecione uma nova "
703
- "página."
704
-
705
- #: admin/views/admin-settings-buttons.php:302
706
- msgid "Minimize Cookie Bar in this page/URL?"
707
- msgstr "Minimizar Cookie Bar nesta página / URL?"
708
-
709
- #: admin/views/admin-settings-buttons.php:309
710
- msgid "Open in new window?"
711
- msgstr "Abrir em nova janela"
712
-
713
- #: admin/views/admin-settings-buttons.php:329
714
- msgid "CCPA Text"
715
- msgstr "Texto ccpa"
716
-
717
- #: admin/views/admin-settings-buttons.php:338
718
- msgid "Checkbox"
719
- msgstr "Checkbox"
720
-
721
- #: admin/views/admin-settings-buttons.php:340
722
- msgid "The shortcode will be represented as a link whereever used."
723
- msgstr "O código de acesso será representado como um link sempre que usado."
724
-
725
- #: admin/views/admin-settings-buttons.php:341
726
- msgid ""
727
- "The shortcode will be represented as a checkbox with select option to record "
728
- "consent."
729
- msgstr ""
730
- "O código de acesso será representado como uma caixa de seleção com a opção de "
731
- "seleção para registrar o consentimento."
732
-
733
- #: admin/views/admin-settings-general.php:17
734
- msgid "Enable cookie bar"
735
- msgstr "Ativar barra de cookies"
736
-
737
- #: admin/views/admin-settings-general.php:19
738
- msgid "On"
739
- msgstr "Em"
740
-
741
- #: admin/views/admin-settings-general.php:20
742
- msgid "Off"
743
- msgstr "Fora"
744
-
745
- #: admin/views/admin-settings-general.php:36
746
- msgid "Auto-hide(Accept) cookie bar after delay?"
747
- msgstr "Ocultar automaticamente (Aceitar) a barra de cookies após o atraso?"
748
-
749
- #: admin/views/admin-settings-general.php:43
750
- msgid "Milliseconds until hidden"
751
- msgstr "Milissegundos até oculto"
752
-
753
- #: admin/views/admin-settings-general.php:46
754
- msgid "Specify milliseconds (not seconds)"
755
- msgstr "Especifique milissegundos (não segundos)"
756
-
757
- #: admin/views/admin-settings-general.php:46
758
- msgid "seconds"
759
- msgstr "segundos"
760
-
761
- #: admin/views/admin-settings-general.php:52
762
- msgid "Auto-hide cookie bar if the user scrolls ( Accept on Scroll )?"
763
- msgstr ""
764
- "Ocultar automaticamente a barra de cookies se o usuário rolar (Aceitar em "
765
- "pergaminho)?"
766
-
767
- #: admin/views/admin-settings-general.php:56
768
- msgid ""
769
- "As per latest GDPR policies it is required to take an explicit consent for the "
770
- "cookies. Use this option with discretion especially if you serve EU"
771
- msgstr ""
772
- "De acordo com as últimas políticas GDPR, é necessário ter um consentimento "
773
- "explícito para os cookies. Use esta opção com discrição, especialmente se você "
774
- "atende"
775
-
776
- #: admin/views/admin-settings-general.php:57
777
- msgid "This option will not work along with `Popup overlay`."
778
- msgstr "Esta opção não irá funcionar junto com o `Popup overlay`."
779
-
780
- #: admin/views/admin-settings-general.php:69
781
- msgid "Reload after \"scroll accept\" event?"
782
- msgstr "Recarregar após o evento \"scroll accept\"?"
783
-
784
- #: admin/views/admin-settings-general.php:80
785
- msgid "Reload after Accept button click"
786
- msgstr "Recarregar após clicar no botão Aceitar"
787
-
788
- #: admin/views/admin-settings-general.php:87
789
- msgid "Reload after Reject button click"
790
- msgstr "Recarregar após clicar no botão Rejeitar"
791
-
792
- #: admin/views/admin-settings-help.php:9
793
- msgid "Shortcodes"
794
- msgstr "Códigos de acesso"
795
-
796
- #: admin/views/admin-settings-help.php:10 admin/views/admin-settings-help.php:103
797
- msgid "Help Links"
798
- msgstr "Links de ajuda"
799
-
800
- #: admin/views/admin-settings-help.php:16
801
- msgid "Cookie bar shortcodes"
802
- msgstr "Códigos de barras da barra de cookies"
803
-
804
- #: admin/views/admin-settings-help.php:17
805
- msgid ""
806
- "You can enter the shortcodes in the \"message\" field of the Cookie Law Info "
807
- "bar. They add nicely formatted buttons and/or links into the cookie bar, "
808
- "without you having to add any HTML."
809
- msgstr ""
810
- "Você pode inserir os códigos de acesso no campo \"mensagem\" da barra de "
811
- "informações da lei de cookies. Eles adicionam botões e / ou links bem "
812
- "formatados na barra de cookies, sem que você precise adicionar HTML."
813
-
814
- #: admin/views/admin-settings-help.php:22
815
- msgid "This is the \"main button\" you customise above."
816
- msgstr "Este é o \"botão principal\" que você personaliza acima."
817
-
818
- #: admin/views/admin-settings-help.php:26
819
- msgid "This is the cookie reject button shortcode."
820
- msgstr "Este é o shortcode do botão de rejeição de cookie."
821
-
822
- #: admin/views/admin-settings-help.php:30
823
- msgid "This is the cookie settings button rendering shortcode."
824
- msgstr "Este é o código de configurações do cookie que representa o shortcode."
825
-
826
- #: admin/views/admin-settings-help.php:33
827
- msgid "This is the \"read more\" link you customise above."
828
- msgstr "Este é o link \"leia mais\" que você personaliza acima."
829
-
830
- #: admin/views/admin-settings-help.php:36
831
- msgid "Setup margin for above buttons"
832
- msgstr "Margem de configuração para os botões acima"
833
-
834
- #: admin/views/admin-settings-help.php:65
835
- msgid "Other shortcodes"
836
- msgstr "Outros códigos de acesso"
837
-
838
- #: admin/views/admin-settings-help.php:66
839
- msgid ""
840
- "These shortcodes can be used in pages and posts on your website. It is not "
841
- "recommended to use these inside the cookie bar itself."
842
- msgstr ""
843
- "Esses códigos de acesso podem ser usados ​​em páginas e postagens em seu site. "
844
- "Não é recomendado usá-los dentro da própria barra de cookies."
845
-
846
- #: admin/views/admin-settings-help.php:72
847
- msgid ""
848
- "This prints out a nice table of cookies, in line with the guidance given by "
849
- "the ICO."
850
- msgstr ""
851
- "Isso imprime uma boa mesa de cookies, de acordo com a orientação dada pelo ICO."
852
-
853
- #: admin/views/admin-settings-help.php:72
854
- msgid ""
855
- "You need to enter the cookies your website uses via the Cookie Law Info menu "
856
- "in your WordPress dashboard."
857
- msgstr ""
858
- "Você precisa inserir os cookies que seu site usa através do menu Cookie Law "
859
- "Info no seu painel do WordPress."
860
-
861
- #: admin/views/admin-settings-help.php:80
862
- msgid "Styles included"
863
- msgstr "Estilos incluídos"
864
-
865
- #: admin/views/admin-settings-help.php:82
866
- msgid "Columns available"
867
- msgstr "Colunas disponíveis"
868
-
869
- #: admin/views/admin-settings-help.php:82
870
- msgid "Will print all columns by default."
871
- msgstr "Imprimirá todas as colunas por padrão."
872
-
873
- #: admin/views/admin-settings-help.php:86
874
- msgid ""
875
- "This shortcode will display a normal HTML link which when clicked, will delete "
876
- "the cookie set by Cookie Law Info (this cookie is used to remember that the "
877
- "cookie bar is closed)."
878
- msgstr ""
879
- "Este código de acesso exibirá um link HTML normal que, quando clicado, "
880
- "excluirá o cookie definido por Cookie Law Info (esse cookie é usado para "
881
- "lembrar que a barra de cookies está fechada)."
882
-
883
- #: admin/views/admin-settings-help.php:90
884
- msgid ""
885
- "Add any text you like- useful if you want e.g. another language to English."
886
- msgstr ""
887
- "Adicione qualquer texto que você goste - útil se você quiser, por exemplo "
888
- "outro idioma para o inglês."
889
-
890
- #: admin/views/admin-settings-help.php:94
891
- msgid "Add content after accepting the cookie notice."
892
- msgstr "Adicione conteúdo depois de aceitar o aviso do cookie."
893
-
894
- #: admin/views/admin-settings-help.php:107
895
- #: admin/views/admin-settings-help.php:110 admin/views/goto-pro.php:103
896
- msgid "Documentation"
897
- msgstr "Documentação"
898
-
899
- #: admin/views/admin-settings-help.php:108
900
- msgid "Refer to our documentation to set and get started"
901
- msgstr "Consulte nossa documentação para definir e começar"
902
-
903
- #: admin/views/admin-settings-help.php:115
904
- msgid "Help and Support"
905
- msgstr "Ajuda e suporte"
906
-
907
- #: admin/views/admin-settings-help.php:116
908
- msgid "We would love to help you on any queries or issues."
909
- msgstr "Nós gostaríamos de ajudá-lo em quaisquer dúvidas ou problemas."
910
-
911
- #: admin/views/admin-settings-help.php:118
912
- msgid "Contact Us"
913
- msgstr "Contate-Nos"
914
-
915
- #: admin/views/admin-settings-messagebar.php:9
916
- msgid "Cookie bar"
917
- msgstr "Barra de Cookie"
918
-
919
- #: admin/views/admin-settings-messagebar.php:10
920
- #: admin/views/admin-settings-messagebar.php:145
921
- msgid "Revisit consent"
922
- msgstr "Revisitar consentimento"
923
-
924
- #: admin/views/admin-settings-messagebar.php:15
925
- msgid "Cookie Bar"
926
- msgstr "Cookie Bar"
927
-
928
- #: admin/views/admin-settings-messagebar.php:18
929
- msgid "Message Heading"
930
- msgstr "Título da mensagem"
931
-
932
- #: admin/views/admin-settings-messagebar.php:21
933
- msgid "Leave it blank, If you do not need a heading"
934
- msgstr "Deixe em branco, se você não precisa de um título"
935
-
936
- #: admin/views/admin-settings-messagebar.php:26
937
- msgid "Message"
938
- msgstr "mensagem"
939
-
940
- #: admin/views/admin-settings-messagebar.php:32
941
- msgid "Shortcodes allowed: see the Help Guide tab"
942
- msgstr "Códigos de acesso permitidos: consulte a guia Guia de ajuda"
943
-
944
- #: admin/views/admin-settings-messagebar.php:32
945
- msgid ""
946
- "Examples: \"We use cookies on this website [cookie_accept] to find out how to "
947
- "delete cookies [cookie_link].\""
948
- msgstr ""
949
- "Exemplos: \"Utilizamos cookies neste site [cookie_accept] para descobrir como "
950
- "excluir cookies [cookie_link].\""
951
-
952
- #: admin/views/admin-settings-messagebar.php:36
953
- msgid "Cookie Bar Colour"
954
- msgstr "Cor da Barra de Cookie"
955
-
956
- #: admin/views/admin-settings-messagebar.php:46
957
- msgid "Text Colour"
958
- msgstr "Cor do texto"
959
-
960
- #: admin/views/admin-settings-messagebar.php:55
961
- msgid "Font"
962
- msgstr "Fonte"
963
-
964
- #: admin/views/admin-settings-messagebar.php:63
965
- msgid "Show cookie bar as"
966
- msgstr "Mostrar barra de Cookie como"
967
-
968
- #: admin/views/admin-settings-messagebar.php:68
969
- msgid "Banner"
970
- msgstr "Bandeira"
971
-
972
- #: admin/views/admin-settings-messagebar.php:69
973
- msgid "Popup"
974
- msgstr "Aparecer"
975
-
976
- #: admin/views/admin-settings-messagebar.php:70
977
- msgid "Widget"
978
- msgstr "Ferramenta"
979
-
980
- #: admin/views/admin-settings-messagebar.php:74
981
- msgid "Position"
982
- msgstr "Posição"
983
-
984
- #: admin/views/admin-settings-messagebar.php:84
985
- msgid "Add overlay?"
986
- msgstr "Adicionar sobreposição?"
987
-
988
- #: admin/views/admin-settings-messagebar.php:88
989
- msg