Version Description
Release Date: July 1st, 2015
Dev time: 10h
- Fixed text position for templates
- Fixed scroll event in case slug is not set
- Fixed W3C validator error
- Added new button below the textarea for separator
<---------SOMETHING--------->
&<---------SEP--------->
- Fixed uninstall issue in uninstall.php
- Improved UX for slug input
Download this release
Release Info
Developer | overclokk |
Plugin | Italy Cookie Choices (for EU Cookie Law) |
Version | 2.2.1 |
Comparing to | |
See all releases |
Code changes from version 2.2.0 to 2.2.1
- admin/class-italy-cookie-choices-admin.php +19 -6
- admin/js/src/script.js +17 -0
- classes/class-italy-cookie-choices-front-end.php +26 -10
- italy-cookie-choices.php +1 -1
- lang/italy-cookie-choices-it_IT.mo +0 -0
- lang/italy-cookie-choices-it_IT.po +56 -23
- lang/italy-cookie-choices-ro_RO.mo +0 -0
- lang/italy-cookie-choices-ro_RO.po +134 -53
- lang/italy-cookie-choices.pot +18 -13
- readme.txt +26 -5
- uninstall.php +5 -9
admin/class-italy-cookie-choices-admin.php
CHANGED
@@ -872,10 +872,10 @@ if ( !class_exists( 'Italy_Cookie_Choices_Admin' ) ){
|
|
872 |
$slug = ( isset( $this->options['slug'] ) ) ? $this->options['slug'] : '' ;
|
873 |
|
874 |
?>
|
875 |
-
<input type="text" id="italy_cookie_choices[slug]" name="italy_cookie_choices[slug]" value="<?php echo esc_attr( $slug ); ?>" placeholder="<?php _e( 'e.g. your-policy-url.html', 'italy-cookie-choices' ); ?>" />
|
876 |
-
|
877 |
<label for="italy_cookie_choices[slug]">
|
878 |
-
<?php _e( 'Insert your cookie policy page slug (e.g. your-policy-url), it will display only topbar in your cookie policy page', 'italy-cookie-choices' ); ?>
|
879 |
</label>
|
880 |
|
881 |
<?php
|
@@ -948,9 +948,16 @@ if ( !class_exists( 'Italy_Cookie_Choices_Admin' ) ){
|
|
948 |
?>
|
949 |
<textarea rows="5" cols="70" name="italy_cookie_choices[custom_script_block_body_exclude]" id="italy_cookie_choices[custom_script_block_body_exclude]" placeholder="<?php _e( '<script src="http://domain.com/widget-example.js"></script>'."\n".'<---------SEP--------->'."\n".'<script src="http://otherdomain.com/script-example.js"></script>'."\n".'<---------SEP--------->'."\n".'<script src="http://lastdomain.com/gadget-example.js"></script>', 'italy-cookie-choices' ) ?>" ><?php echo esc_textarea( $custom_script_block_body_exclude ); ?></textarea>
|
950 |
<br>
|
|
|
|
|
|
|
951 |
<label for="italy_cookie_choices[custom_script_block_body_exclude]">
|
952 |
-
<?php echo __( 'Scripts to be excluded from the automatic block.<br />Split each script with <strong><em><---------SEP---------></em></strong>', 'italy-cookie-choices' ); ?>
|
953 |
</label>
|
|
|
|
|
|
|
|
|
954 |
<?php
|
955 |
|
956 |
}
|
@@ -966,10 +973,16 @@ if ( !class_exists( 'Italy_Cookie_Choices_Admin' ) ){
|
|
966 |
?>
|
967 |
<textarea rows="5" cols="70" name="italy_cookie_choices[custom_script_block]" id="italy_cookie_choices[custom_script_block]" placeholder="<?php _e( '<script src="http://domain.com/widget-example.js"></script>'."\n".'<---------SEP--------->'."\n".'<script src="http://otherdomain.com/script-example.js"></script>'."\n".'<---------SEP--------->'."\n".'<script src="http://lastdomain.com/gadget-example.js"></script>', 'italy-cookie-choices' ) ?>" ><?php echo esc_textarea( $custom_script_block ); ?></textarea>
|
968 |
<br>
|
|
|
|
|
|
|
969 |
<label for="italy_cookie_choices[custom_script_block]">
|
970 |
-
<?php echo __( 'Scripts shown in the head and in the footer does not automatically blocked.<br />Split each script with <strong><em><---------SEP---------></em></strong>', 'italy-cookie-choices' ); ?>
|
971 |
</label>
|
972 |
-
|
|
|
|
|
|
|
973 |
<?php
|
974 |
|
975 |
}
|
872 |
$slug = ( isset( $this->options['slug'] ) ) ? $this->options['slug'] : '' ;
|
873 |
|
874 |
?>
|
875 |
+
<input type="text" id="italy_cookie_choices[slug]" name="italy_cookie_choices[slug]" value="<?php echo esc_attr( $slug ); ?>" placeholder="<?php _e( 'e.g. your-policy-url.html', 'italy-cookie-choices' ); ?>" size="70" />
|
876 |
+
<br>
|
877 |
<label for="italy_cookie_choices[slug]">
|
878 |
+
<?php _e( 'Insert your cookie policy page slug (e.g. your-policy-url), it will display only topbar in your cookie policy page and the scroll and the second view will be deactivated in that page.', 'italy-cookie-choices' ); ?>
|
879 |
</label>
|
880 |
|
881 |
<?php
|
948 |
?>
|
949 |
<textarea rows="5" cols="70" name="italy_cookie_choices[custom_script_block_body_exclude]" id="italy_cookie_choices[custom_script_block_body_exclude]" placeholder="<?php _e( '<script src="http://domain.com/widget-example.js"></script>'."\n".'<---------SEP--------->'."\n".'<script src="http://otherdomain.com/script-example.js"></script>'."\n".'<---------SEP--------->'."\n".'<script src="http://lastdomain.com/gadget-example.js"></script>', 'italy-cookie-choices' ) ?>" ><?php echo esc_textarea( $custom_script_block_body_exclude ); ?></textarea>
|
950 |
<br>
|
951 |
+
<a id="SEP" class="button button-secondary add-sep" data-value="<---------SEP--------->"><---------SEP---------></a>
|
952 |
+
<a id="SOM" class="button button-secondary add-sep" data-value="<---------SOMETHING--------->"><---------SOMETHING---------></a>
|
953 |
+
<br>
|
954 |
<label for="italy_cookie_choices[custom_script_block_body_exclude]">
|
955 |
+
<?php echo __( 'Scripts to be excluded from the automatic block.<br />Split each script with <strong><em><---------SEP---------></em></strong><br>Use <strong><---------SOMETHING---------></strong> for custom regex', 'italy-cookie-choices' ); ?>
|
956 |
</label>
|
957 |
+
<p>
|
958 |
+
<a href="https://github.com/ItalyCookieChoices/italy-cookie-choices/wiki/Custom-script" target="_blank"><?php _e( 'For more information see the documentation', 'italy-cookie-choices' ); ?></a>
|
959 |
+
</p>
|
960 |
+
|
961 |
<?php
|
962 |
|
963 |
}
|
973 |
?>
|
974 |
<textarea rows="5" cols="70" name="italy_cookie_choices[custom_script_block]" id="italy_cookie_choices[custom_script_block]" placeholder="<?php _e( '<script src="http://domain.com/widget-example.js"></script>'."\n".'<---------SEP--------->'."\n".'<script src="http://otherdomain.com/script-example.js"></script>'."\n".'<---------SEP--------->'."\n".'<script src="http://lastdomain.com/gadget-example.js"></script>', 'italy-cookie-choices' ) ?>" ><?php echo esc_textarea( $custom_script_block ); ?></textarea>
|
975 |
<br>
|
976 |
+
<a id="SEP" class="button button-secondary add-sep" data-value="<---------SEP--------->"><---------SEP---------></a>
|
977 |
+
<a id="SOM" class="button button-secondary add-sep" data-value="<---------SOMETHING--------->"><---------SOMETHING---------></a>
|
978 |
+
<br>
|
979 |
<label for="italy_cookie_choices[custom_script_block]">
|
980 |
+
<?php echo __( 'Scripts shown in the head and in the footer does not automatically blocked.<br />Split each script with <strong><em><---------SEP---------></em></strong><br>Use <strong><---------SOMETHING---------></strong> for custom regex', 'italy-cookie-choices' ); ?>
|
981 |
</label>
|
982 |
+
<p>
|
983 |
+
<a href="https://github.com/ItalyCookieChoices/italy-cookie-choices/wiki/Custom-script" target="_blank"><?php _e( 'For more information see the documentation', 'italy-cookie-choices' ); ?></a>
|
984 |
+
</p>
|
985 |
+
|
986 |
<?php
|
987 |
|
988 |
}
|
admin/js/src/script.js
CHANGED
@@ -22,5 +22,22 @@
|
|
22 |
};
|
23 |
$('.color-field').wpColorPicker(options);
|
24 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
});
|
26 |
});
|
22 |
};
|
23 |
$('.color-field').wpColorPicker(options);
|
24 |
});
|
25 |
+
|
26 |
+
/**
|
27 |
+
* Add separator on click in textarea
|
28 |
+
*/
|
29 |
+
$('.add-sep').click(function(){
|
30 |
+
var textarea = $(this).siblings('textarea');
|
31 |
+
var curValue = textarea.val();
|
32 |
+
var dataValue = $(this).data('value');
|
33 |
+
|
34 |
+
if (dataValue === '<---------SEP--------->') {
|
35 |
+
var newValue = curValue + '\n' + dataValue + '\n';
|
36 |
+
} else{
|
37 |
+
var newValue = curValue + dataValue;
|
38 |
+
};
|
39 |
+
|
40 |
+
textarea.val(newValue);
|
41 |
+
});
|
42 |
});
|
43 |
});
|
classes/class-italy-cookie-choices-front-end.php
CHANGED
@@ -68,10 +68,11 @@ if ( !class_exists( 'Italy_Cookie_Choices_Front_End' ) ){
|
|
68 |
$secondViewOpt = ( isset( $this->options['secondView'] ) ) ? $this->options['secondView'] : '' ;
|
69 |
|
70 |
/**
|
71 |
-
*
|
|
|
72 |
* @var bolean
|
73 |
*/
|
74 |
-
$this->slug = ( isset( $this->options['slug'] ) ) ? esc_attr( $this->options['slug'] ) :
|
75 |
|
76 |
/*
|
77 |
* Set cookie if the user agree navigating through the pages of the site
|
@@ -199,7 +200,7 @@ if ( !class_exists( 'Italy_Cookie_Choices_Front_End' ) ){
|
|
199 |
add_action('wp_head', array( $this, 'bufferBodyStart' ), 1000000);
|
200 |
add_action('wp_footer', array( $this, 'bufferBodyEnd' ), -1000000);
|
201 |
}
|
202 |
-
if( $custom_script_block !== '' ) {
|
203 |
add_action('template_redirect', array( $this, 'bufferHeadStart' ), 2);
|
204 |
add_action('wp_head', array( $this, 'bufferHeadEnd' ), 99999);
|
205 |
add_action('wp_footer', array( $this, 'bufferFooterStart' ), -99998);
|
@@ -530,6 +531,12 @@ if ( !class_exists( 'Italy_Cookie_Choices_Front_End' ) ){
|
|
530 |
*/
|
531 |
$buttonClass = ( $infoClass === $closeClass ) ? $infoClass : $infoClass . ',.' . $closeClass;
|
532 |
|
|
|
|
|
|
|
|
|
|
|
|
|
533 |
/**
|
534 |
* CSS for content style
|
535 |
* @var string
|
@@ -546,11 +553,20 @@ if ( !class_exists( 'Italy_Cookie_Choices_Front_End' ) ){
|
|
546 |
* Conditional button style for bigbutton or smallbutton
|
547 |
* Default margin
|
548 |
*/
|
549 |
-
if ( $js_template === 'bigbutton' )
|
|
|
550 |
$buttonStyle = '.' . $buttonClass . '{color:' . $banner_text_color . ';padding:7px 12px;font-size:18px;line-height:18px;text-decoration:none;text-transform:uppercase;margin:10px 20px 2px 0;letter-spacing: 0.125em;display:inline-block;font-weight:normal;text-align:center; vertical-align:middle;cursor:pointer;border:1px solid ' . $banner_text_color . ';background:rgba(255, 255, 255, 0.03);}.' . $consentText . '{display:block}';
|
551 |
-
|
|
|
|
|
|
|
|
|
552 |
$buttonStyle = '.' . $buttonClass . '{color:' . $banner_text_color . ';padding:3px 7px;font-size:14px;line-height:14px;text-decoration:none;text-transform:uppercase;margin:10px 20px 2px 0;letter-spacing: 0.115em;display:inline-block;font-weight:normal;text-align:center; vertical-align:middle;cursor:pointer;border:1px solid ' . $banner_text_color . ';background:rgba(255, 255, 255, 0.03);}.' . $consentText . '{display:block}';
|
553 |
|
|
|
|
|
|
|
|
|
554 |
/**
|
555 |
* Select what kind of banner to display
|
556 |
* @var $banner Bar/Dialog
|
@@ -565,7 +581,7 @@ if ( !class_exists( 'Italy_Cookie_Choices_Front_End' ) ){
|
|
565 |
|
566 |
$contentStyle = ( $js_template === 'bigbutton' || $js_template === 'smallbutton' ) ? '.contentStyle{max-width:980px;margin-right:auto;margin-left:auto;padding:15px;}' : '' ;
|
567 |
|
568 |
-
$style = ( $js_template === 'custom' ) ? $customCSS : '#cookieChoiceInfo{background-color: ' . $banner_bg . ';color: ' . $banner_text_color . ';left:0;margin:0;padding:4px;position:fixed;text-align:
|
569 |
|
570 |
$bPos = 'top:0'; // Deprecato
|
571 |
|
@@ -585,7 +601,7 @@ if ( !class_exists( 'Italy_Cookie_Choices_Front_End' ) ){
|
|
585 |
|
586 |
$contentStyle = ( $js_template === 'bigbutton' || $js_template === 'smallbutton' ) ? '.contentStyle{max-width:980px;margin-right:auto;margin-left:auto;padding:15px;}' : '' ;
|
587 |
|
588 |
-
$style = ( $js_template === 'custom' ) ? $customCSS : '#cookieChoiceInfo{background-color: ' . $banner_bg . ';color: ' . $banner_text_color . ';left:0;margin:0;padding:4px;position:fixed;text-align:
|
589 |
|
590 |
$bPos = 'bottom:0'; // Deprecato
|
591 |
|
@@ -593,7 +609,7 @@ if ( !class_exists( 'Italy_Cookie_Choices_Front_End' ) ){
|
|
593 |
|
594 |
$banner = 'Bar';
|
595 |
|
596 |
-
$style = ( $js_template === 'custom' ) ? $customCSS : '#cookieChoiceInfo{background-color: ' . $banner_bg . ';color: ' . $banner_text_color . ';left:0;margin:0;padding:4px;position:fixed;text-align:
|
597 |
|
598 |
$bPos = 'top:0'; // Deprecato
|
599 |
|
@@ -644,7 +660,7 @@ if ( !class_exists( 'Italy_Cookie_Choices_Front_End' ) ){
|
|
644 |
* Noscript snippet in case browser has JavaScript disabled
|
645 |
* @var string
|
646 |
*/
|
647 |
-
$noscript = '<noscript><style>html{margin-top:35px}</style><div id="cookieChoiceInfo"><span>' . $text . '</span><a href="' . $url . '" class="' . $infoClass . '" target="_blank">' . $anchor_text . '</a></div></noscript>';
|
648 |
|
649 |
/**
|
650 |
* Select wich file to use in debug mode
|
@@ -653,7 +669,7 @@ if ( !class_exists( 'Italy_Cookie_Choices_Front_End' ) ){
|
|
653 |
// $fileJS = ( WP_DEBUG ) ? '/js/' . $js_template . '/cookiechoices.js' : '/js/' . $js_template . '/cookiechoices.php' ;
|
654 |
$fileJS = ( WP_DEBUG ) ? '/js/default/cookiechoices.js' : '/js/default/cookiechoices.php' ;
|
655 |
|
656 |
-
$output_html = '<!-- Italy Cookie Choices -->' . '<style>' . $style . '</style><script>' . $jsVariables . file_get_contents( ITALY_COOKIE_CHOICES_DIRNAME . $fileJS ) . $banner . '</script>' . $noscript;
|
657 |
|
658 |
echo apply_filters( 'icc_output_html', $output_html );
|
659 |
|
68 |
$secondViewOpt = ( isset( $this->options['secondView'] ) ) ? $this->options['secondView'] : '' ;
|
69 |
|
70 |
/**
|
71 |
+
* Assegno il valore allo slug nel costruttore
|
72 |
+
* Default ID 1 perché su null non settava correttamente lo scroll se il valore era assente
|
73 |
* @var bolean
|
74 |
*/
|
75 |
+
$this->slug = ( isset( $this->options['slug'] ) && !empty( $this->options['slug'] ) ) ? esc_attr( $this->options['slug'] ) : 1 ;
|
76 |
|
77 |
/*
|
78 |
* Set cookie if the user agree navigating through the pages of the site
|
200 |
add_action('wp_head', array( $this, 'bufferBodyStart' ), 1000000);
|
201 |
add_action('wp_footer', array( $this, 'bufferBodyEnd' ), -1000000);
|
202 |
}
|
203 |
+
if( $custom_script_block !== '' && $all_block ) {
|
204 |
add_action('template_redirect', array( $this, 'bufferHeadStart' ), 2);
|
205 |
add_action('wp_head', array( $this, 'bufferHeadEnd' ), 99999);
|
206 |
add_action('wp_footer', array( $this, 'bufferFooterStart' ), -99998);
|
531 |
*/
|
532 |
$buttonClass = ( $infoClass === $closeClass ) ? $infoClass : $infoClass . ',.' . $closeClass;
|
533 |
|
534 |
+
/**
|
535 |
+
* Attribute for text for template
|
536 |
+
* @var string
|
537 |
+
*/
|
538 |
+
$text_align = 'center';
|
539 |
+
|
540 |
/**
|
541 |
* CSS for content style
|
542 |
* @var string
|
553 |
* Conditional button style for bigbutton or smallbutton
|
554 |
* Default margin
|
555 |
*/
|
556 |
+
if ( $js_template === 'bigbutton' ){
|
557 |
+
|
558 |
$buttonStyle = '.' . $buttonClass . '{color:' . $banner_text_color . ';padding:7px 12px;font-size:18px;line-height:18px;text-decoration:none;text-transform:uppercase;margin:10px 20px 2px 0;letter-spacing: 0.125em;display:inline-block;font-weight:normal;text-align:center; vertical-align:middle;cursor:pointer;border:1px solid ' . $banner_text_color . ';background:rgba(255, 255, 255, 0.03);}.' . $consentText . '{display:block}';
|
559 |
+
|
560 |
+
$text_align = 'left';
|
561 |
+
|
562 |
+
}elseif ( $js_template === 'smallbutton' ){
|
563 |
+
|
564 |
$buttonStyle = '.' . $buttonClass . '{color:' . $banner_text_color . ';padding:3px 7px;font-size:14px;line-height:14px;text-decoration:none;text-transform:uppercase;margin:10px 20px 2px 0;letter-spacing: 0.115em;display:inline-block;font-weight:normal;text-align:center; vertical-align:middle;cursor:pointer;border:1px solid ' . $banner_text_color . ';background:rgba(255, 255, 255, 0.03);}.' . $consentText . '{display:block}';
|
565 |
|
566 |
+
$text_align = 'left';
|
567 |
+
|
568 |
+
}
|
569 |
+
|
570 |
/**
|
571 |
* Select what kind of banner to display
|
572 |
* @var $banner Bar/Dialog
|
581 |
|
582 |
$contentStyle = ( $js_template === 'bigbutton' || $js_template === 'smallbutton' ) ? '.contentStyle{max-width:980px;margin-right:auto;margin-left:auto;padding:15px;}' : '' ;
|
583 |
|
584 |
+
$style = ( $js_template === 'custom' ) ? $customCSS : '#cookieChoiceInfo{background-color: ' . $banner_bg . ';color: ' . $banner_text_color . ';left:0;margin:0;padding:4px;position:fixed;text-align:' . $text_align . ';top:0;width:100%;z-index:9999;}' . $contentStyle . $buttonStyle;
|
585 |
|
586 |
$bPos = 'top:0'; // Deprecato
|
587 |
|
601 |
|
602 |
$contentStyle = ( $js_template === 'bigbutton' || $js_template === 'smallbutton' ) ? '.contentStyle{max-width:980px;margin-right:auto;margin-left:auto;padding:15px;}' : '' ;
|
603 |
|
604 |
+
$style = ( $js_template === 'custom' ) ? $customCSS : '#cookieChoiceInfo{background-color: ' . $banner_bg . ';color: ' . $banner_text_color . ';left:0;margin:0;padding:4px;position:fixed;text-align:' . $text_align . ';bottom:0;width:100%;z-index:9999;}' . $contentStyle . $buttonStyle;
|
605 |
|
606 |
$bPos = 'bottom:0'; // Deprecato
|
607 |
|
609 |
|
610 |
$banner = 'Bar';
|
611 |
|
612 |
+
$style = ( $js_template === 'custom' ) ? $customCSS : '#cookieChoiceInfo{background-color: ' . $banner_bg . ';color: ' . $banner_text_color . ';left:0;margin:0;padding:4px;position:fixed;text-align:center;top:0;width:100%;z-index:9999;}' . $contentStyle . $buttonStyle;
|
613 |
|
614 |
$bPos = 'top:0'; // Deprecato
|
615 |
|
660 |
* Noscript snippet in case browser has JavaScript disabled
|
661 |
* @var string
|
662 |
*/
|
663 |
+
$noscript = '<noscript><style scoped>html{margin-top:35px}</style><div id="cookieChoiceInfo"><span>' . $text . '</span><a href="' . $url . '" class="' . $infoClass . '" target="_blank">' . $anchor_text . '</a></div></noscript>';
|
664 |
|
665 |
/**
|
666 |
* Select wich file to use in debug mode
|
669 |
// $fileJS = ( WP_DEBUG ) ? '/js/' . $js_template . '/cookiechoices.js' : '/js/' . $js_template . '/cookiechoices.php' ;
|
670 |
$fileJS = ( WP_DEBUG ) ? '/js/default/cookiechoices.js' : '/js/default/cookiechoices.php' ;
|
671 |
|
672 |
+
$output_html = '<!-- Italy Cookie Choices -->' . '<div><style scoped>' . $style . '</style><script>' . $jsVariables . file_get_contents( ITALY_COOKIE_CHOICES_DIRNAME . $fileJS ) . $banner . '</script></div>' . $noscript;
|
673 |
|
674 |
echo apply_filters( 'icc_output_html', $output_html );
|
675 |
|
italy-cookie-choices.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Italy Cookie Choices
|
4 |
* Plugin URI: https://plus.google.com/u/0/communities/109254048492234113886
|
5 |
* Description: Italy Cookie Choices allows you to easily comply with the european cookie law and block third part cookie in your page.
|
6 |
-
* Version: 2.2.
|
7 |
* Author: Enea Overclokk, Andrea Pernici, Andrea Cardinale
|
8 |
* Author URI: https://github.com/ItalyCookieChoices/italy-cookie-choices
|
9 |
* Text Domain: italy-cookie-choices
|
3 |
* Plugin Name: Italy Cookie Choices
|
4 |
* Plugin URI: https://plus.google.com/u/0/communities/109254048492234113886
|
5 |
* Description: Italy Cookie Choices allows you to easily comply with the european cookie law and block third part cookie in your page.
|
6 |
+
* Version: 2.2.1
|
7 |
* Author: Enea Overclokk, Andrea Pernici, Andrea Cardinale
|
8 |
* Author URI: https://github.com/ItalyCookieChoices/italy-cookie-choices
|
9 |
* Text Domain: italy-cookie-choices
|
lang/italy-cookie-choices-it_IT.mo
CHANGED
Binary file
|
lang/italy-cookie-choices-it_IT.po
CHANGED
@@ -1,16 +1,16 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: italy-cookie-choices\n"
|
4 |
-
"POT-Creation-Date: 2015-
|
5 |
-
"PO-Revision-Date: 2015-
|
6 |
"Last-Translator: Enea Overclokk <info@overclokk.net>\n"
|
7 |
"Language-Team: info@overclokk.net\n"
|
8 |
"Language: it_IT\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 1.8.
|
13 |
-
"X-Poedit-Basepath:
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e\n"
|
@@ -173,7 +173,7 @@ msgid "Your short cookie policy"
|
|
173 |
msgstr "La tua informativa breve"
|
174 |
|
175 |
#: admin/class-italy-cookie-choices-admin.php:585
|
176 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
177 |
msgid ""
|
178 |
"People will see this notice only the first time that they enter your site"
|
179 |
msgstr ""
|
@@ -197,12 +197,12 @@ msgid "Insert here anchor text for the link"
|
|
197 |
msgstr "Inserisci qui l'anchor text per il link"
|
198 |
|
199 |
#: admin/class-italy-cookie-choices-admin.php:633
|
200 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
201 |
msgid "e.g. Close"
|
202 |
msgstr "es: Chiudi"
|
203 |
|
204 |
#: admin/class-italy-cookie-choices-admin.php:636
|
205 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
206 |
msgid "Insert here name of button (e.g. \"Close\") "
|
207 |
msgstr "Inserisci il testo del link per chiudere il popup/banner (es: Chiudi)"
|
208 |
|
@@ -319,10 +319,12 @@ msgstr "es: la-tua-pagina-per-la-cookie-policy"
|
|
319 |
#: admin/class-italy-cookie-choices-admin.php:878
|
320 |
msgid ""
|
321 |
"Insert your cookie policy page slug (e.g. your-policy-url), it will display "
|
322 |
-
"only topbar in your cookie policy page"
|
|
|
323 |
msgstr ""
|
324 |
-
"Inserisci lo slug della
|
325 |
-
"
|
|
|
326 |
|
327 |
#: admin/class-italy-cookie-choices-admin.php:898
|
328 |
msgid "Open your cookie policy page in new one"
|
@@ -342,7 +344,7 @@ msgstr ""
|
|
342 |
"Cookie da tutti gli embed nella tua pagina, eccetto head e footer (Beta)"
|
343 |
|
344 |
#: admin/class-italy-cookie-choices-admin.php:949
|
345 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
346 |
msgid ""
|
347 |
"<script src="http://domain.com/widget-example.js"></"
|
348 |
"script>\n"
|
@@ -362,38 +364,46 @@ msgstr ""
|
|
362 |
"<script src="http://lastdomain.com/gadget-example.js"></"
|
363 |
"script>"
|
364 |
|
365 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
366 |
msgid ""
|
367 |
"Scripts to be excluded from the automatic block.<br />Split each script with "
|
368 |
-
"<strong><em><---------SEP---------></em></strong>"
|
|
|
369 |
msgstr ""
|
370 |
-
"
|
371 |
-
"con <strong
|
|
|
372 |
|
373 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
|
|
|
|
|
|
|
|
|
|
374 |
msgid ""
|
375 |
"Scripts shown in the head and in the footer does not automatically blocked."
|
376 |
"<br />Split each script with <strong><em><---------SEP---------></em></"
|
377 |
-
"strong>"
|
|
|
378 |
msgstr ""
|
379 |
-
"Script
|
380 |
-
"
|
381 |
-
"strong>"
|
382 |
|
383 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
384 |
msgid "Your lock message for embedded contents inside posts, pages and widgets"
|
385 |
msgstr ""
|
386 |
"Il tuo messaggio da visualizzare nel box per i contenuti bloccati "
|
387 |
"incorporati all'interno di pagine, articoli e widget"
|
388 |
|
389 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
390 |
#: admin/class-italy-cookie-choices-sanitize.php:77
|
391 |
msgid "Cookie name field it can't be empty. Restored default name."
|
392 |
msgstr ""
|
393 |
"Il campo del nome del Cookie non può essere vuoto. Ripristinato il nome di "
|
394 |
"default."
|
395 |
|
396 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
397 |
#: admin/class-italy-cookie-choices-sanitize.php:84
|
398 |
msgid "Cookie value field it can't be empty. Restored default value."
|
399 |
msgstr ""
|
@@ -412,6 +422,29 @@ msgstr ""
|
|
412 |
"Il tuo server sta eseguendo %s con la versione %s ma qesto plugin richiede "
|
413 |
"almeno la versione %s"
|
414 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
415 |
#~ msgid "Banner text"
|
416 |
#~ msgstr "Testo del banner"
|
417 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: italy-cookie-choices\n"
|
4 |
+
"POT-Creation-Date: 2015-07-01 01:30+0200\n"
|
5 |
+
"PO-Revision-Date: 2015-07-01 01:36+0200\n"
|
6 |
"Last-Translator: Enea Overclokk <info@overclokk.net>\n"
|
7 |
"Language-Team: info@overclokk.net\n"
|
8 |
"Language: it_IT\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 1.8.2\n"
|
13 |
+
"X-Poedit-Basepath: ..\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e\n"
|
173 |
msgstr "La tua informativa breve"
|
174 |
|
175 |
#: admin/class-italy-cookie-choices-admin.php:585
|
176 |
+
#: admin/class-italy-cookie-choices-admin.php:1002
|
177 |
msgid ""
|
178 |
"People will see this notice only the first time that they enter your site"
|
179 |
msgstr ""
|
197 |
msgstr "Inserisci qui l'anchor text per il link"
|
198 |
|
199 |
#: admin/class-italy-cookie-choices-admin.php:633
|
200 |
+
#: admin/class-italy-cookie-choices-admin.php:1018
|
201 |
msgid "e.g. Close"
|
202 |
msgstr "es: Chiudi"
|
203 |
|
204 |
#: admin/class-italy-cookie-choices-admin.php:636
|
205 |
+
#: admin/class-italy-cookie-choices-admin.php:1021
|
206 |
msgid "Insert here name of button (e.g. \"Close\") "
|
207 |
msgstr "Inserisci il testo del link per chiudere il popup/banner (es: Chiudi)"
|
208 |
|
319 |
#: admin/class-italy-cookie-choices-admin.php:878
|
320 |
msgid ""
|
321 |
"Insert your cookie policy page slug (e.g. your-policy-url), it will display "
|
322 |
+
"only topbar in your cookie policy page and the scroll and the second view "
|
323 |
+
"will be deactivated in that page."
|
324 |
msgstr ""
|
325 |
+
"Inserisci lo slug della pagina della tua cookie policy (e.s. your-policy-"
|
326 |
+
"url), sarà visualizzata solo la topbar, scroll e accettazione durante la "
|
327 |
+
"navigazione disattivati in quella pagina."
|
328 |
|
329 |
#: admin/class-italy-cookie-choices-admin.php:898
|
330 |
msgid "Open your cookie policy page in new one"
|
344 |
"Cookie da tutti gli embed nella tua pagina, eccetto head e footer (Beta)"
|
345 |
|
346 |
#: admin/class-italy-cookie-choices-admin.php:949
|
347 |
+
#: admin/class-italy-cookie-choices-admin.php:974
|
348 |
msgid ""
|
349 |
"<script src="http://domain.com/widget-example.js"></"
|
350 |
"script>\n"
|
364 |
"<script src="http://lastdomain.com/gadget-example.js"></"
|
365 |
"script>"
|
366 |
|
367 |
+
#: admin/class-italy-cookie-choices-admin.php:955
|
368 |
msgid ""
|
369 |
"Scripts to be excluded from the automatic block.<br />Split each script with "
|
370 |
+
"<strong><em><---------SEP---------></em></strong><br>Use "
|
371 |
+
"<strong><---------SOMETHING---------></strong> for custom regex"
|
372 |
msgstr ""
|
373 |
+
"Script che devono essere esclusi dal blocco automatico.<br>Suddividere ogni "
|
374 |
+
"script con <strong> <em><---------SEP---------></em></strong><br>Usa "
|
375 |
+
"<strong><---------SOMETHING---------></strong> per regex personalizzata"
|
376 |
|
377 |
+
#: admin/class-italy-cookie-choices-admin.php:958
|
378 |
+
#: admin/class-italy-cookie-choices-admin.php:983
|
379 |
+
msgid "For more information see the documentation"
|
380 |
+
msgstr "Per maggiorni informazioni guarda la documentazione"
|
381 |
+
|
382 |
+
#: admin/class-italy-cookie-choices-admin.php:980
|
383 |
msgid ""
|
384 |
"Scripts shown in the head and in the footer does not automatically blocked."
|
385 |
"<br />Split each script with <strong><em><---------SEP---------></em></"
|
386 |
+
"strong><br>Use <strong><---------SOMETHING---------></strong> for custom "
|
387 |
+
"regex"
|
388 |
msgstr ""
|
389 |
+
"Script in head e footer non automaticamente bloccati.<br />Dividi ogni "
|
390 |
+
"script con <strong><em><---------SEP---------></em></strong><br>Usa "
|
391 |
+
"<strong><---------SOMETHING---------></strong> per una regex personalizzata."
|
392 |
|
393 |
+
#: admin/class-italy-cookie-choices-admin.php:999
|
394 |
msgid "Your lock message for embedded contents inside posts, pages and widgets"
|
395 |
msgstr ""
|
396 |
"Il tuo messaggio da visualizzare nel box per i contenuti bloccati "
|
397 |
"incorporati all'interno di pagine, articoli e widget"
|
398 |
|
399 |
+
#: admin/class-italy-cookie-choices-admin.php:1133
|
400 |
#: admin/class-italy-cookie-choices-sanitize.php:77
|
401 |
msgid "Cookie name field it can't be empty. Restored default name."
|
402 |
msgstr ""
|
403 |
"Il campo del nome del Cookie non può essere vuoto. Ripristinato il nome di "
|
404 |
"default."
|
405 |
|
406 |
+
#: admin/class-italy-cookie-choices-admin.php:1140
|
407 |
#: admin/class-italy-cookie-choices-sanitize.php:84
|
408 |
msgid "Cookie value field it can't be empty. Restored default value."
|
409 |
msgstr ""
|
422 |
"Il tuo server sta eseguendo %s con la versione %s ma qesto plugin richiede "
|
423 |
"almeno la versione %s"
|
424 |
|
425 |
+
#~ msgid ""
|
426 |
+
#~ "Insert your cookie policy page slug (e.g. your-policy-url), it will "
|
427 |
+
#~ "display only topbar in your cookie policy page"
|
428 |
+
#~ msgstr ""
|
429 |
+
#~ "Inserisci lo slug della tua pagina per la Cookie policy, in questa pagina "
|
430 |
+
#~ "verrà mostrata soltanto la topbar"
|
431 |
+
|
432 |
+
#~ msgid ""
|
433 |
+
#~ "Scripts to be excluded from the automatic block.<br />Split each script "
|
434 |
+
#~ "with <strong><em><---------SEP---------></em></strong>"
|
435 |
+
#~ msgstr ""
|
436 |
+
#~ "Scripts da non bloccare con il blocco automatico.<br />Dividi ogni script "
|
437 |
+
#~ "con <strong><em><---------SEP---------></em></strong>"
|
438 |
+
|
439 |
+
#~ msgid ""
|
440 |
+
#~ "Scripts shown in the head and in the footer does not automatically "
|
441 |
+
#~ "blocked.<br />Split each script with <strong><em><---------SEP---------"
|
442 |
+
#~ "></em></strong>"
|
443 |
+
#~ msgstr ""
|
444 |
+
#~ "Script inseriti nella head e nel footer non automaticamente bloccati.<br /"
|
445 |
+
#~ ">Split each script with <strong><em><---------SEP---------></em></"
|
446 |
+
#~ "strong>"
|
447 |
+
|
448 |
#~ msgid "Banner text"
|
449 |
#~ msgstr "Testo del banner"
|
450 |
|
lang/italy-cookie-choices-ro_RO.mo
CHANGED
Binary file
|
lang/italy-cookie-choices-ro_RO.po
CHANGED
@@ -1,22 +1,22 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: italy-cookie-choices\n"
|
4 |
-
"POT-Creation-Date: 2015-06-
|
5 |
-
"PO-Revision-Date: 2015-06-
|
6 |
"Last-Translator: Florin Lungu <me@florinlungu.it>\n"
|
7 |
"Language-Team: info@overclokk.net\n"
|
8 |
"Language: ro_RO\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 1.
|
13 |
"X-Poedit-Basepath: ..\\\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e\n"
|
17 |
-
"X-Poedit-SearchPath-0: .\n"
|
18 |
"X-Poedit-SearchPathExcluded-0: node_modules\n"
|
19 |
"X-Poedit-SearchPathExcluded-1: .git\n"
|
|
|
20 |
|
21 |
#: admin/class-italy-cookie-choices-admin.php:74
|
22 |
msgid "Italy Cookie Choices Dashboard"
|
@@ -87,159 +87,240 @@ msgid "Banner text color"
|
|
87 |
msgstr "Culoarea text-ului din banner"
|
88 |
|
89 |
#: admin/class-italy-cookie-choices-admin.php:313
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
msgid "Advanced settings"
|
91 |
msgstr "Setări avansate"
|
92 |
|
93 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
94 |
msgid "Cookie name"
|
95 |
msgstr "Nume Cookie"
|
96 |
|
97 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
98 |
msgid "Cookie value"
|
99 |
msgstr "Valoare Cookie"
|
100 |
|
101 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
102 |
msgid "Cookie policy page slug"
|
103 |
msgstr "Slug pentru pagina de Politica Cookie"
|
104 |
|
105 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
106 |
msgid "Open policy in new page"
|
107 |
msgstr "Deschide politica de cookie in o pagina nouă"
|
108 |
|
109 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
110 |
msgid "Third part cookie block (beta)"
|
111 |
msgstr "Blochează cookie-urile externe"
|
112 |
|
113 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
114 |
msgid "Scripts allowed in body"
|
115 |
msgstr "Script permis in body"
|
116 |
|
117 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
118 |
msgid "Scripts to be blocked"
|
119 |
msgstr "Script care urmează sa fie blocat"
|
120 |
|
121 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
122 |
msgid "Text message for locked embedded content"
|
123 |
msgstr "Mesaj pentru conținuturile încorporate blocate"
|
124 |
|
125 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
126 |
msgid "Button text to activate locked embedded content"
|
127 |
msgstr "Textul butonului pentru a activa conținutul încorporat blocat"
|
128 |
|
129 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
130 |
msgid "Customize your banner for cookie law"
|
131 |
msgstr "Personalizează banner-ul pentru Cookie Law"
|
132 |
|
133 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
134 |
msgid "Display banner for Cookie Law in front-end"
|
135 |
msgstr "Visualizează banner-ul in front-end"
|
136 |
|
137 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
138 |
msgid "Top Bar (Default, Display a top bar with your message)"
|
139 |
msgstr ""
|
140 |
"Bara înaltă (Predefinită, Vizualizează o bara în partea înaltă cu mesajul "
|
141 |
"tău)"
|
142 |
|
143 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
144 |
msgid "Dialog (Display an overlay with your message)"
|
145 |
msgstr "Dialog (Visualizează un pop-up cu text-ul tău)"
|
146 |
|
147 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
148 |
msgid "Bottom Bar (Display a bar in the footer with your message)"
|
149 |
msgstr ""
|
150 |
"Bara în partea de jos a ecranului (Vizualizează o bară in partea de jos a "
|
151 |
"ecranului cu mesajul tău)"
|
152 |
|
153 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
154 |
msgid "Accepts disclosures on mouse scroll event"
|
155 |
msgstr "Acceptă informativa cu scroll de mouse"
|
156 |
|
157 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
158 |
msgid "Activate accept on second view"
|
159 |
msgstr "Activează accept într-o fereastră nouă"
|
160 |
|
161 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
162 |
msgid "Refresh page after button click (DEPRECATED)"
|
163 |
msgstr "Reîncarcă pagina dupa click pe buton (Deprecat)"
|
164 |
|
165 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
166 |
msgid "Your short cookie policy"
|
167 |
msgstr "Informativa ta scurtă despre cookie"
|
168 |
|
169 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
170 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
171 |
msgid ""
|
172 |
"People will see this notice only the first time that they enter your site"
|
173 |
msgstr "Persoanele v-or vedea mesajul doar prima dată când vizită site-ul tău"
|
174 |
|
175 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
176 |
msgid "e.g. http://www.aboutcookies.org/"
|
177 |
msgstr "De exemplu: http://www.aboutcookies.org/"
|
178 |
|
179 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
180 |
msgid "Insert here the link to your policy page"
|
181 |
msgstr "Introduce link-ul la pagina ta cu informativa extinsă"
|
182 |
|
183 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
184 |
msgid "e.g. More Info"
|
185 |
msgstr "De exemplu: Mai multe informații"
|
186 |
|
187 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
188 |
msgid "Insert here anchor text for the link"
|
189 |
msgstr "Introdu aici ancora text pentru link"
|
190 |
|
191 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
192 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
193 |
msgid "e.g. Close"
|
194 |
msgstr "De exemplu: Închide"
|
195 |
|
196 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
197 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
198 |
msgid "Insert here name of button (e.g. \"Close\") "
|
199 |
msgstr ""
|
200 |
"Introduce textul link-ului pentru închiderea pop-upului/banner-ului (ex: "
|
201 |
"Închide)"
|
202 |
|
203 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
204 |
msgid "Customize your style settings"
|
205 |
msgstr "Personalizează setările de stil"
|
206 |
|
207 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
208 |
msgid "Add a page top margin for info top bar, only for default topbar stile"
|
209 |
msgstr ""
|
210 |
"Adaugă o margine în partea înaltă a paginii pentru bara cu informații din "
|
211 |
"partea înaltă a ecranului, doar pentru stilul predefinit a barei din partea "
|
212 |
"înaltă a ecranului"
|
213 |
|
214 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
215 |
msgid "Select the template to use"
|
216 |
msgstr "Alege un template care să-l folosești"
|
217 |
|
218 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
219 |
msgid "Custom Background color for banner"
|
220 |
msgstr "Culoare personalizată pentru background-ul bannerului"
|
221 |
|
222 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
223 |
msgid "Custom text color for banner"
|
224 |
msgstr "Culoare personalizată pentru culoarea textului în banner"
|
225 |
|
226 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
227 |
msgid "Customize your advanced settings"
|
228 |
msgstr "Personalizează setările avansate"
|
229 |
|
230 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
231 |
msgid "Insert your cookie name (Default: displayCookieConsent)"
|
232 |
msgstr "Introduceți numele Cookie-ului tău (Default: displayCookieConsent)"
|
233 |
|
234 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
235 |
msgid "Insert your cookie value (Default: y)"
|
236 |
msgstr "Introduceți valoarea Cookie-ului (Default: y)"
|
237 |
|
238 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
239 |
msgid "e.g. your-policy-url.html"
|
240 |
msgstr "ex: link-politica-ta.html"
|
241 |
|
242 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
243 |
msgid ""
|
244 |
"Insert your cookie policy page slug (e.g. your-policy-url), it will display "
|
245 |
"only topbar in your cookie policy page"
|
@@ -248,27 +329,27 @@ msgstr ""
|
|
248 |
"politica-ta), acesta va vizualiza doar bara din sus în pagina despre "
|
249 |
"politica cookie-urilor"
|
250 |
|
251 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
252 |
msgid "Open your cookie policy page in new one"
|
253 |
msgstr "Deschide pagina cookie-urilor în una noua"
|
254 |
|
255 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
256 |
msgid "Cookie from any embed in your content (Beta) (DEPRECATED)"
|
257 |
msgstr ""
|
258 |
"Cookie din orice conținut incorporat in conținutul paginii (Beta) (Deprecat)"
|
259 |
|
260 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
261 |
msgid "Cookie from any embed in your widget area (Beta) (DEPRECATED)"
|
262 |
msgstr "Cookie din orice conținut încorporat din area widget-ului (Deprecat)"
|
263 |
|
264 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
265 |
msgid "Cookie from any embed in all body, except head and footer (Beta)"
|
266 |
msgstr ""
|
267 |
"Cookie din orice conținut încorporat în orice conținut a paginii, mai puțin "
|
268 |
"partea înaltă si cea de jos a paginii"
|
269 |
|
270 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
271 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
272 |
msgid ""
|
273 |
"<script src="http://domain.com/widget-example.js"></"
|
274 |
"script>\n"
|
@@ -288,7 +369,7 @@ msgstr ""
|
|
288 |
"<script src="http://lastdomain.com/gadget-example.js"></"
|
289 |
"script>"
|
290 |
|
291 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
292 |
msgid ""
|
293 |
"Scripts to be excluded from the automatic block.<br />Split each script with "
|
294 |
"<strong><em><---------SEP---------></em></strong>"
|
@@ -296,7 +377,7 @@ msgstr ""
|
|
296 |
"Script care va fi exclus din blocarea automatică.<br />Împarte fiecare "
|
297 |
"script cu <strong><em><---------SEP---------></em></strong>"
|
298 |
|
299 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
300 |
msgid ""
|
301 |
"Scripts shown in the head and in the footer does not automatically blocked."
|
302 |
"<br />Split each script with <strong><em><---------SEP---------></em></"
|
@@ -306,18 +387,18 @@ msgstr ""
|
|
306 |
"blocate automat.<br />Împarte fiecare script cu <strong><em><---------"
|
307 |
"SEP---------></em></strong>"
|
308 |
|
309 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
310 |
msgid "Your lock message for embedded contents inside posts, pages and widgets"
|
311 |
msgstr ""
|
312 |
"Mesajul tău de blocare pentru conținuturile încorporate în postări, pagini "
|
313 |
"și widget-uri"
|
314 |
|
315 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
316 |
#: admin/class-italy-cookie-choices-sanitize.php:77
|
317 |
msgid "Cookie name field it can't be empty. Restored default name."
|
318 |
msgstr "Numele Cookie-ului nu poate fi lăsat gol. Resetat numele de default."
|
319 |
|
320 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
321 |
#: admin/class-italy-cookie-choices-sanitize.php:84
|
322 |
msgid "Cookie value field it can't be empty. Restored default value."
|
323 |
msgstr ""
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: italy-cookie-choices\n"
|
4 |
+
"POT-Creation-Date: 2015-06-24 16:53+0100\n"
|
5 |
+
"PO-Revision-Date: 2015-06-24 19:40+0100\n"
|
6 |
"Last-Translator: Florin Lungu <me@florinlungu.it>\n"
|
7 |
"Language-Team: info@overclokk.net\n"
|
8 |
"Language: ro_RO\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 1.5.4\n"
|
13 |
"X-Poedit-Basepath: ..\\\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e\n"
|
|
|
17 |
"X-Poedit-SearchPathExcluded-0: node_modules\n"
|
18 |
"X-Poedit-SearchPathExcluded-1: .git\n"
|
19 |
+
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
#: admin/class-italy-cookie-choices-admin.php:74
|
22 |
msgid "Italy Cookie Choices Dashboard"
|
87 |
msgstr "Culoarea text-ului din banner"
|
88 |
|
89 |
#: admin/class-italy-cookie-choices-admin.php:313
|
90 |
+
msgid "Custom CSS"
|
91 |
+
msgstr "CSS personal"
|
92 |
+
|
93 |
+
#: admin/class-italy-cookie-choices-admin.php:324
|
94 |
+
msgid "Custom CSS Class (Optional)"
|
95 |
+
msgstr "Clasă CSS personalizată (Opțional)"
|
96 |
+
|
97 |
+
#: admin/class-italy-cookie-choices-admin.php:335
|
98 |
msgid "Advanced settings"
|
99 |
msgstr "Setări avansate"
|
100 |
|
101 |
+
#: admin/class-italy-cookie-choices-admin.php:345
|
102 |
msgid "Cookie name"
|
103 |
msgstr "Nume Cookie"
|
104 |
|
105 |
+
#: admin/class-italy-cookie-choices-admin.php:356
|
106 |
msgid "Cookie value"
|
107 |
msgstr "Valoare Cookie"
|
108 |
|
109 |
+
#: admin/class-italy-cookie-choices-admin.php:367
|
110 |
msgid "Cookie policy page slug"
|
111 |
msgstr "Slug pentru pagina de Politica Cookie"
|
112 |
|
113 |
+
#: admin/class-italy-cookie-choices-admin.php:378
|
114 |
msgid "Open policy in new page"
|
115 |
msgstr "Deschide politica de cookie in o pagina nouă"
|
116 |
|
117 |
+
#: admin/class-italy-cookie-choices-admin.php:389
|
118 |
msgid "Third part cookie block (beta)"
|
119 |
msgstr "Blochează cookie-urile externe"
|
120 |
|
121 |
+
#: admin/class-italy-cookie-choices-admin.php:400
|
122 |
msgid "Scripts allowed in body"
|
123 |
msgstr "Script permis in body"
|
124 |
|
125 |
+
#: admin/class-italy-cookie-choices-admin.php:411
|
126 |
msgid "Scripts to be blocked"
|
127 |
msgstr "Script care urmează sa fie blocat"
|
128 |
|
129 |
+
#: admin/class-italy-cookie-choices-admin.php:422
|
130 |
msgid "Text message for locked embedded content"
|
131 |
msgstr "Mesaj pentru conținuturile încorporate blocate"
|
132 |
|
133 |
+
#: admin/class-italy-cookie-choices-admin.php:433
|
134 |
msgid "Button text to activate locked embedded content"
|
135 |
msgstr "Textul butonului pentru a activa conținutul încorporat blocat"
|
136 |
|
137 |
+
#: admin/class-italy-cookie-choices-admin.php:458
|
138 |
msgid "Customize your banner for cookie law"
|
139 |
msgstr "Personalizează banner-ul pentru Cookie Law"
|
140 |
|
141 |
+
#: admin/class-italy-cookie-choices-admin.php:473
|
142 |
msgid "Display banner for Cookie Law in front-end"
|
143 |
msgstr "Visualizează banner-ul in front-end"
|
144 |
|
145 |
+
#: admin/class-italy-cookie-choices-admin.php:493
|
146 |
msgid "Top Bar (Default, Display a top bar with your message)"
|
147 |
msgstr ""
|
148 |
"Bara înaltă (Predefinită, Vizualizează o bara în partea înaltă cu mesajul "
|
149 |
"tău)"
|
150 |
|
151 |
+
#: admin/class-italy-cookie-choices-admin.php:501
|
152 |
msgid "Dialog (Display an overlay with your message)"
|
153 |
msgstr "Dialog (Visualizează un pop-up cu text-ul tău)"
|
154 |
|
155 |
+
#: admin/class-italy-cookie-choices-admin.php:509
|
156 |
msgid "Bottom Bar (Display a bar in the footer with your message)"
|
157 |
msgstr ""
|
158 |
"Bara în partea de jos a ecranului (Vizualizează o bară in partea de jos a "
|
159 |
"ecranului cu mesajul tău)"
|
160 |
|
161 |
+
#: admin/class-italy-cookie-choices-admin.php:529
|
162 |
msgid "Accepts disclosures on mouse scroll event"
|
163 |
msgstr "Acceptă informativa cu scroll de mouse"
|
164 |
|
165 |
+
#: admin/class-italy-cookie-choices-admin.php:549
|
166 |
msgid "Activate accept on second view"
|
167 |
msgstr "Activează accept într-o fereastră nouă"
|
168 |
|
169 |
+
#: admin/class-italy-cookie-choices-admin.php:567
|
170 |
msgid "Refresh page after button click (DEPRECATED)"
|
171 |
msgstr "Reîncarcă pagina dupa click pe buton (Deprecat)"
|
172 |
|
173 |
+
#: admin/class-italy-cookie-choices-admin.php:582
|
174 |
msgid "Your short cookie policy"
|
175 |
msgstr "Informativa ta scurtă despre cookie"
|
176 |
|
177 |
+
#: admin/class-italy-cookie-choices-admin.php:585
|
178 |
+
#: admin/class-italy-cookie-choices-admin.php:989
|
179 |
msgid ""
|
180 |
"People will see this notice only the first time that they enter your site"
|
181 |
msgstr "Persoanele v-or vedea mesajul doar prima dată când vizită site-ul tău"
|
182 |
|
183 |
+
#: admin/class-italy-cookie-choices-admin.php:599
|
184 |
msgid "e.g. http://www.aboutcookies.org/"
|
185 |
msgstr "De exemplu: http://www.aboutcookies.org/"
|
186 |
|
187 |
+
#: admin/class-italy-cookie-choices-admin.php:602
|
188 |
msgid "Insert here the link to your policy page"
|
189 |
msgstr "Introduce link-ul la pagina ta cu informativa extinsă"
|
190 |
|
191 |
+
#: admin/class-italy-cookie-choices-admin.php:616
|
192 |
msgid "e.g. More Info"
|
193 |
msgstr "De exemplu: Mai multe informații"
|
194 |
|
195 |
+
#: admin/class-italy-cookie-choices-admin.php:619
|
196 |
msgid "Insert here anchor text for the link"
|
197 |
msgstr "Introdu aici ancora text pentru link"
|
198 |
|
199 |
+
#: admin/class-italy-cookie-choices-admin.php:633
|
200 |
+
#: admin/class-italy-cookie-choices-admin.php:1005
|
201 |
msgid "e.g. Close"
|
202 |
msgstr "De exemplu: Închide"
|
203 |
|
204 |
+
#: admin/class-italy-cookie-choices-admin.php:636
|
205 |
+
#: admin/class-italy-cookie-choices-admin.php:1008
|
206 |
msgid "Insert here name of button (e.g. \"Close\") "
|
207 |
msgstr ""
|
208 |
"Introduce textul link-ului pentru închiderea pop-upului/banner-ului (ex: "
|
209 |
"Închide)"
|
210 |
|
211 |
+
#: admin/class-italy-cookie-choices-admin.php:653
|
212 |
msgid "Customize your style settings"
|
213 |
msgstr "Personalizează setările de stil"
|
214 |
|
215 |
+
#: admin/class-italy-cookie-choices-admin.php:669
|
216 |
msgid "Add a page top margin for info top bar, only for default topbar stile"
|
217 |
msgstr ""
|
218 |
"Adaugă o margine în partea înaltă a paginii pentru bara cu informații din "
|
219 |
"partea înaltă a ecranului, doar pentru stilul predefinit a barei din partea "
|
220 |
"înaltă a ecranului"
|
221 |
|
222 |
+
#: admin/class-italy-cookie-choices-admin.php:687
|
223 |
+
msgid "Default cookiechoices template (centered with text links)"
|
224 |
+
msgstr "Template predefinit pentru cookiechoices (centrat cu link-uri text)"
|
225 |
+
|
226 |
+
#: admin/class-italy-cookie-choices-admin.php:689
|
227 |
+
msgid "Centered container with left aligned text and big buttons"
|
228 |
+
msgstr "Contenitor centrat, cu text-ul alineat la stânga și butoane mari"
|
229 |
+
|
230 |
+
#: admin/class-italy-cookie-choices-admin.php:691
|
231 |
+
msgid "Centered container with left aligned text and small buttons"
|
232 |
+
msgstr ""
|
233 |
+
"Contenitor alineat la stânga, cu text-ul alineat la stânga si butoane mici"
|
234 |
+
|
235 |
+
#: admin/class-italy-cookie-choices-admin.php:693
|
236 |
+
msgid "My custom CSS"
|
237 |
+
msgstr "Personalizări CSS personale"
|
238 |
+
|
239 |
+
#: admin/class-italy-cookie-choices-admin.php:697
|
240 |
msgid "Select the template to use"
|
241 |
msgstr "Alege un template care să-l folosești"
|
242 |
|
243 |
+
#: admin/class-italy-cookie-choices-admin.php:718
|
244 |
msgid "Custom Background color for banner"
|
245 |
msgstr "Culoare personalizată pentru background-ul bannerului"
|
246 |
|
247 |
+
#: admin/class-italy-cookie-choices-admin.php:738
|
248 |
msgid "Custom text color for banner"
|
249 |
msgstr "Culoare personalizată pentru culoarea textului în banner"
|
250 |
|
251 |
+
#: admin/class-italy-cookie-choices-admin.php:755
|
252 |
+
msgid "Your custom css"
|
253 |
+
msgstr "Personalizările tale CSS"
|
254 |
+
|
255 |
+
#: admin/class-italy-cookie-choices-admin.php:758
|
256 |
+
msgid "Inset here your custom CSS for banner"
|
257 |
+
msgstr "Introduce-ți aici stilul CSS pentru banner"
|
258 |
+
|
259 |
+
#: admin/class-italy-cookie-choices-admin.php:783
|
260 |
+
msgid "Eg: bannerStyle"
|
261 |
+
msgstr "Exemplu: bannerStyle"
|
262 |
+
|
263 |
+
#: admin/class-italy-cookie-choices-admin.php:785
|
264 |
+
msgid "CSS class for div container (Default <code>bannerStyle</code>)"
|
265 |
+
msgstr ""
|
266 |
+
"Classă CSS pentru contenitorul div (Predefinit <code>bannerStyle</code>)"
|
267 |
+
|
268 |
+
#: admin/class-italy-cookie-choices-admin.php:788
|
269 |
+
msgid "Eg: contentStyle"
|
270 |
+
msgstr "Exemplu: contentStyle"
|
271 |
+
|
272 |
+
#: admin/class-italy-cookie-choices-admin.php:790
|
273 |
+
msgid "CSS class for div content (Default <code>contentStyle</code>)"
|
274 |
+
msgstr ""
|
275 |
+
"Clasă CSS pentru contenitorul div (Predefinit <code>contentStyle</code>)"
|
276 |
+
|
277 |
+
#: admin/class-italy-cookie-choices-admin.php:793
|
278 |
+
msgid "Eg: consentText"
|
279 |
+
msgstr "Exemplu: consentText"
|
280 |
+
|
281 |
+
#: admin/class-italy-cookie-choices-admin.php:795
|
282 |
+
msgid "CSS class for span content (Default <code>consentText</code>)"
|
283 |
+
msgstr ""
|
284 |
+
"Clasă CSS pentru contenitorul span (Predefinit <code>consentText</code>)"
|
285 |
+
|
286 |
+
#: admin/class-italy-cookie-choices-admin.php:798
|
287 |
+
msgid "Eg: infoClass"
|
288 |
+
msgstr "Exemplu: infoClass"
|
289 |
+
|
290 |
+
#: admin/class-italy-cookie-choices-admin.php:800
|
291 |
+
msgid "CSS class for Info link (Default <code>itaybtn</code>)"
|
292 |
+
msgstr "Clasă CSS pentru link-ul Info (Predefinit <code>itaybtn</code>)"
|
293 |
+
|
294 |
+
#: admin/class-italy-cookie-choices-admin.php:803
|
295 |
+
msgid "Eg: closeClass"
|
296 |
+
msgstr "Exemplu: closeClass"
|
297 |
+
|
298 |
+
#: admin/class-italy-cookie-choices-admin.php:805
|
299 |
+
msgid "CSS class for close link (Default <code>itaybtn</code>)"
|
300 |
+
msgstr ""
|
301 |
+
"Clasă CSS pentru link-ul de închidere (Predefinit <code>itaybtn</code>)"
|
302 |
+
|
303 |
+
#: admin/class-italy-cookie-choices-admin.php:808
|
304 |
+
msgid "Customize with your personal CSS class"
|
305 |
+
msgstr "Personalizează cu clasa ta CSS personală"
|
306 |
+
|
307 |
+
#: admin/class-italy-cookie-choices-admin.php:824
|
308 |
msgid "Customize your advanced settings"
|
309 |
msgstr "Personalizează setările avansate"
|
310 |
|
311 |
+
#: admin/class-italy-cookie-choices-admin.php:840
|
312 |
msgid "Insert your cookie name (Default: displayCookieConsent)"
|
313 |
msgstr "Introduceți numele Cookie-ului tău (Default: displayCookieConsent)"
|
314 |
|
315 |
+
#: admin/class-italy-cookie-choices-admin.php:859
|
316 |
msgid "Insert your cookie value (Default: y)"
|
317 |
msgstr "Introduceți valoarea Cookie-ului (Default: y)"
|
318 |
|
319 |
+
#: admin/class-italy-cookie-choices-admin.php:875
|
320 |
msgid "e.g. your-policy-url.html"
|
321 |
msgstr "ex: link-politica-ta.html"
|
322 |
|
323 |
+
#: admin/class-italy-cookie-choices-admin.php:878
|
324 |
msgid ""
|
325 |
"Insert your cookie policy page slug (e.g. your-policy-url), it will display "
|
326 |
"only topbar in your cookie policy page"
|
329 |
"politica-ta), acesta va vizualiza doar bara din sus în pagina despre "
|
330 |
"politica cookie-urilor"
|
331 |
|
332 |
+
#: admin/class-italy-cookie-choices-admin.php:898
|
333 |
msgid "Open your cookie policy page in new one"
|
334 |
msgstr "Deschide pagina cookie-urilor în una noua"
|
335 |
|
336 |
+
#: admin/class-italy-cookie-choices-admin.php:922
|
337 |
msgid "Cookie from any embed in your content (Beta) (DEPRECATED)"
|
338 |
msgstr ""
|
339 |
"Cookie din orice conținut incorporat in conținutul paginii (Beta) (Deprecat)"
|
340 |
|
341 |
+
#: admin/class-italy-cookie-choices-admin.php:927
|
342 |
msgid "Cookie from any embed in your widget area (Beta) (DEPRECATED)"
|
343 |
msgstr "Cookie din orice conținut încorporat din area widget-ului (Deprecat)"
|
344 |
|
345 |
+
#: admin/class-italy-cookie-choices-admin.php:932
|
346 |
msgid "Cookie from any embed in all body, except head and footer (Beta)"
|
347 |
msgstr ""
|
348 |
"Cookie din orice conținut încorporat în orice conținut a paginii, mai puțin "
|
349 |
"partea înaltă si cea de jos a paginii"
|
350 |
|
351 |
+
#: admin/class-italy-cookie-choices-admin.php:949
|
352 |
+
#: admin/class-italy-cookie-choices-admin.php:967
|
353 |
msgid ""
|
354 |
"<script src="http://domain.com/widget-example.js"></"
|
355 |
"script>\n"
|
369 |
"<script src="http://lastdomain.com/gadget-example.js"></"
|
370 |
"script>"
|
371 |
|
372 |
+
#: admin/class-italy-cookie-choices-admin.php:952
|
373 |
msgid ""
|
374 |
"Scripts to be excluded from the automatic block.<br />Split each script with "
|
375 |
"<strong><em><---------SEP---------></em></strong>"
|
377 |
"Script care va fi exclus din blocarea automatică.<br />Împarte fiecare "
|
378 |
"script cu <strong><em><---------SEP---------></em></strong>"
|
379 |
|
380 |
+
#: admin/class-italy-cookie-choices-admin.php:970
|
381 |
msgid ""
|
382 |
"Scripts shown in the head and in the footer does not automatically blocked."
|
383 |
"<br />Split each script with <strong><em><---------SEP---------></em></"
|
387 |
"blocate automat.<br />Împarte fiecare script cu <strong><em><---------"
|
388 |
"SEP---------></em></strong>"
|
389 |
|
390 |
+
#: admin/class-italy-cookie-choices-admin.php:986
|
391 |
msgid "Your lock message for embedded contents inside posts, pages and widgets"
|
392 |
msgstr ""
|
393 |
"Mesajul tău de blocare pentru conținuturile încorporate în postări, pagini "
|
394 |
"și widget-uri"
|
395 |
|
396 |
+
#: admin/class-italy-cookie-choices-admin.php:1120
|
397 |
#: admin/class-italy-cookie-choices-sanitize.php:77
|
398 |
msgid "Cookie name field it can't be empty. Restored default name."
|
399 |
msgstr "Numele Cookie-ului nu poate fi lăsat gol. Resetat numele de default."
|
400 |
|
401 |
+
#: admin/class-italy-cookie-choices-admin.php:1127
|
402 |
#: admin/class-italy-cookie-choices-sanitize.php:84
|
403 |
msgid "Cookie value field it can't be empty. Restored default value."
|
404 |
msgstr ""
|
lang/italy-cookie-choices.pot
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Italy Cookie Choices\n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
"PO-Revision-Date: 2015-05-21 20:22+0100\n"
|
7 |
"Last-Translator: Enea Overclokk <info@overclokk.net>\n"
|
8 |
"Language-Team: info@overclokk.net\n"
|
@@ -172,7 +172,7 @@ msgid "Your short cookie policy"
|
|
172 |
msgstr ""
|
173 |
|
174 |
#: admin/class-italy-cookie-choices-admin.php:585
|
175 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
176 |
msgid "People will see this notice only the first time that they enter your site"
|
177 |
msgstr ""
|
178 |
|
@@ -193,12 +193,12 @@ msgid "Insert here anchor text for the link"
|
|
193 |
msgstr ""
|
194 |
|
195 |
#: admin/class-italy-cookie-choices-admin.php:633
|
196 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
197 |
msgid "e.g. Close"
|
198 |
msgstr ""
|
199 |
|
200 |
#: admin/class-italy-cookie-choices-admin.php:636
|
201 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
202 |
msgid "Insert here name of button (e.g. \"Close\") "
|
203 |
msgstr ""
|
204 |
|
@@ -307,7 +307,7 @@ msgid "e.g. your-policy-url.html"
|
|
307 |
msgstr ""
|
308 |
|
309 |
#: admin/class-italy-cookie-choices-admin.php:878
|
310 |
-
msgid "Insert your cookie policy page slug (e.g. your-policy-url), it will display only topbar in your cookie policy page"
|
311 |
msgstr ""
|
312 |
|
313 |
#: admin/class-italy-cookie-choices-admin.php:898
|
@@ -327,7 +327,7 @@ msgid "Cookie from any embed in all body, except head and footer (Beta)"
|
|
327 |
msgstr ""
|
328 |
|
329 |
#: admin/class-italy-cookie-choices-admin.php:949
|
330 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
331 |
msgid ""
|
332 |
"<script src="http://domain.com/widget-example.js"></script>\n"
|
333 |
"<---------SEP--------->\n"
|
@@ -336,24 +336,29 @@ msgid ""
|
|
336 |
"<script src="http://lastdomain.com/gadget-example.js"></script>"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
340 |
-
msgid "Scripts to be excluded from the automatic block.<br />Split each script with <strong><em><---------SEP---------></em></strong>"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
344 |
-
|
|
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
|
|
|
|
|
|
|
|
348 |
msgid "Your lock message for embedded contents inside posts, pages and widgets"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
352 |
#: admin/class-italy-cookie-choices-sanitize.php:77
|
353 |
msgid "Cookie name field it can't be empty. Restored default name."
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: admin/class-italy-cookie-choices-admin.php:
|
357 |
#: admin/class-italy-cookie-choices-sanitize.php:84
|
358 |
msgid "Cookie value field it can't be empty. Restored default value."
|
359 |
msgstr ""
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Italy Cookie Choices\n"
|
5 |
+
"POT-Creation-Date: 2015-07-01 01:27+0100\n"
|
6 |
"PO-Revision-Date: 2015-05-21 20:22+0100\n"
|
7 |
"Last-Translator: Enea Overclokk <info@overclokk.net>\n"
|
8 |
"Language-Team: info@overclokk.net\n"
|
172 |
msgstr ""
|
173 |
|
174 |
#: admin/class-italy-cookie-choices-admin.php:585
|
175 |
+
#: admin/class-italy-cookie-choices-admin.php:1002
|
176 |
msgid "People will see this notice only the first time that they enter your site"
|
177 |
msgstr ""
|
178 |
|
193 |
msgstr ""
|
194 |
|
195 |
#: admin/class-italy-cookie-choices-admin.php:633
|
196 |
+
#: admin/class-italy-cookie-choices-admin.php:1018
|
197 |
msgid "e.g. Close"
|
198 |
msgstr ""
|
199 |
|
200 |
#: admin/class-italy-cookie-choices-admin.php:636
|
201 |
+
#: admin/class-italy-cookie-choices-admin.php:1021
|
202 |
msgid "Insert here name of button (e.g. \"Close\") "
|
203 |
msgstr ""
|
204 |
|
307 |
msgstr ""
|
308 |
|
309 |
#: admin/class-italy-cookie-choices-admin.php:878
|
310 |
+
msgid "Insert your cookie policy page slug (e.g. your-policy-url), it will display only topbar in your cookie policy page and the scroll and the second view will be deactivated in that page."
|
311 |
msgstr ""
|
312 |
|
313 |
#: admin/class-italy-cookie-choices-admin.php:898
|
327 |
msgstr ""
|
328 |
|
329 |
#: admin/class-italy-cookie-choices-admin.php:949
|
330 |
+
#: admin/class-italy-cookie-choices-admin.php:974
|
331 |
msgid ""
|
332 |
"<script src="http://domain.com/widget-example.js"></script>\n"
|
333 |
"<---------SEP--------->\n"
|
336 |
"<script src="http://lastdomain.com/gadget-example.js"></script>"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: admin/class-italy-cookie-choices-admin.php:955
|
340 |
+
msgid "Scripts to be excluded from the automatic block.<br />Split each script with <strong><em><---------SEP---------></em></strong><br>Use <strong><---------SOMETHING---------></strong> for custom regex"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: admin/class-italy-cookie-choices-admin.php:958
|
344 |
+
#: admin/class-italy-cookie-choices-admin.php:983
|
345 |
+
msgid "For more information see the documentation"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: admin/class-italy-cookie-choices-admin.php:980
|
349 |
+
msgid "Scripts shown in the head and in the footer does not automatically blocked.<br />Split each script with <strong><em><---------SEP---------></em></strong><br>Use <strong><---------SOMETHING---------></strong> for custom regex"
|
350 |
+
msgstr ""
|
351 |
+
|
352 |
+
#: admin/class-italy-cookie-choices-admin.php:999
|
353 |
msgid "Your lock message for embedded contents inside posts, pages and widgets"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: admin/class-italy-cookie-choices-admin.php:1133
|
357 |
#: admin/class-italy-cookie-choices-sanitize.php:77
|
358 |
msgid "Cookie name field it can't be empty. Restored default name."
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: admin/class-italy-cookie-choices-admin.php:1140
|
362 |
#: admin/class-italy-cookie-choices-sanitize.php:84
|
363 |
msgid "Cookie value field it can't be empty. Restored default value."
|
364 |
msgstr ""
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link:
|
|
4 |
Tags: compliance, cookie law, cookies, eu cookie law, eu law, eu privacy directive, privacy, privacy directive, notification, privacy law, cookie law banner, implied consent, third party script, third party cookie
|
5 |
Requires at least: 3.5
|
6 |
Tested up to: 4.3.0
|
7 |
-
Stable tag: 2.2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -34,7 +34,9 @@ Eg:
|
|
34 |
|
35 |
```
|
36 |
<script>console.log('Your custom script');</script>
|
|
|
37 |
<---------SEP--------->
|
|
|
38 |
<script async src="//192.168.1.10/italystrap/js.js"></script>
|
39 |
```
|
40 |
|
@@ -57,11 +59,15 @@ https://github.com/ItalyCookieChoices/italy-cookie-choices/wiki/Style-customizat
|
|
57 |
= Developer =
|
58 |
|
59 |
[Enea Overclokk](http://www.overclokk.net/)
|
|
|
60 |
[Andrea Pernici](https://www.andreapernici.com/)
|
|
|
61 |
[Andrea Cardinale](https://www.andrea-cardinale.it/)
|
62 |
|
63 |
= Link =
|
|
|
64 |
[WPItaly+](https://plus.google.com/u/0/communities/109254048492234113886)
|
|
|
65 |
[Forum GT](http://www.giorgiotave.it/forum/)
|
66 |
|
67 |
= Translators =
|
@@ -111,6 +117,18 @@ if it doesn't work activate standard theme and try
|
|
111 |
|
112 |
== Changelog ==
|
113 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
114 |
= 2.2.0 =
|
115 |
Release Date: June 24th, 2015
|
116 |
|
@@ -127,7 +145,7 @@ Dev time: 100h
|
|
127 |
* [Added multilingual support only for banner](https://github.com/ItalyCookieChoices/italy-cookie-choices/issues/31)
|
128 |
* [Added uninstall.php](https://github.com/ItalyCookieChoices/italy-cookie-choices/issues/34)
|
129 |
* Added text area for custom CSS
|
130 |
-
* Added input for custom CSS class
|
131 |
* Added filter `icc_output_html` on snippet output for developer
|
132 |
|
133 |
= 2.1.0 =
|
@@ -137,8 +155,8 @@ Dev time: 100h
|
|
137 |
|
138 |
* Added new third part cookie eraser functionality (much more powerful :-))
|
139 |
* New options for select banner template
|
140 |
-
* Added Bottom bar
|
141 |
-
* Fixed scroll issue
|
142 |
* New options for accepting on second view
|
143 |
* Fixed some issue
|
144 |
* [Now compatibility with PHP 5.3.29](https://github.com/ItalyCookieChoices/italy-cookie-choices/issues/42)
|
@@ -230,6 +248,9 @@ Dev time: 50h
|
|
230 |
|
231 |
== Upgrade Notice ==
|
232 |
|
|
|
|
|
|
|
233 |
= 2.1.0 =
|
234 |
More functionality added, please, see the plugin's admin page
|
235 |
|
@@ -243,7 +264,7 @@ First release.
|
|
243 |
|
244 |
* English: default, always included.
|
245 |
* Italian: Italiano, sempre incluso.
|
246 |
-
* Romanian:
|
247 |
|
248 |
*Note:* This plugins is localized/ translateable by default. This is very important for all users worldwide. So please contribute your language to the plugin to make it even more useful. For translating I recommend the awesome ["Codestyling Localization" plugin](http://wordpress.org/extend/plugins/codestyling-localization/) and for validating the ["Poedit Editor"](http://www.poedit.net/).
|
249 |
|
4 |
Tags: compliance, cookie law, cookies, eu cookie law, eu law, eu privacy directive, privacy, privacy directive, notification, privacy law, cookie law banner, implied consent, third party script, third party cookie
|
5 |
Requires at least: 3.5
|
6 |
Tested up to: 4.3.0
|
7 |
+
Stable tag: 2.2.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
34 |
|
35 |
```
|
36 |
<script>console.log('Your custom script');</script>
|
37 |
+
|
38 |
<---------SEP--------->
|
39 |
+
|
40 |
<script async src="//192.168.1.10/italystrap/js.js"></script>
|
41 |
```
|
42 |
|
59 |
= Developer =
|
60 |
|
61 |
[Enea Overclokk](http://www.overclokk.net/)
|
62 |
+
|
63 |
[Andrea Pernici](https://www.andreapernici.com/)
|
64 |
+
|
65 |
[Andrea Cardinale](https://www.andrea-cardinale.it/)
|
66 |
|
67 |
= Link =
|
68 |
+
|
69 |
[WPItaly+](https://plus.google.com/u/0/communities/109254048492234113886)
|
70 |
+
|
71 |
[Forum GT](http://www.giorgiotave.it/forum/)
|
72 |
|
73 |
= Translators =
|
117 |
|
118 |
== Changelog ==
|
119 |
|
120 |
+
= 2.2.1 =
|
121 |
+
Release Date: July 1st, 2015
|
122 |
+
|
123 |
+
Dev time: 10h
|
124 |
+
|
125 |
+
* Fixed text position for templates
|
126 |
+
* [Fixed scroll event in case slug is not set](https://github.com/ItalyCookieChoices/italy-cookie-choices/issues/101)
|
127 |
+
* [Fixed W3C validator error](https://github.com/ItalyCookieChoices/italy-cookie-choices/issues/96)
|
128 |
+
* Added new button below the textarea for separator `<---------SOMETHING--------->` & `<---------SEP--------->`
|
129 |
+
* Fixed uninstall issue in uninstall.php
|
130 |
+
* Improved UX for slug input
|
131 |
+
|
132 |
= 2.2.0 =
|
133 |
Release Date: June 24th, 2015
|
134 |
|
145 |
* [Added multilingual support only for banner](https://github.com/ItalyCookieChoices/italy-cookie-choices/issues/31)
|
146 |
* [Added uninstall.php](https://github.com/ItalyCookieChoices/italy-cookie-choices/issues/34)
|
147 |
* Added text area for custom CSS
|
148 |
+
* [Added input for custom CSS class](https://github.com/ItalyCookieChoices/italy-cookie-choices/issues/16)
|
149 |
* Added filter `icc_output_html` on snippet output for developer
|
150 |
|
151 |
= 2.1.0 =
|
155 |
|
156 |
* Added new third part cookie eraser functionality (much more powerful :-))
|
157 |
* New options for select banner template
|
158 |
+
* Added Bottom bar style
|
159 |
+
* [Fixed scroll issue](https://github.com/ItalyCookieChoices/italy-cookie-choices/issues/68)
|
160 |
* New options for accepting on second view
|
161 |
* Fixed some issue
|
162 |
* [Now compatibility with PHP 5.3.29](https://github.com/ItalyCookieChoices/italy-cookie-choices/issues/42)
|
248 |
|
249 |
== Upgrade Notice ==
|
250 |
|
251 |
+
= 2.2.1 =
|
252 |
+
Fixed some issue, see the changelog for more informations
|
253 |
+
|
254 |
= 2.1.0 =
|
255 |
More functionality added, please, see the plugin's admin page
|
256 |
|
264 |
|
265 |
* English: default, always included.
|
266 |
* Italian: Italiano, sempre incluso.
|
267 |
+
* Romanian: Română, inclus.
|
268 |
|
269 |
*Note:* This plugins is localized/ translateable by default. This is very important for all users worldwide. So please contribute your language to the plugin to make it even more useful. For translating I recommend the awesome ["Codestyling Localization" plugin](http://wordpress.org/extend/plugins/codestyling-localization/) and for validating the ["Poedit Editor"](http://www.poedit.net/).
|
270 |
|
uninstall.php
CHANGED
@@ -32,10 +32,6 @@ if ( is_multisite() ) {
|
|
32 |
// delete_transient( 'TRANSIENT_NAME' );
|
33 |
delete_option('italy_cookie_choices');
|
34 |
|
35 |
-
//info: remove and optimize tables
|
36 |
-
$GLOBALS['wpdb']->query( "DROP TABLE `" . $GLOBALS['wpdb']->prefix . "italy_cookie_choices`");
|
37 |
-
$GLOBALS['wpdb']->query( "OPTIMIZE TABLE `" . $GLOBALS['wpdb']->prefix . "options`");
|
38 |
-
|
39 |
restore_current_blog();
|
40 |
|
41 |
}
|
@@ -47,13 +43,13 @@ if ( is_multisite() ) {
|
|
47 |
// delete_transient( 'TRANSIENT_NAME' );
|
48 |
delete_option('italy_cookie_choices');
|
49 |
|
50 |
-
//info: remove and optimize tables
|
51 |
-
$GLOBALS['wpdb']->query("DROP TABLE `".$GLOBALS['wpdb']->prefix."italy_cookie_choices`");
|
52 |
-
$GLOBALS['wpdb']->query("OPTIMIZE TABLE `" .$GLOBALS['wpdb']->prefix."options`");
|
53 |
-
|
54 |
}
|
55 |
|
|
|
|
|
|
|
|
|
56 |
deregister_string( 'Italy Cookie Choices', 'Banner text');
|
57 |
-
|
58 |
deregister_string( 'Italy Cookie Choices', 'Banner anchor text' );
|
59 |
deregister_string( 'Italy Cookie Choices', 'Banner button text' );
|
32 |
// delete_transient( 'TRANSIENT_NAME' );
|
33 |
delete_option('italy_cookie_choices');
|
34 |
|
|
|
|
|
|
|
|
|
35 |
restore_current_blog();
|
36 |
|
37 |
}
|
43 |
// delete_transient( 'TRANSIENT_NAME' );
|
44 |
delete_option('italy_cookie_choices');
|
45 |
|
|
|
|
|
|
|
|
|
46 |
}
|
47 |
|
48 |
+
/**
|
49 |
+
* Require multilingual functions
|
50 |
+
*/
|
51 |
+
require( plugin_dir_path( __FILE__ ) . 'includes/functions-italy-cookie-choices-lang.php');
|
52 |
deregister_string( 'Italy Cookie Choices', 'Banner text');
|
53 |
+
deregister_string( 'Italy Cookie Choices', 'Banner url' );
|
54 |
deregister_string( 'Italy Cookie Choices', 'Banner anchor text' );
|
55 |
deregister_string( 'Italy Cookie Choices', 'Banner button text' );
|