Ïnitial Commit module v6.2.3

This commit is contained in:
Shoaib Jilani 2022-04-19 12:18:09 +05:00
parent bc1bf66729
commit d273c8dfc3
152 changed files with 49459 additions and 0 deletions

942
admin.php Normal file
View File

@ -0,0 +1,942 @@
<?php
if (!defined('ABSPATH')) {
exit;
}
?>
<?php
if (isset($_SERVER['REQUEST_URI'])) {
$S_URI = sanitize_text_field($_SERVER['REQUEST_URI']);
if(get_option('SCCBPP_cookie_consent_url')!=''){
$D_URL = get_option('SCCBPP_cookie_consent_url');
}else{
$D_URL = get_site_url();
}
if(get_option('SCCBPP_cookie_consent_email')!=''){
$admin_Email = get_option('SCCBPP_cookie_consent_email');
}else{
$admin_Email = get_option('admin_email');
}
}
?>
<!--tabs-->
<style>
.seers-flex-container {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
padding: 5px 0px 15px 0px;
}
.seers-flex-item-1 {
flex-grow: 1;
}
.seers-flex-item-2 {
flex-grow: 2;
}
.seers-checkbox-terms {
display: flex;
flex-direction: column;
}
.seers-activate-button {
display: flex;
flex-direction: column;
}
.seers-select-btn.active {
background-color: #6CC04A;
border: 0px solid !important;
color: white !important;
}
#setting_message_success {
color: green !important;
margin-top: 0px;
/*font-size:18px;*/
}
#setting_message_error {
color: red !important;
margin-top: 0px;
/*font-size:18px;*/
}
#policy_message_success {
color: green !important;
/*font-size:18px;*/
}
#policy_message_error {
color: red !important;
/*font-size:18px;*/
}
</style>
<div class="seers-wordpress-main">
<div class="pc-tab">
<input checked="checked" id="tab1" type="radio" name="pct" />
<input id="tab2" type="radio" name="pct" />
<input id="tab3" type="radio" name="pct" />
<input id="tab4" type="radio" name="pct" />
<nav>
<ul class="tab-ul">
<li class="tab1">
<label for="tab1">Activation</label>
</li>
<?php
//by Shoaib commenting this if because this section is also visible for free user
//if (get_option('SCCBPP_cookie_consent_id') !='') {?>
<li class="tab2">
<label for="tab2">Settings</label>
</li>
<li class="tab3">
<label for="tab3">Policy</label>
</li>
<?php //} ?>
<li class="tab4">
<label for="tab4">User Guide</label>
</li>
</ul>
</nav>
<section>
<div class="tab1">
<div class="seers-wordpress-plugin-hol">
<div class="seers-plugin-main-cont">
<div class="seers-content-col tile-style">
<form method="post" id="wp_plugin"
action="<?php echo esc_url(str_replace('%7E', '~', $S_URI)); ?>">
<fieldset>
<?php if (get_option('SCCBPP_cookie_consent_id') !='') {?>
<div style="color:#0C9A9A; font-family: Arial; font-size: 12px;">
<?php __('Your Seers Cookie Consent banner is activated.','Seers-Cookie-Consent-Banner-Privacy-Policy'); ?><?php esc_html_e('Your Seers Cookie Consent banner is activated.'); ?>
</div>
<?php }else{?>
<div style="color:#f00; font-family: Arial; font-size: 12px;">
<?php __('Your Seers Cookie Consent Banner is NOT activated because','Seers-Cookie-Consent-Banner-Privacy-Policy'); ?> <?php if(get_option('SCCBPP_cookie_consent_msg')){
esc_html_e(get_option('SCCBPP_cookie_consent_msg'));
}?> </div>
<?php } ?>
<h1>Seers Cookie Consent Solution</h1>
<label for="SCCBPP_cookie_consent_url"><span>URL</span>
<input type="text" id="SCCBPP_cookie_consent_url"
name="SCCBPP_cookie_consent_url" class="input-field"
value="<?php esc_html_e($D_URL); ?>" readonly>
</label>
<label
for="SCCBPP_cookie_consent_email"><span><?php echo __('Email','Seers-Cookie-Consent-Banner-Privacy-Policy'); ?></span>
<input type="text" id="SCCBPP_cookie_consent_email"
name="SCCBPP_cookie_consent_email" class="input-field"
value="<?php esc_html_e($admin_Email); ?>">
</label>
<div class="seers-flex-container">
<?php if (get_option('SCCBPP_cookie_consent_id') !='') {?>
<div class="seers-checkbox-terms">
<div class="seers-checkbox">
<input type="checkbox" name="seers_term_condition"
id="seers_term_condition" value="terms" class="number" checked>
<?php esc_html_e('I agree Seers','Seers-Cookie-Consent-Banner-Privacy-Policy'); ?>
<a href="https://seersco.com/terms-and-conditions.html"><?php echo __('Terms & Condition','Seers-Cookie-Consent-Banner-Privacy-Policy');?>
</a>
<?php echo __('and','Seers-Cookie-Consent-Banner-Privacy-Policy');?> <a
href="https://seersco.com/privacy-policy.html"><?php echo __('Privacy Policy','Seers-Cookie-Consent-Banner-Privacy-Policy'); ?></a>,
</div>
<div class="seers-checkbox">
<input type="checkbox" name="seers_term_condition_url"
id="seers_term_condition_url" value="sterms" class="number" checked>
<?php esc_html_e('I agree Seers to use my email and url to create an account and power the cookie banner.','Seers-Cookie-Consent-Banner-Privacy-Policy'); ?>
</div>
</div>
<?php }else{?>
<div class="seers-checkbox-terms">
<div class="seers-checkbox">
<input type="checkbox" name="seers_term_condition"
id="seers_term_condition" value="terms" class="number">
<?php esc_html_e('I agree Seers','Seers-Cookie-Consent-Banner-Privacy-Policy'); ?>
<a href="https://seersco.com/terms-and-conditions.html"><?php esc_html_e('Terms & Condition','Seers-Cookie-Consent-Banner-Privacy-Policy');?>
</a>
<?php esc_html_e('and','Seers-Cookie-Consent-Banner-Privacy-Policy');?>
<a
href="https://seersco.com/privacy-policy.html"><?php esc_html_e('Privacy Policy','Seers-Cookie-Consent-Banner-Privacy-Policy'); ?></a>,
</div>
<div class="seers-checkbox">
<input type="checkbox" name="seers_term_condition_url"
id="seers_term_condition_url" value="sterms" class="number">
<?php esc_html_e('I agree Seers to use my email and url to create an account and power the cookie banner.','Seers-Cookie-Consent-Banner-Privacy-Policy'); ?>
</div>
</div>
<?php }?>
<div class="seers-activate-button"><input type="submit" name="SCCBPP_cookieid"
id="SCCBPP_cookieid" disabled
value="<?php esc_html_e('Activate','Seers-Cookie-Consent-Banner-Privacy-Policy'); ?>"
style="clear: both;"></div>
</div>
<label for="SCCBPP_cookie_consent_id"> <span>Cookie ID</span>&nbsp;
(<?php echo __('To get your Cookie ID click on Activate','Seers-Cookie-Consent-Banner-Privacy-Policy'); ?>)
<input type="text" id="SCCBPP_cookie_consent_id" name="SCCBPP_cookie_consent_id"
class="input-field"
value="<?php esc_html_e(get_option('SCCBPP_cookie_consent_id')); ?>"
readonly>
</label>
<input name="SCCBPP_update_setting" type="hidden"
value="<?php esc_html_e(wp_create_nonce('SCCBPP-cookie-consent')); ?>" />
</fieldset>
</form>
</div>
<div class="seers-content-col tile-style">
<h3 class="title-two">
Powering all your <br>
Privacy &amp; Data Security needs </h3>
<p>Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy compliance tools,
all
<br class="br-none"> designed to take the hassle out of complying with the new data
protection regulations.
</p>
<div class="seers-policies-hol">
<ul>
<li>Policies Pack</li>
<li>Templates Pack</li>
<li>GDPR Staff eTraining</li>
<li>Cookie Consent Management</li>
</ul>
<ul>
<li>DPIA</li>
<li>GDPR Audit</li>
<li>Cyber Secure</li>
<li>Subject Request Management</li>
</ul>
</div> <a href="https://seersco.com" target="_blank" class="btn btn-white-bg">START FREE</a>
</div>
</div>
<div class="seers-plugin-sidebar-cont">
<div class="seers-content-col tile-style">
<h3 class="title-two">
Data Privacy &amp;
Compliance. Solved</h3>
<p>Trust worlds leading privacy and consent management platform to help companies comply
with GDPR, PECR, CCPA and ePrivacy</p> <a href="https://seersco.com/price-plan"
class="btn btn-green-bg">START PREMIUM TODAY</a>
</div>
<div class="seers-content-col tile-style">
<h3 class="title-two">Seers Premium Plan</h3>
<ul class="branding">
<li class="text-white">Branding</li>
<li class="text-white">Multi Lingual</li>
<li class="text-white">Consent Log</li>
<li class="text-white">Cookie Policy</li>
<li class="text-white">Prior Consent</li>
<li class="text-white">6+ Design Layouts</li>
<li class="text-white">Customer Support</li>
<li class="text-white">Banner Customisation</li>
<li class="text-white">Cookie Declaration Table</li>
</ul> <a href="https://seersco.com/price-plan" class="btn btn-green-bg">START PREMIUM
TODAY</a>
</div>
</div>
</div>
</div>
<!--Banner Setting tab-->
<div class="tab2">
<div class="seers-wordpress-plugin-hol seers-tabs-content seers-banner-setting">
<form name="banner_setting" id="banner_setting" method="post">
<!-- BannerSettings-->
<h1>Banner Settings</h1>
<div class="section-setting">
<!------------------------------------------------------->
<!--Banner:-->
<div class="seers-panel seers-mb-30">
<div class="seers-pl"><label class="seers-label">Banner:</label></div>
<div class="seers-pr">
<label class="toggle">
<?php if(get_option('SCCBPP_cookie_consent_is_active')=='true' || get_option('SCCBPP_cookie_consent_is_active')==''){?>
<input class="toggle-checkbox" type="checkbox" name="banner_check"
id="banner_check" checked>
<?php }else{ ?>
<input class="toggle-checkbox" type="checkbox" name="banner_check"
id="banner_check">
<?php } ?>
<div class="toggle-switch"></div>
</label>
</div>
</div>
<!--Banner End-->
<!------------------------------------------------------->
<!--Cookies Expiry:-->
<div class="seers-panel seers-mb-30">
<div class="seers-pl"><label class="seers-label">Cookies Expiry:</label></div>
<div class="seers-pr">
<input style="width: 24%;" class="seers-input" min="1" type="number"
name="cookies_expiry" id="cookies_expiry"
value="<?php if(get_option('SCCBPP_cookie_consent_cookies_expiry')!='') { esc_html_e(get_option('SCCBPP_cookie_consent_cookies_expiry')); }else{ esc_html_e("30"); } ?>">
</div>
</div>
<!--Cookies Expiry End-->
<!------------------------------------------------------->
<!--Language:-->
<div class="seers-panel seers-mb-30">
<div class="seers-pl"><label class="seers-label">Language:</label></div>
<div class="seers-pr">
<select style="width: 24%;" class="seers-input" id="cookies_lang"
name="cookies_lang">
<option value="en" lang="en"
<?php if((get_option('SCCBPP_cookie_consent_lang')=='' || get_option('SCCBPP_cookie_consent_lang')=='en')){ echo "selected"; } ?>
data-continue="Continue" data-installed="1">English (United States)</option>
<option value="ar" lang="ar"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='ar'){ echo "selected"; } ?>
data-continue="المتابعة">العربية</option>
<option value="ary" lang="ar"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='ary'){ echo "selected"; } ?>
data-continue="المتابعة">العربية المغربية</option>
<option value="bg_BG" lang="bg"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='bg_BG'){ echo "selected"; } ?>
data-continue="Напред">Български</option>
<option value="cs_CZ" lang="cs"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='cs_CZ'){ echo "selected"; } ?>
data-continue="Pokračovat">Čeština</option>
<option value="da_DK" lang="da"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='da_DK'){ echo "selected"; } ?>
data-continue="Fortsæt">Dansk</option>
<option value="de_DE_formal" lang="de"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='de_DE_formal'){ echo "selected"; } ?>
data-continue="Weiter">Deutsch (Sie)</option>
<option value="de_CH" lang="de"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='de_CH'){ echo "selected"; } ?>
data-continue="Weiter">Deutsch (Schweiz)</option>
<option value="de_CH_informal" lang="de"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='de_CH_informal'){ echo "selected"; } ?>
data-continue="Weiter">Deutsch (Schweiz, Du)</option>
<option value="de_DE" lang="de"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='de_DE'){ echo "selected"; } ?>
data-continue="Weiter">Deutsch</option>
<option value="de_AT" lang="de"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='de_AT'){ echo "selected"; } ?>
data-continue="Weiter">Deutsch (Österreich)</option>
<option value="el" lang="el"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='el'){ echo "selected"; } ?>
data-continue="Συνέχεια">Ελληνικά</option>
<option value="en_CA" lang="en"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='en_CA'){ echo "selected"; } ?>
data-continue="Continue">English (Canada)</option>
<option value="en_ZA" lang="en"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='en_ZA'){ echo "selected"; } ?>
data-continue="Continue">English (South Africa)</option>
<option value="en_AU" lang="en"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='en_AU'){ echo "selected"; } ?>
data-continue="Continue">English (Australia)</option>
<option value="en_NZ" lang="en"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='en_NZ'){ echo "selected"; } ?>
data-continue="Continue">English (New Zealand)</option>
<option value="en_GB" lang="en"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='en_GB'){ echo "selected"; } ?>
data-continue="Continue">English (UK)</option>
<option value="es_PE" lang="es"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='es_PE'){ echo "selected"; } ?>
data-continue="Continuar">Español de Perú</option>
<option value="es_ES" lang="es"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='es_ES'){ echo "selected"; } ?>
data-continue="Continuar">Español</option>
<option value="es_MX" lang="es"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='es_MX'){ echo "selected"; } ?>
data-continue="Continuar">Español de México</option>
<option value="es_CL" lang="es"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='es_CL'){ echo "selected"; } ?>
data-continue="Continuar">Español de Chile</option>
<option value="es_CO" lang="es"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='es_CO'){ echo "selected"; } ?>
data-continue="Continuar">Español de Colombia</option>
<option value="es_PR" lang="es"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='es_PR'){ echo "selected"; } ?>
data-continue="Continuar">Español de Puerto Rico</option>
<option value="es_UY" lang="es"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='es_UY'){ echo "selected"; } ?>
data-continue="Continuar">Español de Uruguay</option>
<option value="es_GT" lang="es"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='es_GT'){ echo "selected"; } ?>
data-continue="Continuar">Español de Guatemala</option>
<option value="es_AR" lang="es"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='es_AR'){ echo "selected"; } ?>
data-continue="Continuar">Español de Argentina</option>
<option value="es_VE" lang="es"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='es_VE'){ echo "selected"; } ?>
data-continue="Continuar">Español de Venezuela</option>
<option value="es_CR" lang="es"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='es_CR'){ echo "selected"; } ?>
data-continue="Continuar">Español de Costa Rica</option>
<option value="et" lang="et"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='et'){ echo "selected"; } ?>
data-continue="Jätka">Eesti</option>
<option value="eu" lang="eu"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='eu'){ echo "selected"; } ?>
data-continue="Jarraitu">Euskara</option>
<option value="ga" lang="ga"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='ga'){ echo "selected"; } ?>
data-continue="Jarraitu">Irish</option>
<option value="fr_BE" lang="fr"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='fr_BE'){ echo "selected"; } ?>
data-continue="Continuer">Français de Belgique</option>
<option value="fr_CA" lang="fr"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='fr_CA'){ echo "selected"; } ?>
data-continue="Continuer">Français du Canada</option>
<option value="fr_FR" lang="fr"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='fr_FR'){ echo "selected"; } ?>
data-continue="Continuer">Français</option>
<option value="gd" lang="gd"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='gd'){ echo "selected"; } ?>
data-continue="Lean air adhart">Gàidhlig</option>
<option value="hr" lang="hr"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='hr'){ echo "selected"; } ?>
data-continue="Nastavi">Hrvatski</option>
<option value="hu_HU" lang="hu"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='hu_HU'){ echo "selected"; } ?>
data-continue="Folytatás">Magyar</option>
<option value="it_IT" lang="it"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='it_IT'){ echo "selected"; } ?>
data-continue="Continua">Italiano</option>
<option value="lt_LT" lang="lt"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='lt_LT'){ echo "selected"; } ?>
data-continue="Tęsti">Lietuvių kalba</option>
<option value="lv" lang="lv"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='lv'){ echo "selected"; } ?>
data-continue="Turpināt">Latviešu valoda</option>
<option value="pl_PL" lang="pl"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='pl_PL'){ echo "selected"; } ?>
data-continue="Kontynuuj">Polski</option>
<option value="pt_AO" lang="pt"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='pt_AO'){ echo "selected"; } ?>
data-continue="Continuar">Português de Angola</option>
<option value="pt_BR" lang="pt"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='pt_BR'){ echo "selected"; } ?>
data-continue="Continuar">Português do Brasil</option>
<option value="pt_PT" lang="pt"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='pt_PT'){ echo "selected"; } ?>
data-continue="Continuar">Português</option>
<option value="pt_PT_ao90" lang="pt"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='pt_PT_ao90'){ echo "selected"; } ?>
data-continue="Continuar">Português (AO90)</option>
<option value="ro_RO" lang="ro"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='ro_RO'){ echo "selected"; } ?>
data-continue="Continuă">Română</option>
<option value="sk_SK" lang="sk"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='sk_SK'){ echo "selected"; } ?>
data-continue="Pokračovať">Slovenčina</option>
<option value="sl_SI" lang="sl"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='sl_SI'){ echo "selected"; } ?>
data-continue="Nadaljuj">Slovenščina</option>
<option value="sq" lang="sq"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='sq'){ echo "selected"; } ?>
data-continue="Vazhdo">Shqip</option>
<option value="sv_SE" lang="sv"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='sv_SE'){ echo "selected"; } ?>
data-continue="Fortsätt">Svenska</option>
<option value="tr_TR" lang="tr"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='tr_TR'){ echo "selected"; } ?>
data-continue="Devam">Türkçe</option>
<option value="uk" lang="uk"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='uk'){ echo "selected"; } ?>
data-continue="Продовжити">Українська</option>
<option value="zh_CN" lang="zh"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='zh_CN'){ echo "selected"; } ?>
data-continue="继续">简体中文</option>
<option value="zh_TW" lang="zh"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='zh_TW'){ echo "selected"; } ?>
data-continue="繼續">繁體中文</option>
<option value="zh_HK" lang="zh"
<?php if(get_option('SCCBPP_cookie_consent_lang')=='zh_HK'){ echo "selected"; } ?>
data-continue="繼續">香港中文版 </option>
</select>
</div>
</div>
<!--Language: End-->
<!------------------------------------------------------->
<!--Show Badge-->
<div class="seers-panel seers-mb-30">
<div class="seers-pl"><label class="seers-label">Show Badge:</label></div>
<div class="seers-pr">
<label class="toggle">
<?php if(get_option('SCCBPP_cookie_consent_show_badge')=='true' || get_option('SCCBPP_cookie_consent_show_badge')==''){?>
<input class="toggle-checkbox" type="checkbox" name="show_badge" id="show_badge"
checked>
<?php }else{ ?>
<input class="toggle-checkbox" type="checkbox" name="show_badge"
id="show_badge">
<?php } ?>
<div class="toggle-switch"></div>
</label>
</div>
</div>
<!--Show Badge End-->
</div>
<!-- Banner Settings End-->
<!-- Visual Settings-->
<h1>Visual Settings</h1>
<div class="section-setting">
<!--Body:-->
<div class="seers-panel seers-mb-30">
<div class="seers-pl"><label class="seers-label">Banner Text:</label></div>
<div class="seers-color-width">
<div class="color-pick-hol">
<label class="seers-color-label">Colour:</label>
<input type="color" name="body_color" id="body_color"
value="<?php if(get_option('SCCBPP_cookie_consent_body_text_color')!=''){ esc_html_e(get_option('SCCBPP_cookie_consent_body_text_color')); }else{ esc_html_e("#000000"); }?>"
class="seers-banner-custom-color">
</div>
</div>
<div class="seers-pr">
<textarea class="seers-textarea" rows="4" cols="50" name="body_text"
id="body_text"><?php if(get_option('SCCBPP_cookie_consent_body_text')!=''){ esc_html_e(get_option('SCCBPP_cookie_consent_body_text')); }else{ esc_html_e( "We use cookies to ensure you get the best experience");} ?></textarea>
</div>
</div>
<!------------------------------------------------------->
<!--Logo color:-->
<div class="seers-panel seers-mb-30">
<div class="seers-pl"><label class="seers-label">Banner Background</label></div>
<div class="seers-color-width">
<div class="color-pick-hol">
<label class="seers-color-label">Colour:</label>
<input type="color" name="banner_bg_color" id="banner_bg_color"
value="<?php if(get_option('SCCBPP_cookie_consent_banner_bg_color')!=''){ esc_html_e(get_option('SCCBPP_cookie_consent_banner_bg_color')); }else{ echo esc_html_e("#FFFFFF"); }?>"
class="seers-banner-custom-color">
</div>
</div>
</div>
<!--logo color end:-->
<!------------------------------------------------------->
<!--Accept Button:-->
<div class="seers-panel seers-mb-30">
<div class="seers-pl"><label class="seers-label">Accept Button:</label></div>
<div class="seers-color-width">
<div class="color-pick-hol">
<label class="seers-color-label">Text Colour:</label>
<input type="color" name="agree_text_color" id="agree_text_color"
value="<?php if(get_option('SCCBPP_cookie_consent_agree_text_color')!=''){ esc_html_e(get_option('SCCBPP_cookie_consent_agree_text_color')); }else{ echo esc_html_e("#FFFFFF"); }?>"
class="seers-banner-custom-color">
</div>
</div>
<div class="seers-pr">
<div class="color-pick-hol">
<label class="seers-color-label">Button Colour:</label>
<input type="color" name="agree_btn_color" id="agree_btn_color"
value="<?php if(get_option('SCCBPP_cookie_consent_agree_btn_color')!=''){ esc_html_e(get_option('SCCBPP_cookie_consent_agree_btn_color')); }else{ echo "#808080"; }?>"
class="seers-banner-custom-color">
<input class="seers-input btn-input" type="text" name="accept_btn_text"
id="accept_btn_text" placeholder="Allow All"
value="<?php if(get_option('SCCBPP_cookie_consent_accept_btn_text')!=''){ esc_html_e(get_option('SCCBPP_cookie_consent_accept_btn_text')); }else{ echo "Allow All"; }?>">
</div>
<button class="seers-btn" type="button" id="accept_all">Allow All</button>
</div>
</div>
<!--Accept Button:-->
<!------------------------------------------------------->
<!--Reject Button::-->
<div class="seers-panel seers-mb-30">
<div class="seers-pl"><label class="seers-label">Reject Button:</label></div>
<div class="seers-color-width">
<div class="color-pick-hol">
<label class="seers-color-label">Text Colour:</label>
<input type="color" name="disagree_text_color" id="disagree_text_color"
value="<?php if(get_option('SCCBPP_cookie_consent_disagree_text_color')!=''){ esc_html_e(get_option('SCCBPP_cookie_consent_disagree_text_color')); }else{ esc_html_e("#FFFFFF"); }?>"
class="seers-banner-custom-color">
</div>
</div>
<div class="seers-pr">
<div class="color-pick-hol">
<label class="seers-color-label">Button Colour:</label>
<input type="color" name="disagree_btn_color" id="disagree_btn_color"
value="<?php if(get_option('SCCBPP_cookie_consent_disagree_btn_color')!=''){ esc_html_e(get_option('SCCBPP_cookie_consent_disagree_btn_color')); }else{ echo "#808080"; }?>"
class="seers-banner-custom-color">
<input class="seers-input btn-input" type="text" name="reject_btn_text"
id="reject_btn_text" placeholder="Disable All"
value="<?php if(get_option('SCCBPP_cookie_consent_reject_btn_text')!=''){ esc_html_e(get_option('SCCBPP_cookie_consent_reject_btn_text')); }else{ echo "Disable All"; }?>">
</div>
<button class="seers-btn" type="button" id="reject_all">Disable All</button>
</div>
</div>
<!--Reject Button::-->
<!------------------------------------------------------->
<!--banner Settings Button:-->
<div class="seers-panel seers-mb-30">
<div class="seers-pl"><label class="seers-label">Setting Button:</label></div>
<div class="seers-color-width">
<div class="color-pick-hol">
<label class="seers-color-label">Text Colour:</label>
<input type="color" name="preferences_text_color" id="preferences_text_color"
value="<?php if(get_option('SCCBPP_cookie_consent_preferences_text_color')!=''){ esc_html_e(get_option('SCCBPP_cookie_consent_preferences_text_color')); }else{ esc_html_e("#000000"); }?>"
class="seers-banner-custom-color">
</div>
</div>
<div class="seers-pr">
<div class="color-pick-hol">
<div class="seers-empty"></div>
<input class="seers-input btn-input" type="text" name="setting_btn_text"
id="setting_btn_text" placeholder="Setting"
value="<?php if(get_option('SCCBPP_cookie_consent_setting_btn_text')!=''){ esc_html_e(get_option('SCCBPP_cookie_consent_setting_btn_text')); }else{ echo "Setting"; }?>">
</div>
<button class="seers-btn seers-setting-btn" type="button"
id="reject_all">Setting</button>
</div>
</div>
<!--banner Settings End-->
<!------------------------------------------------------->
<!--Fonts-->
<div class="seers-panel seers-mb-30">
<div class="seers-pl"><label class="seers-label">Fonts:</label></div>
<div class="seers-pr">
<select class="seers-input fm" id="seers_fonts_fm" name="seers_fonts_fm">
<option value="arial"
<?php if(get_option('SCCBPP_cookie_consent_font_style')=='arial' || get_option('SCCBPP_cookie_consent_font_style')==''){ echo "selected"; } ?>>
Arial</option>
<option value="cursive"
<?php if(get_option('SCCBPP_cookie_consent_font_style')=='cursive'){ echo "selected"; } ?>>
Cursive</option>
<option value="fantasy"
<?php if(get_option('SCCBPP_cookie_consent_font_style')=='fantasy'){ echo "selected"; } ?>>
Fantasy</option>
<option value="monospace"
<?php if(get_option('SCCBPP_cookie_consent_font_style')=='monospace'){ echo "selected"; } ?>>
Monospace</option>
<option value="sans-serif"
<?php if(get_option('SCCBPP_cookie_consent_font_style')=='sans-serif'){ echo "selected"; } ?>>
Sans Serif</option>
<option value="serif"
<?php if(get_option('SCCBPP_cookie_consent_font_style')=='serif'){ echo "selected"; } ?>>
Serif</option>
<option value="none"
<?php if(get_option('SCCBPP_cookie_consent_font_style')=='none'){ echo "selected"; } ?>>
None</option>
<option value="inherit"
<?php if(get_option('SCCBPP_cookie_consent_font_style')=='inherit'){ echo "selected"; } ?>>
Default</option>
</select>
<select class="seers-input fs" id="seers_fonts_fs" name="seers_fonts_fs">
<option value="8"
<?php if(get_option('SCCBPP_cookie_consent_font_size')=='8'){ echo "selected"; } ?>>
8</option>
<option value="10"
<?php if(get_option('SCCBPP_cookie_consent_font_size')=='10'){ echo "selected"; } ?>>
10</option>
<option value="12"
<?php if(get_option('SCCBPP_cookie_consent_font_size')=='12' || get_option('SCCBPP_cookie_consent_font_size')==''){ echo "selected"; } ?>>
12</option>
<option value="14"
<?php if(get_option('SCCBPP_cookie_consent_font_size')=='14'){ echo "selected"; } ?>>
14</option>
<option value="16"
<?php if(get_option('SCCBPP_cookie_consent_font_size')=='16'){ echo "selected"; } ?>>
16</option>
</select>
</div>
</div>
<!--Fonts End-->
<!------------------------------------------------------->
<!--Select Button-->
<div class="seers-panel seers-mb-30">
<div class="seers-pl"><label class="seers-label">Select Button:</label></div>
<div class="seers-pr btn-group" role="group">
<button
class="seers-select-btn btn-default <?php if(get_option('SCCBPP_cookie_consent_button_type')=='cbtn_default'){ echo "active"; }?>"
type="button" id="cbtn_default">Default</button>
<button
class="seers-select-btn btn-flat <?php if(get_option('SCCBPP_cookie_consent_button_type')=='cbtn_flat'){ echo "active"; }?>"
type="button" id="cbtn_flat">Flat</button>
<button
class="seers-select-btn btn-round <?php if(get_option('SCCBPP_cookie_consent_button_type')=='cbtn_rounded'){ echo "active"; }?>"
type="button" id="cbtn_rounded">Rounded</button>
<button
class="seers-select-btn btn-stroke <?php if(get_option('SCCBPP_cookie_consent_button_type')=='cbtn_stroke'){ echo "active"; }?>"
type="button" id="cbtn_stroke">Stroke</button>
</div>
</div>
<!--Select Button End-->
<!------------------------------------------------------->
<!--Preview buttons-->
<div class="seers-panel seers-mb-30">
<div class="seers-pl"></div>
<div class="seers-pr ">
<p id="setting_message_success"></p>
<p id="setting_message_error"></p>
<div id="loader"></div>
<div class="seers_btn_div">
<a href="<?php echo $D_URL; ?>" target="_blank"
class="seers-btn-preview s-save">PREVIEW</a>
<button class="seers-btn-preview" type="button" id="setting_save">SAVE</button>
</div>
</div>
</div>
<!--Preview buttons End-->
</div>
<!-- Visual Settings End-->
</form>
</div>
</div>
<!--Banner Setting tab End-->
<!--Policy -->
<div class="tab3">
<form name="policy" id="policy" method="post">
<div class="seers-wordpress-plugin-hol seers-tabs-content seers-banner-setting">
<div class="section-setting policysetting">
<p class="seers-notification">Please create cookies policy page and enter URL below.</p>
<p id="policy_message_success"></p>
<p id="policy_message_error"></p>
<div class="seers-panel seers-mb-30">
<div class="seers-pl"><label class="seers-label">Enable Policy:</label></div>
<div class="seers-pr">
<label class="toggle">
<?php if(get_option('SCCBPP_cookie_consent_enable_policy')=='true' || get_option('SCCBPP_cookie_consent_enable_policy')== true){?>
<input class="toggle-checkbox" type="checkbox" name="enable_policy"
id="enable_policy" checked>
<?php }else{ ?>
<input class="toggle-checkbox" type="checkbox" name="enable_policy"
id="enable_policy">
<?php } ?>
<div class="toggle-switch"></div>
</label>
</div>
</div>
<div class="seers-panel seers-mb-30" id="show-cookie-policy-url">
<div class="seers-pp"><label style="margin-top:0px !important;"
class="seers-label">Cookie Policy and declaration URL:</label></div>
<div class="seers-pr">
<input style="width:40% !important" class="seers-input" type="text"
name="cookies_url" id="cookies_url" placeholder="Policy URL"
value="<?php esc_html_e(get_option('SCCBPP_cookie_consent_policy_declaration_url')); ?>">
</div>
</div>
<div class="seers-panel seers-mb-30" id="show-save-button">
<div class="seers-pp"><label class="seers-label"></label></div>
<div class="seers-pr">
<button class="seers-btn-preview" id="cookie_policy" type="button">Save</button>
</div>
</div>
</div>
</div>
</form>
</div>
<!--Policy End-->
<!--User Guide -->
<div class="tab4">
<div class="seers-wordpress-plugin-hol seers-tabs-content seers-banner-setting">
<div class="video-main-hol">
<div class="videobox">
<iframe width="100%" height="271" src="https://youtube.com/embed/_IDgrcHu3jc"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h3>How to <span class="colorblue">activate plugin</span></h3>
</div>
<div class="videobox">
<iframe width="100%" height="271" src="https://www.youtube.com/embed/9yvyAZtHf34"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h3>How to <span class="colorblue">upgrade your package</h3>
</div>
<div class="videobox">
<iframe width="100%" height="271" src="https://youtube.com/embed/c2NpWIVYEhE"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h3>How to <span class="colorblue">change banner settings</h3>
</div>
</div>
<div class="documentation">
<p>For more resources you can visit</p>
<button style="width: auto !important;" class="seers-btn-preview" type="button"> DOCUMENTATION
</button>
</div>
</div>
</div>
<!--User Guide End-->
</section>
</div>
</div>
<!--tabs end-->
<script type="text/javascript">
(function() {
if (document.getElementById('enable_policy').checked == false) {
document.getElementById('show-cookie-policy-url').style.display = "none";
}
let numberGroup = document.querySelectorAll(".number");
numberGroupfunc = function() {
let pass = false;
[].map.call(numberGroup, function(elem) {
if (elem.checked == false) {
pass = true;
}
});
if (pass) {
document.getElementById('SCCBPP_cookieid').disabled = true;
} else {
document.getElementById('SCCBPP_cookieid').disabled = false;
}
};
[].map.call(numberGroup, function(elem) {
elem.addEventListener("click", numberGroupfunc, false);
});
document.getElementById('enable_policy').addEventListener('change', function() {
if (document.getElementById('enable_policy').checked == true) {
document.getElementById('show-cookie-policy-url').style.display = "block";
document.getElementById('enable_policy').checked = true;
} else {
document.getElementById('show-cookie-policy-url').style.display = "none";
document.getElementById('enable_policy').checked = false;
}
});
document.getElementById('cookie_policy').addEventListener('click', function(e) {
e.preventDefault();
var enable_policy = document.getElementById('enable_policy').value;
var cookies_url = document.getElementById('cookies_url').value;
if (document.getElementById('enable_policy').checked == true) {
enable_policy = 'true';
} else {
enable_policy = 'false';
}
var params = "action=cookies_policy&enable_policy=" + enable_policy + "&cookies_url=" + cookies_url;
httpRequest = new XMLHttpRequest()
httpRequest.open('POST', ajaxurl)
httpRequest.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
httpRequest.send(params);
httpRequest.onreadystatechange = function() {
// Process the server response here.
if (httpRequest.readyState === XMLHttpRequest.DONE) {
if (httpRequest.status === 200) {
document.getElementById('policy_message_success').innerHTML = httpRequest
.responseText;
} else {
document.getElementById('policy_message_error').innerHTML = httpRequest
.responseText;
}
}
}
});
})();
/********** Tabs3 Ajax Response ***************/
/*********** Tabs2 Post Ajax response. **************/
//$('#loader').hide();
document.getElementById('loader').style.display = "none";
// document.getElementById('setting_save.setAttribute("disabled", "true");
document.getElementById("setting_save").addEventListener('click', function(e) {
e.preventDefault();
var bannerVal = '';
var show_badge = '';
if (document.getElementById('banner_check').checked) {
bannerVal = 'true';
} else {
bannerVal = 'false';
}
if (document.getElementById('show_badge').checked) {
show_badge = 'true';
} else {
show_badge = 'false';
}
let selectedBtnVal = document.getElementsByClassName("active");
if (selectedBtnVal.length > 0) {
selectedBtnVal = selectedBtnVal[0].getAttribute("id");
} else {
selectedBtnVal = null
}
var params = "action=cookies_setting&banners=" + bannerVal + "&cookies_expiry=" + document.getElementById(
'cookies_expiry').value + "&cookies_lang=" + document.getElementById('cookies_lang').value +
"&show_badge=" + show_badge + "&banner_bg_color=" + document.getElementById('banner_bg_color').value +
"&body_color=" + document.getElementById('body_color').value + "&body_text=" + document.getElementById(
'body_text').value + "&agree_btn_color=" + document.getElementById('agree_btn_color').value +
"&agree_text_color=" + document.getElementById('agree_text_color').value + "&accept_btn_text=" +
document.getElementById('accept_btn_text').value + "&disagree_text_color=" + document.getElementById(
'disagree_text_color').value + "&disagree_btn_color=" + document.getElementById(
'disagree_btn_color').value + "&reject_btn_text=" + document.getElementById('reject_btn_text')
.value + "&preferences_text_color=" + document
.getElementById('preferences_text_color').value + "&setting_btn_text=" + document.getElementById(
'setting_btn_text').value + "&seers_fonts_fm=" + document.getElementById('seers_fonts_fm').value +
"&seers_fonts_fs=" + document.getElementById('seers_fonts_fs').value + "&selectedBtn=" + selectedBtnVal;
httpRequest = new XMLHttpRequest()
httpRequest.open('POST', ajaxurl)
httpRequest.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
httpRequest.send(params);
// beforeSend:
document.getElementById('loader').style.display = "block";
document.getElementById('setting_save').disabled = true;
httpRequest.onreadystatechange = function() {
// Process the server response here.
if (httpRequest.readyState === XMLHttpRequest.DONE) {
// complete:
document.getElementById('loader').style.display = "none";
document.getElementById('setting_save').disabled = false;
let data = JSON.parse(httpRequest.response)
if (httpRequest.status === 200) {
document.getElementById('setting_message_success').innerHTML = data.resp_message;
document.getElementById('accept_btn_text').value = data.accept_btn_text;
document.getElementById('reject_btn_text').value = data.reject_btn_text;
document.getElementById('setting_btn_text').value = data.setting_btn_text;
document.getElementById('body_text').innerHTML = data.bodyText;
document.getElementById('setting_save').disabled = false;
} else {
document.getElementById('setting_message_error').innerHTML = data.resp_message;
}
}
}
});
/*** Prefrence Button actions End ***/
let btnGroup = document.querySelectorAll(".btn-group button")
btnGroupfunc = function() {
[].map.call(btnGroup, function(elem) {
elem.classList.remove("active")
});
this.classList.add("active");
};
[].map.call(btnGroup, function(elem) {
elem.addEventListener("click", btnGroupfunc, false);
});
</script>
<?php
if (isset($_POST['SCCBPP_cookieid'])) {
if (!isset($_POST['SCCBPP_update_setting']) || !wp_verify_nonce(sanitize_text_field($_POST['SCCBPP_update_setting']), 'SCCBPP-cookie-consent')) {
echo 'Sorry, your nonce did not verify.';
return;
}
if (isset($_POST['SCCBPP_cookie_consent_email'])) {
$cookieEmail = sanitize_text_field($_POST['SCCBPP_cookie_consent_email']);
update_option('SCCBPP_cookie_consent_email', $cookieEmail);
}
if (isset($_POST['SCCBPP_cookie_consent_url'])) {
$cookieurl = sanitize_text_field($_POST['SCCBPP_cookie_consent_url']);
update_option('SCCBPP_cookie_consent_url', $cookieurl);
}
return;
}

1274
css/cookie-style.css Normal file

File diff suppressed because it is too large Load Diff

181
css/popup.css Normal file
View File

@ -0,0 +1,181 @@
.modalDialog {
position: fixed;
font-family: Arial, Helvetica, sans-serif;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: rgba(0, 0, 0, 0.8);
z-index: 99999;
opacity: 1;
-webkit-transition: opacity 400ms ease-in;
-moz-transition: opacity 400ms ease-in;
transition: opacity 400ms ease-in;
pointer-events: auto;
}
.modalDialog:target {
opacity: 0;
pointer-events: none;
}
.modalDialog .modal-body {
width: 500px !important;
position: relative;
margin: 3% auto;
padding: 5px 20px 13px 20px;
background: #fff;
border-radius: 4px;
-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
-moz-box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
}
.modalDialog .modal-body .close {
background: #007cba;
color: #FFFFFF;
line-height: 25px;
position: absolute;
right: -10px;
text-align: center;
top: -10px;
width: 30px;
height: 30px;
text-decoration: none;
font-weight: bold;
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
border-radius: 12px;
-moz-box-shadow: 1px 1px 3px #000;
-webkit-box-shadow: 1px 1px 3px #000;
box-shadow: 1px 1px 3px #000;
border-radius: 100%;
font-size: 25px;
font-weight: normal;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: -moz-box;
display: -moz-flex;
display: flex;
-webkit-box-align: center;
-moz-box-align: center;
-webkit-box-pack: center;
-moz-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
-moz-justify-content: center;
-ms-justify-content: center;
justify-content: center;
-webkit-box-align: center;
-moz-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
-moz-flex-align: center;
-ms-flex-align: center;
align-items: center;
}
.modal-body p{
border-bottom:1px solid #c0c0c0;
padding-bottom: 10px;
font-size: 14px;
font-weight: 600;
}
.close:hover {
background: #00d9ff;
}
.modal-body form input[type="radio"]{
margin: 0 0 15px 0;
}
.modal-body form .btn-hol{
display: flex;
justify-content: center;
align-items: center;
margin:0 -7.5px;
}
.modal-body form input.submit-skip{
background: #306bf9;
border-radius: 4px;
color: #fff;
font-size: 13px;
padding: 10px;
white-space: nowrap;
flex-basis: 20%;
margin: 7.5px;
font-weight: 500;
display: block;
text-align: center;
text-decoration: none;
transition: all .3s ease;
border: 0 !important;
cursor:pointer;
}
.modal-body form a.submit-skip{
background: #ccc;
border-radius: 4px;
color: #000;
font-size: 13px;
padding: 10px;
white-space: nowrap;
flex-basis: 20%;
margin: 7.5px;
font-weight: 500;
display: block;
text-align: center;
text-decoration: none;
transition: all .3s ease;
border: 0 !important;
}
.modal-body form input.submit-skip:focus {
outline: 0 !important;
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #007cba;
-webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 3px #007cba;
-moz-box-shadow: 0 0 0 1px #fff, 0 0 0 3px #007cba;
-ms-box-shadow: 0 0 0 1px #fff, 0 0 0 3px #007cba;
-o-box-shadow: 0 0 0 1px #fff, 0 0 0 3px #007cba;
}
.modal-body form a.submit-skip:focus {
outline: 0 !important;
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #007cba;
-webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 3px #007cba;
-moz-box-shadow: 0 0 0 1px #fff, 0 0 0 3px #007cba;
-ms-box-shadow: 0 0 0 1px #fff, 0 0 0 3px #007cba;
-o-box-shadow: 0 0 0 1px #fff, 0 0 0 3px #007cba;
}
.modal-title{
margin-bottom:0px !important;
}
.form-group{
font-size:12px;
}
.form-group span{
position: relative;
display: inline-block;
top: -2px;
}
.full-width-textarea{
width: 95%;
margin-left: 5%;
}
.bottom-margin{
margin-bottom: 10px;
}
.skipbtn input{
background: #fff !important;
color: #cccccc !important;
justify-content: end;
display: block;
float: left;
position: relative;
top: -7px;
padding: 0px !important;
font-size: 11px;
}

45
images/----seers-logo.svg Normal file
View File

@ -0,0 +1,45 @@
<svg xmlns="http://www.w3.org/2000/svg" width="244" height="36" viewBox="0 0 244 36">
<g id="Group_64" data-name="Group 64" transform="translate(-203 -56)">
<g id="Group_3141" data-name="Group 3141" transform="translate(203 56)">
<g id="Group_3140" data-name="Group 3140" transform="translate(47.424 6.16)">
<path id="Path_12051" data-name="Path 12051" d="M300.087,90.647h5.683s5.112.123,4.619-4.571-6.515-5.187-9.579-3.673-4.165,6.815-2.839,10.412,3.521,4.581,7.421,4.505A10.36,10.36,0,0,0,309.859,96l-.908-2.082S301.673,97.869,300.087,90.647ZM306,84.258a2.879,2.879,0,0,1,1.663,2.234,1.575,1.575,0,0,1-1.478,1.855h-5.907s.645-5.793,5.719-4.089Z" transform="translate(-280.946 -75.854)" fill="#292929"/>
<path id="Path_12052" data-name="Path 12052" d="M375.535,90.647h5.683s5.112.123,4.619-4.571-6.512-5.187-9.579-3.673-4.165,6.815-2.839,10.412,3.521,4.581,7.421,4.505A10.357,10.357,0,0,0,385.307,96l-.908-2.082S377.122,97.869,375.535,90.647Zm5.913-6.388a2.879,2.879,0,0,1,1.663,2.234,1.576,1.576,0,0,1-1.478,1.855h-5.907s.645-5.793,5.722-4.089Z" transform="translate(-340.845 -75.854)" fill="#292929"/>
<path id="Path_12053" data-name="Path 12053" d="M453.814,83.964s4.342-3.383,9.34-1.767l-.4,2.222s-2.525-1.06-6.008.959V97.142h-2.928Z" transform="translate(-405.112 -75.952)" fill="#292929"/>
<g id="Group_3139" data-name="Group 3139" transform="translate(1.109 23.254)">
<path id="Path_12054" data-name="Path 12054" d="M222.876,167.259h1.686a1.6,1.6,0,0,1,1.038.285,1.1,1.1,0,0,1,.346.9,1.3,1.3,0,0,1-.152.682,1.028,1.028,0,0,1-.447.386,1.047,1.047,0,0,1,.739,1.1,1.223,1.223,0,0,1-.37,1,1.649,1.649,0,0,1-1.069.3h-1.774Zm1.667.456h-1.149v1.606h1.2a.84.84,0,0,0,.628-.205.857.857,0,0,0,.2-.616.755.755,0,0,0-.212-.6.99.99,0,0,0-.662-.189Zm.054,2.057h-1.2v1.68h1.236a1.091,1.091,0,0,0,.7-.192.823.823,0,0,0,.238-.678.874.874,0,0,0-.1-.431.567.567,0,0,0-.259-.246,1.461,1.461,0,0,0-.611-.133Z" transform="translate(-222.875 -167.084)" fill="#868686"/>
<path id="Path_12055" data-name="Path 12055" d="M244.247,176.2l.195-.02.014.4a9.638,9.638,0,0,1-1.311.107,1.181,1.181,0,0,1-1.028-.42,2.255,2.255,0,0,1-.3-1.307q0-1.767,1.4-1.767a1.285,1.285,0,0,1,1.015.38,1.768,1.768,0,0,1,.336,1.192l-.026.383h-2.217a1.377,1.377,0,0,0,.2.827.824.824,0,0,0,.7.269Q243.729,176.243,244.247,176.2Zm-.182-1.458a1.462,1.462,0,0,0-.2-.874.767.767,0,0,0-.645-.255.827.827,0,0,0-.672.269,1.355,1.355,0,0,0-.232.862Z" transform="translate(-237.91 -171.795)" fill="#868686"/>
<path id="Path_12056" data-name="Path 12056" d="M268.732,171.577a6.281,6.281,0,0,1-1.243.141,2.211,2.211,0,0,1-.89-.151,1.114,1.114,0,0,1-.524-.471,2.18,2.18,0,0,1-.256-.732,6.266,6.266,0,0,1-.071-1.032,6.4,6.4,0,0,1,.071-1.038,2.218,2.218,0,0,1,.256-.743,1.1,1.1,0,0,1,.521-.471,2.189,2.189,0,0,1,.873-.148,6.453,6.453,0,0,1,1.263.148l-.02.437a6.982,6.982,0,0,0-1.21-.123,1.01,1.01,0,0,0-.977.44,3.394,3.394,0,0,0-.238,1.5,6.61,6.61,0,0,0,.044.854,1.87,1.87,0,0,0,.171.581.757.757,0,0,0,.373.37,1.81,1.81,0,0,0,.719.111,6.212,6.212,0,0,0,1.118-.123Z" transform="translate(-256.913 -166.827)" fill="#040505"/>
<path id="Path_12057" data-name="Path 12057" d="M282.862,174.936a2.132,2.132,0,0,1,.329-1.33,1.709,1.709,0,0,1,2.221,0,2.148,2.148,0,0,1,.326,1.33,2.272,2.272,0,0,1-.308,1.337,1.739,1.739,0,0,1-2.258,0A2.272,2.272,0,0,1,282.862,174.936Zm.517-.01a2.14,2.14,0,0,0,.178,1.032,1.089,1.089,0,0,0,1.488,0,2.164,2.164,0,0,0,.174-1.032,1.891,1.891,0,0,0-.195-1.018.824.824,0,0,0-.722-.279.833.833,0,0,0-.726.279,1.858,1.858,0,0,0-.2,1.013Z" transform="translate(-270.498 -171.798)" fill="#040505"/>
<path id="Path_12058" data-name="Path 12058" d="M301.3,176.615h-.5v-3.362h.5v.235a1.9,1.9,0,0,1,.981-.3,1.009,1.009,0,0,1,.873.342,2.481,2.481,0,0,1,.575-.238,2.236,2.236,0,0,1,.621-.1,1,1,0,0,1,.9.36,2.56,2.56,0,0,1,.232,1.293v1.774h-.5v-1.758a2.325,2.325,0,0,0-.134-.958.583.583,0,0,0-.572-.259,1.738,1.738,0,0,0-.457.062,2.309,2.309,0,0,0-.363.123l-.127.062a3.368,3.368,0,0,1,.087.981v1.747h-.5v-1.734a2.472,2.472,0,0,0-.131-.985.581.581,0,0,0-.575-.259,1.6,1.6,0,0,0-.44.062,2.1,2.1,0,0,0-.346.123l-.114.062Z" transform="translate(-284.74 -171.791)" fill="#040505"/>
<path id="Path_12059" data-name="Path 12059" d="M328.057,178.11v-4.854h.5v.241a1.936,1.936,0,0,1,1.008-.308,1.059,1.059,0,0,1,.928.407,2.376,2.376,0,0,1,.289,1.341,2.094,2.094,0,0,1-.339,1.34,1.391,1.391,0,0,1-1.126.406,3.571,3.571,0,0,1-.753-.074v1.5Zm1.431-4.469a1.567,1.567,0,0,0-.431.067,2.264,2.264,0,0,0-.366.134l-.128.067v2.265a5.148,5.148,0,0,0,.726.074.87.87,0,0,0,.763-.308,1.786,1.786,0,0,0,.218-1.008,1.863,1.863,0,0,0-.2-.995A.655.655,0,0,0,329.488,173.642Z" transform="translate(-306.38 -171.794)" fill="#040505"/>
<path id="Path_12060" data-name="Path 12060" d="M345.435,171.238v-4.824h.5v4.824Z" transform="translate(-320.177 -166.414)" fill="#040505"/>
<path id="Path_12061" data-name="Path 12061" d="M352.77,167.585V167h.5v.585Zm0,4.119v-3.36h.5v3.36Z" transform="translate(-326 -166.879)" fill="#040505"/>
<path id="Path_12062" data-name="Path 12062" d="M361.451,174.266v1.72q.02.246.389.3l-.02.4a1.085,1.085,0,0,1-.8-.269,2.956,2.956,0,0,1-1.21.269.913.913,0,0,1-.705-.262,1.071,1.071,0,0,1-.242-.753.944.944,0,0,1,.246-.722,1.318,1.318,0,0,1,.779-.286l1.055-.1v-.289a.677.677,0,0,0-.148-.493.544.544,0,0,0-.4-.148,9.67,9.67,0,0,0-1.115.067l-.208.02-.02-.383a6.777,6.777,0,0,1,1.311-.148.937.937,0,0,1,1.088,1.082Zm-2.069,1.371q0,.616.511.616a2.719,2.719,0,0,0,.9-.152l.155-.054v-1.109l-.995.094a.648.648,0,0,0-.437.175.616.616,0,0,0-.135.429Z" transform="translate(-330.838 -171.786)" fill="#040505"/>
<path id="Path_12063" data-name="Path 12063" d="M376.749,176.615h-.5v-3.362h.5v.235a2.148,2.148,0,0,1,1.042-.3.993.993,0,0,1,.9.363,2.566,2.566,0,0,1,.232,1.29v1.774h-.5v-1.758a2.274,2.274,0,0,0-.138-.958.605.605,0,0,0-.588-.259,1.75,1.75,0,0,0-.453.062,2.287,2.287,0,0,0-.366.123l-.128.062Z" transform="translate(-344.637 -171.791)" fill="#040505"/>
<path id="Path_12064" data-name="Path 12064" d="M394.228,170h-1.066V171.6a2.171,2.171,0,0,0,.084.759q.084.182.4.182l.6-.041.033.417a4.6,4.6,0,0,1-.686.074.878.878,0,0,1-.726-.256,1.663,1.663,0,0,1-.2-.974V170h-.477v-.438h.477v-1.028h.5v1.028h1.066Z" transform="translate(-357.294 -168.096)" fill="#040505"/>
<path id="Path_12065" data-name="Path 12065" d="M403.86,187.88l.308-1.545h.557l-.45,1.545Z" transform="translate(-366.561 -182.229)" fill="#040505"/>
<path id="Path_12066" data-name="Path 12066" d="M419.967,167.259h1.686a1.6,1.6,0,0,1,1.038.285,1.1,1.1,0,0,1,.346.9,1.3,1.3,0,0,1-.151.682,1.028,1.028,0,0,1-.447.386,1.047,1.047,0,0,1,.739,1.1,1.223,1.223,0,0,1-.37,1,1.65,1.65,0,0,1-1.069.3h-1.774Zm1.666.456h-1.149v1.606h1.2a.841.841,0,0,0,.628-.205.857.857,0,0,0,.2-.616.755.755,0,0,0-.212-.6.99.99,0,0,0-.662-.189Zm.054,2.057h-1.2v1.68h1.236a1.092,1.092,0,0,0,.7-.192.823.823,0,0,0,.239-.678.872.872,0,0,0-.1-.431.566.566,0,0,0-.259-.246,1.462,1.462,0,0,0-.611-.133Z" transform="translate(-379.349 -167.084)" fill="#6b6b6b"/>
<path id="Path_12067" data-name="Path 12067" d="M441.338,176.2l.2-.02.014.4a9.64,9.64,0,0,1-1.31.107,1.181,1.181,0,0,1-1.028-.42,2.253,2.253,0,0,1-.3-1.307q0-1.767,1.4-1.767a1.284,1.284,0,0,1,1.014.38,1.768,1.768,0,0,1,.336,1.192l-.027.383h-2.217a1.377,1.377,0,0,0,.2.827.824.824,0,0,0,.7.269Q440.82,176.243,441.338,176.2Zm-.181-1.458a1.46,1.46,0,0,0-.2-.874.767.767,0,0,0-.645-.255.827.827,0,0,0-.672.269,1.355,1.355,0,0,0-.232.862Z" transform="translate(-394.384 -171.795)" fill="#6b6b6b"/>
<path id="Path_12068" data-name="Path 12068" d="M464.007,167.363q-1.008,0-1.008.759a.655.655,0,0,0,.232.581,3.087,3.087,0,0,0,.94.315,2.394,2.394,0,0,1,1,.41,1.036,1.036,0,0,1,.3.83q0,1.431-1.485,1.431a8.3,8.3,0,0,1-1.232-.114l-.242-.034.054-.431a11.547,11.547,0,0,0,1.391.123q.995,0,.995-.934a.634.634,0,0,0-.219-.541,2.121,2.121,0,0,0-.816-.278,2.75,2.75,0,0,1-1.115-.431,1.081,1.081,0,0,1-.33-.89q0-1.25,1.5-1.25a8.235,8.235,0,0,1,1.176.1l.228.034-.047.437a12.636,12.636,0,0,0-1.32-.12Z" transform="translate(-413.096 -166.805)" fill="#040505"/>
<path id="Path_12069" data-name="Path 12069" d="M482.647,176.2l.2-.02.014.4a9.634,9.634,0,0,1-1.31.107,1.181,1.181,0,0,1-1.029-.42,2.257,2.257,0,0,1-.3-1.307q0-1.767,1.4-1.767a1.285,1.285,0,0,1,1.015.38,1.768,1.768,0,0,1,.336,1.192l-.027.383h-2.217a1.376,1.376,0,0,0,.2.827.823.823,0,0,0,.7.269Q482.13,176.243,482.647,176.2Zm-.181-1.458a1.46,1.46,0,0,0-.2-.874.767.767,0,0,0-.645-.255.826.826,0,0,0-.672.269,1.355,1.355,0,0,0-.232.862Z" transform="translate(-427.18 -171.795)" fill="#040505"/>
<path id="Path_12070" data-name="Path 12070" d="M498.107,173.2a5.8,5.8,0,0,1,.753.081l.161.02-.02.41a7.865,7.865,0,0,0-.793-.062.924.924,0,0,0-.776.272,1.771,1.771,0,0,0-.205,1.008,1.971,1.971,0,0,0,.191,1.025.9.9,0,0,0,.8.289l.793-.062.02.416a6.91,6.91,0,0,1-.934.094,1.273,1.273,0,0,1-1.085-.4,2.346,2.346,0,0,1-.3-1.361,2.13,2.13,0,0,1,.323-1.344A1.328,1.328,0,0,1,498.107,173.2Z" transform="translate(-440.274 -171.795)" fill="#040505"/>
<path id="Path_12071" data-name="Path 12071" d="M513.576,173.522h.5v3.36h-.5v-.235a1.923,1.923,0,0,1-.994.3,1,1,0,0,1-.91-.356,2.678,2.678,0,0,1-.225-1.317v-1.754h.5v1.747a2.474,2.474,0,0,0,.128.981q.128.246.578.246a1.663,1.663,0,0,0,.45-.062,2.061,2.061,0,0,0,.349-.123l.123-.062Z" transform="translate(-451.974 -172.057)" fill="#040505"/>
<path id="Path_12072" data-name="Path 12072" d="M528.929,176.6v-3.36h.5v.457a3.275,3.275,0,0,1,1.232-.531v.511a3.622,3.622,0,0,0-.588.168,3.886,3.886,0,0,0-.467.2l-.168.087v2.464Z" transform="translate(-465.856 -171.772)" fill="#040505"/>
<path id="Path_12073" data-name="Path 12073" d="M541.594,176.2l.195-.02.014.4a9.63,9.63,0,0,1-1.31.107,1.18,1.18,0,0,1-1.028-.42,2.255,2.255,0,0,1-.3-1.307q0-1.767,1.4-1.767a1.284,1.284,0,0,1,1.014.38,1.768,1.768,0,0,1,.336,1.192l-.027.383h-2.214a1.379,1.379,0,0,0,.2.827.824.824,0,0,0,.7.269Q541.077,176.243,541.594,176.2Zm-.181-1.458a1.461,1.461,0,0,0-.2-.874.767.767,0,0,0-.646-.255.827.827,0,0,0-.672.269,1.355,1.355,0,0,0-.232.862Z" transform="translate(-473.979 -171.795)" fill="#040505"/>
</g>
<path id="Path_12074" data-name="Path 12074" d="M223.468,64.826c2.407.6,5.174,2.118,5,4.389s-2.306,4.967-10.005,1.636l-.961,2.171a11.907,11.907,0,0,0,9.9,1.5c5.345-1.478,5.49-9.276-.038-11.018-2.842-.9-4.842-1.532-5.679-2.537a2.991,2.991,0,0,1,.378-4.054c1.792-1.338,6.265-.548,7.628.436l.985-2.094s-9.138-4.24-11.791.753C218.886,56,215.35,62.793,223.468,64.826Z" transform="translate(-217.5 -53.573)" fill="#292929"/>
<path id="Path_12075" data-name="Path 12075" d="M510.246,90.627c1.773.444,3.809,1.559,3.68,3.231s-1.7,3.657-7.365,1.2l-.706,1.6a8.767,8.767,0,0,0,7.291,1.1c3.935-1.09,4.042-6.829-.028-8.112-2.094-.659-3.565-1.128-4.181-1.867a2.2,2.2,0,0,1,.278-2.985c1.319-.985,4.612-.4,5.615.322l.725-1.54s-6.728-3.121-8.681.554C506.873,84.131,504.269,89.129,510.246,90.627Z" transform="translate(-446.426 -76.413)" fill="#292929"/>
</g>
<g id="seers-owl" transform="translate(0)">
<path id="Path_1" data-name="Path 1" d="M-793.042,530.058a9.259,9.259,0,0,1,2.19-5.993,10.892,10.892,0,0,1-2.8-2.026c-7.96-8.514-1.224-16.585-1.224-16.585-4.4,1.895-8.684,7.514-8.684,7.514a11.363,11.363,0,0,0,1.336,5.511c-1.837.056-2.839-2.616-2.839-2.616a38.139,38.139,0,0,0-1,4.008,12.59,12.59,0,0,0,2.95,3.34,2.577,2.577,0,0,1-3.173-.946,24.414,24.414,0,0,0,.334,3.952c.278.946,2.561,3.009,2.561,3.009a2.379,2.379,0,0,1-1.559.056,18.714,18.714,0,0,0,4.4,6.624,15.809,15.809,0,0,0,8.3-2.105A9.258,9.258,0,0,1-793.042,530.058Z" transform="translate(806.325 -505.454)" fill="#3b6ef8"/>
<path id="Path_2" data-name="Path 2" d="M-734.159,564.477s-6.29-4.008-12.024.334c0,0,3.9,3.507,5.01,6.457a4.311,4.311,0,0,0,1.167,3.561,4.188,4.188,0,0,0,.946-3.674S-736.943,566.647-734.159,564.477Z" transform="translate(762.75 -546.996)" fill="#3b6ef8"/>
<circle id="Ellipse_1" data-name="Ellipse 1" cx="0.779" cy="0.779" r="0.779" transform="translate(18.042 23.269)" fill="#3b6ef8"/>
<circle id="Ellipse_2" data-name="Ellipse 2" cx="0.779" cy="0.779" r="0.779" transform="translate(25.807 23.269)" fill="#3b6ef8"/>
<path id="Path_3" data-name="Path 3" d="M-701.876,541.163a16.505,16.505,0,0,0,3.4-5.288s-.946-5.455-3.674-8.8c0,0,1,7.348-4.732,11.523l.154.17a9.3,9.3,0,0,1,.789,13.123,9.3,9.3,0,0,1-2.594,2.042l.761.807a19.283,19.283,0,0,0,9.3-15.2S-699.815,541.886-701.876,541.163Z" transform="translate(735.475 -521.122)" fill="#3b6ef8"/>
<path id="Path_4" data-name="Path 4" d="M-768.575,613.893a9.3,9.3,0,0,1-8.514-5.56,15.443,15.443,0,0,1-8.3,2.109,19.262,19.262,0,0,0,21.932,3.173l-.761-.807A9.254,9.254,0,0,1-768.575,613.893Z" transform="translate(791.154 -579.993)" fill="#3cd08c"/>
</g>
</g>
<text id="WP_Plugin" data-name="WP Plugin" transform="translate(327 86)" fill="#010101" font-size="18" font-family="Poppins-Regular, Poppins"><tspan x="0" y="0">WP Plugin</tspan></text>
<text id="_v1.8.24" data-name=" v1.8.24" transform="translate(419 84)" fill="#707070" font-size="8.166" font-family="Poppins-Regular, Poppins" baseline-shift="-4.666199819518059"><tspan x="0" y="0" xml:space="preserve"> v1.8.24</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

BIN
images/Seers-logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

BIN
images/Seers-logo1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

BIN
images/Settings-Visuals.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 108 KiB

BIN
images/color-icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 126 B

BIN
images/icon.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 210 KiB

3
images/li-dote.svg Normal file
View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
<circle id="Ellipse_3" data-name="Ellipse 3" cx="4" cy="4" r="4" fill="#6cc04a"/>
</svg>

After

Width:  |  Height:  |  Size: 171 B

6
images/li-green-tick.svg Normal file
View File

@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" width="11" height="11" viewBox="0 0 11 11">
<g id="Group_2776" data-name="Group 2776" transform="translate(-966 -526)">
<circle id="Ellipse_1" data-name="Ellipse 1" cx="5.5" cy="5.5" r="5.5" transform="translate(966 526)" fill="#6cc04a"/>
<path id="Icon_open-check" data-name="Icon open-check" d="M5.309,0,4.737.6l-2.3,2.3-.671-.646-.6-.6L0,2.824l.6.6L1.839,4.663l.571.6.6-.6,2.9-2.9.6-.6L5.309,0Z" transform="translate(968.357 529.143)" fill="#fff"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 516 B

6
images/li-white-tick.svg Normal file
View File

@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14">
<g id="Group_2753" data-name="Group 2753" transform="translate(-966 -526)">
<circle id="Ellipse_1" data-name="Ellipse 1" cx="7" cy="7" r="7" transform="translate(966 526)" fill="#fff"/>
<path id="Icon_open-check" data-name="Icon open-check" d="M6.756,0,6.029.759,3.1,3.689l-.854-.822-.759-.759L0,3.594l.759.759L2.34,5.934l.727.759.759-.759L7.515,2.245l.759-.759L6.756,0Z" transform="translate(969 530)" fill="#6cc04a"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 528 B

BIN
images/loader.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

BIN
images/play.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

BIN
images/plugin-player.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

BIN
images/plugin-player1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

BIN
images/plugin-player2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

3
images/red-cross.svg Normal file
View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="10.53" height="10.53" viewBox="0 0 10.53 10.53">
<path id="Icon_metro-cross" data-name="Icon metro-cross" d="M13,10.387h0L9.81,7.193,13,4h0a.33.33,0,0,0,0-.465L11.5,2.024a.33.33,0,0,0-.465,0h0L7.836,5.219,4.641,2.024h0a.33.33,0,0,0-.465,0L2.667,3.533a.33.33,0,0,0,0,.465h0L5.861,7.193,2.667,10.387h0a.33.33,0,0,0,0,.465l1.509,1.509a.33.33,0,0,0,.465,0h0L7.836,9.167l3.194,3.194h0a.33.33,0,0,0,.465,0L13,10.853a.33.33,0,0,0,0-.465Z" transform="translate(-2.571 -1.928)" fill="#df0000"/>
</svg>

After

Width:  |  Height:  |  Size: 542 B

44
images/seers-logo.svg Normal file
View File

@ -0,0 +1,44 @@
<svg xmlns="http://www.w3.org/2000/svg" width="208.978" height="35.731" viewBox="0 0 208.978 35.731">
<g id="seers_wp_plugin" data-name="seers wp plugin" transform="translate(-203 -56)">
<g id="Group_3141" data-name="Group 3141" transform="translate(203 56)">
<g id="Group_3140" data-name="Group 3140" transform="translate(47.424 6.16)">
<path id="Path_12051" data-name="Path 12051" d="M300.087,90.647h5.683s5.112.123,4.619-4.571-6.515-5.187-9.579-3.673-4.165,6.815-2.839,10.412,3.521,4.581,7.421,4.505A10.36,10.36,0,0,0,309.859,96l-.908-2.082S301.673,97.869,300.087,90.647ZM306,84.258a2.879,2.879,0,0,1,1.663,2.234,1.575,1.575,0,0,1-1.478,1.855h-5.907s.645-5.793,5.719-4.089Z" transform="translate(-280.946 -75.854)" fill="#292929"/>
<path id="Path_12052" data-name="Path 12052" d="M375.535,90.647h5.683s5.112.123,4.619-4.571-6.512-5.187-9.579-3.673-4.165,6.815-2.839,10.412,3.521,4.581,7.421,4.505A10.357,10.357,0,0,0,385.307,96l-.908-2.082S377.122,97.869,375.535,90.647Zm5.913-6.388a2.879,2.879,0,0,1,1.663,2.234,1.576,1.576,0,0,1-1.478,1.855h-5.907s.645-5.793,5.722-4.089Z" transform="translate(-340.845 -75.854)" fill="#292929"/>
<path id="Path_12053" data-name="Path 12053" d="M453.814,83.964s4.342-3.383,9.34-1.767l-.4,2.222s-2.525-1.06-6.008.959V97.142h-2.928Z" transform="translate(-405.112 -75.952)" fill="#292929"/>
<g id="Group_3139" data-name="Group 3139" transform="translate(1.109 23.254)">
<path id="Path_12054" data-name="Path 12054" d="M222.876,167.259h1.686a1.6,1.6,0,0,1,1.038.285,1.1,1.1,0,0,1,.346.9,1.3,1.3,0,0,1-.152.682,1.028,1.028,0,0,1-.447.386,1.047,1.047,0,0,1,.739,1.1,1.223,1.223,0,0,1-.37,1,1.649,1.649,0,0,1-1.069.3h-1.774Zm1.667.456h-1.149v1.606h1.2a.84.84,0,0,0,.628-.205.857.857,0,0,0,.2-.616.755.755,0,0,0-.212-.6.99.99,0,0,0-.662-.189Zm.054,2.057h-1.2v1.68h1.236a1.091,1.091,0,0,0,.7-.192.823.823,0,0,0,.238-.678.874.874,0,0,0-.1-.431.567.567,0,0,0-.259-.246,1.461,1.461,0,0,0-.611-.133Z" transform="translate(-222.875 -167.084)" fill="#868686"/>
<path id="Path_12055" data-name="Path 12055" d="M244.247,176.2l.195-.02.014.4a9.638,9.638,0,0,1-1.311.107,1.181,1.181,0,0,1-1.028-.42,2.255,2.255,0,0,1-.3-1.307q0-1.767,1.4-1.767a1.285,1.285,0,0,1,1.015.38,1.768,1.768,0,0,1,.336,1.192l-.026.383h-2.217a1.377,1.377,0,0,0,.2.827.824.824,0,0,0,.7.269Q243.729,176.243,244.247,176.2Zm-.182-1.458a1.462,1.462,0,0,0-.2-.874.767.767,0,0,0-.645-.255.827.827,0,0,0-.672.269,1.355,1.355,0,0,0-.232.862Z" transform="translate(-237.91 -171.795)" fill="#868686"/>
<path id="Path_12056" data-name="Path 12056" d="M268.732,171.577a6.281,6.281,0,0,1-1.243.141,2.211,2.211,0,0,1-.89-.151,1.114,1.114,0,0,1-.524-.471,2.18,2.18,0,0,1-.256-.732,6.266,6.266,0,0,1-.071-1.032,6.4,6.4,0,0,1,.071-1.038,2.218,2.218,0,0,1,.256-.743,1.1,1.1,0,0,1,.521-.471,2.189,2.189,0,0,1,.873-.148,6.453,6.453,0,0,1,1.263.148l-.02.437a6.982,6.982,0,0,0-1.21-.123,1.01,1.01,0,0,0-.977.44,3.394,3.394,0,0,0-.238,1.5,6.61,6.61,0,0,0,.044.854,1.87,1.87,0,0,0,.171.581.757.757,0,0,0,.373.37,1.81,1.81,0,0,0,.719.111,6.212,6.212,0,0,0,1.118-.123Z" transform="translate(-256.913 -166.827)" fill="#040505"/>
<path id="Path_12057" data-name="Path 12057" d="M282.862,174.936a2.132,2.132,0,0,1,.329-1.33,1.709,1.709,0,0,1,2.221,0,2.148,2.148,0,0,1,.326,1.33,2.272,2.272,0,0,1-.308,1.337,1.739,1.739,0,0,1-2.258,0A2.272,2.272,0,0,1,282.862,174.936Zm.517-.01a2.14,2.14,0,0,0,.178,1.032,1.089,1.089,0,0,0,1.488,0,2.164,2.164,0,0,0,.174-1.032,1.891,1.891,0,0,0-.195-1.018.824.824,0,0,0-.722-.279.833.833,0,0,0-.726.279,1.858,1.858,0,0,0-.2,1.013Z" transform="translate(-270.498 -171.798)" fill="#040505"/>
<path id="Path_12058" data-name="Path 12058" d="M301.3,176.615h-.5v-3.362h.5v.235a1.9,1.9,0,0,1,.981-.3,1.009,1.009,0,0,1,.873.342,2.481,2.481,0,0,1,.575-.238,2.236,2.236,0,0,1,.621-.1,1,1,0,0,1,.9.36,2.56,2.56,0,0,1,.232,1.293v1.774h-.5v-1.758a2.325,2.325,0,0,0-.134-.958.583.583,0,0,0-.572-.259,1.738,1.738,0,0,0-.457.062,2.309,2.309,0,0,0-.363.123l-.127.062a3.368,3.368,0,0,1,.087.981v1.747h-.5v-1.734a2.472,2.472,0,0,0-.131-.985.581.581,0,0,0-.575-.259,1.6,1.6,0,0,0-.44.062,2.1,2.1,0,0,0-.346.123l-.114.062Z" transform="translate(-284.74 -171.791)" fill="#040505"/>
<path id="Path_12059" data-name="Path 12059" d="M328.057,178.11v-4.854h.5v.241a1.936,1.936,0,0,1,1.008-.308,1.059,1.059,0,0,1,.928.407,2.376,2.376,0,0,1,.289,1.341,2.094,2.094,0,0,1-.339,1.34,1.391,1.391,0,0,1-1.126.406,3.571,3.571,0,0,1-.753-.074v1.5Zm1.431-4.469a1.567,1.567,0,0,0-.431.067,2.264,2.264,0,0,0-.366.134l-.128.067v2.265a5.148,5.148,0,0,0,.726.074.87.87,0,0,0,.763-.308,1.786,1.786,0,0,0,.218-1.008,1.863,1.863,0,0,0-.2-.995A.655.655,0,0,0,329.488,173.642Z" transform="translate(-306.38 -171.794)" fill="#040505"/>
<path id="Path_12060" data-name="Path 12060" d="M345.435,171.238v-4.824h.5v4.824Z" transform="translate(-320.177 -166.414)" fill="#040505"/>
<path id="Path_12061" data-name="Path 12061" d="M352.77,167.585V167h.5v.585Zm0,4.119v-3.36h.5v3.36Z" transform="translate(-326 -166.879)" fill="#040505"/>
<path id="Path_12062" data-name="Path 12062" d="M361.451,174.266v1.72q.02.246.389.3l-.02.4a1.085,1.085,0,0,1-.8-.269,2.956,2.956,0,0,1-1.21.269.913.913,0,0,1-.705-.262,1.071,1.071,0,0,1-.242-.753.944.944,0,0,1,.246-.722,1.318,1.318,0,0,1,.779-.286l1.055-.1v-.289a.677.677,0,0,0-.148-.493.544.544,0,0,0-.4-.148,9.67,9.67,0,0,0-1.115.067l-.208.02-.02-.383a6.777,6.777,0,0,1,1.311-.148.937.937,0,0,1,1.088,1.082Zm-2.069,1.371q0,.616.511.616a2.719,2.719,0,0,0,.9-.152l.155-.054v-1.109l-.995.094a.648.648,0,0,0-.437.175.616.616,0,0,0-.135.429Z" transform="translate(-330.838 -171.786)" fill="#040505"/>
<path id="Path_12063" data-name="Path 12063" d="M376.749,176.615h-.5v-3.362h.5v.235a2.148,2.148,0,0,1,1.042-.3.993.993,0,0,1,.9.363,2.566,2.566,0,0,1,.232,1.29v1.774h-.5v-1.758a2.274,2.274,0,0,0-.138-.958.605.605,0,0,0-.588-.259,1.75,1.75,0,0,0-.453.062,2.287,2.287,0,0,0-.366.123l-.128.062Z" transform="translate(-344.637 -171.791)" fill="#040505"/>
<path id="Path_12064" data-name="Path 12064" d="M394.228,170h-1.066V171.6a2.171,2.171,0,0,0,.084.759q.084.182.4.182l.6-.041.033.417a4.6,4.6,0,0,1-.686.074.878.878,0,0,1-.726-.256,1.663,1.663,0,0,1-.2-.974V170h-.477v-.438h.477v-1.028h.5v1.028h1.066Z" transform="translate(-357.294 -168.096)" fill="#040505"/>
<path id="Path_12065" data-name="Path 12065" d="M403.86,187.88l.308-1.545h.557l-.45,1.545Z" transform="translate(-366.561 -182.229)" fill="#040505"/>
<path id="Path_12066" data-name="Path 12066" d="M419.967,167.259h1.686a1.6,1.6,0,0,1,1.038.285,1.1,1.1,0,0,1,.346.9,1.3,1.3,0,0,1-.151.682,1.028,1.028,0,0,1-.447.386,1.047,1.047,0,0,1,.739,1.1,1.223,1.223,0,0,1-.37,1,1.65,1.65,0,0,1-1.069.3h-1.774Zm1.666.456h-1.149v1.606h1.2a.841.841,0,0,0,.628-.205.857.857,0,0,0,.2-.616.755.755,0,0,0-.212-.6.99.99,0,0,0-.662-.189Zm.054,2.057h-1.2v1.68h1.236a1.092,1.092,0,0,0,.7-.192.823.823,0,0,0,.239-.678.872.872,0,0,0-.1-.431.566.566,0,0,0-.259-.246,1.462,1.462,0,0,0-.611-.133Z" transform="translate(-379.349 -167.084)" fill="#6b6b6b"/>
<path id="Path_12067" data-name="Path 12067" d="M441.338,176.2l.2-.02.014.4a9.64,9.64,0,0,1-1.31.107,1.181,1.181,0,0,1-1.028-.42,2.253,2.253,0,0,1-.3-1.307q0-1.767,1.4-1.767a1.284,1.284,0,0,1,1.014.38,1.768,1.768,0,0,1,.336,1.192l-.027.383h-2.217a1.377,1.377,0,0,0,.2.827.824.824,0,0,0,.7.269Q440.82,176.243,441.338,176.2Zm-.181-1.458a1.46,1.46,0,0,0-.2-.874.767.767,0,0,0-.645-.255.827.827,0,0,0-.672.269,1.355,1.355,0,0,0-.232.862Z" transform="translate(-394.384 -171.795)" fill="#6b6b6b"/>
<path id="Path_12068" data-name="Path 12068" d="M464.007,167.363q-1.008,0-1.008.759a.655.655,0,0,0,.232.581,3.087,3.087,0,0,0,.94.315,2.394,2.394,0,0,1,1,.41,1.036,1.036,0,0,1,.3.83q0,1.431-1.485,1.431a8.3,8.3,0,0,1-1.232-.114l-.242-.034.054-.431a11.547,11.547,0,0,0,1.391.123q.995,0,.995-.934a.634.634,0,0,0-.219-.541,2.121,2.121,0,0,0-.816-.278,2.75,2.75,0,0,1-1.115-.431,1.081,1.081,0,0,1-.33-.89q0-1.25,1.5-1.25a8.235,8.235,0,0,1,1.176.1l.228.034-.047.437a12.636,12.636,0,0,0-1.32-.12Z" transform="translate(-413.096 -166.805)" fill="#040505"/>
<path id="Path_12069" data-name="Path 12069" d="M482.647,176.2l.2-.02.014.4a9.634,9.634,0,0,1-1.31.107,1.181,1.181,0,0,1-1.029-.42,2.257,2.257,0,0,1-.3-1.307q0-1.767,1.4-1.767a1.285,1.285,0,0,1,1.015.38,1.768,1.768,0,0,1,.336,1.192l-.027.383h-2.217a1.376,1.376,0,0,0,.2.827.823.823,0,0,0,.7.269Q482.13,176.243,482.647,176.2Zm-.181-1.458a1.46,1.46,0,0,0-.2-.874.767.767,0,0,0-.645-.255.826.826,0,0,0-.672.269,1.355,1.355,0,0,0-.232.862Z" transform="translate(-427.18 -171.795)" fill="#040505"/>
<path id="Path_12070" data-name="Path 12070" d="M498.107,173.2a5.8,5.8,0,0,1,.753.081l.161.02-.02.41a7.865,7.865,0,0,0-.793-.062.924.924,0,0,0-.776.272,1.771,1.771,0,0,0-.205,1.008,1.971,1.971,0,0,0,.191,1.025.9.9,0,0,0,.8.289l.793-.062.02.416a6.91,6.91,0,0,1-.934.094,1.273,1.273,0,0,1-1.085-.4,2.346,2.346,0,0,1-.3-1.361,2.13,2.13,0,0,1,.323-1.344A1.328,1.328,0,0,1,498.107,173.2Z" transform="translate(-440.274 -171.795)" fill="#040505"/>
<path id="Path_12071" data-name="Path 12071" d="M513.576,173.522h.5v3.36h-.5v-.235a1.923,1.923,0,0,1-.994.3,1,1,0,0,1-.91-.356,2.678,2.678,0,0,1-.225-1.317v-1.754h.5v1.747a2.474,2.474,0,0,0,.128.981q.128.246.578.246a1.663,1.663,0,0,0,.45-.062,2.061,2.061,0,0,0,.349-.123l.123-.062Z" transform="translate(-451.974 -172.057)" fill="#040505"/>
<path id="Path_12072" data-name="Path 12072" d="M528.929,176.6v-3.36h.5v.457a3.275,3.275,0,0,1,1.232-.531v.511a3.622,3.622,0,0,0-.588.168,3.886,3.886,0,0,0-.467.2l-.168.087v2.464Z" transform="translate(-465.856 -171.772)" fill="#040505"/>
<path id="Path_12073" data-name="Path 12073" d="M541.594,176.2l.195-.02.014.4a9.63,9.63,0,0,1-1.31.107,1.18,1.18,0,0,1-1.028-.42,2.255,2.255,0,0,1-.3-1.307q0-1.767,1.4-1.767a1.284,1.284,0,0,1,1.014.38,1.768,1.768,0,0,1,.336,1.192l-.027.383h-2.214a1.379,1.379,0,0,0,.2.827.824.824,0,0,0,.7.269Q541.077,176.243,541.594,176.2Zm-.181-1.458a1.461,1.461,0,0,0-.2-.874.767.767,0,0,0-.646-.255.827.827,0,0,0-.672.269,1.355,1.355,0,0,0-.232.862Z" transform="translate(-473.979 -171.795)" fill="#040505"/>
</g>
<path id="Path_12074" data-name="Path 12074" d="M223.468,64.826c2.407.6,5.174,2.118,5,4.389s-2.306,4.967-10.005,1.636l-.961,2.171a11.907,11.907,0,0,0,9.9,1.5c5.345-1.478,5.49-9.276-.038-11.018-2.842-.9-4.842-1.532-5.679-2.537a2.991,2.991,0,0,1,.378-4.054c1.792-1.338,6.265-.548,7.628.436l.985-2.094s-9.138-4.24-11.791.753C218.886,56,215.35,62.793,223.468,64.826Z" transform="translate(-217.5 -53.573)" fill="#292929"/>
<path id="Path_12075" data-name="Path 12075" d="M510.246,90.627c1.773.444,3.809,1.559,3.68,3.231s-1.7,3.657-7.365,1.2l-.706,1.6a8.767,8.767,0,0,0,7.291,1.1c3.935-1.09,4.042-6.829-.028-8.112-2.094-.659-3.565-1.128-4.181-1.867a2.2,2.2,0,0,1,.278-2.985c1.319-.985,4.612-.4,5.615.322l.725-1.54s-6.728-3.121-8.681.554C506.873,84.131,504.269,89.129,510.246,90.627Z" transform="translate(-446.426 -76.413)" fill="#292929"/>
</g>
<g id="seers-owl" transform="translate(0)">
<path id="Path_1" data-name="Path 1" d="M-793.042,530.058a9.259,9.259,0,0,1,2.19-5.993,10.892,10.892,0,0,1-2.8-2.026c-7.96-8.514-1.224-16.585-1.224-16.585-4.4,1.895-8.684,7.514-8.684,7.514a11.363,11.363,0,0,0,1.336,5.511c-1.837.056-2.839-2.616-2.839-2.616a38.139,38.139,0,0,0-1,4.008,12.59,12.59,0,0,0,2.95,3.34,2.577,2.577,0,0,1-3.173-.946,24.414,24.414,0,0,0,.334,3.952c.278.946,2.561,3.009,2.561,3.009a2.379,2.379,0,0,1-1.559.056,18.714,18.714,0,0,0,4.4,6.624,15.809,15.809,0,0,0,8.3-2.105A9.258,9.258,0,0,1-793.042,530.058Z" transform="translate(806.325 -505.454)" fill="#3b6ef8"/>
<path id="Path_2" data-name="Path 2" d="M-734.159,564.477s-6.29-4.008-12.024.334c0,0,3.9,3.507,5.01,6.457a4.311,4.311,0,0,0,1.167,3.561,4.188,4.188,0,0,0,.946-3.674S-736.943,566.647-734.159,564.477Z" transform="translate(762.75 -546.996)" fill="#3b6ef8"/>
<circle id="Ellipse_1" data-name="Ellipse 1" cx="0.779" cy="0.779" r="0.779" transform="translate(18.042 23.269)" fill="#3b6ef8"/>
<circle id="Ellipse_2" data-name="Ellipse 2" cx="0.779" cy="0.779" r="0.779" transform="translate(25.807 23.269)" fill="#3b6ef8"/>
<path id="Path_3" data-name="Path 3" d="M-701.876,541.163a16.505,16.505,0,0,0,3.4-5.288s-.946-5.455-3.674-8.8c0,0,1,7.348-4.732,11.523l.154.17a9.3,9.3,0,0,1,.789,13.123,9.3,9.3,0,0,1-2.594,2.042l.761.807a19.283,19.283,0,0,0,9.3-15.2S-699.815,541.886-701.876,541.163Z" transform="translate(735.475 -521.122)" fill="#3b6ef8"/>
<path id="Path_4" data-name="Path 4" d="M-768.575,613.893a9.3,9.3,0,0,1-8.514-5.56,15.443,15.443,0,0,1-8.3,2.109,19.262,19.262,0,0,0,21.932,3.173l-.761-.807A9.254,9.254,0,0,1-768.575,613.893Z" transform="translate(791.154 -579.993)" fill="#3cd08c"/>
</g>
</g>
<path id="Path_125" data-name="Path 125" d="M16.92-12.69,13.7,0h-2L8.766-10.368,5.832,0h-2L.594-12.69H2.412L4.842-1.908,7.848-12.69H9.666L12.672-1.944,15.12-12.69Zm3.564,7.578V0H18.846V-12.69h4.032a4.6,4.6,0,0,1,3.258,1.017,3.636,3.636,0,0,1,1.08,2.781A3.54,3.54,0,0,1,26.1-6.111a4.678,4.678,0,0,1-3.222,1Zm2.25-1.368a3.041,3.041,0,0,0,2.151-.63,2.353,2.353,0,0,0,.657-1.782,2.371,2.371,0,0,0-.657-1.809,3.071,3.071,0,0,0-2.151-.621h-2.25V-6.48ZM35.208-5.112V0H33.57V-12.69H37.6a4.6,4.6,0,0,1,3.258,1.017,3.636,3.636,0,0,1,1.08,2.781,3.54,3.54,0,0,1-1.116,2.781,4.678,4.678,0,0,1-3.222,1Zm2.25-1.368a3.041,3.041,0,0,0,2.151-.63,2.353,2.353,0,0,0,.657-1.782,2.371,2.371,0,0,0-.657-1.809,3.071,3.071,0,0,0-2.151-.621h-2.25V-6.48Zm8.028-6.84V0H43.848V-13.32ZM56.9-9.882V0H55.26V-2.322A3.324,3.324,0,0,1,53.919-.477a3.959,3.959,0,0,1-2.241.639A3.667,3.667,0,0,1,48.906-.945a4.409,4.409,0,0,1-1.062-3.177v-5.76h1.638v5.6a3.19,3.19,0,0,0,.756,2.277,2.686,2.686,0,0,0,2.052.8,2.805,2.805,0,0,0,2.16-.873,3.616,3.616,0,0,0,.81-2.547V-9.882Zm6.678-.126a4.061,4.061,0,0,1,2.439.72A3.752,3.752,0,0,1,67.41-7.362v-2.52h1.638V.162a5.015,5.015,0,0,1-.576,2.43,4.137,4.137,0,0,1-1.62,1.656,4.829,4.829,0,0,1-2.43.594,5.217,5.217,0,0,1-3.258-.963,4.25,4.25,0,0,1-1.6-2.6h1.62a2.806,2.806,0,0,0,1.089,1.557,3.486,3.486,0,0,0,2.061.567,3.022,3.022,0,0,0,2.205-.855A3.186,3.186,0,0,0,67.41.162V-2.52A3.752,3.752,0,0,1,66.015-.594a4.061,4.061,0,0,1-2.439.72,4.479,4.479,0,0,1-2.34-.612,4.233,4.233,0,0,1-1.611-1.755,5.834,5.834,0,0,1-.585-2.691,5.89,5.89,0,0,1,.585-2.7A4.221,4.221,0,0,1,61.236-9.4,4.479,4.479,0,0,1,63.576-10.008Zm.468,1.458a3.172,3.172,0,0,0-2.421.963,3.713,3.713,0,0,0-.909,2.655,3.713,3.713,0,0,0,.909,2.655,3.172,3.172,0,0,0,2.421.963,3.361,3.361,0,0,0,1.737-.45,3.133,3.133,0,0,0,1.2-1.269,4.012,4.012,0,0,0,.432-1.9,4.066,4.066,0,0,0-.432-1.908,3.059,3.059,0,0,0-1.2-1.269A3.414,3.414,0,0,0,64.044-8.55Zm7.326-4.23a.94.94,0,0,1,.306-.729,1.156,1.156,0,0,1,.81-.279,1.156,1.156,0,0,1,.81.279.94.94,0,0,1,.306.729.94.94,0,0,1-.306.729,1.156,1.156,0,0,1-.81.279,1.156,1.156,0,0,1-.81-.279A.94.94,0,0,1,71.37-12.78Zm1.926,2.9V0H71.658V-9.882Zm7.83-.162a3.69,3.69,0,0,1,2.79,1.107,4.436,4.436,0,0,1,1.062,3.2V0H83.34V-5.6a3.157,3.157,0,0,0-.756-2.268,2.7,2.7,0,0,0-2.052-.792,2.805,2.805,0,0,0-2.16.873,3.616,3.616,0,0,0-.81,2.547V0H75.924V-9.882h1.638v2.34A3.366,3.366,0,0,1,78.9-9.4,3.888,3.888,0,0,1,81.126-10.044Z" transform="translate(327 86.788)" fill="#010101"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

@ -0,0 +1,62 @@
<?php
/**Static Class runs and clear rules when Plugin is activated
*
* @package SeersCookieConsentBannerPrivacyPolicyPlugin
* Plugin Name: Seers Cookie Consent Banner Privacy Policy GDPR CCPA
* Description: Seers cookie consent management platform is trusted by thousands of businesses. Become GDPR, CCPA, ePrivacy and LGPD compliant in three clicks.
* Version: 6.2.3
**/
class SeersCookieConsentPluginActivate {
static $apisecrekkey = '$2y$10$9ygTfodVBVM0XVCdyzEUK.0FIuLnJT0D42sIE6dIu9r/KY3XaXXyS';
public static function activate() {
flush_rewrite_rules();
//by Shoaib Jilani send email the cureent site url
//echo "<br> ----- Activated.... ----- <br>";
//$to = 'jinbahoo@gmail.com';
$current_user = wp_get_current_user();
$username = $current_user->display_name;
$useremail = $current_user->user_email;
$to = 'plugins.support@seersco.com';
$subject = 'Seers Cookie Consent Banner Privacy Policy - Activated';
$body = 'Hi Admin, <div>This plugin is activated on site ' . get_site_url() . "</div><div>Regards, <br>Seers Development Team</div>";
$headers = array('Content-Type: text/html; charset=UTF-8','From: Seers Plugin Support <plugins.support@seersco.com>');
wp_mail( $to, $subject, $body, $headers );
$plugin_data = get_plugin_data( __FILE__ );
$theplugin_name = $plugin_data['Name'];
//on activate plugin update in db
$cookie_consent_url = get_option('SCCBPP_cookie_consent_url');
$postData = array(
'domain' => get_site_url(),
'isactive' => 1,
'secret' => self::$apisecrekkey,
'platform' => 'wordpress',
'pluginname' => $theplugin_name
);
$request_headers = array(
'Content-Type' => 'application/json',
'Referer' => get_site_url(),
);
//$url = "https://seersco.com/api/save-domain-credentials";
//$url = "https://seersco.backend/api/plugin-domain";
$url = "https://cmp.seersco.com/api/plugin-domain";
$postdata = json_encode($postData);
$result = wp_remote_post( $url, array(
'method' => 'POST',
'redirection' => 5,
'httpversion' => '1.0',
'timeout' => 45,
'sslverify' => false,
'headers' => $request_headers,
'body' => $postdata,
'cookies' => array()
)
);
$seersCookieConsentPlugin = new SCCBPP_WpCookie_Save();
$seersCookieConsentPlugin->SCCBPP_remove_languages("removepos");
}
}

View File

@ -0,0 +1,551 @@
<?php
/**Static Class runs and clear rules when Plugin is activated
*
* @package @package SeersCookieConsentBannerPrivacyPolicyPlugin
* Plugin Name: Seers Cookie Consent Banner Privacy Policy GDPR CCPA
* Description: Seers cookie consent management platform is trusted by thousands of businesses. Become GDPR, CCPA, ePrivacy and LGPD compliant in three clicks.
* Version: 6.2.3
*/
class SeersCookieConsentPluginDeactivate {
static $apisecrekkey = '$2y$10$9ygTfodVBVM0XVCdyzEUK.0FIuLnJT0D42sIE6dIu9r/KY3XaXXyS';
public static function deactivate()
{
$D_URL = get_site_url();
if(isset($_POST["submit"])) {
$body ='';
$banner_did_not = sanitize_text_field($_POST['banner_did_not']);
$cookies_settings = sanitize_text_field($_POST['cookies_settings']);
$banner_not_match_theme = sanitize_text_field($_POST['banner_not_match_theme']);
$broke_site = sanitize_text_field($_POST['broke_site']);
$found_btter_plugin = sanitize_text_field($_POST['found_btter_plugin']);
$plugin_name = sanitize_text_field($_POST['plugin_name']);
$other_checkBox = sanitize_text_field($_POST['other']);
$other_reason = sanitize_text_field($_POST['other_reason']);
$banner_not_language = sanitize_text_field($_POST['banner_not_language']);
$great_plugin = sanitize_text_field($_POST['great_plugin']);
$current_user = wp_get_current_user();
$username = $current_user->display_name;
$useremail = $current_user->user_email;
$body .= '<table>';
$body .= '<tr>
<td colspan="2">User email: ' .$useremail. '</td>
</tr>';
$body .= '<tr>
<td colspan="2">URL: ' .get_site_url(). '</td>
</tr>';
$body .= '<tr>
<td colspan="2">Issues:</td>
</tr>';
if($banner_not_language){
$body .= '<tr>
<td width="5%"></td>
<td>'.$banner_not_language.'</td>
</tr>';
}
if($banner_did_not){
$body .= '<tr>
<td width="5%"></td>
<td>'.$banner_did_not.'</td>
</tr>';
}
if($cookies_settings){
$body .= '<tr>
<td width="5%"></td>
<td>'.$cookies_settings.'</td>
</tr>';
}
if(@$banner_not_match_theme) {
$body .= '<tr>
<td width="5%"></td>
<td>' . $banner_not_match_theme . '</td>
</tr>';
}
if(@$broke_site) {
$body .= '<tr>
<td width="5%"></td>
<td>' . $broke_site . '</td>
</tr>';
}
if(@$found_btter_plugin) {
$body .= '<tr>
<td width="10%">Plugin name:</td>
<td>' . $plugin_name . '</td>
</tr>';
}
if(@$great_plugin) {
$body .= '<tr>
<td width="10%">Plugin name:</td>
<td>' . $great_plugin . '</td>
</tr>';
}
if(@$other_checkBox) {
$body .= '<tr>
<td width="10%">Other Reason:</td>
<td>' . $other_reason . '</td>
</tr>';
}
$body .= '</table>';
$message = $body;
$to ="plugins.support@seersco.com";
$subject = "Feedback from seersco plugin";
$headers = 'From: Seers Plugin Support <plugins.support@seersco.com>'. "\r\n" .
'Reply-To: Seers Plugin Support <plugins.support@seersco.com>' . "\r\n";
wp_mail($to, $subject, strip_tags($message), $headers);
$plugin_data = get_plugin_data( __FILE__ );
$theplugin_name = $plugin_data['Name'];
//on deactive plugin update in db
$cookie_consent_url = get_option('SCCBPP_cookie_consent_url');
$postData = array(
'domain' => get_site_url(),
'isactive' => 0,
'secret' => self::$apisecrekkey,
'platform' => 'wordpress',
'pluginname' => $theplugin_name
);
$request_headers = array(
'Content-Type' => 'application/json',
'Referer' => get_site_url(),
);
//$url = "https://seersco.com/api/save-domain-credentials";
//$url = "https://seersco.backend/api/plugin-domain";
$url = "https://cmp.seersco.com/api/plugin-domain";
$postdata = json_encode($postData);
$result = wp_remote_post( $url, array(
'method' => 'POST',
'redirection' => 5,
'httpversion' => '1.0',
'timeout' => 45,
'sslverify' => false,
'headers' => $request_headers,
'body' => $postdata,
'cookies' => array()
)
);
flush_rewrite_rules(false);
deactivate_plugins( plugin_basename( __FILE__ ), true );
flush_rewrite_rules();
$url = admin_url( 'plugins.php?deactivate=true' );
header( "Location: $url" );
//die();
}elseif(isset($_POST["not_interested"])) {
$current_user = wp_get_current_user();
$username = $current_user->display_name;
$useremail = $current_user->user_email;
$body ='';
$body .= '<table>';
$body .= '<tr>
<td colspan="2">User email: ' .$useremail. '</td>
</tr>';
$body .= '<tr>
<td colspan="2">URL: ' .get_site_url(). '</td>
</tr>';
$body .= '<tr>
<td width="10%">Not interested:</td>
<td>Skip and deactivate</td>
</tr>';
$body .= '</table>';
$message = $body;
$to ="plugins.support@seersco.com";
$subject = "Feedback from seersco plugin";
$headers = 'From: '. $useremail . "\r\n" .
'Reply-To: ' . $useremail . "\r\n";
wp_mail($to, $subject, strip_tags($message), $headers);
flush_rewrite_rules(false);
deactivate_plugins( plugin_basename( __FILE__ ), true );
flush_rewrite_rules();
$url = admin_url( 'plugins.php?deactivate=true' );
header( "Location: $url" );
}else{
echo '<style>
.seers_ext_message{
padding:10px;
border: 1px dotted #c0c0c0;
font-size:12px;
margin: 10px 0px 10px 25px;
}
.seers_modalDialog {
position: fixed;
font-family: Arial, Helvetica, sans-serif;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: rgba(0, 0, 0, 0.8);
z-index: 99999;
opacity: 1;
-webkit-transition: opacity 400ms ease-in;
-moz-transition: opacity 400ms ease-in;
transition: opacity 400ms ease-in;
pointer-events: auto;
}
.seers_modalDialog:target {
opacity: 0;
pointer-events: none;
}
.seers_modalDialog .seers_modal-body {
width: 500px !important;
position: relative;
margin: 3% auto;
padding: 5px 20px 13px 20px;
background: #fff;
border-radius: 4px;
-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
-moz-box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
}
.seers_modalDialog .seers_modal-body .close {
background: #007cba;
color: #FFFFFF;
line-height: 25px;
position: absolute;
right: -10px;
text-align: center;
top: -10px;
width: 30px;
height: 30px;
text-decoration: none;
font-weight: bold;
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
border-radius: 12px;
-moz-box-shadow: 1px 1px 3px #000;
-webkit-box-shadow: 1px 1px 3px #000;
box-shadow: 1px 1px 3px #000;
border-radius: 100%;
font-size: 25px;
font-weight: normal;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: -moz-box;
display: -moz-flex;
display: flex;
-webkit-box-align: center;
-moz-box-align: center;
-webkit-box-pack: center;
-moz-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
-moz-justify-content: center;
-ms-justify-content: center;
justify-content: center;
-webkit-box-align: center;
-moz-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
-moz-flex-align: center;
-ms-flex-align: center;
align-items: center;
}
.seers_modal-body p{
border-bottom:1px solid #c0c0c0;
padding-bottom: 10px;
font-size: 14px;
font-weight: 600;
}
.close:hover {
background: #00d9ff;
}
.seers_modal-body form input[type="radio"]{
margin: 0 0 15px 0;
}
.seers_modal-body form .btn-hol{
display: flex;
justify-content: center;
align-items: center;
margin:0 -7.5px;
}
.seers_modal-body form input.submit-skip{
background: #306bf9;
border-radius: 4px;
color: #fff;
font-size: 13px;
padding: 10px;
white-space: nowrap;
flex-basis: 20%;
margin: 7.5px;
font-weight: 500;
display: block;
text-align: center;
text-decoration: none;
transition: all .3s ease;
border: 0 !important;
cursor:pointer;
}
.seers_modal-body form a.submit-skip{
background: #ccc;
border-radius: 4px;
color: #000;
font-size: 13px;
padding: 10px;
white-space: nowrap;
flex-basis: 20%;
margin: 7.5px;
font-weight: 500;
display: block;
text-align: center;
text-decoration: none;
transition: all .3s ease;
border: 0 !important;
}
.seers_modal-body form input.submit-skip:focus {
outline: 0 !important;
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #007cba;
-webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 3px #007cba;
-moz-box-shadow: 0 0 0 1px #fff, 0 0 0 3px #007cba;
-ms-box-shadow: 0 0 0 1px #fff, 0 0 0 3px #007cba;
-o-box-shadow: 0 0 0 1px #fff, 0 0 0 3px #007cba;
}
.seers_modal-body form a.submit-skip:focus {
outline: 0 !important;
box-shadow: 0 0 0 1px #fff, 0 0 0 3px #007cba;
-webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 3px #007cba;
-moz-box-shadow: 0 0 0 1px #fff, 0 0 0 3px #007cba;
-ms-box-shadow: 0 0 0 1px #fff, 0 0 0 3px #007cba;
-o-box-shadow: 0 0 0 1px #fff, 0 0 0 3px #007cba;
}
.seers_modal-title{
margin-bottom:0px !important;
}
.seers_form-group{
font-size:12px;
}
.seers_form-group span{
position: relative;
display: inline-block;
top: -2px;
}
.seers-full-width-textarea{
width: 95%;
margin-left: 5%;
}
.seers-bottom-margin{
margin-bottom: 10px;
}
.seers_skipbtn input {
background: #fff !important;
color: #306bf9 !important;
justify-content: end;
display: block;
float: right !important;
position: relative;
top: -7px;
padding: 0px !important;
font-size: 11px;
}
</style>';
?>
<div class="seers_modalDialog">
<div class="seers_modal-body">
<h4 class="seers_modal-title"><?php echo __('Quick Feedback', 'seers-cookie-consent-banner-privacy-policy');?></h4>
<p><?php echo __('If you have a moment, please let us know why you are deactivating:', 'seers-cookie-consent-banner-privacy-policy');?></p>
<form name="feedback" id="feedback" action="#" method="post">
<div class="seers_form-group">
<input type="checkbox" name="banner_not_language" id="banner_not_language" onclick="bannerLanguage()" class="askLanguage" value="<?php echo __('The banner is not in the required language', 'seers-cookie-consent-banner-privacy-policy');?>">
<span><?php esc_html_e("The banner is not in the required language", 'seers-cookie-consent-banner-privacy-policy'); ?></span>
</div>
<div id="language" style="display: none">
<div class="seers_ext_message">
<?php echo __('The banner picks up your website language automatically. You can always sign-in on your Seers account', 'seers-cookie-consent-banner-privacy-policy');?> <a href="https://seersco.com/" target="_blank">(seersco.com)</a> <?php echo __('and choose the language you like. See the video', 'seers-cookie-consent-banner-privacy-policy');?> <a href="https://youtu.be/sMRZF0vClQU" target="_blank"><?php echo __('here', 'seers-cookie-consent-banner-privacy-policy');?></a>.
</div>
</div>
<div class="seers_form-group">
<input type="checkbox" name="banner_did_not" id="banner_did_not" onclick="bannerDidNotApper()" value="<?php echo __('Banner did not appear', 'seers-cookie-consent-banner-privacy-policy');?>" class="bannerapper">
<span><?php esc_html_e("Banner did not appear", 'seers-cookie-consent-banner-privacy-policy'); ?></span>
</div>
<div id="banner_apper" style="display: none">
<div class="seers_ext_message"><?php esc_html_e("Most of the times the compatibility issue can be fixed very quickly. Please contact", 'seers-cookie-consent-banner-privacy-policy'); ?> <a href="mailto:support@seersco.com">support@seersco.com</a></div>
</div>
<div class="seers_form-group">
<input type="checkbox" name="cookies_settings" id="cookies_settings" onclick="cookiesSettings()" value="Cookies are not showing in settings" class="cookies_shoing">
<span> <?php esc_html_e("Cookies are not showing in settings", 'seers-cookie-consent-banner-privacy-policy'); ?></span>
</div>
<div id="cookies" style="display: none">
<div class="seers_ext_message"> <?php esc_html_e("We are scanning your website and it can take up to 12 hours for Cookies to appear. In a very few cases scanner miss a cookie. This", 'seers-cookie-consent-banner-privacy-policy'); ?> <a href="https://youtu.be/M0fCVw_3Hgw" target="_blank"><?php esc_html_e("video", 'seers-cookie-consent-banner-privacy-policy'); ?></a> <?php esc_html_e("explains how to add cookies manually.", 'seers-cookie-consent-banner-privacy-policy'); ?></div>
</div>
<div class="seers_form-group">
<input type="checkbox" name="banner_not_match_theme" id="banner_not_match_theme" onclick="bannerNotMatch()" value="The banner did not match website theme" class="baneer_theme">
<span><?php esc_html_e("The banner did not match website theme", 'seers-cookie-consent-banner-privacy-policy'); ?></span>
</div>
<div id="theme" style="display: none">
<div class="seers_ext_message"><?php esc_html_e("You can fully customize the banner. Please see the video", 'seers-cookie-consent-banner-privacy-policy'); ?> <a href="https://youtu.be/FcpG0K4B3aI" target="_blank"><?php esc_html_e("here", 'seers-cookie-consent-banner-privacy-policy'); ?></a>.</div>
</div>
<div class="seers_form-group">
<input type="checkbox" name="broke_site" id="broke_site_check" onclick="brokeSite()" value="<?php esc_html_e("The plugin broke my site", 'seers-cookie-consent-banner-privacy-policy'); ?>" class="broke_site">
<span> <?php esc_html_e("The plugin broke my site", 'seers-cookie-consent-banner-privacy-policy'); ?></span>
</div>
<div id="brokeSite" style="display: none">
<div class="seers_ext_message"><?php esc_html_e("Most of the times the compatibility issue can be fixed very quickly. Please contact", 'seers-cookie-consent-banner-privacy-policy'); ?> <a href="mailto:support@seersco.com">support@seersco.com</a></div>
</div>
<div class="seers_form-group">
<input type="checkbox" name="found_btter_plugin" id="found_btter_plugin" class="askBetter" onclick="betterPlugin()" value="I have found a better plugin">
<span><?php esc_html_e("I have found a better plugin", 'seers-cookie-consent-banner-privacy-policy'); ?></span>
</div>
<div id="better" style="display: none">
<textarea class="seers-full-width-textarea" name="plugin_name" rows="5" cols="40" placeholder="<?php esc_html_e("Plugin name", 'seers-cookie-consent-banner-privacy-policy'); ?>"></textarea>
</div>
<div class="seers_form-group">
<input type="checkbox" name="great_plugin" id="great_plugin" class="askgreate" onclick="pluginName()" value="<?php esc_html_e("The plugin is great, but i need specific feature that you do not support.", 'seers-cookie-consent-banner-privacy-policy'); ?>">
<span><?php esc_html_e("The plugin is great, but i need specific feature that you don't support.", 'seers-cookie-consent-banner-privacy-policy'); ?></span>
</div>
<div id="great" style="display: none">
<textarea class="seers-full-width-textarea" name="plugin_great" id="plugin_great" rows="5" cols="40" placeholder="<?php esc_html_e("Banner customisation.", 'seers-cookie-consent-banner-privacy-policy'); ?> "></textarea>
</div>
<div class="seers_form-group">
<input type="checkbox" name="other" id="othercheck" value="<?php esc_html_e("Other", 'seers-cookie-consent-banner-privacy-policy'); ?>" class="askOther" onclick="showother();">
<span class="seers-bottom-margin"><?php esc_html_e("Other", 'seers-cookie-consent-banner-privacy-policy'); ?></span>
</div>
<div id="other" style="display: none">
<textarea class="seers-full-width-textarea" name="other_reason" rows="5" cols="40" placeholder="<?php esc_html_e("Kindly tell us the reason so we can improve.", 'seers-cookie-consent-banner-privacy-policy'); ?>"></textarea>
</div>
<div class="btn-hol">
<input type="submit" value="<?php esc_html_e("Submit & Deactivate", 'seers-cookie-consent-banner-privacy-policy'); ?>" name="submit" class="submit-skip">
<a href="<?php echo $D_URL . '/wp-admin/plugins.php?plugin_status=all&paged=1&s' ?>" class="submit-skip"><?php esc_html_e("Cancel", 'seers-cookie-consent-banner-privacy-policy'); ?></a>
</div>
<div class="seers_skipbtn"><input type="submit" value="<?php esc_html_e("Skip & Deactivate", 'seers-cookie-consent-banner-privacy-policy'); ?>" name="not_interested" class="submit-skip"></div>
</form>
</div>
</div>
<script type="text/javascript">
function showother()
{
var checkBox = document.getElementById('othercheck');
if(checkBox.checked == true)
{
document.getElementById('other').style.display='block';
}else{
document.getElementById('other').style.display='none';
}
}
function pluginName()
{
var checkBox = document.getElementById('great_plugin');
if(checkBox.checked == true)
{
document.getElementById('great').style.display='block';
}else{
document.getElementById('great').style.display='none';
}
}
function betterPlugin()
{
var checkBox = document.getElementById('found_btter_plugin');
if(checkBox.checked == true)
{
document.getElementById('better').style.display='block';
}else{
document.getElementById('better').style.display='none';
}
}
function brokeSite()
{
var checkBox = document.getElementById('broke_site_check');
if(checkBox.checked == true)
{
document.getElementById('brokeSite').style.display='block';
}else{
document.getElementById('brokeSite').style.display='none';
}
}
function bannerNotMatch()
{
var checkBox = document.getElementById('banner_not_match_theme');
if(checkBox.checked == true)
{
document.getElementById('theme').style.display='block';
}else{
document.getElementById('theme').style.display='none';
}
}
function cookiesSettings()
{
var checkBox = document.getElementById('cookies_settings');
if(checkBox.checked == true)
{
document.getElementById('cookies').style.display='block';
}else{
document.getElementById('cookies').style.display='none';
}
}
function bannerDidNotApper()
{
var checkBox = document.getElementById('banner_did_not');
if(checkBox.checked == true)
{
document.getElementById('banner_apper').style.display='block';
}else{
document.getElementById('banner_apper').style.display='none';
}
}
function bannerLanguage()
{
var checkBox = document.getElementById('banner_not_language');
if(checkBox.checked == true)
{
document.getElementById('language').style.display='block';
}else{
document.getElementById('language').style.display='none';
}
}
</script>
<?php
exit;
}
}
}

View File

@ -0,0 +1,301 @@
<?php
/**Static Class runs and clear rules when Plugin is activated
*
* @package @package SeersCookieConsentBannerPrivacyPolicyPlugin
* Plugin Name: Seers Cookie Consent Banner Privacy Policy GDPR CCPA
* Description: Seers cookie consent management platform is trusted by thousands of businesses. Become GDPR, CCPA, ePrivacy and LGPD compliant in three clicks.
* Version: 6.2.3
*/
class SeersCookieConsentPluginDeactivate {
public function deactivate()
{
$D_URL = get_site_url();
if(isset($_POST["submit"])) {
$body ='';
$banner_did_not = @$_POST['banner_did_not'];
$cookies_settings = @$_POST['cookies_settings'];
$banner_not_match_theme = @$_POST['banner_not_match_theme'];
$broke_site = @$_POST['broke_site'];
$found_btter_plugin = @$_POST['found_btter_plugin'];
$plugin_name = @$_POST['plugin_name'];
$other_checkBox = @$_POST['other'];
$other_reason = @$_POST['other_reason'];
$banner_not_language = @$_POST['banner_not_language'];
$great_plugin = @$_POST['great_plugin'];
$current_user = wp_get_current_user();
$username = $current_user->display_name;
$useremail = $current_user->user_email;
$body .= '<table>';
$body .= '<tr>
<td colspan="2">Issues:</td>
</tr>';
if($banner_not_language){
$body .= '<tr>
<td width="5%"></td>
<td>'.$banner_not_language.'</td>
</tr>';
}
if($banner_did_not){
$body .= '<tr>
<td width="5%"></td>
<td>'.$banner_did_not.'</td>
</tr>';
}
if($cookies_settings){
$body .= '<tr>
<td width="5%"></td>
<td>'.$cookies_settings.'</td>
</tr>';
}
if(@$banner_not_match_theme) {
$body .= '<tr>
<td width="5%"></td>
<td>' . @$banner_not_match_theme . '</td>
</tr>';
}
if(@$broke_site) {
$body .= '<tr>
<td width="5%"></td>
<td>' . @$broke_site . '</td>
</tr>';
}
if(@$found_btter_plugin) {
$body .= '<tr>
<td width="10%">Plugin name:</td>
<td>' . @$plugin_name . '</td>
</tr>';
}
if(@$great_plugin) {
$body .= '<tr>
<td width="10%">Plugin name:</td>
<td>' . @$great_plugin . '</td>
</tr>';
}
if(@$other_checkBox) {
$body .= '<tr>
<td width="10%">Other Reason:</td>
<td>' . @$other_reason . '</td>
</tr>';
}
$body .= '</table>';
$message = $body;
$to ="plugins.support@seersco.com";
$subject = "Feedback from seersco plugin";
$headers = 'From: '. $useremail . "\r\n" .
'Reply-To: ' . $useremail . "\r\n";
wp_mail($to, $subject, strip_tags($message), $headers);
flush_rewrite_rules(false);
deactivate_plugins( plugin_basename( __FILE__ ), true );
flush_rewrite_rules();
$url = admin_url( 'plugins.php?deactivate=true' );
header( "Location: $url" );
//die();
}elseif(isset($_POST["not_interested"])) {
$current_user = wp_get_current_user();
$username = $current_user->display_name;
$useremail = $current_user->user_email;
$message = "not Interested";
$to ="plugins.support@seersco.com";
$subject = "Feedback from seersco plugin";
$headers = 'From: '. $useremail . "\r\n" .
'Reply-To: ' . $useremail . "\r\n";
wp_mail($to, $subject, strip_tags($message), $headers);
flush_rewrite_rules(false);
deactivate_plugins( plugin_basename( __FILE__ ), true );
flush_rewrite_rules();
$url = admin_url( 'plugins.php?deactivate=true' );
header( "Location: $url" );
}else{
?>
<style>
.ext_message{
padding:10px;
border: 1px dotted #c0c0c0;
font-size:12px;
margin: 10px 0px 10px 25px;
}
</style>
<link rel="stylesheet" href="<?php echo plugins_url('css/popup.css', dirname(__FILE__)); ?>">
<div class="modalDialog">
<div class="modal-body">
<h4 class="modal-title">Quick Feedback</h4>
<p>If you have a moment, please let us know why you are deactivating:</p>
<form name="feedback" id="feedback" action="#" method="post">
<div class="form-group">
<input type="checkbox" name="banner_not_language" class="askLanguage" value="The banner is not in the required language">
<span><?php esc_html_e("The banner is not in the required language", 'Seers'); ?></span>
</div>
<div id="language">
<div class="ext_message">
The banner picks up your website language automatically. You can always sign-in on your Seers account <a href="https://seersco.com/" target="_blank">(seersco.com)</a> and choose the language you like. See the video <a href="https://youtu.be/sMRZF0vClQU" target="_blank">here</a>.
</div>
</div>
<div class="form-group">
<input type="checkbox" name="banner_did_not" value="Banner did not appear" class="bannerapper">
<span><?php esc_html_e("Banner did not appear", 'Seers'); ?></span>
</div>
<div id="banner_apper">
<div class="ext_message">Most of the times the compatibility issue can be fixed very quickly. Please contact <a href="mailto:support@seersco.com">support@seersco.com</a></div>
</div>
<div class="form-group">
<input type="checkbox" name="cookies_settings" value="Cookies are not showing in settings" class="cookies_shoing">
<span> <?php esc_html_e("Cookies are not showing in settings", 'Seers'); ?></span>
</div>
<div id="cookies">
<div class="ext_message"> We are scanning your website and it can take up to 12 hours for Cookies to appear. In a very few cases scanner miss a cookie. This <a href="https://youtu.be/M0fCVw_3Hgw" target="_blank">video</a> explains how to add cookies manually.</div>
</div>
<div class="form-group">
<input type="checkbox" name="banner_not_match_theme" value="The banner did not match website theme" class="baneer_theme">
<span><?php esc_html_e("The banner did not match website theme", 'Seers'); ?></span>
</div>
<div id="theme">
<div class="ext_message">You can fully customize the banner. Please see the video <a href="https://youtu.be/FcpG0K4B3aI" target="_blank">here</a>.</div>
</div>
<div class="form-group">
<input type="checkbox" name="broke_site" value="The plugin broke my site" class="broke_site">
<span> <?php esc_html_e("The plugin broke my site", 'Seers'); ?></span>
</div>
<div id="brokeSite">
<div class="ext_message">Most of the times the compatibility issue can be fixed very quickly. Please contact <a href="mailto:support@seersco.com">support@seersco.com</a></div>
</div>
<div class="form-group">
<input type="checkbox" name="found_btter_plugin" id="found_btter_plugin" class="askBetter" value="I have found a better plugin">
<span><?php esc_html_e("I have found a better plugin", 'Seers'); ?></span>
</div>
<div id="better">
<textarea class="full-width-textarea" name="plugin_name" rows="5" cols="40" placeholder="Plugin name"></textarea>
</div>
<div class="form-group">
<input type="checkbox" name="great_plugin" id="great_plugin" class="askgreate" value="The plugin is great, but i need specific feature that you do not support.">
<span><?php esc_html_e("The plugin is great, but i need specific feature that you don't support.", 'Seers'); ?></span>
</div>
<div id="great">
<textarea class="full-width-textarea" name="plugin_name" rows="5" cols="40" placeholder="Banner customisation. "></textarea>
</div>
<div class="form-group">
<input type="checkbox" name="other" value="Other" class="askOther">
<span class="bottom-margin"><?php esc_html_e("Other", 'Seers'); ?></span>
</div>
<div class="other">
<textarea class="full-width-textarea" name="other_reason" rows="5" cols="40" placeholder="Kindly tell us the reason so we can improve."></textarea>
</div>
<div class="btn-hol">
<input type="submit" value="Submit & Deactivate" name="submit" class="submit-skip">
<a href="<?php echo $D_URL . '/wp-admin/plugins.php?plugin_status=all&paged=1&s' ?>" class="submit-skip">Cancel</a>
</div>
<div class="skipbtn"><input type="submit" value="Skip & Deactivate" name="not_interested" class="submit-skip"></div>
</form>
</div>
</div>
<script src="<?php echo plugins_url('js/jquery.min.js', dirname(__FILE__)); ?>"></script>
<script type="text/javascript">
$(".other").hide();
$(".askOther").click(function() {
if($(this).is(":checked")) {
$(".other").show();
} else {
$(".other").hide();
}
});
$("#better").hide();
$(".askBetter").click(function() {
if($(this).is(":checked")) {
$("#better").show();
} else {
$("#better").hide();
}
});
$("#language").hide();
$(".askLanguage").click(function() {
if($(this).is(":checked")) {
$("#language").show();
} else {
$("#language").hide();
}
});
$("#banner_apper").hide();
$(".bannerapper").click(function() {
if($(this).is(":checked")) {
$("#banner_apper").show();
} else {
$("#banner_apper").hide();
}
});
$("#cookies").hide();
$(".cookies_shoing").click(function() {
if($(this).is(":checked")) {
$("#cookies").show();
} else {
$("#cookies").hide();
}
});
$("#theme").hide();
$(".baneer_theme").click(function() {
if($(this).is(":checked")) {
$("#theme").show();
} else {
$("#theme").hide();
}
});
$("#brokeSite").hide();
$(".broke_site").click(function() {
if($(this).is(":checked")) {
$("#brokeSite").show();
} else {
$("#brokeSite").hide();
}
});
$("#great").hide();
$(".askgreate").click(function() {
if($(this).is(":checked")) {
$("#great").show();
} else {
$("#great").hide();
}
});
</script>
<?php
exit;
}
}
}

2
index.php Normal file
View File

@ -0,0 +1,2 @@
<?php
//silence is golden

70
js/admin.js Normal file

File diff suppressed because one or more lines are too long

4
js/jquery.min.js vendored Normal file

File diff suppressed because one or more lines are too long

BIN
languages/default.mo Normal file

Binary file not shown.

657
languages/default.po Normal file
View File

@ -0,0 +1,657 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-16 17:05+0500\n"
"PO-Revision-Date: 2022-03-16 17:18+0500\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: en_GB\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-KeywordsList: __;_e;esc_html_e\n"
"X-Poedit-SearchPath-0: seers-cookie-consent-banner-privacy-policy.pot\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:350
msgid "Quick Feedback"
msgstr ""
#: inc/seers-cookie-consent-plugin-deactivate.php:351
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr ""
#: inc/seers-cookie-consent-plugin-deactivate.php:354
#: inc/seers-cookie-consent-plugin-deactivate.php:355
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr ""
#: inc/seers-cookie-consent-plugin-deactivate.php:359
msgid ""
"The banner picks up your website language automatically. You can always sign-"
"in on your Seers account"
msgstr ""
#: inc/seers-cookie-consent-plugin-deactivate.php:359
msgid "and choose the language you like. See the video"
msgstr ""
#: inc/seers-cookie-consent-plugin-deactivate.php:359
#: inc/seers-cookie-consent-plugin-deactivate.php:381
msgid "here"
msgstr ""
#: inc/seers-cookie-consent-plugin-deactivate.php:363
#: inc/seers-cookie-consent-plugin-deactivate.php:364
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr ""
#: inc/seers-cookie-consent-plugin-deactivate.php:367
#: inc/seers-cookie-consent-plugin-deactivate.php:388
msgid ""
"Most of the times the compatibility issue can be fixed very quickly. Please "
"contact"
msgstr ""
#: inc/seers-cookie-consent-plugin-deactivate.php:371
#: inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr ""
#: inc/seers-cookie-consent-plugin-deactivate.php:374
msgid ""
"We are scanning your website and it can take up to 12 hours for Cookies to "
"appear. In a very few cases scanner miss a cookie. This"
msgstr ""
#: inc/seers-cookie-consent-plugin-deactivate.php:374
msgid "video"
msgstr ""
#: inc/seers-cookie-consent-plugin-deactivate.php:374
msgid "explains how to add cookies manually."
msgstr ""
#: inc/seers-cookie-consent-plugin-deactivate.php:378
#: inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr ""
#: inc/seers-cookie-consent-plugin-deactivate.php:381
msgid "You can fully customize the banner. Please see the video"
msgstr ""
#: inc/seers-cookie-consent-plugin-deactivate.php:384
#: inc/seers-cookie-consent-plugin-deactivate.php:385
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr ""
#: inc/seers-cookie-consent-plugin-deactivate.php:392
#: inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr ""
#: inc/seers-cookie-consent-plugin-deactivate.php:395
msgid "Plugin name"
msgstr ""
#: inc/seers-cookie-consent-plugin-deactivate.php:398
msgid ""
"The plugin is great, but i need specific feature that you do not support."
msgstr ""
#: inc/seers-cookie-consent-plugin-deactivate.php:399
#: inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid ""
"The plugin is great, but i need specific feature that you don't support."
msgstr ""
#: inc/seers-cookie-consent-plugin-deactivate.php:402
msgid "Banner customisation."
msgstr ""
#: inc/seers-cookie-consent-plugin-deactivate.php:406
#: inc/seers-cookie-consent-plugin-deactivate.php:407
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr ""
#: inc/seers-cookie-consent-plugin-deactivate.php:410
msgid "Kindly tell us the reason so we can improve."
msgstr ""
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "Submit & Deactivate"
msgstr ""
#: inc/seers-cookie-consent-plugin-deactivate.php:414
msgid "Cancel"
msgstr ""
#: inc/seers-cookie-consent-plugin-deactivate.php:419
msgid "Skip & Deactivate"
msgstr ""
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr ""
#: seers-cookie-consent-banner-privacy-policy.php:133 templates/admin.php:97
msgid "Settings"
msgstr ""
#: seers-cookie-consent-banner-privacy-policy.php:139
msgid "Upgrade Premium"
msgstr ""
#: seers-cookie-consent-banner-privacy-policy.php:290 templates/admin.php:740
#: templates/frontend-popup.php:1738 templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr ""
#: seers-cookie-consent-banner-privacy-policy.php:291 templates/admin.php:784
#: templates/admin.php:785 templates/admin.php:787
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1765
msgid "Allow All"
msgstr ""
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:815
#: templates/admin.php:816 templates/admin.php:818
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1766
msgid "Disable All"
msgstr ""
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:847
#: templates/frontend-popup.php:1740
msgid "Preference"
msgstr ""
#: seers-cookie-consent-banner-privacy-policy.php:416
#: seers-cookie-consent-banner-privacy-policy.php:444
#: seers-cookie-consent-banner-privacy-policy.php:450
msgid "Cookies policy added successfully."
msgstr ""
#: seers-cookie-consent-banner-privacy-policy.php:419
msgid "Some thing went wrong. Please check url and try again"
msgstr ""
#: seers-cookie-consent-banner-privacy-policy.php:670
msgid "Some thing went wrong."
msgstr ""
#: seers-cookie-consent-banner-privacy-policy.php:806
msgid "Settings has been updated successfully"
msgstr ""
#: templates/admin.php:92 templates/admin.php:1067
msgid "Account Setup"
msgstr ""
#: templates/admin.php:100
msgid "Policy"
msgstr ""
#: templates/admin.php:104
msgid "User Guide"
msgstr ""
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr ""
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr ""
#: templates/admin.php:134
msgid "Email"
msgstr ""
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr ""
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr ""
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr ""
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr ""
#: templates/admin.php:154 templates/admin.php:172
msgid ""
"I agree Seers to use my email and url to create an account and power the "
"cookie banner."
msgstr ""
#: templates/admin.php:178
msgid "Create Account"
msgstr ""
#: templates/admin.php:181
msgid "Cookie ID"
msgstr ""
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr ""
#: templates/admin.php:197
msgid "Powering all your"
msgstr ""
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr ""
#: templates/admin.php:199
msgid ""
"Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy "
"compliance tools,"
msgstr ""
#: templates/admin.php:200
msgid "all"
msgstr ""
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
#: templates/admin.php:206
msgid "Policies Pack"
msgstr ""
#: templates/admin.php:207
msgid "Templates Pack"
msgstr ""
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr ""
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr ""
#: templates/admin.php:212
msgid "DPIA"
msgstr ""
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr ""
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr ""
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr ""
#: templates/admin.php:217
msgid "START FREE"
msgstr ""
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help "
"companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr ""
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr ""
#: templates/admin.php:232
msgid "Branding"
msgstr ""
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr ""
#: templates/admin.php:234
msgid "Consent Log"
msgstr ""
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr ""
#: templates/admin.php:236
msgid "Prior Consent"
msgstr ""
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr ""
#: templates/admin.php:238
msgid "Customer Support"
msgstr ""
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr ""
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr ""
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
#: templates/admin.php:255
msgid "Banner Settings"
msgstr ""
#: templates/admin.php:260
msgid "Banner"
msgstr ""
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr ""
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr ""
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr ""
#: templates/admin.php:291
msgid "Language"
msgstr ""
#: templates/admin.php:291
msgid "Choose a language for the banner."
msgstr ""
#: templates/admin.php:701
msgid "Show Badge"
msgstr ""
#: templates/admin.php:701
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr ""
#: templates/admin.php:724
msgid "Visual Settings"
msgstr ""
#: templates/admin.php:729
msgid "Banner Text"
msgstr ""
#: templates/admin.php:729
msgid "Text to appear on the banner:"
msgstr ""
#: templates/admin.php:732 templates/admin.php:750
msgid "Colour"
msgstr ""
#: templates/admin.php:732
msgid "The text colour to appear on the banner:"
msgstr ""
#: templates/admin.php:747
msgid "Banner Background"
msgstr ""
#: templates/admin.php:747
msgid "You can change the background colour of the banner:"
msgstr ""
#: templates/admin.php:750
msgid "The background colour of the banner:"
msgstr ""
#: templates/admin.php:764
msgid "Accept Button"
msgstr ""
#: templates/admin.php:764
msgid ""
"You can change text colour, button colour and text of the 'Accept All' button"
msgstr ""
#: templates/admin.php:767 templates/admin.php:798 templates/admin.php:829
msgid "Text Colour"
msgstr ""
#: templates/admin.php:767
msgid "The text colour to appear on the 'Accept All' button:"
msgstr ""
#: templates/admin.php:777 templates/admin.php:808 templates/admin.php:839
msgid "Button Colour"
msgstr ""
#: templates/admin.php:777
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr ""
#: templates/admin.php:795
msgid "Reject Button"
msgstr ""
#: templates/admin.php:795
msgid ""
"You can change text colour, button colour and text of the 'Reject All' button"
msgstr ""
#: templates/admin.php:798
msgid "The text colour to appear on the 'Reject All' button:"
msgstr ""
#: templates/admin.php:808
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr ""
#: templates/admin.php:826
msgid "Setting Button"
msgstr ""
#: templates/admin.php:826
msgid "You can change text colour and text of the 'Setting' button"
msgstr ""
#: templates/admin.php:829
msgid "The text colour to appear on the 'Setting' button:"
msgstr ""
#: templates/admin.php:839
msgid "The 'Setting' button colour to appear on the banner:"
msgstr ""
#: templates/admin.php:850
msgid "Setting"
msgstr ""
#: templates/admin.php:858
msgid "Fonts"
msgstr ""
#: templates/admin.php:858
msgid "You can select a font for the text of the banner:"
msgstr ""
#: templates/admin.php:910
msgid "Select Button"
msgstr ""
#: templates/admin.php:910
msgid "You can select the shape of the buttons that appear on the banner."
msgstr ""
#: templates/admin.php:914
msgid "Default"
msgstr ""
#: templates/admin.php:918 templates/admin.php:928
msgid "Flat"
msgstr ""
#: templates/admin.php:921 templates/admin.php:931
msgid "Rounded"
msgstr ""
#: templates/admin.php:924 templates/admin.php:934
msgid "Stroke"
msgstr ""
#: templates/admin.php:952
msgid "PREVIEW"
msgstr ""
#: templates/admin.php:953
msgid "SAVE"
msgstr ""
#: templates/admin.php:972
msgid "Please create cookies policy page and enter URL below."
msgstr ""
#: templates/admin.php:976
msgid "Enable Policy:"
msgstr ""
#: templates/admin.php:993
msgid "Cookie Policy and declaration URL:"
msgstr ""
#: templates/admin.php:996
msgid "Policy URL"
msgstr ""
#: templates/admin.php:1003
msgid "Save"
msgstr ""
#: templates/admin.php:1057
msgid "Premium Plan"
msgstr ""
#: templates/admin.php:1060 templates/admin.php:1249 templates/admin.php:1258
#: templates/admin.php:1266
msgid "Only the users with a paid account can avail this feature."
msgstr ""
#: templates/admin.php:1065
msgid "Ok"
msgstr ""
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr ""
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr ""
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr ""
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr ""
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr ""
#: templates/frontend-popup.php:1774
msgid ""
"Necessary cookies help make a website usable by enabling basic functions "
"like page navigation and access to secure areas of the website. The website "
"cannot function properly without these cookies."
msgstr ""
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784
#: templates/frontend-popup.php:1794 templates/frontend-popup.php:1804
#: templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr ""
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr ""
#: templates/frontend-popup.php:1784
msgid ""
"Preference cookies enable a website to remember information that changes the "
"way the website behaves or looks, like your preferred language or the region "
"that you are in."
msgstr ""
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr ""
#: templates/frontend-popup.php:1794
msgid ""
"Statistic cookies help website owners to understand how visitors interact "
"with websites by collecting and reporting information anonymously."
msgstr ""
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr ""
#: templates/frontend-popup.php:1804
msgid ""
"Marketing cookies are used to track visitors across websites. The intention "
"is to display ads that are relevant and engaging for the individual user and "
"thereby more valuable for publishers and third-party advertisers."
msgstr ""
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr ""
#: templates/frontend-popup.php:1812
msgid ""
"Unclassified cookies are cookies that we are in the process of classifying, "
"together with the providers of individual cookies."
msgstr ""
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr ""
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr ""

View File

@ -0,0 +1,643 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-25 17:21+0500\n"
"PO-Revision-Date: 2022-03-30 05:13-0700\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: seers-cookie-consent-banner-privacy-policy.pot\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:382
msgid "Quick Feedback"
msgstr "ردود الفعل سريعة"
#: inc/seers-cookie-consent-plugin-deactivate.php:383
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr "إذا كان لديك لحظة، فيرجى إخبارنا لماذا أنت إلغاء تنشيط:"
#: inc/seers-cookie-consent-plugin-deactivate.php:386
#: inc/seers-cookie-consent-plugin-deactivate.php:387
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr "اللافتة ليست باللغة المطلوبة"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "The banner picks up your website language automatically. You can always sign-in on your Seers account"
msgstr "يختار Banner لغتك موقع الويب الخاص بك تلقائيا. يمكنك دائما تسجيل الدخول في حساب Seers"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "and choose the language you like. See the video"
msgstr "واختيار اللغة التي تريدها. مشاهدة الفيديو"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "here"
msgstr "هنا"
#: inc/seers-cookie-consent-plugin-deactivate.php:395
#: inc/seers-cookie-consent-plugin-deactivate.php:396
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr "لم تظهر راية"
#: inc/seers-cookie-consent-plugin-deactivate.php:399
#: inc/seers-cookie-consent-plugin-deactivate.php:420
msgid "Most of the times the compatibility issue can be fixed very quickly. Please contact"
msgstr "معظم الأوقات يمكن إصلاح مشكلة التوافق بسرعة كبيرة. الرجاء التواصل"
#: inc/seers-cookie-consent-plugin-deactivate.php:403
#: inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr "لا تظهرCookies في الإعدادات"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "We are scanning your website and it can take up to 12 hours for Cookies to appear. In a very few cases scanner miss a cookie. This"
msgstr "نحن نفحص موقع الويب الخاص بك وقد يستغرق ظهور Cookies ما يصل إلى 12 ساعة. في حالات قليلة جدًا ، يفقد الماسح ملف تعريف ارتباط. هذه"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "video"
msgstr "فيديو"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "explains how to add cookies manually."
msgstr "يشرح كيفية إضافة Cookies يدويًا."
#: inc/seers-cookie-consent-plugin-deactivate.php:410
#: inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr "لم يتطابق بانر موضوع الموقع"
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "You can fully customize the banner. Please see the video"
msgstr "يمكنك تخصيص راية بالكامل. يرجى الاطلاع على الفيديو"
#: inc/seers-cookie-consent-plugin-deactivate.php:416
#: inc/seers-cookie-consent-plugin-deactivate.php:417
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr "البرنامج المساعد كسر موقعي"
#: inc/seers-cookie-consent-plugin-deactivate.php:424
#: inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr "لقد وجدت صيغة أفضل"
#: inc/seers-cookie-consent-plugin-deactivate.php:427
msgid "Plugin name"
msgstr "اسم البرنامج المساعد"
#: inc/seers-cookie-consent-plugin-deactivate.php:430
msgid "The plugin is great, but i need specific feature that you do not support."
msgstr "البرنامج المساعد رائع، لكنني بحاجة إلى ميزة محددة لا تدعمها."
#: inc/seers-cookie-consent-plugin-deactivate.php:431
#: inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid "The plugin is great, but i need specific feature that you don't support."
msgstr "البرنامج المساعد رائع، لكنني بحاجة إلى ميزة محددة لا تدعمها."
#: inc/seers-cookie-consent-plugin-deactivate.php:434
msgid "Banner customisation."
msgstr "تخصيص راية."
#: inc/seers-cookie-consent-plugin-deactivate.php:438
#: inc/seers-cookie-consent-plugin-deactivate.php:439
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr "آخر"
#: inc/seers-cookie-consent-plugin-deactivate.php:442
msgid "Kindly tell us the reason so we can improve."
msgstr "يرجى إخبارنا بالسبب حتى نتمكن من التحسن."
#: inc/seers-cookie-consent-plugin-deactivate.php:445
msgid "Submit & Deactivate"
msgstr "تقديم وإلغاء تنشيط"
#: inc/seers-cookie-consent-plugin-deactivate.php:446
msgid "Cancel"
msgstr "يلغي"
#: inc/seers-cookie-consent-plugin-deactivate.php:451
msgid "Skip & Deactivate"
msgstr "تخطي وإلغاء تنشيط"
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr "رفض هذا الإشعار."
#: seers-cookie-consent-banner-privacy-policy.php:135 templates/admin.php:97
msgid "Settings"
msgstr "إعدادات"
#: seers-cookie-consent-banner-privacy-policy.php:141
msgid "Upgrade Premium"
msgstr "ترقية بريميوم"
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:514
#: templates/frontend-popup.php:1738 templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr "نحن نستخدم Cookies لضمان حصولك على أفضل تجربة"
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:558
#: templates/admin.php:559 templates/admin.php:561
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1765
msgid "Allow All"
msgstr "أنا موافق"
#: seers-cookie-consent-banner-privacy-policy.php:294 templates/admin.php:589
#: templates/admin.php:590 templates/admin.php:592
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1766
msgid "Disable All"
msgstr "أنا أعترض"
#: seers-cookie-consent-banner-privacy-policy.php:295 templates/admin.php:621
#: templates/frontend-popup.php:1740
msgid "Preference"
msgstr "الأفضلية"
#: seers-cookie-consent-banner-privacy-policy.php:418
#: seers-cookie-consent-banner-privacy-policy.php:446
#: seers-cookie-consent-banner-privacy-policy.php:452
msgid "Cookies policy added successfully."
msgstr "تمت إضافة سياسة \"Cookie\" بنجاح."
#: seers-cookie-consent-banner-privacy-policy.php:421
msgid "Some thing went wrong. Please check url and try again"
msgstr "هناك خطأ ما. يرجى التحقق من عنوان URL وحاول مرة أخرى"
#: seers-cookie-consent-banner-privacy-policy.php:675
msgid "Some thing went wrong."
msgstr "هناك خطأ ما."
#: seers-cookie-consent-banner-privacy-policy.php:819
msgid "Settings has been updated successfully"
msgstr "تم تحديث الإعدادات بنجاح"
#: templates/admin.php:92 templates/admin.php:841
msgid "Account Setup"
msgstr "اعدادات الحساب"
#: templates/admin.php:100
msgid "Policy"
msgstr "السياسات"
#: templates/admin.php:104
msgid "User Guide"
msgstr "دليل المستخدم"
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr "تم تنشيط لافتة موافقة Seers Cookie الخاصة بك."
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr "لم يتم تنشيط إعلان الموافقة على Seers Cookie بسبب"
#: templates/admin.php:134
msgid "Email"
msgstr "بريد الالكتروني"
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr "أوافق Seers"
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr "الشروط والحالة"
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr "و"
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr "سياسة خاصة"
#: templates/admin.php:154 templates/admin.php:172
msgid "I agree Seers to use my email and url to create an account and power the cookie banner."
msgstr "أوافق على استخدام Seers للبريد الإلكتروني وعنوان url الخاص بي لإنشاء حساب وتشغيل لافتة cookie."
#: templates/admin.php:178
msgid "Create Account"
msgstr "إنشاء حساب"
#: templates/admin.php:181
msgid "Cookie ID"
msgstr "معرف Cookie"
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr "سيتم استلام معرف Cookie Seers تلقائيا بعد إنشاء الحساب"
#: templates/admin.php:197
msgid "Powering all your"
msgstr "قوة كل ما تبذلونه من"
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr "احتياجات الخصوصية وأمن البيانات"
#: templates/admin.php:199
msgid "Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy compliance tools,"
msgstr "الوصول إلى مجموعة واسعة من GDPR و PECR و CCPA و؛ أدوات الامتثال Eprivacy،"
#: templates/admin.php:200
msgid "all"
msgstr "الكل"
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
"مصممة لأخذ المتاعب من الامتثال للبيانات الجديدة\n"
" لوائح الحماية."
#: templates/admin.php:206
msgid "Policies Pack"
msgstr "سياسات حزمة"
#: templates/admin.php:207
msgid "Templates Pack"
msgstr "قوالب حزمة"
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr "موظفي GDPR Etraining"
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr "إدارة الموافقة على Cookie"
#: templates/admin.php:212
msgid "DPIA"
msgstr "DPIA"
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr "مراجعة الحسابات GDPR"
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr "Cyber secure"
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr "إدارة الطلبات الموضوعية"
#: templates/admin.php:217
msgid "START FREE"
msgstr "ابدأ"
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
"خصوصية البيانات و؛\n"
" امتثال. تم حلها"
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
"الثقة في عوالم الرائدة منصة إدارة الخصوصية والموافقة للمساعدة الشركات الامتثال\n"
" مع GDPR، PECR، CCPA و Eprivacy"
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr "بدء Premium اليوم"
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr "Seers PREMIUM Plan"
#: templates/admin.php:232
msgid "Branding"
msgstr "العلامة التجارية"
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr "متعدد اللغات"
#: templates/admin.php:234
msgid "Consent Log"
msgstr "موافقة تسجيل الدخول"
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr "سياسة Cookie"
#: templates/admin.php:236
msgid "Prior Consent"
msgstr "موافقة مسبقة"
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr "6+ تخطيطات التصميم"
#: templates/admin.php:238
msgid "Customer Support"
msgstr "دعم العملاء"
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr "تخصيص راية"
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr "جدول إعلان Cookie"
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
"ابدأ بريميوم\n"
" اليوم"
#: templates/admin.php:255
msgid "Banner Settings"
msgstr "إعدادات راية"
#: templates/admin.php:260
msgid "Banner"
msgstr "بانر"
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr "مكّن تعطيل Cookie Banner"
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr "انتهاء Cookie"
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr "ضع موافقتك Cookie لتنتهي في غضون أيام."
#: templates/admin.php:291
msgid "Language"
msgstr "لغة"
#: templates/admin.php:291
msgid "Choose a language for the banner Settings > General."
msgstr "اختر لغة لإعدادات Banner> عام."
#: templates/admin.php:475
msgid "Show Badge"
msgstr "عرض شارة"
#: templates/admin.php:475
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr "أظهر شارة لتمكين لافتة Cookie من الظهور بعد الموافقة."
#: templates/admin.php:498
msgid "Visual Settings"
msgstr "إعدادات بصرية"
#: templates/admin.php:503
msgid "Banner Text"
msgstr "راية النص"
#: templates/admin.php:503
msgid "Text to appear on the banner:"
msgstr "النص لتظهر على راية:"
#: templates/admin.php:506 templates/admin.php:524
msgid "Colour"
msgstr "لون"
#: templates/admin.php:506
msgid "The text colour to appear on the banner:"
msgstr "لون النص لتظهر على شعار:"
#: templates/admin.php:521
msgid "Banner Background"
msgstr "بانر خلفية"
#: templates/admin.php:521
msgid "You can change the background colour of the banner:"
msgstr "يمكنك تغيير لون الخلفية للشعار:"
#: templates/admin.php:524
msgid "The background colour of the banner:"
msgstr "لون خلفية اللافتة:"
#: templates/admin.php:538
msgid "Accept Button"
msgstr "قبول زر"
#: templates/admin.php:538
msgid "You can change text colour, button colour and text of the 'Accept All' button"
msgstr "يمكنك تغيير لون النص، لون زر ونص زر 'قبول الكل'"
#: templates/admin.php:541 templates/admin.php:572 templates/admin.php:603
msgid "Text Colour"
msgstr "لون النص"
#: templates/admin.php:541
msgid "The text colour to appear on the 'Accept All' button:"
msgstr "لون النص لتظهر على زر 'قبول الكل':"
#: templates/admin.php:551 templates/admin.php:582 templates/admin.php:613
msgid "Button Colour"
msgstr "لون زر"
#: templates/admin.php:551
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr "'قبول كل' لون زر الظهور على شعار:"
#: templates/admin.php:569
msgid "Reject Button"
msgstr "رفض زر"
#: templates/admin.php:569
msgid "You can change text colour, button colour and text of the 'Reject All' button"
msgstr "يمكنك تغيير لون النص، لون زر ونص زر 'رفض الكل'"
#: templates/admin.php:572
msgid "The text colour to appear on the 'Reject All' button:"
msgstr "يحتوي لون النص على زر 'رفض الكل':"
#: templates/admin.php:582
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr "لون زر زر 'رفض الكل' لتظهر على شعار:"
#: templates/admin.php:600
msgid "Setting Button"
msgstr "زر الإعداد"
#: templates/admin.php:600
msgid "You can change text colour and text of the 'Setting' button"
msgstr "يمكنك تغيير لون النص والنص الزر 'الإعداد'"
#: templates/admin.php:603
msgid "The text colour to appear on the 'Setting' button:"
msgstr "لون النص ليظهر على زر 'الإعداد':"
#: templates/admin.php:613
msgid "The 'Setting' button colour to appear on the banner:"
msgstr "لون زر 'الإعداد' لتظهر على راية:"
#: templates/admin.php:624
msgid "Setting"
msgstr "ضبط"
#: templates/admin.php:632
msgid "Fonts"
msgstr "الخطوط"
#: templates/admin.php:632
msgid "You can select a font for the text of the banner:"
msgstr "يمكنك تحديد خط لنص Banner:"
#: templates/admin.php:684
msgid "Select Button"
msgstr "حدد زر"
#: templates/admin.php:684
msgid "You can select the shape of the buttons that appear on the banner."
msgstr "يمكنك تحديد شكل الأزرار التي تظهر على Banner."
#: templates/admin.php:688
msgid "Default"
msgstr "تقصير"
#: templates/admin.php:692 templates/admin.php:702
msgid "Flat"
msgstr "عريضة"
#: templates/admin.php:695 templates/admin.php:705
msgid "Rounded"
msgstr "مدور"
#: templates/admin.php:698 templates/admin.php:708
msgid "Stroke"
msgstr "Stroke"
#: templates/admin.php:726
msgid "PREVIEW"
msgstr "معاينة"
#: templates/admin.php:727
msgid "SAVE"
msgstr "حفظ"
#: templates/admin.php:746
msgid "Please create cookies policy page and enter URL below."
msgstr "الرجاء إنشاء صفحة سياسة cookie وإدخال URL أدناه."
#: templates/admin.php:750
msgid "Enable Policy:"
msgstr "تمكين السياسة:"
#: templates/admin.php:767
msgid "Cookie Policy and declaration URL:"
msgstr "سياسة cookie والإعلان URL:"
#: templates/admin.php:770
msgid "Policy URL"
msgstr "عنوان URL للسياسة"
#: templates/admin.php:777
msgid "Save"
msgstr "حفظ"
#: templates/admin.php:831
msgid "Premium Plan"
msgstr "خطة متميزة"
#: templates/admin.php:834 templates/admin.php:1023 templates/admin.php:1032
#: templates/admin.php:1040
msgid "Only the users with a paid account can avail this feature."
msgstr "فقط المستخدمين الذين لديهم حساب مدفوع يمكنهم الاستفادة من هذه الميزة."
#: templates/admin.php:839
msgid "Ok"
msgstr "نعم"
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr "شعار seers"
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr "حول Cookies"
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr "اقرأ سياسة Cookie"
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr "ضرورية"
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr "دائما نشط"
#: templates/frontend-popup.php:1774
msgid "Necessary cookies help make a website usable by enabling basic functions like page navigation and access to secure areas of the website. The website cannot function properly without these cookies."
msgstr "Cookies اللازمة تساعد على جعل موقع إلكتروني صالح للاستخدام من خلال تمكين الوظائف الأساسية مثل تصفح الصفحات والوصول إلى المناطق الآمنة من الموقع. الموقع لا يمكن أن يعمل بشكل صحيح بدون هذه cookies."
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784
#: templates/frontend-popup.php:1794 templates/frontend-popup.php:1804
#: templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr "تفاصيل Cookies"
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr "التفضيلات"
#: templates/frontend-popup.php:1784
msgid "Preference cookies enable a website to remember information that changes the way the website behaves or looks, like your preferred language or the region that you are in."
msgstr "Cookies التفضيل تمكن الموقع من تذكر المعلومات التي تغير الطريقة التي يتصرف بها الموقع أو يبدو بها ، مثل لغتك المفضلة أو المنطقة التي أنت فيها."
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr "إحصائية"
#: templates/frontend-popup.php:1794
msgid "Statistic cookies help website owners to understand how visitors interact with websites by collecting and reporting information anonymously."
msgstr "وتساعد الإحصاءات cookies أصحاب المواقع على فهم كيفية تفاعل الزوار مع المواقع على الإنترنت عن طريق جمع المعلومات والإبلاغ عنها دون الكشف عن هويتها."
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr "تسويقية"
#: templates/frontend-popup.php:1804
msgid "Marketing cookies are used to track visitors across websites. The intention is to display ads that are relevant and engaging for the individual user and thereby more valuable for publishers and third-party advertisers."
msgstr "تستخدم cookies التسويقية لتعقب الزوار عبر مواقع الإنترنت. والقصد من ذلك هو عرض إعلانات ذات أهمية وإشراك لفرادى المستخدمين ، ومن ثم تكون أكثر قيمة للناشرين وللمعلنين من طرف ثالث."
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr "غير مصنف"
#: templates/frontend-popup.php:1812
msgid "Unclassified cookies are cookies that we are in the process of classifying, together with the providers of individual cookies."
msgstr "Cookies غير المصنفة هي الكوكيز التي نحن بصدد تصنيفها ، جنبا إلى جنب مع مقدمي الكوكيز الفردية."
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr "حفظ خياراتي"
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr "يعمل بواسطة"
#~ msgid "To get your Cookie ID click on Activate"
#~ msgstr "To get your Cookie ID click on Activate"
#~ msgid "Activate"
#~ msgstr "Activate"

View File

@ -0,0 +1,643 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-25 17:21+0500\n"
"PO-Revision-Date: 2022-03-30 04:37-0700\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: seers-cookie-consent-banner-privacy-policy.pot\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:382
msgid "Quick Feedback"
msgstr "ردود الفعل سريعة"
#: inc/seers-cookie-consent-plugin-deactivate.php:383
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr "إذا كان لديك لحظة، فيرجى إخبارنا لماذا أنت إلغاء تنشيط:"
#: inc/seers-cookie-consent-plugin-deactivate.php:386
#: inc/seers-cookie-consent-plugin-deactivate.php:387
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr "اللافتة ليست باللغة المطلوبة"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "The banner picks up your website language automatically. You can always sign-in on your Seers account"
msgstr "يختار Banner لغتك موقع الويب الخاص بك تلقائيا. يمكنك دائما تسجيل الدخول في حساب Seers"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "and choose the language you like. See the video"
msgstr "واختيار اللغة التي تريدها. مشاهدة الفيديو"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "here"
msgstr "هنا"
#: inc/seers-cookie-consent-plugin-deactivate.php:395
#: inc/seers-cookie-consent-plugin-deactivate.php:396
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr "لم تظهر راية"
#: inc/seers-cookie-consent-plugin-deactivate.php:399
#: inc/seers-cookie-consent-plugin-deactivate.php:420
msgid "Most of the times the compatibility issue can be fixed very quickly. Please contact"
msgstr "معظم الأوقات يمكن إصلاح مشكلة التوافق بسرعة كبيرة. الرجاء التواصل"
#: inc/seers-cookie-consent-plugin-deactivate.php:403
#: inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr "لا تظهرCookies في الإعدادات"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "We are scanning your website and it can take up to 12 hours for Cookies to appear. In a very few cases scanner miss a cookie. This"
msgstr "نحن نفحص موقع الويب الخاص بك وقد يستغرق ظهور \"Cookies\" ما يصل إلى 12 ساعة. في حالات قليلة جدًا ، يفقد الماسح ملف تعريف ارتباط. هذه"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "video"
msgstr "فيديو"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "explains how to add cookies manually."
msgstr "يشرح كيفية إضافة Cookies يدويًا."
#: inc/seers-cookie-consent-plugin-deactivate.php:410
#: inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr "لم يتطابق بانر موضوع الموقع"
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "You can fully customize the banner. Please see the video"
msgstr "يمكنك تخصيص راية بالكامل. يرجى الاطلاع على الفيديو"
#: inc/seers-cookie-consent-plugin-deactivate.php:416
#: inc/seers-cookie-consent-plugin-deactivate.php:417
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr "البرنامج المساعد كسر موقعي"
#: inc/seers-cookie-consent-plugin-deactivate.php:424
#: inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr "لقد وجدت صيغة أفضل"
#: inc/seers-cookie-consent-plugin-deactivate.php:427
msgid "Plugin name"
msgstr "اسم البرنامج المساعد"
#: inc/seers-cookie-consent-plugin-deactivate.php:430
msgid "The plugin is great, but i need specific feature that you do not support."
msgstr "البرنامج المساعد رائع، لكنني بحاجة إلى ميزة محددة لا تدعمها."
#: inc/seers-cookie-consent-plugin-deactivate.php:431
#: inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid "The plugin is great, but i need specific feature that you don't support."
msgstr "البرنامج المساعد رائع، لكنني بحاجة إلى ميزة محددة لا تدعمها."
#: inc/seers-cookie-consent-plugin-deactivate.php:434
msgid "Banner customisation."
msgstr "تخصيص راية."
#: inc/seers-cookie-consent-plugin-deactivate.php:438
#: inc/seers-cookie-consent-plugin-deactivate.php:439
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr "آخر"
#: inc/seers-cookie-consent-plugin-deactivate.php:442
msgid "Kindly tell us the reason so we can improve."
msgstr "يرجى إخبارنا بالسبب حتى نتمكن من التحسن."
#: inc/seers-cookie-consent-plugin-deactivate.php:445
msgid "Submit & Deactivate"
msgstr "تقديم وإلغاء تنشيط"
#: inc/seers-cookie-consent-plugin-deactivate.php:446
msgid "Cancel"
msgstr "يلغي"
#: inc/seers-cookie-consent-plugin-deactivate.php:451
msgid "Skip & Deactivate"
msgstr "تخطي وإلغاء تنشيط"
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr "رفض هذا الإشعار."
#: seers-cookie-consent-banner-privacy-policy.php:135 templates/admin.php:97
msgid "Settings"
msgstr "إعدادات"
#: seers-cookie-consent-banner-privacy-policy.php:141
msgid "Upgrade Premium"
msgstr "ترقية بريميوم"
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:514
#: templates/frontend-popup.php:1738 templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr "نحن نستخدم Cookies لضمان حصولك على أفضل تجربة"
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:558
#: templates/admin.php:559 templates/admin.php:561
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1765
msgid "Allow All"
msgstr "أنا موافق"
#: seers-cookie-consent-banner-privacy-policy.php:294 templates/admin.php:589
#: templates/admin.php:590 templates/admin.php:592
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1766
msgid "Disable All"
msgstr "أنا أعترض"
#: seers-cookie-consent-banner-privacy-policy.php:295 templates/admin.php:621
#: templates/frontend-popup.php:1740
msgid "Preference"
msgstr "الأفضلية"
#: seers-cookie-consent-banner-privacy-policy.php:418
#: seers-cookie-consent-banner-privacy-policy.php:446
#: seers-cookie-consent-banner-privacy-policy.php:452
msgid "Cookies policy added successfully."
msgstr "تمت إضافة سياسة \"Cookie\" بنجاح."
#: seers-cookie-consent-banner-privacy-policy.php:421
msgid "Some thing went wrong. Please check url and try again"
msgstr "هناك خطأ ما. يرجى التحقق من عنوان URL وحاول مرة أخرى"
#: seers-cookie-consent-banner-privacy-policy.php:675
msgid "Some thing went wrong."
msgstr "هناك خطأ ما."
#: seers-cookie-consent-banner-privacy-policy.php:819
msgid "Settings has been updated successfully"
msgstr "تم تحديث الإعدادات بنجاح"
#: templates/admin.php:92 templates/admin.php:841
msgid "Account Setup"
msgstr "اعدادات الحساب"
#: templates/admin.php:100
msgid "Policy"
msgstr "السياسات"
#: templates/admin.php:104
msgid "User Guide"
msgstr "دليل المستخدم"
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr "تم تنشيط لافتة موافقة Seers Cookie الخاصة بك."
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr "لم يتم تنشيط إعلان الموافقة على Seers Cookie بسبب"
#: templates/admin.php:134
msgid "Email"
msgstr "بريد الالكتروني"
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr "أوافق Seers"
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr "الشروط والحالة"
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr "و"
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr "سياسة خاصة"
#: templates/admin.php:154 templates/admin.php:172
msgid "I agree Seers to use my email and url to create an account and power the cookie banner."
msgstr "أوافق على استخدام Seers للبريد الإلكتروني وعنوان url الخاص بي لإنشاء حساب وتشغيل لافتة cookie."
#: templates/admin.php:178
msgid "Create Account"
msgstr "إنشاء حساب"
#: templates/admin.php:181
msgid "Cookie ID"
msgstr "معرف Cookie"
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr "سيتم استلام معرف Cookie Seers تلقائيا بعد إنشاء الحساب"
#: templates/admin.php:197
msgid "Powering all your"
msgstr "قوة كل ما تبذلونه من"
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr "احتياجات الخصوصية وأمن البيانات"
#: templates/admin.php:199
msgid "Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy compliance tools,"
msgstr "الوصول إلى مجموعة واسعة من GDPR و PECR و CCPA و؛ أدوات الامتثال Eprivacy،"
#: templates/admin.php:200
msgid "all"
msgstr "الكل"
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
"مصممة لأخذ المتاعب من الامتثال للبيانات الجديدة\n"
" لوائح الحماية."
#: templates/admin.php:206
msgid "Policies Pack"
msgstr "سياسات حزمة"
#: templates/admin.php:207
msgid "Templates Pack"
msgstr "قوالب حزمة"
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr "موظفي GDPR Etraining"
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr "إدارة الموافقة على Cookie"
#: templates/admin.php:212
msgid "DPIA"
msgstr "DPIA"
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr "مراجعة الحسابات GDPR"
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr "Cyber secure"
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr "إدارة الطلبات الموضوعية"
#: templates/admin.php:217
msgid "START FREE"
msgstr "ابدأ"
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
"خصوصية البيانات و؛\n"
" امتثال. تم حلها"
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
"الثقة في عوالم الرائدة منصة إدارة الخصوصية والموافقة للمساعدة الشركات الامتثال\n"
" مع GDPR، PECR، CCPA و Eprivacy"
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr "بدء Premium اليوم"
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr "SEERS PREMIUM Plan"
#: templates/admin.php:232
msgid "Branding"
msgstr "العلامة التجارية"
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr "متعدد اللغات"
#: templates/admin.php:234
msgid "Consent Log"
msgstr "موافقة تسجيل الدخول"
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr "سياسة Cookie"
#: templates/admin.php:236
msgid "Prior Consent"
msgstr "موافقة مسبقة"
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr "6+ تخطيطات التصميم"
#: templates/admin.php:238
msgid "Customer Support"
msgstr "دعم العملاء"
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr "تخصيص راية"
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr "جدول إعلان Cookie"
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
"ابدأ بريميوم\n"
" اليوم"
#: templates/admin.php:255
msgid "Banner Settings"
msgstr "إعدادات راية"
#: templates/admin.php:260
msgid "Banner"
msgstr "بانر"
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr "مكّن تعطيل Cookie Banner"
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr "انتهاء Cookie"
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr "ضع موافقتك Cookie لتنتهي في غضون أيام."
#: templates/admin.php:291
msgid "Language"
msgstr "لغة"
#: templates/admin.php:291
msgid "Choose a language for the banner Settings > General."
msgstr "اختر لغة لإعدادات Banner> عام."
#: templates/admin.php:475
msgid "Show Badge"
msgstr "عرض شارة"
#: templates/admin.php:475
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr "أظهر شارة لتمكين لافتة Cookie من الظهور بعد الموافقة."
#: templates/admin.php:498
msgid "Visual Settings"
msgstr "إعدادات بصرية"
#: templates/admin.php:503
msgid "Banner Text"
msgstr "راية النص"
#: templates/admin.php:503
msgid "Text to appear on the banner:"
msgstr "النص لتظهر على راية:"
#: templates/admin.php:506 templates/admin.php:524
msgid "Colour"
msgstr "لون"
#: templates/admin.php:506
msgid "The text colour to appear on the banner:"
msgstr "لون النص لتظهر على شعار:"
#: templates/admin.php:521
msgid "Banner Background"
msgstr "بانر خلفية"
#: templates/admin.php:521
msgid "You can change the background colour of the banner:"
msgstr "يمكنك تغيير لون الخلفية للشعار:"
#: templates/admin.php:524
msgid "The background colour of the banner:"
msgstr "لون خلفية اللافتة:"
#: templates/admin.php:538
msgid "Accept Button"
msgstr "قبول زر"
#: templates/admin.php:538
msgid "You can change text colour, button colour and text of the 'Accept All' button"
msgstr "يمكنك تغيير لون النص، لون زر ونص زر 'قبول الكل'"
#: templates/admin.php:541 templates/admin.php:572 templates/admin.php:603
msgid "Text Colour"
msgstr "لون النص"
#: templates/admin.php:541
msgid "The text colour to appear on the 'Accept All' button:"
msgstr "لون النص لتظهر على زر 'قبول الكل':"
#: templates/admin.php:551 templates/admin.php:582 templates/admin.php:613
msgid "Button Colour"
msgstr "لون زر"
#: templates/admin.php:551
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr "'قبول كل' لون زر الظهور على شعار:"
#: templates/admin.php:569
msgid "Reject Button"
msgstr "رفض زر"
#: templates/admin.php:569
msgid "You can change text colour, button colour and text of the 'Reject All' button"
msgstr "يمكنك تغيير لون النص، لون زر ونص زر 'رفض الكل'"
#: templates/admin.php:572
msgid "The text colour to appear on the 'Reject All' button:"
msgstr "يحتوي لون النص على زر 'رفض الكل':"
#: templates/admin.php:582
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr "لون زر زر 'رفض الكل' لتظهر على شعار:"
#: templates/admin.php:600
msgid "Setting Button"
msgstr "زر الإعداد"
#: templates/admin.php:600
msgid "You can change text colour and text of the 'Setting' button"
msgstr "يمكنك تغيير لون النص والنص الزر 'الإعداد'"
#: templates/admin.php:603
msgid "The text colour to appear on the 'Setting' button:"
msgstr "لون النص ليظهر على زر 'الإعداد':"
#: templates/admin.php:613
msgid "The 'Setting' button colour to appear on the banner:"
msgstr "لون زر 'الإعداد' لتظهر على راية:"
#: templates/admin.php:624
msgid "Setting"
msgstr "ضبط"
#: templates/admin.php:632
msgid "Fonts"
msgstr "الخطوط"
#: templates/admin.php:632
msgid "You can select a font for the text of the banner:"
msgstr "يمكنك تحديد خط لنص Banner:"
#: templates/admin.php:684
msgid "Select Button"
msgstr "حدد زر"
#: templates/admin.php:684
msgid "You can select the shape of the buttons that appear on the banner."
msgstr "يمكنك تحديد شكل الأزرار التي تظهر على Banner."
#: templates/admin.php:688
msgid "Default"
msgstr "تقصير"
#: templates/admin.php:692 templates/admin.php:702
msgid "Flat"
msgstr "عريضة"
#: templates/admin.php:695 templates/admin.php:705
msgid "Rounded"
msgstr "مدور"
#: templates/admin.php:698 templates/admin.php:708
msgid "Stroke"
msgstr "Stroke"
#: templates/admin.php:726
msgid "PREVIEW"
msgstr "معاينة"
#: templates/admin.php:727
msgid "SAVE"
msgstr "حفظ"
#: templates/admin.php:746
msgid "Please create cookies policy page and enter URL below."
msgstr "الرجاء إنشاء صفحة سياسة cookie وإدخال URL أدناه."
#: templates/admin.php:750
msgid "Enable Policy:"
msgstr "تمكين السياسة:"
#: templates/admin.php:767
msgid "Cookie Policy and declaration URL:"
msgstr "سياسة cookie والإعلان URL:"
#: templates/admin.php:770
msgid "Policy URL"
msgstr "عنوان URL للسياسة"
#: templates/admin.php:777
msgid "Save"
msgstr "حفظ"
#: templates/admin.php:831
msgid "Premium Plan"
msgstr "خطة متميزة"
#: templates/admin.php:834 templates/admin.php:1023 templates/admin.php:1032
#: templates/admin.php:1040
msgid "Only the users with a paid account can avail this feature."
msgstr "فقط المستخدمين الذين لديهم حساب مدفوع يمكنهم الاستفادة من هذه الميزة."
#: templates/admin.php:839
msgid "Ok"
msgstr "نعم"
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr "شعار SEER"
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr "حول Cookies"
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr "اقرأ سياسة Cookie"
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr "ضرورية"
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr "دائما نشط"
#: templates/frontend-popup.php:1774
msgid "Necessary cookies help make a website usable by enabling basic functions like page navigation and access to secure areas of the website. The website cannot function properly without these cookies."
msgstr "Cookies اللازمة تساعد على جعل موقع إلكتروني صالح للاستخدام من خلال تمكين الوظائف الأساسية مثل تصفح الصفحات والوصول إلى المناطق الآمنة من الموقع. الموقع لا يمكن أن يعمل بشكل صحيح بدون هذه cookies."
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784
#: templates/frontend-popup.php:1794 templates/frontend-popup.php:1804
#: templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr "تفاصيل Cookies"
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr "التفضيلات"
#: templates/frontend-popup.php:1784
msgid "Preference cookies enable a website to remember information that changes the way the website behaves or looks, like your preferred language or the region that you are in."
msgstr "Cookies التفضيل تمكن الموقع من تذكر المعلومات التي تغير الطريقة التي يتصرف بها الموقع أو يبدو بها ، مثل لغتك المفضلة أو المنطقة التي أنت فيها."
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr "إحصائية"
#: templates/frontend-popup.php:1794
msgid "Statistic cookies help website owners to understand how visitors interact with websites by collecting and reporting information anonymously."
msgstr "وتساعد الإحصاءات Cookies أصحاب المواقع على فهم كيفية تفاعل الزوار مع المواقع على الإنترنت عن طريق جمع المعلومات والإبلاغ عنها دون الكشف عن هويتها."
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr "تسويقية"
#: templates/frontend-popup.php:1804
msgid "Marketing cookies are used to track visitors across websites. The intention is to display ads that are relevant and engaging for the individual user and thereby more valuable for publishers and third-party advertisers."
msgstr "تستخدم cookies التسويقية لتعقب الزوار عبر مواقع الإنترنت. والقصد من ذلك هو عرض إعلانات ذات أهمية وإشراك لفرادى المستخدمين ، ومن ثم تكون أكثر قيمة للناشرين وللمعلنين من طرف ثالث."
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr "غير مصنف"
#: templates/frontend-popup.php:1812
msgid "Unclassified cookies are cookies that we are in the process of classifying, together with the providers of individual cookies."
msgstr "Cookies غير المصنفة هي الكوكيز التي نحن بصدد تصنيفها ، جنبا إلى جنب مع مقدمي الكوكيز الفردية."
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr "حفظ خياراتي"
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr "يعمل بواسطة"
#~ msgid "To get your Cookie ID click on Activate"
#~ msgstr "To get your Cookie ID click on Activate"
#~ msgid "Activate"
#~ msgstr "Activate"

View File

@ -0,0 +1,711 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-25 17:21+0500\n"
"PO-Revision-Date: 2022-03-30 04:40-0700\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: seers-cookie-consent-banner-privacy-policy.pot\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:382
msgid "Quick Feedback"
msgstr "Бърза обратна връзка"
#: inc/seers-cookie-consent-plugin-deactivate.php:383
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr "Ако имате време, моля, уведомете ни защо деактивирате:"
#: inc/seers-cookie-consent-plugin-deactivate.php:386
#: inc/seers-cookie-consent-plugin-deactivate.php:387
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr "Банерът не е на необходимия език"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid ""
"The banner picks up your website language automatically. You can always sign-"
"in on your Seers account"
msgstr ""
"Банерът автоматично възприема езика на вашия уебсайт. Винаги можете да "
"влезете в профила си в Seers"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "and choose the language you like. See the video"
msgstr "и изберете желания от вас език. Вижте видеото"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "here"
msgstr "тук"
#: inc/seers-cookie-consent-plugin-deactivate.php:395
#: inc/seers-cookie-consent-plugin-deactivate.php:396
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr "Банерът не се появи"
#: inc/seers-cookie-consent-plugin-deactivate.php:399
#: inc/seers-cookie-consent-plugin-deactivate.php:420
msgid ""
"Most of the times the compatibility issue can be fixed very quickly. Please "
"contact"
msgstr ""
"В повечето случаи проблемът със съвместимостта може да бъде отстранен много "
"бързо. Моля, свържете се с"
#: inc/seers-cookie-consent-plugin-deactivate.php:403
#: inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr "Cookies не се показват в настройките"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid ""
"We are scanning your website and it can take up to 12 hours for Cookies to "
"appear. In a very few cases scanner miss a cookie. This"
msgstr ""
"Сканираме вашия уебсайт и появата на Cookies може да отнеме до 12 часа. В "
"много малко случаи скенерът пропуска бисквитка. Това"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "video"
msgstr "видео"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "explains how to add cookies manually."
msgstr "обяснява как да добавите cookies ръчно."
#: inc/seers-cookie-consent-plugin-deactivate.php:410
#: inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr "Банерът не съответства на темата на уебсайта"
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "You can fully customize the banner. Please see the video"
msgstr "Можете напълно да персонализирате банера. Моля, вижте видеото"
#: inc/seers-cookie-consent-plugin-deactivate.php:416
#: inc/seers-cookie-consent-plugin-deactivate.php:417
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr "Плъгинът счупи сайта ми"
#: inc/seers-cookie-consent-plugin-deactivate.php:424
#: inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr "Намерих по-добър плъгин"
#: inc/seers-cookie-consent-plugin-deactivate.php:427
msgid "Plugin name"
msgstr "Име на плъгина"
#: inc/seers-cookie-consent-plugin-deactivate.php:430
msgid ""
"The plugin is great, but i need specific feature that you do not support."
msgstr ""
"Плъгинът е страхотен, но имам нужда от специфична функция, която не "
"поддържате."
#: inc/seers-cookie-consent-plugin-deactivate.php:431
#: inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid ""
"The plugin is great, but i need specific feature that you don't support."
msgstr ""
"Плъгинът е страхотен, но имам нужда от специфична функция, която не "
"поддържате."
#: inc/seers-cookie-consent-plugin-deactivate.php:434
msgid "Banner customisation."
msgstr "Персонализиране на банери."
#: inc/seers-cookie-consent-plugin-deactivate.php:438
#: inc/seers-cookie-consent-plugin-deactivate.php:439
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr "Други"
#: inc/seers-cookie-consent-plugin-deactivate.php:442
msgid "Kindly tell us the reason so we can improve."
msgstr "Моля, посочете причината, за да можем да я подобрим."
#: inc/seers-cookie-consent-plugin-deactivate.php:445
msgid "Submit & Deactivate"
msgstr "Изпращане и деактивиране"
#: inc/seers-cookie-consent-plugin-deactivate.php:446
msgid "Cancel"
msgstr "Отмяна на"
#: inc/seers-cookie-consent-plugin-deactivate.php:451
msgid "Skip & Deactivate"
msgstr "Пропускане и деактивиране"
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr "Отхвърлете това уведомление."
#: seers-cookie-consent-banner-privacy-policy.php:135 templates/admin.php:97
msgid "Settings"
msgstr "Настройки"
#: seers-cookie-consent-banner-privacy-policy.php:141
msgid "Upgrade Premium"
msgstr "Надграждане Premium"
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:514
#: templates/frontend-popup.php:1738 templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr ""
"Ние използваме cookies за да гарантираме, че получавате най-доброто "
"изживяване"
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:558
#: templates/admin.php:559 templates/admin.php:561
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1765
msgid "Allow All"
msgstr "Разрешаване на всички"
#: seers-cookie-consent-banner-privacy-policy.php:294 templates/admin.php:589
#: templates/admin.php:590 templates/admin.php:592
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1766
msgid "Disable All"
msgstr "Деактивирайте всички"
#: seers-cookie-consent-banner-privacy-policy.php:295 templates/admin.php:621
#: templates/frontend-popup.php:1740
msgid "Preference"
msgstr "Предпочитания"
#: seers-cookie-consent-banner-privacy-policy.php:418
#: seers-cookie-consent-banner-privacy-policy.php:446
#: seers-cookie-consent-banner-privacy-policy.php:452
msgid "Cookies policy added successfully."
msgstr "Политиката Cookies е добавена успешно."
#: seers-cookie-consent-banner-privacy-policy.php:421
msgid "Some thing went wrong. Please check url and try again"
msgstr "Нещо се е объркало. Моля, проверете URL адреса и опитайте отново"
#: seers-cookie-consent-banner-privacy-policy.php:675
msgid "Some thing went wrong."
msgstr "Нещо се е объркало."
#: seers-cookie-consent-banner-privacy-policy.php:819
msgid "Settings has been updated successfully"
msgstr "Настройките са актуализирани успешно"
#: templates/admin.php:92 templates/admin.php:841
msgid "Account Setup"
msgstr "Настройка на акаунта"
#: templates/admin.php:100
msgid "Policy"
msgstr "Nолитика"
#: templates/admin.php:104
msgid "User Guide"
msgstr "Ръководство за потребителя"
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr "Вашият банер за съгласие с cookie на Seers е активиран."
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr "Вашият банер за съгласие с cookie на Seers не е активиран, защото"
#: templates/admin.php:134
msgid "Email"
msgstr "Имейл"
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr "Съгласен съм Seers"
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr "Правила и условия"
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr "и"
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr "Политика за поверителност"
#: templates/admin.php:154 templates/admin.php:172
msgid ""
"I agree Seers to use my email and url to create an account and power the "
"cookie banner."
msgstr ""
"Съгласен съм Seers да използва моя имейл и URL адрес за създаване на акаунт "
"и захранване на банера с cookie."
#: templates/admin.php:178
msgid "Create Account"
msgstr "Създаване на акаунт"
#: templates/admin.php:181
msgid "Cookie ID"
msgstr "Cookie ID"
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr ""
"Seers \"Cookie ID\" ще бъде получен автоматично след създаването на акаунт"
#: templates/admin.php:197
msgid "Powering all your"
msgstr "Захранване на всички ваши"
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr "Потребности за поверителност и сигурност на данните"
#: templates/admin.php:199
msgid ""
"Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy "
"compliance tools,"
msgstr ""
"Получете достъп до широк набор от инструменти за съответствие с GDPR, PECR, "
"CCPA и ePrivacy,"
#: templates/admin.php:200
msgid "all"
msgstr "всички"
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
"създадени, за да премахнат затрудненията, свързани със спазването на новите "
"данни.\n"
"правила за защита."
#: templates/admin.php:206
msgid "Policies Pack"
msgstr "Пакет политики"
#: templates/admin.php:207
msgid "Templates Pack"
msgstr "Пакет шаблони"
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr "Електронно обучение на персонала по GDPR"
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr "Управление на съгласието cookie"
#: templates/admin.php:212
msgid "DPIA"
msgstr "DPIA"
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr "Одит на GDPR"
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr "Киберсигурност"
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr "Управление на заявки за теми"
#: templates/admin.php:217
msgid "START FREE"
msgstr "ЗАПОЧНЕТЕ БЕЗПЛАТНО"
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
"Поверителност на данните и\n"
"Съответствие. Решено"
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help "
"companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
"Доверете се на водещата в света платформа за управление на поверителността и "
"съгласието, за да помогнете на компаниите да спазват изискванията\n"
" с GDPR, PECR, CCPA и ePrivacy"
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr "СТАРТИРАЙТЕ ПРЕМИУМ ОЩЕ ДНЕС"
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr "План Seers Premium"
#: templates/admin.php:232
msgid "Branding"
msgstr "Брандиране"
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr "Многоезичен"
#: templates/admin.php:234
msgid "Consent Log"
msgstr "Дневник на съгласието"
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr "Политика за Cookie"
#: templates/admin.php:236
msgid "Prior Consent"
msgstr "Предварително съгласие"
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr "6+ оформления на дизайна"
#: templates/admin.php:238
msgid "Customer Support"
msgstr "Поддръжка на клиенти"
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr "Персонализиране на банери"
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr "Таблица за деклариране на Cookie"
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
"ЗАПОЧНЕТЕ С PREMIUM\n"
" ДНЕС"
#: templates/admin.php:255
msgid "Banner Settings"
msgstr "Настройки на банера"
#: templates/admin.php:260
msgid "Banner"
msgstr "Банер"
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr "Активиране/деактивиране на банера Cookie"
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr "Изтичане на срока на валидност на Cookie"
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr "Задайте cookie за съгласие да изтече след дни."
#: templates/admin.php:291
msgid "Language"
msgstr "Език"
#: templates/admin.php:291
msgid "Choose a language for the banner Settings > General."
msgstr "Изберете език за банера Настройки > Общи."
#: templates/admin.php:475
msgid "Show Badge"
msgstr "Покажи значката"
#: templates/admin.php:475
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr ""
"Показвайте значка, за да разрешите на банера за cookie да се показва след "
"получаване на съгласие."
#: templates/admin.php:498
msgid "Visual Settings"
msgstr "Визуални настройки"
#: templates/admin.php:503
msgid "Banner Text"
msgstr "Текст на банера"
#: templates/admin.php:503
msgid "Text to appear on the banner:"
msgstr "Текст, който ще се появи на банера:"
#: templates/admin.php:506 templates/admin.php:524
msgid "Colour"
msgstr "Цвят"
#: templates/admin.php:506
msgid "The text colour to appear on the banner:"
msgstr "Цветът на текста, който ще се показва на банера:"
#: templates/admin.php:521
msgid "Banner Background"
msgstr "Фон на банера"
#: templates/admin.php:521
msgid "You can change the background colour of the banner:"
msgstr "Можете да промените цвета на фона на банера:"
#: templates/admin.php:524
msgid "The background colour of the banner:"
msgstr "Цветът на фона на банера:"
#: templates/admin.php:538
msgid "Accept Button"
msgstr "Бутон за приемане"
#: templates/admin.php:538
msgid ""
"You can change text colour, button colour and text of the 'Accept All' button"
msgstr ""
"You can change text colour, button colour and text of the 'Accept All' button"
#: templates/admin.php:541 templates/admin.php:572 templates/admin.php:603
msgid "Text Colour"
msgstr "Цвят на текста"
#: templates/admin.php:541
msgid "The text colour to appear on the 'Accept All' button:"
msgstr "Цветът на текста, който се появява на бутона \"Приемам всички\":"
#: templates/admin.php:551 templates/admin.php:582 templates/admin.php:613
msgid "Button Colour"
msgstr "Цвят на бутона"
#: templates/admin.php:551
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr "Цветът на бутона \"Accept All\" се появява на банера:"
#: templates/admin.php:569
msgid "Reject Button"
msgstr "Бутон за отхвърляне"
#: templates/admin.php:569
msgid ""
"You can change text colour, button colour and text of the 'Reject All' button"
msgstr ""
"Можете да промените цвета на текста, цвета на бутона и текста на бутона "
"\"Отхвърляне на всички\""
#: templates/admin.php:572
msgid "The text colour to appear on the 'Reject All' button:"
msgstr "Цветът на текста, който се появява на бутона \"Отхвърляне на всички\":"
#: templates/admin.php:582
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr "Цветът на бутона \"Отхвърляне на всички\" се появява на банера:"
#: templates/admin.php:600
msgid "Setting Button"
msgstr "Бутон за настройка"
#: templates/admin.php:600
msgid "You can change text colour and text of the 'Setting' button"
msgstr "Можете да промените цвета на текста и текста на бутона \"Настройки\""
#: templates/admin.php:603
msgid "The text colour to appear on the 'Setting' button:"
msgstr "Цветът на текста, който ще се появява на бутона \"Настройки\":"
#: templates/admin.php:613
msgid "The 'Setting' button colour to appear on the banner:"
msgstr "В банера се появява цветът на бутона \"Настройки\":"
#: templates/admin.php:624
msgid "Setting"
msgstr "Задаване на"
#: templates/admin.php:632
msgid "Fonts"
msgstr "Шрифтове"
#: templates/admin.php:632
msgid "You can select a font for the text of the banner:"
msgstr "Можете да изберете шрифт за текста на банера:"
#: templates/admin.php:684
msgid "Select Button"
msgstr "Бутон за избор"
#: templates/admin.php:684
msgid "You can select the shape of the buttons that appear on the banner."
msgstr "Можете да изберете формата на бутоните, които се появяват на банера."
#: templates/admin.php:688
msgid "Default"
msgstr "По подразбиране"
#: templates/admin.php:692 templates/admin.php:702
msgid "Flat"
msgstr "Плосък"
#: templates/admin.php:695 templates/admin.php:705
msgid "Rounded"
msgstr "Заоблени"
#: templates/admin.php:698 templates/admin.php:708
msgid "Stroke"
msgstr "Stroke"
#: templates/admin.php:726
msgid "PREVIEW"
msgstr "ПРЕДВАРИТЕЛЕН ПРЕГЛЕД"
#: templates/admin.php:727
msgid "SAVE"
msgstr "ЗАПАЗЕТЕ"
#: templates/admin.php:746
msgid "Please create cookies policy page and enter URL below."
msgstr "Моля, създайте страница с правила за cookies и въведете URL по-долу."
#: templates/admin.php:750
msgid "Enable Policy:"
msgstr "Разрешаване на политиката:"
#: templates/admin.php:767
msgid "Cookie Policy and declaration URL:"
msgstr "Политика за Cookie и URL адрес на декларацията:"
#: templates/admin.php:770
msgid "Policy URL"
msgstr "URL адрес на политиката"
#: templates/admin.php:777
msgid "Save"
msgstr "Запазете"
#: templates/admin.php:831
msgid "Premium Plan"
msgstr "Премиум план"
#: templates/admin.php:834 templates/admin.php:1023 templates/admin.php:1032
#: templates/admin.php:1040
msgid "Only the users with a paid account can avail this feature."
msgstr ""
"Само потребителите с платен акаунт могат да се възползват от тази функция."
#: templates/admin.php:839
msgid "Ok"
msgstr "OK"
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr "лого на Seers"
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr "За Cookies"
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr "Прочетете политиката за Cookie"
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr "Необходимо"
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr "Винаги активен"
#: templates/frontend-popup.php:1774
msgid ""
"Necessary cookies help make a website usable by enabling basic functions "
"like page navigation and access to secure areas of the website. The website "
"cannot function properly without these cookies."
msgstr ""
"Необходимите cookies помагат за използването на уебсайта, като позволяват "
"основни функции като навигация на страницата и достъп до защитени зони на "
"уебсайта. Уебсайтът не може да функционира правилно без тези бисквитки."
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784
#: templates/frontend-popup.php:1794 templates/frontend-popup.php:1804
#: templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr "Подробности за Cookies"
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr "Предпочитания"
#: templates/frontend-popup.php:1784
msgid ""
"Preference cookies enable a website to remember information that changes the "
"way the website behaves or looks, like your preferred language or the region "
"that you are in."
msgstr ""
"Cookies за предпочитания позволяват на уебсайта да запомни информация, която "
"променя начина, по който уебсайтът се държи или изглежда, като например "
"предпочитания от вас език или региона, в който се намирате."
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr "Статистика"
#: templates/frontend-popup.php:1794
msgid ""
"Statistic cookies help website owners to understand how visitors interact "
"with websites by collecting and reporting information anonymously."
msgstr ""
"Статистическите cookies помагат на собствениците на уебсайтове да разберат "
"как посетителите взаимодействат с уебсайтовете, като събират и докладват "
"информация анонимно."
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr "Маркетинг"
#: templates/frontend-popup.php:1804
msgid ""
"Marketing cookies are used to track visitors across websites. The intention "
"is to display ads that are relevant and engaging for the individual user and "
"thereby more valuable for publishers and third-party advertisers."
msgstr ""
"Маркетинговите cookies се използват за проследяване на посетителите в "
"уебсайтове. Намерението е да се показват реклами, които са подходящи и "
"ангажиращи за отделния потребител и по този начин по-ценни за издателите и "
"трети страни рекламодатели."
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr "Некласифициран"
#: templates/frontend-popup.php:1812
msgid ""
"Unclassified cookies are cookies that we are in the process of classifying, "
"together with the providers of individual cookies."
msgstr ""
"Некласифицираните cookies са cookies които сме в процес на класификация, "
"заедно с доставчиците на отделни cookies."
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr "Запазете избора ми"
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr "oсъществено от"
#~ msgid "To get your Cookie ID click on Activate"
#~ msgstr "To get your Cookie ID click on Activate"
#~ msgid "Activate"
#~ msgstr "Activate"

View File

@ -0,0 +1,677 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-16 17:05+0500\n"
"PO-Revision-Date: 2022-03-30 04:43-0700\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: cs_CZ\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: seers-cookie-consent-banner-privacy-policy.pot\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:350
msgid "Quick Feedback"
msgstr "Rychlá zpětná vazba"
#: inc/seers-cookie-consent-plugin-deactivate.php:351
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr "Pokud máte chvilku, dejte nám prosím vědět, proč se deaktivujete:"
#: inc/seers-cookie-consent-plugin-deactivate.php:354
#: inc/seers-cookie-consent-plugin-deactivate.php:355
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr "Banner není v požadovaném jazyce"
#: inc/seers-cookie-consent-plugin-deactivate.php:359
msgid ""
"The banner picks up your website language automatically. You can always sign-in on your Seers "
"account"
msgstr ""
"Banner automaticky přebírá jazyk vaší webové stránky. Vždy se můžete přihlásit ke svému účtu "
"Seers"
#: inc/seers-cookie-consent-plugin-deactivate.php:359
msgid "and choose the language you like. See the video"
msgstr "a vyberte jazyk, který se vám líbí. Viz video"
#: inc/seers-cookie-consent-plugin-deactivate.php:359
#: inc/seers-cookie-consent-plugin-deactivate.php:381
msgid "here"
msgstr "tady"
#: inc/seers-cookie-consent-plugin-deactivate.php:363
#: inc/seers-cookie-consent-plugin-deactivate.php:364
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr "Banner se neobjevil"
#: inc/seers-cookie-consent-plugin-deactivate.php:367
#: inc/seers-cookie-consent-plugin-deactivate.php:388
msgid "Most of the times the compatibility issue can be fixed very quickly. Please contact"
msgstr "Většinu času může být problém kompatibility velmi rychlé. Prosím kontaktujte"
#: inc/seers-cookie-consent-plugin-deactivate.php:371
#: inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr "Cookies se zobrazují v nastavení"
#: inc/seers-cookie-consent-plugin-deactivate.php:374
msgid ""
"We are scanning your website and it can take up to 12 hours for Cookies to appear. In a very few "
"cases scanner miss a cookie. This"
msgstr ""
"Skenujeme vaše webové stránky a to může trvat až 12 hodin, než se cookies objeví. Ve velmi málo "
"případech Scanner chybí cookie. Tento"
#: inc/seers-cookie-consent-plugin-deactivate.php:374
msgid "video"
msgstr "video"
#: inc/seers-cookie-consent-plugin-deactivate.php:374
msgid "explains how to add cookies manually."
msgstr "vysvětluje, jak přidat soubory cookie ručně."
#: inc/seers-cookie-consent-plugin-deactivate.php:378
#: inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr "Banner neodpovídá tématu webu"
#: inc/seers-cookie-consent-plugin-deactivate.php:381
msgid "You can fully customize the banner. Please see the video"
msgstr "Můžete plně přizpůsobit banner. Viz video"
#: inc/seers-cookie-consent-plugin-deactivate.php:384
#: inc/seers-cookie-consent-plugin-deactivate.php:385
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr "Plugin mi zlomil místo"
#: inc/seers-cookie-consent-plugin-deactivate.php:392
#: inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr "Našel jsem lepší plugin"
#: inc/seers-cookie-consent-plugin-deactivate.php:395
msgid "Plugin name"
msgstr "Plugin Název"
#: inc/seers-cookie-consent-plugin-deactivate.php:398
msgid "The plugin is great, but i need specific feature that you do not support."
msgstr "Plugin je skvělý, ale potřebuji specifickou funkci, kterou nepodporujete."
#: inc/seers-cookie-consent-plugin-deactivate.php:399
#: inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid "The plugin is great, but i need specific feature that you don't support."
msgstr "Plugin je skvělý, ale potřebuji specifickou funkci, kterou nepodporujete."
#: inc/seers-cookie-consent-plugin-deactivate.php:402
msgid "Banner customisation."
msgstr "Přizpůsobení banneru."
#: inc/seers-cookie-consent-plugin-deactivate.php:406
#: inc/seers-cookie-consent-plugin-deactivate.php:407
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr "Jiný"
#: inc/seers-cookie-consent-plugin-deactivate.php:410
msgid "Kindly tell us the reason so we can improve."
msgstr "Laskavě nám řekněte ten důvod, abychom se mohli zlepšit."
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "Submit & Deactivate"
msgstr "Odeslat & deaktivovat"
#: inc/seers-cookie-consent-plugin-deactivate.php:414
msgid "Cancel"
msgstr "Zrušení"
#: inc/seers-cookie-consent-plugin-deactivate.php:419
msgid "Skip & Deactivate"
msgstr "Přeskočit a deaktivovat"
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr "Odmítnout toto oznámení."
#: seers-cookie-consent-banner-privacy-policy.php:133 templates/admin.php:97
msgid "Settings"
msgstr "Nastavení"
#: seers-cookie-consent-banner-privacy-policy.php:139
msgid "Upgrade Premium"
msgstr "Upgrade premium"
#: seers-cookie-consent-banner-privacy-policy.php:290 templates/admin.php:740
#: templates/frontend-popup.php:1738 templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr "Používáme soubory cookie, abychom vám zajistili co nejlepší zážitek"
#: seers-cookie-consent-banner-privacy-policy.php:291 templates/admin.php:784
#: templates/admin.php:785 templates/admin.php:787 templates/frontend-popup.php:1740
#: templates/frontend-popup.php:1765
msgid "Allow All"
msgstr "Povolit vše"
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:815
#: templates/admin.php:816 templates/admin.php:818 templates/frontend-popup.php:1740
#: templates/frontend-popup.php:1766
msgid "Disable All"
msgstr "Zakázat vše"
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:847
#: templates/frontend-popup.php:1740
msgid "Preference"
msgstr "Předvolby"
#: seers-cookie-consent-banner-privacy-policy.php:416
#: seers-cookie-consent-banner-privacy-policy.php:444
#: seers-cookie-consent-banner-privacy-policy.php:450
msgid "Cookies policy added successfully."
msgstr "Zásady souborů cookie úspěšně přidalo."
#: seers-cookie-consent-banner-privacy-policy.php:419
msgid "Some thing went wrong. Please check url and try again"
msgstr "Něco se pokazilo. Zkontrolujte prosím adresu URL a zkuste to znovu"
#: seers-cookie-consent-banner-privacy-policy.php:670
msgid "Some thing went wrong."
msgstr "Něco se pokazilo."
#: seers-cookie-consent-banner-privacy-policy.php:806
msgid "Settings has been updated successfully"
msgstr "Nastavení byla úspěšně aktualizována"
#: templates/admin.php:92 templates/admin.php:1067
msgid "Account Setup"
msgstr "Nastavení účtu"
#: templates/admin.php:100
msgid "Policy"
msgstr "Zásady"
#: templates/admin.php:104
msgid "User Guide"
msgstr "Uživatelská příručka"
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr "Váš banner Seers Cookie Consent je aktivován."
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr "Banner souhlasu se soubory cookie společnosti Seers NENÍ aktivován, protože"
#: templates/admin.php:134
msgid "Email"
msgstr "E-mailem"
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr "Souhlasím se Seers"
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr "Podmínky a podmínky"
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr "a"
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr "Zásady ochrany osobních údajů"
#: templates/admin.php:154 templates/admin.php:172
msgid "I agree Seers to use my email and url to create an account and power the cookie banner."
msgstr "I agree Seers to use my email and url to create an account and power the cookie banner."
#: templates/admin.php:178
msgid "Create Account"
msgstr "Vytvořit účet"
#: templates/admin.php:181
msgid "Cookie ID"
msgstr "Cookie ID"
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr "ID souborů cookie Seers obdržíte automaticky po vytvoření účtu"
#: templates/admin.php:197
msgid "Powering all your"
msgstr "Napájení všeho"
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr "Soukromí a; Potřeby zabezpečení dat"
#: templates/admin.php:199
msgid "Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy compliance tools,"
msgstr "Získat přístup k rozsáhlému rozsahu GDPR, PREC, CCPA a; Nástroje pro dodržování ePrivacy,"
#: templates/admin.php:200
msgid "all"
msgstr "všechno"
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
"navržen tak, aby se neobjevil v souladu s novými údaji\n"
" Ochranné předpisy."
#: templates/admin.php:206
msgid "Policies Pack"
msgstr "Zásady Pack"
#: templates/admin.php:207
msgid "Templates Pack"
msgstr "Šablony Pack"
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr "GDPR personál Etraining"
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr "Správa souboru cookie"
#: templates/admin.php:212
msgid "DPIA"
msgstr "Dpia"
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr "Audit GDPR"
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr "Cyber Secure"
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr "Správa požadavků na předmět"
#: templates/admin.php:217
msgid "START FREE"
msgstr "Začněte zdarma"
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
"Ochrana osobních údajů a;\n"
" Dodržování. Vyřešen"
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
"Trust WorldS vedoucí platforma pro správu soukromí a souhlasu, která pomáhají společnostem "
"dodržovat\n"
" s GDPR, PREC, CCPA a EPRIVACY"
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr "Začněte pojistný dnes"
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr "Plán Seers Premium"
#: templates/admin.php:232
msgid "Branding"
msgstr "Branding"
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr "Multi Lingual"
#: templates/admin.php:234
msgid "Consent Log"
msgstr "Protokol souhlasu"
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr "Zásady cookie"
#: templates/admin.php:236
msgid "Prior Consent"
msgstr "Předchozí souhlas"
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr "6+ rozložení designu"
#: templates/admin.php:238
msgid "Customer Support"
msgstr "Zákaznická podpora"
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr "Přizpůsobení banneru"
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr "Deklarace soubor cookie tabulka"
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
"\"Start premium\n"
" DNES\""
#: templates/admin.php:255
msgid "Banner Settings"
msgstr "Nastavení banneru"
#: templates/admin.php:260
msgid "Banner"
msgstr "Prapor"
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr "Povolit / Zakázat banner cookie"
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr "Cookie Expiry"
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr "Nastavte svůj souhlas cookie, abyste vypršeli ve dnech."
#: templates/admin.php:291
msgid "Language"
msgstr "Jazyk"
#: templates/admin.php:291
msgid "Choose a language for the banner."
msgstr "Vyberte jazyk pro nastavení banneru> Obecné."
#: templates/admin.php:701
msgid "Show Badge"
msgstr "Show Badge"
#: templates/admin.php:701
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr "Ukažte odznak, který umožňuje, aby banner cookie objeví sešlá pošta."
#: templates/admin.php:724
msgid "Visual Settings"
msgstr "Vizuální nastavení"
#: templates/admin.php:729
msgid "Banner Text"
msgstr "Banner Text"
#: templates/admin.php:729
msgid "Text to appear on the banner:"
msgstr "Text se zobrazí na banneru:"
#: templates/admin.php:732 templates/admin.php:750
msgid "Colour"
msgstr "Barva"
#: templates/admin.php:732
msgid "The text colour to appear on the banner:"
msgstr "Barva textu se zobrazí na banneru:"
#: templates/admin.php:747
msgid "Banner Background"
msgstr "Banner Background"
#: templates/admin.php:747
msgid "You can change the background colour of the banner:"
msgstr "Můžete změnit barvu pozadí banneru:"
#: templates/admin.php:750
msgid "The background colour of the banner:"
msgstr "Barva pozadí banneru:"
#: templates/admin.php:764
msgid "Accept Button"
msgstr "Přijmout tlačítko"
#: templates/admin.php:764
msgid "You can change text colour, button colour and text of the 'Accept All' button"
msgstr "Můžete změnit barvu textu, barvu tlačítka a text 'Přijmout všechny'"
#: templates/admin.php:767 templates/admin.php:798 templates/admin.php:829
msgid "Text Colour"
msgstr "Barva textu"
#: templates/admin.php:767
msgid "The text colour to appear on the 'Accept All' button:"
msgstr "Barva textu se zobrazí na tlačítku 'Přijmout všechny':"
#: templates/admin.php:777 templates/admin.php:808 templates/admin.php:839
msgid "Button Colour"
msgstr "Barva tlačítka"
#: templates/admin.php:777
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr "'Přijmout all' barvu pro zobrazení na banneru:"
#: templates/admin.php:795
msgid "Reject Button"
msgstr "Tlačítko odmítnout"
#: templates/admin.php:795
msgid "You can change text colour, button colour and text of the 'Reject All' button"
msgstr "Můžete změnit barvu textu, barvu tlačítka a text 'Odmítnout všechny'"
#: templates/admin.php:798
msgid "The text colour to appear on the 'Reject All' button:"
msgstr "Barva textu se zobrazí na tlačítku 'Odmítnout všechny':"
#: templates/admin.php:808
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr "Barva 'Odmítnout all' pro zobrazení na banneru:"
#: templates/admin.php:826
msgid "Setting Button"
msgstr "Tlačítko nastavení"
#: templates/admin.php:826
msgid "You can change text colour and text of the 'Setting' button"
msgstr "Můžete změnit barvu textu a text tlačítka 'Nastavení'"
#: templates/admin.php:829
msgid "The text colour to appear on the 'Setting' button:"
msgstr "Barva textu se zobrazí na tlačítku 'Nastavení':"
#: templates/admin.php:839
msgid "The 'Setting' button colour to appear on the banner:"
msgstr "Barva 'Nastavení' se zobrazí na banneru:"
#: templates/admin.php:850
msgid "Setting"
msgstr "Nastavení"
#: templates/admin.php:858
msgid "Fonts"
msgstr "Fonts"
#: templates/admin.php:858
msgid "You can select a font for the text of the banner:"
msgstr "Můžete vybrat písmo pro text banneru:"
#: templates/admin.php:910
msgid "Select Button"
msgstr "Zvolte tlačítko"
#: templates/admin.php:910
msgid "You can select the shape of the buttons that appear on the banner."
msgstr "Můžete vybrat tvar tlačítek, které se zobrazí na banneru."
#: templates/admin.php:914
msgid "Default"
msgstr "Výchozí hodnota"
#: templates/admin.php:918 templates/admin.php:928
msgid "Flat"
msgstr "Byt"
#: templates/admin.php:921 templates/admin.php:931
msgid "Rounded"
msgstr "Zaoblený"
#: templates/admin.php:924 templates/admin.php:934
msgid "Stroke"
msgstr "Stroke"
#: templates/admin.php:952
msgid "PREVIEW"
msgstr "Náhled"
#: templates/admin.php:953
msgid "SAVE"
msgstr "ULOŽIT"
#: templates/admin.php:972
msgid "Please create cookies policy page and enter URL below."
msgstr "Vytvořte stránku Zásady cookies a zadejte adresu URL níže."
#: templates/admin.php:976
msgid "Enable Policy:"
msgstr "Povolit politiku:"
#: templates/admin.php:993
msgid "Cookie Policy and declaration URL:"
msgstr "Zásady a prohlášení URL prohlášení cookie:"
#: templates/admin.php:996
msgid "Policy URL"
msgstr "Politika URL"
#: templates/admin.php:1003
msgid "Save"
msgstr "ULOŽIT"
#: templates/admin.php:1057
msgid "Premium Plan"
msgstr "Prémiový plán"
#: templates/admin.php:1060 templates/admin.php:1249 templates/admin.php:1258
#: templates/admin.php:1266
msgid "Only the users with a paid account can avail this feature."
msgstr "Tuto funkci mohou využít pouze uživatelé s placeným účtem."
#: templates/admin.php:1065
msgid "Ok"
msgstr "OK"
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr "logo Seers"
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr "O souborech cookie"
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr "Číst zásady cookie"
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr "Nezbytné"
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr "Vždy aktivní"
#: templates/frontend-popup.php:1774
msgid ""
"Necessary cookies help make a website usable by enabling basic functions like page navigation "
"and access to secure areas of the website. The website cannot function properly without these "
"cookies."
msgstr ""
"Nezbytné soubory cookie pomáhají učinit web použitelným tím, že umožňují základní funkce, jako "
"je navigace na stránce a přístup k zabezpečeným oblastem webu. Bez těchto souborů cookie nemůže "
"web správně fungovat."
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784
#: templates/frontend-popup.php:1794 templates/frontend-popup.php:1804
#: templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr "Detail cookies"
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr "Předvolby"
#: templates/frontend-popup.php:1784
msgid ""
"Preference cookies enable a website to remember information that changes the way the website "
"behaves or looks, like your preferred language or the region that you are in."
msgstr ""
"Přednostní soubory cookie umožňují webové stránky zapamatovat si informace, které mění způsob, "
"jakým web se chová nebo vypadá, jako je váš preferovaný jazyk nebo oblast, ve kterém jste."
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr "Statistiky"
#: templates/frontend-popup.php:1794
msgid ""
"Statistic cookies help website owners to understand how visitors interact with websites by "
"collecting and reporting information anonymously."
msgstr ""
"Statistické soubory cookie pomáhají majitelům webových stránek pochopit, jak návštěvníci "
"interagují s webovými stránkami, a to prostřednictvím anonymního shromažďování a vykazování "
"informací."
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr "Marketing"
#: templates/frontend-popup.php:1804
msgid ""
"Marketing cookies are used to track visitors across websites. The intention is to display ads "
"that are relevant and engaging for the individual user and thereby more valuable for publishers "
"and third-party advertisers."
msgstr ""
"Marketingové soubory cookie se používají ke sledování návštěvníků na různých webových stránkách. "
"Záměrem je zobrazovat reklamy, které jsou relevantní a zajímavé pro jednotlivé uživatele, a tím "
"hodnotnější pro vydavatele a inzerenty třetích stran."
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr "Nezařazené"
#: templates/frontend-popup.php:1812
msgid ""
"Unclassified cookies are cookies that we are in the process of classifying, together with the "
"providers of individual cookies."
msgstr ""
"Neklasifikované soubory cookie jsou soubory cookie, které právě klasifikujeme společně s "
"poskytovateli jednotlivých souborů cookie."
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr "Uložit mé volby"
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr "powered by"
#~ msgid "To get your Cookie ID click on Activate"
#~ msgstr "To get your Cookie ID click on Activate"
#~ msgid "Activate"
#~ msgstr "Activate"

View File

@ -0,0 +1,702 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-25 17:21+0500\n"
"PO-Revision-Date: 2022-03-30 04:44-0700\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: da_DK\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: seers-cookie-consent-banner-privacy-policy.pot\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:382
msgid "Quick Feedback"
msgstr "Hurtig feedback"
#: inc/seers-cookie-consent-plugin-deactivate.php:383
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr "Hvis du har et øjeblik, så lad os vide, hvorfor du deaktiverer:"
#: inc/seers-cookie-consent-plugin-deactivate.php:386
#: inc/seers-cookie-consent-plugin-deactivate.php:387
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr "Banneren er ikke på det krævede sprog"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid ""
"The banner picks up your website language automatically. You can always sign-"
"in on your Seers account"
msgstr ""
"Banneren vælger dit website sprog automatisk. Du kan altid logge ind på din "
"Seers konto"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "and choose the language you like. See the video"
msgstr "og vælg det sprog, du kan lide. Se videoen"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "here"
msgstr "her"
#: inc/seers-cookie-consent-plugin-deactivate.php:395
#: inc/seers-cookie-consent-plugin-deactivate.php:396
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr "Banner vises ikke"
#: inc/seers-cookie-consent-plugin-deactivate.php:399
#: inc/seers-cookie-consent-plugin-deactivate.php:420
msgid ""
"Most of the times the compatibility issue can be fixed very quickly. Please "
"contact"
msgstr ""
"De fleste gange kan kompatibilitetsproblemet løses meget hurtigt. Venligst "
"kontakt"
#: inc/seers-cookie-consent-plugin-deactivate.php:403
#: inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr "Cookies viser ikke i indstillinger"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid ""
"We are scanning your website and it can take up to 12 hours for Cookies to "
"appear. In a very few cases scanner miss a cookie. This"
msgstr ""
"Vi scanner din hjemmeside, og det kan tage op til 12 timer for cookies at "
"blive vist. I mange få tilfælde savner scanneren en cookie. Dette"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "video"
msgstr "video"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "explains how to add cookies manually."
msgstr "forklarer, hvordan man tilføjer cookies manuelt."
#: inc/seers-cookie-consent-plugin-deactivate.php:410
#: inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr "Banneren matchede ikke website tema"
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "You can fully customize the banner. Please see the video"
msgstr "Du kan fuldt ud tilpasse banneren. Se venligst videoen"
#: inc/seers-cookie-consent-plugin-deactivate.php:416
#: inc/seers-cookie-consent-plugin-deactivate.php:417
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr "Plugin brød mit websted"
#: inc/seers-cookie-consent-plugin-deactivate.php:424
#: inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr "Jeg har fundet et bedre plugin"
#: inc/seers-cookie-consent-plugin-deactivate.php:427
msgid "Plugin name"
msgstr "Plugin navn"
#: inc/seers-cookie-consent-plugin-deactivate.php:430
msgid ""
"The plugin is great, but i need specific feature that you do not support."
msgstr ""
"Pluginen er fantastisk, men jeg har brug for specifik funktion, som du ikke "
"støtter."
#: inc/seers-cookie-consent-plugin-deactivate.php:431
#: inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid ""
"The plugin is great, but i need specific feature that you don't support."
msgstr ""
"Plugin er fantastisk, men jeg har brug for specifik funktion, som du ikke "
"støtter."
#: inc/seers-cookie-consent-plugin-deactivate.php:434
msgid "Banner customisation."
msgstr "Banner tilpasning."
#: inc/seers-cookie-consent-plugin-deactivate.php:438
#: inc/seers-cookie-consent-plugin-deactivate.php:439
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr "Andet"
#: inc/seers-cookie-consent-plugin-deactivate.php:442
msgid "Kindly tell us the reason so we can improve."
msgstr "Venligst fortæl os grunden, så vi kan forbedre."
#: inc/seers-cookie-consent-plugin-deactivate.php:445
msgid "Submit & Deactivate"
msgstr "Indsend & Deactivate"
#: inc/seers-cookie-consent-plugin-deactivate.php:446
msgid "Cancel"
msgstr "Afbestille"
#: inc/seers-cookie-consent-plugin-deactivate.php:451
msgid "Skip & Deactivate"
msgstr "Skip & Deactivate"
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr "Afvis denne meddelelse."
#: seers-cookie-consent-banner-privacy-policy.php:135 templates/admin.php:97
msgid "Settings"
msgstr "Indstillinger"
#: seers-cookie-consent-banner-privacy-policy.php:141
msgid "Upgrade Premium"
msgstr "Opgrader Premium"
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:514
#: templates/frontend-popup.php:1738 templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr "Vi bruger cookies for at sikre, at du får den bedste oplevelse"
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:558
#: templates/admin.php:559 templates/admin.php:561
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1765
msgid "Allow All"
msgstr "Tillad all"
#: seers-cookie-consent-banner-privacy-policy.php:294 templates/admin.php:589
#: templates/admin.php:590 templates/admin.php:592
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1766
msgid "Disable All"
msgstr "Slå alt fra"
#: seers-cookie-consent-banner-privacy-policy.php:295 templates/admin.php:621
#: templates/frontend-popup.php:1740
msgid "Preference"
msgstr "Tilpas indstillinger"
#: seers-cookie-consent-banner-privacy-policy.php:418
#: seers-cookie-consent-banner-privacy-policy.php:446
#: seers-cookie-consent-banner-privacy-policy.php:452
msgid "Cookies policy added successfully."
msgstr "Cookies politik tilføjet med succes."
#: seers-cookie-consent-banner-privacy-policy.php:421
msgid "Some thing went wrong. Please check url and try again"
msgstr "Noget gik galt. Venligst tjek url og prøv igen"
#: seers-cookie-consent-banner-privacy-policy.php:675
msgid "Some thing went wrong."
msgstr "Noget gik galt."
#: seers-cookie-consent-banner-privacy-policy.php:819
msgid "Settings has been updated successfully"
msgstr "Indstillinger er blevet opdateret med succes"
#: templates/admin.php:92 templates/admin.php:841
msgid "Account Setup"
msgstr "Kontoopsætning"
#: templates/admin.php:100
msgid "Policy"
msgstr "Politik"
#: templates/admin.php:104
msgid "User Guide"
msgstr "Brugervejledning"
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr "Dine seers cookie samtykke banner er aktiveret."
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr "Dine seers cookie samtykke banner er ikke aktiveret, fordi"
#: templates/admin.php:134
msgid "Email"
msgstr "Email"
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr "Jeg er enig i Seers"
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr "Vilkår og betingelse"
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr "og"
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr "Fortrolighedspolitik"
#: templates/admin.php:154 templates/admin.php:172
msgid ""
"I agree Seers to use my email and url to create an account and power the "
"cookie banner."
msgstr ""
"Jeg er enig i Seers at bruge min e-mail og webadresse til at oprette en "
"konto og power cookie banner."
#: templates/admin.php:178
msgid "Create Account"
msgstr "Opret konto"
#: templates/admin.php:181
msgid "Cookie ID"
msgstr "Cookie ID"
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr ""
"Seers Cookie ID vil blive modtaget automatisk efter oprettelse af konto"
#: templates/admin.php:197
msgid "Powering all your"
msgstr "Drive alle dine"
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr "Privatliv og Datasikkerhedsbehov"
#: templates/admin.php:199
msgid ""
"Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy "
"compliance tools,"
msgstr ""
"Få adgang til en bred vifte af GDPR, PECR, CCPA og; ePrivacy compliance "
"værktøjer,"
#: templates/admin.php:200
msgid "all"
msgstr "alle"
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
"designet til at tage besværet ud af at overholde de nye data\n"
" Beskyttelsesregler."
#: templates/admin.php:206
msgid "Policies Pack"
msgstr "Politikker Pack"
#: templates/admin.php:207
msgid "Templates Pack"
msgstr "Skabeloner pakke"
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr "GDPR PERSONALE ETRAINING"
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr "Cookie Consent Management"
#: templates/admin.php:212
msgid "DPIA"
msgstr "Dpia"
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr "GDPR AUDIT"
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr "Cyber Secure"
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr "Forvaltning af anmodninger om emner"
#: templates/admin.php:217
msgid "START FREE"
msgstr "START GRATIS"
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
"Data privatliv og\n"
" Overholdelse. Løst"
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help "
"companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
"Tillid verdens førende privatliv og samtykkehåndteringsplatform for at "
"hjælpe virksomheder med at overholde\n"
" Med GDPR, PECR, CCPA og ePrivacy"
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr "START PREMIUM I DAG"
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr "Seers premium plan"
#: templates/admin.php:232
msgid "Branding"
msgstr "Branding"
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr "Multi lingual"
#: templates/admin.php:234
msgid "Consent Log"
msgstr "Samtykke log"
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr "Cookie Policy"
#: templates/admin.php:236
msgid "Prior Consent"
msgstr "Forudgående samtykke"
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr "6+ design layouts"
#: templates/admin.php:238
msgid "Customer Support"
msgstr "Kunde support"
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr "Banner tilpasning"
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr "Cookie Deklaration Tabel"
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
"Start Premium\n"
" I DAG\""
#: templates/admin.php:255
msgid "Banner Settings"
msgstr "Bannerindstillinger"
#: templates/admin.php:260
msgid "Banner"
msgstr "Banner"
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr "Aktivér / deaktiver Cookie Banner"
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr "Cookie udløb"
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr "Indstil din samtykke cookie til at udløbe i dage."
#: templates/admin.php:291
msgid "Language"
msgstr "Sprog"
#: templates/admin.php:291
msgid "Choose a language for the banner Settings > General."
msgstr "Vælg et sprog til banneret Indstillinger > Generelt."
#: templates/admin.php:475
msgid "Show Badge"
msgstr "Vis badge"
#: templates/admin.php:475
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr ""
"Vis et badge for at gøre det muligt for Cookie Banner at vise posttilladelse."
#: templates/admin.php:498
msgid "Visual Settings"
msgstr "Visuelle indstillinger"
#: templates/admin.php:503
msgid "Banner Text"
msgstr "Banner tekst"
#: templates/admin.php:503
msgid "Text to appear on the banner:"
msgstr "Tekst, der skal vises på banneret:"
#: templates/admin.php:506 templates/admin.php:524
msgid "Colour"
msgstr "Farve"
#: templates/admin.php:506
msgid "The text colour to appear on the banner:"
msgstr "Tekstfarven til at blive vist på banneret:"
#: templates/admin.php:521
msgid "Banner Background"
msgstr "Banner Baggrund"
#: templates/admin.php:521
msgid "You can change the background colour of the banner:"
msgstr "Du kan ændre bannerets baggrundsfarve:"
#: templates/admin.php:524
msgid "The background colour of the banner:"
msgstr "Bannerens baggrundsfarve:"
#: templates/admin.php:538
msgid "Accept Button"
msgstr "Acceptere knap"
#: templates/admin.php:538
msgid ""
"You can change text colour, button colour and text of the 'Accept All' button"
msgstr "Du kan ændre tekstfarve, knap farve og tekst af 'Accept all' knappen"
#: templates/admin.php:541 templates/admin.php:572 templates/admin.php:603
msgid "Text Colour"
msgstr "Tekstfarve"
#: templates/admin.php:541
msgid "The text colour to appear on the 'Accept All' button:"
msgstr "Tekstfarven, der vises på knappen 'Accept all':"
#: templates/admin.php:551 templates/admin.php:582 templates/admin.php:613
msgid "Button Colour"
msgstr "Button Color"
#: templates/admin.php:551
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr "\"Accept all\" -knappen farve til at blive vist på banneret:"
#: templates/admin.php:569
msgid "Reject Button"
msgstr "Afvise knap"
#: templates/admin.php:569
msgid ""
"You can change text colour, button colour and text of the 'Reject All' button"
msgstr "Du kan ændre tekstfarve, knap farve og tekst af knappen 'Afvis alle'"
#: templates/admin.php:572
msgid "The text colour to appear on the 'Reject All' button:"
msgstr "Tekstfarven til at blive vist på knappen 'Afvis alle':"
#: templates/admin.php:582
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr "\"Afvis alle\" knappen farve til at blive vist på banneret:"
#: templates/admin.php:600
msgid "Setting Button"
msgstr "Indstilling af knap"
#: templates/admin.php:600
msgid "You can change text colour and text of the 'Setting' button"
msgstr "Du kan ændre tekstfarve og tekst af knappen 'Indstilling'"
#: templates/admin.php:603
msgid "The text colour to appear on the 'Setting' button:"
msgstr "Tekstfarven til at blive vist på knappen 'Indstilling':"
#: templates/admin.php:613
msgid "The 'Setting' button colour to appear on the banner:"
msgstr "\"Indstilling\" -knapfarven til at blive vist på banneret:"
#: templates/admin.php:624
msgid "Setting"
msgstr "Indstilling"
#: templates/admin.php:632
msgid "Fonts"
msgstr "Skrifttyper"
#: templates/admin.php:632
msgid "You can select a font for the text of the banner:"
msgstr "Du kan vælge en skrifttype til teksten til banneren:"
#: templates/admin.php:684
msgid "Select Button"
msgstr "Vælg knappen"
#: templates/admin.php:684
msgid "You can select the shape of the buttons that appear on the banner."
msgstr "Du kan vælge formen på de knapper, der vises på banneret."
#: templates/admin.php:688
msgid "Default"
msgstr "Standard"
#: templates/admin.php:692 templates/admin.php:702
msgid "Flat"
msgstr "Standard"
#: templates/admin.php:695 templates/admin.php:705
msgid "Rounded"
msgstr "Afrundet"
#: templates/admin.php:698 templates/admin.php:708
msgid "Stroke"
msgstr "Stroke"
#: templates/admin.php:726
msgid "PREVIEW"
msgstr "Preview"
#: templates/admin.php:727
msgid "SAVE"
msgstr "GEMME"
#: templates/admin.php:746
msgid "Please create cookies policy page and enter URL below."
msgstr "Opret venligst Cookies Policy Page og indtast URL nedenfor."
#: templates/admin.php:750
msgid "Enable Policy:"
msgstr "Aktivér politik:"
#: templates/admin.php:767
msgid "Cookie Policy and declaration URL:"
msgstr "Cookie Policy og Erklæring URL:"
#: templates/admin.php:770
msgid "Policy URL"
msgstr "POLITISK URL"
#: templates/admin.php:777
msgid "Save"
msgstr "Gemme"
#: templates/admin.php:831
msgid "Premium Plan"
msgstr "Premium Plan"
#: templates/admin.php:834 templates/admin.php:1023 templates/admin.php:1032
#: templates/admin.php:1040
msgid "Only the users with a paid account can avail this feature."
msgstr "Kun brugerne med en betalt konto kan benytte denne funktion."
#: templates/admin.php:839
msgid "Ok"
msgstr "Okay"
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr "seers logo"
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr "Om cookies"
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr "Læs Cookie Policy"
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr "Nødvendig"
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr "Altid aktivt"
#: templates/frontend-popup.php:1774
msgid ""
"Necessary cookies help make a website usable by enabling basic functions "
"like page navigation and access to secure areas of the website. The website "
"cannot function properly without these cookies."
msgstr ""
"Nødvendige cookies hjælper med at gøre en hjemmeside brugbar ved at aktivere "
"grundlæggende funktioner som side navigation og adgang til sikre områder på "
"hjemmesiden. Webstedet kan ikke fungere korrekt uden disse cookies."
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784
#: templates/frontend-popup.php:1794 templates/frontend-popup.php:1804
#: templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr "Cookies detaljer"
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr "Præferencer"
#: templates/frontend-popup.php:1784
msgid ""
"Preference cookies enable a website to remember information that changes the "
"way the website behaves or looks, like your preferred language or the region "
"that you are in."
msgstr ""
"Preference Cookies Aktiver en hjemmeside for at huske oplysninger, der "
"ændrer den måde, som hjemmesiden opfører sig eller ser ud, som dit "
"foretrukne sprog eller den region, du er i."
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr "Statistik"
#: templates/frontend-popup.php:1794
msgid ""
"Statistic cookies help website owners to understand how visitors interact "
"with websites by collecting and reporting information anonymously."
msgstr ""
"Statistiske cookies hjælper webstedsejere med at forstå, hvordan besøgende "
"interagerer med websteder ved at indsamle og rapportere oplysninger anonymt."
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr "Markedsføring"
#: templates/frontend-popup.php:1804
msgid ""
"Marketing cookies are used to track visitors across websites. The intention "
"is to display ads that are relevant and engaging for the individual user and "
"thereby more valuable for publishers and third-party advertisers."
msgstr ""
"Marketing cookies bruges til at spore besøgende på tværs af websteder. "
"Hensigten er at vise annoncer, der er relevante og engagerende for den "
"enkelte bruger og derved mere værdifulde for udgivere og "
"tredjepartsannoncører."
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr "Uklassificeret"
#: templates/frontend-popup.php:1812
msgid ""
"Unclassified cookies are cookies that we are in the process of classifying, "
"together with the providers of individual cookies."
msgstr ""
"Uklassificerede cookies er cookies som vi er i gang med at klassificere "
"sammen med udbyderne af individuelle cookies."
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr "Gem mine valg"
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr "drevet af"
#~ msgid "To get your Cookie ID click on Activate"
#~ msgstr "To get your Cookie ID click on Activate"
#~ msgid "Activate"
#~ msgstr "Activate"

View File

@ -0,0 +1,722 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-25 17:21+0500\n"
"PO-Revision-Date: 2022-03-30 04:45-0700\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: seers-cookie-consent-banner-privacy-policy.pot\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:382
msgid "Quick Feedback"
msgstr "Schnelles Feedback"
#: inc/seers-cookie-consent-plugin-deactivate.php:383
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr ""
"Wenn Sie einen Moment haben, teilen Sie uns dies bitte mit, warum Sie "
"deaktivieren:"
#: inc/seers-cookie-consent-plugin-deactivate.php:386
#: inc/seers-cookie-consent-plugin-deactivate.php:387
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr "Das Banner ist nicht in der gewünschten Sprache"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid ""
"The banner picks up your website language automatically. You can always sign-"
"in on your Seers account"
msgstr ""
"Das Banner übernimmt automatisch die Sprache Ihrer Website. Sie können sich "
"jederzeit in Ihr Seers-Konto einloggen"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "and choose the language you like. See the video"
msgstr "und wählen Sie die Sprache, die Sie mögen. Schau das Video"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "here"
msgstr "Hier"
#: inc/seers-cookie-consent-plugin-deactivate.php:395
#: inc/seers-cookie-consent-plugin-deactivate.php:396
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr "Banner erschien nicht"
#: inc/seers-cookie-consent-plugin-deactivate.php:399
#: inc/seers-cookie-consent-plugin-deactivate.php:420
msgid ""
"Most of the times the compatibility issue can be fixed very quickly. Please "
"contact"
msgstr ""
"Die meisten Fällen kann das Kompatibilitätsproblem sehr schnell behoben "
"werden. Wenden Sie sich bitte"
#: inc/seers-cookie-consent-plugin-deactivate.php:403
#: inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr "Cookies zeigen nicht in Einstellungen"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid ""
"We are scanning your website and it can take up to 12 hours for Cookies to "
"appear. In a very few cases scanner miss a cookie. This"
msgstr ""
"Wir scannen Ihre Website und dauert bis zu 12 Stunden, bis Cookies angezeigt "
"werden soll. In ein paar Fällen vermissen Scanner ein Cookie. Dies"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "video"
msgstr "Video"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "explains how to add cookies manually."
msgstr "Erläutert, wie Sie Cookies manuell hinzufügen können."
#: inc/seers-cookie-consent-plugin-deactivate.php:410
#: inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr "Das Banner entsprach nicht der Website-Thema"
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "You can fully customize the banner. Please see the video"
msgstr ""
"Sie können das Banner vollständig anpassen. Bitte sehen Sie sich das Video an"
#: inc/seers-cookie-consent-plugin-deactivate.php:416
#: inc/seers-cookie-consent-plugin-deactivate.php:417
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr "Das Plugin hat meine Website gebrochen"
#: inc/seers-cookie-consent-plugin-deactivate.php:424
#: inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr "Ich habe ein besseres Plugin gefunden"
#: inc/seers-cookie-consent-plugin-deactivate.php:427
msgid "Plugin name"
msgstr "Name des Plugin"
#: inc/seers-cookie-consent-plugin-deactivate.php:430
msgid ""
"The plugin is great, but i need specific feature that you do not support."
msgstr ""
"Das Plugin ist großartig, aber ich brauche ein bestimmtes Merkmal, das Sie "
"nicht unterstützen."
#: inc/seers-cookie-consent-plugin-deactivate.php:431
#: inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid ""
"The plugin is great, but i need specific feature that you don't support."
msgstr ""
"Das Plugin ist großartig, aber ich brauche ein bestimmtes Merkmal, das Sie "
"nicht unterstützen."
#: inc/seers-cookie-consent-plugin-deactivate.php:434
msgid "Banner customisation."
msgstr "Banner-Anpassung."
#: inc/seers-cookie-consent-plugin-deactivate.php:438
#: inc/seers-cookie-consent-plugin-deactivate.php:439
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr "Andere"
#: inc/seers-cookie-consent-plugin-deactivate.php:442
msgid "Kindly tell us the reason so we can improve."
msgstr "Bitte erzählen Sie uns den Grund, damit wir uns verbessern können."
#: inc/seers-cookie-consent-plugin-deactivate.php:445
msgid "Submit & Deactivate"
msgstr "Senden und deaktivieren"
#: inc/seers-cookie-consent-plugin-deactivate.php:446
msgid "Cancel"
msgstr "Stornieren"
#: inc/seers-cookie-consent-plugin-deactivate.php:451
msgid "Skip & Deactivate"
msgstr "Überspringen und deaktivieren"
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr "Ignoriere die Nachricht."
#: seers-cookie-consent-banner-privacy-policy.php:135 templates/admin.php:97
msgid "Settings"
msgstr "Einstellungen"
#: seers-cookie-consent-banner-privacy-policy.php:141
msgid "Upgrade Premium"
msgstr "Upgrade-Prämie"
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:514
#: templates/frontend-popup.php:1738 templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr "Wir verwenden Cookies, um Ihnen das beste Erlebnis zu bieten"
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:558
#: templates/admin.php:559 templates/admin.php:561
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1765
msgid "Allow All"
msgstr "Alle zulassen"
#: seers-cookie-consent-banner-privacy-policy.php:294 templates/admin.php:589
#: templates/admin.php:590 templates/admin.php:592
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1766
msgid "Disable All"
msgstr "Alle deaktivieren"
#: seers-cookie-consent-banner-privacy-policy.php:295 templates/admin.php:621
#: templates/frontend-popup.php:1740
msgid "Preference"
msgstr "Präferenz"
#: seers-cookie-consent-banner-privacy-policy.php:418
#: seers-cookie-consent-banner-privacy-policy.php:446
#: seers-cookie-consent-banner-privacy-policy.php:452
msgid "Cookies policy added successfully."
msgstr "Cookies-Richtlinien wurden erfolgreich hinzugefügt."
#: seers-cookie-consent-banner-privacy-policy.php:421
msgid "Some thing went wrong. Please check url and try again"
msgstr ""
"Etwas ist schief gelaufen. Bitte überprüfen Sie die URL und versuchen Sie es "
"erneut"
#: seers-cookie-consent-banner-privacy-policy.php:675
msgid "Some thing went wrong."
msgstr "Etwas ist schief gelaufen."
#: seers-cookie-consent-banner-privacy-policy.php:819
msgid "Settings has been updated successfully"
msgstr "Die Einstellungen wurde erfolgreich aktualisiert"
#: templates/admin.php:92 templates/admin.php:841
msgid "Account Setup"
msgstr "Konto-Setup"
#: templates/admin.php:100
msgid "Policy"
msgstr "Politik"
#: templates/admin.php:104
msgid "User Guide"
msgstr "Benutzerhandbuch"
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr "Ihr Seers-Cookie-Zustimmungsbanner ist aktiviert."
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr "Ihr Seers Cookie Consent Banner ist NICHT aktiviert, weil"
#: templates/admin.php:134
msgid "Email"
msgstr "Email"
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr "Ich stimme Seers zu"
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr "Allgemeine Geschäftsbedingungen"
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr "und"
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr "Datenschutz-Bestimmungen"
#: templates/admin.php:154 templates/admin.php:172
msgid ""
"I agree Seers to use my email and url to create an account and power the "
"cookie banner."
msgstr ""
"Ich erkläre mich damit einverstanden, dass Seers meine E-Mail und URL "
"verwendet, um ein Konto zu erstellen und den Cookie-Banner zu aktivieren."
#: templates/admin.php:178
msgid "Create Account"
msgstr "Benutzerkonto erstellen"
#: templates/admin.php:181
msgid "Cookie ID"
msgstr "Cookie-ID"
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr "Seers Cookie ID wird automatisch nach der Kontoerstellung empfangen"
#: templates/admin.php:197
msgid "Powering all your"
msgstr "Alles für Sie"
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr "Privatsphäre und; Datensicherheitsanforderungen"
#: templates/admin.php:199
msgid ""
"Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy "
"compliance tools,"
msgstr ""
"Erhalten Sie Zugang zu einem umfangreichen Angebot an GDPR, PECR, CCPA und; "
"Esprivacy Compliance-Tools,"
#: templates/admin.php:200
msgid "all"
msgstr "alle"
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
"Entwickelt, um den Ärger von den neuen Daten herauszufordern\n"
" Schutzvorschriften."
#: templates/admin.php:206
msgid "Policies Pack"
msgstr "Richtlinienpackung"
#: templates/admin.php:207
msgid "Templates Pack"
msgstr "Vorlagenpackung"
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr "GDPR-Personal EETRAING"
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr "Cookie-Einverständnismanagement"
#: templates/admin.php:212
msgid "DPIA"
msgstr "DPIA"
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr "Gdpr audit"
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr "Cyber Secure"
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr "Subject Request Management"
#: templates/admin.php:217
msgid "START FREE"
msgstr "KOSTENLOS beginnen"
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
"Datenschutz und;\n"
" Einhaltung. Gelöst"
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help "
"companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
"Trust Worlds führende Privatsphäre- und Zustimmung der Verwaltung der "
"Verwaltung von Unternehmen, um den Unternehmen zu helfen\n"
" mit GDPR, PECL, CCPA und Esprivatacy"
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr "Beginnen Sie heute Premium"
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr "Seers Prämienplan"
#: templates/admin.php:232
msgid "Branding"
msgstr "Branding"
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr "Multi lingual"
#: templates/admin.php:234
msgid "Consent Log"
msgstr "Zustimmungsprotokoll"
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr "Cookie-Politik"
#: templates/admin.php:236
msgid "Prior Consent"
msgstr "Vorherige Zustimmung"
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr "6+ Design-Layouts"
#: templates/admin.php:238
msgid "Customer Support"
msgstr "Kundendienst"
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr "Banner-Anpassung"
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr "Cookie Deklarationstabelle"
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
"\"Premium beginnen.\n"
" HEUTE"
#: templates/admin.php:255
msgid "Banner Settings"
msgstr "Bannereinstellungen"
#: templates/admin.php:260
msgid "Banner"
msgstr "Banner"
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr "Cookie-Banner aktivieren / deaktivieren"
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr "Cookie-Ablauf"
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr "Stellen Sie Ihr Zustimmungs-Cookie so ein, dass es in Tagen abläuft."
#: templates/admin.php:291
msgid "Language"
msgstr "Sprache"
#: templates/admin.php:291
msgid "Choose a language for the banner Settings > General."
msgstr "Wählen Sie eine Sprache für das Banner Einstellungen > Allgemein."
#: templates/admin.php:475
msgid "Show Badge"
msgstr "Abzeichen anzeigen"
#: templates/admin.php:475
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr ""
"Zeigen Sie ein Abzeichen an, damit der Cookie-Banner nach der Zustimmung "
"auftritt."
#: templates/admin.php:498
msgid "Visual Settings"
msgstr "Visuelle Einstellungen"
#: templates/admin.php:503
msgid "Banner Text"
msgstr "Bannertext"
#: templates/admin.php:503
msgid "Text to appear on the banner:"
msgstr "Text, der auf dem Banner erscheinen soll:"
#: templates/admin.php:506 templates/admin.php:524
msgid "Colour"
msgstr "Farbe"
#: templates/admin.php:506
msgid "The text colour to appear on the banner:"
msgstr "Die Textfarbe, die auf dem Banner erscheinen soll:"
#: templates/admin.php:521
msgid "Banner Background"
msgstr "Banner-Hintergrund"
#: templates/admin.php:521
msgid "You can change the background colour of the banner:"
msgstr "Sie können die Hintergrundfarbe des Banners ändern:"
#: templates/admin.php:524
msgid "The background colour of the banner:"
msgstr "Die Hintergrundfarbe des Banners:"
#: templates/admin.php:538
msgid "Accept Button"
msgstr "Schaltfläche Akzeptieren"
#: templates/admin.php:538
msgid ""
"You can change text colour, button colour and text of the 'Accept All' button"
msgstr ""
"Sie können Textfarbe, Schaltfläche Farbe und Text der Schaltfläche \"Alle "
"akzeptieren\" ändern"
#: templates/admin.php:541 templates/admin.php:572 templates/admin.php:603
msgid "Text Colour"
msgstr "Textfarbe"
#: templates/admin.php:541
msgid "The text colour to appear on the 'Accept All' button:"
msgstr ""
"Die Textfarbe, die auf der Schaltfläche \"Alle akzeptieren\" angezeigt wird:"
#: templates/admin.php:551 templates/admin.php:582 templates/admin.php:613
msgid "Button Colour"
msgstr "Knopffarbe"
#: templates/admin.php:551
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr "Die \"Alles akzeptieren\", um auf dem Banner zu erscheinen:"
#: templates/admin.php:569
msgid "Reject Button"
msgstr "Schaltfläche ablehnen"
#: templates/admin.php:569
msgid ""
"You can change text colour, button colour and text of the 'Reject All' button"
msgstr ""
"Sie können Textfarbe, Schaltfläche Farbe und Text der Taste 'ablehnen' "
"ablehnen"
#: templates/admin.php:572
msgid "The text colour to appear on the 'Reject All' button:"
msgstr "Die Textfarbe, die auf der Schaltfläche 'ablehnen lehnt:"
#: templates/admin.php:582
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr "Die Schaltfläche \"Alle ablehnen\" erscheint in der Farbe des Banners:"
#: templates/admin.php:600
msgid "Setting Button"
msgstr "Schaltfläche einstellen"
#: templates/admin.php:600
msgid "You can change text colour and text of the 'Setting' button"
msgstr ""
"Sie können Textfarbe und einen Text der Schaltfläche \"Einstellung\" ändern"
#: templates/admin.php:603
msgid "The text colour to appear on the 'Setting' button:"
msgstr "Die Textfarbe wird auf der Schaltfläche \"Einstellung\" angezeigt:"
#: templates/admin.php:613
msgid "The 'Setting' button colour to appear on the banner:"
msgstr ""
"Die Farbe der Schaltfläche \"Einstellung\" wird auf dem Banner angezeigt:"
#: templates/admin.php:624
msgid "Setting"
msgstr "Einstellung"
#: templates/admin.php:632
msgid "Fonts"
msgstr "Schriftarten"
#: templates/admin.php:632
msgid "You can select a font for the text of the banner:"
msgstr "Sie können eine Schriftart für den Text des Banners auswählen:"
#: templates/admin.php:684
msgid "Select Button"
msgstr "Auswahlknopf"
#: templates/admin.php:684
msgid "You can select the shape of the buttons that appear on the banner."
msgstr ""
"Sie können die Form der Tasten auswählen, die auf dem Banner angezeigt "
"werden."
#: templates/admin.php:688
msgid "Default"
msgstr "Standard"
#: templates/admin.php:692 templates/admin.php:702
msgid "Flat"
msgstr "Flat"
#: templates/admin.php:695 templates/admin.php:705
msgid "Rounded"
msgstr "Gerundet"
#: templates/admin.php:698 templates/admin.php:708
msgid "Stroke"
msgstr "Stroke"
#: templates/admin.php:726
msgid "PREVIEW"
msgstr "Vorschau"
#: templates/admin.php:727
msgid "SAVE"
msgstr "SPAREN"
#: templates/admin.php:746
msgid "Please create cookies policy page and enter URL below."
msgstr ""
"Bitte erstellen Sie Cookies-Richtlinien-Seite und geben Sie unten die URL "
"ein."
#: templates/admin.php:750
msgid "Enable Policy:"
msgstr "Richtlinie aktivieren:"
#: templates/admin.php:767
msgid "Cookie Policy and declaration URL:"
msgstr "Cookie-Richtlinie und Deklaration URL:"
#: templates/admin.php:770
msgid "Policy URL"
msgstr "Richtlinien-URL"
#: templates/admin.php:777
msgid "Save"
msgstr "Speichern Sie"
#: templates/admin.php:831
msgid "Premium Plan"
msgstr "Premium-Plan"
#: templates/admin.php:834 templates/admin.php:1023 templates/admin.php:1032
#: templates/admin.php:1040
msgid "Only the users with a paid account can avail this feature."
msgstr ""
"Nur die Benutzer mit einem kostenpflichtigen Konto können diese Funktion "
"nutzen."
#: templates/admin.php:839
msgid "Ok"
msgstr "OK"
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr "seers logo"
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr "Über Cookies"
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr "Cookie-Richtlinien lesen"
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr "Erforderlich"
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr "Immer aktiv"
#: templates/frontend-popup.php:1774
msgid ""
"Necessary cookies help make a website usable by enabling basic functions "
"like page navigation and access to secure areas of the website. The website "
"cannot function properly without these cookies."
msgstr ""
"Notwendige Cookies helfen dabei, eine Website nutzbar zu machen, indem sie "
"grundlegende Funktionen wie die Seitennavigation und den Zugang zu "
"geschützten Bereichen der Website ermöglichen. Ohne diese Cookies kann die "
"Website nicht richtig funktionieren."
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784
#: templates/frontend-popup.php:1794 templates/frontend-popup.php:1804
#: templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr "Cookie-Details"
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr "Präferenz"
#: templates/frontend-popup.php:1784
msgid ""
"Preference cookies enable a website to remember information that changes the "
"way the website behaves or looks, like your preferred language or the region "
"that you are in."
msgstr ""
"Preference Cookies ermöglichen es einer Website, sich an Informationen zu "
"erinnern, die die Art und Weise, wie sich die Website verhält, wie Ihre "
"bevorzugte Sprache oder der Region, in der Sie sich einhalten, verhält oder "
"aussehen."
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr "Statistik"
#: templates/frontend-popup.php:1794
msgid ""
"Statistic cookies help website owners to understand how visitors interact "
"with websites by collecting and reporting information anonymously."
msgstr ""
"Statistik-Cookies helfen Website-Betreibern zu verstehen, wie Besucher mit "
"Websites interagieren, indem sie Informationen anonym sammeln und melden."
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr "Vermarktung"
#: templates/frontend-popup.php:1804
msgid ""
"Marketing cookies are used to track visitors across websites. The intention "
"is to display ads that are relevant and engaging for the individual user and "
"thereby more valuable for publishers and third-party advertisers."
msgstr ""
"Marketing-Cookies werden verwendet, um Besucher auf verschiedenen Websites "
"zu verfolgen. Ziel ist es, Anzeigen zu schalten, die für den einzelnen "
"Nutzer relevant und ansprechend sind und damit für Verlage und Drittanbieter "
"wertvoller sind."
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr "Nicht klassifizierte"
#: templates/frontend-popup.php:1812
msgid ""
"Unclassified cookies are cookies that we are in the process of classifying, "
"together with the providers of individual cookies."
msgstr ""
"Nicht klassifizierte Cookies sind Cookies, die wir zusammen mit den "
"Anbietern der einzelnen Cookies klassifizieren wollen."
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr "Meine Auswahl speichern"
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr "Angetrieben von"
#~ msgid "To get your Cookie ID click on Activate"
#~ msgstr "To get your Cookie ID click on Activate"
#~ msgid "Activate"
#~ msgstr "Activate"

View File

@ -0,0 +1,722 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-25 17:21+0500\n"
"PO-Revision-Date: 2022-03-30 04:46-0700\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: de_CH\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: seers-cookie-consent-banner-privacy-policy.pot\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:382
msgid "Quick Feedback"
msgstr "Schnelles Feedback"
#: inc/seers-cookie-consent-plugin-deactivate.php:383
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr ""
"Wenn Sie einen Moment haben, teilen Sie uns dies bitte mit, warum Sie "
"deaktivieren:"
#: inc/seers-cookie-consent-plugin-deactivate.php:386
#: inc/seers-cookie-consent-plugin-deactivate.php:387
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr "Das Banner ist nicht in der gewünschten Sprache"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid ""
"The banner picks up your website language automatically. You can always sign-"
"in on your Seers account"
msgstr ""
"Das Banner übernimmt automatisch die Sprache Ihrer Website. Sie können sich "
"jederzeit in Ihr Seers-Konto einloggen"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "and choose the language you like. See the video"
msgstr "und wählen Sie die Sprache, die Sie mögen. Schau das Video"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "here"
msgstr "Hier"
#: inc/seers-cookie-consent-plugin-deactivate.php:395
#: inc/seers-cookie-consent-plugin-deactivate.php:396
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr "Banner erschien nicht"
#: inc/seers-cookie-consent-plugin-deactivate.php:399
#: inc/seers-cookie-consent-plugin-deactivate.php:420
msgid ""
"Most of the times the compatibility issue can be fixed very quickly. Please "
"contact"
msgstr ""
"Die meisten Fällen kann das Kompatibilitätsproblem sehr schnell behoben "
"werden. Wenden Sie sich bitte"
#: inc/seers-cookie-consent-plugin-deactivate.php:403
#: inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr "Cookies zeigen nicht in Einstellungen"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid ""
"We are scanning your website and it can take up to 12 hours for Cookies to "
"appear. In a very few cases scanner miss a cookie. This"
msgstr ""
"Wir scannen Ihre Website und dauert bis zu 12 Stunden, bis Cookies angezeigt "
"werden soll. In ein paar Fällen vermissen Scanner ein Cookie. Dies"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "video"
msgstr "Video"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "explains how to add cookies manually."
msgstr "Erläutert, wie Sie Cookies manuell hinzufügen können."
#: inc/seers-cookie-consent-plugin-deactivate.php:410
#: inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr "Das Banner entsprach nicht der Website-Thema"
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "You can fully customize the banner. Please see the video"
msgstr ""
"Sie können das Banner vollständig anpassen. Bitte sehen Sie sich das Video an"
#: inc/seers-cookie-consent-plugin-deactivate.php:416
#: inc/seers-cookie-consent-plugin-deactivate.php:417
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr "Das Plugin hat meine Website gebrochen"
#: inc/seers-cookie-consent-plugin-deactivate.php:424
#: inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr "Ich habe ein besseres Plugin gefunden"
#: inc/seers-cookie-consent-plugin-deactivate.php:427
msgid "Plugin name"
msgstr "Name des Plugin"
#: inc/seers-cookie-consent-plugin-deactivate.php:430
msgid ""
"The plugin is great, but i need specific feature that you do not support."
msgstr ""
"Das Plugin ist großartig, aber ich brauche ein bestimmtes Merkmal, das Sie "
"nicht unterstützen."
#: inc/seers-cookie-consent-plugin-deactivate.php:431
#: inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid ""
"The plugin is great, but i need specific feature that you don't support."
msgstr ""
"Das Plugin ist großartig, aber ich brauche ein bestimmtes Merkmal, das Sie "
"nicht unterstützen."
#: inc/seers-cookie-consent-plugin-deactivate.php:434
msgid "Banner customisation."
msgstr "Banner-Anpassung."
#: inc/seers-cookie-consent-plugin-deactivate.php:438
#: inc/seers-cookie-consent-plugin-deactivate.php:439
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr "Andere"
#: inc/seers-cookie-consent-plugin-deactivate.php:442
msgid "Kindly tell us the reason so we can improve."
msgstr "Bitte erzählen Sie uns den Grund, damit wir uns verbessern können."
#: inc/seers-cookie-consent-plugin-deactivate.php:445
msgid "Submit & Deactivate"
msgstr "Senden und deaktivieren"
#: inc/seers-cookie-consent-plugin-deactivate.php:446
msgid "Cancel"
msgstr "Stornieren"
#: inc/seers-cookie-consent-plugin-deactivate.php:451
msgid "Skip & Deactivate"
msgstr "Überspringen und deaktivieren"
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr "Ignoriere die Nachricht."
#: seers-cookie-consent-banner-privacy-policy.php:135 templates/admin.php:97
msgid "Settings"
msgstr "Einstellungen"
#: seers-cookie-consent-banner-privacy-policy.php:141
msgid "Upgrade Premium"
msgstr "Upgrade-Prämie"
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:514
#: templates/frontend-popup.php:1738 templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr "Wir verwenden Cookies, um Ihnen das beste Erlebnis zu bieten"
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:558
#: templates/admin.php:559 templates/admin.php:561
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1765
msgid "Allow All"
msgstr "Alle zulassen"
#: seers-cookie-consent-banner-privacy-policy.php:294 templates/admin.php:589
#: templates/admin.php:590 templates/admin.php:592
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1766
msgid "Disable All"
msgstr "Alle deaktivieren"
#: seers-cookie-consent-banner-privacy-policy.php:295 templates/admin.php:621
#: templates/frontend-popup.php:1740
msgid "Preference"
msgstr "Präferenz"
#: seers-cookie-consent-banner-privacy-policy.php:418
#: seers-cookie-consent-banner-privacy-policy.php:446
#: seers-cookie-consent-banner-privacy-policy.php:452
msgid "Cookies policy added successfully."
msgstr "Cookies-Richtlinien wurden erfolgreich hinzugefügt."
#: seers-cookie-consent-banner-privacy-policy.php:421
msgid "Some thing went wrong. Please check url and try again"
msgstr ""
"Etwas ist schief gelaufen. Bitte überprüfen Sie die URL und versuchen Sie es "
"erneut"
#: seers-cookie-consent-banner-privacy-policy.php:675
msgid "Some thing went wrong."
msgstr "Etwas ist schief gelaufen."
#: seers-cookie-consent-banner-privacy-policy.php:819
msgid "Settings has been updated successfully"
msgstr "Die Einstellungen wurde erfolgreich aktualisiert"
#: templates/admin.php:92 templates/admin.php:841
msgid "Account Setup"
msgstr "Konto-Setup"
#: templates/admin.php:100
msgid "Policy"
msgstr "Politik"
#: templates/admin.php:104
msgid "User Guide"
msgstr "Benutzerhandbuch"
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr "Ihr Seers-Cookie-Zustimmungsbanner ist aktiviert."
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr "Ihr Seers Cookie Consent Banner ist NICHT aktiviert, weil"
#: templates/admin.php:134
msgid "Email"
msgstr "Email"
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr "Ich stimme Seers zu"
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr "Allgemeine Geschäftsbedingungen"
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr "und"
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr "Datenschutz-Bestimmungen"
#: templates/admin.php:154 templates/admin.php:172
msgid ""
"I agree Seers to use my email and url to create an account and power the "
"cookie banner."
msgstr ""
"Ich erkläre mich damit einverstanden, dass Seers meine E-Mail und URL "
"verwendet, um ein Konto zu erstellen und den Cookie-Banner zu aktivieren."
#: templates/admin.php:178
msgid "Create Account"
msgstr "Benutzerkonto erstellen"
#: templates/admin.php:181
msgid "Cookie ID"
msgstr "Cookie-ID"
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr "Seers Cookie ID wird automatisch nach der Kontoerstellung empfangen"
#: templates/admin.php:197
msgid "Powering all your"
msgstr "Alles für Sie"
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr "Privatsphäre und; Datensicherheitsanforderungen"
#: templates/admin.php:199
msgid ""
"Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy "
"compliance tools,"
msgstr ""
"Erhalten Sie Zugang zu einem umfangreichen Angebot an GDPR, PECR, CCPA und; "
"Esprivacy Compliance-Tools,"
#: templates/admin.php:200
msgid "all"
msgstr "alle"
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
"Entwickelt, um den Ärger von den neuen Daten herauszufordern\n"
" Schutzvorschriften."
#: templates/admin.php:206
msgid "Policies Pack"
msgstr "Richtlinienpackung"
#: templates/admin.php:207
msgid "Templates Pack"
msgstr "Vorlagenpackung"
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr "GDPR-Personal EETRAING"
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr "Cookie-Einverständnismanagement"
#: templates/admin.php:212
msgid "DPIA"
msgstr "DPIA"
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr "Gdpr audit"
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr "Cyber Secure"
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr "Subject Request Management"
#: templates/admin.php:217
msgid "START FREE"
msgstr "KOSTENLOS beginnen"
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
"Datenschutz und;\n"
" Einhaltung. Gelöst"
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help "
"companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
"Trust Worlds führende Privatsphäre- und Zustimmung der Verwaltung der "
"Verwaltung von Unternehmen, um den Unternehmen zu helfen\n"
" mit GDPR, PECL, CCPA und Esprivatacy"
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr "Beginnen Sie heute Premium"
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr "Seers Prämienplan"
#: templates/admin.php:232
msgid "Branding"
msgstr "Branding"
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr "Multi lingual"
#: templates/admin.php:234
msgid "Consent Log"
msgstr "Zustimmungsprotokoll"
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr "Cookie-Politik"
#: templates/admin.php:236
msgid "Prior Consent"
msgstr "Vorherige Zustimmung"
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr "6+ Design-Layouts"
#: templates/admin.php:238
msgid "Customer Support"
msgstr "Kundendienst"
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr "Banner-Anpassung"
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr "Cookie Deklarationstabelle"
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
"\"Premium beginnen.\n"
" HEUTE"
#: templates/admin.php:255
msgid "Banner Settings"
msgstr "Bannereinstellungen"
#: templates/admin.php:260
msgid "Banner"
msgstr "Banner"
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr "Cookie-Banner aktivieren / deaktivieren"
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr "Cookie-Ablauf"
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr "Stellen Sie Ihr Zustimmungs-Cookie so ein, dass es in Tagen abläuft."
#: templates/admin.php:291
msgid "Language"
msgstr "Sprache"
#: templates/admin.php:291
msgid "Choose a language for the banner Settings > General."
msgstr "Wählen Sie eine Sprache für das Banner Einstellungen > Allgemein."
#: templates/admin.php:475
msgid "Show Badge"
msgstr "Abzeichen anzeigen"
#: templates/admin.php:475
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr ""
"Zeigen Sie ein Abzeichen an, damit der Cookie-Banner nach der Zustimmung "
"auftritt."
#: templates/admin.php:498
msgid "Visual Settings"
msgstr "Visuelle Einstellungen"
#: templates/admin.php:503
msgid "Banner Text"
msgstr "Bannertext"
#: templates/admin.php:503
msgid "Text to appear on the banner:"
msgstr "Text, der auf dem Banner erscheinen soll:"
#: templates/admin.php:506 templates/admin.php:524
msgid "Colour"
msgstr "Farbe"
#: templates/admin.php:506
msgid "The text colour to appear on the banner:"
msgstr "Die Textfarbe, die auf dem Banner erscheinen soll:"
#: templates/admin.php:521
msgid "Banner Background"
msgstr "Banner-Hintergrund"
#: templates/admin.php:521
msgid "You can change the background colour of the banner:"
msgstr "Sie können die Hintergrundfarbe des Banners ändern:"
#: templates/admin.php:524
msgid "The background colour of the banner:"
msgstr "Die Hintergrundfarbe des Banners:"
#: templates/admin.php:538
msgid "Accept Button"
msgstr "Schaltfläche Akzeptieren"
#: templates/admin.php:538
msgid ""
"You can change text colour, button colour and text of the 'Accept All' button"
msgstr ""
"Sie können Textfarbe, Schaltfläche Farbe und Text der Schaltfläche \"Alle "
"akzeptieren\" ändern"
#: templates/admin.php:541 templates/admin.php:572 templates/admin.php:603
msgid "Text Colour"
msgstr "Textfarbe"
#: templates/admin.php:541
msgid "The text colour to appear on the 'Accept All' button:"
msgstr ""
"Die Textfarbe, die auf der Schaltfläche \"Alle akzeptieren\" angezeigt wird:"
#: templates/admin.php:551 templates/admin.php:582 templates/admin.php:613
msgid "Button Colour"
msgstr "Knopffarbe"
#: templates/admin.php:551
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr "Die \"Alles akzeptieren\", um auf dem Banner zu erscheinen:"
#: templates/admin.php:569
msgid "Reject Button"
msgstr "Schaltfläche ablehnen"
#: templates/admin.php:569
msgid ""
"You can change text colour, button colour and text of the 'Reject All' button"
msgstr ""
"Sie können Textfarbe, Schaltfläche Farbe und Text der Taste 'ablehnen' "
"ablehnen"
#: templates/admin.php:572
msgid "The text colour to appear on the 'Reject All' button:"
msgstr "Die Textfarbe, die auf der Schaltfläche 'ablehnen lehnt:"
#: templates/admin.php:582
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr "Die Schaltfläche \"Alle ablehnen\" erscheint in der Farbe des Banners:"
#: templates/admin.php:600
msgid "Setting Button"
msgstr "Schaltfläche einstellen"
#: templates/admin.php:600
msgid "You can change text colour and text of the 'Setting' button"
msgstr ""
"Sie können Textfarbe und einen Text der Schaltfläche \"Einstellung\" ändern"
#: templates/admin.php:603
msgid "The text colour to appear on the 'Setting' button:"
msgstr "Die Textfarbe wird auf der Schaltfläche \"Einstellung\" angezeigt:"
#: templates/admin.php:613
msgid "The 'Setting' button colour to appear on the banner:"
msgstr ""
"Die Farbe der Schaltfläche \"Einstellung\" wird auf dem Banner angezeigt:"
#: templates/admin.php:624
msgid "Setting"
msgstr "Einstellung"
#: templates/admin.php:632
msgid "Fonts"
msgstr "Schriftarten"
#: templates/admin.php:632
msgid "You can select a font for the text of the banner:"
msgstr "Sie können eine Schriftart für den Text des Banners auswählen:"
#: templates/admin.php:684
msgid "Select Button"
msgstr "Auswahlknopf"
#: templates/admin.php:684
msgid "You can select the shape of the buttons that appear on the banner."
msgstr ""
"Sie können die Form der Tasten auswählen, die auf dem Banner angezeigt "
"werden."
#: templates/admin.php:688
msgid "Default"
msgstr "Standard"
#: templates/admin.php:692 templates/admin.php:702
msgid "Flat"
msgstr "Flat"
#: templates/admin.php:695 templates/admin.php:705
msgid "Rounded"
msgstr "Gerundet"
#: templates/admin.php:698 templates/admin.php:708
msgid "Stroke"
msgstr "Stroke"
#: templates/admin.php:726
msgid "PREVIEW"
msgstr "Vorschau"
#: templates/admin.php:727
msgid "SAVE"
msgstr "SPAREN"
#: templates/admin.php:746
msgid "Please create cookies policy page and enter URL below."
msgstr ""
"Bitte erstellen Sie Cookies-Richtlinien-Seite und geben Sie unten die URL "
"ein."
#: templates/admin.php:750
msgid "Enable Policy:"
msgstr "Richtlinie aktivieren:"
#: templates/admin.php:767
msgid "Cookie Policy and declaration URL:"
msgstr "Cookie-Richtlinie und Deklaration URL:"
#: templates/admin.php:770
msgid "Policy URL"
msgstr "Richtlinien-URL"
#: templates/admin.php:777
msgid "Save"
msgstr "Speichern Sie"
#: templates/admin.php:831
msgid "Premium Plan"
msgstr "Premium-Plan"
#: templates/admin.php:834 templates/admin.php:1023 templates/admin.php:1032
#: templates/admin.php:1040
msgid "Only the users with a paid account can avail this feature."
msgstr ""
"Nur die Benutzer mit einem kostenpflichtigen Konto können diese Funktion "
"nutzen."
#: templates/admin.php:839
msgid "Ok"
msgstr "OK"
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr "seers logo"
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr "Über Cookies"
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr "Cookie-Richtlinien lesen"
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr "Erforderlich"
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr "Immer aktiv"
#: templates/frontend-popup.php:1774
msgid ""
"Necessary cookies help make a website usable by enabling basic functions "
"like page navigation and access to secure areas of the website. The website "
"cannot function properly without these cookies."
msgstr ""
"Notwendige Cookies helfen dabei, eine Website nutzbar zu machen, indem sie "
"grundlegende Funktionen wie die Seitennavigation und den Zugang zu "
"geschützten Bereichen der Website ermöglichen. Ohne diese Cookies kann die "
"Website nicht richtig funktionieren."
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784
#: templates/frontend-popup.php:1794 templates/frontend-popup.php:1804
#: templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr "Cookie-Details"
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr "Präferenz"
#: templates/frontend-popup.php:1784
msgid ""
"Preference cookies enable a website to remember information that changes the "
"way the website behaves or looks, like your preferred language or the region "
"that you are in."
msgstr ""
"Preference Cookies ermöglichen es einer Website, sich an Informationen zu "
"erinnern, die die Art und Weise, wie sich die Website verhält, wie Ihre "
"bevorzugte Sprache oder der Region, in der Sie sich einhalten, verhält oder "
"aussehen."
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr "Statistik"
#: templates/frontend-popup.php:1794
msgid ""
"Statistic cookies help website owners to understand how visitors interact "
"with websites by collecting and reporting information anonymously."
msgstr ""
"Statistik-Cookies helfen Website-Betreibern zu verstehen, wie Besucher mit "
"Websites interagieren, indem sie Informationen anonym sammeln und melden."
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr "Vermarktung"
#: templates/frontend-popup.php:1804
msgid ""
"Marketing cookies are used to track visitors across websites. The intention "
"is to display ads that are relevant and engaging for the individual user and "
"thereby more valuable for publishers and third-party advertisers."
msgstr ""
"Marketing-Cookies werden verwendet, um Besucher auf verschiedenen Websites "
"zu verfolgen. Ziel ist es, Anzeigen zu schalten, die für den einzelnen "
"Nutzer relevant und ansprechend sind und damit für Verlage und Drittanbieter "
"wertvoller sind."
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr "Nicht klassifizierte"
#: templates/frontend-popup.php:1812
msgid ""
"Unclassified cookies are cookies that we are in the process of classifying, "
"together with the providers of individual cookies."
msgstr ""
"Nicht klassifizierte Cookies sind Cookies, die wir zusammen mit den "
"Anbietern der einzelnen Cookies klassifizieren wollen."
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr "Meine Auswahl speichern"
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr "Angetrieben von"
#~ msgid "To get your Cookie ID click on Activate"
#~ msgstr "To get your Cookie ID click on Activate"
#~ msgid "Activate"
#~ msgstr "Activate"

View File

@ -0,0 +1,722 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-25 17:21+0500\n"
"PO-Revision-Date: 2022-03-30 04:46-0700\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: de_CH\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: seers-cookie-consent-banner-privacy-policy.pot\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:382
msgid "Quick Feedback"
msgstr "Schnelles Feedback"
#: inc/seers-cookie-consent-plugin-deactivate.php:383
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr ""
"Wenn Sie einen Moment haben, teilen Sie uns dies bitte mit, warum Sie "
"deaktivieren:"
#: inc/seers-cookie-consent-plugin-deactivate.php:386
#: inc/seers-cookie-consent-plugin-deactivate.php:387
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr "Das Banner ist nicht in der gewünschten Sprache"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid ""
"The banner picks up your website language automatically. You can always sign-"
"in on your Seers account"
msgstr ""
"Das Banner übernimmt automatisch die Sprache Ihrer Website. Sie können sich "
"jederzeit in Ihr Seers-Konto einloggen"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "and choose the language you like. See the video"
msgstr "und wählen Sie die Sprache, die Sie mögen. Schau das Video"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "here"
msgstr "Hier"
#: inc/seers-cookie-consent-plugin-deactivate.php:395
#: inc/seers-cookie-consent-plugin-deactivate.php:396
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr "Banner erschien nicht"
#: inc/seers-cookie-consent-plugin-deactivate.php:399
#: inc/seers-cookie-consent-plugin-deactivate.php:420
msgid ""
"Most of the times the compatibility issue can be fixed very quickly. Please "
"contact"
msgstr ""
"Die meisten Fällen kann das Kompatibilitätsproblem sehr schnell behoben "
"werden. Wenden Sie sich bitte"
#: inc/seers-cookie-consent-plugin-deactivate.php:403
#: inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr "Cookies zeigen nicht in Einstellungen"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid ""
"We are scanning your website and it can take up to 12 hours for Cookies to "
"appear. In a very few cases scanner miss a cookie. This"
msgstr ""
"Wir scannen Ihre Website und dauert bis zu 12 Stunden, bis Cookies angezeigt "
"werden soll. In ein paar Fällen vermissen Scanner ein Cookie. Dies"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "video"
msgstr "Video"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "explains how to add cookies manually."
msgstr "Erläutert, wie Sie Cookies manuell hinzufügen können."
#: inc/seers-cookie-consent-plugin-deactivate.php:410
#: inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr "Das Banner entsprach nicht der Website-Thema"
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "You can fully customize the banner. Please see the video"
msgstr ""
"Sie können das Banner vollständig anpassen. Bitte sehen Sie sich das Video an"
#: inc/seers-cookie-consent-plugin-deactivate.php:416
#: inc/seers-cookie-consent-plugin-deactivate.php:417
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr "Das Plugin hat meine Website gebrochen"
#: inc/seers-cookie-consent-plugin-deactivate.php:424
#: inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr "Ich habe ein besseres Plugin gefunden"
#: inc/seers-cookie-consent-plugin-deactivate.php:427
msgid "Plugin name"
msgstr "Name des Plugin"
#: inc/seers-cookie-consent-plugin-deactivate.php:430
msgid ""
"The plugin is great, but i need specific feature that you do not support."
msgstr ""
"Das Plugin ist großartig, aber ich brauche ein bestimmtes Merkmal, das Sie "
"nicht unterstützen."
#: inc/seers-cookie-consent-plugin-deactivate.php:431
#: inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid ""
"The plugin is great, but i need specific feature that you don't support."
msgstr ""
"Das Plugin ist großartig, aber ich brauche ein bestimmtes Merkmal, das Sie "
"nicht unterstützen."
#: inc/seers-cookie-consent-plugin-deactivate.php:434
msgid "Banner customisation."
msgstr "Banner-Anpassung."
#: inc/seers-cookie-consent-plugin-deactivate.php:438
#: inc/seers-cookie-consent-plugin-deactivate.php:439
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr "Andere"
#: inc/seers-cookie-consent-plugin-deactivate.php:442
msgid "Kindly tell us the reason so we can improve."
msgstr "Bitte erzählen Sie uns den Grund, damit wir uns verbessern können."
#: inc/seers-cookie-consent-plugin-deactivate.php:445
msgid "Submit & Deactivate"
msgstr "Senden und deaktivieren"
#: inc/seers-cookie-consent-plugin-deactivate.php:446
msgid "Cancel"
msgstr "Stornieren"
#: inc/seers-cookie-consent-plugin-deactivate.php:451
msgid "Skip & Deactivate"
msgstr "Überspringen und deaktivieren"
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr "Ignoriere die Nachricht."
#: seers-cookie-consent-banner-privacy-policy.php:135 templates/admin.php:97
msgid "Settings"
msgstr "Einstellungen"
#: seers-cookie-consent-banner-privacy-policy.php:141
msgid "Upgrade Premium"
msgstr "Upgrade-Prämie"
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:514
#: templates/frontend-popup.php:1738 templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr "Wir verwenden Cookies, um Ihnen das beste Erlebnis zu bieten"
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:558
#: templates/admin.php:559 templates/admin.php:561
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1765
msgid "Allow All"
msgstr "Alle zulassen"
#: seers-cookie-consent-banner-privacy-policy.php:294 templates/admin.php:589
#: templates/admin.php:590 templates/admin.php:592
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1766
msgid "Disable All"
msgstr "Alle deaktivieren"
#: seers-cookie-consent-banner-privacy-policy.php:295 templates/admin.php:621
#: templates/frontend-popup.php:1740
msgid "Preference"
msgstr "Präferenz"
#: seers-cookie-consent-banner-privacy-policy.php:418
#: seers-cookie-consent-banner-privacy-policy.php:446
#: seers-cookie-consent-banner-privacy-policy.php:452
msgid "Cookies policy added successfully."
msgstr "Cookies-Richtlinien wurden erfolgreich hinzugefügt."
#: seers-cookie-consent-banner-privacy-policy.php:421
msgid "Some thing went wrong. Please check url and try again"
msgstr ""
"Etwas ist schief gelaufen. Bitte überprüfen Sie die URL und versuchen Sie es "
"erneut"
#: seers-cookie-consent-banner-privacy-policy.php:675
msgid "Some thing went wrong."
msgstr "Etwas ist schief gelaufen."
#: seers-cookie-consent-banner-privacy-policy.php:819
msgid "Settings has been updated successfully"
msgstr "Die Einstellungen wurde erfolgreich aktualisiert"
#: templates/admin.php:92 templates/admin.php:841
msgid "Account Setup"
msgstr "Konto-Setup"
#: templates/admin.php:100
msgid "Policy"
msgstr "Politik"
#: templates/admin.php:104
msgid "User Guide"
msgstr "Benutzerhandbuch"
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr "Ihr Seers-Cookie-Zustimmungsbanner ist aktiviert."
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr "Ihr Seers Cookie Consent Banner ist NICHT aktiviert, weil"
#: templates/admin.php:134
msgid "Email"
msgstr "Email"
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr "Ich stimme Seers zu"
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr "Allgemeine Geschäftsbedingungen"
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr "und"
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr "Datenschutz-Bestimmungen"
#: templates/admin.php:154 templates/admin.php:172
msgid ""
"I agree Seers to use my email and url to create an account and power the "
"cookie banner."
msgstr ""
"Ich erkläre mich damit einverstanden, dass Seers meine E-Mail und URL "
"verwendet, um ein Konto zu erstellen und den Cookie-Banner zu aktivieren."
#: templates/admin.php:178
msgid "Create Account"
msgstr "Benutzerkonto erstellen"
#: templates/admin.php:181
msgid "Cookie ID"
msgstr "Cookie-ID"
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr "Seers Cookie ID wird automatisch nach der Kontoerstellung empfangen"
#: templates/admin.php:197
msgid "Powering all your"
msgstr "Alles für Sie"
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr "Privatsphäre und; Datensicherheitsanforderungen"
#: templates/admin.php:199
msgid ""
"Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy "
"compliance tools,"
msgstr ""
"Erhalten Sie Zugang zu einem umfangreichen Angebot an GDPR, PECR, CCPA und; "
"Esprivacy Compliance-Tools,"
#: templates/admin.php:200
msgid "all"
msgstr "alle"
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
"Entwickelt, um den Ärger von den neuen Daten herauszufordern\n"
" Schutzvorschriften."
#: templates/admin.php:206
msgid "Policies Pack"
msgstr "Richtlinienpackung"
#: templates/admin.php:207
msgid "Templates Pack"
msgstr "Vorlagenpackung"
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr "GDPR-Personal EETRAING"
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr "Cookie-Einverständnismanagement"
#: templates/admin.php:212
msgid "DPIA"
msgstr "DPIA"
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr "Gdpr audit"
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr "Cyber Secure"
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr "Subject Request Management"
#: templates/admin.php:217
msgid "START FREE"
msgstr "KOSTENLOS beginnen"
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
"Datenschutz und;\n"
" Einhaltung. Gelöst"
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help "
"companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
"Trust Worlds führende Privatsphäre- und Zustimmung der Verwaltung der "
"Verwaltung von Unternehmen, um den Unternehmen zu helfen\n"
" mit GDPR, PECL, CCPA und Esprivatacy"
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr "Beginnen Sie heute Premium"
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr "Seers Prämienplan"
#: templates/admin.php:232
msgid "Branding"
msgstr "Branding"
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr "Multi lingual"
#: templates/admin.php:234
msgid "Consent Log"
msgstr "Zustimmungsprotokoll"
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr "Cookie-Politik"
#: templates/admin.php:236
msgid "Prior Consent"
msgstr "Vorherige Zustimmung"
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr "6+ Design-Layouts"
#: templates/admin.php:238
msgid "Customer Support"
msgstr "Kundendienst"
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr "Banner-Anpassung"
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr "Cookie Deklarationstabelle"
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
"\"Premium beginnen.\n"
" HEUTE"
#: templates/admin.php:255
msgid "Banner Settings"
msgstr "Bannereinstellungen"
#: templates/admin.php:260
msgid "Banner"
msgstr "Banner"
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr "Cookie-Banner aktivieren / deaktivieren"
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr "Cookie-Ablauf"
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr "Stellen Sie Ihr Zustimmungs-Cookie so ein, dass es in Tagen abläuft."
#: templates/admin.php:291
msgid "Language"
msgstr "Sprache"
#: templates/admin.php:291
msgid "Choose a language for the banner Settings > General."
msgstr "Wählen Sie eine Sprache für das Banner Einstellungen > Allgemein."
#: templates/admin.php:475
msgid "Show Badge"
msgstr "Abzeichen anzeigen"
#: templates/admin.php:475
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr ""
"Zeigen Sie ein Abzeichen an, damit der Cookie-Banner nach der Zustimmung "
"auftritt."
#: templates/admin.php:498
msgid "Visual Settings"
msgstr "Visuelle Einstellungen"
#: templates/admin.php:503
msgid "Banner Text"
msgstr "Bannertext"
#: templates/admin.php:503
msgid "Text to appear on the banner:"
msgstr "Text, der auf dem Banner erscheinen soll:"
#: templates/admin.php:506 templates/admin.php:524
msgid "Colour"
msgstr "Farbe"
#: templates/admin.php:506
msgid "The text colour to appear on the banner:"
msgstr "Die Textfarbe, die auf dem Banner erscheinen soll:"
#: templates/admin.php:521
msgid "Banner Background"
msgstr "Banner-Hintergrund"
#: templates/admin.php:521
msgid "You can change the background colour of the banner:"
msgstr "Sie können die Hintergrundfarbe des Banners ändern:"
#: templates/admin.php:524
msgid "The background colour of the banner:"
msgstr "Die Hintergrundfarbe des Banners:"
#: templates/admin.php:538
msgid "Accept Button"
msgstr "Schaltfläche Akzeptieren"
#: templates/admin.php:538
msgid ""
"You can change text colour, button colour and text of the 'Accept All' button"
msgstr ""
"Sie können Textfarbe, Schaltfläche Farbe und Text der Schaltfläche \"Alle "
"akzeptieren\" ändern"
#: templates/admin.php:541 templates/admin.php:572 templates/admin.php:603
msgid "Text Colour"
msgstr "Textfarbe"
#: templates/admin.php:541
msgid "The text colour to appear on the 'Accept All' button:"
msgstr ""
"Die Textfarbe, die auf der Schaltfläche \"Alle akzeptieren\" angezeigt wird:"
#: templates/admin.php:551 templates/admin.php:582 templates/admin.php:613
msgid "Button Colour"
msgstr "Knopffarbe"
#: templates/admin.php:551
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr "Die \"Alles akzeptieren\", um auf dem Banner zu erscheinen:"
#: templates/admin.php:569
msgid "Reject Button"
msgstr "Schaltfläche ablehnen"
#: templates/admin.php:569
msgid ""
"You can change text colour, button colour and text of the 'Reject All' button"
msgstr ""
"Sie können Textfarbe, Schaltfläche Farbe und Text der Taste 'ablehnen' "
"ablehnen"
#: templates/admin.php:572
msgid "The text colour to appear on the 'Reject All' button:"
msgstr "Die Textfarbe, die auf der Schaltfläche 'ablehnen lehnt:"
#: templates/admin.php:582
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr "Die Schaltfläche \"Alle ablehnen\" erscheint in der Farbe des Banners:"
#: templates/admin.php:600
msgid "Setting Button"
msgstr "Schaltfläche einstellen"
#: templates/admin.php:600
msgid "You can change text colour and text of the 'Setting' button"
msgstr ""
"Sie können Textfarbe und einen Text der Schaltfläche \"Einstellung\" ändern"
#: templates/admin.php:603
msgid "The text colour to appear on the 'Setting' button:"
msgstr "Die Textfarbe wird auf der Schaltfläche \"Einstellung\" angezeigt:"
#: templates/admin.php:613
msgid "The 'Setting' button colour to appear on the banner:"
msgstr ""
"Die Farbe der Schaltfläche \"Einstellung\" wird auf dem Banner angezeigt:"
#: templates/admin.php:624
msgid "Setting"
msgstr "Einstellung"
#: templates/admin.php:632
msgid "Fonts"
msgstr "Schriftarten"
#: templates/admin.php:632
msgid "You can select a font for the text of the banner:"
msgstr "Sie können eine Schriftart für den Text des Banners auswählen:"
#: templates/admin.php:684
msgid "Select Button"
msgstr "Auswahlknopf"
#: templates/admin.php:684
msgid "You can select the shape of the buttons that appear on the banner."
msgstr ""
"Sie können die Form der Tasten auswählen, die auf dem Banner angezeigt "
"werden."
#: templates/admin.php:688
msgid "Default"
msgstr "Standard"
#: templates/admin.php:692 templates/admin.php:702
msgid "Flat"
msgstr "Flat"
#: templates/admin.php:695 templates/admin.php:705
msgid "Rounded"
msgstr "Gerundet"
#: templates/admin.php:698 templates/admin.php:708
msgid "Stroke"
msgstr "Stroke"
#: templates/admin.php:726
msgid "PREVIEW"
msgstr "Vorschau"
#: templates/admin.php:727
msgid "SAVE"
msgstr "SPAREN"
#: templates/admin.php:746
msgid "Please create cookies policy page and enter URL below."
msgstr ""
"Bitte erstellen Sie Cookies-Richtlinien-Seite und geben Sie unten die URL "
"ein."
#: templates/admin.php:750
msgid "Enable Policy:"
msgstr "Richtlinie aktivieren:"
#: templates/admin.php:767
msgid "Cookie Policy and declaration URL:"
msgstr "Cookie-Richtlinie und Deklaration URL:"
#: templates/admin.php:770
msgid "Policy URL"
msgstr "Richtlinien-URL"
#: templates/admin.php:777
msgid "Save"
msgstr "Speichern Sie"
#: templates/admin.php:831
msgid "Premium Plan"
msgstr "Premium-Plan"
#: templates/admin.php:834 templates/admin.php:1023 templates/admin.php:1032
#: templates/admin.php:1040
msgid "Only the users with a paid account can avail this feature."
msgstr ""
"Nur die Benutzer mit einem kostenpflichtigen Konto können diese Funktion "
"nutzen."
#: templates/admin.php:839
msgid "Ok"
msgstr "OK"
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr "seers logo"
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr "Über Cookies"
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr "Cookie-Richtlinien lesen"
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr "Erforderlich"
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr "Immer aktiv"
#: templates/frontend-popup.php:1774
msgid ""
"Necessary cookies help make a website usable by enabling basic functions "
"like page navigation and access to secure areas of the website. The website "
"cannot function properly without these cookies."
msgstr ""
"Notwendige Cookies helfen dabei, eine Website nutzbar zu machen, indem sie "
"grundlegende Funktionen wie die Seitennavigation und den Zugang zu "
"geschützten Bereichen der Website ermöglichen. Ohne diese Cookies kann die "
"Website nicht richtig funktionieren."
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784
#: templates/frontend-popup.php:1794 templates/frontend-popup.php:1804
#: templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr "Cookie-Details"
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr "Präferenz"
#: templates/frontend-popup.php:1784
msgid ""
"Preference cookies enable a website to remember information that changes the "
"way the website behaves or looks, like your preferred language or the region "
"that you are in."
msgstr ""
"Preference Cookies ermöglichen es einer Website, sich an Informationen zu "
"erinnern, die die Art und Weise, wie sich die Website verhält, wie Ihre "
"bevorzugte Sprache oder der Region, in der Sie sich einhalten, verhält oder "
"aussehen."
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr "Statistik"
#: templates/frontend-popup.php:1794
msgid ""
"Statistic cookies help website owners to understand how visitors interact "
"with websites by collecting and reporting information anonymously."
msgstr ""
"Statistik-Cookies helfen Website-Betreibern zu verstehen, wie Besucher mit "
"Websites interagieren, indem sie Informationen anonym sammeln und melden."
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr "Vermarktung"
#: templates/frontend-popup.php:1804
msgid ""
"Marketing cookies are used to track visitors across websites. The intention "
"is to display ads that are relevant and engaging for the individual user and "
"thereby more valuable for publishers and third-party advertisers."
msgstr ""
"Marketing-Cookies werden verwendet, um Besucher auf verschiedenen Websites "
"zu verfolgen. Ziel ist es, Anzeigen zu schalten, die für den einzelnen "
"Nutzer relevant und ansprechend sind und damit für Verlage und Drittanbieter "
"wertvoller sind."
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr "Nicht klassifizierte"
#: templates/frontend-popup.php:1812
msgid ""
"Unclassified cookies are cookies that we are in the process of classifying, "
"together with the providers of individual cookies."
msgstr ""
"Nicht klassifizierte Cookies sind Cookies, die wir zusammen mit den "
"Anbietern der einzelnen Cookies klassifizieren wollen."
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr "Meine Auswahl speichern"
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr "Angetrieben von"
#~ msgid "To get your Cookie ID click on Activate"
#~ msgstr "To get your Cookie ID click on Activate"
#~ msgid "Activate"
#~ msgstr "Activate"

View File

@ -0,0 +1,722 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-25 17:21+0500\n"
"PO-Revision-Date: 2022-03-30 04:47-0700\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: seers-cookie-consent-banner-privacy-policy.pot\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:382
msgid "Quick Feedback"
msgstr "Schnelles Feedback"
#: inc/seers-cookie-consent-plugin-deactivate.php:383
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr ""
"Wenn Sie einen Moment haben, teilen Sie uns dies bitte mit, warum Sie "
"deaktivieren:"
#: inc/seers-cookie-consent-plugin-deactivate.php:386
#: inc/seers-cookie-consent-plugin-deactivate.php:387
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr "Das Banner ist nicht in der gewünschten Sprache"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid ""
"The banner picks up your website language automatically. You can always sign-"
"in on your Seers account"
msgstr ""
"Das Banner übernimmt automatisch die Sprache Ihrer Website. Sie können sich "
"jederzeit in Ihr Seers-Konto einloggen"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "and choose the language you like. See the video"
msgstr "und wählen Sie die Sprache, die Sie mögen. Schau das Video"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "here"
msgstr "Hier"
#: inc/seers-cookie-consent-plugin-deactivate.php:395
#: inc/seers-cookie-consent-plugin-deactivate.php:396
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr "Banner erschien nicht"
#: inc/seers-cookie-consent-plugin-deactivate.php:399
#: inc/seers-cookie-consent-plugin-deactivate.php:420
msgid ""
"Most of the times the compatibility issue can be fixed very quickly. Please "
"contact"
msgstr ""
"Die meisten Fällen kann das Kompatibilitätsproblem sehr schnell behoben "
"werden. Wenden Sie sich bitte"
#: inc/seers-cookie-consent-plugin-deactivate.php:403
#: inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr "Cookies zeigen nicht in Einstellungen"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid ""
"We are scanning your website and it can take up to 12 hours for Cookies to "
"appear. In a very few cases scanner miss a cookie. This"
msgstr ""
"Wir scannen Ihre Website und dauert bis zu 12 Stunden, bis Cookies angezeigt "
"werden soll. In ein paar Fällen vermissen Scanner ein Cookie. Dies"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "video"
msgstr "Video"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "explains how to add cookies manually."
msgstr "Erläutert, wie Sie Cookies manuell hinzufügen können."
#: inc/seers-cookie-consent-plugin-deactivate.php:410
#: inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr "Das Banner entsprach nicht der Website-Thema"
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "You can fully customize the banner. Please see the video"
msgstr ""
"Sie können das Banner vollständig anpassen. Bitte sehen Sie sich das Video an"
#: inc/seers-cookie-consent-plugin-deactivate.php:416
#: inc/seers-cookie-consent-plugin-deactivate.php:417
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr "Das Plugin hat meine Website gebrochen"
#: inc/seers-cookie-consent-plugin-deactivate.php:424
#: inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr "Ich habe ein besseres Plugin gefunden"
#: inc/seers-cookie-consent-plugin-deactivate.php:427
msgid "Plugin name"
msgstr "Name des Plugin"
#: inc/seers-cookie-consent-plugin-deactivate.php:430
msgid ""
"The plugin is great, but i need specific feature that you do not support."
msgstr ""
"Das Plugin ist großartig, aber ich brauche ein bestimmtes Merkmal, das Sie "
"nicht unterstützen."
#: inc/seers-cookie-consent-plugin-deactivate.php:431
#: inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid ""
"The plugin is great, but i need specific feature that you don't support."
msgstr ""
"Das Plugin ist großartig, aber ich brauche ein bestimmtes Merkmal, das Sie "
"nicht unterstützen."
#: inc/seers-cookie-consent-plugin-deactivate.php:434
msgid "Banner customisation."
msgstr "Banner-Anpassung."
#: inc/seers-cookie-consent-plugin-deactivate.php:438
#: inc/seers-cookie-consent-plugin-deactivate.php:439
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr "Andere"
#: inc/seers-cookie-consent-plugin-deactivate.php:442
msgid "Kindly tell us the reason so we can improve."
msgstr "Bitte erzählen Sie uns den Grund, damit wir uns verbessern können."
#: inc/seers-cookie-consent-plugin-deactivate.php:445
msgid "Submit & Deactivate"
msgstr "Senden und deaktivieren"
#: inc/seers-cookie-consent-plugin-deactivate.php:446
msgid "Cancel"
msgstr "Stornieren"
#: inc/seers-cookie-consent-plugin-deactivate.php:451
msgid "Skip & Deactivate"
msgstr "Überspringen und deaktivieren"
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr "Ignoriere die Nachricht."
#: seers-cookie-consent-banner-privacy-policy.php:135 templates/admin.php:97
msgid "Settings"
msgstr "Einstellungen"
#: seers-cookie-consent-banner-privacy-policy.php:141
msgid "Upgrade Premium"
msgstr "Upgrade-Prämie"
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:514
#: templates/frontend-popup.php:1738 templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr "Wir verwenden Cookies, um Ihnen das beste Erlebnis zu bieten"
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:558
#: templates/admin.php:559 templates/admin.php:561
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1765
msgid "Allow All"
msgstr "Alle zulassen"
#: seers-cookie-consent-banner-privacy-policy.php:294 templates/admin.php:589
#: templates/admin.php:590 templates/admin.php:592
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1766
msgid "Disable All"
msgstr "Alle deaktivieren"
#: seers-cookie-consent-banner-privacy-policy.php:295 templates/admin.php:621
#: templates/frontend-popup.php:1740
msgid "Preference"
msgstr "Präferenz"
#: seers-cookie-consent-banner-privacy-policy.php:418
#: seers-cookie-consent-banner-privacy-policy.php:446
#: seers-cookie-consent-banner-privacy-policy.php:452
msgid "Cookies policy added successfully."
msgstr "Cookies-Richtlinien wurden erfolgreich hinzugefügt."
#: seers-cookie-consent-banner-privacy-policy.php:421
msgid "Some thing went wrong. Please check url and try again"
msgstr ""
"Etwas ist schief gelaufen. Bitte überprüfen Sie die URL und versuchen Sie es "
"erneut"
#: seers-cookie-consent-banner-privacy-policy.php:675
msgid "Some thing went wrong."
msgstr "Etwas ist schief gelaufen."
#: seers-cookie-consent-banner-privacy-policy.php:819
msgid "Settings has been updated successfully"
msgstr "Die Einstellungen wurde erfolgreich aktualisiert"
#: templates/admin.php:92 templates/admin.php:841
msgid "Account Setup"
msgstr "Konto-Setup"
#: templates/admin.php:100
msgid "Policy"
msgstr "Politik"
#: templates/admin.php:104
msgid "User Guide"
msgstr "Benutzerhandbuch"
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr "Ihr Seers-Cookie-Zustimmungsbanner ist aktiviert."
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr "Ihr Seers Cookie Consent Banner ist NICHT aktiviert, weil"
#: templates/admin.php:134
msgid "Email"
msgstr "Email"
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr "Ich stimme Seers zu"
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr "Allgemeine Geschäftsbedingungen"
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr "und"
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr "Datenschutz-Bestimmungen"
#: templates/admin.php:154 templates/admin.php:172
msgid ""
"I agree Seers to use my email and url to create an account and power the "
"cookie banner."
msgstr ""
"Ich erkläre mich damit einverstanden, dass Seers meine E-Mail und URL "
"verwendet, um ein Konto zu erstellen und den Cookie-Banner zu aktivieren."
#: templates/admin.php:178
msgid "Create Account"
msgstr "Benutzerkonto erstellen"
#: templates/admin.php:181
msgid "Cookie ID"
msgstr "Cookie-ID"
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr "Seers Cookie ID wird automatisch nach der Kontoerstellung empfangen"
#: templates/admin.php:197
msgid "Powering all your"
msgstr "Alles für Sie"
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr "Privatsphäre und; Datensicherheitsanforderungen"
#: templates/admin.php:199
msgid ""
"Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy "
"compliance tools,"
msgstr ""
"Erhalten Sie Zugang zu einem umfangreichen Angebot an GDPR, PECR, CCPA und; "
"Esprivacy Compliance-Tools,"
#: templates/admin.php:200
msgid "all"
msgstr "alle"
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
"Entwickelt, um den Ärger von den neuen Daten herauszufordern\n"
" Schutzvorschriften."
#: templates/admin.php:206
msgid "Policies Pack"
msgstr "Richtlinienpackung"
#: templates/admin.php:207
msgid "Templates Pack"
msgstr "Vorlagenpackung"
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr "GDPR-Personal EETRAING"
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr "Cookie-Einverständnismanagement"
#: templates/admin.php:212
msgid "DPIA"
msgstr "DPIA"
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr "Gdpr audit"
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr "Cyber Secure"
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr "Subject Request Management"
#: templates/admin.php:217
msgid "START FREE"
msgstr "KOSTENLOS beginnen"
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
"Datenschutz und;\n"
" Einhaltung. Gelöst"
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help "
"companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
"Trust Worlds führende Privatsphäre- und Zustimmung der Verwaltung der "
"Verwaltung von Unternehmen, um den Unternehmen zu helfen\n"
" mit GDPR, PECL, CCPA und Esprivatacy"
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr "Beginnen Sie heute Premium"
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr "Seers Prämienplan"
#: templates/admin.php:232
msgid "Branding"
msgstr "Branding"
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr "Multi lingual"
#: templates/admin.php:234
msgid "Consent Log"
msgstr "Zustimmungsprotokoll"
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr "Cookie-Politik"
#: templates/admin.php:236
msgid "Prior Consent"
msgstr "Vorherige Zustimmung"
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr "6+ Design-Layouts"
#: templates/admin.php:238
msgid "Customer Support"
msgstr "Kundendienst"
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr "Banner-Anpassung"
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr "Cookie Deklarationstabelle"
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
"\"Premium beginnen.\n"
" HEUTE"
#: templates/admin.php:255
msgid "Banner Settings"
msgstr "Bannereinstellungen"
#: templates/admin.php:260
msgid "Banner"
msgstr "Banner"
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr "Cookie-Banner aktivieren / deaktivieren"
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr "Cookie-Ablauf"
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr "Stellen Sie Ihr Zustimmungs-Cookie so ein, dass es in Tagen abläuft."
#: templates/admin.php:291
msgid "Language"
msgstr "Sprache"
#: templates/admin.php:291
msgid "Choose a language for the banner Settings > General."
msgstr "Wählen Sie eine Sprache für das Banner Einstellungen > Allgemein."
#: templates/admin.php:475
msgid "Show Badge"
msgstr "Abzeichen anzeigen"
#: templates/admin.php:475
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr ""
"Zeigen Sie ein Abzeichen an, damit der Cookie-Banner nach der Zustimmung "
"auftritt."
#: templates/admin.php:498
msgid "Visual Settings"
msgstr "Visuelle Einstellungen"
#: templates/admin.php:503
msgid "Banner Text"
msgstr "Bannertext"
#: templates/admin.php:503
msgid "Text to appear on the banner:"
msgstr "Text, der auf dem Banner erscheinen soll:"
#: templates/admin.php:506 templates/admin.php:524
msgid "Colour"
msgstr "Farbe"
#: templates/admin.php:506
msgid "The text colour to appear on the banner:"
msgstr "Die Textfarbe, die auf dem Banner erscheinen soll:"
#: templates/admin.php:521
msgid "Banner Background"
msgstr "Banner-Hintergrund"
#: templates/admin.php:521
msgid "You can change the background colour of the banner:"
msgstr "Sie können die Hintergrundfarbe des Banners ändern:"
#: templates/admin.php:524
msgid "The background colour of the banner:"
msgstr "Die Hintergrundfarbe des Banners:"
#: templates/admin.php:538
msgid "Accept Button"
msgstr "Schaltfläche Akzeptieren"
#: templates/admin.php:538
msgid ""
"You can change text colour, button colour and text of the 'Accept All' button"
msgstr ""
"Sie können Textfarbe, Schaltfläche Farbe und Text der Schaltfläche \"Alle "
"akzeptieren\" ändern"
#: templates/admin.php:541 templates/admin.php:572 templates/admin.php:603
msgid "Text Colour"
msgstr "Textfarbe"
#: templates/admin.php:541
msgid "The text colour to appear on the 'Accept All' button:"
msgstr ""
"Die Textfarbe, die auf der Schaltfläche \"Alle akzeptieren\" angezeigt wird:"
#: templates/admin.php:551 templates/admin.php:582 templates/admin.php:613
msgid "Button Colour"
msgstr "Knopffarbe"
#: templates/admin.php:551
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr "Die \"Alles akzeptieren\", um auf dem Banner zu erscheinen:"
#: templates/admin.php:569
msgid "Reject Button"
msgstr "Schaltfläche ablehnen"
#: templates/admin.php:569
msgid ""
"You can change text colour, button colour and text of the 'Reject All' button"
msgstr ""
"Sie können Textfarbe, Schaltfläche Farbe und Text der Taste 'ablehnen' "
"ablehnen"
#: templates/admin.php:572
msgid "The text colour to appear on the 'Reject All' button:"
msgstr "Die Textfarbe, die auf der Schaltfläche 'ablehnen lehnt:"
#: templates/admin.php:582
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr "Die Schaltfläche \"Alle ablehnen\" erscheint in der Farbe des Banners:"
#: templates/admin.php:600
msgid "Setting Button"
msgstr "Schaltfläche einstellen"
#: templates/admin.php:600
msgid "You can change text colour and text of the 'Setting' button"
msgstr ""
"Sie können Textfarbe und einen Text der Schaltfläche \"Einstellung\" ändern"
#: templates/admin.php:603
msgid "The text colour to appear on the 'Setting' button:"
msgstr "Die Textfarbe wird auf der Schaltfläche \"Einstellung\" angezeigt:"
#: templates/admin.php:613
msgid "The 'Setting' button colour to appear on the banner:"
msgstr ""
"Die Farbe der Schaltfläche \"Einstellung\" wird auf dem Banner angezeigt:"
#: templates/admin.php:624
msgid "Setting"
msgstr "Einstellung"
#: templates/admin.php:632
msgid "Fonts"
msgstr "Schriftarten"
#: templates/admin.php:632
msgid "You can select a font for the text of the banner:"
msgstr "Sie können eine Schriftart für den Text des Banners auswählen:"
#: templates/admin.php:684
msgid "Select Button"
msgstr "Auswahlknopf"
#: templates/admin.php:684
msgid "You can select the shape of the buttons that appear on the banner."
msgstr ""
"Sie können die Form der Tasten auswählen, die auf dem Banner angezeigt "
"werden."
#: templates/admin.php:688
msgid "Default"
msgstr "Standard"
#: templates/admin.php:692 templates/admin.php:702
msgid "Flat"
msgstr "Flat"
#: templates/admin.php:695 templates/admin.php:705
msgid "Rounded"
msgstr "Gerundet"
#: templates/admin.php:698 templates/admin.php:708
msgid "Stroke"
msgstr "Stroke"
#: templates/admin.php:726
msgid "PREVIEW"
msgstr "Vorschau"
#: templates/admin.php:727
msgid "SAVE"
msgstr "SPAREN"
#: templates/admin.php:746
msgid "Please create cookies policy page and enter URL below."
msgstr ""
"Bitte erstellen Sie Cookies-Richtlinien-Seite und geben Sie unten die URL "
"ein."
#: templates/admin.php:750
msgid "Enable Policy:"
msgstr "Richtlinie aktivieren:"
#: templates/admin.php:767
msgid "Cookie Policy and declaration URL:"
msgstr "Cookie-Richtlinie und Deklaration URL:"
#: templates/admin.php:770
msgid "Policy URL"
msgstr "Richtlinien-URL"
#: templates/admin.php:777
msgid "Save"
msgstr "Speichern Sie"
#: templates/admin.php:831
msgid "Premium Plan"
msgstr "Premium-Plan"
#: templates/admin.php:834 templates/admin.php:1023 templates/admin.php:1032
#: templates/admin.php:1040
msgid "Only the users with a paid account can avail this feature."
msgstr ""
"Nur die Benutzer mit einem kostenpflichtigen Konto können diese Funktion "
"nutzen."
#: templates/admin.php:839
msgid "Ok"
msgstr "OK"
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr "seers logo"
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr "Über Cookies"
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr "Cookie-Richtlinien lesen"
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr "Erforderlich"
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr "Immer aktiv"
#: templates/frontend-popup.php:1774
msgid ""
"Necessary cookies help make a website usable by enabling basic functions "
"like page navigation and access to secure areas of the website. The website "
"cannot function properly without these cookies."
msgstr ""
"Notwendige Cookies helfen dabei, eine Website nutzbar zu machen, indem sie "
"grundlegende Funktionen wie die Seitennavigation und den Zugang zu "
"geschützten Bereichen der Website ermöglichen. Ohne diese Cookies kann die "
"Website nicht richtig funktionieren."
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784
#: templates/frontend-popup.php:1794 templates/frontend-popup.php:1804
#: templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr "Cookie-Details"
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr "Präferenz"
#: templates/frontend-popup.php:1784
msgid ""
"Preference cookies enable a website to remember information that changes the "
"way the website behaves or looks, like your preferred language or the region "
"that you are in."
msgstr ""
"Preference Cookies ermöglichen es einer Website, sich an Informationen zu "
"erinnern, die die Art und Weise, wie sich die Website verhält, wie Ihre "
"bevorzugte Sprache oder der Region, in der Sie sich einhalten, verhält oder "
"aussehen."
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr "Statistik"
#: templates/frontend-popup.php:1794
msgid ""
"Statistic cookies help website owners to understand how visitors interact "
"with websites by collecting and reporting information anonymously."
msgstr ""
"Statistik-Cookies helfen Website-Betreibern zu verstehen, wie Besucher mit "
"Websites interagieren, indem sie Informationen anonym sammeln und melden."
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr "Vermarktung"
#: templates/frontend-popup.php:1804
msgid ""
"Marketing cookies are used to track visitors across websites. The intention "
"is to display ads that are relevant and engaging for the individual user and "
"thereby more valuable for publishers and third-party advertisers."
msgstr ""
"Marketing-Cookies werden verwendet, um Besucher auf verschiedenen Websites "
"zu verfolgen. Ziel ist es, Anzeigen zu schalten, die für den einzelnen "
"Nutzer relevant und ansprechend sind und damit für Verlage und Drittanbieter "
"wertvoller sind."
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr "Nicht klassifizierte"
#: templates/frontend-popup.php:1812
msgid ""
"Unclassified cookies are cookies that we are in the process of classifying, "
"together with the providers of individual cookies."
msgstr ""
"Nicht klassifizierte Cookies sind Cookies, die wir zusammen mit den "
"Anbietern der einzelnen Cookies klassifizieren wollen."
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr "Meine Auswahl speichern"
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr "Angetrieben von"
#~ msgid "To get your Cookie ID click on Activate"
#~ msgstr "To get your Cookie ID click on Activate"
#~ msgid "Activate"
#~ msgstr "Activate"

View File

@ -0,0 +1,722 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-25 17:21+0500\n"
"PO-Revision-Date: 2022-03-30 04:47-0700\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: seers-cookie-consent-banner-privacy-policy.pot\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:382
msgid "Quick Feedback"
msgstr "Schnelles Feedback"
#: inc/seers-cookie-consent-plugin-deactivate.php:383
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr ""
"Wenn Sie einen Moment haben, teilen Sie uns dies bitte mit, warum Sie "
"deaktivieren:"
#: inc/seers-cookie-consent-plugin-deactivate.php:386
#: inc/seers-cookie-consent-plugin-deactivate.php:387
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr "Das Banner ist nicht in der gewünschten Sprache"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid ""
"The banner picks up your website language automatically. You can always sign-"
"in on your Seers account"
msgstr ""
"Das Banner übernimmt automatisch die Sprache Ihrer Website. Sie können sich "
"jederzeit in Ihr Seers-Konto einloggen"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "and choose the language you like. See the video"
msgstr "und wählen Sie die Sprache, die Sie mögen. Schau das Video"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "here"
msgstr "Hier"
#: inc/seers-cookie-consent-plugin-deactivate.php:395
#: inc/seers-cookie-consent-plugin-deactivate.php:396
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr "Banner erschien nicht"
#: inc/seers-cookie-consent-plugin-deactivate.php:399
#: inc/seers-cookie-consent-plugin-deactivate.php:420
msgid ""
"Most of the times the compatibility issue can be fixed very quickly. Please "
"contact"
msgstr ""
"Die meisten Fällen kann das Kompatibilitätsproblem sehr schnell behoben "
"werden. Wenden Sie sich bitte"
#: inc/seers-cookie-consent-plugin-deactivate.php:403
#: inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr "Cookies zeigen nicht in Einstellungen"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid ""
"We are scanning your website and it can take up to 12 hours for Cookies to "
"appear. In a very few cases scanner miss a cookie. This"
msgstr ""
"Wir scannen Ihre Website und dauert bis zu 12 Stunden, bis Cookies angezeigt "
"werden soll. In ein paar Fällen vermissen Scanner ein Cookie. Dies"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "video"
msgstr "Video"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "explains how to add cookies manually."
msgstr "Erläutert, wie Sie Cookies manuell hinzufügen können."
#: inc/seers-cookie-consent-plugin-deactivate.php:410
#: inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr "Das Banner entsprach nicht der Website-Thema"
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "You can fully customize the banner. Please see the video"
msgstr ""
"Sie können das Banner vollständig anpassen. Bitte sehen Sie sich das Video an"
#: inc/seers-cookie-consent-plugin-deactivate.php:416
#: inc/seers-cookie-consent-plugin-deactivate.php:417
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr "Das Plugin hat meine Website gebrochen"
#: inc/seers-cookie-consent-plugin-deactivate.php:424
#: inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr "Ich habe ein besseres Plugin gefunden"
#: inc/seers-cookie-consent-plugin-deactivate.php:427
msgid "Plugin name"
msgstr "Name des Plugin"
#: inc/seers-cookie-consent-plugin-deactivate.php:430
msgid ""
"The plugin is great, but i need specific feature that you do not support."
msgstr ""
"Das Plugin ist großartig, aber ich brauche ein bestimmtes Merkmal, das Sie "
"nicht unterstützen."
#: inc/seers-cookie-consent-plugin-deactivate.php:431
#: inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid ""
"The plugin is great, but i need specific feature that you don't support."
msgstr ""
"Das Plugin ist großartig, aber ich brauche ein bestimmtes Merkmal, das Sie "
"nicht unterstützen."
#: inc/seers-cookie-consent-plugin-deactivate.php:434
msgid "Banner customisation."
msgstr "Banner-Anpassung."
#: inc/seers-cookie-consent-plugin-deactivate.php:438
#: inc/seers-cookie-consent-plugin-deactivate.php:439
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr "Andere"
#: inc/seers-cookie-consent-plugin-deactivate.php:442
msgid "Kindly tell us the reason so we can improve."
msgstr "Bitte erzählen Sie uns den Grund, damit wir uns verbessern können."
#: inc/seers-cookie-consent-plugin-deactivate.php:445
msgid "Submit & Deactivate"
msgstr "Senden und deaktivieren"
#: inc/seers-cookie-consent-plugin-deactivate.php:446
msgid "Cancel"
msgstr "Stornieren"
#: inc/seers-cookie-consent-plugin-deactivate.php:451
msgid "Skip & Deactivate"
msgstr "Überspringen und deaktivieren"
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr "Ignoriere die Nachricht."
#: seers-cookie-consent-banner-privacy-policy.php:135 templates/admin.php:97
msgid "Settings"
msgstr "Einstellungen"
#: seers-cookie-consent-banner-privacy-policy.php:141
msgid "Upgrade Premium"
msgstr "Upgrade-Prämie"
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:514
#: templates/frontend-popup.php:1738 templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr "Wir verwenden Cookies, um Ihnen das beste Erlebnis zu bieten"
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:558
#: templates/admin.php:559 templates/admin.php:561
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1765
msgid "Allow All"
msgstr "Alle zulassen"
#: seers-cookie-consent-banner-privacy-policy.php:294 templates/admin.php:589
#: templates/admin.php:590 templates/admin.php:592
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1766
msgid "Disable All"
msgstr "Alle deaktivieren"
#: seers-cookie-consent-banner-privacy-policy.php:295 templates/admin.php:621
#: templates/frontend-popup.php:1740
msgid "Preference"
msgstr "Präferenz"
#: seers-cookie-consent-banner-privacy-policy.php:418
#: seers-cookie-consent-banner-privacy-policy.php:446
#: seers-cookie-consent-banner-privacy-policy.php:452
msgid "Cookies policy added successfully."
msgstr "Cookies-Richtlinien wurden erfolgreich hinzugefügt."
#: seers-cookie-consent-banner-privacy-policy.php:421
msgid "Some thing went wrong. Please check url and try again"
msgstr ""
"Etwas ist schief gelaufen. Bitte überprüfen Sie die URL und versuchen Sie es "
"erneut"
#: seers-cookie-consent-banner-privacy-policy.php:675
msgid "Some thing went wrong."
msgstr "Etwas ist schief gelaufen."
#: seers-cookie-consent-banner-privacy-policy.php:819
msgid "Settings has been updated successfully"
msgstr "Die Einstellungen wurde erfolgreich aktualisiert"
#: templates/admin.php:92 templates/admin.php:841
msgid "Account Setup"
msgstr "Konto-Setup"
#: templates/admin.php:100
msgid "Policy"
msgstr "Politik"
#: templates/admin.php:104
msgid "User Guide"
msgstr "Benutzerhandbuch"
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr "Ihr Seers-Cookie-Zustimmungsbanner ist aktiviert."
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr "Ihr Seers Cookie Consent Banner ist NICHT aktiviert, weil"
#: templates/admin.php:134
msgid "Email"
msgstr "Email"
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr "Ich stimme Seers zu"
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr "Allgemeine Geschäftsbedingungen"
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr "und"
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr "Datenschutz-Bestimmungen"
#: templates/admin.php:154 templates/admin.php:172
msgid ""
"I agree Seers to use my email and url to create an account and power the "
"cookie banner."
msgstr ""
"Ich erkläre mich damit einverstanden, dass Seers meine E-Mail und URL "
"verwendet, um ein Konto zu erstellen und den Cookie-Banner zu aktivieren."
#: templates/admin.php:178
msgid "Create Account"
msgstr "Benutzerkonto erstellen"
#: templates/admin.php:181
msgid "Cookie ID"
msgstr "Cookie-ID"
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr "Seers Cookie ID wird automatisch nach der Kontoerstellung empfangen"
#: templates/admin.php:197
msgid "Powering all your"
msgstr "Alles für Sie"
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr "Privatsphäre und; Datensicherheitsanforderungen"
#: templates/admin.php:199
msgid ""
"Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy "
"compliance tools,"
msgstr ""
"Erhalten Sie Zugang zu einem umfangreichen Angebot an GDPR, PECR, CCPA und; "
"Esprivacy Compliance-Tools,"
#: templates/admin.php:200
msgid "all"
msgstr "alle"
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
"Entwickelt, um den Ärger von den neuen Daten herauszufordern\n"
" Schutzvorschriften."
#: templates/admin.php:206
msgid "Policies Pack"
msgstr "Richtlinienpackung"
#: templates/admin.php:207
msgid "Templates Pack"
msgstr "Vorlagenpackung"
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr "GDPR-Personal EETRAING"
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr "Cookie-Einverständnismanagement"
#: templates/admin.php:212
msgid "DPIA"
msgstr "DPIA"
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr "Gdpr audit"
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr "Cyber Secure"
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr "Subject Request Management"
#: templates/admin.php:217
msgid "START FREE"
msgstr "KOSTENLOS beginnen"
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
"Datenschutz und;\n"
" Einhaltung. Gelöst"
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help "
"companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
"Trust Worlds führende Privatsphäre- und Zustimmung der Verwaltung der "
"Verwaltung von Unternehmen, um den Unternehmen zu helfen\n"
" mit GDPR, PECL, CCPA und Esprivatacy"
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr "Beginnen Sie heute Premium"
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr "Seers Prämienplan"
#: templates/admin.php:232
msgid "Branding"
msgstr "Branding"
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr "Multi lingual"
#: templates/admin.php:234
msgid "Consent Log"
msgstr "Zustimmungsprotokoll"
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr "Cookie-Politik"
#: templates/admin.php:236
msgid "Prior Consent"
msgstr "Vorherige Zustimmung"
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr "6+ Design-Layouts"
#: templates/admin.php:238
msgid "Customer Support"
msgstr "Kundendienst"
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr "Banner-Anpassung"
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr "Cookie Deklarationstabelle"
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
"\"Premium beginnen.\n"
" HEUTE"
#: templates/admin.php:255
msgid "Banner Settings"
msgstr "Bannereinstellungen"
#: templates/admin.php:260
msgid "Banner"
msgstr "Banner"
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr "Cookie-Banner aktivieren / deaktivieren"
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr "Cookie-Ablauf"
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr "Stellen Sie Ihr Zustimmungs-Cookie so ein, dass es in Tagen abläuft."
#: templates/admin.php:291
msgid "Language"
msgstr "Sprache"
#: templates/admin.php:291
msgid "Choose a language for the banner Settings > General."
msgstr "Wählen Sie eine Sprache für das Banner Einstellungen > Allgemein."
#: templates/admin.php:475
msgid "Show Badge"
msgstr "Abzeichen anzeigen"
#: templates/admin.php:475
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr ""
"Zeigen Sie ein Abzeichen an, damit der Cookie-Banner nach der Zustimmung "
"auftritt."
#: templates/admin.php:498
msgid "Visual Settings"
msgstr "Visuelle Einstellungen"
#: templates/admin.php:503
msgid "Banner Text"
msgstr "Bannertext"
#: templates/admin.php:503
msgid "Text to appear on the banner:"
msgstr "Text, der auf dem Banner erscheinen soll:"
#: templates/admin.php:506 templates/admin.php:524
msgid "Colour"
msgstr "Farbe"
#: templates/admin.php:506
msgid "The text colour to appear on the banner:"
msgstr "Die Textfarbe, die auf dem Banner erscheinen soll:"
#: templates/admin.php:521
msgid "Banner Background"
msgstr "Banner-Hintergrund"
#: templates/admin.php:521
msgid "You can change the background colour of the banner:"
msgstr "Sie können die Hintergrundfarbe des Banners ändern:"
#: templates/admin.php:524
msgid "The background colour of the banner:"
msgstr "Die Hintergrundfarbe des Banners:"
#: templates/admin.php:538
msgid "Accept Button"
msgstr "Schaltfläche Akzeptieren"
#: templates/admin.php:538
msgid ""
"You can change text colour, button colour and text of the 'Accept All' button"
msgstr ""
"Sie können Textfarbe, Schaltfläche Farbe und Text der Schaltfläche \"Alle "
"akzeptieren\" ändern"
#: templates/admin.php:541 templates/admin.php:572 templates/admin.php:603
msgid "Text Colour"
msgstr "Textfarbe"
#: templates/admin.php:541
msgid "The text colour to appear on the 'Accept All' button:"
msgstr ""
"Die Textfarbe, die auf der Schaltfläche \"Alle akzeptieren\" angezeigt wird:"
#: templates/admin.php:551 templates/admin.php:582 templates/admin.php:613
msgid "Button Colour"
msgstr "Knopffarbe"
#: templates/admin.php:551
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr "Die \"Alles akzeptieren\", um auf dem Banner zu erscheinen:"
#: templates/admin.php:569
msgid "Reject Button"
msgstr "Schaltfläche ablehnen"
#: templates/admin.php:569
msgid ""
"You can change text colour, button colour and text of the 'Reject All' button"
msgstr ""
"Sie können Textfarbe, Schaltfläche Farbe und Text der Taste 'ablehnen' "
"ablehnen"
#: templates/admin.php:572
msgid "The text colour to appear on the 'Reject All' button:"
msgstr "Die Textfarbe, die auf der Schaltfläche 'ablehnen lehnt:"
#: templates/admin.php:582
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr "Die Schaltfläche \"Alle ablehnen\" erscheint in der Farbe des Banners:"
#: templates/admin.php:600
msgid "Setting Button"
msgstr "Schaltfläche einstellen"
#: templates/admin.php:600
msgid "You can change text colour and text of the 'Setting' button"
msgstr ""
"Sie können Textfarbe und einen Text der Schaltfläche \"Einstellung\" ändern"
#: templates/admin.php:603
msgid "The text colour to appear on the 'Setting' button:"
msgstr "Die Textfarbe wird auf der Schaltfläche \"Einstellung\" angezeigt:"
#: templates/admin.php:613
msgid "The 'Setting' button colour to appear on the banner:"
msgstr ""
"Die Farbe der Schaltfläche \"Einstellung\" wird auf dem Banner angezeigt:"
#: templates/admin.php:624
msgid "Setting"
msgstr "Einstellung"
#: templates/admin.php:632
msgid "Fonts"
msgstr "Schriftarten"
#: templates/admin.php:632
msgid "You can select a font for the text of the banner:"
msgstr "Sie können eine Schriftart für den Text des Banners auswählen:"
#: templates/admin.php:684
msgid "Select Button"
msgstr "Auswahlknopf"
#: templates/admin.php:684
msgid "You can select the shape of the buttons that appear on the banner."
msgstr ""
"Sie können die Form der Tasten auswählen, die auf dem Banner angezeigt "
"werden."
#: templates/admin.php:688
msgid "Default"
msgstr "Standard"
#: templates/admin.php:692 templates/admin.php:702
msgid "Flat"
msgstr "Flat"
#: templates/admin.php:695 templates/admin.php:705
msgid "Rounded"
msgstr "Gerundet"
#: templates/admin.php:698 templates/admin.php:708
msgid "Stroke"
msgstr "Stroke"
#: templates/admin.php:726
msgid "PREVIEW"
msgstr "Vorschau"
#: templates/admin.php:727
msgid "SAVE"
msgstr "SPAREN"
#: templates/admin.php:746
msgid "Please create cookies policy page and enter URL below."
msgstr ""
"Bitte erstellen Sie Cookies-Richtlinien-Seite und geben Sie unten die URL "
"ein."
#: templates/admin.php:750
msgid "Enable Policy:"
msgstr "Richtlinie aktivieren:"
#: templates/admin.php:767
msgid "Cookie Policy and declaration URL:"
msgstr "Cookie-Richtlinie und Deklaration URL:"
#: templates/admin.php:770
msgid "Policy URL"
msgstr "Richtlinien-URL"
#: templates/admin.php:777
msgid "Save"
msgstr "Speichern Sie"
#: templates/admin.php:831
msgid "Premium Plan"
msgstr "Premium-Plan"
#: templates/admin.php:834 templates/admin.php:1023 templates/admin.php:1032
#: templates/admin.php:1040
msgid "Only the users with a paid account can avail this feature."
msgstr ""
"Nur die Benutzer mit einem kostenpflichtigen Konto können diese Funktion "
"nutzen."
#: templates/admin.php:839
msgid "Ok"
msgstr "OK"
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr "seers logo"
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr "Über Cookies"
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr "Cookie-Richtlinien lesen"
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr "Erforderlich"
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr "Immer aktiv"
#: templates/frontend-popup.php:1774
msgid ""
"Necessary cookies help make a website usable by enabling basic functions "
"like page navigation and access to secure areas of the website. The website "
"cannot function properly without these cookies."
msgstr ""
"Notwendige Cookies helfen dabei, eine Website nutzbar zu machen, indem sie "
"grundlegende Funktionen wie die Seitennavigation und den Zugang zu "
"geschützten Bereichen der Website ermöglichen. Ohne diese Cookies kann die "
"Website nicht richtig funktionieren."
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784
#: templates/frontend-popup.php:1794 templates/frontend-popup.php:1804
#: templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr "Cookie-Details"
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr "Präferenz"
#: templates/frontend-popup.php:1784
msgid ""
"Preference cookies enable a website to remember information that changes the "
"way the website behaves or looks, like your preferred language or the region "
"that you are in."
msgstr ""
"Preference Cookies ermöglichen es einer Website, sich an Informationen zu "
"erinnern, die die Art und Weise, wie sich die Website verhält, wie Ihre "
"bevorzugte Sprache oder der Region, in der Sie sich einhalten, verhält oder "
"aussehen."
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr "Statistik"
#: templates/frontend-popup.php:1794
msgid ""
"Statistic cookies help website owners to understand how visitors interact "
"with websites by collecting and reporting information anonymously."
msgstr ""
"Statistik-Cookies helfen Website-Betreibern zu verstehen, wie Besucher mit "
"Websites interagieren, indem sie Informationen anonym sammeln und melden."
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr "Vermarktung"
#: templates/frontend-popup.php:1804
msgid ""
"Marketing cookies are used to track visitors across websites. The intention "
"is to display ads that are relevant and engaging for the individual user and "
"thereby more valuable for publishers and third-party advertisers."
msgstr ""
"Marketing-Cookies werden verwendet, um Besucher auf verschiedenen Websites "
"zu verfolgen. Ziel ist es, Anzeigen zu schalten, die für den einzelnen "
"Nutzer relevant und ansprechend sind und damit für Verlage und Drittanbieter "
"wertvoller sind."
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr "Nicht klassifizierte"
#: templates/frontend-popup.php:1812
msgid ""
"Unclassified cookies are cookies that we are in the process of classifying, "
"together with the providers of individual cookies."
msgstr ""
"Nicht klassifizierte Cookies sind Cookies, die wir zusammen mit den "
"Anbietern der einzelnen Cookies klassifizieren wollen."
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr "Meine Auswahl speichern"
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr "Angetrieben von"
#~ msgid "To get your Cookie ID click on Activate"
#~ msgstr "To get your Cookie ID click on Activate"
#~ msgid "Activate"
#~ msgstr "Activate"

View File

@ -0,0 +1,718 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-25 17:21+0500\n"
"PO-Revision-Date: 2022-03-30 17:28+0500\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: el_GR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 2.4.1\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: seers-cookie-consent-banner-privacy-policy.pot\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:382
msgid "Quick Feedback"
msgstr "Γρήγορη ανατροφοδότηση"
#: inc/seers-cookie-consent-plugin-deactivate.php:383
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr "Εάν έχετε μια στιγμή, ενημερώστε μας γιατί είστε απενεργοποιημένοι:"
#: inc/seers-cookie-consent-plugin-deactivate.php:386
#: inc/seers-cookie-consent-plugin-deactivate.php:387
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr "Το banner δεν είναι στην απαιτούμενη γλώσσα"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid ""
"The banner picks up your website language automatically. You can always sign-"
"in on your Seers account"
msgstr ""
"Το banner συλλέγει αυτόματα τη γλώσσα του ιστότοπού σας. Μπορείτε πάντα να "
"συνδεθείτε στο λογαριασμό σας SEERS"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "and choose the language you like. See the video"
msgstr "και επιλέξτε τη γλώσσα που σας αρέσει. Δείτε το βίντεο"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "here"
msgstr "εδώ"
#: inc/seers-cookie-consent-plugin-deactivate.php:395
#: inc/seers-cookie-consent-plugin-deactivate.php:396
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr "Το Banner δεν εμφανίστηκε"
#: inc/seers-cookie-consent-plugin-deactivate.php:399
#: inc/seers-cookie-consent-plugin-deactivate.php:420
msgid ""
"Most of the times the compatibility issue can be fixed very quickly. Please "
"contact"
msgstr ""
"Τις περισσότερες φορές το ζήτημα της συμβατότητας μπορεί να καθοριστεί πολύ "
"γρήγορα. Παρακαλώ επικοινώνησε"
#: inc/seers-cookie-consent-plugin-deactivate.php:403
#: inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr "Τα cookies δεν εμφανίζονται στις ρυθμίσεις"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid ""
"We are scanning your website and it can take up to 12 hours for Cookies to "
"appear. In a very few cases scanner miss a cookie. This"
msgstr ""
"Σανίζουμε τον ιστότοπό σας και μπορεί να χρειαστούν έως και 12 ώρες για να "
"εμφανιστούν τα cookies. Σε πολύ λίγες περιπτώσεις σαρωτής χάσει ένα cookie. "
"Αυτό"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "video"
msgstr "βίντεο"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "explains how to add cookies manually."
msgstr "eξηγεί πώς να προσθέτετε τα cookies χειροκίνητα."
#: inc/seers-cookie-consent-plugin-deactivate.php:410
#: inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr "Το banner δεν ταιριάζει με το θέμα της ιστοσελίδας"
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "You can fully customize the banner. Please see the video"
msgstr "Μπορείτε να προσαρμόσετε πλήρως το banner. Δείτε το βίντεο"
#: inc/seers-cookie-consent-plugin-deactivate.php:416
#: inc/seers-cookie-consent-plugin-deactivate.php:417
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr "Το plugin έσπασε τον ιστότοπό μου"
#: inc/seers-cookie-consent-plugin-deactivate.php:424
#: inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr "Βρήκα ένα καλύτερο plugin"
#: inc/seers-cookie-consent-plugin-deactivate.php:427
msgid "Plugin name"
msgstr "Όνομα προσφοράς"
#: inc/seers-cookie-consent-plugin-deactivate.php:430
msgid ""
"The plugin is great, but i need specific feature that you do not support."
msgstr ""
"Το plugin είναι υπέροχο, αλλά χρειάζομαι συγκεκριμένη λειτουργία που δεν "
"υποστηρίζετε."
#: inc/seers-cookie-consent-plugin-deactivate.php:431
#: inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid ""
"The plugin is great, but i need specific feature that you don't support."
msgstr ""
"Το plugin είναι υπέροχο, αλλά χρειάζομαι συγκεκριμένη λειτουργία που δεν "
"υποστηρίζετε."
#: inc/seers-cookie-consent-plugin-deactivate.php:434
msgid "Banner customisation."
msgstr "Προσαρμογή πανό."
#: inc/seers-cookie-consent-plugin-deactivate.php:438
#: inc/seers-cookie-consent-plugin-deactivate.php:439
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr "Αλλα"
#: inc/seers-cookie-consent-plugin-deactivate.php:442
msgid "Kindly tell us the reason so we can improve."
msgstr "Παρακαλείστε να μας πείτε το λόγο για να μπορέσουμε να βελτιωθούμε."
#: inc/seers-cookie-consent-plugin-deactivate.php:445
msgid "Submit & Deactivate"
msgstr "Υποβολή & απενεργοποίηση"
#: inc/seers-cookie-consent-plugin-deactivate.php:446
msgid "Cancel"
msgstr "Ματαίωση"
#: inc/seers-cookie-consent-plugin-deactivate.php:451
msgid "Skip & Deactivate"
msgstr "Skip & απενεργοποιήστε"
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr "Απορρίψτε την παρούσα ειδοποίηση."
#: seers-cookie-consent-banner-privacy-policy.php:135 templates/admin.php:97
msgid "Settings"
msgstr "Ρυθμίσεις"
#: seers-cookie-consent-banner-privacy-policy.php:141
msgid "Upgrade Premium"
msgstr "Αναβαθμίστε το Premium"
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:514
#: templates/frontend-popup.php:1738 templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr ""
"Χρησιμοποιούμε cookies για να διασφαλίσουμε ότι θα έχετε την καλύτερη "
"εμπειρία"
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:558
#: templates/admin.php:559 templates/admin.php:561
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1765
msgid "Allow All"
msgstr "Επιτρέπονται όλα"
#: seers-cookie-consent-banner-privacy-policy.php:294 templates/admin.php:589
#: templates/admin.php:590 templates/admin.php:592
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1766
msgid "Disable All"
msgstr "Απενεργοποίηση όλων"
#: seers-cookie-consent-banner-privacy-policy.php:295 templates/admin.php:621
#: templates/frontend-popup.php:1740
msgid "Preference"
msgstr "Προσαρμογή ρυθμίσεων"
#: seers-cookie-consent-banner-privacy-policy.php:418
#: seers-cookie-consent-banner-privacy-policy.php:446
#: seers-cookie-consent-banner-privacy-policy.php:452
msgid "Cookies policy added successfully."
msgstr "Η πολιτική των cookies προστέθηκε με επιτυχία."
#: seers-cookie-consent-banner-privacy-policy.php:421
msgid "Some thing went wrong. Please check url and try again"
msgstr "Κάτι πήγε στραβά. Ελέγξτε τη διεύθυνση URL και δοκιμάστε ξανά"
#: seers-cookie-consent-banner-privacy-policy.php:675
msgid "Some thing went wrong."
msgstr "Κάτι πήγε στραβά."
#: seers-cookie-consent-banner-privacy-policy.php:819
msgid "Settings has been updated successfully"
msgstr "Οι ρυθμίσεις ενημερώνονται με επιτυχία"
#: templates/admin.php:92 templates/admin.php:841
msgid "Account Setup"
msgstr "Ρύθμιση λογαριασμού"
#: templates/admin.php:100
msgid "Policy"
msgstr "Πολιτική"
#: templates/admin.php:104
msgid "User Guide"
msgstr "ΟΔΗΓΟΣ ΧΡΗΣΤΗ"
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr "Το πανό συγκατάθεσης cookie της Seers είναι ενεργοποιημένο."
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr "Το Banner συγκατάθεσης Cookie SEERS δεν ενεργοποιείται επειδή"
#: templates/admin.php:134
msgid "Email"
msgstr "ΗΛΕΚΤΡΟΝΙΚΗ ΔΙΕΥΘΥΝΣΗ"
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr "Συμφωνώ τους SEERS"
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr "Όροι & Κατάσταση"
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr "και"
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr "Πολιτική απορρήτου"
#: templates/admin.php:154 templates/admin.php:172
msgid ""
"I agree Seers to use my email and url to create an account and power the "
"cookie banner."
msgstr ""
"Συμφωνώ οι Seers να χρησιμοποιήσουν το email και το url μου για να "
"δημιουργήσουν λογαριασμό και να ενεργοποιήσουν το cookie banner."
#: templates/admin.php:178
msgid "Create Account"
msgstr "Δημιουργήστε λογαριασμό"
#: templates/admin.php:181
msgid "Cookie ID"
msgstr "Id cookie"
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr "Τα SEERS Cookie ID θα ληφθούν αυτόματα μετά τη δημιουργία λογαριασμού"
#: templates/admin.php:197
msgid "Powering all your"
msgstr "Τροφοδοτώντας όλα σας"
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr "Απόρρητο και? Ανάγκες ασφαλείας δεδομένων"
#: templates/admin.php:199
msgid ""
"Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy "
"compliance tools,"
msgstr ""
"Αποκτήστε πρόσβαση σε ένα εκτεταμένο φάσμα GDPR, PECR, CCPA και? Εργαλεία "
"συμμόρφωσης EPrivacy,"
#: templates/admin.php:200
msgid "all"
msgstr "όλα"
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
"σχεδιασμένο για να πάρει την ταλαιπωρία από τη συμμόρφωση με τα νέα "
"δεδομένα\n"
" Κανονισμοί προστασίας."
#: templates/admin.php:206
msgid "Policies Pack"
msgstr "Πολιτικές πακέτο"
#: templates/admin.php:207
msgid "Templates Pack"
msgstr "Πακέτο προτύπων"
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr "Προσωπικό GDPR Etraining"
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr "Διαχείριση συναίνεσης cookie"
#: templates/admin.php:212
msgid "DPIA"
msgstr "Dpia"
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr "Έλεγχος του GDPR"
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr "Cyber ​​ασφαλής"
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr "Θέμα διαχείρισης αίτησης"
#: templates/admin.php:217
msgid "START FREE"
msgstr "Ξεκινήστε δωρεάν"
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
"Απορρήτου δεδομένων και?\n"
" Συμμόρφωση. Λυώ"
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help "
"companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
"Trust Worlds Η κορυφαία πλατφόρμα διαχείρισης της ιδιωτικής και συγκατάθεσης "
"για να βοηθήσει τις εταιρείες να συμμορφώνονται\n"
" Με το GDPR, PECR, CCPA και EPRIVACY"
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr "Ξεκινήστε το Premium σήμερα"
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr "Seers Premium Σχέδιο"
#: templates/admin.php:232
msgid "Branding"
msgstr "Επωνυμία"
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr "Πολύγλωσσος"
#: templates/admin.php:234
msgid "Consent Log"
msgstr "Σύνδεση καταγραφής"
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr "Πολιτική Cookie"
#: templates/admin.php:236
msgid "Prior Consent"
msgstr "Προηγούμενη συγκατάθεση"
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr "6+ σχεδιαστικές διατάξεις"
#: templates/admin.php:238
msgid "Customer Support"
msgstr "Υποστήριξη πελατών"
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr "Προσαρμογή πανό"
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr "Πίνακα δήλωσης cookie"
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
"\"Start premium\n"
" DNES\""
#: templates/admin.php:255
msgid "Banner Settings"
msgstr "Ρυθμίσεις πανό"
#: templates/admin.php:260
msgid "Banner"
msgstr "Πανό"
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr "Ενεργοποίηση / απενεργοποίηση banner cookie"
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr "Έκθεση Cookie"
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr "Ορίστε το cookie συγκατάθεσής σας να λήγει σε ημέρες."
#: templates/admin.php:291
msgid "Language"
msgstr "Γλώσσα"
#: templates/admin.php:291
msgid "Choose a language for the banner Settings > General."
msgstr "Επιλέξτε μια γλώσσα για το πανό Ρυθμίσεις > Γενικά."
#: templates/admin.php:475
msgid "Show Badge"
msgstr "Εμφάνιση σήματος"
#: templates/admin.php:475
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr ""
"Δείξτε ένα σήμα για να ενεργοποιήσετε το banner cookie να εμφανιστεί η "
"συγκατάθεση."
#: templates/admin.php:498
msgid "Visual Settings"
msgstr "Οπτικές ρυθμίσεις"
#: templates/admin.php:503
msgid "Banner Text"
msgstr "Κείμενο banner"
#: templates/admin.php:503
msgid "Text to appear on the banner:"
msgstr "Κείμενο που εμφανίζεται στο banner:"
#: templates/admin.php:506 templates/admin.php:524
msgid "Colour"
msgstr "Χρώμα"
#: templates/admin.php:506
msgid "The text colour to appear on the banner:"
msgstr "Το χρώμα του κειμένου να εμφανίζεται στο banner:"
#: templates/admin.php:521
msgid "Banner Background"
msgstr "Banner φόντο"
#: templates/admin.php:521
msgid "You can change the background colour of the banner:"
msgstr "Μπορείτε να αλλάξετε το χρώμα φόντου του banner:"
#: templates/admin.php:524
msgid "The background colour of the banner:"
msgstr "Το χρώμα φόντου του banner:"
#: templates/admin.php:538
msgid "Accept Button"
msgstr "Δεχτείτε το κουμπί"
#: templates/admin.php:538
msgid ""
"You can change text colour, button colour and text of the 'Accept All' button"
msgstr ""
"Μπορείτε να αλλάξετε χρώμα κειμένου, κουμπί κουμπιού και κείμενο του "
"κουμπιού 'Αποδοχή όλων'"
#: templates/admin.php:541 templates/admin.php:572 templates/admin.php:603
msgid "Text Colour"
msgstr "Χρώμα κειμένου"
#: templates/admin.php:541
msgid "The text colour to appear on the 'Accept All' button:"
msgstr "Το χρώμα του κειμένου που εμφανίζεται στο κουμπί 'Αποδοχή όλων':"
#: templates/admin.php:551 templates/admin.php:582 templates/admin.php:613
msgid "Button Colour"
msgstr "Χρώμα κουμπιού"
#: templates/admin.php:551
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr "Το χρώμα του κουμπιού 'Αποδοχή όλων' για να εμφανιστεί στο banner:"
#: templates/admin.php:569
msgid "Reject Button"
msgstr "Απορρίψτε το κουμπί"
#: templates/admin.php:569
msgid ""
"You can change text colour, button colour and text of the 'Reject All' button"
msgstr ""
"Μπορείτε να αλλάξετε το χρώμα κειμένου, το κουμπί του κουμπιού και το "
"κείμενο του κουμπιού 'Απόρριψη όλων'"
#: templates/admin.php:572
msgid "The text colour to appear on the 'Reject All' button:"
msgstr "Το χρώμα του κειμένου που εμφανίζεται στο κουμπί 'Απόρριψη όλων':"
#: templates/admin.php:582
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr "Το χρώμα του κουμπιού 'Απόρριψη' για να εμφανιστεί στο Banner:"
#: templates/admin.php:600
msgid "Setting Button"
msgstr "Κουμπί ρύθμισης"
#: templates/admin.php:600
msgid "You can change text colour and text of the 'Setting' button"
msgstr ""
"Μπορείτε να αλλάξετε το χρώμα κειμένου και το κείμενο του κουμπιού 'Ρύθμιση'"
#: templates/admin.php:603
msgid "The text colour to appear on the 'Setting' button:"
msgstr "Το χρώμα του κειμένου που εμφανίζεται στο κουμπί 'Ρύθμιση':"
#: templates/admin.php:613
msgid "The 'Setting' button colour to appear on the banner:"
msgstr "Το χρώμα του κουμπιού 'Ρύθμιση' για να εμφανιστεί στο banner:"
#: templates/admin.php:624
msgid "Setting"
msgstr "Σύνθεση"
#: templates/admin.php:632
msgid "Fonts"
msgstr "Γραμματοσειρές"
#: templates/admin.php:632
msgid "You can select a font for the text of the banner:"
msgstr "Μπορείτε να επιλέξετε μια γραμματοσειρά για το κείμενο του banner:"
#: templates/admin.php:684
msgid "Select Button"
msgstr "Επιλέξτε κουμπί"
#: templates/admin.php:684
msgid "You can select the shape of the buttons that appear on the banner."
msgstr ""
"Μπορείτε να επιλέξετε το σχήμα των κουμπιών που εμφανίζονται στο banner."
#: templates/admin.php:688
msgid "Default"
msgstr "Προκαθορισμένο"
#: templates/admin.php:692 templates/admin.php:702
msgid "Flat"
msgstr "Επίπεδος"
#: templates/admin.php:695 templates/admin.php:705
msgid "Rounded"
msgstr "Στρογγυλεμένος"
#: templates/admin.php:698 templates/admin.php:708
msgid "Stroke"
msgstr "Stroke"
#: templates/admin.php:726
msgid "PREVIEW"
msgstr "Προεπισκόπηση"
#: templates/admin.php:727
msgid "SAVE"
msgstr "ΑΠΟΘΗΚΕΥΣΕΤΕ"
#: templates/admin.php:746
msgid "Please create cookies policy page and enter URL below."
msgstr ""
"Δημιουργήστε τη σελίδα Πολιτικής Cookies και εισάγετε τη διεύθυνση URL "
"παρακάτω."
#: templates/admin.php:750
msgid "Enable Policy:"
msgstr "Ενεργοποίηση Πολιτικής:"
#: templates/admin.php:767
msgid "Cookie Policy and declaration URL:"
msgstr "Πολιτική Cookie και Δήλωση URL:"
#: templates/admin.php:770
msgid "Policy URL"
msgstr "Πολιτική URL"
#: templates/admin.php:777
msgid "Save"
msgstr "ΑΠΟΘΗΚΕΥΣΕΤΕ"
#: templates/admin.php:831
msgid "Premium Plan"
msgstr "Πριμοδότηση"
#: templates/admin.php:834 templates/admin.php:1023 templates/admin.php:1032
#: templates/admin.php:1040
msgid "Only the users with a paid account can avail this feature."
msgstr ""
"Μόνο οι χρήστες με έναν πληρωμένο λογαριασμό μπορούν να επωφεληθούν αυτή τη "
"λειτουργία."
#: templates/admin.php:839
msgid "Ok"
msgstr "Εντάξει"
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr "λογότυπο seers"
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr "Σχετικά με τα cookies"
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr "Διαβάστε την πολιτική cookie"
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr "Απαραίτητη"
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr "Πάντα ενεργό"
#: templates/frontend-popup.php:1774
msgid ""
"Necessary cookies help make a website usable by enabling basic functions "
"like page navigation and access to secure areas of the website. The website "
"cannot function properly without these cookies."
msgstr ""
"Τα απαραίτητα cookies βοηθούν στη χρήση ενός ιστότοπου, επιτρέποντας βασικές "
"λειτουργίες όπως πλοήγηση σελίδων και πρόσβαση σε ασφαλείς περιοχές του "
"ιστότοπου. Ο ιστότοπος δεν μπορεί να λειτουργήσει σωστά χωρίς αυτά τα "
"cookies."
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784
#: templates/frontend-popup.php:1794 templates/frontend-popup.php:1804
#: templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr "Λεπτομέρεια cookies"
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr "Προτιμήσεις"
#: templates/frontend-popup.php:1784
msgid ""
"Preference cookies enable a website to remember information that changes the "
"way the website behaves or looks, like your preferred language or the region "
"that you are in."
msgstr ""
"Τα cookies προτιμήσεων επιτρέπουν σε έναν ιστότοπο να θυμάται τις "
"πληροφορίες που αλλάζουν τον τρόπο με τον οποίο ο ιστότοπος συμπεριφέρεται ή "
"φαίνεται, όπως η προτιμώμενη γλώσσα ή η περιοχή που βρίσκεστε."
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr "Στατιστική"
#: templates/frontend-popup.php:1794
msgid ""
"Statistic cookies help website owners to understand how visitors interact "
"with websites by collecting and reporting information anonymously."
msgstr ""
"Τα στατιστικά cookies βοηθούν τους κατόχους ιστότοπων να κατανοήσουν τον "
"τρόπο με τον οποίο οι επισκέπτες αλληλεπιδρούν με ιστότοπους συλλέγοντας και "
"αναφέροντας πληροφορίες ανώνυμα."
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr "Εμπορία"
#: templates/frontend-popup.php:1804
msgid ""
"Marketing cookies are used to track visitors across websites. The intention "
"is to display ads that are relevant and engaging for the individual user and "
"thereby more valuable for publishers and third-party advertisers."
msgstr ""
"Τα cookies μάρκετινγκ χρησιμοποιούνται για την παρακολούθηση επισκεπτών σε "
"ιστότοπους Η πρόθεση είναι να εμφανιστούν διαφημίσεις που είναι συναφείς και "
"ελκυστικές για τον κάθε χρήστη και, ως εκ τούτου, πιο πολύτιμες για εκδότες "
"και διαφημιστές τρίτων."
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr "Αταξινόμητος"
#: templates/frontend-popup.php:1812
msgid ""
"Unclassified cookies are cookies that we are in the process of classifying, "
"together with the providers of individual cookies."
msgstr ""
"Τα μη ταξινομημένα cookies είναι cookies τα οποία βρισκόμαστε στη διαδικασία "
"ταξινόμησης, μαζί με τους παρόχους μεμονωμένων cookies."
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr "Αποθηκεύστε τις επιλογές μου"
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr "mε την υποστήριξη του"
#~ msgid "To get your Cookie ID click on Activate"
#~ msgstr "To get your Cookie ID click on Activate"
#~ msgid "Activate"
#~ msgstr "Activate"

View File

@ -0,0 +1,700 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-25 17:21+0500\n"
"PO-Revision-Date: 2022-03-30 04:49-0700\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: en_AU\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
"X-Poedit-Basepath: ..\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPath-1: inc\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:382
msgid "Quick Feedback"
msgstr "Quick Feedback"
#: inc/seers-cookie-consent-plugin-deactivate.php:383
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr "If you have a moment, please let us know why you are deactivating:"
#: inc/seers-cookie-consent-plugin-deactivate.php:386
#: inc/seers-cookie-consent-plugin-deactivate.php:387
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr "The banner is not in the required language"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid ""
"The banner picks up your website language automatically. You can always sign-"
"in on your Seers account"
msgstr ""
"The banner picks up your website language automatically. You can always sign-"
"in on your Seers account"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "and choose the language you like. See the video"
msgstr "and choose the language you like. See the video"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "here"
msgstr "here"
#: inc/seers-cookie-consent-plugin-deactivate.php:395
#: inc/seers-cookie-consent-plugin-deactivate.php:396
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr "Banner did not appear"
#: inc/seers-cookie-consent-plugin-deactivate.php:399
#: inc/seers-cookie-consent-plugin-deactivate.php:420
msgid ""
"Most of the times the compatibility issue can be fixed very quickly. Please "
"contact"
msgstr ""
"Most of the times the compatibility issue can be fixed very quickly. Please "
"contact"
#: inc/seers-cookie-consent-plugin-deactivate.php:403
#: inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr "Cookies are not showing in settings"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid ""
"We are scanning your website and it can take up to 12 hours for Cookies to "
"appear. In a very few cases scanner miss a cookie. This"
msgstr ""
"We are scanning your website and it can take up to 12 hours for Cookies to "
"appear. In a very few cases scanner miss a cookie. This"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "video"
msgstr "video"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "explains how to add cookies manually."
msgstr "explains how to add cookies manually."
#: inc/seers-cookie-consent-plugin-deactivate.php:410
#: inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr "The banner did not match website theme"
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "You can fully customize the banner. Please see the video"
msgstr "You can fully customize the banner. Please see the video"
#: inc/seers-cookie-consent-plugin-deactivate.php:416
#: inc/seers-cookie-consent-plugin-deactivate.php:417
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr "The plugin broke my site"
#: inc/seers-cookie-consent-plugin-deactivate.php:424
#: inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr "I have found a better plugin"
#: inc/seers-cookie-consent-plugin-deactivate.php:427
msgid "Plugin name"
msgstr "Plugin name"
#: inc/seers-cookie-consent-plugin-deactivate.php:430
msgid ""
"The plugin is great, but i need specific feature that you do not support."
msgstr ""
"The plugin is great, but i need specific feature that you do not support."
#: inc/seers-cookie-consent-plugin-deactivate.php:431
#: inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid ""
"The plugin is great, but i need specific feature that you don't support."
msgstr ""
"The plugin is great, but i need specific feature that you don't support."
#: inc/seers-cookie-consent-plugin-deactivate.php:434
msgid "Banner customisation."
msgstr "Banner customisation."
#: inc/seers-cookie-consent-plugin-deactivate.php:438
#: inc/seers-cookie-consent-plugin-deactivate.php:439
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr "Other"
#: inc/seers-cookie-consent-plugin-deactivate.php:442
msgid "Kindly tell us the reason so we can improve."
msgstr "Kindly tell us the reason so we can improve."
#: inc/seers-cookie-consent-plugin-deactivate.php:445
msgid "Submit & Deactivate"
msgstr "Submit & Deactivate"
#: inc/seers-cookie-consent-plugin-deactivate.php:446
msgid "Cancel"
msgstr "Cancel"
#: inc/seers-cookie-consent-plugin-deactivate.php:451
msgid "Skip & Deactivate"
msgstr "Skip & Deactivate"
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr "Dismiss this notice."
#: seers-cookie-consent-banner-privacy-policy.php:135 templates/admin.php:97
msgid "Settings"
msgstr "Settings"
#: seers-cookie-consent-banner-privacy-policy.php:141
msgid "Upgrade Premium"
msgstr "Upgrade Premium"
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:514
#: templates/frontend-popup.php:1738 templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr "We use cookies to ensure you get the best experience"
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:558
#: templates/admin.php:559 templates/admin.php:561
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1765
msgid "Allow All"
msgstr "Allow All"
#: seers-cookie-consent-banner-privacy-policy.php:294 templates/admin.php:589
#: templates/admin.php:590 templates/admin.php:592
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1766
msgid "Disable All"
msgstr "Disable All"
#: seers-cookie-consent-banner-privacy-policy.php:295 templates/admin.php:621
#: templates/frontend-popup.php:1740
msgid "Preference"
msgstr "Preference"
#: seers-cookie-consent-banner-privacy-policy.php:418
#: seers-cookie-consent-banner-privacy-policy.php:446
#: seers-cookie-consent-banner-privacy-policy.php:452
msgid "Cookies policy added successfully."
msgstr "Cookies policy added successfully."
#: seers-cookie-consent-banner-privacy-policy.php:421
msgid "Some thing went wrong. Please check url and try again"
msgstr "Some thing went wrong. Please check url and try again"
#: seers-cookie-consent-banner-privacy-policy.php:675
msgid "Some thing went wrong."
msgstr "Some thing went wrong."
#: seers-cookie-consent-banner-privacy-policy.php:819
msgid "Settings has been updated successfully"
msgstr "Settings has been updated successfully"
#: templates/admin.php:92 templates/admin.php:841
msgid "Account Setup"
msgstr "Account Setup"
#: templates/admin.php:100
msgid "Policy"
msgstr "Policy"
#: templates/admin.php:104
msgid "User Guide"
msgstr "User Guide"
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr "Your Seers Cookie Consent banner is activated."
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr "Your Seers Cookie Consent Banner is NOT activated because"
#: templates/admin.php:134
msgid "Email"
msgstr "Email"
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr "I agree Seers"
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr "Terms & Condition"
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr "and"
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr "Privacy Policy"
#: templates/admin.php:154 templates/admin.php:172
msgid ""
"I agree Seers to use my email and url to create an account and power the "
"cookie banner."
msgstr ""
"I agree Seers to use my email and url to create an account and power the "
"cookie banner."
#: templates/admin.php:178
msgid "Create Account"
msgstr "Create Account"
#: templates/admin.php:181
msgid "Cookie ID"
msgstr "Cookie ID"
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr "Seers Cookie ID will be received automatically after account creation"
#: templates/admin.php:197
msgid "Powering all your"
msgstr "Powering all your"
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr "Privacy and Data Security needs"
#: templates/admin.php:199
msgid ""
"Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy "
"compliance tools,"
msgstr ""
"Gain access to an extensive range of GDPR, PECR, CCPA and ePrivacy "
"compliance tools,"
#: templates/admin.php:200
msgid "all"
msgstr "all"
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
#: templates/admin.php:206
msgid "Policies Pack"
msgstr "Policies Pack"
#: templates/admin.php:207
msgid "Templates Pack"
msgstr "Templates Pack"
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr "Templates Pack"
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr "Cookie Consent Management"
#: templates/admin.php:212
msgid "DPIA"
msgstr "DPIA"
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr "GDPR Audit"
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr "Cyber Secure"
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr "Subject Request Management"
#: templates/admin.php:217
msgid "START FREE"
msgstr "START FREE"
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
"Data Privacy &amp;\n"
" Compliance. Solved"
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help "
"companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
"Trust worlds leading privacy and consent management platform to help "
"companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr "START PREMIUM TODAY"
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr "Seers Premium Plan"
#: templates/admin.php:232
msgid "Branding"
msgstr "Branding"
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr "Multi Lingual"
#: templates/admin.php:234
msgid "Consent Log"
msgstr "Consent Log"
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr "Cookie Policy"
#: templates/admin.php:236
msgid "Prior Consent"
msgstr "Prior Consent"
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr "6+ Design Layouts"
#: templates/admin.php:238
msgid "Customer Support"
msgstr "Customer Support"
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr "Banner Customisation"
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr "Cookie Declaration Table"
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
"START PREMIUM\n"
" TODAY"
#: templates/admin.php:255
msgid "Banner Settings"
msgstr "Banner Settings"
#: templates/admin.php:260
msgid "Banner"
msgstr "Banner"
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr "Enable/disable Cookie banner"
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr "Cookie Expiry"
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr "Set your consent cookie to expire in days."
#: templates/admin.php:291
msgid "Language"
msgstr "Language"
#: templates/admin.php:291
msgid "Choose a language for the banner Settings > General."
msgstr "Choose a language for the banner Settings > General."
#: templates/admin.php:475
msgid "Show Badge"
msgstr "Show Badge"
#: templates/admin.php:475
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr "Show a badge to enable the cookie banner to appear post consent."
#: templates/admin.php:498
msgid "Visual Settings"
msgstr "Visual Settings"
#: templates/admin.php:503
msgid "Banner Text"
msgstr "Banner Text"
#: templates/admin.php:503
msgid "Text to appear on the banner:"
msgstr "Text to appear on the banner:"
#: templates/admin.php:506 templates/admin.php:524
msgid "Colour"
msgstr "Colour"
#: templates/admin.php:506
msgid "The text colour to appear on the banner:"
msgstr "The text colour to appear on the banner:"
#: templates/admin.php:521
msgid "Banner Background"
msgstr "Banner Background"
#: templates/admin.php:521
msgid "You can change the background colour of the banner:"
msgstr "You can change the background colour of the banner:"
#: templates/admin.php:524
msgid "The background colour of the banner:"
msgstr "The background colour of the banner:"
#: templates/admin.php:538
msgid "Accept Button"
msgstr "Accept Button"
#: templates/admin.php:538
msgid ""
"You can change text colour, button colour and text of the 'Accept All' button"
msgstr ""
"You can change text colour, button colour and text of the 'Accept All' button"
#: templates/admin.php:541 templates/admin.php:572 templates/admin.php:603
msgid "Text Colour"
msgstr "Text Colour"
#: templates/admin.php:541
msgid "The text colour to appear on the 'Accept All' button:"
msgstr "The text colour to appear on the 'Accept All' button:"
#: templates/admin.php:551 templates/admin.php:582 templates/admin.php:613
msgid "Button Colour"
msgstr "Button Colour"
#: templates/admin.php:551
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr "The 'Accept All' button colour to appear on the banner:"
#: templates/admin.php:569
msgid "Reject Button"
msgstr "Reject Button"
#: templates/admin.php:569
msgid ""
"You can change text colour, button colour and text of the 'Reject All' button"
msgstr ""
"You can change text colour, button colour and text of the 'Reject All' button"
#: templates/admin.php:572
msgid "The text colour to appear on the 'Reject All' button:"
msgstr "The text colour to appear on the 'Reject All' button:"
#: templates/admin.php:582
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr "The 'Reject All' button colour to appear on the banner:"
#: templates/admin.php:600
msgid "Setting Button"
msgstr "Setting Button"
#: templates/admin.php:600
msgid "You can change text colour and text of the 'Setting' button"
msgstr "You can change text colour and text of the 'Setting' button"
#: templates/admin.php:603
msgid "The text colour to appear on the 'Setting' button:"
msgstr "The text colour to appear on the 'Setting' button:"
#: templates/admin.php:613
msgid "The 'Setting' button colour to appear on the banner:"
msgstr "The 'Setting' button colour to appear on the banner:"
#: templates/admin.php:624
msgid "Setting"
msgstr "Setting"
#: templates/admin.php:632
msgid "Fonts"
msgstr "Fonts"
#: templates/admin.php:632
msgid "You can select a font for the text of the banner:"
msgstr "You can select a font for the text of the banner:"
#: templates/admin.php:684
msgid "Select Button"
msgstr "Select Button"
#: templates/admin.php:684
msgid "You can select the shape of the buttons that appear on the banner."
msgstr "You can select the shape of the buttons that appear on the banner."
#: templates/admin.php:688
msgid "Default"
msgstr "Default"
#: templates/admin.php:692 templates/admin.php:702
msgid "Flat"
msgstr "Flat"
#: templates/admin.php:695 templates/admin.php:705
msgid "Rounded"
msgstr "Rounded"
#: templates/admin.php:698 templates/admin.php:708
msgid "Stroke"
msgstr "Stroke"
#: templates/admin.php:726
msgid "PREVIEW"
msgstr "PREVIEW"
#: templates/admin.php:727
msgid "SAVE"
msgstr "SAVE"
#: templates/admin.php:746
msgid "Please create cookies policy page and enter URL below."
msgstr "Please create cookies policy page and enter URL below."
#: templates/admin.php:750
msgid "Enable Policy:"
msgstr "Enable Policy:"
#: templates/admin.php:767
msgid "Cookie Policy and declaration URL:"
msgstr "Cookie Policy and declaration URL:"
#: templates/admin.php:770
msgid "Policy URL"
msgstr "Policy URL"
#: templates/admin.php:777
msgid "Save"
msgstr "Save"
#: templates/admin.php:831
msgid "Premium Plan"
msgstr "Premium Plan"
#: templates/admin.php:834 templates/admin.php:1023 templates/admin.php:1032
#: templates/admin.php:1040
msgid "Only the users with a paid account can avail this feature."
msgstr "Only the users with a paid account can avail this feature."
#: templates/admin.php:839
msgid "Ok"
msgstr "Ok"
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr "seers logo"
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr "About Cookies"
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr "Read Cookie Policy"
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr "Necessary"
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr "Always Active"
#: templates/frontend-popup.php:1774
msgid ""
"Necessary cookies help make a website usable by enabling basic functions "
"like page navigation and access to secure areas of the website. The website "
"cannot function properly without these cookies."
msgstr ""
"Necessary cookies help make a website usable by enabling basic functions "
"like page navigation and access to secure areas of the website. The website "
"cannot function properly without these cookies."
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784
#: templates/frontend-popup.php:1794 templates/frontend-popup.php:1804
#: templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr "Cookies Detail"
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr "Preferences"
#: templates/frontend-popup.php:1784
msgid ""
"Preference cookies enable a website to remember information that changes the "
"way the website behaves or looks, like your preferred language or the region "
"that you are in."
msgstr ""
"Preference cookies enable a website to remember information that changes the "
"way the website behaves or looks, like your preferred language or the region "
"that you are in."
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr "Statistics"
#: templates/frontend-popup.php:1794
msgid ""
"Statistic cookies help website owners to understand how visitors interact "
"with websites by collecting and reporting information anonymously."
msgstr ""
"Statistic cookies help website owners to understand how visitors interact "
"with websites by collecting and reporting information anonymously."
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr "Marketing"
#: templates/frontend-popup.php:1804
msgid ""
"Marketing cookies are used to track visitors across websites. The intention "
"is to display ads that are relevant and engaging for the individual user and "
"thereby more valuable for publishers and third-party advertisers."
msgstr ""
"Marketing cookies are used to track visitors across websites. The intention "
"is to display ads that are relevant and engaging for the individual user and "
"thereby more valuable for publishers and third-party advertisers."
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr "Unclassified"
#: templates/frontend-popup.php:1812
msgid ""
"Unclassified cookies are cookies that we are in the process of classifying, "
"together with the providers of individual cookies."
msgstr ""
"Unclassified cookies are cookies that we are in the process of classifying, "
"together with the providers of individual cookies."
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr "Save my choices"
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr "powered by"
#~ msgid "To get your Cookie ID click on Activate"
#~ msgstr "To get your Cookie ID click on Activate"
#~ msgid "Activate"
#~ msgstr "Activate"

View File

@ -0,0 +1,700 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-25 17:21+0500\n"
"PO-Revision-Date: 2022-03-30 04:49-0700\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: en_CA\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
"X-Poedit-Basepath: ..\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPath-1: inc\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:382
msgid "Quick Feedback"
msgstr "Quick Feedback"
#: inc/seers-cookie-consent-plugin-deactivate.php:383
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr "If you have a moment, please let us know why you are deactivating:"
#: inc/seers-cookie-consent-plugin-deactivate.php:386
#: inc/seers-cookie-consent-plugin-deactivate.php:387
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr "The banner is not in the required language"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid ""
"The banner picks up your website language automatically. You can always sign-"
"in on your Seers account"
msgstr ""
"The banner picks up your website language automatically. You can always sign-"
"in on your Seers account"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "and choose the language you like. See the video"
msgstr "and choose the language you like. See the video"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "here"
msgstr "here"
#: inc/seers-cookie-consent-plugin-deactivate.php:395
#: inc/seers-cookie-consent-plugin-deactivate.php:396
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr "Banner did not appear"
#: inc/seers-cookie-consent-plugin-deactivate.php:399
#: inc/seers-cookie-consent-plugin-deactivate.php:420
msgid ""
"Most of the times the compatibility issue can be fixed very quickly. Please "
"contact"
msgstr ""
"Most of the times the compatibility issue can be fixed very quickly. Please "
"contact"
#: inc/seers-cookie-consent-plugin-deactivate.php:403
#: inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr "Cookies are not showing in settings"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid ""
"We are scanning your website and it can take up to 12 hours for Cookies to "
"appear. In a very few cases scanner miss a cookie. This"
msgstr ""
"We are scanning your website and it can take up to 12 hours for Cookies to "
"appear. In a very few cases scanner miss a cookie. This"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "video"
msgstr "video"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "explains how to add cookies manually."
msgstr "explains how to add cookies manually."
#: inc/seers-cookie-consent-plugin-deactivate.php:410
#: inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr "The banner did not match website theme"
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "You can fully customize the banner. Please see the video"
msgstr "You can fully customize the banner. Please see the video"
#: inc/seers-cookie-consent-plugin-deactivate.php:416
#: inc/seers-cookie-consent-plugin-deactivate.php:417
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr "The plugin broke my site"
#: inc/seers-cookie-consent-plugin-deactivate.php:424
#: inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr "I have found a better plugin"
#: inc/seers-cookie-consent-plugin-deactivate.php:427
msgid "Plugin name"
msgstr "Plugin name"
#: inc/seers-cookie-consent-plugin-deactivate.php:430
msgid ""
"The plugin is great, but i need specific feature that you do not support."
msgstr ""
"The plugin is great, but i need specific feature that you do not support."
#: inc/seers-cookie-consent-plugin-deactivate.php:431
#: inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid ""
"The plugin is great, but i need specific feature that you don't support."
msgstr ""
"The plugin is great, but i need specific feature that you don't support."
#: inc/seers-cookie-consent-plugin-deactivate.php:434
msgid "Banner customisation."
msgstr "Banner customisation."
#: inc/seers-cookie-consent-plugin-deactivate.php:438
#: inc/seers-cookie-consent-plugin-deactivate.php:439
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr "Other"
#: inc/seers-cookie-consent-plugin-deactivate.php:442
msgid "Kindly tell us the reason so we can improve."
msgstr "Kindly tell us the reason so we can improve."
#: inc/seers-cookie-consent-plugin-deactivate.php:445
msgid "Submit & Deactivate"
msgstr "Submit & Deactivate"
#: inc/seers-cookie-consent-plugin-deactivate.php:446
msgid "Cancel"
msgstr "Cancel"
#: inc/seers-cookie-consent-plugin-deactivate.php:451
msgid "Skip & Deactivate"
msgstr "Skip & Deactivate"
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr "Dismiss this notice."
#: seers-cookie-consent-banner-privacy-policy.php:135 templates/admin.php:97
msgid "Settings"
msgstr "Settings"
#: seers-cookie-consent-banner-privacy-policy.php:141
msgid "Upgrade Premium"
msgstr "Upgrade Premium"
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:514
#: templates/frontend-popup.php:1738 templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr "We use cookies to ensure you get the best experience"
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:558
#: templates/admin.php:559 templates/admin.php:561
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1765
msgid "Allow All"
msgstr "Allow All"
#: seers-cookie-consent-banner-privacy-policy.php:294 templates/admin.php:589
#: templates/admin.php:590 templates/admin.php:592
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1766
msgid "Disable All"
msgstr "Disable All"
#: seers-cookie-consent-banner-privacy-policy.php:295 templates/admin.php:621
#: templates/frontend-popup.php:1740
msgid "Preference"
msgstr "Preference"
#: seers-cookie-consent-banner-privacy-policy.php:418
#: seers-cookie-consent-banner-privacy-policy.php:446
#: seers-cookie-consent-banner-privacy-policy.php:452
msgid "Cookies policy added successfully."
msgstr "Cookies policy added successfully."
#: seers-cookie-consent-banner-privacy-policy.php:421
msgid "Some thing went wrong. Please check url and try again"
msgstr "Some thing went wrong. Please check url and try again"
#: seers-cookie-consent-banner-privacy-policy.php:675
msgid "Some thing went wrong."
msgstr "Some thing went wrong."
#: seers-cookie-consent-banner-privacy-policy.php:819
msgid "Settings has been updated successfully"
msgstr "Settings has been updated successfully"
#: templates/admin.php:92 templates/admin.php:841
msgid "Account Setup"
msgstr "Account Setup"
#: templates/admin.php:100
msgid "Policy"
msgstr "Policy"
#: templates/admin.php:104
msgid "User Guide"
msgstr "User Guide"
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr "Your Seers Cookie Consent banner is activated."
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr "Your Seers Cookie Consent Banner is NOT activated because"
#: templates/admin.php:134
msgid "Email"
msgstr "Email"
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr "I agree Seers"
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr "Terms & Condition"
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr "and"
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr "Privacy Policy"
#: templates/admin.php:154 templates/admin.php:172
msgid ""
"I agree Seers to use my email and url to create an account and power the "
"cookie banner."
msgstr ""
"I agree Seers to use my email and url to create an account and power the "
"cookie banner."
#: templates/admin.php:178
msgid "Create Account"
msgstr "Create Account"
#: templates/admin.php:181
msgid "Cookie ID"
msgstr "Cookie ID"
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr "Seers Cookie ID will be received automatically after account creation"
#: templates/admin.php:197
msgid "Powering all your"
msgstr "Powering all your"
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr "Privacy and Data Security needs"
#: templates/admin.php:199
msgid ""
"Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy "
"compliance tools,"
msgstr ""
"Gain access to an extensive range of GDPR, PECR, CCPA and ePrivacy "
"compliance tools,"
#: templates/admin.php:200
msgid "all"
msgstr "all"
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
#: templates/admin.php:206
msgid "Policies Pack"
msgstr "Policies Pack"
#: templates/admin.php:207
msgid "Templates Pack"
msgstr "Templates Pack"
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr "Templates Pack"
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr "Cookie Consent Management"
#: templates/admin.php:212
msgid "DPIA"
msgstr "DPIA"
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr "GDPR Audit"
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr "Cyber Secure"
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr "Subject Request Management"
#: templates/admin.php:217
msgid "START FREE"
msgstr "START FREE"
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
"Data Privacy &amp;\n"
" Compliance. Solved"
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help "
"companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
"Trust worlds leading privacy and consent management platform to help "
"companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr "START PREMIUM TODAY"
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr "Seers Premium Plan"
#: templates/admin.php:232
msgid "Branding"
msgstr "Branding"
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr "Multi Lingual"
#: templates/admin.php:234
msgid "Consent Log"
msgstr "Consent Log"
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr "Cookie Policy"
#: templates/admin.php:236
msgid "Prior Consent"
msgstr "Prior Consent"
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr "6+ Design Layouts"
#: templates/admin.php:238
msgid "Customer Support"
msgstr "Customer Support"
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr "Banner Customisation"
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr "Cookie Declaration Table"
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
"START PREMIUM\n"
" TODAY"
#: templates/admin.php:255
msgid "Banner Settings"
msgstr "Banner Settings"
#: templates/admin.php:260
msgid "Banner"
msgstr "Banner"
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr "Enable/disable Cookie banner"
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr "Cookie Expiry"
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr "Set your consent cookie to expire in days."
#: templates/admin.php:291
msgid "Language"
msgstr "Language"
#: templates/admin.php:291
msgid "Choose a language for the banner Settings > General."
msgstr "Choose a language for the banner Settings > General."
#: templates/admin.php:475
msgid "Show Badge"
msgstr "Show Badge"
#: templates/admin.php:475
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr "Show a badge to enable the cookie banner to appear post consent."
#: templates/admin.php:498
msgid "Visual Settings"
msgstr "Visual Settings"
#: templates/admin.php:503
msgid "Banner Text"
msgstr "Banner Text"
#: templates/admin.php:503
msgid "Text to appear on the banner:"
msgstr "Text to appear on the banner:"
#: templates/admin.php:506 templates/admin.php:524
msgid "Colour"
msgstr "Colour"
#: templates/admin.php:506
msgid "The text colour to appear on the banner:"
msgstr "The text colour to appear on the banner:"
#: templates/admin.php:521
msgid "Banner Background"
msgstr "Banner Background"
#: templates/admin.php:521
msgid "You can change the background colour of the banner:"
msgstr "You can change the background colour of the banner:"
#: templates/admin.php:524
msgid "The background colour of the banner:"
msgstr "The background colour of the banner:"
#: templates/admin.php:538
msgid "Accept Button"
msgstr "Accept Button"
#: templates/admin.php:538
msgid ""
"You can change text colour, button colour and text of the 'Accept All' button"
msgstr ""
"You can change text colour, button colour and text of the 'Accept All' button"
#: templates/admin.php:541 templates/admin.php:572 templates/admin.php:603
msgid "Text Colour"
msgstr "Text Colour"
#: templates/admin.php:541
msgid "The text colour to appear on the 'Accept All' button:"
msgstr "The text colour to appear on the 'Accept All' button:"
#: templates/admin.php:551 templates/admin.php:582 templates/admin.php:613
msgid "Button Colour"
msgstr "Button Colour"
#: templates/admin.php:551
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr "The 'Accept All' button colour to appear on the banner:"
#: templates/admin.php:569
msgid "Reject Button"
msgstr "Reject Button"
#: templates/admin.php:569
msgid ""
"You can change text colour, button colour and text of the 'Reject All' button"
msgstr ""
"You can change text colour, button colour and text of the 'Reject All' button"
#: templates/admin.php:572
msgid "The text colour to appear on the 'Reject All' button:"
msgstr "The text colour to appear on the 'Reject All' button:"
#: templates/admin.php:582
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr "The 'Reject All' button colour to appear on the banner:"
#: templates/admin.php:600
msgid "Setting Button"
msgstr "Setting Button"
#: templates/admin.php:600
msgid "You can change text colour and text of the 'Setting' button"
msgstr "You can change text colour and text of the 'Setting' button"
#: templates/admin.php:603
msgid "The text colour to appear on the 'Setting' button:"
msgstr "The text colour to appear on the 'Setting' button:"
#: templates/admin.php:613
msgid "The 'Setting' button colour to appear on the banner:"
msgstr "The 'Setting' button colour to appear on the banner:"
#: templates/admin.php:624
msgid "Setting"
msgstr "Setting"
#: templates/admin.php:632
msgid "Fonts"
msgstr "Fonts"
#: templates/admin.php:632
msgid "You can select a font for the text of the banner:"
msgstr "You can select a font for the text of the banner:"
#: templates/admin.php:684
msgid "Select Button"
msgstr "Select Button"
#: templates/admin.php:684
msgid "You can select the shape of the buttons that appear on the banner."
msgstr "You can select the shape of the buttons that appear on the banner."
#: templates/admin.php:688
msgid "Default"
msgstr "Default"
#: templates/admin.php:692 templates/admin.php:702
msgid "Flat"
msgstr "Flat"
#: templates/admin.php:695 templates/admin.php:705
msgid "Rounded"
msgstr "Rounded"
#: templates/admin.php:698 templates/admin.php:708
msgid "Stroke"
msgstr "Stroke"
#: templates/admin.php:726
msgid "PREVIEW"
msgstr "PREVIEW"
#: templates/admin.php:727
msgid "SAVE"
msgstr "SAVE"
#: templates/admin.php:746
msgid "Please create cookies policy page and enter URL below."
msgstr "Please create cookies policy page and enter URL below."
#: templates/admin.php:750
msgid "Enable Policy:"
msgstr "Enable Policy:"
#: templates/admin.php:767
msgid "Cookie Policy and declaration URL:"
msgstr "Cookie Policy and declaration URL:"
#: templates/admin.php:770
msgid "Policy URL"
msgstr "Policy URL"
#: templates/admin.php:777
msgid "Save"
msgstr "Save"
#: templates/admin.php:831
msgid "Premium Plan"
msgstr "Premium Plan"
#: templates/admin.php:834 templates/admin.php:1023 templates/admin.php:1032
#: templates/admin.php:1040
msgid "Only the users with a paid account can avail this feature."
msgstr "Only the users with a paid account can avail this feature."
#: templates/admin.php:839
msgid "Ok"
msgstr "Ok"
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr "seers logo"
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr "About Cookies"
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr "Read Cookie Policy"
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr "Necessary"
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr "Always Active"
#: templates/frontend-popup.php:1774
msgid ""
"Necessary cookies help make a website usable by enabling basic functions "
"like page navigation and access to secure areas of the website. The website "
"cannot function properly without these cookies."
msgstr ""
"Necessary cookies help make a website usable by enabling basic functions "
"like page navigation and access to secure areas of the website. The website "
"cannot function properly without these cookies."
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784
#: templates/frontend-popup.php:1794 templates/frontend-popup.php:1804
#: templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr "Cookies Detail"
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr "Preferences"
#: templates/frontend-popup.php:1784
msgid ""
"Preference cookies enable a website to remember information that changes the "
"way the website behaves or looks, like your preferred language or the region "
"that you are in."
msgstr ""
"Preference cookies enable a website to remember information that changes the "
"way the website behaves or looks, like your preferred language or the region "
"that you are in."
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr "Statistics"
#: templates/frontend-popup.php:1794
msgid ""
"Statistic cookies help website owners to understand how visitors interact "
"with websites by collecting and reporting information anonymously."
msgstr ""
"Statistic cookies help website owners to understand how visitors interact "
"with websites by collecting and reporting information anonymously."
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr "Marketing"
#: templates/frontend-popup.php:1804
msgid ""
"Marketing cookies are used to track visitors across websites. The intention "
"is to display ads that are relevant and engaging for the individual user and "
"thereby more valuable for publishers and third-party advertisers."
msgstr ""
"Marketing cookies are used to track visitors across websites. The intention "
"is to display ads that are relevant and engaging for the individual user and "
"thereby more valuable for publishers and third-party advertisers."
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr "Unclassified"
#: templates/frontend-popup.php:1812
msgid ""
"Unclassified cookies are cookies that we are in the process of classifying, "
"together with the providers of individual cookies."
msgstr ""
"Unclassified cookies are cookies that we are in the process of classifying, "
"together with the providers of individual cookies."
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr "Save my choices"
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr "powered by"
#~ msgid "To get your Cookie ID click on Activate"
#~ msgstr "To get your Cookie ID click on Activate"
#~ msgid "Activate"
#~ msgstr "Activate"

View File

@ -0,0 +1,700 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-25 17:21+0500\n"
"PO-Revision-Date: 2022-03-30 04:49-0700\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: en_GB\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
"X-Poedit-Basepath: ..\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPath-1: inc\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:382
msgid "Quick Feedback"
msgstr "Quick Feedback"
#: inc/seers-cookie-consent-plugin-deactivate.php:383
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr "If you have a moment, please let us know why you are deactivating:"
#: inc/seers-cookie-consent-plugin-deactivate.php:386
#: inc/seers-cookie-consent-plugin-deactivate.php:387
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr "The banner is not in the required language"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid ""
"The banner picks up your website language automatically. You can always sign-"
"in on your Seers account"
msgstr ""
"The banner picks up your website language automatically. You can always sign-"
"in on your Seers account"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "and choose the language you like. See the video"
msgstr "and choose the language you like. See the video"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "here"
msgstr "here"
#: inc/seers-cookie-consent-plugin-deactivate.php:395
#: inc/seers-cookie-consent-plugin-deactivate.php:396
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr "Banner did not appear"
#: inc/seers-cookie-consent-plugin-deactivate.php:399
#: inc/seers-cookie-consent-plugin-deactivate.php:420
msgid ""
"Most of the times the compatibility issue can be fixed very quickly. Please "
"contact"
msgstr ""
"Most of the times the compatibility issue can be fixed very quickly. Please "
"contact"
#: inc/seers-cookie-consent-plugin-deactivate.php:403
#: inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr "Cookies are not showing in settings"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid ""
"We are scanning your website and it can take up to 12 hours for Cookies to "
"appear. In a very few cases scanner miss a cookie. This"
msgstr ""
"We are scanning your website and it can take up to 12 hours for Cookies to "
"appear. In a very few cases scanner miss a cookie. This"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "video"
msgstr "video"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "explains how to add cookies manually."
msgstr "explains how to add cookies manually."
#: inc/seers-cookie-consent-plugin-deactivate.php:410
#: inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr "The banner did not match website theme"
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "You can fully customize the banner. Please see the video"
msgstr "You can fully customize the banner. Please see the video"
#: inc/seers-cookie-consent-plugin-deactivate.php:416
#: inc/seers-cookie-consent-plugin-deactivate.php:417
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr "The plugin broke my site"
#: inc/seers-cookie-consent-plugin-deactivate.php:424
#: inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr "I have found a better plugin"
#: inc/seers-cookie-consent-plugin-deactivate.php:427
msgid "Plugin name"
msgstr "Plugin name"
#: inc/seers-cookie-consent-plugin-deactivate.php:430
msgid ""
"The plugin is great, but i need specific feature that you do not support."
msgstr ""
"The plugin is great, but i need specific feature that you do not support."
#: inc/seers-cookie-consent-plugin-deactivate.php:431
#: inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid ""
"The plugin is great, but i need specific feature that you don't support."
msgstr ""
"The plugin is great, but i need specific feature that you don't support."
#: inc/seers-cookie-consent-plugin-deactivate.php:434
msgid "Banner customisation."
msgstr "Banner customisation."
#: inc/seers-cookie-consent-plugin-deactivate.php:438
#: inc/seers-cookie-consent-plugin-deactivate.php:439
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr "Other"
#: inc/seers-cookie-consent-plugin-deactivate.php:442
msgid "Kindly tell us the reason so we can improve."
msgstr "Kindly tell us the reason so we can improve."
#: inc/seers-cookie-consent-plugin-deactivate.php:445
msgid "Submit & Deactivate"
msgstr "Submit & Deactivate"
#: inc/seers-cookie-consent-plugin-deactivate.php:446
msgid "Cancel"
msgstr "Cancel"
#: inc/seers-cookie-consent-plugin-deactivate.php:451
msgid "Skip & Deactivate"
msgstr "Skip & Deactivate"
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr "Dismiss this notice."
#: seers-cookie-consent-banner-privacy-policy.php:135 templates/admin.php:97
msgid "Settings"
msgstr "Settings"
#: seers-cookie-consent-banner-privacy-policy.php:141
msgid "Upgrade Premium"
msgstr "Upgrade Premium"
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:514
#: templates/frontend-popup.php:1738 templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr "We use cookies to ensure you get the best experience"
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:558
#: templates/admin.php:559 templates/admin.php:561
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1765
msgid "Allow All"
msgstr "Allow All"
#: seers-cookie-consent-banner-privacy-policy.php:294 templates/admin.php:589
#: templates/admin.php:590 templates/admin.php:592
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1766
msgid "Disable All"
msgstr "Disable All"
#: seers-cookie-consent-banner-privacy-policy.php:295 templates/admin.php:621
#: templates/frontend-popup.php:1740
msgid "Preference"
msgstr "Preference"
#: seers-cookie-consent-banner-privacy-policy.php:418
#: seers-cookie-consent-banner-privacy-policy.php:446
#: seers-cookie-consent-banner-privacy-policy.php:452
msgid "Cookies policy added successfully."
msgstr "Cookies policy added successfully."
#: seers-cookie-consent-banner-privacy-policy.php:421
msgid "Some thing went wrong. Please check url and try again"
msgstr "Some thing went wrong. Please check url and try again"
#: seers-cookie-consent-banner-privacy-policy.php:675
msgid "Some thing went wrong."
msgstr "Some thing went wrong."
#: seers-cookie-consent-banner-privacy-policy.php:819
msgid "Settings has been updated successfully"
msgstr "Settings has been updated successfully"
#: templates/admin.php:92 templates/admin.php:841
msgid "Account Setup"
msgstr "Account Setup"
#: templates/admin.php:100
msgid "Policy"
msgstr "Policy"
#: templates/admin.php:104
msgid "User Guide"
msgstr "User Guide"
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr "Your Seers Cookie Consent banner is activated."
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr "Your Seers Cookie Consent Banner is NOT activated because"
#: templates/admin.php:134
msgid "Email"
msgstr "Email"
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr "I agree Seers"
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr "Terms & Condition"
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr "and"
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr "Privacy Policy"
#: templates/admin.php:154 templates/admin.php:172
msgid ""
"I agree Seers to use my email and url to create an account and power the "
"cookie banner."
msgstr ""
"I agree Seers to use my email and url to create an account and power the "
"cookie banner."
#: templates/admin.php:178
msgid "Create Account"
msgstr "Create Account"
#: templates/admin.php:181
msgid "Cookie ID"
msgstr "Cookie ID"
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr "Seers Cookie ID will be received automatically after account creation"
#: templates/admin.php:197
msgid "Powering all your"
msgstr "Powering all your"
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr "Privacy and Data Security needs"
#: templates/admin.php:199
msgid ""
"Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy "
"compliance tools,"
msgstr ""
"Gain access to an extensive range of GDPR, PECR, CCPA and ePrivacy "
"compliance tools,"
#: templates/admin.php:200
msgid "all"
msgstr "all"
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
#: templates/admin.php:206
msgid "Policies Pack"
msgstr "Policies Pack"
#: templates/admin.php:207
msgid "Templates Pack"
msgstr "Templates Pack"
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr "Templates Pack"
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr "Cookie Consent Management"
#: templates/admin.php:212
msgid "DPIA"
msgstr "DPIA"
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr "GDPR Audit"
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr "Cyber Secure"
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr "Subject Request Management"
#: templates/admin.php:217
msgid "START FREE"
msgstr "START FREE"
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
"Data Privacy &amp;\n"
" Compliance. Solved"
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help "
"companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
"Trust worlds leading privacy and consent management platform to help "
"companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr "START PREMIUM TODAY"
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr "Seers Premium Plan"
#: templates/admin.php:232
msgid "Branding"
msgstr "Branding"
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr "Multi Lingual"
#: templates/admin.php:234
msgid "Consent Log"
msgstr "Consent Log"
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr "Cookie Policy"
#: templates/admin.php:236
msgid "Prior Consent"
msgstr "Prior Consent"
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr "6+ Design Layouts"
#: templates/admin.php:238
msgid "Customer Support"
msgstr "Customer Support"
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr "Banner Customisation"
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr "Cookie Declaration Table"
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
"START PREMIUM\n"
" TODAY"
#: templates/admin.php:255
msgid "Banner Settings"
msgstr "Banner Settings"
#: templates/admin.php:260
msgid "Banner"
msgstr "Banner"
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr "Enable/disable Cookie banner"
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr "Cookie Expiry"
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr "Set your consent cookie to expire in days."
#: templates/admin.php:291
msgid "Language"
msgstr "Language"
#: templates/admin.php:291
msgid "Choose a language for the banner Settings > General."
msgstr "Choose a language for the banner Settings > General."
#: templates/admin.php:475
msgid "Show Badge"
msgstr "Show Badge"
#: templates/admin.php:475
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr "Show a badge to enable the cookie banner to appear post consent."
#: templates/admin.php:498
msgid "Visual Settings"
msgstr "Visual Settings"
#: templates/admin.php:503
msgid "Banner Text"
msgstr "Banner Text"
#: templates/admin.php:503
msgid "Text to appear on the banner:"
msgstr "Text to appear on the banner:"
#: templates/admin.php:506 templates/admin.php:524
msgid "Colour"
msgstr "Colour"
#: templates/admin.php:506
msgid "The text colour to appear on the banner:"
msgstr "The text colour to appear on the banner:"
#: templates/admin.php:521
msgid "Banner Background"
msgstr "Banner Background"
#: templates/admin.php:521
msgid "You can change the background colour of the banner:"
msgstr "You can change the background colour of the banner:"
#: templates/admin.php:524
msgid "The background colour of the banner:"
msgstr "The background colour of the banner:"
#: templates/admin.php:538
msgid "Accept Button"
msgstr "Accept Button"
#: templates/admin.php:538
msgid ""
"You can change text colour, button colour and text of the 'Accept All' button"
msgstr ""
"You can change text colour, button colour and text of the 'Accept All' button"
#: templates/admin.php:541 templates/admin.php:572 templates/admin.php:603
msgid "Text Colour"
msgstr "Text Colour"
#: templates/admin.php:541
msgid "The text colour to appear on the 'Accept All' button:"
msgstr "The text colour to appear on the 'Accept All' button:"
#: templates/admin.php:551 templates/admin.php:582 templates/admin.php:613
msgid "Button Colour"
msgstr "Button Colour"
#: templates/admin.php:551
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr "The 'Accept All' button colour to appear on the banner:"
#: templates/admin.php:569
msgid "Reject Button"
msgstr "Reject Button"
#: templates/admin.php:569
msgid ""
"You can change text colour, button colour and text of the 'Reject All' button"
msgstr ""
"You can change text colour, button colour and text of the 'Reject All' button"
#: templates/admin.php:572
msgid "The text colour to appear on the 'Reject All' button:"
msgstr "The text colour to appear on the 'Reject All' button:"
#: templates/admin.php:582
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr "The 'Reject All' button colour to appear on the banner:"
#: templates/admin.php:600
msgid "Setting Button"
msgstr "Setting Button"
#: templates/admin.php:600
msgid "You can change text colour and text of the 'Setting' button"
msgstr "You can change text colour and text of the 'Setting' button"
#: templates/admin.php:603
msgid "The text colour to appear on the 'Setting' button:"
msgstr "The text colour to appear on the 'Setting' button:"
#: templates/admin.php:613
msgid "The 'Setting' button colour to appear on the banner:"
msgstr "The 'Setting' button colour to appear on the banner:"
#: templates/admin.php:624
msgid "Setting"
msgstr "Setting"
#: templates/admin.php:632
msgid "Fonts"
msgstr "Fonts"
#: templates/admin.php:632
msgid "You can select a font for the text of the banner:"
msgstr "You can select a font for the text of the banner:"
#: templates/admin.php:684
msgid "Select Button"
msgstr "Select Button"
#: templates/admin.php:684
msgid "You can select the shape of the buttons that appear on the banner."
msgstr "You can select the shape of the buttons that appear on the banner."
#: templates/admin.php:688
msgid "Default"
msgstr "Default"
#: templates/admin.php:692 templates/admin.php:702
msgid "Flat"
msgstr "Flat"
#: templates/admin.php:695 templates/admin.php:705
msgid "Rounded"
msgstr "Rounded"
#: templates/admin.php:698 templates/admin.php:708
msgid "Stroke"
msgstr "Stroke"
#: templates/admin.php:726
msgid "PREVIEW"
msgstr "PREVIEW"
#: templates/admin.php:727
msgid "SAVE"
msgstr "SAVE"
#: templates/admin.php:746
msgid "Please create cookies policy page and enter URL below."
msgstr "Please create cookies policy page and enter URL below."
#: templates/admin.php:750
msgid "Enable Policy:"
msgstr "Enable Policy:"
#: templates/admin.php:767
msgid "Cookie Policy and declaration URL:"
msgstr "Cookie Policy and declaration URL:"
#: templates/admin.php:770
msgid "Policy URL"
msgstr "Policy URL"
#: templates/admin.php:777
msgid "Save"
msgstr "Save"
#: templates/admin.php:831
msgid "Premium Plan"
msgstr "Premium Plan"
#: templates/admin.php:834 templates/admin.php:1023 templates/admin.php:1032
#: templates/admin.php:1040
msgid "Only the users with a paid account can avail this feature."
msgstr "Only the users with a paid account can avail this feature."
#: templates/admin.php:839
msgid "Ok"
msgstr "Ok"
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr "seers logo"
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr "About Cookies"
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr "Read Cookie Policy"
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr "Necessary"
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr "Always Active"
#: templates/frontend-popup.php:1774
msgid ""
"Necessary cookies help make a website usable by enabling basic functions "
"like page navigation and access to secure areas of the website. The website "
"cannot function properly without these cookies."
msgstr ""
"Necessary cookies help make a website usable by enabling basic functions "
"like page navigation and access to secure areas of the website. The website "
"cannot function properly without these cookies."
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784
#: templates/frontend-popup.php:1794 templates/frontend-popup.php:1804
#: templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr "Cookies Detail"
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr "Preferences"
#: templates/frontend-popup.php:1784
msgid ""
"Preference cookies enable a website to remember information that changes the "
"way the website behaves or looks, like your preferred language or the region "
"that you are in."
msgstr ""
"Preference cookies enable a website to remember information that changes the "
"way the website behaves or looks, like your preferred language or the region "
"that you are in."
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr "Statistics"
#: templates/frontend-popup.php:1794
msgid ""
"Statistic cookies help website owners to understand how visitors interact "
"with websites by collecting and reporting information anonymously."
msgstr ""
"Statistic cookies help website owners to understand how visitors interact "
"with websites by collecting and reporting information anonymously."
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr "Marketing"
#: templates/frontend-popup.php:1804
msgid ""
"Marketing cookies are used to track visitors across websites. The intention "
"is to display ads that are relevant and engaging for the individual user and "
"thereby more valuable for publishers and third-party advertisers."
msgstr ""
"Marketing cookies are used to track visitors across websites. The intention "
"is to display ads that are relevant and engaging for the individual user and "
"thereby more valuable for publishers and third-party advertisers."
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr "Unclassified"
#: templates/frontend-popup.php:1812
msgid ""
"Unclassified cookies are cookies that we are in the process of classifying, "
"together with the providers of individual cookies."
msgstr ""
"Unclassified cookies are cookies that we are in the process of classifying, "
"together with the providers of individual cookies."
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr "Save my choices"
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr "powered by"
#~ msgid "To get your Cookie ID click on Activate"
#~ msgstr "To get your Cookie ID click on Activate"
#~ msgid "Activate"
#~ msgstr "Activate"

View File

@ -0,0 +1,700 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-25 17:21+0500\n"
"PO-Revision-Date: 2022-03-30 04:49-0700\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: en_NZ\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
"X-Poedit-Basepath: ..\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPath-1: inc\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:382
msgid "Quick Feedback"
msgstr "Quick Feedback"
#: inc/seers-cookie-consent-plugin-deactivate.php:383
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr "If you have a moment, please let us know why you are deactivating:"
#: inc/seers-cookie-consent-plugin-deactivate.php:386
#: inc/seers-cookie-consent-plugin-deactivate.php:387
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr "The banner is not in the required language"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid ""
"The banner picks up your website language automatically. You can always sign-"
"in on your Seers account"
msgstr ""
"The banner picks up your website language automatically. You can always sign-"
"in on your Seers account"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "and choose the language you like. See the video"
msgstr "and choose the language you like. See the video"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "here"
msgstr "here"
#: inc/seers-cookie-consent-plugin-deactivate.php:395
#: inc/seers-cookie-consent-plugin-deactivate.php:396
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr "Banner did not appear"
#: inc/seers-cookie-consent-plugin-deactivate.php:399
#: inc/seers-cookie-consent-plugin-deactivate.php:420
msgid ""
"Most of the times the compatibility issue can be fixed very quickly. Please "
"contact"
msgstr ""
"Most of the times the compatibility issue can be fixed very quickly. Please "
"contact"
#: inc/seers-cookie-consent-plugin-deactivate.php:403
#: inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr "Cookies are not showing in settings"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid ""
"We are scanning your website and it can take up to 12 hours for Cookies to "
"appear. In a very few cases scanner miss a cookie. This"
msgstr ""
"We are scanning your website and it can take up to 12 hours for Cookies to "
"appear. In a very few cases scanner miss a cookie. This"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "video"
msgstr "video"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "explains how to add cookies manually."
msgstr "explains how to add cookies manually."
#: inc/seers-cookie-consent-plugin-deactivate.php:410
#: inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr "The banner did not match website theme"
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "You can fully customize the banner. Please see the video"
msgstr "You can fully customize the banner. Please see the video"
#: inc/seers-cookie-consent-plugin-deactivate.php:416
#: inc/seers-cookie-consent-plugin-deactivate.php:417
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr "The plugin broke my site"
#: inc/seers-cookie-consent-plugin-deactivate.php:424
#: inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr "I have found a better plugin"
#: inc/seers-cookie-consent-plugin-deactivate.php:427
msgid "Plugin name"
msgstr "Plugin name"
#: inc/seers-cookie-consent-plugin-deactivate.php:430
msgid ""
"The plugin is great, but i need specific feature that you do not support."
msgstr ""
"The plugin is great, but i need specific feature that you do not support."
#: inc/seers-cookie-consent-plugin-deactivate.php:431
#: inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid ""
"The plugin is great, but i need specific feature that you don't support."
msgstr ""
"The plugin is great, but i need specific feature that you don't support."
#: inc/seers-cookie-consent-plugin-deactivate.php:434
msgid "Banner customisation."
msgstr "Banner customisation."
#: inc/seers-cookie-consent-plugin-deactivate.php:438
#: inc/seers-cookie-consent-plugin-deactivate.php:439
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr "Other"
#: inc/seers-cookie-consent-plugin-deactivate.php:442
msgid "Kindly tell us the reason so we can improve."
msgstr "Kindly tell us the reason so we can improve."
#: inc/seers-cookie-consent-plugin-deactivate.php:445
msgid "Submit & Deactivate"
msgstr "Submit & Deactivate"
#: inc/seers-cookie-consent-plugin-deactivate.php:446
msgid "Cancel"
msgstr "Cancel"
#: inc/seers-cookie-consent-plugin-deactivate.php:451
msgid "Skip & Deactivate"
msgstr "Skip & Deactivate"
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr "Dismiss this notice."
#: seers-cookie-consent-banner-privacy-policy.php:135 templates/admin.php:97
msgid "Settings"
msgstr "Settings"
#: seers-cookie-consent-banner-privacy-policy.php:141
msgid "Upgrade Premium"
msgstr "Upgrade Premium"
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:514
#: templates/frontend-popup.php:1738 templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr "We use cookies to ensure you get the best experience"
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:558
#: templates/admin.php:559 templates/admin.php:561
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1765
msgid "Allow All"
msgstr "Allow All"
#: seers-cookie-consent-banner-privacy-policy.php:294 templates/admin.php:589
#: templates/admin.php:590 templates/admin.php:592
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1766
msgid "Disable All"
msgstr "Disable All"
#: seers-cookie-consent-banner-privacy-policy.php:295 templates/admin.php:621
#: templates/frontend-popup.php:1740
msgid "Preference"
msgstr "Preference"
#: seers-cookie-consent-banner-privacy-policy.php:418
#: seers-cookie-consent-banner-privacy-policy.php:446
#: seers-cookie-consent-banner-privacy-policy.php:452
msgid "Cookies policy added successfully."
msgstr "Cookies policy added successfully."
#: seers-cookie-consent-banner-privacy-policy.php:421
msgid "Some thing went wrong. Please check url and try again"
msgstr "Some thing went wrong. Please check url and try again"
#: seers-cookie-consent-banner-privacy-policy.php:675
msgid "Some thing went wrong."
msgstr "Some thing went wrong."
#: seers-cookie-consent-banner-privacy-policy.php:819
msgid "Settings has been updated successfully"
msgstr "Settings has been updated successfully"
#: templates/admin.php:92 templates/admin.php:841
msgid "Account Setup"
msgstr "Account Setup"
#: templates/admin.php:100
msgid "Policy"
msgstr "Policy"
#: templates/admin.php:104
msgid "User Guide"
msgstr "User Guide"
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr "Your Seers Cookie Consent banner is activated."
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr "Your Seers Cookie Consent Banner is NOT activated because"
#: templates/admin.php:134
msgid "Email"
msgstr "Email"
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr "I agree Seers"
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr "Terms & Condition"
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr "and"
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr "Privacy Policy"
#: templates/admin.php:154 templates/admin.php:172
msgid ""
"I agree Seers to use my email and url to create an account and power the "
"cookie banner."
msgstr ""
"I agree Seers to use my email and url to create an account and power the "
"cookie banner."
#: templates/admin.php:178
msgid "Create Account"
msgstr "Create Account"
#: templates/admin.php:181
msgid "Cookie ID"
msgstr "Cookie ID"
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr "Seers Cookie ID will be received automatically after account creation"
#: templates/admin.php:197
msgid "Powering all your"
msgstr "Powering all your"
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr "Privacy and Data Security needs"
#: templates/admin.php:199
msgid ""
"Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy "
"compliance tools,"
msgstr ""
"Gain access to an extensive range of GDPR, PECR, CCPA and ePrivacy "
"compliance tools,"
#: templates/admin.php:200
msgid "all"
msgstr "all"
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
#: templates/admin.php:206
msgid "Policies Pack"
msgstr "Policies Pack"
#: templates/admin.php:207
msgid "Templates Pack"
msgstr "Templates Pack"
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr "Templates Pack"
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr "Cookie Consent Management"
#: templates/admin.php:212
msgid "DPIA"
msgstr "DPIA"
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr "GDPR Audit"
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr "Cyber Secure"
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr "Subject Request Management"
#: templates/admin.php:217
msgid "START FREE"
msgstr "START FREE"
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
"Data Privacy &amp;\n"
" Compliance. Solved"
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help "
"companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
"Trust worlds leading privacy and consent management platform to help "
"companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr "START PREMIUM TODAY"
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr "Seers Premium Plan"
#: templates/admin.php:232
msgid "Branding"
msgstr "Branding"
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr "Multi Lingual"
#: templates/admin.php:234
msgid "Consent Log"
msgstr "Consent Log"
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr "Cookie Policy"
#: templates/admin.php:236
msgid "Prior Consent"
msgstr "Prior Consent"
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr "6+ Design Layouts"
#: templates/admin.php:238
msgid "Customer Support"
msgstr "Customer Support"
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr "Banner Customisation"
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr "Cookie Declaration Table"
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
"START PREMIUM\n"
" TODAY"
#: templates/admin.php:255
msgid "Banner Settings"
msgstr "Banner Settings"
#: templates/admin.php:260
msgid "Banner"
msgstr "Banner"
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr "Enable/disable Cookie banner"
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr "Cookie Expiry"
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr "Set your consent cookie to expire in days."
#: templates/admin.php:291
msgid "Language"
msgstr "Language"
#: templates/admin.php:291
msgid "Choose a language for the banner Settings > General."
msgstr "Choose a language for the banner Settings > General.."
#: templates/admin.php:475
msgid "Show Badge"
msgstr "Show Badge"
#: templates/admin.php:475
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr "Show a badge to enable the cookie banner to appear post consent."
#: templates/admin.php:498
msgid "Visual Settings"
msgstr "Visual Settings"
#: templates/admin.php:503
msgid "Banner Text"
msgstr "Banner Text"
#: templates/admin.php:503
msgid "Text to appear on the banner:"
msgstr "Text to appear on the banner:"
#: templates/admin.php:506 templates/admin.php:524
msgid "Colour"
msgstr "Colour"
#: templates/admin.php:506
msgid "The text colour to appear on the banner:"
msgstr "The text colour to appear on the banner:"
#: templates/admin.php:521
msgid "Banner Background"
msgstr "Banner Background"
#: templates/admin.php:521
msgid "You can change the background colour of the banner:"
msgstr "You can change the background colour of the banner:"
#: templates/admin.php:524
msgid "The background colour of the banner:"
msgstr "The background colour of the banner:"
#: templates/admin.php:538
msgid "Accept Button"
msgstr "Accept Button"
#: templates/admin.php:538
msgid ""
"You can change text colour, button colour and text of the 'Accept All' button"
msgstr ""
"You can change text colour, button colour and text of the 'Accept All' button"
#: templates/admin.php:541 templates/admin.php:572 templates/admin.php:603
msgid "Text Colour"
msgstr "Text Colour"
#: templates/admin.php:541
msgid "The text colour to appear on the 'Accept All' button:"
msgstr "The text colour to appear on the 'Accept All' button:"
#: templates/admin.php:551 templates/admin.php:582 templates/admin.php:613
msgid "Button Colour"
msgstr "Button Colour"
#: templates/admin.php:551
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr "The 'Accept All' button colour to appear on the banner:"
#: templates/admin.php:569
msgid "Reject Button"
msgstr "Reject Button"
#: templates/admin.php:569
msgid ""
"You can change text colour, button colour and text of the 'Reject All' button"
msgstr ""
"You can change text colour, button colour and text of the 'Reject All' button"
#: templates/admin.php:572
msgid "The text colour to appear on the 'Reject All' button:"
msgstr "The text colour to appear on the 'Reject All' button:"
#: templates/admin.php:582
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr "The 'Reject All' button colour to appear on the banner:"
#: templates/admin.php:600
msgid "Setting Button"
msgstr "Setting Button"
#: templates/admin.php:600
msgid "You can change text colour and text of the 'Setting' button"
msgstr "You can change text colour and text of the 'Setting' button"
#: templates/admin.php:603
msgid "The text colour to appear on the 'Setting' button:"
msgstr "The text colour to appear on the 'Setting' button:"
#: templates/admin.php:613
msgid "The 'Setting' button colour to appear on the banner:"
msgstr "The 'Setting' button colour to appear on the banner:"
#: templates/admin.php:624
msgid "Setting"
msgstr "Setting"
#: templates/admin.php:632
msgid "Fonts"
msgstr "Fonts"
#: templates/admin.php:632
msgid "You can select a font for the text of the banner:"
msgstr "You can select a font for the text of the banner:"
#: templates/admin.php:684
msgid "Select Button"
msgstr "Select Button"
#: templates/admin.php:684
msgid "You can select the shape of the buttons that appear on the banner."
msgstr "You can select the shape of the buttons that appear on the banner."
#: templates/admin.php:688
msgid "Default"
msgstr "Default"
#: templates/admin.php:692 templates/admin.php:702
msgid "Flat"
msgstr "Flat"
#: templates/admin.php:695 templates/admin.php:705
msgid "Rounded"
msgstr "Rounded"
#: templates/admin.php:698 templates/admin.php:708
msgid "Stroke"
msgstr "Stroke"
#: templates/admin.php:726
msgid "PREVIEW"
msgstr "PREVIEW"
#: templates/admin.php:727
msgid "SAVE"
msgstr "SAVE"
#: templates/admin.php:746
msgid "Please create cookies policy page and enter URL below."
msgstr "Please create cookies policy page and enter URL below."
#: templates/admin.php:750
msgid "Enable Policy:"
msgstr "Enable Policy:"
#: templates/admin.php:767
msgid "Cookie Policy and declaration URL:"
msgstr "Cookie Policy and declaration URL:"
#: templates/admin.php:770
msgid "Policy URL"
msgstr "Policy URL"
#: templates/admin.php:777
msgid "Save"
msgstr "Save"
#: templates/admin.php:831
msgid "Premium Plan"
msgstr "Premium Plan"
#: templates/admin.php:834 templates/admin.php:1023 templates/admin.php:1032
#: templates/admin.php:1040
msgid "Only the users with a paid account can avail this feature."
msgstr "Only the users with a paid account can avail this feature."
#: templates/admin.php:839
msgid "Ok"
msgstr "Ok"
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr "seers logo"
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr "About Cookies"
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr "Read Cookie Policy"
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr "Necessary"
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr "Always Active"
#: templates/frontend-popup.php:1774
msgid ""
"Necessary cookies help make a website usable by enabling basic functions "
"like page navigation and access to secure areas of the website. The website "
"cannot function properly without these cookies."
msgstr ""
"Necessary cookies help make a website usable by enabling basic functions "
"like page navigation and access to secure areas of the website. The website "
"cannot function properly without these cookies."
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784
#: templates/frontend-popup.php:1794 templates/frontend-popup.php:1804
#: templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr "Cookies Detail"
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr "Preferences"
#: templates/frontend-popup.php:1784
msgid ""
"Preference cookies enable a website to remember information that changes the "
"way the website behaves or looks, like your preferred language or the region "
"that you are in."
msgstr ""
"Preference cookies enable a website to remember information that changes the "
"way the website behaves or looks, like your preferred language or the region "
"that you are in."
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr "Statistics"
#: templates/frontend-popup.php:1794
msgid ""
"Statistic cookies help website owners to understand how visitors interact "
"with websites by collecting and reporting information anonymously."
msgstr ""
"Statistic cookies help website owners to understand how visitors interact "
"with websites by collecting and reporting information anonymously."
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr "Marketing"
#: templates/frontend-popup.php:1804
msgid ""
"Marketing cookies are used to track visitors across websites. The intention "
"is to display ads that are relevant and engaging for the individual user and "
"thereby more valuable for publishers and third-party advertisers."
msgstr ""
"Marketing cookies are used to track visitors across websites. The intention "
"is to display ads that are relevant and engaging for the individual user and "
"thereby more valuable for publishers and third-party advertisers."
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr "Unclassified"
#: templates/frontend-popup.php:1812
msgid ""
"Unclassified cookies are cookies that we are in the process of classifying, "
"together with the providers of individual cookies."
msgstr ""
"Unclassified cookies are cookies that we are in the process of classifying, "
"together with the providers of individual cookies."
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr "Save my choices"
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr "powered by"
#~ msgid "To get your Cookie ID click on Activate"
#~ msgstr "To get your Cookie ID click on Activate"
#~ msgid "Activate"
#~ msgstr "Activate"

View File

@ -0,0 +1,700 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-25 17:21+0500\n"
"PO-Revision-Date: 2022-03-30 04:49-0700\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: en_US\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
"X-Poedit-Basepath: ..\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPath-1: inc\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:382
msgid "Quick Feedback"
msgstr "Quick Feedback"
#: inc/seers-cookie-consent-plugin-deactivate.php:383
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr "If you have a moment, please let us know why you are deactivating:"
#: inc/seers-cookie-consent-plugin-deactivate.php:386
#: inc/seers-cookie-consent-plugin-deactivate.php:387
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr "The banner is not in the required language"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid ""
"The banner picks up your website language automatically. You can always sign-"
"in on your Seers account"
msgstr ""
"The banner picks up your website language automatically. You can always sign-"
"in on your Seers account"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "and choose the language you like. See the video"
msgstr "and choose the language you like. See the video"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "here"
msgstr "here"
#: inc/seers-cookie-consent-plugin-deactivate.php:395
#: inc/seers-cookie-consent-plugin-deactivate.php:396
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr "Banner did not appear"
#: inc/seers-cookie-consent-plugin-deactivate.php:399
#: inc/seers-cookie-consent-plugin-deactivate.php:420
msgid ""
"Most of the times the compatibility issue can be fixed very quickly. Please "
"contact"
msgstr ""
"Most of the times the compatibility issue can be fixed very quickly. Please "
"contact"
#: inc/seers-cookie-consent-plugin-deactivate.php:403
#: inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr "Cookies are not showing in settings"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid ""
"We are scanning your website and it can take up to 12 hours for Cookies to "
"appear. In a very few cases scanner miss a cookie. This"
msgstr ""
"We are scanning your website and it can take up to 12 hours for Cookies to "
"appear. In a very few cases scanner miss a cookie. This"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "video"
msgstr "video"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "explains how to add cookies manually."
msgstr "explains how to add cookies manually."
#: inc/seers-cookie-consent-plugin-deactivate.php:410
#: inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr "The banner did not match website theme"
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "You can fully customize the banner. Please see the video"
msgstr "You can fully customize the banner. Please see the video"
#: inc/seers-cookie-consent-plugin-deactivate.php:416
#: inc/seers-cookie-consent-plugin-deactivate.php:417
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr "The plugin broke my site"
#: inc/seers-cookie-consent-plugin-deactivate.php:424
#: inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr "I have found a better plugin"
#: inc/seers-cookie-consent-plugin-deactivate.php:427
msgid "Plugin name"
msgstr "Plugin name"
#: inc/seers-cookie-consent-plugin-deactivate.php:430
msgid ""
"The plugin is great, but i need specific feature that you do not support."
msgstr ""
"The plugin is great, but i need specific feature that you do not support."
#: inc/seers-cookie-consent-plugin-deactivate.php:431
#: inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid ""
"The plugin is great, but i need specific feature that you don't support."
msgstr ""
"The plugin is great, but i need specific feature that you don't support."
#: inc/seers-cookie-consent-plugin-deactivate.php:434
msgid "Banner customisation."
msgstr "Banner customisation."
#: inc/seers-cookie-consent-plugin-deactivate.php:438
#: inc/seers-cookie-consent-plugin-deactivate.php:439
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr "Other"
#: inc/seers-cookie-consent-plugin-deactivate.php:442
msgid "Kindly tell us the reason so we can improve."
msgstr "Kindly tell us the reason so we can improve."
#: inc/seers-cookie-consent-plugin-deactivate.php:445
msgid "Submit & Deactivate"
msgstr "Submit & Deactivate"
#: inc/seers-cookie-consent-plugin-deactivate.php:446
msgid "Cancel"
msgstr "Cancel"
#: inc/seers-cookie-consent-plugin-deactivate.php:451
msgid "Skip & Deactivate"
msgstr "Skip & Deactivate"
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr "Dismiss this notice."
#: seers-cookie-consent-banner-privacy-policy.php:135 templates/admin.php:97
msgid "Settings"
msgstr "Settings"
#: seers-cookie-consent-banner-privacy-policy.php:141
msgid "Upgrade Premium"
msgstr "Upgrade Premium"
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:514
#: templates/frontend-popup.php:1738 templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr "We use cookies to ensure you get the best experience"
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:558
#: templates/admin.php:559 templates/admin.php:561
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1765
msgid "Allow All"
msgstr "Allow All"
#: seers-cookie-consent-banner-privacy-policy.php:294 templates/admin.php:589
#: templates/admin.php:590 templates/admin.php:592
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1766
msgid "Disable All"
msgstr "Disable All"
#: seers-cookie-consent-banner-privacy-policy.php:295 templates/admin.php:621
#: templates/frontend-popup.php:1740
msgid "Preference"
msgstr "Preference"
#: seers-cookie-consent-banner-privacy-policy.php:418
#: seers-cookie-consent-banner-privacy-policy.php:446
#: seers-cookie-consent-banner-privacy-policy.php:452
msgid "Cookies policy added successfully."
msgstr "Cookies policy added successfully."
#: seers-cookie-consent-banner-privacy-policy.php:421
msgid "Some thing went wrong. Please check url and try again"
msgstr "Some thing went wrong. Please check url and try again"
#: seers-cookie-consent-banner-privacy-policy.php:675
msgid "Some thing went wrong."
msgstr "Some thing went wrong."
#: seers-cookie-consent-banner-privacy-policy.php:819
msgid "Settings has been updated successfully"
msgstr "Settings has been updated successfully"
#: templates/admin.php:92 templates/admin.php:841
msgid "Account Setup"
msgstr "Account Setup"
#: templates/admin.php:100
msgid "Policy"
msgstr "Policy"
#: templates/admin.php:104
msgid "User Guide"
msgstr "User Guide"
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr "Your Seers Cookie Consent banner is activated."
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr "Your Seers Cookie Consent Banner is NOT activated because"
#: templates/admin.php:134
msgid "Email"
msgstr "Email"
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr "I agree Seers"
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr "Terms & Condition"
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr "and"
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr "Privacy Policy"
#: templates/admin.php:154 templates/admin.php:172
msgid ""
"I agree Seers to use my email and url to create an account and power the "
"cookie banner."
msgstr ""
"I agree Seers to use my email and url to create an account and power the "
"cookie banner."
#: templates/admin.php:178
msgid "Create Account"
msgstr "Create Account"
#: templates/admin.php:181
msgid "Cookie ID"
msgstr "Cookie ID"
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr "Seers Cookie ID will be received automatically after account creation"
#: templates/admin.php:197
msgid "Powering all your"
msgstr "Powering all your"
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr "Privacy and Data Security needs"
#: templates/admin.php:199
msgid ""
"Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy "
"compliance tools,"
msgstr ""
"Gain access to an extensive range of GDPR, PECR, CCPA and ePrivacy "
"compliance tools,"
#: templates/admin.php:200
msgid "all"
msgstr "all"
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
#: templates/admin.php:206
msgid "Policies Pack"
msgstr "Policies Pack"
#: templates/admin.php:207
msgid "Templates Pack"
msgstr "Templates Pack"
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr "Templates Pack"
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr "Cookie Consent Management"
#: templates/admin.php:212
msgid "DPIA"
msgstr "DPIA"
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr "GDPR Audit"
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr "Cyber Secure"
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr "Subject Request Management"
#: templates/admin.php:217
msgid "START FREE"
msgstr "START FREE"
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
"Data Privacy &amp;\n"
" Compliance. Solved"
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help "
"companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
"Trust worlds leading privacy and consent management platform to help "
"companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr "START PREMIUM TODAY"
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr "Seers Premium Plan"
#: templates/admin.php:232
msgid "Branding"
msgstr "Branding"
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr "Multi Lingual"
#: templates/admin.php:234
msgid "Consent Log"
msgstr "Consent Log"
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr "Cookie Policy"
#: templates/admin.php:236
msgid "Prior Consent"
msgstr "Prior Consent"
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr "6+ Design Layouts"
#: templates/admin.php:238
msgid "Customer Support"
msgstr "Customer Support"
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr "Banner Customisation"
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr "Cookie Declaration Table"
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
"START PREMIUM\n"
" TODAY"
#: templates/admin.php:255
msgid "Banner Settings"
msgstr "Banner Settings"
#: templates/admin.php:260
msgid "Banner"
msgstr "Banner"
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr "Enable/disable Cookie banner"
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr "Cookie Expiry"
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr "Set your consent cookie to expire in days."
#: templates/admin.php:291
msgid "Language"
msgstr "Language"
#: templates/admin.php:291
msgid "Choose a language for the banner Settings > General."
msgstr "Choose a language for the banner Settings > General."
#: templates/admin.php:475
msgid "Show Badge"
msgstr "Show Badge"
#: templates/admin.php:475
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr "Show a badge to enable the cookie banner to appear post consent."
#: templates/admin.php:498
msgid "Visual Settings"
msgstr "Visual Settings"
#: templates/admin.php:503
msgid "Banner Text"
msgstr "Banner Text"
#: templates/admin.php:503
msgid "Text to appear on the banner:"
msgstr "Text to appear on the banner:"
#: templates/admin.php:506 templates/admin.php:524
msgid "Colour"
msgstr "Colour"
#: templates/admin.php:506
msgid "The text colour to appear on the banner:"
msgstr "The text colour to appear on the banner:"
#: templates/admin.php:521
msgid "Banner Background"
msgstr "Banner Background"
#: templates/admin.php:521
msgid "You can change the background colour of the banner:"
msgstr "You can change the background colour of the banner:"
#: templates/admin.php:524
msgid "The background colour of the banner:"
msgstr "The background colour of the banner:"
#: templates/admin.php:538
msgid "Accept Button"
msgstr "Accept Button"
#: templates/admin.php:538
msgid ""
"You can change text colour, button colour and text of the 'Accept All' button"
msgstr ""
"You can change text colour, button colour and text of the 'Accept All' button"
#: templates/admin.php:541 templates/admin.php:572 templates/admin.php:603
msgid "Text Colour"
msgstr "Text Colour"
#: templates/admin.php:541
msgid "The text colour to appear on the 'Accept All' button:"
msgstr "The text colour to appear on the 'Accept All' button:"
#: templates/admin.php:551 templates/admin.php:582 templates/admin.php:613
msgid "Button Colour"
msgstr "Button Colour"
#: templates/admin.php:551
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr "The 'Accept All' button colour to appear on the banner:"
#: templates/admin.php:569
msgid "Reject Button"
msgstr "Reject Button"
#: templates/admin.php:569
msgid ""
"You can change text colour, button colour and text of the 'Reject All' button"
msgstr ""
"You can change text colour, button colour and text of the 'Reject All' button"
#: templates/admin.php:572
msgid "The text colour to appear on the 'Reject All' button:"
msgstr "The text colour to appear on the 'Reject All' button:"
#: templates/admin.php:582
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr "The 'Reject All' button colour to appear on the banner:"
#: templates/admin.php:600
msgid "Setting Button"
msgstr "Setting Button"
#: templates/admin.php:600
msgid "You can change text colour and text of the 'Setting' button"
msgstr "You can change text colour and text of the 'Setting' button"
#: templates/admin.php:603
msgid "The text colour to appear on the 'Setting' button:"
msgstr "The text colour to appear on the 'Setting' button:"
#: templates/admin.php:613
msgid "The 'Setting' button colour to appear on the banner:"
msgstr "The 'Setting' button colour to appear on the banner:"
#: templates/admin.php:624
msgid "Setting"
msgstr "Setting"
#: templates/admin.php:632
msgid "Fonts"
msgstr "Fonts"
#: templates/admin.php:632
msgid "You can select a font for the text of the banner:"
msgstr "You can select a font for the text of the banner:"
#: templates/admin.php:684
msgid "Select Button"
msgstr "Select Button"
#: templates/admin.php:684
msgid "You can select the shape of the buttons that appear on the banner."
msgstr "You can select the shape of the buttons that appear on the banner."
#: templates/admin.php:688
msgid "Default"
msgstr "Default"
#: templates/admin.php:692 templates/admin.php:702
msgid "Flat"
msgstr "Flat"
#: templates/admin.php:695 templates/admin.php:705
msgid "Rounded"
msgstr "Rounded"
#: templates/admin.php:698 templates/admin.php:708
msgid "Stroke"
msgstr "Stroke"
#: templates/admin.php:726
msgid "PREVIEW"
msgstr "PREVIEW"
#: templates/admin.php:727
msgid "SAVE"
msgstr "SAVE"
#: templates/admin.php:746
msgid "Please create cookies policy page and enter URL below."
msgstr "Please create cookies policy page and enter URL below."
#: templates/admin.php:750
msgid "Enable Policy:"
msgstr "Enable Policy:"
#: templates/admin.php:767
msgid "Cookie Policy and declaration URL:"
msgstr "Cookie Policy and declaration URL:"
#: templates/admin.php:770
msgid "Policy URL"
msgstr "Policy URL"
#: templates/admin.php:777
msgid "Save"
msgstr "Save"
#: templates/admin.php:831
msgid "Premium Plan"
msgstr "Premium Plan"
#: templates/admin.php:834 templates/admin.php:1023 templates/admin.php:1032
#: templates/admin.php:1040
msgid "Only the users with a paid account can avail this feature."
msgstr "Only the users with a paid account can avail this feature."
#: templates/admin.php:839
msgid "Ok"
msgstr "Ok"
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr "seers logo"
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr "About Cookies"
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr "Read Cookie Policy"
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr "Necessary"
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr "Always Active"
#: templates/frontend-popup.php:1774
msgid ""
"Necessary cookies help make a website usable by enabling basic functions "
"like page navigation and access to secure areas of the website. The website "
"cannot function properly without these cookies."
msgstr ""
"Necessary cookies help make a website usable by enabling basic functions "
"like page navigation and access to secure areas of the website. The website "
"cannot function properly without these cookies."
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784
#: templates/frontend-popup.php:1794 templates/frontend-popup.php:1804
#: templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr "Cookies Detail"
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr "Preferences"
#: templates/frontend-popup.php:1784
msgid ""
"Preference cookies enable a website to remember information that changes the "
"way the website behaves or looks, like your preferred language or the region "
"that you are in."
msgstr ""
"Preference cookies enable a website to remember information that changes the "
"way the website behaves or looks, like your preferred language or the region "
"that you are in."
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr "Statistics"
#: templates/frontend-popup.php:1794
msgid ""
"Statistic cookies help website owners to understand how visitors interact "
"with websites by collecting and reporting information anonymously."
msgstr ""
"Statistic cookies help website owners to understand how visitors interact "
"with websites by collecting and reporting information anonymously."
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr "Marketing"
#: templates/frontend-popup.php:1804
msgid ""
"Marketing cookies are used to track visitors across websites. The intention "
"is to display ads that are relevant and engaging for the individual user and "
"thereby more valuable for publishers and third-party advertisers."
msgstr ""
"Marketing cookies are used to track visitors across websites. The intention "
"is to display ads that are relevant and engaging for the individual user and "
"thereby more valuable for publishers and third-party advertisers."
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr "Unclassified"
#: templates/frontend-popup.php:1812
msgid ""
"Unclassified cookies are cookies that we are in the process of classifying, "
"together with the providers of individual cookies."
msgstr ""
"Unclassified cookies are cookies that we are in the process of classifying, "
"together with the providers of individual cookies."
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr "Save my choices"
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr "powered by"
#~ msgid "To get your Cookie ID click on Activate"
#~ msgstr "To get your Cookie ID click on Activate"
#~ msgid "Activate"
#~ msgstr "Activate"

View File

@ -0,0 +1,700 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-25 17:21+0500\n"
"PO-Revision-Date: 2022-03-30 04:49-0700\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: en_ZA\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
"X-Poedit-Basepath: ..\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPath-1: inc\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:382
msgid "Quick Feedback"
msgstr "Quick Feedback"
#: inc/seers-cookie-consent-plugin-deactivate.php:383
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr "If you have a moment, please let us know why you are deactivating:"
#: inc/seers-cookie-consent-plugin-deactivate.php:386
#: inc/seers-cookie-consent-plugin-deactivate.php:387
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr "The banner is not in the required language"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid ""
"The banner picks up your website language automatically. You can always sign-"
"in on your Seers account"
msgstr ""
"The banner picks up your website language automatically. You can always sign-"
"in on your Seers account"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "and choose the language you like. See the video"
msgstr "and choose the language you like. See the video"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "here"
msgstr "here"
#: inc/seers-cookie-consent-plugin-deactivate.php:395
#: inc/seers-cookie-consent-plugin-deactivate.php:396
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr "Banner did not appear"
#: inc/seers-cookie-consent-plugin-deactivate.php:399
#: inc/seers-cookie-consent-plugin-deactivate.php:420
msgid ""
"Most of the times the compatibility issue can be fixed very quickly. Please "
"contact"
msgstr ""
"Most of the times the compatibility issue can be fixed very quickly. Please "
"contact"
#: inc/seers-cookie-consent-plugin-deactivate.php:403
#: inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr "Cookies are not showing in settings"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid ""
"We are scanning your website and it can take up to 12 hours for Cookies to "
"appear. In a very few cases scanner miss a cookie. This"
msgstr ""
"We are scanning your website and it can take up to 12 hours for Cookies to "
"appear. In a very few cases scanner miss a cookie. This"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "video"
msgstr "video"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "explains how to add cookies manually."
msgstr "explains how to add cookies manually."
#: inc/seers-cookie-consent-plugin-deactivate.php:410
#: inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr "The banner did not match website theme"
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "You can fully customize the banner. Please see the video"
msgstr "You can fully customize the banner. Please see the video"
#: inc/seers-cookie-consent-plugin-deactivate.php:416
#: inc/seers-cookie-consent-plugin-deactivate.php:417
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr "The plugin broke my site"
#: inc/seers-cookie-consent-plugin-deactivate.php:424
#: inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr "I have found a better plugin"
#: inc/seers-cookie-consent-plugin-deactivate.php:427
msgid "Plugin name"
msgstr "Plugin name"
#: inc/seers-cookie-consent-plugin-deactivate.php:430
msgid ""
"The plugin is great, but i need specific feature that you do not support."
msgstr ""
"The plugin is great, but i need specific feature that you do not support."
#: inc/seers-cookie-consent-plugin-deactivate.php:431
#: inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid ""
"The plugin is great, but i need specific feature that you don't support."
msgstr ""
"The plugin is great, but i need specific feature that you don't support."
#: inc/seers-cookie-consent-plugin-deactivate.php:434
msgid "Banner customisation."
msgstr "Banner customisation."
#: inc/seers-cookie-consent-plugin-deactivate.php:438
#: inc/seers-cookie-consent-plugin-deactivate.php:439
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr "Other"
#: inc/seers-cookie-consent-plugin-deactivate.php:442
msgid "Kindly tell us the reason so we can improve."
msgstr "Kindly tell us the reason so we can improve."
#: inc/seers-cookie-consent-plugin-deactivate.php:445
msgid "Submit & Deactivate"
msgstr "Submit & Deactivate"
#: inc/seers-cookie-consent-plugin-deactivate.php:446
msgid "Cancel"
msgstr "Cancel"
#: inc/seers-cookie-consent-plugin-deactivate.php:451
msgid "Skip & Deactivate"
msgstr "Skip & Deactivate"
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr "Dismiss this notice."
#: seers-cookie-consent-banner-privacy-policy.php:135 templates/admin.php:97
msgid "Settings"
msgstr "Settings"
#: seers-cookie-consent-banner-privacy-policy.php:141
msgid "Upgrade Premium"
msgstr "Upgrade Premium"
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:514
#: templates/frontend-popup.php:1738 templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr "We use cookies to ensure you get the best experience"
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:558
#: templates/admin.php:559 templates/admin.php:561
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1765
msgid "Allow All"
msgstr "Allow All"
#: seers-cookie-consent-banner-privacy-policy.php:294 templates/admin.php:589
#: templates/admin.php:590 templates/admin.php:592
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1766
msgid "Disable All"
msgstr "Disable All"
#: seers-cookie-consent-banner-privacy-policy.php:295 templates/admin.php:621
#: templates/frontend-popup.php:1740
msgid "Preference"
msgstr "Preference"
#: seers-cookie-consent-banner-privacy-policy.php:418
#: seers-cookie-consent-banner-privacy-policy.php:446
#: seers-cookie-consent-banner-privacy-policy.php:452
msgid "Cookies policy added successfully."
msgstr "Cookies policy added successfully."
#: seers-cookie-consent-banner-privacy-policy.php:421
msgid "Some thing went wrong. Please check url and try again"
msgstr "Some thing went wrong. Please check url and try again"
#: seers-cookie-consent-banner-privacy-policy.php:675
msgid "Some thing went wrong."
msgstr "Some thing went wrong."
#: seers-cookie-consent-banner-privacy-policy.php:819
msgid "Settings has been updated successfully"
msgstr "Settings has been updated successfully"
#: templates/admin.php:92 templates/admin.php:841
msgid "Account Setup"
msgstr "Account Setup"
#: templates/admin.php:100
msgid "Policy"
msgstr "Policy"
#: templates/admin.php:104
msgid "User Guide"
msgstr "User Guide"
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr "Your Seers Cookie Consent banner is activated."
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr "Your Seers Cookie Consent Banner is NOT activated because"
#: templates/admin.php:134
msgid "Email"
msgstr "Email"
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr "I agree Seers"
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr "Terms & Condition"
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr "and"
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr "Privacy Policy"
#: templates/admin.php:154 templates/admin.php:172
msgid ""
"I agree Seers to use my email and url to create an account and power the "
"cookie banner."
msgstr ""
"I agree Seers to use my email and url to create an account and power the "
"cookie banner."
#: templates/admin.php:178
msgid "Create Account"
msgstr "Create Account"
#: templates/admin.php:181
msgid "Cookie ID"
msgstr "Cookie ID"
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr "Seers Cookie ID will be received automatically after account creation"
#: templates/admin.php:197
msgid "Powering all your"
msgstr "Powering all your"
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr "Privacy and Data Security needs"
#: templates/admin.php:199
msgid ""
"Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy "
"compliance tools,"
msgstr ""
"Gain access to an extensive range of GDPR, PECR, CCPA and ePrivacy "
"compliance tools,"
#: templates/admin.php:200
msgid "all"
msgstr "all"
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
#: templates/admin.php:206
msgid "Policies Pack"
msgstr "Policies Pack"
#: templates/admin.php:207
msgid "Templates Pack"
msgstr "Templates Pack"
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr "Templates Pack"
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr "Cookie Consent Management"
#: templates/admin.php:212
msgid "DPIA"
msgstr "DPIA"
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr "GDPR Audit"
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr "Cyber Secure"
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr "Subject Request Management"
#: templates/admin.php:217
msgid "START FREE"
msgstr "START FREE"
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
"Data Privacy &amp;\n"
" Compliance. Solved"
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help "
"companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
"Trust worlds leading privacy and consent management platform to help "
"companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr "START PREMIUM TODAY"
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr "Seers Premium Plan"
#: templates/admin.php:232
msgid "Branding"
msgstr "Branding"
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr "Multi Lingual"
#: templates/admin.php:234
msgid "Consent Log"
msgstr "Consent Log"
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr "Cookie Policy"
#: templates/admin.php:236
msgid "Prior Consent"
msgstr "Prior Consent"
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr "6+ Design Layouts"
#: templates/admin.php:238
msgid "Customer Support"
msgstr "Customer Support"
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr "Banner Customisation"
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr "Cookie Declaration Table"
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
"START PREMIUM\n"
" TODAY"
#: templates/admin.php:255
msgid "Banner Settings"
msgstr "Banner Settings"
#: templates/admin.php:260
msgid "Banner"
msgstr "Banner"
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr "Enable/disable Cookie banner"
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr "Cookie Expiry"
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr "Set your consent cookie to expire in days."
#: templates/admin.php:291
msgid "Language"
msgstr "Language"
#: templates/admin.php:291
msgid "Choose a language for the banner Settings > General."
msgstr "Choose a language for the banner Settings > General."
#: templates/admin.php:475
msgid "Show Badge"
msgstr "Show Badge"
#: templates/admin.php:475
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr "Show a badge to enable the cookie banner to appear post consent."
#: templates/admin.php:498
msgid "Visual Settings"
msgstr "Visual Settings"
#: templates/admin.php:503
msgid "Banner Text"
msgstr "Banner Text"
#: templates/admin.php:503
msgid "Text to appear on the banner:"
msgstr "Text to appear on the banner:"
#: templates/admin.php:506 templates/admin.php:524
msgid "Colour"
msgstr "Colour"
#: templates/admin.php:506
msgid "The text colour to appear on the banner:"
msgstr "The text colour to appear on the banner:"
#: templates/admin.php:521
msgid "Banner Background"
msgstr "Banner Background"
#: templates/admin.php:521
msgid "You can change the background colour of the banner:"
msgstr "You can change the background colour of the banner:"
#: templates/admin.php:524
msgid "The background colour of the banner:"
msgstr "The background colour of the banner:"
#: templates/admin.php:538
msgid "Accept Button"
msgstr "Accept Button"
#: templates/admin.php:538
msgid ""
"You can change text colour, button colour and text of the 'Accept All' button"
msgstr ""
"You can change text colour, button colour and text of the 'Accept All' button"
#: templates/admin.php:541 templates/admin.php:572 templates/admin.php:603
msgid "Text Colour"
msgstr "Text Colour"
#: templates/admin.php:541
msgid "The text colour to appear on the 'Accept All' button:"
msgstr "The text colour to appear on the 'Accept All' button:"
#: templates/admin.php:551 templates/admin.php:582 templates/admin.php:613
msgid "Button Colour"
msgstr "Button Colour"
#: templates/admin.php:551
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr "The 'Accept All' button colour to appear on the banner:"
#: templates/admin.php:569
msgid "Reject Button"
msgstr "Reject Button"
#: templates/admin.php:569
msgid ""
"You can change text colour, button colour and text of the 'Reject All' button"
msgstr ""
"You can change text colour, button colour and text of the 'Reject All' button"
#: templates/admin.php:572
msgid "The text colour to appear on the 'Reject All' button:"
msgstr "The text colour to appear on the 'Reject All' button:"
#: templates/admin.php:582
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr "The 'Reject All' button colour to appear on the banner:"
#: templates/admin.php:600
msgid "Setting Button"
msgstr "Setting Button"
#: templates/admin.php:600
msgid "You can change text colour and text of the 'Setting' button"
msgstr "You can change text colour and text of the 'Setting' button"
#: templates/admin.php:603
msgid "The text colour to appear on the 'Setting' button:"
msgstr "The text colour to appear on the 'Setting' button:"
#: templates/admin.php:613
msgid "The 'Setting' button colour to appear on the banner:"
msgstr "The 'Setting' button colour to appear on the banner:"
#: templates/admin.php:624
msgid "Setting"
msgstr "Setting"
#: templates/admin.php:632
msgid "Fonts"
msgstr "Fonts"
#: templates/admin.php:632
msgid "You can select a font for the text of the banner:"
msgstr "You can select a font for the text of the banner:"
#: templates/admin.php:684
msgid "Select Button"
msgstr "Select Button"
#: templates/admin.php:684
msgid "You can select the shape of the buttons that appear on the banner."
msgstr "You can select the shape of the buttons that appear on the banner."
#: templates/admin.php:688
msgid "Default"
msgstr "Default"
#: templates/admin.php:692 templates/admin.php:702
msgid "Flat"
msgstr "Flat"
#: templates/admin.php:695 templates/admin.php:705
msgid "Rounded"
msgstr "Rounded"
#: templates/admin.php:698 templates/admin.php:708
msgid "Stroke"
msgstr "Stroke"
#: templates/admin.php:726
msgid "PREVIEW"
msgstr "PREVIEW"
#: templates/admin.php:727
msgid "SAVE"
msgstr "SAVE"
#: templates/admin.php:746
msgid "Please create cookies policy page and enter URL below."
msgstr "Please create cookies policy page and enter URL below."
#: templates/admin.php:750
msgid "Enable Policy:"
msgstr "Enable Policy:"
#: templates/admin.php:767
msgid "Cookie Policy and declaration URL:"
msgstr "Cookie Policy and declaration URL:"
#: templates/admin.php:770
msgid "Policy URL"
msgstr "Policy URL"
#: templates/admin.php:777
msgid "Save"
msgstr "Save"
#: templates/admin.php:831
msgid "Premium Plan"
msgstr "Premium Plan"
#: templates/admin.php:834 templates/admin.php:1023 templates/admin.php:1032
#: templates/admin.php:1040
msgid "Only the users with a paid account can avail this feature."
msgstr "Only the users with a paid account can avail this feature."
#: templates/admin.php:839
msgid "Ok"
msgstr "Ok"
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr "seers logo"
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr "About Cookies"
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr "Read Cookie Policy"
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr "Necessary"
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr "Always Active"
#: templates/frontend-popup.php:1774
msgid ""
"Necessary cookies help make a website usable by enabling basic functions "
"like page navigation and access to secure areas of the website. The website "
"cannot function properly without these cookies."
msgstr ""
"Necessary cookies help make a website usable by enabling basic functions "
"like page navigation and access to secure areas of the website. The website "
"cannot function properly without these cookies."
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784
#: templates/frontend-popup.php:1794 templates/frontend-popup.php:1804
#: templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr "Cookies Detail"
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr "Preferences"
#: templates/frontend-popup.php:1784
msgid ""
"Preference cookies enable a website to remember information that changes the "
"way the website behaves or looks, like your preferred language or the region "
"that you are in."
msgstr ""
"Preference cookies enable a website to remember information that changes the "
"way the website behaves or looks, like your preferred language or the region "
"that you are in."
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr "Statistics"
#: templates/frontend-popup.php:1794
msgid ""
"Statistic cookies help website owners to understand how visitors interact "
"with websites by collecting and reporting information anonymously."
msgstr ""
"Statistic cookies help website owners to understand how visitors interact "
"with websites by collecting and reporting information anonymously."
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr "Marketing"
#: templates/frontend-popup.php:1804
msgid ""
"Marketing cookies are used to track visitors across websites. The intention "
"is to display ads that are relevant and engaging for the individual user and "
"thereby more valuable for publishers and third-party advertisers."
msgstr ""
"Marketing cookies are used to track visitors across websites. The intention "
"is to display ads that are relevant and engaging for the individual user and "
"thereby more valuable for publishers and third-party advertisers."
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr "Unclassified"
#: templates/frontend-popup.php:1812
msgid ""
"Unclassified cookies are cookies that we are in the process of classifying, "
"together with the providers of individual cookies."
msgstr ""
"Unclassified cookies are cookies that we are in the process of classifying, "
"together with the providers of individual cookies."
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr "Save my choices"
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr "powered by"
#~ msgid "To get your Cookie ID click on Activate"
#~ msgstr "To get your Cookie ID click on Activate"
#~ msgid "Activate"
#~ msgstr "Activate"

View File

@ -0,0 +1,655 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-25 17:21+0500\n"
"PO-Revision-Date: 2022-03-30 04:50-0700\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: es_AR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: seers-cookie-consent-banner-privacy-policy.pot\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:382
msgid "Quick Feedback"
msgstr "Retroalimentación rápida"
#: inc/seers-cookie-consent-plugin-deactivate.php:383
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr "Si tiene un momento, háganos saber por qué está desactivando:"
#: inc/seers-cookie-consent-plugin-deactivate.php:386 inc/seers-cookie-consent-plugin-deactivate.php:387
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr "El banner no está en el idioma requerido"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "The banner picks up your website language automatically. You can always sign-in on your Seers account"
msgstr "El banner recoge el idioma de su sitio web automáticamente. Siempre puedes iniciar sesión en tu cuenta SEERS"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "and choose the language you like. See the video"
msgstr "y elige el idioma que te guste. Mira el video"
#: inc/seers-cookie-consent-plugin-deactivate.php:391 inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "here"
msgstr "aquí"
#: inc/seers-cookie-consent-plugin-deactivate.php:395 inc/seers-cookie-consent-plugin-deactivate.php:396
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr "Banner no apareció"
#: inc/seers-cookie-consent-plugin-deactivate.php:399 inc/seers-cookie-consent-plugin-deactivate.php:420
msgid "Most of the times the compatibility issue can be fixed very quickly. Please contact"
msgstr "La mayoría de las veces, el problema de compatibilidad se puede fijar muy rápidamente. Por favor contactar"
#: inc/seers-cookie-consent-plugin-deactivate.php:403 inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr "Las cookies no se muestran en la configuración"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid ""
"We are scanning your website and it can take up to 12 hours for Cookies to appear. In a very few cases scanner miss a "
"cookie. This"
msgstr ""
"Estamos escaneando su sitio web y puede demorar hasta 12 horas para que aparezcan cookies. En muy pocos casos, el "
"escáner se pierde una cookie. Esta"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "video"
msgstr "video"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "explains how to add cookies manually."
msgstr "explica cómo agregar cookies manualmente."
#: inc/seers-cookie-consent-plugin-deactivate.php:410 inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr "El banner no coincide con el tema del sitio web"
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "You can fully customize the banner. Please see the video"
msgstr "Puedes personalizar completamente el banner. Por favor vea el video"
#: inc/seers-cookie-consent-plugin-deactivate.php:416 inc/seers-cookie-consent-plugin-deactivate.php:417
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr "El plugin se rompió mi sitio"
#: inc/seers-cookie-consent-plugin-deactivate.php:424 inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr "He encontrado un mejor complemento"
#: inc/seers-cookie-consent-plugin-deactivate.php:427
msgid "Plugin name"
msgstr "Nombre del plugin"
#: inc/seers-cookie-consent-plugin-deactivate.php:430
msgid "The plugin is great, but i need specific feature that you do not support."
msgstr "El complemento es excelente, pero necesito una característica específica que no admite."
#: inc/seers-cookie-consent-plugin-deactivate.php:431 inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid "The plugin is great, but i need specific feature that you don't support."
msgstr "El complemento es genial, pero necesito una característica específica que no soporta."
#: inc/seers-cookie-consent-plugin-deactivate.php:434
msgid "Banner customisation."
msgstr "Personalización de banners."
#: inc/seers-cookie-consent-plugin-deactivate.php:438 inc/seers-cookie-consent-plugin-deactivate.php:439
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr "Otro"
#: inc/seers-cookie-consent-plugin-deactivate.php:442
msgid "Kindly tell us the reason so we can improve."
msgstr "Por favor, dinos la razón para que podamos mejorar."
#: inc/seers-cookie-consent-plugin-deactivate.php:445
msgid "Submit & Deactivate"
msgstr "Enviar y desactivar"
#: inc/seers-cookie-consent-plugin-deactivate.php:446
msgid "Cancel"
msgstr "Cancelar"
#: inc/seers-cookie-consent-plugin-deactivate.php:451
msgid "Skip & Deactivate"
msgstr "Saltar y desactivar"
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr "Descartar este aviso."
#: seers-cookie-consent-banner-privacy-policy.php:135 templates/admin.php:97
msgid "Settings"
msgstr "Ajustes"
#: seers-cookie-consent-banner-privacy-policy.php:141
msgid "Upgrade Premium"
msgstr "Actualización premium"
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:514 templates/frontend-popup.php:1738
#: templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr "Política de cookies agregada con éxito"
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:558 templates/admin.php:559
#: templates/admin.php:561 templates/frontend-popup.php:1740 templates/frontend-popup.php:1765
msgid "Allow All"
msgstr "Permitir a todos"
#: seers-cookie-consent-banner-privacy-policy.php:294 templates/admin.php:589 templates/admin.php:590
#: templates/admin.php:592 templates/frontend-popup.php:1740 templates/frontend-popup.php:1766
msgid "Disable All"
msgstr "Desactivar todo"
#: seers-cookie-consent-banner-privacy-policy.php:295 templates/admin.php:621 templates/frontend-popup.php:1740
msgid "Preference"
msgstr "Centro de configuración"
#: seers-cookie-consent-banner-privacy-policy.php:418 seers-cookie-consent-banner-privacy-policy.php:446
#: seers-cookie-consent-banner-privacy-policy.php:452
msgid "Cookies policy added successfully."
msgstr "Política de cookies agregada con éxito."
#: seers-cookie-consent-banner-privacy-policy.php:421
msgid "Some thing went wrong. Please check url and try again"
msgstr "Algo salió mal. Por favor, compruebe la URL y vuelva a intentarlo"
#: seers-cookie-consent-banner-privacy-policy.php:675
msgid "Some thing went wrong."
msgstr "Algo salió mal."
#: seers-cookie-consent-banner-privacy-policy.php:819
msgid "Settings has been updated successfully"
msgstr "Los ajustes se han actualizado correctamente"
#: templates/admin.php:92 templates/admin.php:841
msgid "Account Setup"
msgstr "Configuracion de cuenta"
#: templates/admin.php:100
msgid "Policy"
msgstr "Política"
#: templates/admin.php:104
msgid "User Guide"
msgstr "Guía del usuario"
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr "Se activa su banner de consentimiento de cookie de Seers."
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr "Su banner de consentimiento de cookie seers no está activado porque"
#: templates/admin.php:134
msgid "Email"
msgstr "Correo electrónico"
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr "Estoy de acuerdo con Seers"
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr "Términos y Condiciones"
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr "y"
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr "Política de privacidad"
#: templates/admin.php:154 templates/admin.php:172
msgid "I agree Seers to use my email and url to create an account and power the cookie banner."
msgstr "Acepto que Seers utilice mi correo electrónico y url para crear una cuenta y alimentar el banner de cookies."
#: templates/admin.php:178
msgid "Create Account"
msgstr "Crear una cuenta"
#: templates/admin.php:181
msgid "Cookie ID"
msgstr "Cookie ID"
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr "Seers Cookie ID se recibirá automáticamente después de la creación de la cuenta"
#: templates/admin.php:197
msgid "Powering all your"
msgstr "Alimentando todos sus"
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr "Privacidad y; Necesidades de seguridad de datos"
#: templates/admin.php:199
msgid "Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy compliance tools,"
msgstr "Obtener acceso a una amplia gama de GDPR, PECR, CCPA y; Herramientas de cumplimiento de la ePrivacía,"
#: templates/admin.php:200
msgid "all"
msgstr "todos"
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
"diseñado para eliminar la molestia de cumplir con los nuevos datos.\n"
"regulaciones de protección."
#: templates/admin.php:206
msgid "Policies Pack"
msgstr "Paquete de políticas"
#: templates/admin.php:207
msgid "Templates Pack"
msgstr "Paquete de plantillas"
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr "El personal del GDPR ETRAING"
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr "Galería de consentimiento de cookies"
#: templates/admin.php:212
msgid "DPIA"
msgstr "Dpia"
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr "Auditoría de gdpr"
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr "Ciberseguridad"
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr "Gestión de solicitudes de asignatura"
#: templates/admin.php:217
msgid "START FREE"
msgstr "Empezar gratis"
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
"Privacidad de datos y; \n"
" Cumplimiento. Resuelto"
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
"Trust Worlds Liderar la plataforma de privacidad y consentimiento de consentimiento para ayudar a las empresas a "
"cumplir\n"
" con "
"GDPR, PECR, CCPA y EPRIVACY"
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr "Empezar a la prima hoy"
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr "Plan premium SEERS"
#: templates/admin.php:232
msgid "Branding"
msgstr "Marca"
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr "Multi lingual"
#: templates/admin.php:234
msgid "Consent Log"
msgstr "Registro de consentimiento"
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr "Política de cookies"
#: templates/admin.php:236
msgid "Prior Consent"
msgstr "Consentimiento previo"
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr "6+ diseños de diseño"
#: templates/admin.php:238
msgid "Customer Support"
msgstr "Atención al cliente"
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr "Personalización de banners"
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr "Tabla de declaración de cookies"
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
"\"Empezar la prima\n"
" HOY DIA\""
#: templates/admin.php:255
msgid "Banner Settings"
msgstr "Configuraciones de banner"
#: templates/admin.php:260
msgid "Banner"
msgstr "Bandera"
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr "Habilitar / deshabilitar banner de cookies"
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr "Caducidad de cookies"
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr "Establezca su cookie de consentimiento que caduque en días."
#: templates/admin.php:291
msgid "Language"
msgstr "Idioma"
#: templates/admin.php:291
msgid "Choose a language for the banner Settings > General."
msgstr "Elija un idioma para el banner Ajustes > Generales."
#: templates/admin.php:475
msgid "Show Badge"
msgstr "Mostrar insignia"
#: templates/admin.php:475
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr "Muestre una placa para que la bandera de la cookie aparezca después del consentimiento."
#: templates/admin.php:498
msgid "Visual Settings"
msgstr "Ajustes visuales"
#: templates/admin.php:503
msgid "Banner Text"
msgstr "Texto de banner"
#: templates/admin.php:503
msgid "Text to appear on the banner:"
msgstr "Texto para aparecer en el banner:"
#: templates/admin.php:506 templates/admin.php:524
msgid "Colour"
msgstr "Color"
#: templates/admin.php:506
msgid "The text colour to appear on the banner:"
msgstr "El color de texto para aparecer en el banner:"
#: templates/admin.php:521
msgid "Banner Background"
msgstr "Fondo de banner"
#: templates/admin.php:521
msgid "You can change the background colour of the banner:"
msgstr "Puedes cambiar el color de fondo del banner:"
#: templates/admin.php:524
msgid "The background colour of the banner:"
msgstr "El color de fondo de la bandera:"
#: templates/admin.php:538
msgid "Accept Button"
msgstr "Aceptar botón"
#: templates/admin.php:538
msgid "You can change text colour, button colour and text of the 'Accept All' button"
msgstr "Puede cambiar el color del texto, el color del botón y el texto del botón 'Aceptar todo'"
#: templates/admin.php:541 templates/admin.php:572 templates/admin.php:603
msgid "Text Colour"
msgstr "Color de texto"
#: templates/admin.php:541
msgid "The text colour to appear on the 'Accept All' button:"
msgstr "El color de texto a aparecer en el botón 'Aceptar todo':"
#: templates/admin.php:551 templates/admin.php:582 templates/admin.php:613
msgid "Button Colour"
msgstr "Color botón"
#: templates/admin.php:551
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr "El color 'acepte todo' botón para aparecer en el banner:"
#: templates/admin.php:569
msgid "Reject Button"
msgstr "Botón de rechazo"
#: templates/admin.php:569
msgid "You can change text colour, button colour and text of the 'Reject All' button"
msgstr "Puede cambiar el color de texto, el color del botón y el texto del botón 'Rechazar todos'"
#: templates/admin.php:572
msgid "The text colour to appear on the 'Reject All' button:"
msgstr "El color de texto para aparecer en el botón 'Rechazar todos':"
#: templates/admin.php:582
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr "El color del botón 'Rechazar todo' para aparecer en el banner:"
#: templates/admin.php:600
msgid "Setting Button"
msgstr "Botón de ajuste"
#: templates/admin.php:600
msgid "You can change text colour and text of the 'Setting' button"
msgstr "Puede cambiar el color de texto y el texto del botón 'Configuración'"
#: templates/admin.php:603
msgid "The text colour to appear on the 'Setting' button:"
msgstr "El color de texto a aparecer en el botón 'Configuración':"
#: templates/admin.php:613
msgid "The 'Setting' button colour to appear on the banner:"
msgstr "El color del botón 'configuración' aparece en el banner:"
#: templates/admin.php:624
msgid "Setting"
msgstr "Ajuste"
#: templates/admin.php:632
msgid "Fonts"
msgstr "Fuentes"
#: templates/admin.php:632
msgid "You can select a font for the text of the banner:"
msgstr "Puede seleccionar una fuente para el texto del banner:"
#: templates/admin.php:684
msgid "Select Button"
msgstr "Botón de selección"
#: templates/admin.php:684
msgid "You can select the shape of the buttons that appear on the banner."
msgstr "Puede seleccionar la forma de los botones que aparecen en el banner."
#: templates/admin.php:688
msgid "Default"
msgstr "Por defecto"
#: templates/admin.php:692 templates/admin.php:702
msgid "Flat"
msgstr "Plano"
#: templates/admin.php:695 templates/admin.php:705
msgid "Rounded"
msgstr "Redondeado"
#: templates/admin.php:698 templates/admin.php:708
msgid "Stroke"
msgstr "Stroke"
#: templates/admin.php:726
msgid "PREVIEW"
msgstr "Avance"
#: templates/admin.php:727
msgid "SAVE"
msgstr "SALVAR"
#: templates/admin.php:746
msgid "Please create cookies policy page and enter URL below."
msgstr "Por favor, cree la página de la Política de cookies e ingrese la URL a continuación."
#: templates/admin.php:750
msgid "Enable Policy:"
msgstr "Habilitar la política:"
#: templates/admin.php:767
msgid "Cookie Policy and declaration URL:"
msgstr "Política de cookies y URL DE DECLARACIÓN:"
#: templates/admin.php:770
msgid "Policy URL"
msgstr "URL de política"
#: templates/admin.php:777
msgid "Save"
msgstr "SALVAR"
#: templates/admin.php:831
msgid "Premium Plan"
msgstr "Plan Premium"
#: templates/admin.php:834 templates/admin.php:1023 templates/admin.php:1032 templates/admin.php:1040
msgid "Only the users with a paid account can avail this feature."
msgstr "Solo los usuarios con una cuenta pagada pueden aprovechar esta función."
#: templates/admin.php:839
msgid "Ok"
msgstr "OK"
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr "seers logo"
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr "Acerca de las cookies"
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr "Leer la política de cookies"
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr "Necesario"
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr "Siempre activo"
#: templates/frontend-popup.php:1774
msgid ""
"Necessary cookies help make a website usable by enabling basic functions like page navigation and access to secure "
"areas of the website. The website cannot function properly without these cookies."
msgstr ""
"Las cookies necesarias ayudan a realizar un sitio web utilizable al permitir las funciones básicas como la navegación "
"de la página y el acceso a áreas seguras del sitio web. El sitio web no puede funcionar correctamente sin estas "
"cookies."
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784 templates/frontend-popup.php:1794
#: templates/frontend-popup.php:1804 templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr "Detalle de las cookies"
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr "Preferencia"
#: templates/frontend-popup.php:1784
msgid ""
"Preference cookies enable a website to remember information that changes the way the website behaves or looks, like "
"your preferred language or the region that you are in."
msgstr ""
"Las cookies de preferencias permiten que un sitio web recuerde la información que cambia la forma en que se comporta o "
"mira el sitio web, como su idioma preferido o la región en la que está."
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr "La estadística"
#: templates/frontend-popup.php:1794
msgid ""
"Statistic cookies help website owners to understand how visitors interact with websites by collecting and reporting "
"information anonymously."
msgstr ""
"Las cookies estadísticas ayudan a los propietarios de sitios web a comprender cómo los visitantes interactúan con los "
"sitios web mediante la recopilación y presentación de información de forma anónima."
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr "El márketing"
#: templates/frontend-popup.php:1804
msgid ""
"Marketing cookies are used to track visitors across websites. The intention is to display ads that are relevant and "
"engaging for the individual user and thereby more valuable for publishers and third-party advertisers."
msgstr ""
"Las cookies de marketing se utilizan para rastrear visitantes en sitios web. La intención es mostrar anuncios que sean "
"relevantes y atractivos para el usuario individual y, por lo tanto, más valiosos para los editores y anunciantes "
"externos."
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr "Desclasificado"
#: templates/frontend-popup.php:1812
msgid ""
"Unclassified cookies are cookies that we are in the process of classifying, together with the providers of individual "
"cookies."
msgstr ""
"Las cookies no clasificadas son cookies que estamos en proceso de clasificar, junto con los proveedores de cookies "
"individuales."
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr "Guardar mis elecciones"
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr "proporcionada por"
#~ msgid "To get your Cookie ID click on Activate"
#~ msgstr "To get your Cookie ID click on Activate"
#~ msgid "Activate"
#~ msgstr "Activate"

View File

@ -0,0 +1,655 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-25 17:21+0500\n"
"PO-Revision-Date: 2022-03-30 04:50-0700\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: es_CL\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: seers-cookie-consent-banner-privacy-policy.pot\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:382
msgid "Quick Feedback"
msgstr "Retroalimentación rápida"
#: inc/seers-cookie-consent-plugin-deactivate.php:383
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr "Si tiene un momento, háganos saber por qué está desactivando:"
#: inc/seers-cookie-consent-plugin-deactivate.php:386 inc/seers-cookie-consent-plugin-deactivate.php:387
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr "El banner no está en el idioma requerido"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "The banner picks up your website language automatically. You can always sign-in on your Seers account"
msgstr "El banner recoge el idioma de su sitio web automáticamente. Siempre puedes iniciar sesión en tu cuenta SEERS"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "and choose the language you like. See the video"
msgstr "y elige el idioma que te guste. Mira el video"
#: inc/seers-cookie-consent-plugin-deactivate.php:391 inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "here"
msgstr "aquí"
#: inc/seers-cookie-consent-plugin-deactivate.php:395 inc/seers-cookie-consent-plugin-deactivate.php:396
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr "Banner no apareció"
#: inc/seers-cookie-consent-plugin-deactivate.php:399 inc/seers-cookie-consent-plugin-deactivate.php:420
msgid "Most of the times the compatibility issue can be fixed very quickly. Please contact"
msgstr "La mayoría de las veces, el problema de compatibilidad se puede fijar muy rápidamente. Por favor contactar"
#: inc/seers-cookie-consent-plugin-deactivate.php:403 inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr "Las cookies no se muestran en la configuración"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid ""
"We are scanning your website and it can take up to 12 hours for Cookies to appear. In a very few cases scanner miss a "
"cookie. This"
msgstr ""
"Estamos escaneando su sitio web y puede demorar hasta 12 horas para que aparezcan cookies. En muy pocos casos, el "
"escáner se pierde una cookie. Esta"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "video"
msgstr "video"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "explains how to add cookies manually."
msgstr "explica cómo agregar cookies manualmente."
#: inc/seers-cookie-consent-plugin-deactivate.php:410 inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr "El banner no coincide con el tema del sitio web"
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "You can fully customize the banner. Please see the video"
msgstr "Puedes personalizar completamente el banner. Por favor vea el video"
#: inc/seers-cookie-consent-plugin-deactivate.php:416 inc/seers-cookie-consent-plugin-deactivate.php:417
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr "El plugin se rompió mi sitio"
#: inc/seers-cookie-consent-plugin-deactivate.php:424 inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr "He encontrado un mejor complemento"
#: inc/seers-cookie-consent-plugin-deactivate.php:427
msgid "Plugin name"
msgstr "Nombre del plugin"
#: inc/seers-cookie-consent-plugin-deactivate.php:430
msgid "The plugin is great, but i need specific feature that you do not support."
msgstr "El complemento es excelente, pero necesito una característica específica que no admite."
#: inc/seers-cookie-consent-plugin-deactivate.php:431 inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid "The plugin is great, but i need specific feature that you don't support."
msgstr "El complemento es genial, pero necesito una característica específica que no soporta."
#: inc/seers-cookie-consent-plugin-deactivate.php:434
msgid "Banner customisation."
msgstr "Personalización de banners."
#: inc/seers-cookie-consent-plugin-deactivate.php:438 inc/seers-cookie-consent-plugin-deactivate.php:439
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr "Otro"
#: inc/seers-cookie-consent-plugin-deactivate.php:442
msgid "Kindly tell us the reason so we can improve."
msgstr "Por favor, dinos la razón para que podamos mejorar."
#: inc/seers-cookie-consent-plugin-deactivate.php:445
msgid "Submit & Deactivate"
msgstr "Enviar y desactivar"
#: inc/seers-cookie-consent-plugin-deactivate.php:446
msgid "Cancel"
msgstr "Cancelar"
#: inc/seers-cookie-consent-plugin-deactivate.php:451
msgid "Skip & Deactivate"
msgstr "Saltar y desactivar"
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr "Descartar este aviso."
#: seers-cookie-consent-banner-privacy-policy.php:135 templates/admin.php:97
msgid "Settings"
msgstr "Ajustes"
#: seers-cookie-consent-banner-privacy-policy.php:141
msgid "Upgrade Premium"
msgstr "Actualización premium"
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:514 templates/frontend-popup.php:1738
#: templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr "Política de cookies agregada con éxito"
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:558 templates/admin.php:559
#: templates/admin.php:561 templates/frontend-popup.php:1740 templates/frontend-popup.php:1765
msgid "Allow All"
msgstr "Permitir a todos"
#: seers-cookie-consent-banner-privacy-policy.php:294 templates/admin.php:589 templates/admin.php:590
#: templates/admin.php:592 templates/frontend-popup.php:1740 templates/frontend-popup.php:1766
msgid "Disable All"
msgstr "Desactivar todo"
#: seers-cookie-consent-banner-privacy-policy.php:295 templates/admin.php:621 templates/frontend-popup.php:1740
msgid "Preference"
msgstr "Centro de configuración"
#: seers-cookie-consent-banner-privacy-policy.php:418 seers-cookie-consent-banner-privacy-policy.php:446
#: seers-cookie-consent-banner-privacy-policy.php:452
msgid "Cookies policy added successfully."
msgstr "Política de cookies agregada con éxito."
#: seers-cookie-consent-banner-privacy-policy.php:421
msgid "Some thing went wrong. Please check url and try again"
msgstr "Algo salió mal. Por favor, compruebe la URL y vuelva a intentarlo"
#: seers-cookie-consent-banner-privacy-policy.php:675
msgid "Some thing went wrong."
msgstr "Algo salió mal."
#: seers-cookie-consent-banner-privacy-policy.php:819
msgid "Settings has been updated successfully"
msgstr "Los ajustes se han actualizado correctamente"
#: templates/admin.php:92 templates/admin.php:841
msgid "Account Setup"
msgstr "Configuracion de cuenta"
#: templates/admin.php:100
msgid "Policy"
msgstr "Política"
#: templates/admin.php:104
msgid "User Guide"
msgstr "Guía del usuario"
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr "Se activa su banner de consentimiento de cookie de Seers."
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr "Su banner de consentimiento de cookie seers no está activado porque"
#: templates/admin.php:134
msgid "Email"
msgstr "Correo electrónico"
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr "Estoy de acuerdo con Seers"
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr "Términos y Condiciones"
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr "y"
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr "Política de privacidad"
#: templates/admin.php:154 templates/admin.php:172
msgid "I agree Seers to use my email and url to create an account and power the cookie banner."
msgstr "Acepto que Seers utilice mi correo electrónico y url para crear una cuenta y alimentar el banner de cookies."
#: templates/admin.php:178
msgid "Create Account"
msgstr "Crear una cuenta"
#: templates/admin.php:181
msgid "Cookie ID"
msgstr "Cookie ID"
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr "Seers Cookie ID se recibirá automáticamente después de la creación de la cuenta"
#: templates/admin.php:197
msgid "Powering all your"
msgstr "Alimentando todos sus"
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr "Privacidad y; Necesidades de seguridad de datos"
#: templates/admin.php:199
msgid "Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy compliance tools,"
msgstr "Obtener acceso a una amplia gama de GDPR, PECR, CCPA y; Herramientas de cumplimiento de la ePrivacía,"
#: templates/admin.php:200
msgid "all"
msgstr "todos"
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
"diseñado para eliminar la molestia de cumplir con los nuevos datos.\n"
"regulaciones de protección."
#: templates/admin.php:206
msgid "Policies Pack"
msgstr "Paquete de políticas"
#: templates/admin.php:207
msgid "Templates Pack"
msgstr "Paquete de plantillas"
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr "El personal del GDPR ETRAING"
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr "Galería de consentimiento de cookies"
#: templates/admin.php:212
msgid "DPIA"
msgstr "Dpia"
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr "Auditoría de gdpr"
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr "Ciberseguridad"
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr "Gestión de solicitudes de asignatura"
#: templates/admin.php:217
msgid "START FREE"
msgstr "Empezar gratis"
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
"Privacidad de datos y; \n"
" Cumplimiento. Resuelto"
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
"Trust Worlds Liderar la plataforma de privacidad y consentimiento de consentimiento para ayudar a las empresas a "
"cumplir\n"
" con "
"GDPR, PECR, CCPA y EPRIVACY"
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr "Empezar a la prima hoy"
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr "Plan premium SEERS"
#: templates/admin.php:232
msgid "Branding"
msgstr "Marca"
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr "Multi lingual"
#: templates/admin.php:234
msgid "Consent Log"
msgstr "Registro de consentimiento"
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr "Política de cookies"
#: templates/admin.php:236
msgid "Prior Consent"
msgstr "Consentimiento previo"
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr "6+ diseños de diseño"
#: templates/admin.php:238
msgid "Customer Support"
msgstr "Atención al cliente"
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr "Personalización de banners"
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr "Tabla de declaración de cookies"
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
"\"Empezar la prima\n"
" HOY DIA\""
#: templates/admin.php:255
msgid "Banner Settings"
msgstr "Configuraciones de banner"
#: templates/admin.php:260
msgid "Banner"
msgstr "Bandera"
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr "Habilitar / deshabilitar banner de cookies"
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr "Caducidad de cookies"
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr "Establezca su cookie de consentimiento que caduque en días."
#: templates/admin.php:291
msgid "Language"
msgstr "Idioma"
#: templates/admin.php:291
msgid "Choose a language for the banner Settings > General."
msgstr "Elija un idioma para el banner Opciones > General."
#: templates/admin.php:475
msgid "Show Badge"
msgstr "Mostrar insignia"
#: templates/admin.php:475
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr "Muestre una placa para que la bandera de la cookie aparezca después del consentimiento."
#: templates/admin.php:498
msgid "Visual Settings"
msgstr "Ajustes visuales"
#: templates/admin.php:503
msgid "Banner Text"
msgstr "Texto de banner"
#: templates/admin.php:503
msgid "Text to appear on the banner:"
msgstr "Texto para aparecer en el banner:"
#: templates/admin.php:506 templates/admin.php:524
msgid "Colour"
msgstr "Color"
#: templates/admin.php:506
msgid "The text colour to appear on the banner:"
msgstr "El color de texto para aparecer en el banner:"
#: templates/admin.php:521
msgid "Banner Background"
msgstr "Fondo de banner"
#: templates/admin.php:521
msgid "You can change the background colour of the banner:"
msgstr "Puedes cambiar el color de fondo del banner:"
#: templates/admin.php:524
msgid "The background colour of the banner:"
msgstr "El color de fondo de la bandera:"
#: templates/admin.php:538
msgid "Accept Button"
msgstr "Aceptar botón"
#: templates/admin.php:538
msgid "You can change text colour, button colour and text of the 'Accept All' button"
msgstr "Puede cambiar el color del texto, el color del botón y el texto del botón 'Aceptar todo'"
#: templates/admin.php:541 templates/admin.php:572 templates/admin.php:603
msgid "Text Colour"
msgstr "Color de texto"
#: templates/admin.php:541
msgid "The text colour to appear on the 'Accept All' button:"
msgstr "El color de texto a aparecer en el botón 'Aceptar todo':"
#: templates/admin.php:551 templates/admin.php:582 templates/admin.php:613
msgid "Button Colour"
msgstr "Color botón"
#: templates/admin.php:551
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr "El color 'acepte todo' botón para aparecer en el banner:"
#: templates/admin.php:569
msgid "Reject Button"
msgstr "Botón de rechazo"
#: templates/admin.php:569
msgid "You can change text colour, button colour and text of the 'Reject All' button"
msgstr "Puede cambiar el color de texto, el color del botón y el texto del botón 'Rechazar todos'"
#: templates/admin.php:572
msgid "The text colour to appear on the 'Reject All' button:"
msgstr "El color de texto para aparecer en el botón 'Rechazar todos':"
#: templates/admin.php:582
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr "El color del botón 'Rechazar todo' para aparecer en el banner:"
#: templates/admin.php:600
msgid "Setting Button"
msgstr "Botón de ajuste"
#: templates/admin.php:600
msgid "You can change text colour and text of the 'Setting' button"
msgstr "Puede cambiar el color de texto y el texto del botón 'Configuración'"
#: templates/admin.php:603
msgid "The text colour to appear on the 'Setting' button:"
msgstr "El color de texto a aparecer en el botón 'Configuración':"
#: templates/admin.php:613
msgid "The 'Setting' button colour to appear on the banner:"
msgstr "El color del botón 'configuración' aparece en el banner:"
#: templates/admin.php:624
msgid "Setting"
msgstr "Ajuste"
#: templates/admin.php:632
msgid "Fonts"
msgstr "Fuentes"
#: templates/admin.php:632
msgid "You can select a font for the text of the banner:"
msgstr "Puede seleccionar una fuente para el texto del banner:"
#: templates/admin.php:684
msgid "Select Button"
msgstr "Botón de selección"
#: templates/admin.php:684
msgid "You can select the shape of the buttons that appear on the banner."
msgstr "Puede seleccionar la forma de los botones que aparecen en el banner."
#: templates/admin.php:688
msgid "Default"
msgstr "Por defecto"
#: templates/admin.php:692 templates/admin.php:702
msgid "Flat"
msgstr "Plano"
#: templates/admin.php:695 templates/admin.php:705
msgid "Rounded"
msgstr "Redondeado"
#: templates/admin.php:698 templates/admin.php:708
msgid "Stroke"
msgstr "Stroke"
#: templates/admin.php:726
msgid "PREVIEW"
msgstr "Avance"
#: templates/admin.php:727
msgid "SAVE"
msgstr "SALVAR"
#: templates/admin.php:746
msgid "Please create cookies policy page and enter URL below."
msgstr "Por favor, cree la página de la Política de cookies e ingrese la URL a continuación."
#: templates/admin.php:750
msgid "Enable Policy:"
msgstr "Habilitar la política:"
#: templates/admin.php:767
msgid "Cookie Policy and declaration URL:"
msgstr "Política de cookies y URL DE DECLARACIÓN:"
#: templates/admin.php:770
msgid "Policy URL"
msgstr "URL de política"
#: templates/admin.php:777
msgid "Save"
msgstr "SALVAR"
#: templates/admin.php:831
msgid "Premium Plan"
msgstr "Plan Premium"
#: templates/admin.php:834 templates/admin.php:1023 templates/admin.php:1032 templates/admin.php:1040
msgid "Only the users with a paid account can avail this feature."
msgstr "Solo los usuarios con una cuenta pagada pueden aprovechar esta función."
#: templates/admin.php:839
msgid "Ok"
msgstr "OK"
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr "seers logo"
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr "Acerca de las cookies"
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr "Leer la política de cookies"
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr "Necesario"
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr "Siempre activo"
#: templates/frontend-popup.php:1774
msgid ""
"Necessary cookies help make a website usable by enabling basic functions like page navigation and access to secure "
"areas of the website. The website cannot function properly without these cookies."
msgstr ""
"Las cookies necesarias ayudan a realizar un sitio web utilizable al permitir las funciones básicas como la navegación "
"de la página y el acceso a áreas seguras del sitio web. El sitio web no puede funcionar correctamente sin estas "
"cookies."
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784 templates/frontend-popup.php:1794
#: templates/frontend-popup.php:1804 templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr "Detalle de las cookies"
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr "Preferencia"
#: templates/frontend-popup.php:1784
msgid ""
"Preference cookies enable a website to remember information that changes the way the website behaves or looks, like "
"your preferred language or the region that you are in."
msgstr ""
"Las cookies de preferencias permiten que un sitio web recuerde la información que cambia la forma en que se comporta o "
"mira el sitio web, como su idioma preferido o la región en la que está."
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr "La estadística"
#: templates/frontend-popup.php:1794
msgid ""
"Statistic cookies help website owners to understand how visitors interact with websites by collecting and reporting "
"information anonymously."
msgstr ""
"Las cookies estadísticas ayudan a los propietarios de sitios web a comprender cómo los visitantes interactúan con los "
"sitios web mediante la recopilación y presentación de información de forma anónima."
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr "El márketing"
#: templates/frontend-popup.php:1804
msgid ""
"Marketing cookies are used to track visitors across websites. The intention is to display ads that are relevant and "
"engaging for the individual user and thereby more valuable for publishers and third-party advertisers."
msgstr ""
"Las cookies de marketing se utilizan para rastrear visitantes en sitios web. La intención es mostrar anuncios que sean "
"relevantes y atractivos para el usuario individual y, por lo tanto, más valiosos para los editores y anunciantes "
"externos."
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr "Desclasificado"
#: templates/frontend-popup.php:1812
msgid ""
"Unclassified cookies are cookies that we are in the process of classifying, together with the providers of individual "
"cookies."
msgstr ""
"Las cookies no clasificadas son cookies que estamos en proceso de clasificar, junto con los proveedores de cookies "
"individuales."
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr "Guardar mis elecciones"
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr "proporcionada por"
#~ msgid "To get your Cookie ID click on Activate"
#~ msgstr "To get your Cookie ID click on Activate"
#~ msgid "Activate"
#~ msgstr "Activate"

View File

@ -0,0 +1,655 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-25 17:21+0500\n"
"PO-Revision-Date: 2022-03-30 04:51-0700\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: es_CO\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: seers-cookie-consent-banner-privacy-policy.pot\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:382
msgid "Quick Feedback"
msgstr "Retroalimentación rápida"
#: inc/seers-cookie-consent-plugin-deactivate.php:383
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr "Si tiene un momento, háganos saber por qué está desactivando:"
#: inc/seers-cookie-consent-plugin-deactivate.php:386 inc/seers-cookie-consent-plugin-deactivate.php:387
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr "El banner no está en el idioma requerido"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "The banner picks up your website language automatically. You can always sign-in on your Seers account"
msgstr "El banner recoge el idioma de su sitio web automáticamente. Siempre puedes iniciar sesión en tu cuenta SEERS"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "and choose the language you like. See the video"
msgstr "y elige el idioma que te guste. Mira el video"
#: inc/seers-cookie-consent-plugin-deactivate.php:391 inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "here"
msgstr "aquí"
#: inc/seers-cookie-consent-plugin-deactivate.php:395 inc/seers-cookie-consent-plugin-deactivate.php:396
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr "Banner no apareció"
#: inc/seers-cookie-consent-plugin-deactivate.php:399 inc/seers-cookie-consent-plugin-deactivate.php:420
msgid "Most of the times the compatibility issue can be fixed very quickly. Please contact"
msgstr "La mayoría de las veces, el problema de compatibilidad se puede fijar muy rápidamente. Por favor contactar"
#: inc/seers-cookie-consent-plugin-deactivate.php:403 inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr "Las cookies no se muestran en la configuración"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid ""
"We are scanning your website and it can take up to 12 hours for Cookies to appear. In a very few cases scanner miss a "
"cookie. This"
msgstr ""
"Estamos escaneando su sitio web y puede demorar hasta 12 horas para que aparezcan cookies. En muy pocos casos, el "
"escáner se pierde una cookie. Esta"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "video"
msgstr "video"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "explains how to add cookies manually."
msgstr "explica cómo agregar cookies manualmente."
#: inc/seers-cookie-consent-plugin-deactivate.php:410 inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr "El banner no coincide con el tema del sitio web"
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "You can fully customize the banner. Please see the video"
msgstr "Puedes personalizar completamente el banner. Por favor vea el video"
#: inc/seers-cookie-consent-plugin-deactivate.php:416 inc/seers-cookie-consent-plugin-deactivate.php:417
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr "El plugin se rompió mi sitio"
#: inc/seers-cookie-consent-plugin-deactivate.php:424 inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr "He encontrado un mejor complemento"
#: inc/seers-cookie-consent-plugin-deactivate.php:427
msgid "Plugin name"
msgstr "Nombre del plugin"
#: inc/seers-cookie-consent-plugin-deactivate.php:430
msgid "The plugin is great, but i need specific feature that you do not support."
msgstr "El complemento es excelente, pero necesito una característica específica que no admite."
#: inc/seers-cookie-consent-plugin-deactivate.php:431 inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid "The plugin is great, but i need specific feature that you don't support."
msgstr "El complemento es genial, pero necesito una característica específica que no soporta."
#: inc/seers-cookie-consent-plugin-deactivate.php:434
msgid "Banner customisation."
msgstr "Personalización de banners."
#: inc/seers-cookie-consent-plugin-deactivate.php:438 inc/seers-cookie-consent-plugin-deactivate.php:439
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr "Otro"
#: inc/seers-cookie-consent-plugin-deactivate.php:442
msgid "Kindly tell us the reason so we can improve."
msgstr "Por favor, dinos la razón para que podamos mejorar."
#: inc/seers-cookie-consent-plugin-deactivate.php:445
msgid "Submit & Deactivate"
msgstr "Enviar y desactivar"
#: inc/seers-cookie-consent-plugin-deactivate.php:446
msgid "Cancel"
msgstr "Cancelar"
#: inc/seers-cookie-consent-plugin-deactivate.php:451
msgid "Skip & Deactivate"
msgstr "Saltar y desactivar"
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr "Descartar este aviso."
#: seers-cookie-consent-banner-privacy-policy.php:135 templates/admin.php:97
msgid "Settings"
msgstr "Ajustes"
#: seers-cookie-consent-banner-privacy-policy.php:141
msgid "Upgrade Premium"
msgstr "Actualización premium"
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:514 templates/frontend-popup.php:1738
#: templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr "Política de cookies agregada con éxito"
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:558 templates/admin.php:559
#: templates/admin.php:561 templates/frontend-popup.php:1740 templates/frontend-popup.php:1765
msgid "Allow All"
msgstr "Permitir a todos"
#: seers-cookie-consent-banner-privacy-policy.php:294 templates/admin.php:589 templates/admin.php:590
#: templates/admin.php:592 templates/frontend-popup.php:1740 templates/frontend-popup.php:1766
msgid "Disable All"
msgstr "Desactivar todo"
#: seers-cookie-consent-banner-privacy-policy.php:295 templates/admin.php:621 templates/frontend-popup.php:1740
msgid "Preference"
msgstr "Centro de configuración"
#: seers-cookie-consent-banner-privacy-policy.php:418 seers-cookie-consent-banner-privacy-policy.php:446
#: seers-cookie-consent-banner-privacy-policy.php:452
msgid "Cookies policy added successfully."
msgstr "Política de cookies agregada con éxito."
#: seers-cookie-consent-banner-privacy-policy.php:421
msgid "Some thing went wrong. Please check url and try again"
msgstr "Algo salió mal. Por favor, compruebe la URL y vuelva a intentarlo"
#: seers-cookie-consent-banner-privacy-policy.php:675
msgid "Some thing went wrong."
msgstr "Algo salió mal."
#: seers-cookie-consent-banner-privacy-policy.php:819
msgid "Settings has been updated successfully"
msgstr "Los ajustes se han actualizado correctamente"
#: templates/admin.php:92 templates/admin.php:841
msgid "Account Setup"
msgstr "Configuracion de cuenta"
#: templates/admin.php:100
msgid "Policy"
msgstr "Política"
#: templates/admin.php:104
msgid "User Guide"
msgstr "Guía del usuario"
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr "Se activa su banner de consentimiento de cookie de Seers."
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr "Su banner de consentimiento de cookie seers no está activado porque"
#: templates/admin.php:134
msgid "Email"
msgstr "Correo electrónico"
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr "Estoy de acuerdo con Seers"
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr "Términos y Condiciones"
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr "y"
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr "Política de privacidad"
#: templates/admin.php:154 templates/admin.php:172
msgid "I agree Seers to use my email and url to create an account and power the cookie banner."
msgstr "Acepto que Seers utilice mi correo electrónico y url para crear una cuenta y alimentar el banner de cookies."
#: templates/admin.php:178
msgid "Create Account"
msgstr "Crear una cuenta"
#: templates/admin.php:181
msgid "Cookie ID"
msgstr "Cookie ID"
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr "Seers Cookie ID se recibirá automáticamente después de la creación de la cuenta"
#: templates/admin.php:197
msgid "Powering all your"
msgstr "Alimentando todos sus"
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr "Privacidad y; Necesidades de seguridad de datos"
#: templates/admin.php:199
msgid "Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy compliance tools,"
msgstr "Obtener acceso a una amplia gama de GDPR, PECR, CCPA y; Herramientas de cumplimiento de la ePrivacía,"
#: templates/admin.php:200
msgid "all"
msgstr "todos"
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
"diseñado para eliminar la molestia de cumplir con los nuevos datos.\n"
"regulaciones de protección."
#: templates/admin.php:206
msgid "Policies Pack"
msgstr "Paquete de políticas"
#: templates/admin.php:207
msgid "Templates Pack"
msgstr "Paquete de plantillas"
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr "El personal del GDPR ETRAING"
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr "Galería de consentimiento de cookies"
#: templates/admin.php:212
msgid "DPIA"
msgstr "Dpia"
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr "Auditoría de gdpr"
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr "Ciberseguridad"
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr "Gestión de solicitudes de asignatura"
#: templates/admin.php:217
msgid "START FREE"
msgstr "Empezar gratis"
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
"Privacidad de datos y; \n"
" Cumplimiento. Resuelto"
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
"Trust Worlds Liderar la plataforma de privacidad y consentimiento de consentimiento para ayudar a las empresas a "
"cumplir\n"
" con "
"GDPR, PECR, CCPA y EPRIVACY"
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr "Empezar a la prima hoy"
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr "Plan premium SEERS"
#: templates/admin.php:232
msgid "Branding"
msgstr "Marca"
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr "Multi lingual"
#: templates/admin.php:234
msgid "Consent Log"
msgstr "Registro de consentimiento"
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr "Política de cookies"
#: templates/admin.php:236
msgid "Prior Consent"
msgstr "Consentimiento previo"
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr "6+ diseños de diseño"
#: templates/admin.php:238
msgid "Customer Support"
msgstr "Atención al cliente"
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr "Personalización de banners"
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr "Tabla de declaración de cookies"
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
"\"Empezar la prima\n"
" HOY DIA\""
#: templates/admin.php:255
msgid "Banner Settings"
msgstr "Configuraciones de banner"
#: templates/admin.php:260
msgid "Banner"
msgstr "Bandera"
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr "Habilitar / deshabilitar banner de cookies"
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr "Caducidad de cookies"
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr "Establezca su cookie de consentimiento que caduque en días."
#: templates/admin.php:291
msgid "Language"
msgstr "Idioma"
#: templates/admin.php:291
msgid "Choose a language for the banner Settings > General."
msgstr "Elija un idioma para el banner Ajustes > Generales."
#: templates/admin.php:475
msgid "Show Badge"
msgstr "Mostrar insignia"
#: templates/admin.php:475
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr "Muestre una placa para que la bandera de la cookie aparezca después del consentimiento."
#: templates/admin.php:498
msgid "Visual Settings"
msgstr "Ajustes visuales"
#: templates/admin.php:503
msgid "Banner Text"
msgstr "Texto de banner"
#: templates/admin.php:503
msgid "Text to appear on the banner:"
msgstr "Texto para aparecer en el banner:"
#: templates/admin.php:506 templates/admin.php:524
msgid "Colour"
msgstr "Color"
#: templates/admin.php:506
msgid "The text colour to appear on the banner:"
msgstr "El color de texto para aparecer en el banner:"
#: templates/admin.php:521
msgid "Banner Background"
msgstr "Fondo de banner"
#: templates/admin.php:521
msgid "You can change the background colour of the banner:"
msgstr "Puedes cambiar el color de fondo del banner:"
#: templates/admin.php:524
msgid "The background colour of the banner:"
msgstr "El color de fondo de la bandera:"
#: templates/admin.php:538
msgid "Accept Button"
msgstr "Aceptar botón"
#: templates/admin.php:538
msgid "You can change text colour, button colour and text of the 'Accept All' button"
msgstr "Puede cambiar el color del texto, el color del botón y el texto del botón 'Aceptar todo'"
#: templates/admin.php:541 templates/admin.php:572 templates/admin.php:603
msgid "Text Colour"
msgstr "Color de texto"
#: templates/admin.php:541
msgid "The text colour to appear on the 'Accept All' button:"
msgstr "El color de texto a aparecer en el botón 'Aceptar todo':"
#: templates/admin.php:551 templates/admin.php:582 templates/admin.php:613
msgid "Button Colour"
msgstr "Color botón"
#: templates/admin.php:551
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr "El color 'acepte todo' botón para aparecer en el banner:"
#: templates/admin.php:569
msgid "Reject Button"
msgstr "Botón de rechazo"
#: templates/admin.php:569
msgid "You can change text colour, button colour and text of the 'Reject All' button"
msgstr "Puede cambiar el color de texto, el color del botón y el texto del botón 'Rechazar todos'"
#: templates/admin.php:572
msgid "The text colour to appear on the 'Reject All' button:"
msgstr "El color de texto para aparecer en el botón 'Rechazar todos':"
#: templates/admin.php:582
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr "El color del botón 'Rechazar todo' para aparecer en el banner:"
#: templates/admin.php:600
msgid "Setting Button"
msgstr "Botón de ajuste"
#: templates/admin.php:600
msgid "You can change text colour and text of the 'Setting' button"
msgstr "Puede cambiar el color de texto y el texto del botón 'Configuración'"
#: templates/admin.php:603
msgid "The text colour to appear on the 'Setting' button:"
msgstr "El color de texto a aparecer en el botón 'Configuración':"
#: templates/admin.php:613
msgid "The 'Setting' button colour to appear on the banner:"
msgstr "El color del botón 'configuración' aparece en el banner:"
#: templates/admin.php:624
msgid "Setting"
msgstr "Ajuste"
#: templates/admin.php:632
msgid "Fonts"
msgstr "Fuentes"
#: templates/admin.php:632
msgid "You can select a font for the text of the banner:"
msgstr "Puede seleccionar una fuente para el texto del banner:"
#: templates/admin.php:684
msgid "Select Button"
msgstr "Botón de selección"
#: templates/admin.php:684
msgid "You can select the shape of the buttons that appear on the banner."
msgstr "Puede seleccionar la forma de los botones que aparecen en el banner."
#: templates/admin.php:688
msgid "Default"
msgstr "Por defecto"
#: templates/admin.php:692 templates/admin.php:702
msgid "Flat"
msgstr "Plano"
#: templates/admin.php:695 templates/admin.php:705
msgid "Rounded"
msgstr "Redondeado"
#: templates/admin.php:698 templates/admin.php:708
msgid "Stroke"
msgstr "Stroke"
#: templates/admin.php:726
msgid "PREVIEW"
msgstr "Avance"
#: templates/admin.php:727
msgid "SAVE"
msgstr "SALVAR"
#: templates/admin.php:746
msgid "Please create cookies policy page and enter URL below."
msgstr "Por favor, cree la página de la Política de cookies e ingrese la URL a continuación."
#: templates/admin.php:750
msgid "Enable Policy:"
msgstr "Habilitar la política:"
#: templates/admin.php:767
msgid "Cookie Policy and declaration URL:"
msgstr "Política de cookies y URL DE DECLARACIÓN:"
#: templates/admin.php:770
msgid "Policy URL"
msgstr "URL de política"
#: templates/admin.php:777
msgid "Save"
msgstr "SALVAR"
#: templates/admin.php:831
msgid "Premium Plan"
msgstr "Plan Premium"
#: templates/admin.php:834 templates/admin.php:1023 templates/admin.php:1032 templates/admin.php:1040
msgid "Only the users with a paid account can avail this feature."
msgstr "Solo los usuarios con una cuenta pagada pueden aprovechar esta función."
#: templates/admin.php:839
msgid "Ok"
msgstr "OK"
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr "seers logo"
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr "Acerca de las cookies"
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr "Leer la política de cookies"
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr "Necesario"
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr "Siempre activo"
#: templates/frontend-popup.php:1774
msgid ""
"Necessary cookies help make a website usable by enabling basic functions like page navigation and access to secure "
"areas of the website. The website cannot function properly without these cookies."
msgstr ""
"Las cookies necesarias ayudan a realizar un sitio web utilizable al permitir las funciones básicas como la navegación "
"de la página y el acceso a áreas seguras del sitio web. El sitio web no puede funcionar correctamente sin estas "
"cookies."
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784 templates/frontend-popup.php:1794
#: templates/frontend-popup.php:1804 templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr "Detalle de las cookies"
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr "Preferencia"
#: templates/frontend-popup.php:1784
msgid ""
"Preference cookies enable a website to remember information that changes the way the website behaves or looks, like "
"your preferred language or the region that you are in."
msgstr ""
"Las cookies de preferencias permiten que un sitio web recuerde la información que cambia la forma en que se comporta o "
"mira el sitio web, como su idioma preferido o la región en la que está."
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr "La estadística"
#: templates/frontend-popup.php:1794
msgid ""
"Statistic cookies help website owners to understand how visitors interact with websites by collecting and reporting "
"information anonymously."
msgstr ""
"Las cookies estadísticas ayudan a los propietarios de sitios web a comprender cómo los visitantes interactúan con los "
"sitios web mediante la recopilación y presentación de información de forma anónima."
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr "El márketing"
#: templates/frontend-popup.php:1804
msgid ""
"Marketing cookies are used to track visitors across websites. The intention is to display ads that are relevant and "
"engaging for the individual user and thereby more valuable for publishers and third-party advertisers."
msgstr ""
"Las cookies de marketing se utilizan para rastrear visitantes en sitios web. La intención es mostrar anuncios que sean "
"relevantes y atractivos para el usuario individual y, por lo tanto, más valiosos para los editores y anunciantes "
"externos."
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr "Desclasificado"
#: templates/frontend-popup.php:1812
msgid ""
"Unclassified cookies are cookies that we are in the process of classifying, together with the providers of individual "
"cookies."
msgstr ""
"Las cookies no clasificadas son cookies que estamos en proceso de clasificar, junto con los proveedores de cookies "
"individuales."
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr "Guardar mis elecciones"
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr "proporcionada por"
#~ msgid "To get your Cookie ID click on Activate"
#~ msgstr "To get your Cookie ID click on Activate"
#~ msgid "Activate"
#~ msgstr "Activate"

View File

@ -0,0 +1,655 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-25 17:21+0500\n"
"PO-Revision-Date: 2022-03-30 04:51-0700\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: es_CR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: seers-cookie-consent-banner-privacy-policy.pot\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:382
msgid "Quick Feedback"
msgstr "Retroalimentación rápida"
#: inc/seers-cookie-consent-plugin-deactivate.php:383
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr "Si tiene un momento, háganos saber por qué está desactivando:"
#: inc/seers-cookie-consent-plugin-deactivate.php:386 inc/seers-cookie-consent-plugin-deactivate.php:387
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr "El banner no está en el idioma requerido"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "The banner picks up your website language automatically. You can always sign-in on your Seers account"
msgstr "El banner recoge el idioma de su sitio web automáticamente. Siempre puedes iniciar sesión en tu cuenta SEERS"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "and choose the language you like. See the video"
msgstr "y elige el idioma que te guste. Mira el video"
#: inc/seers-cookie-consent-plugin-deactivate.php:391 inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "here"
msgstr "aquí"
#: inc/seers-cookie-consent-plugin-deactivate.php:395 inc/seers-cookie-consent-plugin-deactivate.php:396
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr "Banner no apareció"
#: inc/seers-cookie-consent-plugin-deactivate.php:399 inc/seers-cookie-consent-plugin-deactivate.php:420
msgid "Most of the times the compatibility issue can be fixed very quickly. Please contact"
msgstr "La mayoría de las veces, el problema de compatibilidad se puede fijar muy rápidamente. Por favor contactar"
#: inc/seers-cookie-consent-plugin-deactivate.php:403 inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr "Las cookies no se muestran en la configuración"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid ""
"We are scanning your website and it can take up to 12 hours for Cookies to appear. In a very few cases scanner miss a "
"cookie. This"
msgstr ""
"Estamos escaneando su sitio web y puede demorar hasta 12 horas para que aparezcan cookies. En muy pocos casos, el "
"escáner se pierde una cookie. Esta"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "video"
msgstr "video"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "explains how to add cookies manually."
msgstr "explica cómo agregar cookies manualmente."
#: inc/seers-cookie-consent-plugin-deactivate.php:410 inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr "El banner no coincide con el tema del sitio web"
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "You can fully customize the banner. Please see the video"
msgstr "Puedes personalizar completamente el banner. Por favor vea el video"
#: inc/seers-cookie-consent-plugin-deactivate.php:416 inc/seers-cookie-consent-plugin-deactivate.php:417
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr "El plugin se rompió mi sitio"
#: inc/seers-cookie-consent-plugin-deactivate.php:424 inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr "He encontrado un mejor complemento"
#: inc/seers-cookie-consent-plugin-deactivate.php:427
msgid "Plugin name"
msgstr "Nombre del plugin"
#: inc/seers-cookie-consent-plugin-deactivate.php:430
msgid "The plugin is great, but i need specific feature that you do not support."
msgstr "El complemento es excelente, pero necesito una característica específica que no admite."
#: inc/seers-cookie-consent-plugin-deactivate.php:431 inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid "The plugin is great, but i need specific feature that you don't support."
msgstr "El complemento es genial, pero necesito una característica específica que no soporta."
#: inc/seers-cookie-consent-plugin-deactivate.php:434
msgid "Banner customisation."
msgstr "Personalización de banners."
#: inc/seers-cookie-consent-plugin-deactivate.php:438 inc/seers-cookie-consent-plugin-deactivate.php:439
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr "Otro"
#: inc/seers-cookie-consent-plugin-deactivate.php:442
msgid "Kindly tell us the reason so we can improve."
msgstr "Por favor, dinos la razón para que podamos mejorar."
#: inc/seers-cookie-consent-plugin-deactivate.php:445
msgid "Submit & Deactivate"
msgstr "Enviar y desactivar"
#: inc/seers-cookie-consent-plugin-deactivate.php:446
msgid "Cancel"
msgstr "Cancelar"
#: inc/seers-cookie-consent-plugin-deactivate.php:451
msgid "Skip & Deactivate"
msgstr "Saltar y desactivar"
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr "Descartar este aviso."
#: seers-cookie-consent-banner-privacy-policy.php:135 templates/admin.php:97
msgid "Settings"
msgstr "Ajustes"
#: seers-cookie-consent-banner-privacy-policy.php:141
msgid "Upgrade Premium"
msgstr "Actualización premium"
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:514 templates/frontend-popup.php:1738
#: templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr "Política de cookies agregada con éxito"
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:558 templates/admin.php:559
#: templates/admin.php:561 templates/frontend-popup.php:1740 templates/frontend-popup.php:1765
msgid "Allow All"
msgstr "Permitir a todos"
#: seers-cookie-consent-banner-privacy-policy.php:294 templates/admin.php:589 templates/admin.php:590
#: templates/admin.php:592 templates/frontend-popup.php:1740 templates/frontend-popup.php:1766
msgid "Disable All"
msgstr "Desactivar todo"
#: seers-cookie-consent-banner-privacy-policy.php:295 templates/admin.php:621 templates/frontend-popup.php:1740
msgid "Preference"
msgstr "Centro de configuración"
#: seers-cookie-consent-banner-privacy-policy.php:418 seers-cookie-consent-banner-privacy-policy.php:446
#: seers-cookie-consent-banner-privacy-policy.php:452
msgid "Cookies policy added successfully."
msgstr "Política de cookies agregada con éxito."
#: seers-cookie-consent-banner-privacy-policy.php:421
msgid "Some thing went wrong. Please check url and try again"
msgstr "Algo salió mal. Por favor, compruebe la URL y vuelva a intentarlo"
#: seers-cookie-consent-banner-privacy-policy.php:675
msgid "Some thing went wrong."
msgstr "Algo salió mal."
#: seers-cookie-consent-banner-privacy-policy.php:819
msgid "Settings has been updated successfully"
msgstr "Los ajustes se han actualizado correctamente"
#: templates/admin.php:92 templates/admin.php:841
msgid "Account Setup"
msgstr "Configuracion de cuenta"
#: templates/admin.php:100
msgid "Policy"
msgstr "Política"
#: templates/admin.php:104
msgid "User Guide"
msgstr "Guía del usuario"
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr "Se activa su banner de consentimiento de cookie de Seers."
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr "Su banner de consentimiento de cookie seers no está activado porque"
#: templates/admin.php:134
msgid "Email"
msgstr "Correo electrónico"
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr "Estoy de acuerdo con Seers"
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr "Términos y Condiciones"
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr "y"
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr "Política de privacidad"
#: templates/admin.php:154 templates/admin.php:172
msgid "I agree Seers to use my email and url to create an account and power the cookie banner."
msgstr "Acepto que Seers utilice mi correo electrónico y url para crear una cuenta y alimentar el banner de cookies."
#: templates/admin.php:178
msgid "Create Account"
msgstr "Crear una cuenta"
#: templates/admin.php:181
msgid "Cookie ID"
msgstr "Cookie ID"
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr "Seers Cookie ID se recibirá automáticamente después de la creación de la cuenta"
#: templates/admin.php:197
msgid "Powering all your"
msgstr "Alimentando todos sus"
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr "Privacidad y; Necesidades de seguridad de datos"
#: templates/admin.php:199
msgid "Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy compliance tools,"
msgstr "Obtener acceso a una amplia gama de GDPR, PECR, CCPA y; Herramientas de cumplimiento de la ePrivacía,"
#: templates/admin.php:200
msgid "all"
msgstr "todos"
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
"diseñado para eliminar la molestia de cumplir con los nuevos datos.\n"
"regulaciones de protección."
#: templates/admin.php:206
msgid "Policies Pack"
msgstr "Paquete de políticas"
#: templates/admin.php:207
msgid "Templates Pack"
msgstr "Paquete de plantillas"
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr "El personal del GDPR ETRAING"
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr "Galería de consentimiento de cookies"
#: templates/admin.php:212
msgid "DPIA"
msgstr "Dpia"
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr "Auditoría de gdpr"
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr "Ciberseguridad"
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr "Gestión de solicitudes de asignatura"
#: templates/admin.php:217
msgid "START FREE"
msgstr "Empezar gratis"
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
"Privacidad de datos y; \n"
" Cumplimiento. Resuelto"
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
"Trust Worlds Liderar la plataforma de privacidad y consentimiento de consentimiento para ayudar a las empresas a "
"cumplir\n"
" con "
"GDPR, PECR, CCPA y EPRIVACY"
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr "Empezar a la prima hoy"
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr "Plan premium SEERS"
#: templates/admin.php:232
msgid "Branding"
msgstr "Marca"
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr "Multi lingual"
#: templates/admin.php:234
msgid "Consent Log"
msgstr "Registro de consentimiento"
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr "Política de cookies"
#: templates/admin.php:236
msgid "Prior Consent"
msgstr "Consentimiento previo"
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr "6+ diseños de diseño"
#: templates/admin.php:238
msgid "Customer Support"
msgstr "Atención al cliente"
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr "Personalización de banners"
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr "Tabla de declaración de cookies"
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
"\"Empezar la prima\n"
" HOY DIA\""
#: templates/admin.php:255
msgid "Banner Settings"
msgstr "Configuraciones de banner"
#: templates/admin.php:260
msgid "Banner"
msgstr "Bandera"
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr "Habilitar / deshabilitar banner de cookies"
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr "Caducidad de cookies"
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr "Establezca su cookie de consentimiento que caduque en días."
#: templates/admin.php:291
msgid "Language"
msgstr "Idioma"
#: templates/admin.php:291
msgid "Choose a language for the banner Settings > General."
msgstr "Elija un idioma para el banner Ajustes > Generales."
#: templates/admin.php:475
msgid "Show Badge"
msgstr "Mostrar insignia"
#: templates/admin.php:475
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr "Muestre una placa para que la bandera de la cookie aparezca después del consentimiento."
#: templates/admin.php:498
msgid "Visual Settings"
msgstr "Ajustes visuales"
#: templates/admin.php:503
msgid "Banner Text"
msgstr "Texto de banner"
#: templates/admin.php:503
msgid "Text to appear on the banner:"
msgstr "Texto para aparecer en el banner:"
#: templates/admin.php:506 templates/admin.php:524
msgid "Colour"
msgstr "Color"
#: templates/admin.php:506
msgid "The text colour to appear on the banner:"
msgstr "El color de texto para aparecer en el banner:"
#: templates/admin.php:521
msgid "Banner Background"
msgstr "Fondo de banner"
#: templates/admin.php:521
msgid "You can change the background colour of the banner:"
msgstr "Puedes cambiar el color de fondo del banner:"
#: templates/admin.php:524
msgid "The background colour of the banner:"
msgstr "El color de fondo de la bandera:"
#: templates/admin.php:538
msgid "Accept Button"
msgstr "Aceptar botón"
#: templates/admin.php:538
msgid "You can change text colour, button colour and text of the 'Accept All' button"
msgstr "Puede cambiar el color del texto, el color del botón y el texto del botón 'Aceptar todo'"
#: templates/admin.php:541 templates/admin.php:572 templates/admin.php:603
msgid "Text Colour"
msgstr "Color de texto"
#: templates/admin.php:541
msgid "The text colour to appear on the 'Accept All' button:"
msgstr "El color de texto a aparecer en el botón 'Aceptar todo':"
#: templates/admin.php:551 templates/admin.php:582 templates/admin.php:613
msgid "Button Colour"
msgstr "Color botón"
#: templates/admin.php:551
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr "El color 'acepte todo' botón para aparecer en el banner:"
#: templates/admin.php:569
msgid "Reject Button"
msgstr "Botón de rechazo"
#: templates/admin.php:569
msgid "You can change text colour, button colour and text of the 'Reject All' button"
msgstr "Puede cambiar el color de texto, el color del botón y el texto del botón 'Rechazar todos'"
#: templates/admin.php:572
msgid "The text colour to appear on the 'Reject All' button:"
msgstr "El color de texto para aparecer en el botón 'Rechazar todos':"
#: templates/admin.php:582
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr "El color del botón 'Rechazar todo' para aparecer en el banner:"
#: templates/admin.php:600
msgid "Setting Button"
msgstr "Botón de ajuste"
#: templates/admin.php:600
msgid "You can change text colour and text of the 'Setting' button"
msgstr "Puede cambiar el color de texto y el texto del botón 'Configuración'"
#: templates/admin.php:603
msgid "The text colour to appear on the 'Setting' button:"
msgstr "El color de texto a aparecer en el botón 'Configuración':"
#: templates/admin.php:613
msgid "The 'Setting' button colour to appear on the banner:"
msgstr "El color del botón 'configuración' aparece en el banner:"
#: templates/admin.php:624
msgid "Setting"
msgstr "Ajuste"
#: templates/admin.php:632
msgid "Fonts"
msgstr "Fuentes"
#: templates/admin.php:632
msgid "You can select a font for the text of the banner:"
msgstr "Puede seleccionar una fuente para el texto del banner:"
#: templates/admin.php:684
msgid "Select Button"
msgstr "Botón de selección"
#: templates/admin.php:684
msgid "You can select the shape of the buttons that appear on the banner."
msgstr "Puede seleccionar la forma de los botones que aparecen en el banner."
#: templates/admin.php:688
msgid "Default"
msgstr "Por defecto"
#: templates/admin.php:692 templates/admin.php:702
msgid "Flat"
msgstr "Plano"
#: templates/admin.php:695 templates/admin.php:705
msgid "Rounded"
msgstr "Redondeado"
#: templates/admin.php:698 templates/admin.php:708
msgid "Stroke"
msgstr "Stroke"
#: templates/admin.php:726
msgid "PREVIEW"
msgstr "Avance"
#: templates/admin.php:727
msgid "SAVE"
msgstr "SALVAR"
#: templates/admin.php:746
msgid "Please create cookies policy page and enter URL below."
msgstr "Por favor, cree la página de la Política de cookies e ingrese la URL a continuación."
#: templates/admin.php:750
msgid "Enable Policy:"
msgstr "Habilitar la política:"
#: templates/admin.php:767
msgid "Cookie Policy and declaration URL:"
msgstr "Política de cookies y URL DE DECLARACIÓN:"
#: templates/admin.php:770
msgid "Policy URL"
msgstr "URL de política"
#: templates/admin.php:777
msgid "Save"
msgstr "SALVAR"
#: templates/admin.php:831
msgid "Premium Plan"
msgstr "Plan Premium"
#: templates/admin.php:834 templates/admin.php:1023 templates/admin.php:1032 templates/admin.php:1040
msgid "Only the users with a paid account can avail this feature."
msgstr "Solo los usuarios con una cuenta pagada pueden aprovechar esta función."
#: templates/admin.php:839
msgid "Ok"
msgstr "OK"
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr "seers logo"
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr "Acerca de las cookies"
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr "Leer la política de cookies"
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr "Necesario"
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr "Siempre activo"
#: templates/frontend-popup.php:1774
msgid ""
"Necessary cookies help make a website usable by enabling basic functions like page navigation and access to secure "
"areas of the website. The website cannot function properly without these cookies."
msgstr ""
"Las cookies necesarias ayudan a realizar un sitio web utilizable al permitir las funciones básicas como la navegación "
"de la página y el acceso a áreas seguras del sitio web. El sitio web no puede funcionar correctamente sin estas "
"cookies."
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784 templates/frontend-popup.php:1794
#: templates/frontend-popup.php:1804 templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr "Detalle de las cookies"
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr "Preferencia"
#: templates/frontend-popup.php:1784
msgid ""
"Preference cookies enable a website to remember information that changes the way the website behaves or looks, like "
"your preferred language or the region that you are in."
msgstr ""
"Las cookies de preferencias permiten que un sitio web recuerde la información que cambia la forma en que se comporta o "
"mira el sitio web, como su idioma preferido o la región en la que está."
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr "La estadística"
#: templates/frontend-popup.php:1794
msgid ""
"Statistic cookies help website owners to understand how visitors interact with websites by collecting and reporting "
"information anonymously."
msgstr ""
"Las cookies estadísticas ayudan a los propietarios de sitios web a comprender cómo los visitantes interactúan con los "
"sitios web mediante la recopilación y presentación de información de forma anónima."
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr "El márketing"
#: templates/frontend-popup.php:1804
msgid ""
"Marketing cookies are used to track visitors across websites. The intention is to display ads that are relevant and "
"engaging for the individual user and thereby more valuable for publishers and third-party advertisers."
msgstr ""
"Las cookies de marketing se utilizan para rastrear visitantes en sitios web. La intención es mostrar anuncios que sean "
"relevantes y atractivos para el usuario individual y, por lo tanto, más valiosos para los editores y anunciantes "
"externos."
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr "Desclasificado"
#: templates/frontend-popup.php:1812
msgid ""
"Unclassified cookies are cookies that we are in the process of classifying, together with the providers of individual "
"cookies."
msgstr ""
"Las cookies no clasificadas son cookies que estamos en proceso de clasificar, junto con los proveedores de cookies "
"individuales."
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr "Guardar mis elecciones"
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr "proporcionada por"
#~ msgid "To get your Cookie ID click on Activate"
#~ msgstr "To get your Cookie ID click on Activate"
#~ msgid "Activate"
#~ msgstr "Activate"

View File

@ -0,0 +1,655 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-25 17:21+0500\n"
"PO-Revision-Date: 2022-03-30 04:52-0700\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: seers-cookie-consent-banner-privacy-policy.pot\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:382
msgid "Quick Feedback"
msgstr "Retroalimentación rápida"
#: inc/seers-cookie-consent-plugin-deactivate.php:383
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr "Si tiene un momento, háganos saber por qué está desactivando:"
#: inc/seers-cookie-consent-plugin-deactivate.php:386 inc/seers-cookie-consent-plugin-deactivate.php:387
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr "El banner no está en el idioma requerido"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "The banner picks up your website language automatically. You can always sign-in on your Seers account"
msgstr "El banner recoge el idioma de su sitio web automáticamente. Siempre puedes iniciar sesión en tu cuenta SEERS"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "and choose the language you like. See the video"
msgstr "y elige el idioma que te guste. Mira el video"
#: inc/seers-cookie-consent-plugin-deactivate.php:391 inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "here"
msgstr "aquí"
#: inc/seers-cookie-consent-plugin-deactivate.php:395 inc/seers-cookie-consent-plugin-deactivate.php:396
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr "Banner no apareció"
#: inc/seers-cookie-consent-plugin-deactivate.php:399 inc/seers-cookie-consent-plugin-deactivate.php:420
msgid "Most of the times the compatibility issue can be fixed very quickly. Please contact"
msgstr "La mayoría de las veces, el problema de compatibilidad se puede fijar muy rápidamente. Por favor contactar"
#: inc/seers-cookie-consent-plugin-deactivate.php:403 inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr "Las cookies no se muestran en la configuración"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid ""
"We are scanning your website and it can take up to 12 hours for Cookies to appear. In a very few cases scanner miss a "
"cookie. This"
msgstr ""
"Estamos escaneando su sitio web y puede demorar hasta 12 horas para que aparezcan cookies. En muy pocos casos, el "
"escáner se pierde una cookie. Esta"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "video"
msgstr "video"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "explains how to add cookies manually."
msgstr "explica cómo agregar cookies manualmente."
#: inc/seers-cookie-consent-plugin-deactivate.php:410 inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr "El banner no coincide con el tema del sitio web"
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "You can fully customize the banner. Please see the video"
msgstr "Puedes personalizar completamente el banner. Por favor vea el video"
#: inc/seers-cookie-consent-plugin-deactivate.php:416 inc/seers-cookie-consent-plugin-deactivate.php:417
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr "El plugin se rompió mi sitio"
#: inc/seers-cookie-consent-plugin-deactivate.php:424 inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr "He encontrado un mejor complemento"
#: inc/seers-cookie-consent-plugin-deactivate.php:427
msgid "Plugin name"
msgstr "Nombre del plugin"
#: inc/seers-cookie-consent-plugin-deactivate.php:430
msgid "The plugin is great, but i need specific feature that you do not support."
msgstr "El complemento es excelente, pero necesito una característica específica que no admite."
#: inc/seers-cookie-consent-plugin-deactivate.php:431 inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid "The plugin is great, but i need specific feature that you don't support."
msgstr "El complemento es genial, pero necesito una característica específica que no soporta."
#: inc/seers-cookie-consent-plugin-deactivate.php:434
msgid "Banner customisation."
msgstr "Personalización de banners."
#: inc/seers-cookie-consent-plugin-deactivate.php:438 inc/seers-cookie-consent-plugin-deactivate.php:439
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr "Otro"
#: inc/seers-cookie-consent-plugin-deactivate.php:442
msgid "Kindly tell us the reason so we can improve."
msgstr "Por favor, dinos la razón para que podamos mejorar."
#: inc/seers-cookie-consent-plugin-deactivate.php:445
msgid "Submit & Deactivate"
msgstr "Enviar y desactivar"
#: inc/seers-cookie-consent-plugin-deactivate.php:446
msgid "Cancel"
msgstr "Cancelar"
#: inc/seers-cookie-consent-plugin-deactivate.php:451
msgid "Skip & Deactivate"
msgstr "Saltar y desactivar"
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr "Descartar este aviso."
#: seers-cookie-consent-banner-privacy-policy.php:135 templates/admin.php:97
msgid "Settings"
msgstr "Ajustes"
#: seers-cookie-consent-banner-privacy-policy.php:141
msgid "Upgrade Premium"
msgstr "Actualización premium"
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:514 templates/frontend-popup.php:1738
#: templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr "Política de cookies agregada con éxito"
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:558 templates/admin.php:559
#: templates/admin.php:561 templates/frontend-popup.php:1740 templates/frontend-popup.php:1765
msgid "Allow All"
msgstr "Permitir a todos"
#: seers-cookie-consent-banner-privacy-policy.php:294 templates/admin.php:589 templates/admin.php:590
#: templates/admin.php:592 templates/frontend-popup.php:1740 templates/frontend-popup.php:1766
msgid "Disable All"
msgstr "Desactivar todo"
#: seers-cookie-consent-banner-privacy-policy.php:295 templates/admin.php:621 templates/frontend-popup.php:1740
msgid "Preference"
msgstr "Centro de configuración"
#: seers-cookie-consent-banner-privacy-policy.php:418 seers-cookie-consent-banner-privacy-policy.php:446
#: seers-cookie-consent-banner-privacy-policy.php:452
msgid "Cookies policy added successfully."
msgstr "Política de cookies agregada con éxito."
#: seers-cookie-consent-banner-privacy-policy.php:421
msgid "Some thing went wrong. Please check url and try again"
msgstr "Algo salió mal. Por favor, compruebe la URL y vuelva a intentarlo"
#: seers-cookie-consent-banner-privacy-policy.php:675
msgid "Some thing went wrong."
msgstr "Algo salió mal."
#: seers-cookie-consent-banner-privacy-policy.php:819
msgid "Settings has been updated successfully"
msgstr "Los ajustes se han actualizado correctamente"
#: templates/admin.php:92 templates/admin.php:841
msgid "Account Setup"
msgstr "Configuracion de cuenta"
#: templates/admin.php:100
msgid "Policy"
msgstr "Política"
#: templates/admin.php:104
msgid "User Guide"
msgstr "Guía del usuario"
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr "Se activa su banner de consentimiento de cookie de Seers."
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr "Su banner de consentimiento de cookie seers no está activado porque"
#: templates/admin.php:134
msgid "Email"
msgstr "Correo electrónico"
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr "Estoy de acuerdo con Seers"
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr "Términos y Condiciones"
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr "y"
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr "Política de privacidad"
#: templates/admin.php:154 templates/admin.php:172
msgid "I agree Seers to use my email and url to create an account and power the cookie banner."
msgstr "Acepto que Seers utilice mi correo electrónico y url para crear una cuenta y alimentar el banner de cookies."
#: templates/admin.php:178
msgid "Create Account"
msgstr "Crear una cuenta"
#: templates/admin.php:181
msgid "Cookie ID"
msgstr "Cookie ID"
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr "Seers Cookie ID se recibirá automáticamente después de la creación de la cuenta"
#: templates/admin.php:197
msgid "Powering all your"
msgstr "Alimentando todos sus"
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr "Privacidad y; Necesidades de seguridad de datos"
#: templates/admin.php:199
msgid "Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy compliance tools,"
msgstr "Obtener acceso a una amplia gama de GDPR, PECR, CCPA y; Herramientas de cumplimiento de la ePrivacía,"
#: templates/admin.php:200
msgid "all"
msgstr "todos"
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
"diseñado para eliminar la molestia de cumplir con los nuevos datos.\n"
"regulaciones de protección."
#: templates/admin.php:206
msgid "Policies Pack"
msgstr "Paquete de políticas"
#: templates/admin.php:207
msgid "Templates Pack"
msgstr "Paquete de plantillas"
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr "El personal del GDPR ETRAING"
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr "Galería de consentimiento de cookies"
#: templates/admin.php:212
msgid "DPIA"
msgstr "Dpia"
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr "Auditoría de gdpr"
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr "Ciberseguridad"
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr "Gestión de solicitudes de asignatura"
#: templates/admin.php:217
msgid "START FREE"
msgstr "Empezar gratis"
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
"Privacidad de datos y; \n"
" Cumplimiento. Resuelto"
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
"Trust Worlds Liderar la plataforma de privacidad y consentimiento de consentimiento para ayudar a las empresas a "
"cumplir\n"
" con "
"GDPR, PECR, CCPA y EPRIVACY"
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr "Empezar a la prima hoy"
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr "Plan premium SEERS"
#: templates/admin.php:232
msgid "Branding"
msgstr "Marca"
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr "Multi lingual"
#: templates/admin.php:234
msgid "Consent Log"
msgstr "Registro de consentimiento"
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr "Política de cookies"
#: templates/admin.php:236
msgid "Prior Consent"
msgstr "Consentimiento previo"
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr "6+ diseños de diseño"
#: templates/admin.php:238
msgid "Customer Support"
msgstr "Atención al cliente"
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr "Personalización de banners"
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr "Tabla de declaración de cookies"
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
"\"Empezar la prima\n"
" HOY DIA\""
#: templates/admin.php:255
msgid "Banner Settings"
msgstr "Configuraciones de banner"
#: templates/admin.php:260
msgid "Banner"
msgstr "Bandera"
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr "Habilitar / deshabilitar banner de cookies"
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr "Caducidad de cookies"
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr "Establezca su cookie de consentimiento que caduque en días."
#: templates/admin.php:291
msgid "Language"
msgstr "Idioma"
#: templates/admin.php:291
msgid "Choose a language for the banner Settings > General."
msgstr "Elija un idioma para el banner Ajustes > Generales."
#: templates/admin.php:475
msgid "Show Badge"
msgstr "Mostrar insignia"
#: templates/admin.php:475
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr "Muestre una placa para que la bandera de la cookie aparezca después del consentimiento."
#: templates/admin.php:498
msgid "Visual Settings"
msgstr "Ajustes visuales"
#: templates/admin.php:503
msgid "Banner Text"
msgstr "Texto de banner"
#: templates/admin.php:503
msgid "Text to appear on the banner:"
msgstr "Texto para aparecer en el banner:"
#: templates/admin.php:506 templates/admin.php:524
msgid "Colour"
msgstr "Color"
#: templates/admin.php:506
msgid "The text colour to appear on the banner:"
msgstr "El color de texto para aparecer en el banner:"
#: templates/admin.php:521
msgid "Banner Background"
msgstr "Fondo de banner"
#: templates/admin.php:521
msgid "You can change the background colour of the banner:"
msgstr "Puedes cambiar el color de fondo del banner:"
#: templates/admin.php:524
msgid "The background colour of the banner:"
msgstr "El color de fondo de la bandera:"
#: templates/admin.php:538
msgid "Accept Button"
msgstr "Aceptar botón"
#: templates/admin.php:538
msgid "You can change text colour, button colour and text of the 'Accept All' button"
msgstr "Puede cambiar el color del texto, el color del botón y el texto del botón 'Aceptar todo'"
#: templates/admin.php:541 templates/admin.php:572 templates/admin.php:603
msgid "Text Colour"
msgstr "Color de texto"
#: templates/admin.php:541
msgid "The text colour to appear on the 'Accept All' button:"
msgstr "El color de texto a aparecer en el botón 'Aceptar todo':"
#: templates/admin.php:551 templates/admin.php:582 templates/admin.php:613
msgid "Button Colour"
msgstr "Color botón"
#: templates/admin.php:551
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr "El color 'acepte todo' botón para aparecer en el banner:"
#: templates/admin.php:569
msgid "Reject Button"
msgstr "Botón de rechazo"
#: templates/admin.php:569
msgid "You can change text colour, button colour and text of the 'Reject All' button"
msgstr "Puede cambiar el color de texto, el color del botón y el texto del botón 'Rechazar todos'"
#: templates/admin.php:572
msgid "The text colour to appear on the 'Reject All' button:"
msgstr "El color de texto para aparecer en el botón 'Rechazar todos':"
#: templates/admin.php:582
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr "El color del botón 'Rechazar todo' para aparecer en el banner:"
#: templates/admin.php:600
msgid "Setting Button"
msgstr "Botón de ajuste"
#: templates/admin.php:600
msgid "You can change text colour and text of the 'Setting' button"
msgstr "Puede cambiar el color de texto y el texto del botón 'Configuración'"
#: templates/admin.php:603
msgid "The text colour to appear on the 'Setting' button:"
msgstr "El color de texto a aparecer en el botón 'Configuración':"
#: templates/admin.php:613
msgid "The 'Setting' button colour to appear on the banner:"
msgstr "El color del botón 'configuración' aparece en el banner:"
#: templates/admin.php:624
msgid "Setting"
msgstr "Ajuste"
#: templates/admin.php:632
msgid "Fonts"
msgstr "Fuentes"
#: templates/admin.php:632
msgid "You can select a font for the text of the banner:"
msgstr "Puede seleccionar una fuente para el texto del banner:"
#: templates/admin.php:684
msgid "Select Button"
msgstr "Botón de selección"
#: templates/admin.php:684
msgid "You can select the shape of the buttons that appear on the banner."
msgstr "Puede seleccionar la forma de los botones que aparecen en el banner."
#: templates/admin.php:688
msgid "Default"
msgstr "Por defecto"
#: templates/admin.php:692 templates/admin.php:702
msgid "Flat"
msgstr "Plano"
#: templates/admin.php:695 templates/admin.php:705
msgid "Rounded"
msgstr "Redondeado"
#: templates/admin.php:698 templates/admin.php:708
msgid "Stroke"
msgstr "Stroke"
#: templates/admin.php:726
msgid "PREVIEW"
msgstr "Avance"
#: templates/admin.php:727
msgid "SAVE"
msgstr "SALVAR"
#: templates/admin.php:746
msgid "Please create cookies policy page and enter URL below."
msgstr "Por favor, cree la página de la Política de cookies e ingrese la URL a continuación."
#: templates/admin.php:750
msgid "Enable Policy:"
msgstr "Habilitar la política:"
#: templates/admin.php:767
msgid "Cookie Policy and declaration URL:"
msgstr "Política de cookies y URL DE DECLARACIÓN:"
#: templates/admin.php:770
msgid "Policy URL"
msgstr "URL de política"
#: templates/admin.php:777
msgid "Save"
msgstr "SALVAR"
#: templates/admin.php:831
msgid "Premium Plan"
msgstr "Plan Premium"
#: templates/admin.php:834 templates/admin.php:1023 templates/admin.php:1032 templates/admin.php:1040
msgid "Only the users with a paid account can avail this feature."
msgstr "Solo los usuarios con una cuenta pagada pueden aprovechar esta función."
#: templates/admin.php:839
msgid "Ok"
msgstr "OK"
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr "seers logo"
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr "Acerca de las cookies"
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr "Leer la política de cookies"
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr "Necesario"
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr "Siempre activo"
#: templates/frontend-popup.php:1774
msgid ""
"Necessary cookies help make a website usable by enabling basic functions like page navigation and access to secure "
"areas of the website. The website cannot function properly without these cookies."
msgstr ""
"Las cookies necesarias ayudan a realizar un sitio web utilizable al permitir las funciones básicas como la navegación "
"de la página y el acceso a áreas seguras del sitio web. El sitio web no puede funcionar correctamente sin estas "
"cookies."
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784 templates/frontend-popup.php:1794
#: templates/frontend-popup.php:1804 templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr "Detalle de las cookies"
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr "Preferencia"
#: templates/frontend-popup.php:1784
msgid ""
"Preference cookies enable a website to remember information that changes the way the website behaves or looks, like "
"your preferred language or the region that you are in."
msgstr ""
"Las cookies de preferencias permiten que un sitio web recuerde la información que cambia la forma en que se comporta o "
"mira el sitio web, como su idioma preferido o la región en la que está."
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr "La estadística"
#: templates/frontend-popup.php:1794
msgid ""
"Statistic cookies help website owners to understand how visitors interact with websites by collecting and reporting "
"information anonymously."
msgstr ""
"Las cookies estadísticas ayudan a los propietarios de sitios web a comprender cómo los visitantes interactúan con los "
"sitios web mediante la recopilación y presentación de información de forma anónima."
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr "El márketing"
#: templates/frontend-popup.php:1804
msgid ""
"Marketing cookies are used to track visitors across websites. The intention is to display ads that are relevant and "
"engaging for the individual user and thereby more valuable for publishers and third-party advertisers."
msgstr ""
"Las cookies de marketing se utilizan para rastrear visitantes en sitios web. La intención es mostrar anuncios que sean "
"relevantes y atractivos para el usuario individual y, por lo tanto, más valiosos para los editores y anunciantes "
"externos."
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr "Desclasificado"
#: templates/frontend-popup.php:1812
msgid ""
"Unclassified cookies are cookies that we are in the process of classifying, together with the providers of individual "
"cookies."
msgstr ""
"Las cookies no clasificadas son cookies que estamos en proceso de clasificar, junto con los proveedores de cookies "
"individuales."
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr "Guardar mis elecciones"
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr "proporcionada por"
#~ msgid "To get your Cookie ID click on Activate"
#~ msgstr "To get your Cookie ID click on Activate"
#~ msgid "Activate"
#~ msgstr "Activate"

View File

@ -0,0 +1,655 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-25 17:21+0500\n"
"PO-Revision-Date: 2022-03-30 04:52-0700\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: es_GT\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: seers-cookie-consent-banner-privacy-policy.pot\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:382
msgid "Quick Feedback"
msgstr "Retroalimentación rápida"
#: inc/seers-cookie-consent-plugin-deactivate.php:383
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr "Si tiene un momento, háganos saber por qué está desactivando:"
#: inc/seers-cookie-consent-plugin-deactivate.php:386 inc/seers-cookie-consent-plugin-deactivate.php:387
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr "El banner no está en el idioma requerido"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "The banner picks up your website language automatically. You can always sign-in on your Seers account"
msgstr "El banner recoge el idioma de su sitio web automáticamente. Siempre puedes iniciar sesión en tu cuenta SEERS"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "and choose the language you like. See the video"
msgstr "y elige el idioma que te guste. Mira el video"
#: inc/seers-cookie-consent-plugin-deactivate.php:391 inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "here"
msgstr "aquí"
#: inc/seers-cookie-consent-plugin-deactivate.php:395 inc/seers-cookie-consent-plugin-deactivate.php:396
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr "Banner no apareció"
#: inc/seers-cookie-consent-plugin-deactivate.php:399 inc/seers-cookie-consent-plugin-deactivate.php:420
msgid "Most of the times the compatibility issue can be fixed very quickly. Please contact"
msgstr "La mayoría de las veces, el problema de compatibilidad se puede fijar muy rápidamente. Por favor contactar"
#: inc/seers-cookie-consent-plugin-deactivate.php:403 inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr "Las cookies no se muestran en la configuración"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid ""
"We are scanning your website and it can take up to 12 hours for Cookies to appear. In a very few cases scanner miss a "
"cookie. This"
msgstr ""
"Estamos escaneando su sitio web y puede demorar hasta 12 horas para que aparezcan cookies. En muy pocos casos, el "
"escáner se pierde una cookie. Esta"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "video"
msgstr "video"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "explains how to add cookies manually."
msgstr "explica cómo agregar cookies manualmente."
#: inc/seers-cookie-consent-plugin-deactivate.php:410 inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr "El banner no coincide con el tema del sitio web"
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "You can fully customize the banner. Please see the video"
msgstr "Puedes personalizar completamente el banner. Por favor vea el video"
#: inc/seers-cookie-consent-plugin-deactivate.php:416 inc/seers-cookie-consent-plugin-deactivate.php:417
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr "El plugin se rompió mi sitio"
#: inc/seers-cookie-consent-plugin-deactivate.php:424 inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr "He encontrado un mejor complemento"
#: inc/seers-cookie-consent-plugin-deactivate.php:427
msgid "Plugin name"
msgstr "Nombre del plugin"
#: inc/seers-cookie-consent-plugin-deactivate.php:430
msgid "The plugin is great, but i need specific feature that you do not support."
msgstr "El complemento es excelente, pero necesito una característica específica que no admite."
#: inc/seers-cookie-consent-plugin-deactivate.php:431 inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid "The plugin is great, but i need specific feature that you don't support."
msgstr "El complemento es genial, pero necesito una característica específica que no soporta."
#: inc/seers-cookie-consent-plugin-deactivate.php:434
msgid "Banner customisation."
msgstr "Personalización de banners."
#: inc/seers-cookie-consent-plugin-deactivate.php:438 inc/seers-cookie-consent-plugin-deactivate.php:439
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr "Otro"
#: inc/seers-cookie-consent-plugin-deactivate.php:442
msgid "Kindly tell us the reason so we can improve."
msgstr "Por favor, dinos la razón para que podamos mejorar."
#: inc/seers-cookie-consent-plugin-deactivate.php:445
msgid "Submit & Deactivate"
msgstr "Enviar y desactivar"
#: inc/seers-cookie-consent-plugin-deactivate.php:446
msgid "Cancel"
msgstr "Cancelar"
#: inc/seers-cookie-consent-plugin-deactivate.php:451
msgid "Skip & Deactivate"
msgstr "Saltar y desactivar"
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr "Descartar este aviso."
#: seers-cookie-consent-banner-privacy-policy.php:135 templates/admin.php:97
msgid "Settings"
msgstr "Ajustes"
#: seers-cookie-consent-banner-privacy-policy.php:141
msgid "Upgrade Premium"
msgstr "Actualización premium"
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:514 templates/frontend-popup.php:1738
#: templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr "Política de cookies agregada con éxito"
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:558 templates/admin.php:559
#: templates/admin.php:561 templates/frontend-popup.php:1740 templates/frontend-popup.php:1765
msgid "Allow All"
msgstr "Permitir a todos"
#: seers-cookie-consent-banner-privacy-policy.php:294 templates/admin.php:589 templates/admin.php:590
#: templates/admin.php:592 templates/frontend-popup.php:1740 templates/frontend-popup.php:1766
msgid "Disable All"
msgstr "Desactivar todo"
#: seers-cookie-consent-banner-privacy-policy.php:295 templates/admin.php:621 templates/frontend-popup.php:1740
msgid "Preference"
msgstr "Centro de configuración"
#: seers-cookie-consent-banner-privacy-policy.php:418 seers-cookie-consent-banner-privacy-policy.php:446
#: seers-cookie-consent-banner-privacy-policy.php:452
msgid "Cookies policy added successfully."
msgstr "Política de cookies agregada con éxito."
#: seers-cookie-consent-banner-privacy-policy.php:421
msgid "Some thing went wrong. Please check url and try again"
msgstr "Algo salió mal. Por favor, compruebe la URL y vuelva a intentarlo"
#: seers-cookie-consent-banner-privacy-policy.php:675
msgid "Some thing went wrong."
msgstr "Algo salió mal."
#: seers-cookie-consent-banner-privacy-policy.php:819
msgid "Settings has been updated successfully"
msgstr "Los ajustes se han actualizado correctamente"
#: templates/admin.php:92 templates/admin.php:841
msgid "Account Setup"
msgstr "Configuracion de cuenta"
#: templates/admin.php:100
msgid "Policy"
msgstr "Política"
#: templates/admin.php:104
msgid "User Guide"
msgstr "Guía del usuario"
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr "Se activa su banner de consentimiento de cookie de Seers."
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr "Su banner de consentimiento de cookie seers no está activado porque"
#: templates/admin.php:134
msgid "Email"
msgstr "Correo electrónico"
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr "Estoy de acuerdo con Seers"
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr "Términos y Condiciones"
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr "y"
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr "Política de privacidad"
#: templates/admin.php:154 templates/admin.php:172
msgid "I agree Seers to use my email and url to create an account and power the cookie banner."
msgstr "Acepto que Seers utilice mi correo electrónico y url para crear una cuenta y alimentar el banner de cookies."
#: templates/admin.php:178
msgid "Create Account"
msgstr "Crear una cuenta"
#: templates/admin.php:181
msgid "Cookie ID"
msgstr "Cookie ID"
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr "Seers Cookie ID se recibirá automáticamente después de la creación de la cuenta"
#: templates/admin.php:197
msgid "Powering all your"
msgstr "Alimentando todos sus"
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr "Privacidad y; Necesidades de seguridad de datos"
#: templates/admin.php:199
msgid "Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy compliance tools,"
msgstr "Obtener acceso a una amplia gama de GDPR, PECR, CCPA y; Herramientas de cumplimiento de la ePrivacía,"
#: templates/admin.php:200
msgid "all"
msgstr "todos"
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
"diseñado para eliminar la molestia de cumplir con los nuevos datos.\n"
"regulaciones de protección."
#: templates/admin.php:206
msgid "Policies Pack"
msgstr "Paquete de políticas"
#: templates/admin.php:207
msgid "Templates Pack"
msgstr "Paquete de plantillas"
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr "El personal del GDPR ETRAING"
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr "Galería de consentimiento de cookies"
#: templates/admin.php:212
msgid "DPIA"
msgstr "Dpia"
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr "Auditoría de gdpr"
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr "Ciberseguridad"
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr "Gestión de solicitudes de asignatura"
#: templates/admin.php:217
msgid "START FREE"
msgstr "Empezar gratis"
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
"Privacidad de datos y; \n"
" Cumplimiento. Resuelto"
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
"Trust Worlds Liderar la plataforma de privacidad y consentimiento de consentimiento para ayudar a las empresas a "
"cumplir\n"
" con "
"GDPR, PECR, CCPA y EPRIVACY"
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr "Empezar a la prima hoy"
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr "Plan premium SEERS"
#: templates/admin.php:232
msgid "Branding"
msgstr "Marca"
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr "Multi lingual"
#: templates/admin.php:234
msgid "Consent Log"
msgstr "Registro de consentimiento"
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr "Política de cookies"
#: templates/admin.php:236
msgid "Prior Consent"
msgstr "Consentimiento previo"
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr "6+ diseños de diseño"
#: templates/admin.php:238
msgid "Customer Support"
msgstr "Atención al cliente"
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr "Personalización de banners"
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr "Tabla de declaración de cookies"
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
"\"Empezar la prima\n"
" HOY DIA\""
#: templates/admin.php:255
msgid "Banner Settings"
msgstr "Configuraciones de banner"
#: templates/admin.php:260
msgid "Banner"
msgstr "Bandera"
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr "Habilitar / deshabilitar banner de cookies"
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr "Caducidad de cookies"
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr "Establezca su cookie de consentimiento que caduque en días."
#: templates/admin.php:291
msgid "Language"
msgstr "Idioma"
#: templates/admin.php:291
msgid "Choose a language for the banner Settings > General."
msgstr "Elija un idioma para el banner Ajustes > Generales."
#: templates/admin.php:475
msgid "Show Badge"
msgstr "Mostrar insignia"
#: templates/admin.php:475
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr "Muestre una placa para que la bandera de la cookie aparezca después del consentimiento."
#: templates/admin.php:498
msgid "Visual Settings"
msgstr "Ajustes visuales"
#: templates/admin.php:503
msgid "Banner Text"
msgstr "Texto de banner"
#: templates/admin.php:503
msgid "Text to appear on the banner:"
msgstr "Texto para aparecer en el banner:"
#: templates/admin.php:506 templates/admin.php:524
msgid "Colour"
msgstr "Color"
#: templates/admin.php:506
msgid "The text colour to appear on the banner:"
msgstr "El color de texto para aparecer en el banner:"
#: templates/admin.php:521
msgid "Banner Background"
msgstr "Fondo de banner"
#: templates/admin.php:521
msgid "You can change the background colour of the banner:"
msgstr "Puedes cambiar el color de fondo del banner:"
#: templates/admin.php:524
msgid "The background colour of the banner:"
msgstr "El color de fondo de la bandera:"
#: templates/admin.php:538
msgid "Accept Button"
msgstr "Aceptar botón"
#: templates/admin.php:538
msgid "You can change text colour, button colour and text of the 'Accept All' button"
msgstr "Puede cambiar el color del texto, el color del botón y el texto del botón 'Aceptar todo'"
#: templates/admin.php:541 templates/admin.php:572 templates/admin.php:603
msgid "Text Colour"
msgstr "Color de texto"
#: templates/admin.php:541
msgid "The text colour to appear on the 'Accept All' button:"
msgstr "El color de texto a aparecer en el botón 'Aceptar todo':"
#: templates/admin.php:551 templates/admin.php:582 templates/admin.php:613
msgid "Button Colour"
msgstr "Color botón"
#: templates/admin.php:551
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr "El color 'acepte todo' botón para aparecer en el banner:"
#: templates/admin.php:569
msgid "Reject Button"
msgstr "Botón de rechazo"
#: templates/admin.php:569
msgid "You can change text colour, button colour and text of the 'Reject All' button"
msgstr "Puede cambiar el color de texto, el color del botón y el texto del botón 'Rechazar todos'"
#: templates/admin.php:572
msgid "The text colour to appear on the 'Reject All' button:"
msgstr "El color de texto para aparecer en el botón 'Rechazar todos':"
#: templates/admin.php:582
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr "El color del botón 'Rechazar todo' para aparecer en el banner:"
#: templates/admin.php:600
msgid "Setting Button"
msgstr "Botón de ajuste"
#: templates/admin.php:600
msgid "You can change text colour and text of the 'Setting' button"
msgstr "Puede cambiar el color de texto y el texto del botón 'Configuración'"
#: templates/admin.php:603
msgid "The text colour to appear on the 'Setting' button:"
msgstr "El color de texto a aparecer en el botón 'Configuración':"
#: templates/admin.php:613
msgid "The 'Setting' button colour to appear on the banner:"
msgstr "El color del botón 'configuración' aparece en el banner:"
#: templates/admin.php:624
msgid "Setting"
msgstr "Ajuste"
#: templates/admin.php:632
msgid "Fonts"
msgstr "Fuentes"
#: templates/admin.php:632
msgid "You can select a font for the text of the banner:"
msgstr "Puede seleccionar una fuente para el texto del banner:"
#: templates/admin.php:684
msgid "Select Button"
msgstr "Botón de selección"
#: templates/admin.php:684
msgid "You can select the shape of the buttons that appear on the banner."
msgstr "Puede seleccionar la forma de los botones que aparecen en el banner."
#: templates/admin.php:688
msgid "Default"
msgstr "Por defecto"
#: templates/admin.php:692 templates/admin.php:702
msgid "Flat"
msgstr "Plano"
#: templates/admin.php:695 templates/admin.php:705
msgid "Rounded"
msgstr "Redondeado"
#: templates/admin.php:698 templates/admin.php:708
msgid "Stroke"
msgstr "Stroke"
#: templates/admin.php:726
msgid "PREVIEW"
msgstr "Avance"
#: templates/admin.php:727
msgid "SAVE"
msgstr "SALVAR"
#: templates/admin.php:746
msgid "Please create cookies policy page and enter URL below."
msgstr "Por favor, cree la página de la Política de cookies e ingrese la URL a continuación."
#: templates/admin.php:750
msgid "Enable Policy:"
msgstr "Habilitar la política:"
#: templates/admin.php:767
msgid "Cookie Policy and declaration URL:"
msgstr "Política de cookies y URL DE DECLARACIÓN:"
#: templates/admin.php:770
msgid "Policy URL"
msgstr "URL de política"
#: templates/admin.php:777
msgid "Save"
msgstr "SALVAR"
#: templates/admin.php:831
msgid "Premium Plan"
msgstr "Plan Premium"
#: templates/admin.php:834 templates/admin.php:1023 templates/admin.php:1032 templates/admin.php:1040
msgid "Only the users with a paid account can avail this feature."
msgstr "Solo los usuarios con una cuenta pagada pueden aprovechar esta función."
#: templates/admin.php:839
msgid "Ok"
msgstr "OK"
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr "seers logo"
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr "Acerca de las cookies"
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr "Leer la política de cookies"
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr "Necesario"
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr "Siempre activo"
#: templates/frontend-popup.php:1774
msgid ""
"Necessary cookies help make a website usable by enabling basic functions like page navigation and access to secure "
"areas of the website. The website cannot function properly without these cookies."
msgstr ""
"Las cookies necesarias ayudan a realizar un sitio web utilizable al permitir las funciones básicas como la navegación "
"de la página y el acceso a áreas seguras del sitio web. El sitio web no puede funcionar correctamente sin estas "
"cookies."
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784 templates/frontend-popup.php:1794
#: templates/frontend-popup.php:1804 templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr "Detalle de las cookies"
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr "Preferencia"
#: templates/frontend-popup.php:1784
msgid ""
"Preference cookies enable a website to remember information that changes the way the website behaves or looks, like "
"your preferred language or the region that you are in."
msgstr ""
"Las cookies de preferencias permiten que un sitio web recuerde la información que cambia la forma en que se comporta o "
"mira el sitio web, como su idioma preferido o la región en la que está."
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr "La estadística"
#: templates/frontend-popup.php:1794
msgid ""
"Statistic cookies help website owners to understand how visitors interact with websites by collecting and reporting "
"information anonymously."
msgstr ""
"Las cookies estadísticas ayudan a los propietarios de sitios web a comprender cómo los visitantes interactúan con los "
"sitios web mediante la recopilación y presentación de información de forma anónima."
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr "El márketing"
#: templates/frontend-popup.php:1804
msgid ""
"Marketing cookies are used to track visitors across websites. The intention is to display ads that are relevant and "
"engaging for the individual user and thereby more valuable for publishers and third-party advertisers."
msgstr ""
"Las cookies de marketing se utilizan para rastrear visitantes en sitios web. La intención es mostrar anuncios que sean "
"relevantes y atractivos para el usuario individual y, por lo tanto, más valiosos para los editores y anunciantes "
"externos."
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr "Desclasificado"
#: templates/frontend-popup.php:1812
msgid ""
"Unclassified cookies are cookies that we are in the process of classifying, together with the providers of individual "
"cookies."
msgstr ""
"Las cookies no clasificadas son cookies que estamos en proceso de clasificar, junto con los proveedores de cookies "
"individuales."
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr "Guardar mis elecciones"
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr "proporcionada por"
#~ msgid "To get your Cookie ID click on Activate"
#~ msgstr "To get your Cookie ID click on Activate"
#~ msgid "Activate"
#~ msgstr "Activate"

View File

@ -0,0 +1,655 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-25 17:21+0500\n"
"PO-Revision-Date: 2022-03-30 04:52-0700\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: es_MX\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: seers-cookie-consent-banner-privacy-policy.pot\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:382
msgid "Quick Feedback"
msgstr "Retroalimentación rápida"
#: inc/seers-cookie-consent-plugin-deactivate.php:383
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr "Si tiene un momento, háganos saber por qué está desactivando:"
#: inc/seers-cookie-consent-plugin-deactivate.php:386 inc/seers-cookie-consent-plugin-deactivate.php:387
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr "El banner no está en el idioma requerido"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "The banner picks up your website language automatically. You can always sign-in on your Seers account"
msgstr "El banner recoge el idioma de su sitio web automáticamente. Siempre puedes iniciar sesión en tu cuenta SEERS"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "and choose the language you like. See the video"
msgstr "y elige el idioma que te guste. Mira el video"
#: inc/seers-cookie-consent-plugin-deactivate.php:391 inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "here"
msgstr "aquí"
#: inc/seers-cookie-consent-plugin-deactivate.php:395 inc/seers-cookie-consent-plugin-deactivate.php:396
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr "Banner no apareció"
#: inc/seers-cookie-consent-plugin-deactivate.php:399 inc/seers-cookie-consent-plugin-deactivate.php:420
msgid "Most of the times the compatibility issue can be fixed very quickly. Please contact"
msgstr "La mayoría de las veces, el problema de compatibilidad se puede fijar muy rápidamente. Por favor contactar"
#: inc/seers-cookie-consent-plugin-deactivate.php:403 inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr "Las cookies no se muestran en la configuración"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid ""
"We are scanning your website and it can take up to 12 hours for Cookies to appear. In a very few cases scanner miss a "
"cookie. This"
msgstr ""
"Estamos escaneando su sitio web y puede demorar hasta 12 horas para que aparezcan cookies. En muy pocos casos, el "
"escáner se pierde una cookie. Esta"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "video"
msgstr "video"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "explains how to add cookies manually."
msgstr "explica cómo agregar cookies manualmente."
#: inc/seers-cookie-consent-plugin-deactivate.php:410 inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr "El banner no coincide con el tema del sitio web"
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "You can fully customize the banner. Please see the video"
msgstr "Puedes personalizar completamente el banner. Por favor vea el video"
#: inc/seers-cookie-consent-plugin-deactivate.php:416 inc/seers-cookie-consent-plugin-deactivate.php:417
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr "El plugin se rompió mi sitio"
#: inc/seers-cookie-consent-plugin-deactivate.php:424 inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr "He encontrado un mejor complemento"
#: inc/seers-cookie-consent-plugin-deactivate.php:427
msgid "Plugin name"
msgstr "Nombre del plugin"
#: inc/seers-cookie-consent-plugin-deactivate.php:430
msgid "The plugin is great, but i need specific feature that you do not support."
msgstr "El complemento es excelente, pero necesito una característica específica que no admite."
#: inc/seers-cookie-consent-plugin-deactivate.php:431 inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid "The plugin is great, but i need specific feature that you don't support."
msgstr "El complemento es genial, pero necesito una característica específica que no soporta."
#: inc/seers-cookie-consent-plugin-deactivate.php:434
msgid "Banner customisation."
msgstr "Personalización de banners."
#: inc/seers-cookie-consent-plugin-deactivate.php:438 inc/seers-cookie-consent-plugin-deactivate.php:439
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr "Otro"
#: inc/seers-cookie-consent-plugin-deactivate.php:442
msgid "Kindly tell us the reason so we can improve."
msgstr "Por favor, dinos la razón para que podamos mejorar."
#: inc/seers-cookie-consent-plugin-deactivate.php:445
msgid "Submit & Deactivate"
msgstr "Enviar y desactivar"
#: inc/seers-cookie-consent-plugin-deactivate.php:446
msgid "Cancel"
msgstr "Cancelar"
#: inc/seers-cookie-consent-plugin-deactivate.php:451
msgid "Skip & Deactivate"
msgstr "Saltar y desactivar"
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr "Descartar este aviso."
#: seers-cookie-consent-banner-privacy-policy.php:135 templates/admin.php:97
msgid "Settings"
msgstr "Ajustes"
#: seers-cookie-consent-banner-privacy-policy.php:141
msgid "Upgrade Premium"
msgstr "Actualización premium"
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:514 templates/frontend-popup.php:1738
#: templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr "Política de cookies agregada con éxito"
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:558 templates/admin.php:559
#: templates/admin.php:561 templates/frontend-popup.php:1740 templates/frontend-popup.php:1765
msgid "Allow All"
msgstr "Permitir a todos"
#: seers-cookie-consent-banner-privacy-policy.php:294 templates/admin.php:589 templates/admin.php:590
#: templates/admin.php:592 templates/frontend-popup.php:1740 templates/frontend-popup.php:1766
msgid "Disable All"
msgstr "Desactivar todo"
#: seers-cookie-consent-banner-privacy-policy.php:295 templates/admin.php:621 templates/frontend-popup.php:1740
msgid "Preference"
msgstr "Centro de configuración"
#: seers-cookie-consent-banner-privacy-policy.php:418 seers-cookie-consent-banner-privacy-policy.php:446
#: seers-cookie-consent-banner-privacy-policy.php:452
msgid "Cookies policy added successfully."
msgstr "Política de cookies agregada con éxito."
#: seers-cookie-consent-banner-privacy-policy.php:421
msgid "Some thing went wrong. Please check url and try again"
msgstr "Algo salió mal. Por favor, compruebe la URL y vuelva a intentarlo"
#: seers-cookie-consent-banner-privacy-policy.php:675
msgid "Some thing went wrong."
msgstr "Algo salió mal."
#: seers-cookie-consent-banner-privacy-policy.php:819
msgid "Settings has been updated successfully"
msgstr "Los ajustes se han actualizado correctamente"
#: templates/admin.php:92 templates/admin.php:841
msgid "Account Setup"
msgstr "Configuracion de cuenta"
#: templates/admin.php:100
msgid "Policy"
msgstr "Política"
#: templates/admin.php:104
msgid "User Guide"
msgstr "Guía del usuario"
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr "Se activa su banner de consentimiento de cookie de Seers."
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr "Su banner de consentimiento de cookie seers no está activado porque"
#: templates/admin.php:134
msgid "Email"
msgstr "Correo electrónico"
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr "Estoy de acuerdo con Seers"
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr "Términos y Condiciones"
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr "y"
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr "Política de privacidad"
#: templates/admin.php:154 templates/admin.php:172
msgid "I agree Seers to use my email and url to create an account and power the cookie banner."
msgstr "Acepto que Seers utilice mi correo electrónico y url para crear una cuenta y alimentar el banner de cookies."
#: templates/admin.php:178
msgid "Create Account"
msgstr "Crear una cuenta"
#: templates/admin.php:181
msgid "Cookie ID"
msgstr "Cookie ID"
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr "Seers Cookie ID se recibirá automáticamente después de la creación de la cuenta"
#: templates/admin.php:197
msgid "Powering all your"
msgstr "Alimentando todos sus"
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr "Privacidad y; Necesidades de seguridad de datos"
#: templates/admin.php:199
msgid "Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy compliance tools,"
msgstr "Obtener acceso a una amplia gama de GDPR, PECR, CCPA y; Herramientas de cumplimiento de la ePrivacía,"
#: templates/admin.php:200
msgid "all"
msgstr "todos"
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
"diseñado para eliminar la molestia de cumplir con los nuevos datos.\n"
"regulaciones de protección."
#: templates/admin.php:206
msgid "Policies Pack"
msgstr "Paquete de políticas"
#: templates/admin.php:207
msgid "Templates Pack"
msgstr "Paquete de plantillas"
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr "El personal del GDPR ETRAING"
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr "Galería de consentimiento de cookies"
#: templates/admin.php:212
msgid "DPIA"
msgstr "Dpia"
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr "Auditoría de gdpr"
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr "Ciberseguridad"
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr "Gestión de solicitudes de asignatura"
#: templates/admin.php:217
msgid "START FREE"
msgstr "Empezar gratis"
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
"Privacidad de datos y; \n"
" Cumplimiento. Resuelto"
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
"Trust Worlds Liderar la plataforma de privacidad y consentimiento de consentimiento para ayudar a las empresas a "
"cumplir\n"
" con "
"GDPR, PECR, CCPA y EPRIVACY"
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr "Empezar a la prima hoy"
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr "Plan premium SEERS"
#: templates/admin.php:232
msgid "Branding"
msgstr "Marca"
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr "Multi lingual"
#: templates/admin.php:234
msgid "Consent Log"
msgstr "Registro de consentimiento"
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr "Política de cookies"
#: templates/admin.php:236
msgid "Prior Consent"
msgstr "Consentimiento previo"
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr "6+ diseños de diseño"
#: templates/admin.php:238
msgid "Customer Support"
msgstr "Atención al cliente"
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr "Personalización de banners"
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr "Tabla de declaración de cookies"
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
"\"Empezar la prima\n"
" HOY DIA\""
#: templates/admin.php:255
msgid "Banner Settings"
msgstr "Configuraciones de banner"
#: templates/admin.php:260
msgid "Banner"
msgstr "Bandera"
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr "Habilitar / deshabilitar banner de cookies"
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr "Caducidad de cookies"
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr "Establezca su cookie de consentimiento que caduque en días."
#: templates/admin.php:291
msgid "Language"
msgstr "Idioma"
#: templates/admin.php:291
msgid "Choose a language for the banner Settings > General."
msgstr "Elija un idioma para el banner Ajustes > Generales."
#: templates/admin.php:475
msgid "Show Badge"
msgstr "Mostrar insignia"
#: templates/admin.php:475
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr "Muestre una placa para que la bandera de la cookie aparezca después del consentimiento."
#: templates/admin.php:498
msgid "Visual Settings"
msgstr "Ajustes visuales"
#: templates/admin.php:503
msgid "Banner Text"
msgstr "Texto de banner"
#: templates/admin.php:503
msgid "Text to appear on the banner:"
msgstr "Texto para aparecer en el banner:"
#: templates/admin.php:506 templates/admin.php:524
msgid "Colour"
msgstr "Color"
#: templates/admin.php:506
msgid "The text colour to appear on the banner:"
msgstr "El color de texto para aparecer en el banner:"
#: templates/admin.php:521
msgid "Banner Background"
msgstr "Fondo de banner"
#: templates/admin.php:521
msgid "You can change the background colour of the banner:"
msgstr "Puedes cambiar el color de fondo del banner:"
#: templates/admin.php:524
msgid "The background colour of the banner:"
msgstr "El color de fondo de la bandera:"
#: templates/admin.php:538
msgid "Accept Button"
msgstr "Aceptar botón"
#: templates/admin.php:538
msgid "You can change text colour, button colour and text of the 'Accept All' button"
msgstr "Puede cambiar el color del texto, el color del botón y el texto del botón 'Aceptar todo'"
#: templates/admin.php:541 templates/admin.php:572 templates/admin.php:603
msgid "Text Colour"
msgstr "Color de texto"
#: templates/admin.php:541
msgid "The text colour to appear on the 'Accept All' button:"
msgstr "El color de texto a aparecer en el botón 'Aceptar todo':"
#: templates/admin.php:551 templates/admin.php:582 templates/admin.php:613
msgid "Button Colour"
msgstr "Color botón"
#: templates/admin.php:551
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr "El color 'acepte todo' botón para aparecer en el banner:"
#: templates/admin.php:569
msgid "Reject Button"
msgstr "Botón de rechazo"
#: templates/admin.php:569
msgid "You can change text colour, button colour and text of the 'Reject All' button"
msgstr "Puede cambiar el color de texto, el color del botón y el texto del botón 'Rechazar todos'"
#: templates/admin.php:572
msgid "The text colour to appear on the 'Reject All' button:"
msgstr "El color de texto para aparecer en el botón 'Rechazar todos':"
#: templates/admin.php:582
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr "El color del botón 'Rechazar todo' para aparecer en el banner:"
#: templates/admin.php:600
msgid "Setting Button"
msgstr "Botón de ajuste"
#: templates/admin.php:600
msgid "You can change text colour and text of the 'Setting' button"
msgstr "Puede cambiar el color de texto y el texto del botón 'Configuración'"
#: templates/admin.php:603
msgid "The text colour to appear on the 'Setting' button:"
msgstr "El color de texto a aparecer en el botón 'Configuración':"
#: templates/admin.php:613
msgid "The 'Setting' button colour to appear on the banner:"
msgstr "El color del botón 'configuración' aparece en el banner:"
#: templates/admin.php:624
msgid "Setting"
msgstr "Ajuste"
#: templates/admin.php:632
msgid "Fonts"
msgstr "Fuentes"
#: templates/admin.php:632
msgid "You can select a font for the text of the banner:"
msgstr "Puede seleccionar una fuente para el texto del banner:"
#: templates/admin.php:684
msgid "Select Button"
msgstr "Botón de selección"
#: templates/admin.php:684
msgid "You can select the shape of the buttons that appear on the banner."
msgstr "Puede seleccionar la forma de los botones que aparecen en el banner."
#: templates/admin.php:688
msgid "Default"
msgstr "Por defecto"
#: templates/admin.php:692 templates/admin.php:702
msgid "Flat"
msgstr "Plano"
#: templates/admin.php:695 templates/admin.php:705
msgid "Rounded"
msgstr "Redondeado"
#: templates/admin.php:698 templates/admin.php:708
msgid "Stroke"
msgstr "Stroke"
#: templates/admin.php:726
msgid "PREVIEW"
msgstr "Avance"
#: templates/admin.php:727
msgid "SAVE"
msgstr "SALVAR"
#: templates/admin.php:746
msgid "Please create cookies policy page and enter URL below."
msgstr "Por favor, cree la página de la Política de cookies e ingrese la URL a continuación."
#: templates/admin.php:750
msgid "Enable Policy:"
msgstr "Habilitar la política:"
#: templates/admin.php:767
msgid "Cookie Policy and declaration URL:"
msgstr "Política de cookies y URL DE DECLARACIÓN:"
#: templates/admin.php:770
msgid "Policy URL"
msgstr "URL de política"
#: templates/admin.php:777
msgid "Save"
msgstr "SALVAR"
#: templates/admin.php:831
msgid "Premium Plan"
msgstr "Plan Premium"
#: templates/admin.php:834 templates/admin.php:1023 templates/admin.php:1032 templates/admin.php:1040
msgid "Only the users with a paid account can avail this feature."
msgstr "Solo los usuarios con una cuenta pagada pueden aprovechar esta función."
#: templates/admin.php:839
msgid "Ok"
msgstr "OK"
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr "seers logo"
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr "Acerca de las cookies"
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr "Leer la política de cookies"
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr "Necesario"
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr "Siempre activo"
#: templates/frontend-popup.php:1774
msgid ""
"Necessary cookies help make a website usable by enabling basic functions like page navigation and access to secure "
"areas of the website. The website cannot function properly without these cookies."
msgstr ""
"Las cookies necesarias ayudan a realizar un sitio web utilizable al permitir las funciones básicas como la navegación "
"de la página y el acceso a áreas seguras del sitio web. El sitio web no puede funcionar correctamente sin estas "
"cookies."
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784 templates/frontend-popup.php:1794
#: templates/frontend-popup.php:1804 templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr "Detalle de las cookies"
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr "Preferencia"
#: templates/frontend-popup.php:1784
msgid ""
"Preference cookies enable a website to remember information that changes the way the website behaves or looks, like "
"your preferred language or the region that you are in."
msgstr ""
"Las cookies de preferencias permiten que un sitio web recuerde la información que cambia la forma en que se comporta o "
"mira el sitio web, como su idioma preferido o la región en la que está."
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr "La estadística"
#: templates/frontend-popup.php:1794
msgid ""
"Statistic cookies help website owners to understand how visitors interact with websites by collecting and reporting "
"information anonymously."
msgstr ""
"Las cookies estadísticas ayudan a los propietarios de sitios web a comprender cómo los visitantes interactúan con los "
"sitios web mediante la recopilación y presentación de información de forma anónima."
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr "El márketing"
#: templates/frontend-popup.php:1804
msgid ""
"Marketing cookies are used to track visitors across websites. The intention is to display ads that are relevant and "
"engaging for the individual user and thereby more valuable for publishers and third-party advertisers."
msgstr ""
"Las cookies de marketing se utilizan para rastrear visitantes en sitios web. La intención es mostrar anuncios que sean "
"relevantes y atractivos para el usuario individual y, por lo tanto, más valiosos para los editores y anunciantes "
"externos."
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr "Desclasificado"
#: templates/frontend-popup.php:1812
msgid ""
"Unclassified cookies are cookies that we are in the process of classifying, together with the providers of individual "
"cookies."
msgstr ""
"Las cookies no clasificadas son cookies que estamos en proceso de clasificar, junto con los proveedores de cookies "
"individuales."
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr "Guardar mis elecciones"
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr "proporcionada por"
#~ msgid "To get your Cookie ID click on Activate"
#~ msgstr "To get your Cookie ID click on Activate"
#~ msgid "Activate"
#~ msgstr "Activate"

View File

@ -0,0 +1,655 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-25 17:21+0500\n"
"PO-Revision-Date: 2022-03-30 04:52-0700\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: es_PE\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: seers-cookie-consent-banner-privacy-policy.pot\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:382
msgid "Quick Feedback"
msgstr "Retroalimentación rápida"
#: inc/seers-cookie-consent-plugin-deactivate.php:383
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr "Si tiene un momento, háganos saber por qué está desactivando:"
#: inc/seers-cookie-consent-plugin-deactivate.php:386 inc/seers-cookie-consent-plugin-deactivate.php:387
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr "El banner no está en el idioma requerido"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "The banner picks up your website language automatically. You can always sign-in on your Seers account"
msgstr "El banner recoge el idioma de su sitio web automáticamente. Siempre puedes iniciar sesión en tu cuenta SEERS"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "and choose the language you like. See the video"
msgstr "y elige el idioma que te guste. Mira el video"
#: inc/seers-cookie-consent-plugin-deactivate.php:391 inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "here"
msgstr "aquí"
#: inc/seers-cookie-consent-plugin-deactivate.php:395 inc/seers-cookie-consent-plugin-deactivate.php:396
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr "Banner no apareció"
#: inc/seers-cookie-consent-plugin-deactivate.php:399 inc/seers-cookie-consent-plugin-deactivate.php:420
msgid "Most of the times the compatibility issue can be fixed very quickly. Please contact"
msgstr "La mayoría de las veces, el problema de compatibilidad se puede fijar muy rápidamente. Por favor contactar"
#: inc/seers-cookie-consent-plugin-deactivate.php:403 inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr "Las cookies no se muestran en la configuración"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid ""
"We are scanning your website and it can take up to 12 hours for Cookies to appear. In a very few cases scanner miss a "
"cookie. This"
msgstr ""
"Estamos escaneando su sitio web y puede demorar hasta 12 horas para que aparezcan cookies. En muy pocos casos, el "
"escáner se pierde una cookie. Esta"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "video"
msgstr "video"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "explains how to add cookies manually."
msgstr "explica cómo agregar cookies manualmente."
#: inc/seers-cookie-consent-plugin-deactivate.php:410 inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr "El banner no coincide con el tema del sitio web"
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "You can fully customize the banner. Please see the video"
msgstr "Puedes personalizar completamente el banner. Por favor vea el video"
#: inc/seers-cookie-consent-plugin-deactivate.php:416 inc/seers-cookie-consent-plugin-deactivate.php:417
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr "El plugin se rompió mi sitio"
#: inc/seers-cookie-consent-plugin-deactivate.php:424 inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr "He encontrado un mejor complemento"
#: inc/seers-cookie-consent-plugin-deactivate.php:427
msgid "Plugin name"
msgstr "Nombre del plugin"
#: inc/seers-cookie-consent-plugin-deactivate.php:430
msgid "The plugin is great, but i need specific feature that you do not support."
msgstr "El complemento es excelente, pero necesito una característica específica que no admite."
#: inc/seers-cookie-consent-plugin-deactivate.php:431 inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid "The plugin is great, but i need specific feature that you don't support."
msgstr "El complemento es genial, pero necesito una característica específica que no soporta."
#: inc/seers-cookie-consent-plugin-deactivate.php:434
msgid "Banner customisation."
msgstr "Personalización de banners."
#: inc/seers-cookie-consent-plugin-deactivate.php:438 inc/seers-cookie-consent-plugin-deactivate.php:439
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr "Otro"
#: inc/seers-cookie-consent-plugin-deactivate.php:442
msgid "Kindly tell us the reason so we can improve."
msgstr "Por favor, dinos la razón para que podamos mejorar."
#: inc/seers-cookie-consent-plugin-deactivate.php:445
msgid "Submit & Deactivate"
msgstr "Enviar y desactivar"
#: inc/seers-cookie-consent-plugin-deactivate.php:446
msgid "Cancel"
msgstr "Cancelar"
#: inc/seers-cookie-consent-plugin-deactivate.php:451
msgid "Skip & Deactivate"
msgstr "Saltar y desactivar"
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr "Descartar este aviso."
#: seers-cookie-consent-banner-privacy-policy.php:135 templates/admin.php:97
msgid "Settings"
msgstr "Ajustes"
#: seers-cookie-consent-banner-privacy-policy.php:141
msgid "Upgrade Premium"
msgstr "Actualización premium"
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:514 templates/frontend-popup.php:1738
#: templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr "Política de cookies agregada con éxito"
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:558 templates/admin.php:559
#: templates/admin.php:561 templates/frontend-popup.php:1740 templates/frontend-popup.php:1765
msgid "Allow All"
msgstr "Permitir a todos"
#: seers-cookie-consent-banner-privacy-policy.php:294 templates/admin.php:589 templates/admin.php:590
#: templates/admin.php:592 templates/frontend-popup.php:1740 templates/frontend-popup.php:1766
msgid "Disable All"
msgstr "Desactivar todo"
#: seers-cookie-consent-banner-privacy-policy.php:295 templates/admin.php:621 templates/frontend-popup.php:1740
msgid "Preference"
msgstr "Centro de configuración"
#: seers-cookie-consent-banner-privacy-policy.php:418 seers-cookie-consent-banner-privacy-policy.php:446
#: seers-cookie-consent-banner-privacy-policy.php:452
msgid "Cookies policy added successfully."
msgstr "Política de cookies agregada con éxito."
#: seers-cookie-consent-banner-privacy-policy.php:421
msgid "Some thing went wrong. Please check url and try again"
msgstr "Algo salió mal. Por favor, compruebe la URL y vuelva a intentarlo"
#: seers-cookie-consent-banner-privacy-policy.php:675
msgid "Some thing went wrong."
msgstr "Algo salió mal."
#: seers-cookie-consent-banner-privacy-policy.php:819
msgid "Settings has been updated successfully"
msgstr "Los ajustes se han actualizado correctamente"
#: templates/admin.php:92 templates/admin.php:841
msgid "Account Setup"
msgstr "Configuracion de cuenta"
#: templates/admin.php:100
msgid "Policy"
msgstr "Política"
#: templates/admin.php:104
msgid "User Guide"
msgstr "Guía del usuario"
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr "Se activa su banner de consentimiento de cookie de Seers."
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr "Su banner de consentimiento de cookie seers no está activado porque"
#: templates/admin.php:134
msgid "Email"
msgstr "Correo electrónico"
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr "Estoy de acuerdo con Seers"
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr "Términos y Condiciones"
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr "y"
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr "Política de privacidad"
#: templates/admin.php:154 templates/admin.php:172
msgid "I agree Seers to use my email and url to create an account and power the cookie banner."
msgstr "Acepto que Seers utilice mi correo electrónico y url para crear una cuenta y alimentar el banner de cookies."
#: templates/admin.php:178
msgid "Create Account"
msgstr "Crear una cuenta"
#: templates/admin.php:181
msgid "Cookie ID"
msgstr "Cookie ID"
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr "Seers Cookie ID se recibirá automáticamente después de la creación de la cuenta"
#: templates/admin.php:197
msgid "Powering all your"
msgstr "Alimentando todos sus"
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr "Privacidad y; Necesidades de seguridad de datos"
#: templates/admin.php:199
msgid "Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy compliance tools,"
msgstr "Obtener acceso a una amplia gama de GDPR, PECR, CCPA y; Herramientas de cumplimiento de la ePrivacía,"
#: templates/admin.php:200
msgid "all"
msgstr "todos"
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
"diseñado para eliminar la molestia de cumplir con los nuevos datos.\n"
"regulaciones de protección."
#: templates/admin.php:206
msgid "Policies Pack"
msgstr "Paquete de políticas"
#: templates/admin.php:207
msgid "Templates Pack"
msgstr "Paquete de plantillas"
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr "El personal del GDPR ETRAING"
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr "Galería de consentimiento de cookies"
#: templates/admin.php:212
msgid "DPIA"
msgstr "Dpia"
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr "Auditoría de gdpr"
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr "Ciberseguridad"
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr "Gestión de solicitudes de asignatura"
#: templates/admin.php:217
msgid "START FREE"
msgstr "Empezar gratis"
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
"Privacidad de datos y; \n"
" Cumplimiento. Resuelto"
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
"Trust Worlds Liderar la plataforma de privacidad y consentimiento de consentimiento para ayudar a las empresas a "
"cumplir\n"
" con "
"GDPR, PECR, CCPA y EPRIVACY"
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr "Empezar a la prima hoy"
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr "Plan premium SEERS"
#: templates/admin.php:232
msgid "Branding"
msgstr "Marca"
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr "Multi lingual"
#: templates/admin.php:234
msgid "Consent Log"
msgstr "Registro de consentimiento"
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr "Política de cookies"
#: templates/admin.php:236
msgid "Prior Consent"
msgstr "Consentimiento previo"
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr "6+ diseños de diseño"
#: templates/admin.php:238
msgid "Customer Support"
msgstr "Atención al cliente"
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr "Personalización de banners"
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr "Tabla de declaración de cookies"
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
"\"Empezar la prima\n"
" HOY DIA\""
#: templates/admin.php:255
msgid "Banner Settings"
msgstr "Configuraciones de banner"
#: templates/admin.php:260
msgid "Banner"
msgstr "Bandera"
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr "Habilitar / deshabilitar banner de cookies"
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr "Caducidad de cookies"
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr "Establezca su cookie de consentimiento que caduque en días."
#: templates/admin.php:291
msgid "Language"
msgstr "Idioma"
#: templates/admin.php:291
msgid "Choose a language for the banner Settings > General."
msgstr "Elija un idioma para el banner. Ajustes > Generales."
#: templates/admin.php:475
msgid "Show Badge"
msgstr "Mostrar insignia"
#: templates/admin.php:475
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr "Muestre una placa para que la bandera de la cookie aparezca después del consentimiento."
#: templates/admin.php:498
msgid "Visual Settings"
msgstr "Ajustes visuales"
#: templates/admin.php:503
msgid "Banner Text"
msgstr "Texto de banner"
#: templates/admin.php:503
msgid "Text to appear on the banner:"
msgstr "Texto para aparecer en el banner:"
#: templates/admin.php:506 templates/admin.php:524
msgid "Colour"
msgstr "Color"
#: templates/admin.php:506
msgid "The text colour to appear on the banner:"
msgstr "El color de texto para aparecer en el banner:"
#: templates/admin.php:521
msgid "Banner Background"
msgstr "Fondo de banner"
#: templates/admin.php:521
msgid "You can change the background colour of the banner:"
msgstr "Puedes cambiar el color de fondo del banner:"
#: templates/admin.php:524
msgid "The background colour of the banner:"
msgstr "El color de fondo de la bandera:"
#: templates/admin.php:538
msgid "Accept Button"
msgstr "Aceptar botón"
#: templates/admin.php:538
msgid "You can change text colour, button colour and text of the 'Accept All' button"
msgstr "Puede cambiar el color del texto, el color del botón y el texto del botón 'Aceptar todo'"
#: templates/admin.php:541 templates/admin.php:572 templates/admin.php:603
msgid "Text Colour"
msgstr "Color de texto"
#: templates/admin.php:541
msgid "The text colour to appear on the 'Accept All' button:"
msgstr "El color de texto a aparecer en el botón 'Aceptar todo':"
#: templates/admin.php:551 templates/admin.php:582 templates/admin.php:613
msgid "Button Colour"
msgstr "Color botón"
#: templates/admin.php:551
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr "El color 'acepte todo' botón para aparecer en el banner:"
#: templates/admin.php:569
msgid "Reject Button"
msgstr "Botón de rechazo"
#: templates/admin.php:569
msgid "You can change text colour, button colour and text of the 'Reject All' button"
msgstr "Puede cambiar el color de texto, el color del botón y el texto del botón 'Rechazar todos'"
#: templates/admin.php:572
msgid "The text colour to appear on the 'Reject All' button:"
msgstr "El color de texto para aparecer en el botón 'Rechazar todos':"
#: templates/admin.php:582
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr "El color del botón 'Rechazar todo' para aparecer en el banner:"
#: templates/admin.php:600
msgid "Setting Button"
msgstr "Botón de ajuste"
#: templates/admin.php:600
msgid "You can change text colour and text of the 'Setting' button"
msgstr "Puede cambiar el color de texto y el texto del botón 'Configuración'"
#: templates/admin.php:603
msgid "The text colour to appear on the 'Setting' button:"
msgstr "El color de texto a aparecer en el botón 'Configuración':"
#: templates/admin.php:613
msgid "The 'Setting' button colour to appear on the banner:"
msgstr "El color del botón 'configuración' aparece en el banner:"
#: templates/admin.php:624
msgid "Setting"
msgstr "Ajuste"
#: templates/admin.php:632
msgid "Fonts"
msgstr "Fuentes"
#: templates/admin.php:632
msgid "You can select a font for the text of the banner:"
msgstr "Puede seleccionar una fuente para el texto del banner:"
#: templates/admin.php:684
msgid "Select Button"
msgstr "Botón de selección"
#: templates/admin.php:684
msgid "You can select the shape of the buttons that appear on the banner."
msgstr "Puede seleccionar la forma de los botones que aparecen en el banner."
#: templates/admin.php:688
msgid "Default"
msgstr "Por defecto"
#: templates/admin.php:692 templates/admin.php:702
msgid "Flat"
msgstr "Plano"
#: templates/admin.php:695 templates/admin.php:705
msgid "Rounded"
msgstr "Redondeado"
#: templates/admin.php:698 templates/admin.php:708
msgid "Stroke"
msgstr "Stroke"
#: templates/admin.php:726
msgid "PREVIEW"
msgstr "Avance"
#: templates/admin.php:727
msgid "SAVE"
msgstr "SALVAR"
#: templates/admin.php:746
msgid "Please create cookies policy page and enter URL below."
msgstr "Por favor, cree la página de la Política de cookies e ingrese la URL a continuación."
#: templates/admin.php:750
msgid "Enable Policy:"
msgstr "Habilitar la política:"
#: templates/admin.php:767
msgid "Cookie Policy and declaration URL:"
msgstr "Política de cookies y URL DE DECLARACIÓN:"
#: templates/admin.php:770
msgid "Policy URL"
msgstr "URL de política"
#: templates/admin.php:777
msgid "Save"
msgstr "SALVAR"
#: templates/admin.php:831
msgid "Premium Plan"
msgstr "Plan Premium"
#: templates/admin.php:834 templates/admin.php:1023 templates/admin.php:1032 templates/admin.php:1040
msgid "Only the users with a paid account can avail this feature."
msgstr "Solo los usuarios con una cuenta pagada pueden aprovechar esta función."
#: templates/admin.php:839
msgid "Ok"
msgstr "OK"
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr "seers logo"
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr "Acerca de las cookies"
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr "Leer la política de cookies"
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr "Necesario"
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr "Siempre activo"
#: templates/frontend-popup.php:1774
msgid ""
"Necessary cookies help make a website usable by enabling basic functions like page navigation and access to secure "
"areas of the website. The website cannot function properly without these cookies."
msgstr ""
"Las cookies necesarias ayudan a realizar un sitio web utilizable al permitir las funciones básicas como la navegación "
"de la página y el acceso a áreas seguras del sitio web. El sitio web no puede funcionar correctamente sin estas "
"cookies."
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784 templates/frontend-popup.php:1794
#: templates/frontend-popup.php:1804 templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr "Detalle de las cookies"
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr "Preferencia"
#: templates/frontend-popup.php:1784
msgid ""
"Preference cookies enable a website to remember information that changes the way the website behaves or looks, like "
"your preferred language or the region that you are in."
msgstr ""
"Las cookies de preferencias permiten que un sitio web recuerde la información que cambia la forma en que se comporta o "
"mira el sitio web, como su idioma preferido o la región en la que está."
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr "La estadística"
#: templates/frontend-popup.php:1794
msgid ""
"Statistic cookies help website owners to understand how visitors interact with websites by collecting and reporting "
"information anonymously."
msgstr ""
"Las cookies estadísticas ayudan a los propietarios de sitios web a comprender cómo los visitantes interactúan con los "
"sitios web mediante la recopilación y presentación de información de forma anónima."
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr "El márketing"
#: templates/frontend-popup.php:1804
msgid ""
"Marketing cookies are used to track visitors across websites. The intention is to display ads that are relevant and "
"engaging for the individual user and thereby more valuable for publishers and third-party advertisers."
msgstr ""
"Las cookies de marketing se utilizan para rastrear visitantes en sitios web. La intención es mostrar anuncios que sean "
"relevantes y atractivos para el usuario individual y, por lo tanto, más valiosos para los editores y anunciantes "
"externos."
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr "Desclasificado"
#: templates/frontend-popup.php:1812
msgid ""
"Unclassified cookies are cookies that we are in the process of classifying, together with the providers of individual "
"cookies."
msgstr ""
"Las cookies no clasificadas son cookies que estamos en proceso de clasificar, junto con los proveedores de cookies "
"individuales."
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr "Guardar mis elecciones"
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr "proporcionada por"
#~ msgid "To get your Cookie ID click on Activate"
#~ msgstr "To get your Cookie ID click on Activate"
#~ msgid "Activate"
#~ msgstr "Activate"

View File

@ -0,0 +1,655 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-25 17:21+0500\n"
"PO-Revision-Date: 2022-03-30 04:52-0700\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: es_PR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: seers-cookie-consent-banner-privacy-policy.pot\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:382
msgid "Quick Feedback"
msgstr "Retroalimentación rápida"
#: inc/seers-cookie-consent-plugin-deactivate.php:383
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr "Si tiene un momento, háganos saber por qué está desactivando:"
#: inc/seers-cookie-consent-plugin-deactivate.php:386 inc/seers-cookie-consent-plugin-deactivate.php:387
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr "El banner no está en el idioma requerido"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "The banner picks up your website language automatically. You can always sign-in on your Seers account"
msgstr "El banner recoge el idioma de su sitio web automáticamente. Siempre puedes iniciar sesión en tu cuenta SEERS"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "and choose the language you like. See the video"
msgstr "y elige el idioma que te guste. Mira el video"
#: inc/seers-cookie-consent-plugin-deactivate.php:391 inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "here"
msgstr "aquí"
#: inc/seers-cookie-consent-plugin-deactivate.php:395 inc/seers-cookie-consent-plugin-deactivate.php:396
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr "Banner no apareció"
#: inc/seers-cookie-consent-plugin-deactivate.php:399 inc/seers-cookie-consent-plugin-deactivate.php:420
msgid "Most of the times the compatibility issue can be fixed very quickly. Please contact"
msgstr "La mayoría de las veces, el problema de compatibilidad se puede fijar muy rápidamente. Por favor contactar"
#: inc/seers-cookie-consent-plugin-deactivate.php:403 inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr "Las cookies no se muestran en la configuración"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid ""
"We are scanning your website and it can take up to 12 hours for Cookies to appear. In a very few cases scanner miss a "
"cookie. This"
msgstr ""
"Estamos escaneando su sitio web y puede demorar hasta 12 horas para que aparezcan cookies. En muy pocos casos, el "
"escáner se pierde una cookie. Esta"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "video"
msgstr "video"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "explains how to add cookies manually."
msgstr "explica cómo agregar cookies manualmente."
#: inc/seers-cookie-consent-plugin-deactivate.php:410 inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr "El banner no coincide con el tema del sitio web"
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "You can fully customize the banner. Please see the video"
msgstr "Puedes personalizar completamente el banner. Por favor vea el video"
#: inc/seers-cookie-consent-plugin-deactivate.php:416 inc/seers-cookie-consent-plugin-deactivate.php:417
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr "El plugin se rompió mi sitio"
#: inc/seers-cookie-consent-plugin-deactivate.php:424 inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr "He encontrado un mejor complemento"
#: inc/seers-cookie-consent-plugin-deactivate.php:427
msgid "Plugin name"
msgstr "Nombre del plugin"
#: inc/seers-cookie-consent-plugin-deactivate.php:430
msgid "The plugin is great, but i need specific feature that you do not support."
msgstr "El complemento es excelente, pero necesito una característica específica que no admite."
#: inc/seers-cookie-consent-plugin-deactivate.php:431 inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid "The plugin is great, but i need specific feature that you don't support."
msgstr "El complemento es genial, pero necesito una característica específica que no soporta."
#: inc/seers-cookie-consent-plugin-deactivate.php:434
msgid "Banner customisation."
msgstr "Personalización de banners."
#: inc/seers-cookie-consent-plugin-deactivate.php:438 inc/seers-cookie-consent-plugin-deactivate.php:439
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr "Otro"
#: inc/seers-cookie-consent-plugin-deactivate.php:442
msgid "Kindly tell us the reason so we can improve."
msgstr "Por favor, dinos la razón para que podamos mejorar."
#: inc/seers-cookie-consent-plugin-deactivate.php:445
msgid "Submit & Deactivate"
msgstr "Enviar y desactivar"
#: inc/seers-cookie-consent-plugin-deactivate.php:446
msgid "Cancel"
msgstr "Cancelar"
#: inc/seers-cookie-consent-plugin-deactivate.php:451
msgid "Skip & Deactivate"
msgstr "Saltar y desactivar"
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr "Descartar este aviso."
#: seers-cookie-consent-banner-privacy-policy.php:135 templates/admin.php:97
msgid "Settings"
msgstr "Ajustes"
#: seers-cookie-consent-banner-privacy-policy.php:141
msgid "Upgrade Premium"
msgstr "Actualización premium"
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:514 templates/frontend-popup.php:1738
#: templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr "Política de cookies agregada con éxito"
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:558 templates/admin.php:559
#: templates/admin.php:561 templates/frontend-popup.php:1740 templates/frontend-popup.php:1765
msgid "Allow All"
msgstr "Permitir a todos"
#: seers-cookie-consent-banner-privacy-policy.php:294 templates/admin.php:589 templates/admin.php:590
#: templates/admin.php:592 templates/frontend-popup.php:1740 templates/frontend-popup.php:1766
msgid "Disable All"
msgstr "Desactivar todo"
#: seers-cookie-consent-banner-privacy-policy.php:295 templates/admin.php:621 templates/frontend-popup.php:1740
msgid "Preference"
msgstr "Centro de configuración"
#: seers-cookie-consent-banner-privacy-policy.php:418 seers-cookie-consent-banner-privacy-policy.php:446
#: seers-cookie-consent-banner-privacy-policy.php:452
msgid "Cookies policy added successfully."
msgstr "Política de cookies agregada con éxito."
#: seers-cookie-consent-banner-privacy-policy.php:421
msgid "Some thing went wrong. Please check url and try again"
msgstr "Algo salió mal. Por favor, compruebe la URL y vuelva a intentarlo"
#: seers-cookie-consent-banner-privacy-policy.php:675
msgid "Some thing went wrong."
msgstr "Algo salió mal."
#: seers-cookie-consent-banner-privacy-policy.php:819
msgid "Settings has been updated successfully"
msgstr "Los ajustes se han actualizado correctamente"
#: templates/admin.php:92 templates/admin.php:841
msgid "Account Setup"
msgstr "Configuracion de cuenta"
#: templates/admin.php:100
msgid "Policy"
msgstr "Política"
#: templates/admin.php:104
msgid "User Guide"
msgstr "Guía del usuario"
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr "Se activa su banner de consentimiento de cookie de Seers."
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr "Su banner de consentimiento de cookie seers no está activado porque"
#: templates/admin.php:134
msgid "Email"
msgstr "Correo electrónico"
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr "Estoy de acuerdo con Seers"
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr "Términos y Condiciones"
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr "y"
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr "Política de privacidad"
#: templates/admin.php:154 templates/admin.php:172
msgid "I agree Seers to use my email and url to create an account and power the cookie banner."
msgstr "Acepto que Seers utilice mi correo electrónico y url para crear una cuenta y alimentar el banner de cookies."
#: templates/admin.php:178
msgid "Create Account"
msgstr "Crear una cuenta"
#: templates/admin.php:181
msgid "Cookie ID"
msgstr "Cookie ID"
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr "Seers Cookie ID se recibirá automáticamente después de la creación de la cuenta"
#: templates/admin.php:197
msgid "Powering all your"
msgstr "Alimentando todos sus"
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr "Privacidad y; Necesidades de seguridad de datos"
#: templates/admin.php:199
msgid "Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy compliance tools,"
msgstr "Obtener acceso a una amplia gama de GDPR, PECR, CCPA y; Herramientas de cumplimiento de la ePrivacía,"
#: templates/admin.php:200
msgid "all"
msgstr "todos"
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
"diseñado para eliminar la molestia de cumplir con los nuevos datos.\n"
"regulaciones de protección."
#: templates/admin.php:206
msgid "Policies Pack"
msgstr "Paquete de políticas"
#: templates/admin.php:207
msgid "Templates Pack"
msgstr "Paquete de plantillas"
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr "El personal del GDPR ETRAING"
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr "Galería de consentimiento de cookies"
#: templates/admin.php:212
msgid "DPIA"
msgstr "Dpia"
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr "Auditoría de gdpr"
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr "Ciberseguridad"
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr "Gestión de solicitudes de asignatura"
#: templates/admin.php:217
msgid "START FREE"
msgstr "Empezar gratis"
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
"Privacidad de datos y; \n"
" Cumplimiento. Resuelto"
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
"Trust Worlds Liderar la plataforma de privacidad y consentimiento de consentimiento para ayudar a las empresas a "
"cumplir\n"
" con "
"GDPR, PECR, CCPA y EPRIVACY"
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr "Empezar a la prima hoy"
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr "Plan premium SEERS"
#: templates/admin.php:232
msgid "Branding"
msgstr "Marca"
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr "Multi lingual"
#: templates/admin.php:234
msgid "Consent Log"
msgstr "Registro de consentimiento"
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr "Política de cookies"
#: templates/admin.php:236
msgid "Prior Consent"
msgstr "Consentimiento previo"
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr "6+ diseños de diseño"
#: templates/admin.php:238
msgid "Customer Support"
msgstr "Atención al cliente"
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr "Personalización de banners"
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr "Tabla de declaración de cookies"
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
"\"Empezar la prima\n"
" HOY DIA\""
#: templates/admin.php:255
msgid "Banner Settings"
msgstr "Configuraciones de banner"
#: templates/admin.php:260
msgid "Banner"
msgstr "Bandera"
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr "Habilitar / deshabilitar banner de cookies"
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr "Caducidad de cookies"
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr "Establezca su cookie de consentimiento que caduque en días."
#: templates/admin.php:291
msgid "Language"
msgstr "Idioma"
#: templates/admin.php:291
msgid "Choose a language for the banner Settings > General."
msgstr "Elija un idioma para el banner Ajustes > Generales."
#: templates/admin.php:475
msgid "Show Badge"
msgstr "Mostrar insignia"
#: templates/admin.php:475
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr "Muestre una placa para que la bandera de la cookie aparezca después del consentimiento."
#: templates/admin.php:498
msgid "Visual Settings"
msgstr "Ajustes visuales"
#: templates/admin.php:503
msgid "Banner Text"
msgstr "Texto de banner"
#: templates/admin.php:503
msgid "Text to appear on the banner:"
msgstr "Texto para aparecer en el banner:"
#: templates/admin.php:506 templates/admin.php:524
msgid "Colour"
msgstr "Color"
#: templates/admin.php:506
msgid "The text colour to appear on the banner:"
msgstr "El color de texto para aparecer en el banner:"
#: templates/admin.php:521
msgid "Banner Background"
msgstr "Fondo de banner"
#: templates/admin.php:521
msgid "You can change the background colour of the banner:"
msgstr "Puedes cambiar el color de fondo del banner:"
#: templates/admin.php:524
msgid "The background colour of the banner:"
msgstr "El color de fondo de la bandera:"
#: templates/admin.php:538
msgid "Accept Button"
msgstr "Aceptar botón"
#: templates/admin.php:538
msgid "You can change text colour, button colour and text of the 'Accept All' button"
msgstr "Puede cambiar el color del texto, el color del botón y el texto del botón 'Aceptar todo'"
#: templates/admin.php:541 templates/admin.php:572 templates/admin.php:603
msgid "Text Colour"
msgstr "Color de texto"
#: templates/admin.php:541
msgid "The text colour to appear on the 'Accept All' button:"
msgstr "El color de texto a aparecer en el botón 'Aceptar todo':"
#: templates/admin.php:551 templates/admin.php:582 templates/admin.php:613
msgid "Button Colour"
msgstr "Color botón"
#: templates/admin.php:551
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr "El color 'acepte todo' botón para aparecer en el banner:"
#: templates/admin.php:569
msgid "Reject Button"
msgstr "Botón de rechazo"
#: templates/admin.php:569
msgid "You can change text colour, button colour and text of the 'Reject All' button"
msgstr "Puede cambiar el color de texto, el color del botón y el texto del botón 'Rechazar todos'"
#: templates/admin.php:572
msgid "The text colour to appear on the 'Reject All' button:"
msgstr "El color de texto para aparecer en el botón 'Rechazar todos':"
#: templates/admin.php:582
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr "El color del botón 'Rechazar todo' para aparecer en el banner:"
#: templates/admin.php:600
msgid "Setting Button"
msgstr "Botón de ajuste"
#: templates/admin.php:600
msgid "You can change text colour and text of the 'Setting' button"
msgstr "Puede cambiar el color de texto y el texto del botón 'Configuración'"
#: templates/admin.php:603
msgid "The text colour to appear on the 'Setting' button:"
msgstr "El color de texto a aparecer en el botón 'Configuración':"
#: templates/admin.php:613
msgid "The 'Setting' button colour to appear on the banner:"
msgstr "El color del botón 'configuración' aparece en el banner:"
#: templates/admin.php:624
msgid "Setting"
msgstr "Ajuste"
#: templates/admin.php:632
msgid "Fonts"
msgstr "Fuentes"
#: templates/admin.php:632
msgid "You can select a font for the text of the banner:"
msgstr "Puede seleccionar una fuente para el texto del banner:"
#: templates/admin.php:684
msgid "Select Button"
msgstr "Botón de selección"
#: templates/admin.php:684
msgid "You can select the shape of the buttons that appear on the banner."
msgstr "Puede seleccionar la forma de los botones que aparecen en el banner."
#: templates/admin.php:688
msgid "Default"
msgstr "Por defecto"
#: templates/admin.php:692 templates/admin.php:702
msgid "Flat"
msgstr "Plano"
#: templates/admin.php:695 templates/admin.php:705
msgid "Rounded"
msgstr "Redondeado"
#: templates/admin.php:698 templates/admin.php:708
msgid "Stroke"
msgstr "Stroke"
#: templates/admin.php:726
msgid "PREVIEW"
msgstr "Avance"
#: templates/admin.php:727
msgid "SAVE"
msgstr "SALVAR"
#: templates/admin.php:746
msgid "Please create cookies policy page and enter URL below."
msgstr "Por favor, cree la página de la Política de cookies e ingrese la URL a continuación."
#: templates/admin.php:750
msgid "Enable Policy:"
msgstr "Habilitar la política:"
#: templates/admin.php:767
msgid "Cookie Policy and declaration URL:"
msgstr "Política de cookies y URL DE DECLARACIÓN:"
#: templates/admin.php:770
msgid "Policy URL"
msgstr "URL de política"
#: templates/admin.php:777
msgid "Save"
msgstr "SALVAR"
#: templates/admin.php:831
msgid "Premium Plan"
msgstr "Plan Premium"
#: templates/admin.php:834 templates/admin.php:1023 templates/admin.php:1032 templates/admin.php:1040
msgid "Only the users with a paid account can avail this feature."
msgstr "Solo los usuarios con una cuenta pagada pueden aprovechar esta función."
#: templates/admin.php:839
msgid "Ok"
msgstr "OK"
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr "seers logo"
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr "Acerca de las cookies"
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr "Leer la política de cookies"
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr "Necesario"
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr "Siempre activo"
#: templates/frontend-popup.php:1774
msgid ""
"Necessary cookies help make a website usable by enabling basic functions like page navigation and access to secure "
"areas of the website. The website cannot function properly without these cookies."
msgstr ""
"Las cookies necesarias ayudan a realizar un sitio web utilizable al permitir las funciones básicas como la navegación "
"de la página y el acceso a áreas seguras del sitio web. El sitio web no puede funcionar correctamente sin estas "
"cookies."
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784 templates/frontend-popup.php:1794
#: templates/frontend-popup.php:1804 templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr "Detalle de las cookies"
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr "Preferencia"
#: templates/frontend-popup.php:1784
msgid ""
"Preference cookies enable a website to remember information that changes the way the website behaves or looks, like "
"your preferred language or the region that you are in."
msgstr ""
"Las cookies de preferencias permiten que un sitio web recuerde la información que cambia la forma en que se comporta o "
"mira el sitio web, como su idioma preferido o la región en la que está."
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr "La estadística"
#: templates/frontend-popup.php:1794
msgid ""
"Statistic cookies help website owners to understand how visitors interact with websites by collecting and reporting "
"information anonymously."
msgstr ""
"Las cookies estadísticas ayudan a los propietarios de sitios web a comprender cómo los visitantes interactúan con los "
"sitios web mediante la recopilación y presentación de información de forma anónima."
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr "El márketing"
#: templates/frontend-popup.php:1804
msgid ""
"Marketing cookies are used to track visitors across websites. The intention is to display ads that are relevant and "
"engaging for the individual user and thereby more valuable for publishers and third-party advertisers."
msgstr ""
"Las cookies de marketing se utilizan para rastrear visitantes en sitios web. La intención es mostrar anuncios que sean "
"relevantes y atractivos para el usuario individual y, por lo tanto, más valiosos para los editores y anunciantes "
"externos."
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr "Desclasificado"
#: templates/frontend-popup.php:1812
msgid ""
"Unclassified cookies are cookies that we are in the process of classifying, together with the providers of individual "
"cookies."
msgstr ""
"Las cookies no clasificadas son cookies que estamos en proceso de clasificar, junto con los proveedores de cookies "
"individuales."
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr "Guardar mis elecciones"
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr "proporcionada por"
#~ msgid "To get your Cookie ID click on Activate"
#~ msgstr "To get your Cookie ID click on Activate"
#~ msgid "Activate"
#~ msgstr "Activate"

View File

@ -0,0 +1,655 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-25 17:21+0500\n"
"PO-Revision-Date: 2022-03-30 04:54-0700\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: es_UY\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: seers-cookie-consent-banner-privacy-policy.pot\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:382
msgid "Quick Feedback"
msgstr "Retroalimentación rápida"
#: inc/seers-cookie-consent-plugin-deactivate.php:383
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr "Si tiene un momento, háganos saber por qué está desactivando:"
#: inc/seers-cookie-consent-plugin-deactivate.php:386 inc/seers-cookie-consent-plugin-deactivate.php:387
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr "El banner no está en el idioma requerido"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "The banner picks up your website language automatically. You can always sign-in on your Seers account"
msgstr "El banner recoge el idioma de su sitio web automáticamente. Siempre puedes iniciar sesión en tu cuenta SEERS"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "and choose the language you like. See the video"
msgstr "y elige el idioma que te guste. Mira el video"
#: inc/seers-cookie-consent-plugin-deactivate.php:391 inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "here"
msgstr "aquí"
#: inc/seers-cookie-consent-plugin-deactivate.php:395 inc/seers-cookie-consent-plugin-deactivate.php:396
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr "Banner no apareció"
#: inc/seers-cookie-consent-plugin-deactivate.php:399 inc/seers-cookie-consent-plugin-deactivate.php:420
msgid "Most of the times the compatibility issue can be fixed very quickly. Please contact"
msgstr "La mayoría de las veces, el problema de compatibilidad se puede fijar muy rápidamente. Por favor contactar"
#: inc/seers-cookie-consent-plugin-deactivate.php:403 inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr "Las cookies no se muestran en la configuración"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid ""
"We are scanning your website and it can take up to 12 hours for Cookies to appear. In a very few cases scanner miss a "
"cookie. This"
msgstr ""
"Estamos escaneando su sitio web y puede demorar hasta 12 horas para que aparezcan cookies. En muy pocos casos, el "
"escáner se pierde una cookie. Esta"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "video"
msgstr "video"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "explains how to add cookies manually."
msgstr "explica cómo agregar cookies manualmente."
#: inc/seers-cookie-consent-plugin-deactivate.php:410 inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr "El banner no coincide con el tema del sitio web"
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "You can fully customize the banner. Please see the video"
msgstr "Puedes personalizar completamente el banner. Por favor vea el video"
#: inc/seers-cookie-consent-plugin-deactivate.php:416 inc/seers-cookie-consent-plugin-deactivate.php:417
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr "El plugin se rompió mi sitio"
#: inc/seers-cookie-consent-plugin-deactivate.php:424 inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr "He encontrado un mejor complemento"
#: inc/seers-cookie-consent-plugin-deactivate.php:427
msgid "Plugin name"
msgstr "Nombre del plugin"
#: inc/seers-cookie-consent-plugin-deactivate.php:430
msgid "The plugin is great, but i need specific feature that you do not support."
msgstr "El complemento es excelente, pero necesito una característica específica que no admite."
#: inc/seers-cookie-consent-plugin-deactivate.php:431 inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid "The plugin is great, but i need specific feature that you don't support."
msgstr "El complemento es genial, pero necesito una característica específica que no soporta."
#: inc/seers-cookie-consent-plugin-deactivate.php:434
msgid "Banner customisation."
msgstr "Personalización de banners."
#: inc/seers-cookie-consent-plugin-deactivate.php:438 inc/seers-cookie-consent-plugin-deactivate.php:439
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr "Otro"
#: inc/seers-cookie-consent-plugin-deactivate.php:442
msgid "Kindly tell us the reason so we can improve."
msgstr "Por favor, dinos la razón para que podamos mejorar."
#: inc/seers-cookie-consent-plugin-deactivate.php:445
msgid "Submit & Deactivate"
msgstr "Enviar y desactivar"
#: inc/seers-cookie-consent-plugin-deactivate.php:446
msgid "Cancel"
msgstr "Cancelar"
#: inc/seers-cookie-consent-plugin-deactivate.php:451
msgid "Skip & Deactivate"
msgstr "Saltar y desactivar"
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr "Descartar este aviso."
#: seers-cookie-consent-banner-privacy-policy.php:135 templates/admin.php:97
msgid "Settings"
msgstr "Ajustes"
#: seers-cookie-consent-banner-privacy-policy.php:141
msgid "Upgrade Premium"
msgstr "Actualización premium"
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:514 templates/frontend-popup.php:1738
#: templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr "Política de cookies agregada con éxito"
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:558 templates/admin.php:559
#: templates/admin.php:561 templates/frontend-popup.php:1740 templates/frontend-popup.php:1765
msgid "Allow All"
msgstr "Permitir a todos"
#: seers-cookie-consent-banner-privacy-policy.php:294 templates/admin.php:589 templates/admin.php:590
#: templates/admin.php:592 templates/frontend-popup.php:1740 templates/frontend-popup.php:1766
msgid "Disable All"
msgstr "Desactivar todo"
#: seers-cookie-consent-banner-privacy-policy.php:295 templates/admin.php:621 templates/frontend-popup.php:1740
msgid "Preference"
msgstr "Centro de configuración"
#: seers-cookie-consent-banner-privacy-policy.php:418 seers-cookie-consent-banner-privacy-policy.php:446
#: seers-cookie-consent-banner-privacy-policy.php:452
msgid "Cookies policy added successfully."
msgstr "Política de cookies agregada con éxito."
#: seers-cookie-consent-banner-privacy-policy.php:421
msgid "Some thing went wrong. Please check url and try again"
msgstr "Algo salió mal. Por favor, compruebe la URL y vuelva a intentarlo"
#: seers-cookie-consent-banner-privacy-policy.php:675
msgid "Some thing went wrong."
msgstr "Algo salió mal."
#: seers-cookie-consent-banner-privacy-policy.php:819
msgid "Settings has been updated successfully"
msgstr "Los ajustes se han actualizado correctamente"
#: templates/admin.php:92 templates/admin.php:841
msgid "Account Setup"
msgstr "Configuracion de cuenta"
#: templates/admin.php:100
msgid "Policy"
msgstr "Política"
#: templates/admin.php:104
msgid "User Guide"
msgstr "Guía del usuario"
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr "Se activa su banner de consentimiento de cookie de Seers."
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr "Su banner de consentimiento de cookie seers no está activado porque"
#: templates/admin.php:134
msgid "Email"
msgstr "Correo electrónico"
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr "Estoy de acuerdo con Seers"
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr "Términos y Condiciones"
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr "y"
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr "Política de privacidad"
#: templates/admin.php:154 templates/admin.php:172
msgid "I agree Seers to use my email and url to create an account and power the cookie banner."
msgstr "Acepto que Seers utilice mi correo electrónico y url para crear una cuenta y alimentar el banner de cookies."
#: templates/admin.php:178
msgid "Create Account"
msgstr "Crear una cuenta"
#: templates/admin.php:181
msgid "Cookie ID"
msgstr "Cookie ID"
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr "Seers Cookie ID se recibirá automáticamente después de la creación de la cuenta"
#: templates/admin.php:197
msgid "Powering all your"
msgstr "Alimentando todos sus"
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr "Privacidad y; Necesidades de seguridad de datos"
#: templates/admin.php:199
msgid "Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy compliance tools,"
msgstr "Obtener acceso a una amplia gama de GDPR, PECR, CCPA y; Herramientas de cumplimiento de la ePrivacía,"
#: templates/admin.php:200
msgid "all"
msgstr "todos"
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
"diseñado para eliminar la molestia de cumplir con los nuevos datos.\n"
"regulaciones de protección."
#: templates/admin.php:206
msgid "Policies Pack"
msgstr "Paquete de políticas"
#: templates/admin.php:207
msgid "Templates Pack"
msgstr "Paquete de plantillas"
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr "El personal del GDPR ETRAING"
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr "Galería de consentimiento de cookies"
#: templates/admin.php:212
msgid "DPIA"
msgstr "Dpia"
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr "Auditoría de gdpr"
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr "Ciberseguridad"
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr "Gestión de solicitudes de asignatura"
#: templates/admin.php:217
msgid "START FREE"
msgstr "Empezar gratis"
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
"Privacidad de datos y; \n"
" Cumplimiento. Resuelto"
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
"Trust Worlds Liderar la plataforma de privacidad y consentimiento de consentimiento para ayudar a las empresas a "
"cumplir\n"
" con "
"GDPR, PECR, CCPA y EPRIVACY"
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr "Empezar a la prima hoy"
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr "Plan premium SEERS"
#: templates/admin.php:232
msgid "Branding"
msgstr "Marca"
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr "Multi lingual"
#: templates/admin.php:234
msgid "Consent Log"
msgstr "Registro de consentimiento"
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr "Política de cookies"
#: templates/admin.php:236
msgid "Prior Consent"
msgstr "Consentimiento previo"
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr "6+ diseños de diseño"
#: templates/admin.php:238
msgid "Customer Support"
msgstr "Atención al cliente"
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr "Personalización de banners"
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr "Tabla de declaración de cookies"
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
"\"Empezar la prima\n"
" HOY DIA\""
#: templates/admin.php:255
msgid "Banner Settings"
msgstr "Configuraciones de banner"
#: templates/admin.php:260
msgid "Banner"
msgstr "Bandera"
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr "Habilitar / deshabilitar banner de cookies"
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr "Caducidad de cookies"
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr "Establezca su cookie de consentimiento que caduque en días."
#: templates/admin.php:291
msgid "Language"
msgstr "Idioma"
#: templates/admin.php:291
msgid "Choose a language for the banner Settings > General."
msgstr "Elija un idioma para el banner Ajustes > Generales."
#: templates/admin.php:475
msgid "Show Badge"
msgstr "Mostrar insignia"
#: templates/admin.php:475
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr "Muestre una placa para que la bandera de la cookie aparezca después del consentimiento."
#: templates/admin.php:498
msgid "Visual Settings"
msgstr "Ajustes visuales"
#: templates/admin.php:503
msgid "Banner Text"
msgstr "Texto de banner"
#: templates/admin.php:503
msgid "Text to appear on the banner:"
msgstr "Texto para aparecer en el banner:"
#: templates/admin.php:506 templates/admin.php:524
msgid "Colour"
msgstr "Color"
#: templates/admin.php:506
msgid "The text colour to appear on the banner:"
msgstr "El color de texto para aparecer en el banner:"
#: templates/admin.php:521
msgid "Banner Background"
msgstr "Fondo de banner"
#: templates/admin.php:521
msgid "You can change the background colour of the banner:"
msgstr "Puedes cambiar el color de fondo del banner:"
#: templates/admin.php:524
msgid "The background colour of the banner:"
msgstr "El color de fondo de la bandera:"
#: templates/admin.php:538
msgid "Accept Button"
msgstr "Aceptar botón"
#: templates/admin.php:538
msgid "You can change text colour, button colour and text of the 'Accept All' button"
msgstr "Puede cambiar el color del texto, el color del botón y el texto del botón 'Aceptar todo'"
#: templates/admin.php:541 templates/admin.php:572 templates/admin.php:603
msgid "Text Colour"
msgstr "Color de texto"
#: templates/admin.php:541
msgid "The text colour to appear on the 'Accept All' button:"
msgstr "El color de texto a aparecer en el botón 'Aceptar todo':"
#: templates/admin.php:551 templates/admin.php:582 templates/admin.php:613
msgid "Button Colour"
msgstr "Color botón"
#: templates/admin.php:551
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr "El color 'acepte todo' botón para aparecer en el banner:"
#: templates/admin.php:569
msgid "Reject Button"
msgstr "Botón de rechazo"
#: templates/admin.php:569
msgid "You can change text colour, button colour and text of the 'Reject All' button"
msgstr "Puede cambiar el color de texto, el color del botón y el texto del botón 'Rechazar todos'"
#: templates/admin.php:572
msgid "The text colour to appear on the 'Reject All' button:"
msgstr "El color de texto para aparecer en el botón 'Rechazar todos':"
#: templates/admin.php:582
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr "El color del botón 'Rechazar todo' para aparecer en el banner:"
#: templates/admin.php:600
msgid "Setting Button"
msgstr "Botón de ajuste"
#: templates/admin.php:600
msgid "You can change text colour and text of the 'Setting' button"
msgstr "Puede cambiar el color de texto y el texto del botón 'Configuración'"
#: templates/admin.php:603
msgid "The text colour to appear on the 'Setting' button:"
msgstr "El color de texto a aparecer en el botón 'Configuración':"
#: templates/admin.php:613
msgid "The 'Setting' button colour to appear on the banner:"
msgstr "El color del botón 'configuración' aparece en el banner:"
#: templates/admin.php:624
msgid "Setting"
msgstr "Ajuste"
#: templates/admin.php:632
msgid "Fonts"
msgstr "Fuentes"
#: templates/admin.php:632
msgid "You can select a font for the text of the banner:"
msgstr "Puede seleccionar una fuente para el texto del banner:"
#: templates/admin.php:684
msgid "Select Button"
msgstr "Botón de selección"
#: templates/admin.php:684
msgid "You can select the shape of the buttons that appear on the banner."
msgstr "Puede seleccionar la forma de los botones que aparecen en el banner."
#: templates/admin.php:688
msgid "Default"
msgstr "Por defecto"
#: templates/admin.php:692 templates/admin.php:702
msgid "Flat"
msgstr "Plano"
#: templates/admin.php:695 templates/admin.php:705
msgid "Rounded"
msgstr "Redondeado"
#: templates/admin.php:698 templates/admin.php:708
msgid "Stroke"
msgstr "Stroke"
#: templates/admin.php:726
msgid "PREVIEW"
msgstr "Avance"
#: templates/admin.php:727
msgid "SAVE"
msgstr "SALVAR"
#: templates/admin.php:746
msgid "Please create cookies policy page and enter URL below."
msgstr "Por favor, cree la página de la Política de cookies e ingrese la URL a continuación."
#: templates/admin.php:750
msgid "Enable Policy:"
msgstr "Habilitar la política:"
#: templates/admin.php:767
msgid "Cookie Policy and declaration URL:"
msgstr "Política de cookies y URL DE DECLARACIÓN:"
#: templates/admin.php:770
msgid "Policy URL"
msgstr "URL de política"
#: templates/admin.php:777
msgid "Save"
msgstr "SALVAR"
#: templates/admin.php:831
msgid "Premium Plan"
msgstr "Plan Premium"
#: templates/admin.php:834 templates/admin.php:1023 templates/admin.php:1032 templates/admin.php:1040
msgid "Only the users with a paid account can avail this feature."
msgstr "Solo los usuarios con una cuenta pagada pueden aprovechar esta función."
#: templates/admin.php:839
msgid "Ok"
msgstr "OK"
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr "seers logo"
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr "Acerca de las cookies"
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr "Leer la política de cookies"
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr "Necesario"
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr "Siempre activo"
#: templates/frontend-popup.php:1774
msgid ""
"Necessary cookies help make a website usable by enabling basic functions like page navigation and access to secure "
"areas of the website. The website cannot function properly without these cookies."
msgstr ""
"Las cookies necesarias ayudan a realizar un sitio web utilizable al permitir las funciones básicas como la navegación "
"de la página y el acceso a áreas seguras del sitio web. El sitio web no puede funcionar correctamente sin estas "
"cookies."
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784 templates/frontend-popup.php:1794
#: templates/frontend-popup.php:1804 templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr "Detalle de las cookies"
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr "Preferencia"
#: templates/frontend-popup.php:1784
msgid ""
"Preference cookies enable a website to remember information that changes the way the website behaves or looks, like "
"your preferred language or the region that you are in."
msgstr ""
"Las cookies de preferencias permiten que un sitio web recuerde la información que cambia la forma en que se comporta o "
"mira el sitio web, como su idioma preferido o la región en la que está."
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr "La estadística"
#: templates/frontend-popup.php:1794
msgid ""
"Statistic cookies help website owners to understand how visitors interact with websites by collecting and reporting "
"information anonymously."
msgstr ""
"Las cookies estadísticas ayudan a los propietarios de sitios web a comprender cómo los visitantes interactúan con los "
"sitios web mediante la recopilación y presentación de información de forma anónima."
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr "El márketing"
#: templates/frontend-popup.php:1804
msgid ""
"Marketing cookies are used to track visitors across websites. The intention is to display ads that are relevant and "
"engaging for the individual user and thereby more valuable for publishers and third-party advertisers."
msgstr ""
"Las cookies de marketing se utilizan para rastrear visitantes en sitios web. La intención es mostrar anuncios que sean "
"relevantes y atractivos para el usuario individual y, por lo tanto, más valiosos para los editores y anunciantes "
"externos."
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr "Desclasificado"
#: templates/frontend-popup.php:1812
msgid ""
"Unclassified cookies are cookies that we are in the process of classifying, together with the providers of individual "
"cookies."
msgstr ""
"Las cookies no clasificadas son cookies que estamos en proceso de clasificar, junto con los proveedores de cookies "
"individuales."
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr "Guardar mis elecciones"
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr "proporcionada por"
#~ msgid "To get your Cookie ID click on Activate"
#~ msgstr "To get your Cookie ID click on Activate"
#~ msgid "Activate"
#~ msgstr "Activate"

View File

@ -0,0 +1,655 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-25 17:21+0500\n"
"PO-Revision-Date: 2022-03-30 04:54-0700\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: es_VE\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: seers-cookie-consent-banner-privacy-policy.pot\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:382
msgid "Quick Feedback"
msgstr "Retroalimentación rápida"
#: inc/seers-cookie-consent-plugin-deactivate.php:383
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr "Si tiene un momento, háganos saber por qué está desactivando:"
#: inc/seers-cookie-consent-plugin-deactivate.php:386 inc/seers-cookie-consent-plugin-deactivate.php:387
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr "El banner no está en el idioma requerido"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "The banner picks up your website language automatically. You can always sign-in on your Seers account"
msgstr "El banner recoge el idioma de su sitio web automáticamente. Siempre puedes iniciar sesión en tu cuenta SEERS"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "and choose the language you like. See the video"
msgstr "y elige el idioma que te guste. Mira el video"
#: inc/seers-cookie-consent-plugin-deactivate.php:391 inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "here"
msgstr "aquí"
#: inc/seers-cookie-consent-plugin-deactivate.php:395 inc/seers-cookie-consent-plugin-deactivate.php:396
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr "Banner no apareció"
#: inc/seers-cookie-consent-plugin-deactivate.php:399 inc/seers-cookie-consent-plugin-deactivate.php:420
msgid "Most of the times the compatibility issue can be fixed very quickly. Please contact"
msgstr "La mayoría de las veces, el problema de compatibilidad se puede fijar muy rápidamente. Por favor contactar"
#: inc/seers-cookie-consent-plugin-deactivate.php:403 inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr "Las cookies no se muestran en la configuración"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid ""
"We are scanning your website and it can take up to 12 hours for Cookies to appear. In a very few cases scanner miss a "
"cookie. This"
msgstr ""
"Estamos escaneando su sitio web y puede demorar hasta 12 horas para que aparezcan cookies. En muy pocos casos, el "
"escáner se pierde una cookie. Esta"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "video"
msgstr "video"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "explains how to add cookies manually."
msgstr "explica cómo agregar cookies manualmente."
#: inc/seers-cookie-consent-plugin-deactivate.php:410 inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr "El banner no coincide con el tema del sitio web"
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "You can fully customize the banner. Please see the video"
msgstr "Puedes personalizar completamente el banner. Por favor vea el video"
#: inc/seers-cookie-consent-plugin-deactivate.php:416 inc/seers-cookie-consent-plugin-deactivate.php:417
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr "El plugin se rompió mi sitio"
#: inc/seers-cookie-consent-plugin-deactivate.php:424 inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr "He encontrado un mejor complemento"
#: inc/seers-cookie-consent-plugin-deactivate.php:427
msgid "Plugin name"
msgstr "Nombre del plugin"
#: inc/seers-cookie-consent-plugin-deactivate.php:430
msgid "The plugin is great, but i need specific feature that you do not support."
msgstr "El complemento es excelente, pero necesito una característica específica que no admite."
#: inc/seers-cookie-consent-plugin-deactivate.php:431 inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid "The plugin is great, but i need specific feature that you don't support."
msgstr "El complemento es genial, pero necesito una característica específica que no soporta."
#: inc/seers-cookie-consent-plugin-deactivate.php:434
msgid "Banner customisation."
msgstr "Personalización de banners."
#: inc/seers-cookie-consent-plugin-deactivate.php:438 inc/seers-cookie-consent-plugin-deactivate.php:439
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr "Otro"
#: inc/seers-cookie-consent-plugin-deactivate.php:442
msgid "Kindly tell us the reason so we can improve."
msgstr "Por favor, dinos la razón para que podamos mejorar."
#: inc/seers-cookie-consent-plugin-deactivate.php:445
msgid "Submit & Deactivate"
msgstr "Enviar y desactivar"
#: inc/seers-cookie-consent-plugin-deactivate.php:446
msgid "Cancel"
msgstr "Cancelar"
#: inc/seers-cookie-consent-plugin-deactivate.php:451
msgid "Skip & Deactivate"
msgstr "Saltar y desactivar"
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr "Descartar este aviso."
#: seers-cookie-consent-banner-privacy-policy.php:135 templates/admin.php:97
msgid "Settings"
msgstr "Ajustes"
#: seers-cookie-consent-banner-privacy-policy.php:141
msgid "Upgrade Premium"
msgstr "Actualización premium"
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:514 templates/frontend-popup.php:1738
#: templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr "Política de cookies agregada con éxito"
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:558 templates/admin.php:559
#: templates/admin.php:561 templates/frontend-popup.php:1740 templates/frontend-popup.php:1765
msgid "Allow All"
msgstr "Permitir a todos"
#: seers-cookie-consent-banner-privacy-policy.php:294 templates/admin.php:589 templates/admin.php:590
#: templates/admin.php:592 templates/frontend-popup.php:1740 templates/frontend-popup.php:1766
msgid "Disable All"
msgstr "Desactivar todo"
#: seers-cookie-consent-banner-privacy-policy.php:295 templates/admin.php:621 templates/frontend-popup.php:1740
msgid "Preference"
msgstr "Centro de configuración"
#: seers-cookie-consent-banner-privacy-policy.php:418 seers-cookie-consent-banner-privacy-policy.php:446
#: seers-cookie-consent-banner-privacy-policy.php:452
msgid "Cookies policy added successfully."
msgstr "Política de cookies agregada con éxito."
#: seers-cookie-consent-banner-privacy-policy.php:421
msgid "Some thing went wrong. Please check url and try again"
msgstr "Algo salió mal. Por favor, compruebe la URL y vuelva a intentarlo"
#: seers-cookie-consent-banner-privacy-policy.php:675
msgid "Some thing went wrong."
msgstr "Algo salió mal."
#: seers-cookie-consent-banner-privacy-policy.php:819
msgid "Settings has been updated successfully"
msgstr "Los ajustes se han actualizado correctamente"
#: templates/admin.php:92 templates/admin.php:841
msgid "Account Setup"
msgstr "Configuracion de cuenta"
#: templates/admin.php:100
msgid "Policy"
msgstr "Política"
#: templates/admin.php:104
msgid "User Guide"
msgstr "Guía del usuario"
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr "Se activa su banner de consentimiento de cookie de Seers."
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr "Su banner de consentimiento de cookie seers no está activado porque"
#: templates/admin.php:134
msgid "Email"
msgstr "Correo electrónico"
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr "Estoy de acuerdo con Seers"
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr "Términos y Condiciones"
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr "y"
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr "Política de privacidad"
#: templates/admin.php:154 templates/admin.php:172
msgid "I agree Seers to use my email and url to create an account and power the cookie banner."
msgstr "Acepto que Seers utilice mi correo electrónico y url para crear una cuenta y alimentar el banner de cookies."
#: templates/admin.php:178
msgid "Create Account"
msgstr "Crear una cuenta"
#: templates/admin.php:181
msgid "Cookie ID"
msgstr "Cookie ID"
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr "Seers Cookie ID se recibirá automáticamente después de la creación de la cuenta"
#: templates/admin.php:197
msgid "Powering all your"
msgstr "Alimentando todos sus"
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr "Privacidad y; Necesidades de seguridad de datos"
#: templates/admin.php:199
msgid "Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy compliance tools,"
msgstr "Obtener acceso a una amplia gama de GDPR, PECR, CCPA y; Herramientas de cumplimiento de la ePrivacía,"
#: templates/admin.php:200
msgid "all"
msgstr "todos"
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
"diseñado para eliminar la molestia de cumplir con los nuevos datos.\n"
"regulaciones de protección."
#: templates/admin.php:206
msgid "Policies Pack"
msgstr "Paquete de políticas"
#: templates/admin.php:207
msgid "Templates Pack"
msgstr "Paquete de plantillas"
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr "El personal del GDPR ETRAING"
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr "Galería de consentimiento de cookies"
#: templates/admin.php:212
msgid "DPIA"
msgstr "Dpia"
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr "Auditoría de gdpr"
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr "Ciberseguridad"
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr "Gestión de solicitudes de asignatura"
#: templates/admin.php:217
msgid "START FREE"
msgstr "Empezar gratis"
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
"Privacidad de datos y; \n"
" Cumplimiento. Resuelto"
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
"Trust Worlds Liderar la plataforma de privacidad y consentimiento de consentimiento para ayudar a las empresas a "
"cumplir\n"
" con "
"GDPR, PECR, CCPA y EPRIVACY"
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr "Empezar a la prima hoy"
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr "Plan premium SEERS"
#: templates/admin.php:232
msgid "Branding"
msgstr "Marca"
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr "Multi lingual"
#: templates/admin.php:234
msgid "Consent Log"
msgstr "Registro de consentimiento"
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr "Política de cookies"
#: templates/admin.php:236
msgid "Prior Consent"
msgstr "Consentimiento previo"
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr "6+ diseños de diseño"
#: templates/admin.php:238
msgid "Customer Support"
msgstr "Atención al cliente"
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr "Personalización de banners"
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr "Tabla de declaración de cookies"
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
"\"Empezar la prima\n"
" HOY DIA\""
#: templates/admin.php:255
msgid "Banner Settings"
msgstr "Configuraciones de banner"
#: templates/admin.php:260
msgid "Banner"
msgstr "Bandera"
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr "Habilitar / deshabilitar banner de cookies"
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr "Caducidad de cookies"
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr "Establezca su cookie de consentimiento que caduque en días."
#: templates/admin.php:291
msgid "Language"
msgstr "Idioma"
#: templates/admin.php:291
msgid "Choose a language for the banner Settings > General."
msgstr "Elija un idioma para el banner Ajustes > Generales."
#: templates/admin.php:475
msgid "Show Badge"
msgstr "Mostrar insignia"
#: templates/admin.php:475
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr "Muestre una placa para que la bandera de la cookie aparezca después del consentimiento."
#: templates/admin.php:498
msgid "Visual Settings"
msgstr "Ajustes visuales"
#: templates/admin.php:503
msgid "Banner Text"
msgstr "Texto de banner"
#: templates/admin.php:503
msgid "Text to appear on the banner:"
msgstr "Texto para aparecer en el banner:"
#: templates/admin.php:506 templates/admin.php:524
msgid "Colour"
msgstr "Color"
#: templates/admin.php:506
msgid "The text colour to appear on the banner:"
msgstr "El color de texto para aparecer en el banner:"
#: templates/admin.php:521
msgid "Banner Background"
msgstr "Fondo de banner"
#: templates/admin.php:521
msgid "You can change the background colour of the banner:"
msgstr "Puedes cambiar el color de fondo del banner:"
#: templates/admin.php:524
msgid "The background colour of the banner:"
msgstr "El color de fondo de la bandera:"
#: templates/admin.php:538
msgid "Accept Button"
msgstr "Aceptar botón"
#: templates/admin.php:538
msgid "You can change text colour, button colour and text of the 'Accept All' button"
msgstr "Puede cambiar el color del texto, el color del botón y el texto del botón 'Aceptar todo'"
#: templates/admin.php:541 templates/admin.php:572 templates/admin.php:603
msgid "Text Colour"
msgstr "Color de texto"
#: templates/admin.php:541
msgid "The text colour to appear on the 'Accept All' button:"
msgstr "El color de texto a aparecer en el botón 'Aceptar todo':"
#: templates/admin.php:551 templates/admin.php:582 templates/admin.php:613
msgid "Button Colour"
msgstr "Color botón"
#: templates/admin.php:551
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr "El color 'acepte todo' botón para aparecer en el banner:"
#: templates/admin.php:569
msgid "Reject Button"
msgstr "Botón de rechazo"
#: templates/admin.php:569
msgid "You can change text colour, button colour and text of the 'Reject All' button"
msgstr "Puede cambiar el color de texto, el color del botón y el texto del botón 'Rechazar todos'"
#: templates/admin.php:572
msgid "The text colour to appear on the 'Reject All' button:"
msgstr "El color de texto para aparecer en el botón 'Rechazar todos':"
#: templates/admin.php:582
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr "El color del botón 'Rechazar todo' para aparecer en el banner:"
#: templates/admin.php:600
msgid "Setting Button"
msgstr "Botón de ajuste"
#: templates/admin.php:600
msgid "You can change text colour and text of the 'Setting' button"
msgstr "Puede cambiar el color de texto y el texto del botón 'Configuración'"
#: templates/admin.php:603
msgid "The text colour to appear on the 'Setting' button:"
msgstr "El color de texto a aparecer en el botón 'Configuración':"
#: templates/admin.php:613
msgid "The 'Setting' button colour to appear on the banner:"
msgstr "El color del botón 'configuración' aparece en el banner:"
#: templates/admin.php:624
msgid "Setting"
msgstr "Ajuste"
#: templates/admin.php:632
msgid "Fonts"
msgstr "Fuentes"
#: templates/admin.php:632
msgid "You can select a font for the text of the banner:"
msgstr "Puede seleccionar una fuente para el texto del banner:"
#: templates/admin.php:684
msgid "Select Button"
msgstr "Botón de selección"
#: templates/admin.php:684
msgid "You can select the shape of the buttons that appear on the banner."
msgstr "Puede seleccionar la forma de los botones que aparecen en el banner."
#: templates/admin.php:688
msgid "Default"
msgstr "Por defecto"
#: templates/admin.php:692 templates/admin.php:702
msgid "Flat"
msgstr "Plano"
#: templates/admin.php:695 templates/admin.php:705
msgid "Rounded"
msgstr "Redondeado"
#: templates/admin.php:698 templates/admin.php:708
msgid "Stroke"
msgstr "Stroke"
#: templates/admin.php:726
msgid "PREVIEW"
msgstr "Avance"
#: templates/admin.php:727
msgid "SAVE"
msgstr "SALVAR"
#: templates/admin.php:746
msgid "Please create cookies policy page and enter URL below."
msgstr "Por favor, cree la página de la Política de cookies e ingrese la URL a continuación."
#: templates/admin.php:750
msgid "Enable Policy:"
msgstr "Habilitar la política:"
#: templates/admin.php:767
msgid "Cookie Policy and declaration URL:"
msgstr "Política de cookies y URL DE DECLARACIÓN:"
#: templates/admin.php:770
msgid "Policy URL"
msgstr "URL de política"
#: templates/admin.php:777
msgid "Save"
msgstr "SALVAR"
#: templates/admin.php:831
msgid "Premium Plan"
msgstr "Plan Premium"
#: templates/admin.php:834 templates/admin.php:1023 templates/admin.php:1032 templates/admin.php:1040
msgid "Only the users with a paid account can avail this feature."
msgstr "Solo los usuarios con una cuenta pagada pueden aprovechar esta función."
#: templates/admin.php:839
msgid "Ok"
msgstr "OK"
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr "seers logo"
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr "Acerca de las cookies"
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr "Leer la política de cookies"
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr "Necesario"
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr "Siempre activo"
#: templates/frontend-popup.php:1774
msgid ""
"Necessary cookies help make a website usable by enabling basic functions like page navigation and access to secure "
"areas of the website. The website cannot function properly without these cookies."
msgstr ""
"Las cookies necesarias ayudan a realizar un sitio web utilizable al permitir las funciones básicas como la navegación "
"de la página y el acceso a áreas seguras del sitio web. El sitio web no puede funcionar correctamente sin estas "
"cookies."
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784 templates/frontend-popup.php:1794
#: templates/frontend-popup.php:1804 templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr "Detalle de las cookies"
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr "Preferencia"
#: templates/frontend-popup.php:1784
msgid ""
"Preference cookies enable a website to remember information that changes the way the website behaves or looks, like "
"your preferred language or the region that you are in."
msgstr ""
"Las cookies de preferencias permiten que un sitio web recuerde la información que cambia la forma en que se comporta o "
"mira el sitio web, como su idioma preferido o la región en la que está."
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr "La estadística"
#: templates/frontend-popup.php:1794
msgid ""
"Statistic cookies help website owners to understand how visitors interact with websites by collecting and reporting "
"information anonymously."
msgstr ""
"Las cookies estadísticas ayudan a los propietarios de sitios web a comprender cómo los visitantes interactúan con los "
"sitios web mediante la recopilación y presentación de información de forma anónima."
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr "El márketing"
#: templates/frontend-popup.php:1804
msgid ""
"Marketing cookies are used to track visitors across websites. The intention is to display ads that are relevant and "
"engaging for the individual user and thereby more valuable for publishers and third-party advertisers."
msgstr ""
"Las cookies de marketing se utilizan para rastrear visitantes en sitios web. La intención es mostrar anuncios que sean "
"relevantes y atractivos para el usuario individual y, por lo tanto, más valiosos para los editores y anunciantes "
"externos."
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr "Desclasificado"
#: templates/frontend-popup.php:1812
msgid ""
"Unclassified cookies are cookies that we are in the process of classifying, together with the providers of individual "
"cookies."
msgstr ""
"Las cookies no clasificadas son cookies que estamos en proceso de clasificar, junto con los proveedores de cookies "
"individuales."
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr "Guardar mis elecciones"
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr "proporcionada por"
#~ msgid "To get your Cookie ID click on Activate"
#~ msgstr "To get your Cookie ID click on Activate"
#~ msgid "Activate"
#~ msgstr "Activate"

View File

@ -0,0 +1,674 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-16 17:05+0500\n"
"PO-Revision-Date: 2022-03-30 04:55-0700\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: et_EE\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: seers-cookie-consent-banner-privacy-policy.pot\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:350
msgid "Quick Feedback"
msgstr "Kiire tagasiside"
#: inc/seers-cookie-consent-plugin-deactivate.php:351
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr "Kui teil on hetk, siis palun andke meile teada, miks sa deaktiveerivad:"
#: inc/seers-cookie-consent-plugin-deactivate.php:354
#: inc/seers-cookie-consent-plugin-deactivate.php:355
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr "Banner ei ole nõutud keeles"
#: inc/seers-cookie-consent-plugin-deactivate.php:359
msgid ""
"The banner picks up your website language automatically. You can always sign-in on your Seers "
"account"
msgstr "Bänner valib teie veebisaidi keele automaatselt. Võite alati sisse logida oma SEERSi konto"
#: inc/seers-cookie-consent-plugin-deactivate.php:359
msgid "and choose the language you like. See the video"
msgstr "ja valige soovitud keel. Vaata videot"
#: inc/seers-cookie-consent-plugin-deactivate.php:359
#: inc/seers-cookie-consent-plugin-deactivate.php:381
msgid "here"
msgstr "siin"
#: inc/seers-cookie-consent-plugin-deactivate.php:363
#: inc/seers-cookie-consent-plugin-deactivate.php:364
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr "Bänner ei ilmunud"
#: inc/seers-cookie-consent-plugin-deactivate.php:367
#: inc/seers-cookie-consent-plugin-deactivate.php:388
msgid "Most of the times the compatibility issue can be fixed very quickly. Please contact"
msgstr "Enamik korda saab ühilduvusprobleemi väga kiiresti fikseerida. Palun võtke ühendust"
#: inc/seers-cookie-consent-plugin-deactivate.php:371
#: inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr "Cookies ei näita seadetes"
#: inc/seers-cookie-consent-plugin-deactivate.php:374
msgid ""
"We are scanning your website and it can take up to 12 hours for Cookies to appear. In a very few "
"cases scanner miss a cookie. This"
msgstr ""
"Skaneerime teie veebisaiti ja cookies ilmumiseks võib kuluda kuni 12 tundi. Väga vähestel "
"juhtudel jätab skanner küpsise vahele. See"
#: inc/seers-cookie-consent-plugin-deactivate.php:374
msgid "video"
msgstr "videot"
#: inc/seers-cookie-consent-plugin-deactivate.php:374
msgid "explains how to add cookies manually."
msgstr "selgitab, kuidas cookies käsitsi lisada."
#: inc/seers-cookie-consent-plugin-deactivate.php:378
#: inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr "Banner ei vastanud veebisaidi teemale"
#: inc/seers-cookie-consent-plugin-deactivate.php:381
msgid "You can fully customize the banner. Please see the video"
msgstr "Võite bänneri täielikult kohandada. Palun vaadake videot"
#: inc/seers-cookie-consent-plugin-deactivate.php:384
#: inc/seers-cookie-consent-plugin-deactivate.php:385
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr "Plugin murdis minu saidi"
#: inc/seers-cookie-consent-plugin-deactivate.php:392
#: inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr "Olen leidnud parema plugina"
#: inc/seers-cookie-consent-plugin-deactivate.php:395
msgid "Plugin name"
msgstr "Plugina nimi"
#: inc/seers-cookie-consent-plugin-deactivate.php:398
msgid "The plugin is great, but i need specific feature that you do not support."
msgstr "Plugin on suurepärane, kuid mul on vaja konkreetset funktsiooni, mida te ei toeta."
#: inc/seers-cookie-consent-plugin-deactivate.php:399
#: inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid "The plugin is great, but i need specific feature that you don't support."
msgstr "Plugin on suurepärane, kuid mul on vaja konkreetset funktsiooni, mida te ei toeta."
#: inc/seers-cookie-consent-plugin-deactivate.php:402
msgid "Banner customisation."
msgstr "Bänner kohandamine."
#: inc/seers-cookie-consent-plugin-deactivate.php:406
#: inc/seers-cookie-consent-plugin-deactivate.php:407
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr "Teine"
#: inc/seers-cookie-consent-plugin-deactivate.php:410
msgid "Kindly tell us the reason so we can improve."
msgstr "Palun öelge meile põhjuse, et saaksime parandada."
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "Submit & Deactivate"
msgstr "Esitage & deaktiveerimine"
#: inc/seers-cookie-consent-plugin-deactivate.php:414
msgid "Cancel"
msgstr "Tühistama"
#: inc/seers-cookie-consent-plugin-deactivate.php:419
msgid "Skip & Deactivate"
msgstr "Skip & deaktiveerimine"
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr "Jätta käesoleva teate rahuldamata."
#: seers-cookie-consent-banner-privacy-policy.php:133 templates/admin.php:97
msgid "Settings"
msgstr "Seaded"
#: seers-cookie-consent-banner-privacy-policy.php:139
msgid "Upgrade Premium"
msgstr "Lisatasu uuendamine"
#: seers-cookie-consent-banner-privacy-policy.php:290 templates/admin.php:740
#: templates/frontend-popup.php:1738 templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr "Kasutame cookies, et tagada teile parim kogemus"
#: seers-cookie-consent-banner-privacy-policy.php:291 templates/admin.php:784
#: templates/admin.php:785 templates/admin.php:787 templates/frontend-popup.php:1740
#: templates/frontend-popup.php:1765
msgid "Allow All"
msgstr "Luba kõigil"
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:815
#: templates/admin.php:816 templates/admin.php:818 templates/frontend-popup.php:1740
#: templates/frontend-popup.php:1766
msgid "Disable All"
msgstr "Keela kõik"
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:847
#: templates/frontend-popup.php:1740
msgid "Preference"
msgstr "Seaded"
#: seers-cookie-consent-banner-privacy-policy.php:416
#: seers-cookie-consent-banner-privacy-policy.php:444
#: seers-cookie-consent-banner-privacy-policy.php:450
msgid "Cookies policy added successfully."
msgstr "Cookies poliitika lisati edukalt."
#: seers-cookie-consent-banner-privacy-policy.php:419
msgid "Some thing went wrong. Please check url and try again"
msgstr "Midagi läks valesti. Palun kontrollige URL-i ja proovige uuesti"
#: seers-cookie-consent-banner-privacy-policy.php:670
msgid "Some thing went wrong."
msgstr "Midagi läks valesti."
#: seers-cookie-consent-banner-privacy-policy.php:806
msgid "Settings has been updated successfully"
msgstr "Seaded on edukalt uuendatud"
#: templates/admin.php:92 templates/admin.php:1067
msgid "Account Setup"
msgstr "Konto seadistamine"
#: templates/admin.php:100
msgid "Policy"
msgstr "Poliitika"
#: templates/admin.php:104
msgid "User Guide"
msgstr "Kasutusjuhend"
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr "Teie Seers Cookie'i nõusoleku bänner on aktiveeritud."
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr "Teie \"Seers Cookie\" nõusolekubänner EI OLE aktiveeritud, kuna"
#: templates/admin.php:134
msgid "Email"
msgstr "E-kiri"
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr "Ma nõustun Seers"
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr "Tingimused ja seisund"
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr "ja"
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr "Privaatsuspoliitika"
#: templates/admin.php:154 templates/admin.php:172
msgid "I agree Seers to use my email and url to create an account and power the cookie banner."
msgstr "I agree Seers to use my email and url to create an account and power the cookie banner."
#: templates/admin.php:178
msgid "Create Account"
msgstr "Loo konto"
#: templates/admin.php:181
msgid "Cookie ID"
msgstr "Cookie ID"
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr "SEERS Cookie ID saabub automaatselt pärast konto loomist"
#: templates/admin.php:197
msgid "Powering all your"
msgstr "Toide kõik oma"
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr "Privaatsus ja; Andmete turvalisuse vajadused"
#: templates/admin.php:199
msgid "Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy compliance tools,"
msgstr "Kasu saada laia valikut GDPR, Pecr, CCPA ja; EPRIVAY nõuetele vastavuse vahendid,"
#: templates/admin.php:200
msgid "all"
msgstr "kõik"
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
"eesmärk on võtta probleemid uute andmete täitmisel välja\n"
" Kaitseeskirjad."
#: templates/admin.php:206
msgid "Policies Pack"
msgstr "Poliitikapakett"
#: templates/admin.php:207
msgid "Templates Pack"
msgstr "Mallide pakend"
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr "Gdpr töötajad ereining"
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr "Cookie nõusoleku haldamine"
#: templates/admin.php:212
msgid "DPIA"
msgstr "DPIA"
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr "Gdpr audit"
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr "Küberkaitse"
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr "Teema taotluse juhtimine"
#: templates/admin.php:217
msgid "START FREE"
msgstr "Alusta tasuta"
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
"Andmete privaatsus ja;\n"
" Vastavus. Lahendatud"
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
"Usaldus maailma juhtivate privaatsuse ja nõusoleku haldamise platvormi, mis aitavad ettevõtetel "
"järgida\n"
" koos GDPR-ga, Pecr, CCPA ja e-ga"
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr "Start Premium täna"
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr "Seers lisatasu plaan"
#: templates/admin.php:232
msgid "Branding"
msgstr "Kaubamärk"
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr "Multi-lingvaal"
#: templates/admin.php:234
msgid "Consent Log"
msgstr "Nõusoleku logi"
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr "Cookie poliitika"
#: templates/admin.php:236
msgid "Prior Consent"
msgstr "Eelnev nõusolek"
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr "6+ disainilahenduste paigutus"
#: templates/admin.php:238
msgid "Customer Support"
msgstr "Klienditugi"
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr "Bänner kohandamine"
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr "Cookie deklaratsiooni tabel"
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
"\"Alusta lisatasu\n"
" Tänapäeval"
#: templates/admin.php:255
msgid "Banner Settings"
msgstr "Bänner seaded"
#: templates/admin.php:260
msgid "Banner"
msgstr "Banner"
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr "Luba / keelata Cookie bänneri"
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr "Cookie aegumine"
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr "Määra oma nõusoleku cookie aeguda päevades."
#: templates/admin.php:291
msgid "Language"
msgstr "Keel"
#: templates/admin.php:291
msgid "Choose a language for the banner."
msgstr "Vali keel bänneri seaded."
#: templates/admin.php:701
msgid "Show Badge"
msgstr "Näitama märgi"
#: templates/admin.php:701
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr "Näita märgi, et võimaldada cookie bännerile ilmuda pärast nõusolekut."
#: templates/admin.php:724
msgid "Visual Settings"
msgstr "Visuaalsed seaded"
#: templates/admin.php:729
msgid "Banner Text"
msgstr "Bannertekst"
#: templates/admin.php:729
msgid "Text to appear on the banner:"
msgstr "Bännerile ilmub tekst:"
#: templates/admin.php:732 templates/admin.php:750
msgid "Colour"
msgstr "Värv"
#: templates/admin.php:732
msgid "The text colour to appear on the banner:"
msgstr "Bännerile ilmuva teksti värv:"
#: templates/admin.php:747
msgid "Banner Background"
msgstr "Banner taust"
#: templates/admin.php:747
msgid "You can change the background colour of the banner:"
msgstr "Saate muuta bänneri taustavärvi:"
#: templates/admin.php:750
msgid "The background colour of the banner:"
msgstr "Bänneri taustavärv:"
#: templates/admin.php:764
msgid "Accept Button"
msgstr "Nõus nupp"
#: templates/admin.php:764
msgid "You can change text colour, button colour and text of the 'Accept All' button"
msgstr "Te saate teksti värvi, nupu värvi ja nupu aktsepteerimise teksti teksti muuta"
#: templates/admin.php:767 templates/admin.php:798 templates/admin.php:829
msgid "Text Colour"
msgstr "Teksti värv"
#: templates/admin.php:767
msgid "The text colour to appear on the 'Accept All' button:"
msgstr "Teksti värv ilmub nupule 'Nõustuva nupuga:"
#: templates/admin.php:777 templates/admin.php:808 templates/admin.php:839
msgid "Button Colour"
msgstr "Nupu värv"
#: templates/admin.php:777
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr "Bännerile ilmumiseks 'Nõustu kõik' nupp:"
#: templates/admin.php:795
msgid "Reject Button"
msgstr "Tagasilükkamine"
#: templates/admin.php:795
msgid "You can change text colour, button colour and text of the 'Reject All' button"
msgstr "Te saate muuta teksti värvi, nupu värvi ja teksti 'tagasilükkamise teksti teksti'"
#: templates/admin.php:798
msgid "The text colour to appear on the 'Reject All' button:"
msgstr "Teksti värv ilmub nupule 'tagasilükkamine':"
#: templates/admin.php:808
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr "Bännerile ilmub 'lükata kõik' nupp värvi:"
#: templates/admin.php:826
msgid "Setting Button"
msgstr "Nupu seadistamine"
#: templates/admin.php:826
msgid "You can change text colour and text of the 'Setting' button"
msgstr "Te saate nupu teksti värvi ja teksti teksti muuta"
#: templates/admin.php:829
msgid "The text colour to appear on the 'Setting' button:"
msgstr "Teksti värv ilmub nupule 'seadistusnuppu:"
#: templates/admin.php:839
msgid "The 'Setting' button colour to appear on the banner:"
msgstr "Bännerile ilmuva nupu värvi 'seadistamine':"
#: templates/admin.php:850
msgid "Setting"
msgstr "Seadistamine"
#: templates/admin.php:858
msgid "Fonts"
msgstr "Fonte"
#: templates/admin.php:858
msgid "You can select a font for the text of the banner:"
msgstr "Banneri teksti jaoks saate valida fondi:"
#: templates/admin.php:910
msgid "Select Button"
msgstr "Vali nupp"
#: templates/admin.php:910
msgid "You can select the shape of the buttons that appear on the banner."
msgstr "Bannerile ilmuvate nuppude kuju saate valida."
#: templates/admin.php:914
msgid "Default"
msgstr "Vaikimisi pidama"
#: templates/admin.php:918 templates/admin.php:928
msgid "Flat"
msgstr "Lame"
#: templates/admin.php:921 templates/admin.php:931
msgid "Rounded"
msgstr "Ümardatud"
#: templates/admin.php:924 templates/admin.php:934
msgid "Stroke"
msgstr "Stroke"
#: templates/admin.php:952
msgid "PREVIEW"
msgstr "Eelvaade"
#: templates/admin.php:953
msgid "SAVE"
msgstr "Säästa"
#: templates/admin.php:972
msgid "Please create cookies policy page and enter URL below."
msgstr "Looge cookie poliitika leht ja sisestage URL allpool."
#: templates/admin.php:976
msgid "Enable Policy:"
msgstr "Luba poliitika:"
#: templates/admin.php:993
msgid "Cookie Policy and declaration URL:"
msgstr "Cookie eeskirjad ja deklaratsiooni URL:"
#: templates/admin.php:996
msgid "Policy URL"
msgstr "Poliitika URL"
#: templates/admin.php:1003
msgid "Save"
msgstr "Säästa"
#: templates/admin.php:1057
msgid "Premium Plan"
msgstr "Lisatasu plaan"
#: templates/admin.php:1060 templates/admin.php:1249 templates/admin.php:1258
#: templates/admin.php:1266
msgid "Only the users with a paid account can avail this feature."
msgstr "Seda funktsiooni saab kasutada ainult tasulise konto kasutajate."
#: templates/admin.php:1065
msgid "Ok"
msgstr "Okei"
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr "seers logo"
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr "Teave Cookie kohta"
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr "Lugege cookie poliitikat"
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr "Vajalik"
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr "Alati aktiivne"
#: templates/frontend-popup.php:1774
msgid ""
"Necessary cookies help make a website usable by enabling basic functions like page navigation "
"and access to secure areas of the website. The website cannot function properly without these "
"cookies."
msgstr ""
"Vajalikud cookies aitavad muuta veebisaidi kasutatavaks, võimaldades põhifunktsioone nagu lehel "
"navigeerimine ja juurdepääs veebisaidi turvalistele aladele. Veebisait ei saa ilma nende cookies "
"korralikult toimida."
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784
#: templates/frontend-popup.php:1794 templates/frontend-popup.php:1804
#: templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr "Cookie detail"
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr "Eelistused"
#: templates/frontend-popup.php:1784
msgid ""
"Preference cookies enable a website to remember information that changes the way the website "
"behaves or looks, like your preferred language or the region that you are in."
msgstr ""
"Eelistustega cookie võimaldavad veebisaidil meeles pidada teavet, mis muudab veebisaidi "
"käitumist või välimust, näiteks teie eelistatud keel või piirkond, kus te viibite."
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr "Statistika"
#: templates/frontend-popup.php:1794
msgid ""
"Statistic cookies help website owners to understand how visitors interact with websites by "
"collecting and reporting information anonymously."
msgstr ""
"Statistilised cookies aitavad veebisaitide omanikel anonüümselt teavet kogudes ja aru andes "
"mõista, kuidas külastajad veebisaitidega suhtlevad."
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr "Turundus"
#: templates/frontend-popup.php:1804
msgid ""
"Marketing cookies are used to track visitors across websites. The intention is to display ads "
"that are relevant and engaging for the individual user and thereby more valuable for publishers "
"and third-party advertisers."
msgstr ""
"Turunduse cookies kasutatakse külastajate jälgimiseks kõikidel veebisaitidel. Eesmärk on kuvada "
"reklaame, mis on konkreetse kasutaja jaoks asjakohased ja köitvad ning seeläbi avaldajate ja "
"kolmandate osapoolte reklaamijate jaoks väärtuslikumad."
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr "Klassifitseerimata"
#: templates/frontend-popup.php:1812
msgid ""
"Unclassified cookies are cookies that we are in the process of classifying, together with the "
"providers of individual cookies."
msgstr ""
"Klassifitseerimata cookies on cookies, mille klassifitseerimisel oleme koos üksikute cookies "
"pakkujatega."
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr "Salvesta minu valikud"
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr "toiteallikaks"
#~ msgid "To get your Cookie ID click on Activate"
#~ msgstr "To get your Cookie ID click on Activate"
#~ msgid "Activate"
#~ msgstr "Activate"

View File

@ -0,0 +1,672 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-16 17:05+0500\n"
"PO-Revision-Date: 2022-03-30 04:56-0700\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: eu_ES\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: seers-cookie-consent-banner-privacy-policy.pot\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:350
msgid "Quick Feedback"
msgstr "Iritzi azkarra"
#: inc/seers-cookie-consent-plugin-deactivate.php:351
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr "Momentu bat baduzu, adierazi iezaguzu zergatik desaktibatzen ari zaren:"
#: inc/seers-cookie-consent-plugin-deactivate.php:354
#: inc/seers-cookie-consent-plugin-deactivate.php:355
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr "Bandera ez da beharrezkoa den hizkuntzan"
#: inc/seers-cookie-consent-plugin-deactivate.php:359
msgid ""
"The banner picks up your website language automatically. You can always sign-in on your Seers "
"account"
msgstr "Banderrak zure webgunea automatikoki jasotzen du. Zure Seers kontuan saioa hasi dezakezu beti"
#: inc/seers-cookie-consent-plugin-deactivate.php:359
msgid "and choose the language you like. See the video"
msgstr "eta aukeratu nahi duzun hizkuntza. Ikusi bideoa"
#: inc/seers-cookie-consent-plugin-deactivate.php:359
#: inc/seers-cookie-consent-plugin-deactivate.php:381
msgid "here"
msgstr "asko"
#: inc/seers-cookie-consent-plugin-deactivate.php:363
#: inc/seers-cookie-consent-plugin-deactivate.php:364
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr "Banner ez zen agertu"
#: inc/seers-cookie-consent-plugin-deactivate.php:367
#: inc/seers-cookie-consent-plugin-deactivate.php:388
msgid "Most of the times the compatibility issue can be fixed very quickly. Please contact"
msgstr "Bateragarritasun gaia gehienetan oso azkar konpondu daiteke. Mesedez, jarri harremanetan"
#: inc/seers-cookie-consent-plugin-deactivate.php:371
#: inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr "Cookieak ez dira ezarpenak erakusten"
#: inc/seers-cookie-consent-plugin-deactivate.php:374
msgid ""
"We are scanning your website and it can take up to 12 hours for Cookies to appear. In a very few "
"cases scanner miss a cookie. This"
msgstr ""
"Zure webgunea eskaneatzen ari gara eta 12 ordu iraun dezake cookieak agertzeko. Oso kasu gutxitan "
"eskanerrak galdu cookie bat. Hau"
#: inc/seers-cookie-consent-plugin-deactivate.php:374
msgid "video"
msgstr "bidetsio"
#: inc/seers-cookie-consent-plugin-deactivate.php:374
msgid "explains how to add cookies manually."
msgstr "cookieak eskuz nola gehitu azaltzen du."
#: inc/seers-cookie-consent-plugin-deactivate.php:378
#: inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr "Bannerrak ez zuen webgunearen gaia bat etorri"
#: inc/seers-cookie-consent-plugin-deactivate.php:381
msgid "You can fully customize the banner. Please see the video"
msgstr "Bandera erabat pertsonaliza dezakezu. Mesedez, ikusi bideoa"
#: inc/seers-cookie-consent-plugin-deactivate.php:384
#: inc/seers-cookie-consent-plugin-deactivate.php:385
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr "Pluginak nire gunea apurtu zuen"
#: inc/seers-cookie-consent-plugin-deactivate.php:392
#: inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr "Plugin hobea aurkitu dut"
#: inc/seers-cookie-consent-plugin-deactivate.php:395
msgid "Plugin name"
msgstr "Plugina izena"
#: inc/seers-cookie-consent-plugin-deactivate.php:398
msgid "The plugin is great, but i need specific feature that you do not support."
msgstr "Plugina bikaina da, baina onartzen ez dituzun ezaugarri zehatzak behar ditut."
#: inc/seers-cookie-consent-plugin-deactivate.php:399
#: inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid "The plugin is great, but i need specific feature that you don't support."
msgstr "Plugina bikaina da, baina ez dituzula onartzen ezaugarri zehatzak behar ditut."
#: inc/seers-cookie-consent-plugin-deactivate.php:402
msgid "Banner customisation."
msgstr "Banner pertsonalizazioa."
#: inc/seers-cookie-consent-plugin-deactivate.php:406
#: inc/seers-cookie-consent-plugin-deactivate.php:407
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr "Beste"
#: inc/seers-cookie-consent-plugin-deactivate.php:410
msgid "Kindly tell us the reason so we can improve."
msgstr "Mesedez, esan iezaguzu arrazoia hobetu dezakegun."
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "Submit & Deactivate"
msgstr "Bidali eta desaktibatu"
#: inc/seers-cookie-consent-plugin-deactivate.php:414
msgid "Cancel"
msgstr "Indargabetu"
#: inc/seers-cookie-consent-plugin-deactivate.php:419
msgid "Skip & Deactivate"
msgstr "Saltatu eta desaktibatu"
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr "Baztertu ohar hau."
#: seers-cookie-consent-banner-privacy-policy.php:133 templates/admin.php:97
msgid "Settings"
msgstr "Ezarpen"
#: seers-cookie-consent-banner-privacy-policy.php:139
msgid "Upgrade Premium"
msgstr "Berritu Premium"
#: seers-cookie-consent-banner-privacy-policy.php:290 templates/admin.php:740
#: templates/frontend-popup.php:1738 templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr "Cookies erabiltzen ditugu esperientzia onena lortzen duzula ziurtatzeko"
#: seers-cookie-consent-banner-privacy-policy.php:291 templates/admin.php:784 templates/admin.php:785
#: templates/admin.php:787 templates/frontend-popup.php:1740 templates/frontend-popup.php:1765
msgid "Allow All"
msgstr "Baimendu guztiak"
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:815 templates/admin.php:816
#: templates/admin.php:818 templates/frontend-popup.php:1740 templates/frontend-popup.php:1766
msgid "Disable All"
msgstr "Desgaitu guztiak"
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:847
#: templates/frontend-popup.php:1740
msgid "Preference"
msgstr "Hobespenak"
#: seers-cookie-consent-banner-privacy-policy.php:416
#: seers-cookie-consent-banner-privacy-policy.php:444
#: seers-cookie-consent-banner-privacy-policy.php:450
msgid "Cookies policy added successfully."
msgstr "Cookieen politika behar bezala gehitu da."
#: seers-cookie-consent-banner-privacy-policy.php:419
msgid "Some thing went wrong. Please check url and try again"
msgstr "Gauza batzuk oker joan ziren. Mesedez, egiaztatu URLa eta saiatu berriro"
#: seers-cookie-consent-banner-privacy-policy.php:670
msgid "Some thing went wrong."
msgstr "Gauza batzuk oker joan ziren."
#: seers-cookie-consent-banner-privacy-policy.php:806
msgid "Settings has been updated successfully"
msgstr "Ezarpenak ondo eguneratu dira"
#: templates/admin.php:92 templates/admin.php:1067
msgid "Account Setup"
msgstr "Kontuaren konfigurazioa"
#: templates/admin.php:100
msgid "Policy"
msgstr "Politika"
#: templates/admin.php:104
msgid "User Guide"
msgstr "Erabiltzailearen gida"
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr "Zure Seers Cookie Baimen Banner aktibatuta dago."
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr "Zure Seers Cookie Baimen Banner ez da aktibatuta"
#: templates/admin.php:134
msgid "Email"
msgstr "I-posta"
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr "Ados Seers"
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr "Baldintzak eta egoera"
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr "eta"
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr "Pribatutasun politika"
#: templates/admin.php:154 templates/admin.php:172
msgid "I agree Seers to use my email and url to create an account and power the cookie banner."
msgstr ""
"Seers nire posta elektronikoa eta URLa erabiltzea onartzen dut kontu bat sortzeko eta cookie banner-"
"a pizteko."
#: templates/admin.php:178
msgid "Create Account"
msgstr "Kontua sortu"
#: templates/admin.php:181
msgid "Cookie ID"
msgstr "Cookie IDa"
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr "Seers Cookie IDa automatikoki jasoko da kontua sortzearen ondoren"
#: templates/admin.php:197
msgid "Powering all your"
msgstr "Zurea zurea"
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr "Pribatutasuna eta; Datuen segurtasun beharrak"
#: templates/admin.php:199
msgid "Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy compliance tools,"
msgstr "Sar zaitez GDPR, PECR, CCPA eta; EPRIVACY Betetze tresnak,"
#: templates/admin.php:200
msgid "all"
msgstr "guzti"
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
"datu berriak betetzeko arazorik ez izateko diseinatua\n"
" Babes Araudia."
#: templates/admin.php:206
msgid "Policies Pack"
msgstr "Politikak Pack"
#: templates/admin.php:207
msgid "Templates Pack"
msgstr "Txantiloien paketea"
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr "GDPRko langileei eTraining"
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr "Cookie Baimenen Kudeaketa"
#: templates/admin.php:212
msgid "DPIA"
msgstr "Erakuslea"
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr "GDPR Ikuskaritza"
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr "Ziber segurua"
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr "Gaiaren eskaera kudeaketa"
#: templates/admin.php:217
msgid "START FREE"
msgstr "Hasi doan"
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
"Datuen pribatutasuna eta;\n"
" Betetzea. -Z bete"
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
"Enpresek betetzen laguntzeko pribatutasun eta baimenen kudeaketa plataforma liderra\n"
" GDPR, PECR, CCPA eta EPRIVACE-rekin"
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr "Hasi Premium Gaur"
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr "Seers Premium Plana"
#: templates/admin.php:232
msgid "Branding"
msgstr "Iza"
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr "Multi linguala"
#: templates/admin.php:234
msgid "Consent Log"
msgstr "Baimenen erregistroa"
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr "Cookie politika"
#: templates/admin.php:236
msgid "Prior Consent"
msgstr "Aldez aurretik baimena"
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr "6+ diseinu diseinu"
#: templates/admin.php:238
msgid "Customer Support"
msgstr "Bezeroaren laguntza"
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr "Banner pertsonalizazioa"
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr "Cookie Adierazpen Taula"
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
"Hasi Premium\n"
" Gaur"
#: templates/admin.php:255
msgid "Banner Settings"
msgstr "Banner ezarpenak"
#: templates/admin.php:260
msgid "Banner"
msgstr "Bannantzia"
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr "Gaitu / Desgaitu Cookie Banner"
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr "Cookie iraungitzea"
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr "Ezarri baimen-cookie egunetan iraungitzeko."
#: templates/admin.php:291
msgid "Language"
msgstr "Mintzaira"
#: templates/admin.php:291
msgid "Choose a language for the banner."
msgstr "Aukeratu Banner Ezarpenak."
#: templates/admin.php:701
msgid "Show Badge"
msgstr "Erakutsi txapa"
#: templates/admin.php:701
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr "Erakutsi txapela, cookie-banner-a post-baimena agertzeko."
#: templates/admin.php:724
msgid "Visual Settings"
msgstr "Ezarpen bisualak"
#: templates/admin.php:729
msgid "Banner Text"
msgstr "Banner testua"
#: templates/admin.php:729
msgid "Text to appear on the banner:"
msgstr "Banner-ean agertzeko testua:"
#: templates/admin.php:732 templates/admin.php:750
msgid "Colour"
msgstr "Kolore"
#: templates/admin.php:732
msgid "The text colour to appear on the banner:"
msgstr "Testuaren kolorea bandera agertzen da:"
#: templates/admin.php:747
msgid "Banner Background"
msgstr "Banner aurrekariak"
#: templates/admin.php:747
msgid "You can change the background colour of the banner:"
msgstr "Banderaren atzeko planoaren kolorea alda dezakezu:"
#: templates/admin.php:750
msgid "The background colour of the banner:"
msgstr "Banderaren atzeko planoaren kolorea:"
#: templates/admin.php:764
msgid "Accept Button"
msgstr "Onartu botoia"
#: templates/admin.php:764
msgid "You can change text colour, button colour and text of the 'Accept All' button"
msgstr "Testu kolorea, botoiaren kolorea eta 'Onartu guztiak' botoia alda ditzakezu"
#: templates/admin.php:767 templates/admin.php:798 templates/admin.php:829
msgid "Text Colour"
msgstr "Testu kolorea"
#: templates/admin.php:767
msgid "The text colour to appear on the 'Accept All' button:"
msgstr "Testuaren kolorea 'Onartu guztia' botoian agertzen da:"
#: templates/admin.php:777 templates/admin.php:808 templates/admin.php:839
msgid "Button Colour"
msgstr "Botoiaren kolorea"
#: templates/admin.php:777
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr "'Onartu' botoiaren kolorea bandera gainean agertzeko:"
#: templates/admin.php:795
msgid "Reject Button"
msgstr "Botoia arbuiatu"
#: templates/admin.php:795
msgid "You can change text colour, button colour and text of the 'Reject All' button"
msgstr "Testuaren kolorea, botoiaren kolorea eta 'baztertzeko botoiaren testua alda ditzakezu"
#: templates/admin.php:798
msgid "The text colour to appear on the 'Reject All' button:"
msgstr "Testuaren kolorea 'Ezetsi Guztiak' botoian agertzen da:"
#: templates/admin.php:808
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr "Banner gainean agertzeko botoiaren kolorea 'baztertu:"
#: templates/admin.php:826
msgid "Setting Button"
msgstr "Ezarri botoia"
#: templates/admin.php:826
msgid "You can change text colour and text of the 'Setting' button"
msgstr "'Ezarpena' botoiaren testu kolorea eta testua alda ditzakezu"
#: templates/admin.php:829
msgid "The text colour to appear on the 'Setting' button:"
msgstr "Testu kolorea 'Ezarpen' botoian agertzen da:"
#: templates/admin.php:839
msgid "The 'Setting' button colour to appear on the banner:"
msgstr "Banner-ean agertzen den 'ezarpena' botoiaren kolorea:"
#: templates/admin.php:850
msgid "Setting"
msgstr "Ezarpen"
#: templates/admin.php:858
msgid "Fonts"
msgstr "Letra-tipoak"
#: templates/admin.php:858
msgid "You can select a font for the text of the banner:"
msgstr "Banner testua lortzeko letra-tipo bat hauta dezakezu:"
#: templates/admin.php:910
msgid "Select Button"
msgstr "Hautatu botoia"
#: templates/admin.php:910
msgid "You can select the shape of the buttons that appear on the banner."
msgstr "Banner gainean agertzen diren botoien forma hauta dezakezu."
#: templates/admin.php:914
msgid "Default"
msgstr "Ez ordaindu"
#: templates/admin.php:918 templates/admin.php:928
msgid "Flat"
msgstr "Apartamentu"
#: templates/admin.php:921 templates/admin.php:931
msgid "Rounded"
msgstr "Biribildu"
#: templates/admin.php:924 templates/admin.php:934
msgid "Stroke"
msgstr "Stroke"
#: templates/admin.php:952
msgid "PREVIEW"
msgstr "Aurrerapen"
#: templates/admin.php:953
msgid "SAVE"
msgstr "Aurreztu"
#: templates/admin.php:972
msgid "Please create cookies policy page and enter URL below."
msgstr "Mesedez, sortu cookieen politika orria eta sartu beheko URLa."
#: templates/admin.php:976
msgid "Enable Policy:"
msgstr "Gaitu politika:"
#: templates/admin.php:993
msgid "Cookie Policy and declaration URL:"
msgstr "Cookie Politika eta Adierazpen URLa:"
#: templates/admin.php:996
msgid "Policy URL"
msgstr "Politika URLa"
#: templates/admin.php:1003
msgid "Save"
msgstr "Aurreztu"
#: templates/admin.php:1057
msgid "Premium Plan"
msgstr "Premium Plana"
#: templates/admin.php:1060 templates/admin.php:1249 templates/admin.php:1258 templates/admin.php:1266
msgid "Only the users with a paid account can avail this feature."
msgstr "Ordaindutako kontua duten erabiltzaileek bakarrik erabil dezakete funtzio hau."
#: templates/admin.php:1065
msgid "Ok"
msgstr "Ados"
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr "seers logotipoa"
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr "Cookie buruz"
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr "Irakurri Cookie Politika"
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr "Beharrezkoa"
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr "Beti Aktibo"
#: templates/frontend-popup.php:1774
msgid ""
"Necessary cookies help make a website usable by enabling basic functions like page navigation and "
"access to secure areas of the website. The website cannot function properly without these cookies."
msgstr ""
"Beharrezko cookies webgune bat erabilgarri egiten laguntzen dute, oinarrizko funtzioak gaituz, hala "
"nola, orrialdeen nabigazioa eta webguneko gune seguruetarako sarbidea. Webguneak ezin du behar "
"bezala funtzionatu cookie horiek gabe."
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784
#: templates/frontend-popup.php:1794 templates/frontend-popup.php:1804
#: templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr "Cookieen xehetasunak"
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr "Hobespenak"
#: templates/frontend-popup.php:1784
msgid ""
"Preference cookies enable a website to remember information that changes the way the website "
"behaves or looks, like your preferred language or the region that you are in."
msgstr ""
"Lehentasunezko cookieek webgune bat ahalbidetzen dute webguneak nola jokatzeko edo begiratzeko "
"modua aldatzen duen informazioa gogoratzeko, zure hizkuntza nahiago duzun edo sartzen zaren "
"eskualdean bezala."
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr "Estatistika"
#: templates/frontend-popup.php:1794
msgid ""
"Statistic cookies help website owners to understand how visitors interact with websites by "
"collecting and reporting information anonymously."
msgstr ""
"Hobespenetako cookieek aukera ematen diote web orriari bere itxura edo funtzionamendua aldarazten "
"duen informazioa gogoratzeko; adibidez, gogokoa duzun hizkuntza edo zer eskualdetan zauden."
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr "Marketina"
#: templates/frontend-popup.php:1804
msgid ""
"Marketing cookies are used to track visitors across websites. The intention is to display ads that "
"are relevant and engaging for the individual user and thereby more valuable for publishers and "
"third-party advertisers."
msgstr ""
"Marketin cookies webguneetan zehar bisitarien jarraipena egiteko erabiltzen dira. Asmoa da "
"erabiltzaile indibidualarentzat garrantzitsuak eta erakargarriak diren iragarkiak bistaratzea eta, "
"ondorioz, argitaletxeentzat eta hirugarren iragarleentzat baliotsuagoak."
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr "Sailkatu gabeak"
#: templates/frontend-popup.php:1812
msgid ""
"Unclassified cookies are cookies that we are in the process of classifying, together with the "
"providers of individual cookies."
msgstr ""
"Sailkatu gabeko cookies sailkatzen ari garen cookies dira, cookie indibidualen hornitzaileekin "
"batera."
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr "Gorde nire aukerak"
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr "powered by"
#~ msgid "To get your Cookie ID click on Activate"
#~ msgstr "To get your Cookie ID click on Activate"
#~ msgid "Activate"
#~ msgstr "Activate"

View File

@ -0,0 +1,643 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-16 17:05+0500\n"
"PO-Revision-Date: 2022-03-30 04:56-0700\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: fi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: seers-cookie-consent-banner-privacy-policy.pot\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:350
msgid "Quick Feedback"
msgstr "Nopea palaute"
#: inc/seers-cookie-consent-plugin-deactivate.php:351
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr "Jos sinulla on hetki, ilmoita siitä, miksi olet käytössä:"
#: inc/seers-cookie-consent-plugin-deactivate.php:354
#: inc/seers-cookie-consent-plugin-deactivate.php:355
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr "Banner ei ole vaaditussa kielessä"
#: inc/seers-cookie-consent-plugin-deactivate.php:359
msgid "The banner picks up your website language automatically. You can always sign-in on your Seers account"
msgstr "Banneri omaksuu verkkosivustosi kielen automaattisesti. Voit aina kirjautua sisään Seers-tilillesi"
#: inc/seers-cookie-consent-plugin-deactivate.php:359
msgid "and choose the language you like. See the video"
msgstr "ja valitse haluamasi kieli. Katso video"
#: inc/seers-cookie-consent-plugin-deactivate.php:359
#: inc/seers-cookie-consent-plugin-deactivate.php:381
msgid "here"
msgstr "tässä"
#: inc/seers-cookie-consent-plugin-deactivate.php:363
#: inc/seers-cookie-consent-plugin-deactivate.php:364
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr "Banneri ei näy"
#: inc/seers-cookie-consent-plugin-deactivate.php:367
#: inc/seers-cookie-consent-plugin-deactivate.php:388
msgid "Most of the times the compatibility issue can be fixed very quickly. Please contact"
msgstr "Suurin osa ajasta yhteensopivuusongelma voidaan kiinnittää hyvin nopeasti. Ota yhteyttä"
#: inc/seers-cookie-consent-plugin-deactivate.php:371
#: inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr "Cookies eivät näy asetuksissa"
#: inc/seers-cookie-consent-plugin-deactivate.php:374
msgid "We are scanning your website and it can take up to 12 hours for Cookies to appear. In a very few cases scanner miss a cookie. This"
msgstr "Tarkistamme verkkosivustoasi ja voi kestää jopa 12 tuntia, ennen kuin cookies tulevat näkyviin. Hyvin harvoissa tapauksissa skannerista jää huomaamatta cookie. Tämä"
#: inc/seers-cookie-consent-plugin-deactivate.php:374
msgid "video"
msgstr "video-"
#: inc/seers-cookie-consent-plugin-deactivate.php:374
msgid "explains how to add cookies manually."
msgstr "selittää, kuinka cookies lisätään manuaalisesti."
#: inc/seers-cookie-consent-plugin-deactivate.php:378
#: inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr "Banner ei vastaa verkkosivuston teemaa"
#: inc/seers-cookie-consent-plugin-deactivate.php:381
msgid "You can fully customize the banner. Please see the video"
msgstr "Voit muokata banneria täysin. Katso video"
#: inc/seers-cookie-consent-plugin-deactivate.php:384
#: inc/seers-cookie-consent-plugin-deactivate.php:385
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr "Plugin rikkoi sivustoni"
#: inc/seers-cookie-consent-plugin-deactivate.php:392
#: inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr "Olen löytänyt paremman plugin"
#: inc/seers-cookie-consent-plugin-deactivate.php:395
msgid "Plugin name"
msgstr "Plugin nimi"
#: inc/seers-cookie-consent-plugin-deactivate.php:398
msgid "The plugin is great, but i need specific feature that you do not support."
msgstr "Plugin on suuri, mutta tarvitsen erityistä ominaisuutta, jota et tue."
#: inc/seers-cookie-consent-plugin-deactivate.php:399
#: inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid "The plugin is great, but i need specific feature that you don't support."
msgstr "Plugin on suuri, mutta tarvitsen erityistä ominaisuutta, jota et tue."
#: inc/seers-cookie-consent-plugin-deactivate.php:402
msgid "Banner customisation."
msgstr "Bannerin räätälöinti."
#: inc/seers-cookie-consent-plugin-deactivate.php:406
#: inc/seers-cookie-consent-plugin-deactivate.php:407
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr "Muut"
#: inc/seers-cookie-consent-plugin-deactivate.php:410
msgid "Kindly tell us the reason so we can improve."
msgstr "Kerro meille syystä, jotta voimme parantaa."
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "Submit & Deactivate"
msgstr "Lähetä ja deaktivoi"
#: inc/seers-cookie-consent-plugin-deactivate.php:414
msgid "Cancel"
msgstr "Peruuttaa"
#: inc/seers-cookie-consent-plugin-deactivate.php:419
msgid "Skip & Deactivate"
msgstr "Skip & deaktivoida"
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr "Hylkää tämän ilmoituksen."
#: seers-cookie-consent-banner-privacy-policy.php:133 templates/admin.php:97
msgid "Settings"
msgstr "Asetukset"
#: seers-cookie-consent-banner-privacy-policy.php:139
msgid "Upgrade Premium"
msgstr "Päivitä palkkio"
#: seers-cookie-consent-banner-privacy-policy.php:290 templates/admin.php:740
#: templates/frontend-popup.php:1738 templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr "Käytämme cookies varmistaaksemme parhaan kokemuksen"
#: seers-cookie-consent-banner-privacy-policy.php:291 templates/admin.php:784
#: templates/admin.php:785 templates/admin.php:787
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1765
msgid "Allow All"
msgstr "Salli kaikki"
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:815
#: templates/admin.php:816 templates/admin.php:818
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1766
msgid "Disable All"
msgstr "Poista kaikki käytöstä"
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:847
#: templates/frontend-popup.php:1740
msgid "Preference"
msgstr "Asetukset"
#: seers-cookie-consent-banner-privacy-policy.php:416
#: seers-cookie-consent-banner-privacy-policy.php:444
#: seers-cookie-consent-banner-privacy-policy.php:450
msgid "Cookies policy added successfully."
msgstr "Cookie lisätty onnistuneesti."
#: seers-cookie-consent-banner-privacy-policy.php:419
msgid "Some thing went wrong. Please check url and try again"
msgstr "Jotain meni pieleen. Tarkista URL-osoite ja yritä uudelleen"
#: seers-cookie-consent-banner-privacy-policy.php:670
msgid "Some thing went wrong."
msgstr "Jotain meni pieleen."
#: seers-cookie-consent-banner-privacy-policy.php:806
msgid "Settings has been updated successfully"
msgstr "Asetukset on päivitetty onnistuneesti"
#: templates/admin.php:92 templates/admin.php:1067
msgid "Account Setup"
msgstr "Tilin asetukset"
#: templates/admin.php:100
msgid "Policy"
msgstr "Käytäntö"
#: templates/admin.php:104
msgid "User Guide"
msgstr "Käyttöohjeet"
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr "Suostumusbannerisi Seers Cookie on aktivoitu."
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr "Seers Cookie-suostumusbannerisi EI ole aktivoitu, koska"
#: templates/admin.php:134
msgid "Email"
msgstr "Sähköposti"
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr "Olen samaa mieltä Seers"
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr "Käyttöehdot"
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr "ja"
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr "Tietosuojakäytäntö"
#: templates/admin.php:154 templates/admin.php:172
msgid "I agree Seers to use my email and url to create an account and power the cookie banner."
msgstr "Olen samaa mieltä näkijoille käyttämään sähköpostia ja URL-osoitetta luomaan tilin ja tehon evästeiden banneri.I agree Seers to use my email and url to create an account and power the cookie banner."
#: templates/admin.php:178
msgid "Create Account"
msgstr "Luo tili"
#: templates/admin.php:181
msgid "Cookie ID"
msgstr "Cookie ID"
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr "SEERS Cookie-tunnus vastaanotetaan automaattisesti tilin luomisen jälkeen"
#: templates/admin.php:197
msgid "Powering all your"
msgstr "Virta kaikki"
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr "Yksityisyys ja; Tietoturvallisuustarpeet"
#: templates/admin.php:199
msgid "Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy compliance tools,"
msgstr "Päästä pääsemään laajaan valikoimaan GDPR, PECR, CCPA ja; ePrivacy-vaatimustyökalut,"
#: templates/admin.php:200
msgid "all"
msgstr "kaikki"
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
"suunniteltu ottamaan vaivaa pois uusien tietojen noudattamisesta\n"
" Suojaussäännöt."
#: templates/admin.php:206
msgid "Policies Pack"
msgstr "Politiikan pakkaus"
#: templates/admin.php:207
msgid "Templates Pack"
msgstr "Templates Pack"
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr "GDPR: n henkilökunta eTraing"
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr "Cookie suostumus"
#: templates/admin.php:212
msgid "DPIA"
msgstr "Dpia"
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr "GDPR-tarkastus"
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr "Cyber Secure"
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr "Aiheenpyynnön hallinta"
#: templates/admin.php:217
msgid "START FREE"
msgstr "Aloita vapaa"
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
"Tietojen yksityisyys ja;\n"
" Noudattaminen. Ratkaistu"
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
"Trust Worlds Johtava yksityisyys ja suostumusjohtaja auttaa yrityksiä noudattamaan\n"
" GDPR, PECR, CCPA ja ePrivacy"
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr "Aloita palkkio tänään"
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr "Seers Premium Plan"
#: templates/admin.php:232
msgid "Branding"
msgstr "Brändäys"
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr "Monikielinen"
#: templates/admin.php:234
msgid "Consent Log"
msgstr "Suostumusloki"
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr "Cookie Käytäntö"
#: templates/admin.php:236
msgid "Prior Consent"
msgstr "Aikaisempi suostumus"
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr "6+ Design Layout"
#: templates/admin.php:238
msgid "Customer Support"
msgstr "Asiakaspalvelu"
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr "Bannerin räätälöinti"
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr "Cookie-ilmoitustaulukko"
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
"ALOITA PREMIUM\n"
" TÄNÄÄN"
#: templates/admin.php:255
msgid "Banner Settings"
msgstr "Bannerin asetukset"
#: templates/admin.php:260
msgid "Banner"
msgstr "Banneri"
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr "Ota \"Cookie\"-banneri käyttöön/pois käytöstä"
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr "Cookie päättyminen"
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr "Aseta suostumuksesi cookie voimassaoloajan päättymiseksi päivinä."
#: templates/admin.php:291
msgid "Language"
msgstr "Kieli"
#: templates/admin.php:291
msgid "Choose a language for the banner."
msgstr "Valitse bannerin kieli."
#: templates/admin.php:701
msgid "Show Badge"
msgstr "Näytä merkki"
#: templates/admin.php:701
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr "Näytä merkki, jotta cookie-banneri näkyy suostumuksen jälkeen."
#: templates/admin.php:724
msgid "Visual Settings"
msgstr "Visuaaliset asetukset"
#: templates/admin.php:729
msgid "Banner Text"
msgstr "Banneriteksti"
#: templates/admin.php:729
msgid "Text to appear on the banner:"
msgstr "Teksti näkyviin banneriin:"
#: templates/admin.php:732 templates/admin.php:750
msgid "Colour"
msgstr "Väri"
#: templates/admin.php:732
msgid "The text colour to appear on the banner:"
msgstr "Tekstin väri ilmestyy banneriin:"
#: templates/admin.php:747
msgid "Banner Background"
msgstr "Banneri tausta"
#: templates/admin.php:747
msgid "You can change the background colour of the banner:"
msgstr "Voit muuttaa bannerin taustaväriä:"
#: templates/admin.php:750
msgid "The background colour of the banner:"
msgstr "Bannerin taustaväri:"
#: templates/admin.php:764
msgid "Accept Button"
msgstr "Hyväksy-painike"
#: templates/admin.php:764
msgid "You can change text colour, button colour and text of the 'Accept All' button"
msgstr "Voit muuttaa tekstiä, painikkeen väriä ja tekstiä 'Hyväksy kaikki' -painikkeen"
#: templates/admin.php:767 templates/admin.php:798 templates/admin.php:829
msgid "Text Colour"
msgstr "Tekstin väri"
#: templates/admin.php:767
msgid "The text colour to appear on the 'Accept All' button:"
msgstr "Tekstin väri näkyviin 'Hyväksy kaikki' -painikkeella:"
#: templates/admin.php:777 templates/admin.php:808 templates/admin.php:839
msgid "Button Colour"
msgstr "Painike väri"
#: templates/admin.php:777
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr "'Hyväksy kaikki' -painikkeen väri, joka näkyy bannerilla:"
#: templates/admin.php:795
msgid "Reject Button"
msgstr "Hylkää painike"
#: templates/admin.php:795
msgid "You can change text colour, button colour and text of the 'Reject All' button"
msgstr "Voit vaihtaa tekstivärin, painikkeen värin ja tekstin 'hylkää kaikki' -painikkeen"
#: templates/admin.php:798
msgid "The text colour to appear on the 'Reject All' button:"
msgstr "Tekstin väri näkyviin 'Hylkää kaikki' -painikkeella:"
#: templates/admin.php:808
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr "'Hylkää kaikki' -painikkeen väri, joka näkyy bannerilla:"
#: templates/admin.php:826
msgid "Setting Button"
msgstr "Asetuspainike"
#: templates/admin.php:826
msgid "You can change text colour and text of the 'Setting' button"
msgstr "Voit muuttaa tekstiä ja tekstiä 'Asetus' -painiketta"
#: templates/admin.php:829
msgid "The text colour to appear on the 'Setting' button:"
msgstr "Tekstin väri näkyy 'Asetus' -painikkeella:"
#: templates/admin.php:839
msgid "The 'Setting' button colour to appear on the banner:"
msgstr "'Asetus' -painikkeen väri näkyy bannerilla:"
#: templates/admin.php:850
msgid "Setting"
msgstr "Asetus"
#: templates/admin.php:858
msgid "Fonts"
msgstr "Fontit"
#: templates/admin.php:858
msgid "You can select a font for the text of the banner:"
msgstr "Voit valita fontin bannerin tekstiin:"
#: templates/admin.php:910
msgid "Select Button"
msgstr "Valitse-painike"
#: templates/admin.php:910
msgid "You can select the shape of the buttons that appear on the banner."
msgstr "Voit valita bannerin näkyvän painikkeiden muodon."
#: templates/admin.php:914
msgid "Default"
msgstr "Oletusarvo"
#: templates/admin.php:918 templates/admin.php:928
msgid "Flat"
msgstr "Tasainen"
#: templates/admin.php:921 templates/admin.php:931
msgid "Rounded"
msgstr "Pyöristetty"
#: templates/admin.php:924 templates/admin.php:934
msgid "Stroke"
msgstr "Stroke"
#: templates/admin.php:952
msgid "PREVIEW"
msgstr "Esikatselu"
#: templates/admin.php:953
msgid "SAVE"
msgstr "TALLENTAA"
#: templates/admin.php:972
msgid "Please create cookies policy page and enter URL below."
msgstr "Luo cookies-käytäntösivu ja kirjoita alla oleva URL-osoite."
#: templates/admin.php:976
msgid "Enable Policy:"
msgstr "Ota käyttöön politiikka:"
#: templates/admin.php:993
msgid "Cookie Policy and declaration URL:"
msgstr "Cookie-politiikka ja ilmoituksen URL-osoite:"
#: templates/admin.php:996
msgid "Policy URL"
msgstr "Politiikan URL-osoite"
#: templates/admin.php:1003
msgid "Save"
msgstr "TALLENTAA"
#: templates/admin.php:1057
msgid "Premium Plan"
msgstr "Premium-suunnitelma"
#: templates/admin.php:1060 templates/admin.php:1249 templates/admin.php:1258
#: templates/admin.php:1266
msgid "Only the users with a paid account can avail this feature."
msgstr "Vain maksetun tilin käyttäjät voivat käyttää tätä ominaisuutta."
#: templates/admin.php:1065
msgid "Ok"
msgstr "Ok"
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr "seers logo"
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr "Tietoja Cookies"
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr "Lue Cookie"
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr "Välttämätön"
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr "Aina aktiivinen"
#: templates/frontend-popup.php:1774
msgid "Necessary cookies help make a website usable by enabling basic functions like page navigation and access to secure areas of the website. The website cannot function properly without these cookies."
msgstr "Tarvittavat cookies auttavat tekemään verkkosivustosta käyttökelpoisen mahdollistamalla perustoiminnot, kuten sivunavigointi ja pääsyn verkkosivuston suojatuille alueille. Sivusto ei voi toimia oikein ilman näitä cookies."
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784
#: templates/frontend-popup.php:1794 templates/frontend-popup.php:1804
#: templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr "Cookies Detail"
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr "Asetukset"
#: templates/frontend-popup.php:1784
msgid "Preference cookies enable a website to remember information that changes the way the website behaves or looks, like your preferred language or the region that you are in."
msgstr "Ensisijaisten cookies avulla verkkosivusto muistaa tiedot, jotka muuttavat verkkosivuston käyttäytymistä tai ulkonäköä, kuten haluamasi kieli tai alue, jolla olet."
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr "Tilastot"
#: templates/frontend-popup.php:1794
msgid "Statistic cookies help website owners to understand how visitors interact with websites by collecting and reporting information anonymously."
msgstr "Tilastolliset cookies auttavat verkkosivustojen omistajia ymmärtämään kävijöiden vuorovaikutusta verkkosivustojen kanssa keräämällä ja ilmoittamalla tietoja nimettömästi."
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr "Markkinointi"
#: templates/frontend-popup.php:1804
msgid "Marketing cookies are used to track visitors across websites. The intention is to display ads that are relevant and engaging for the individual user and thereby more valuable for publishers and third-party advertisers."
msgstr "Markkinointi cookies käytetään kävijöiden seuraamiseen eri sivustoilla. Tarkoitus on näyttää mainoksia, jotka ovat osuvia ja kiinnostavia yksittäiselle käyttäjälle ja siten arvokkaampia julkaisijoille ja kolmannen osapuolen mainostajille."
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr "Luokittelematon"
#: templates/frontend-popup.php:1812
msgid "Unclassified cookies are cookies that we are in the process of classifying, together with the providers of individual cookies."
msgstr "Luokittelemattomat cookies ovat cookies, jotka luokittelemme parhaillaan yhdessä yksittäisten cookies tarjoajien kanssa."
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr "Tallenna valintani"
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr "powered by"
#~ msgid "To get your Cookie ID click on Activate"
#~ msgstr "To get your Cookie ID click on Activate"
#~ msgid "Activate"
#~ msgstr "Activate"

View File

@ -0,0 +1,723 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-25 17:21+0500\n"
"PO-Revision-Date: 2022-03-30 04:56-0700\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: fr_BE\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
"X-Poedit-Basepath: ..\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPath-1: inc\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:382
msgid "Quick Feedback"
msgstr "Commentaires rapides"
#: inc/seers-cookie-consent-plugin-deactivate.php:383
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr ""
"Si vous avez un moment, laissez-nous savoir pourquoi vous êtes désactivé:"
#: inc/seers-cookie-consent-plugin-deactivate.php:386
#: inc/seers-cookie-consent-plugin-deactivate.php:387
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr "La bannière n'est pas dans la langue requise"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid ""
"The banner picks up your website language automatically. You can always sign-"
"in on your Seers account"
msgstr ""
"La bannière reprend automatiquement la langue de votre site web. Vous pouvez "
"toujours vous connecter sur votre compte Seers"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "and choose the language you like. See the video"
msgstr "et choisissez la langue que vous aimez. Voir la vidéo"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "here"
msgstr "ici"
#: inc/seers-cookie-consent-plugin-deactivate.php:395
#: inc/seers-cookie-consent-plugin-deactivate.php:396
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr "Bannière n'apparaissait pas"
#: inc/seers-cookie-consent-plugin-deactivate.php:399
#: inc/seers-cookie-consent-plugin-deactivate.php:420
msgid ""
"Most of the times the compatibility issue can be fixed very quickly. Please "
"contact"
msgstr ""
"La plupart du temps, la question de compatibilité peut être fixée très "
"rapidement. S'il vous plaît contactez"
#: inc/seers-cookie-consent-plugin-deactivate.php:403
#: inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr "Les cookies ne montrent pas dans les paramètres"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid ""
"We are scanning your website and it can take up to 12 hours for Cookies to "
"appear. In a very few cases scanner miss a cookie. This"
msgstr ""
"Nous numérisons votre site Web et nous pourrons prendre jusqu'à 12 heures "
"pour que les cookies apparaissent. Dans un très peu de cas, le scanner "
"manque un cookie. Ce"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "video"
msgstr "vidéo"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "explains how to add cookies manually."
msgstr "explique comment ajouter des cookies manuellement."
#: inc/seers-cookie-consent-plugin-deactivate.php:410
#: inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr "La bannière n'a pas atteint le thème du site Web"
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "You can fully customize the banner. Please see the video"
msgstr ""
"Vous pouvez entièrement personnaliser la bannière. S'il vous plaît voir la "
"vidéo"
#: inc/seers-cookie-consent-plugin-deactivate.php:416
#: inc/seers-cookie-consent-plugin-deactivate.php:417
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr "Le plugin a cassé mon site"
#: inc/seers-cookie-consent-plugin-deactivate.php:424
#: inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr "J'ai trouvé un meilleur plugin"
#: inc/seers-cookie-consent-plugin-deactivate.php:427
msgid "Plugin name"
msgstr "Nom du plug-in"
#: inc/seers-cookie-consent-plugin-deactivate.php:430
msgid ""
"The plugin is great, but i need specific feature that you do not support."
msgstr ""
"Le plugin est génial, mais j'ai besoin d'une fonctionnalité spécifique que "
"vous ne supportez pas."
#: inc/seers-cookie-consent-plugin-deactivate.php:431
#: inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid ""
"The plugin is great, but i need specific feature that you don't support."
msgstr ""
"Le plugin est génial, mais j'ai besoin d'une fonctionnalité spécifique que "
"vous ne supportez pas."
#: inc/seers-cookie-consent-plugin-deactivate.php:434
msgid "Banner customisation."
msgstr "Personnalisation des bannières."
#: inc/seers-cookie-consent-plugin-deactivate.php:438
#: inc/seers-cookie-consent-plugin-deactivate.php:439
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr "Autre"
#: inc/seers-cookie-consent-plugin-deactivate.php:442
msgid "Kindly tell us the reason so we can improve."
msgstr "Veuillez nous dire la raison pour que nous puissions nous améliorer."
#: inc/seers-cookie-consent-plugin-deactivate.php:445
msgid "Submit & Deactivate"
msgstr "Soumettre et désactiver"
#: inc/seers-cookie-consent-plugin-deactivate.php:446
msgid "Cancel"
msgstr "Annuler"
#: inc/seers-cookie-consent-plugin-deactivate.php:451
msgid "Skip & Deactivate"
msgstr "Skip & Désactiver"
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr "Ne tenez pas compte de cet avertissement."
#: seers-cookie-consent-banner-privacy-policy.php:135 templates/admin.php:97
msgid "Settings"
msgstr "Réglages"
#: seers-cookie-consent-banner-privacy-policy.php:141
msgid "Upgrade Premium"
msgstr "Moderniser la prime"
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:514
#: templates/frontend-popup.php:1738 templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr ""
"Nous utilisons des cookies pour vous assurer dobtenir la meilleure "
"expérience"
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:558
#: templates/admin.php:559 templates/admin.php:561
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1765
msgid "Allow All"
msgstr "Autoriser tout"
#: seers-cookie-consent-banner-privacy-policy.php:294 templates/admin.php:589
#: templates/admin.php:590 templates/admin.php:592
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1766
msgid "Disable All"
msgstr "Désactiver tous"
#: seers-cookie-consent-banner-privacy-policy.php:295 templates/admin.php:621
#: templates/frontend-popup.php:1740
msgid "Preference"
msgstr "Centre de réglage"
#: seers-cookie-consent-banner-privacy-policy.php:418
#: seers-cookie-consent-banner-privacy-policy.php:446
#: seers-cookie-consent-banner-privacy-policy.php:452
msgid "Cookies policy added successfully."
msgstr "La politique de cookies a ajouté avec succès."
#: seers-cookie-consent-banner-privacy-policy.php:421
msgid "Some thing went wrong. Please check url and try again"
msgstr "Une chose a mal tourné. S'il vous plaît vérifier l'URL et réessayer"
#: seers-cookie-consent-banner-privacy-policy.php:675
msgid "Some thing went wrong."
msgstr "Une chose a mal tourné."
#: seers-cookie-consent-banner-privacy-policy.php:819
msgid "Settings has been updated successfully"
msgstr "Les paramètres ont été mis à jour avec succès"
#: templates/admin.php:92 templates/admin.php:841
msgid "Account Setup"
msgstr "Configuration du compte"
#: templates/admin.php:100
msgid "Policy"
msgstr "Politique"
#: templates/admin.php:104
msgid "User Guide"
msgstr "Mode d'emploi"
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr "Votre bannière de consentement aux cookies Seers est activée."
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr ""
"Votre bannière de consentement aux cookies Seers n'est PAS activée parce que"
#: templates/admin.php:134
msgid "Email"
msgstr "E-mail"
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr "Je suis d'accord avec Seers"
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr "Termes et conditions"
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr "et"
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr "Politique de confidentialité"
#: templates/admin.php:154 templates/admin.php:172
msgid ""
"I agree Seers to use my email and url to create an account and power the "
"cookie banner."
msgstr ""
"J'accepte que Seers utilise mon email et mon url pour créer un compte et "
"alimenter la bannière de cookies."
#: templates/admin.php:178
msgid "Create Account"
msgstr "Créer un compte"
#: templates/admin.php:181
msgid "Cookie ID"
msgstr "Cookie ID"
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr ""
"L'ID de cookie de Seers sera reçu automatiquement après la création du compte"
#: templates/admin.php:197
msgid "Powering all your"
msgstr "Allumer tous vos"
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr "La vie privée et; Besoins de sécurité des données"
#: templates/admin.php:199
msgid ""
"Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy "
"compliance tools,"
msgstr ""
"Avoir accès à une vaste gamme de GDPR, PPECR, CCPA et; Outils de conformité "
"de l'aprivacy,"
#: templates/admin.php:200
msgid "all"
msgstr "tous"
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
"conçu pour prendre les tracas de se conformer aux nouvelles données\n"
"Règlement de protection."
#: templates/admin.php:206
msgid "Policies Pack"
msgstr "Politiques"
#: templates/admin.php:207
msgid "Templates Pack"
msgstr "Templates"
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr "Formation en ligne du personnel sur le GDPR"
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr "Gestion du consentement des cookies"
#: templates/admin.php:212
msgid "DPIA"
msgstr "Dpia"
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr "Audit GDPR"
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr "Cyber Secure"
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr "Gestion de la demande de sujet"
#: templates/admin.php:217
msgid "START FREE"
msgstr "Commencer librement"
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
"La confidentialité des données et;\n"
"Conformité. Résolu"
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help "
"companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
"Trust Worlds dirigeant la confidentialité et la gestion de la consentement à "
"aider les entreprises à se conformer\n"
" avec GDPR, PECR, CCPA et ePrivacy"
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr "Commencez la prime aujourd'hui"
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr "Plan Premium Seers"
#: templates/admin.php:232
msgid "Branding"
msgstr "Marque"
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr "Multi lingual"
#: templates/admin.php:234
msgid "Consent Log"
msgstr "Journal de consentement"
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr "Politique de cookie"
#: templates/admin.php:236
msgid "Prior Consent"
msgstr "Consentement préalable"
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr "6+ mises en page de conception"
#: templates/admin.php:238
msgid "Customer Support"
msgstr "Service client"
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr "Personnalisation des bannières"
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr "Table de déclaration de cookie"
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
"Commencer la prime\n"
" AUJOURD'HUI\""
#: templates/admin.php:255
msgid "Banner Settings"
msgstr "Paramètres de bannière"
#: templates/admin.php:260
msgid "Banner"
msgstr "Bannière"
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr "Activer / désactiver la bannière de cookies"
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr "Expiration des cookies"
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr "Définissez votre cookie de consentement à expirer en jours."
#: templates/admin.php:291
msgid "Language"
msgstr "Langue"
#: templates/admin.php:291
msgid "Choose a language for the banner Settings > General."
msgstr "Choisissez une langue pour la bannière Réglages > Général."
#: templates/admin.php:475
msgid "Show Badge"
msgstr "Show badge"
#: templates/admin.php:475
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr ""
"Montrez un badge pour permettre à la bannière de la cookie d'apparaître le "
"consentement post."
#: templates/admin.php:498
msgid "Visual Settings"
msgstr "Paramètres visuels"
#: templates/admin.php:503
msgid "Banner Text"
msgstr "Texte de bannière"
#: templates/admin.php:503
msgid "Text to appear on the banner:"
msgstr "Texte apparaître sur la bannière:"
#: templates/admin.php:506 templates/admin.php:524
msgid "Colour"
msgstr "Couleur"
#: templates/admin.php:506
msgid "The text colour to appear on the banner:"
msgstr "La couleur de texte à apparaître sur la bannière:"
#: templates/admin.php:521
msgid "Banner Background"
msgstr "Fond de bannière"
#: templates/admin.php:521
msgid "You can change the background colour of the banner:"
msgstr "Vous pouvez changer la couleur de fond de la bannière:"
#: templates/admin.php:524
msgid "The background colour of the banner:"
msgstr "La couleur de fond de la bannière:"
#: templates/admin.php:538
msgid "Accept Button"
msgstr "Accepter le bouton"
#: templates/admin.php:538
msgid ""
"You can change text colour, button colour and text of the 'Accept All' button"
msgstr ""
"Vous pouvez modifier la couleur du texte, la couleur du bouton et le texte "
"du bouton 'Accepter tout'"
#: templates/admin.php:541 templates/admin.php:572 templates/admin.php:603
msgid "Text Colour"
msgstr "Couleur de texte"
#: templates/admin.php:541
msgid "The text colour to appear on the 'Accept All' button:"
msgstr "La couleur de texte à apparaître sur le bouton \"Accepter tout\":"
#: templates/admin.php:551 templates/admin.php:582 templates/admin.php:613
msgid "Button Colour"
msgstr "Couleur de bouton"
#: templates/admin.php:551
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr "La couleur de bouton 'Accepter tout' pour apparaître sur la bannière:"
#: templates/admin.php:569
msgid "Reject Button"
msgstr "Bouton de rejet"
#: templates/admin.php:569
msgid ""
"You can change text colour, button colour and text of the 'Reject All' button"
msgstr ""
"Vous pouvez modifier la couleur du texte, la couleur du bouton et le texte "
"du bouton \"Rejeter tout\""
#: templates/admin.php:572
msgid "The text colour to appear on the 'Reject All' button:"
msgstr "La couleur de texte à apparaître sur le bouton \"Rejeter tout\":"
#: templates/admin.php:582
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr "La couleur du bouton \"rejeter\" pour apparaître sur la bannière:"
#: templates/admin.php:600
msgid "Setting Button"
msgstr "Bouton de réglage"
#: templates/admin.php:600
msgid "You can change text colour and text of the 'Setting' button"
msgstr ""
"Vous pouvez modifier la couleur du texte et le texte du bouton \"réglage\""
#: templates/admin.php:603
msgid "The text colour to appear on the 'Setting' button:"
msgstr "La couleur de texte à apparaître sur le bouton \"réglage\":"
#: templates/admin.php:613
msgid "The 'Setting' button colour to appear on the banner:"
msgstr "La couleur du bouton \"réglage\" pour apparaître sur la bannière:"
#: templates/admin.php:624
msgid "Setting"
msgstr "Réglage"
#: templates/admin.php:632
msgid "Fonts"
msgstr "Polices"
#: templates/admin.php:632
msgid "You can select a font for the text of the banner:"
msgstr "Vous pouvez sélectionner une police pour le texte de la bannière:"
#: templates/admin.php:684
msgid "Select Button"
msgstr "Sélectionner le bouton"
#: templates/admin.php:684
msgid "You can select the shape of the buttons that appear on the banner."
msgstr ""
"Vous pouvez sélectionner la forme des boutons qui apparaissent sur la "
"bannière."
#: templates/admin.php:688
msgid "Default"
msgstr "Défaut"
#: templates/admin.php:692 templates/admin.php:702
msgid "Flat"
msgstr "Flat"
#: templates/admin.php:695 templates/admin.php:705
msgid "Rounded"
msgstr "Arrondi"
#: templates/admin.php:698 templates/admin.php:708
msgid "Stroke"
msgstr "Stroke"
#: templates/admin.php:726
msgid "PREVIEW"
msgstr "Aperçu"
#: templates/admin.php:727
msgid "SAVE"
msgstr "ENREGISTRER"
#: templates/admin.php:746
msgid "Please create cookies policy page and enter URL below."
msgstr ""
"Veuillez créer une page de stratégie de cookies et entrez l'URL ci-dessous."
#: templates/admin.php:750
msgid "Enable Policy:"
msgstr "Activer la politique:"
#: templates/admin.php:767
msgid "Cookie Policy and declaration URL:"
msgstr "Politique de cookie et URL de déclaration:"
#: templates/admin.php:770
msgid "Policy URL"
msgstr "URL de la politique"
#: templates/admin.php:777
msgid "Save"
msgstr "ENREGISTRER"
#: templates/admin.php:831
msgid "Premium Plan"
msgstr "Plan de prime"
#: templates/admin.php:834 templates/admin.php:1023 templates/admin.php:1032
#: templates/admin.php:1040
msgid "Only the users with a paid account can avail this feature."
msgstr ""
"Seuls les utilisateurs ayant un compte payant peuvent profiter de cette "
"fonctionnalité."
#: templates/admin.php:839
msgid "Ok"
msgstr "Ok"
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr "seers logo"
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr "À propos des cookies"
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr "Lire la politique de cookie"
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr "Nécessaire"
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr "Toujours actif"
#: templates/frontend-popup.php:1774
msgid ""
"Necessary cookies help make a website usable by enabling basic functions "
"like page navigation and access to secure areas of the website. The website "
"cannot function properly without these cookies."
msgstr ""
"Les cookies nécessaires aident à créer un site Web utilisable en activant "
"des fonctions de base telles que la navigation de page et l'accès aux zones "
"sécurisées du site Web. Le site Web ne peut fonctionner correctement sans "
"ces cookies."
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784
#: templates/frontend-popup.php:1794 templates/frontend-popup.php:1804
#: templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr "Détail des cookies"
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr "Préférence"
#: templates/frontend-popup.php:1784
msgid ""
"Preference cookies enable a website to remember information that changes the "
"way the website behaves or looks, like your preferred language or the region "
"that you are in."
msgstr ""
"Les cookies de préférences permettent à un site Web de rappeler des "
"informations qui modifient la manière dont le site Web se comporte ou "
"ressemble, comme votre langue préférée ou la région que vous êtes dans."
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr "La statistiques"
#: templates/frontend-popup.php:1794
msgid ""
"Statistic cookies help website owners to understand how visitors interact "
"with websites by collecting and reporting information anonymously."
msgstr ""
"Les cookies statistiques aident les propriétaires de sites Web à comprendre "
"comment les visiteurs interagissent avec les sites Web en collectant et en "
"signalant des informations de manière anonyme."
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr "La commercialisation"
#: templates/frontend-popup.php:1804
msgid ""
"Marketing cookies are used to track visitors across websites. The intention "
"is to display ads that are relevant and engaging for the individual user and "
"thereby more valuable for publishers and third-party advertisers."
msgstr ""
"Les cookies marketing sont utilisés pour suivre les visiteurs sur les sites "
"Web. L'intention est d'afficher des publicités pertinentes et attrayantes "
"pour l'utilisateur individuel et donc plus précieuses pour les éditeurs et "
"les annonceurs tiers."
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr "Non classé"
#: templates/frontend-popup.php:1812
msgid ""
"Unclassified cookies are cookies that we are in the process of classifying, "
"together with the providers of individual cookies."
msgstr ""
"Les cookies non classifiés sont des cookies que nous sommes en train de "
"classifier, avec les fournisseurs de cookies individuels."
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr "Sauvegarder mes choix"
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr "alimenté par"
#~ msgid "To get your Cookie ID click on Activate"
#~ msgstr "To get your Cookie ID click on Activate"
#~ msgid "Activate"
#~ msgstr "Activate"

View File

@ -0,0 +1,723 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-25 17:21+0500\n"
"PO-Revision-Date: 2022-03-30 04:56-0700\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: fr_CA\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
"X-Poedit-Basepath: ..\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPath-1: inc\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:382
msgid "Quick Feedback"
msgstr "Commentaires rapides"
#: inc/seers-cookie-consent-plugin-deactivate.php:383
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr ""
"Si vous avez un moment, laissez-nous savoir pourquoi vous êtes désactivé:"
#: inc/seers-cookie-consent-plugin-deactivate.php:386
#: inc/seers-cookie-consent-plugin-deactivate.php:387
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr "La bannière n'est pas dans la langue requise"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid ""
"The banner picks up your website language automatically. You can always sign-"
"in on your Seers account"
msgstr ""
"La bannière reprend automatiquement la langue de votre site web. Vous pouvez "
"toujours vous connecter sur votre compte Seers"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "and choose the language you like. See the video"
msgstr "et choisissez la langue que vous aimez. Voir la vidéo"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "here"
msgstr "ici"
#: inc/seers-cookie-consent-plugin-deactivate.php:395
#: inc/seers-cookie-consent-plugin-deactivate.php:396
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr "Bannière n'apparaissait pas"
#: inc/seers-cookie-consent-plugin-deactivate.php:399
#: inc/seers-cookie-consent-plugin-deactivate.php:420
msgid ""
"Most of the times the compatibility issue can be fixed very quickly. Please "
"contact"
msgstr ""
"La plupart du temps, la question de compatibilité peut être fixée très "
"rapidement. S'il vous plaît contactez"
#: inc/seers-cookie-consent-plugin-deactivate.php:403
#: inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr "Les cookies ne montrent pas dans les paramètres"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid ""
"We are scanning your website and it can take up to 12 hours for Cookies to "
"appear. In a very few cases scanner miss a cookie. This"
msgstr ""
"Nous numérisons votre site Web et nous pourrons prendre jusqu'à 12 heures "
"pour que les cookies apparaissent. Dans un très peu de cas, le scanner "
"manque un cookie. Ce"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "video"
msgstr "vidéo"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "explains how to add cookies manually."
msgstr "explique comment ajouter des cookies manuellement."
#: inc/seers-cookie-consent-plugin-deactivate.php:410
#: inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr "La bannière n'a pas atteint le thème du site Web"
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "You can fully customize the banner. Please see the video"
msgstr ""
"Vous pouvez entièrement personnaliser la bannière. S'il vous plaît voir la "
"vidéo"
#: inc/seers-cookie-consent-plugin-deactivate.php:416
#: inc/seers-cookie-consent-plugin-deactivate.php:417
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr "Le plugin a cassé mon site"
#: inc/seers-cookie-consent-plugin-deactivate.php:424
#: inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr "J'ai trouvé un meilleur plugin"
#: inc/seers-cookie-consent-plugin-deactivate.php:427
msgid "Plugin name"
msgstr "Nom du plug-in"
#: inc/seers-cookie-consent-plugin-deactivate.php:430
msgid ""
"The plugin is great, but i need specific feature that you do not support."
msgstr ""
"Le plugin est génial, mais j'ai besoin d'une fonctionnalité spécifique que "
"vous ne supportez pas."
#: inc/seers-cookie-consent-plugin-deactivate.php:431
#: inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid ""
"The plugin is great, but i need specific feature that you don't support."
msgstr ""
"Le plugin est génial, mais j'ai besoin d'une fonctionnalité spécifique que "
"vous ne supportez pas."
#: inc/seers-cookie-consent-plugin-deactivate.php:434
msgid "Banner customisation."
msgstr "Personnalisation des bannières."
#: inc/seers-cookie-consent-plugin-deactivate.php:438
#: inc/seers-cookie-consent-plugin-deactivate.php:439
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr "Autre"
#: inc/seers-cookie-consent-plugin-deactivate.php:442
msgid "Kindly tell us the reason so we can improve."
msgstr "Veuillez nous dire la raison pour que nous puissions nous améliorer."
#: inc/seers-cookie-consent-plugin-deactivate.php:445
msgid "Submit & Deactivate"
msgstr "Soumettre et désactiver"
#: inc/seers-cookie-consent-plugin-deactivate.php:446
msgid "Cancel"
msgstr "Annuler"
#: inc/seers-cookie-consent-plugin-deactivate.php:451
msgid "Skip & Deactivate"
msgstr "Skip & Désactiver"
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr "Ne tenez pas compte de cet avertissement."
#: seers-cookie-consent-banner-privacy-policy.php:135 templates/admin.php:97
msgid "Settings"
msgstr "Réglages"
#: seers-cookie-consent-banner-privacy-policy.php:141
msgid "Upgrade Premium"
msgstr "Moderniser la prime"
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:514
#: templates/frontend-popup.php:1738 templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr ""
"Nous utilisons des cookies pour vous assurer dobtenir la meilleure "
"expérience"
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:558
#: templates/admin.php:559 templates/admin.php:561
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1765
msgid "Allow All"
msgstr "Autoriser tout"
#: seers-cookie-consent-banner-privacy-policy.php:294 templates/admin.php:589
#: templates/admin.php:590 templates/admin.php:592
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1766
msgid "Disable All"
msgstr "Désactiver tous"
#: seers-cookie-consent-banner-privacy-policy.php:295 templates/admin.php:621
#: templates/frontend-popup.php:1740
msgid "Preference"
msgstr "Centre de réglage"
#: seers-cookie-consent-banner-privacy-policy.php:418
#: seers-cookie-consent-banner-privacy-policy.php:446
#: seers-cookie-consent-banner-privacy-policy.php:452
msgid "Cookies policy added successfully."
msgstr "La politique de cookies a ajouté avec succès."
#: seers-cookie-consent-banner-privacy-policy.php:421
msgid "Some thing went wrong. Please check url and try again"
msgstr "Une chose a mal tourné. S'il vous plaît vérifier l'URL et réessayer"
#: seers-cookie-consent-banner-privacy-policy.php:675
msgid "Some thing went wrong."
msgstr "Une chose a mal tourné."
#: seers-cookie-consent-banner-privacy-policy.php:819
msgid "Settings has been updated successfully"
msgstr "Les paramètres ont été mis à jour avec succès"
#: templates/admin.php:92 templates/admin.php:841
msgid "Account Setup"
msgstr "Configuration du compte"
#: templates/admin.php:100
msgid "Policy"
msgstr "Politique"
#: templates/admin.php:104
msgid "User Guide"
msgstr "Mode d'emploi"
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr "Votre bannière de consentement aux cookies Seers est activée."
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr ""
"Votre bannière de consentement aux cookies Seers n'est PAS activée parce que"
#: templates/admin.php:134
msgid "Email"
msgstr "E-mail"
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr "Je suis d'accord avec Seers"
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr "Termes et conditions"
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr "et"
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr "Politique de confidentialité"
#: templates/admin.php:154 templates/admin.php:172
msgid ""
"I agree Seers to use my email and url to create an account and power the "
"cookie banner."
msgstr ""
"J'accepte que Seers utilise mon email et mon url pour créer un compte et "
"alimenter la bannière de cookies."
#: templates/admin.php:178
msgid "Create Account"
msgstr "Créer un compte"
#: templates/admin.php:181
msgid "Cookie ID"
msgstr "Cookie ID"
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr ""
"L'ID de cookie de Seers sera reçu automatiquement après la création du compte"
#: templates/admin.php:197
msgid "Powering all your"
msgstr "Allumer tous vos"
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr "La vie privée et; Besoins de sécurité des données"
#: templates/admin.php:199
msgid ""
"Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy "
"compliance tools,"
msgstr ""
"Avoir accès à une vaste gamme de GDPR, PPECR, CCPA et; Outils de conformité "
"de l'aprivacy,"
#: templates/admin.php:200
msgid "all"
msgstr "tous"
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
"conçu pour prendre les tracas de se conformer aux nouvelles données\n"
"Règlement de protection."
#: templates/admin.php:206
msgid "Policies Pack"
msgstr "Politiques"
#: templates/admin.php:207
msgid "Templates Pack"
msgstr "Templates"
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr "Formation en ligne du personnel sur le GDPR"
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr "Gestion du consentement des cookies"
#: templates/admin.php:212
msgid "DPIA"
msgstr "Dpia"
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr "Audit GDPR"
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr "Cyber Secure"
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr "Gestion de la demande de sujet"
#: templates/admin.php:217
msgid "START FREE"
msgstr "Commencer librement"
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
"La confidentialité des données et;\n"
"Conformité. Résolu"
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help "
"companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
"Trust Worlds dirigeant la confidentialité et la gestion de la consentement à "
"aider les entreprises à se conformer\n"
" avec GDPR, PECR, CCPA et ePrivacy"
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr "Commencez la prime aujourd'hui"
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr "Plan Premium Seers"
#: templates/admin.php:232
msgid "Branding"
msgstr "Marque"
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr "Multi lingual"
#: templates/admin.php:234
msgid "Consent Log"
msgstr "Journal de consentement"
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr "Politique de cookie"
#: templates/admin.php:236
msgid "Prior Consent"
msgstr "Consentement préalable"
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr "6+ mises en page de conception"
#: templates/admin.php:238
msgid "Customer Support"
msgstr "Service client"
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr "Personnalisation des bannières"
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr "Table de déclaration de cookie"
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
"Commencer la prime\n"
" AUJOURD'HUI\""
#: templates/admin.php:255
msgid "Banner Settings"
msgstr "Paramètres de bannière"
#: templates/admin.php:260
msgid "Banner"
msgstr "Bannière"
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr "Activer / désactiver la bannière de cookies"
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr "Expiration des cookies"
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr "Définissez votre cookie de consentement à expirer en jours."
#: templates/admin.php:291
msgid "Language"
msgstr "Langue"
#: templates/admin.php:291
msgid "Choose a language for the banner Settings > General."
msgstr "Choisissez une langue pour la bannière Réglages > Général."
#: templates/admin.php:475
msgid "Show Badge"
msgstr "Show badge"
#: templates/admin.php:475
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr ""
"Montrez un badge pour permettre à la bannière de la cookie d'apparaître le "
"consentement post."
#: templates/admin.php:498
msgid "Visual Settings"
msgstr "Paramètres visuels"
#: templates/admin.php:503
msgid "Banner Text"
msgstr "Texte de bannière"
#: templates/admin.php:503
msgid "Text to appear on the banner:"
msgstr "Texte apparaître sur la bannière:"
#: templates/admin.php:506 templates/admin.php:524
msgid "Colour"
msgstr "Couleur"
#: templates/admin.php:506
msgid "The text colour to appear on the banner:"
msgstr "La couleur de texte à apparaître sur la bannière:"
#: templates/admin.php:521
msgid "Banner Background"
msgstr "Fond de bannière"
#: templates/admin.php:521
msgid "You can change the background colour of the banner:"
msgstr "Vous pouvez changer la couleur de fond de la bannière:"
#: templates/admin.php:524
msgid "The background colour of the banner:"
msgstr "La couleur de fond de la bannière:"
#: templates/admin.php:538
msgid "Accept Button"
msgstr "Accepter le bouton"
#: templates/admin.php:538
msgid ""
"You can change text colour, button colour and text of the 'Accept All' button"
msgstr ""
"Vous pouvez modifier la couleur du texte, la couleur du bouton et le texte "
"du bouton 'Accepter tout'"
#: templates/admin.php:541 templates/admin.php:572 templates/admin.php:603
msgid "Text Colour"
msgstr "Couleur de texte"
#: templates/admin.php:541
msgid "The text colour to appear on the 'Accept All' button:"
msgstr "La couleur de texte à apparaître sur le bouton \"Accepter tout\":"
#: templates/admin.php:551 templates/admin.php:582 templates/admin.php:613
msgid "Button Colour"
msgstr "Couleur de bouton"
#: templates/admin.php:551
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr "La couleur de bouton 'Accepter tout' pour apparaître sur la bannière:"
#: templates/admin.php:569
msgid "Reject Button"
msgstr "Bouton de rejet"
#: templates/admin.php:569
msgid ""
"You can change text colour, button colour and text of the 'Reject All' button"
msgstr ""
"Vous pouvez modifier la couleur du texte, la couleur du bouton et le texte "
"du bouton \"Rejeter tout\""
#: templates/admin.php:572
msgid "The text colour to appear on the 'Reject All' button:"
msgstr "La couleur de texte à apparaître sur le bouton \"Rejeter tout\":"
#: templates/admin.php:582
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr "La couleur du bouton \"rejeter\" pour apparaître sur la bannière:"
#: templates/admin.php:600
msgid "Setting Button"
msgstr "Bouton de réglage"
#: templates/admin.php:600
msgid "You can change text colour and text of the 'Setting' button"
msgstr ""
"Vous pouvez modifier la couleur du texte et le texte du bouton \"réglage\""
#: templates/admin.php:603
msgid "The text colour to appear on the 'Setting' button:"
msgstr "La couleur de texte à apparaître sur le bouton \"réglage\":"
#: templates/admin.php:613
msgid "The 'Setting' button colour to appear on the banner:"
msgstr "La couleur du bouton \"réglage\" pour apparaître sur la bannière:"
#: templates/admin.php:624
msgid "Setting"
msgstr "Réglage"
#: templates/admin.php:632
msgid "Fonts"
msgstr "Polices"
#: templates/admin.php:632
msgid "You can select a font for the text of the banner:"
msgstr "Vous pouvez sélectionner une police pour le texte de la bannière:"
#: templates/admin.php:684
msgid "Select Button"
msgstr "Sélectionner le bouton"
#: templates/admin.php:684
msgid "You can select the shape of the buttons that appear on the banner."
msgstr ""
"Vous pouvez sélectionner la forme des boutons qui apparaissent sur la "
"bannière."
#: templates/admin.php:688
msgid "Default"
msgstr "Défaut"
#: templates/admin.php:692 templates/admin.php:702
msgid "Flat"
msgstr "Flat"
#: templates/admin.php:695 templates/admin.php:705
msgid "Rounded"
msgstr "Arrondi"
#: templates/admin.php:698 templates/admin.php:708
msgid "Stroke"
msgstr "Stroke"
#: templates/admin.php:726
msgid "PREVIEW"
msgstr "Aperçu"
#: templates/admin.php:727
msgid "SAVE"
msgstr "ENREGISTRER"
#: templates/admin.php:746
msgid "Please create cookies policy page and enter URL below."
msgstr ""
"Veuillez créer une page de stratégie de cookies et entrez l'URL ci-dessous."
#: templates/admin.php:750
msgid "Enable Policy:"
msgstr "Activer la politique:"
#: templates/admin.php:767
msgid "Cookie Policy and declaration URL:"
msgstr "Politique de cookie et URL de déclaration:"
#: templates/admin.php:770
msgid "Policy URL"
msgstr "URL de la politique"
#: templates/admin.php:777
msgid "Save"
msgstr "ENREGISTRER"
#: templates/admin.php:831
msgid "Premium Plan"
msgstr "Plan de prime"
#: templates/admin.php:834 templates/admin.php:1023 templates/admin.php:1032
#: templates/admin.php:1040
msgid "Only the users with a paid account can avail this feature."
msgstr ""
"Seuls les utilisateurs ayant un compte payant peuvent profiter de cette "
"fonctionnalité."
#: templates/admin.php:839
msgid "Ok"
msgstr "Ok"
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr "seers logo"
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr "À propos des cookies"
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr "Lire la politique de cookie"
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr "Nécessaire"
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr "Toujours actif"
#: templates/frontend-popup.php:1774
msgid ""
"Necessary cookies help make a website usable by enabling basic functions "
"like page navigation and access to secure areas of the website. The website "
"cannot function properly without these cookies."
msgstr ""
"Les cookies nécessaires aident à créer un site Web utilisable en activant "
"des fonctions de base telles que la navigation de page et l'accès aux zones "
"sécurisées du site Web. Le site Web ne peut fonctionner correctement sans "
"ces cookies."
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784
#: templates/frontend-popup.php:1794 templates/frontend-popup.php:1804
#: templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr "Détail des cookies"
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr "Préférence"
#: templates/frontend-popup.php:1784
msgid ""
"Preference cookies enable a website to remember information that changes the "
"way the website behaves or looks, like your preferred language or the region "
"that you are in."
msgstr ""
"Les cookies de préférences permettent à un site Web de rappeler des "
"informations qui modifient la manière dont le site Web se comporte ou "
"ressemble, comme votre langue préférée ou la région que vous êtes dans."
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr "La statistiques"
#: templates/frontend-popup.php:1794
msgid ""
"Statistic cookies help website owners to understand how visitors interact "
"with websites by collecting and reporting information anonymously."
msgstr ""
"Les cookies statistiques aident les propriétaires de sites Web à comprendre "
"comment les visiteurs interagissent avec les sites Web en collectant et en "
"signalant des informations de manière anonyme."
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr "La commercialisation"
#: templates/frontend-popup.php:1804
msgid ""
"Marketing cookies are used to track visitors across websites. The intention "
"is to display ads that are relevant and engaging for the individual user and "
"thereby more valuable for publishers and third-party advertisers."
msgstr ""
"Les cookies marketing sont utilisés pour suivre les visiteurs sur les sites "
"Web. L'intention est d'afficher des publicités pertinentes et attrayantes "
"pour l'utilisateur individuel et donc plus précieuses pour les éditeurs et "
"les annonceurs tiers."
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr "Non classé"
#: templates/frontend-popup.php:1812
msgid ""
"Unclassified cookies are cookies that we are in the process of classifying, "
"together with the providers of individual cookies."
msgstr ""
"Les cookies non classifiés sont des cookies que nous sommes en train de "
"classifier, avec les fournisseurs de cookies individuels."
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr "Sauvegarder mes choix"
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr "alimenté par"
#~ msgid "To get your Cookie ID click on Activate"
#~ msgstr "To get your Cookie ID click on Activate"
#~ msgid "Activate"
#~ msgstr "Activate"

View File

@ -0,0 +1,723 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-25 17:21+0500\n"
"PO-Revision-Date: 2022-03-30 04:57-0700\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
"X-Poedit-Basepath: ..\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPath-1: inc\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:382
msgid "Quick Feedback"
msgstr "Commentaires rapides"
#: inc/seers-cookie-consent-plugin-deactivate.php:383
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr ""
"Si vous avez un moment, laissez-nous savoir pourquoi vous êtes désactivé:"
#: inc/seers-cookie-consent-plugin-deactivate.php:386
#: inc/seers-cookie-consent-plugin-deactivate.php:387
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr "La bannière n'est pas dans la langue requise"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid ""
"The banner picks up your website language automatically. You can always sign-"
"in on your Seers account"
msgstr ""
"La bannière reprend automatiquement la langue de votre site web. Vous pouvez "
"toujours vous connecter sur votre compte Seers"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "and choose the language you like. See the video"
msgstr "et choisissez la langue que vous aimez. Voir la vidéo"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "here"
msgstr "ici"
#: inc/seers-cookie-consent-plugin-deactivate.php:395
#: inc/seers-cookie-consent-plugin-deactivate.php:396
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr "Bannière n'apparaissait pas"
#: inc/seers-cookie-consent-plugin-deactivate.php:399
#: inc/seers-cookie-consent-plugin-deactivate.php:420
msgid ""
"Most of the times the compatibility issue can be fixed very quickly. Please "
"contact"
msgstr ""
"La plupart du temps, la question de compatibilité peut être fixée très "
"rapidement. S'il vous plaît contactez"
#: inc/seers-cookie-consent-plugin-deactivate.php:403
#: inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr "Les cookies ne montrent pas dans les paramètres"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid ""
"We are scanning your website and it can take up to 12 hours for Cookies to "
"appear. In a very few cases scanner miss a cookie. This"
msgstr ""
"Nous numérisons votre site Web et nous pourrons prendre jusqu'à 12 heures "
"pour que les cookies apparaissent. Dans un très peu de cas, le scanner "
"manque un cookie. Ce"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "video"
msgstr "vidéo"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "explains how to add cookies manually."
msgstr "explique comment ajouter des cookies manuellement."
#: inc/seers-cookie-consent-plugin-deactivate.php:410
#: inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr "La bannière n'a pas atteint le thème du site Web"
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "You can fully customize the banner. Please see the video"
msgstr ""
"Vous pouvez entièrement personnaliser la bannière. S'il vous plaît voir la "
"vidéo"
#: inc/seers-cookie-consent-plugin-deactivate.php:416
#: inc/seers-cookie-consent-plugin-deactivate.php:417
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr "Le plugin a cassé mon site"
#: inc/seers-cookie-consent-plugin-deactivate.php:424
#: inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr "J'ai trouvé un meilleur plugin"
#: inc/seers-cookie-consent-plugin-deactivate.php:427
msgid "Plugin name"
msgstr "Nom du plug-in"
#: inc/seers-cookie-consent-plugin-deactivate.php:430
msgid ""
"The plugin is great, but i need specific feature that you do not support."
msgstr ""
"Le plugin est génial, mais j'ai besoin d'une fonctionnalité spécifique que "
"vous ne supportez pas."
#: inc/seers-cookie-consent-plugin-deactivate.php:431
#: inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid ""
"The plugin is great, but i need specific feature that you don't support."
msgstr ""
"Le plugin est génial, mais j'ai besoin d'une fonctionnalité spécifique que "
"vous ne supportez pas."
#: inc/seers-cookie-consent-plugin-deactivate.php:434
msgid "Banner customisation."
msgstr "Personnalisation des bannières."
#: inc/seers-cookie-consent-plugin-deactivate.php:438
#: inc/seers-cookie-consent-plugin-deactivate.php:439
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr "Autre"
#: inc/seers-cookie-consent-plugin-deactivate.php:442
msgid "Kindly tell us the reason so we can improve."
msgstr "Veuillez nous dire la raison pour que nous puissions nous améliorer."
#: inc/seers-cookie-consent-plugin-deactivate.php:445
msgid "Submit & Deactivate"
msgstr "Soumettre et désactiver"
#: inc/seers-cookie-consent-plugin-deactivate.php:446
msgid "Cancel"
msgstr "Annuler"
#: inc/seers-cookie-consent-plugin-deactivate.php:451
msgid "Skip & Deactivate"
msgstr "Skip & Désactiver"
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr "Ne tenez pas compte de cet avertissement."
#: seers-cookie-consent-banner-privacy-policy.php:135 templates/admin.php:97
msgid "Settings"
msgstr "Réglages"
#: seers-cookie-consent-banner-privacy-policy.php:141
msgid "Upgrade Premium"
msgstr "Moderniser la prime"
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:514
#: templates/frontend-popup.php:1738 templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr ""
"Nous utilisons des cookies pour vous assurer dobtenir la meilleure "
"expérience"
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:558
#: templates/admin.php:559 templates/admin.php:561
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1765
msgid "Allow All"
msgstr "Autoriser tout"
#: seers-cookie-consent-banner-privacy-policy.php:294 templates/admin.php:589
#: templates/admin.php:590 templates/admin.php:592
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1766
msgid "Disable All"
msgstr "Désactiver tous"
#: seers-cookie-consent-banner-privacy-policy.php:295 templates/admin.php:621
#: templates/frontend-popup.php:1740
msgid "Preference"
msgstr "Centre de réglage"
#: seers-cookie-consent-banner-privacy-policy.php:418
#: seers-cookie-consent-banner-privacy-policy.php:446
#: seers-cookie-consent-banner-privacy-policy.php:452
msgid "Cookies policy added successfully."
msgstr "La politique de cookies a ajouté avec succès."
#: seers-cookie-consent-banner-privacy-policy.php:421
msgid "Some thing went wrong. Please check url and try again"
msgstr "Une chose a mal tourné. S'il vous plaît vérifier l'URL et réessayer"
#: seers-cookie-consent-banner-privacy-policy.php:675
msgid "Some thing went wrong."
msgstr "Une chose a mal tourné."
#: seers-cookie-consent-banner-privacy-policy.php:819
msgid "Settings has been updated successfully"
msgstr "Les paramètres ont été mis à jour avec succès"
#: templates/admin.php:92 templates/admin.php:841
msgid "Account Setup"
msgstr "Configuration du compte"
#: templates/admin.php:100
msgid "Policy"
msgstr "Politique"
#: templates/admin.php:104
msgid "User Guide"
msgstr "Mode d'emploi"
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr "Votre bannière de consentement aux cookies Seers est activée."
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr ""
"Votre bannière de consentement aux cookies Seers n'est PAS activée parce que"
#: templates/admin.php:134
msgid "Email"
msgstr "E-mail"
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr "Je suis d'accord avec Seers"
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr "Termes et conditions"
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr "et"
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr "Politique de confidentialité"
#: templates/admin.php:154 templates/admin.php:172
msgid ""
"I agree Seers to use my email and url to create an account and power the "
"cookie banner."
msgstr ""
"J'accepte que Seers utilise mon email et mon url pour créer un compte et "
"alimenter la bannière de cookies."
#: templates/admin.php:178
msgid "Create Account"
msgstr "Créer un compte"
#: templates/admin.php:181
msgid "Cookie ID"
msgstr "Cookie ID"
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr ""
"L'ID de cookie de Seers sera reçu automatiquement après la création du compte"
#: templates/admin.php:197
msgid "Powering all your"
msgstr "Allumer tous vos"
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr "La vie privée et; Besoins de sécurité des données"
#: templates/admin.php:199
msgid ""
"Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy "
"compliance tools,"
msgstr ""
"Avoir accès à une vaste gamme de GDPR, PPECR, CCPA et; Outils de conformité "
"de l'aprivacy,"
#: templates/admin.php:200
msgid "all"
msgstr "tous"
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
"conçu pour prendre les tracas de se conformer aux nouvelles données\n"
"Règlement de protection."
#: templates/admin.php:206
msgid "Policies Pack"
msgstr "Politiques"
#: templates/admin.php:207
msgid "Templates Pack"
msgstr "Templates"
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr "Formation en ligne du personnel sur le GDPR"
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr "Gestion du consentement des cookies"
#: templates/admin.php:212
msgid "DPIA"
msgstr "Dpia"
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr "Audit GDPR"
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr "Cyber Secure"
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr "Gestion de la demande de sujet"
#: templates/admin.php:217
msgid "START FREE"
msgstr "Commencer librement"
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
"La confidentialité des données et;\n"
"Conformité. Résolu"
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help "
"companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
"Trust Worlds dirigeant la confidentialité et la gestion de la consentement à "
"aider les entreprises à se conformer\n"
" avec GDPR, PECR, CCPA et ePrivacy"
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr "Commencez la prime aujourd'hui"
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr "Plan Premium Seers"
#: templates/admin.php:232
msgid "Branding"
msgstr "Marque"
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr "Multi lingual"
#: templates/admin.php:234
msgid "Consent Log"
msgstr "Journal de consentement"
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr "Politique de cookie"
#: templates/admin.php:236
msgid "Prior Consent"
msgstr "Consentement préalable"
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr "6+ mises en page de conception"
#: templates/admin.php:238
msgid "Customer Support"
msgstr "Service client"
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr "Personnalisation des bannières"
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr "Table de déclaration de cookie"
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
"Commencer la prime\n"
" AUJOURD'HUI\""
#: templates/admin.php:255
msgid "Banner Settings"
msgstr "Paramètres de bannière"
#: templates/admin.php:260
msgid "Banner"
msgstr "Bannière"
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr "Activer / désactiver la bannière de cookies"
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr "Expiration des cookies"
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr "Définissez votre cookie de consentement à expirer en jours."
#: templates/admin.php:291
msgid "Language"
msgstr "Langue"
#: templates/admin.php:291
msgid "Choose a language for the banner Settings > General."
msgstr "Choisissez une langue pour la bannière Réglages > Général."
#: templates/admin.php:475
msgid "Show Badge"
msgstr "Show badge"
#: templates/admin.php:475
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr ""
"Montrez un badge pour permettre à la bannière de la cookie d'apparaître le "
"consentement post."
#: templates/admin.php:498
msgid "Visual Settings"
msgstr "Paramètres visuels"
#: templates/admin.php:503
msgid "Banner Text"
msgstr "Texte de bannière"
#: templates/admin.php:503
msgid "Text to appear on the banner:"
msgstr "Texte apparaître sur la bannière:"
#: templates/admin.php:506 templates/admin.php:524
msgid "Colour"
msgstr "Couleur"
#: templates/admin.php:506
msgid "The text colour to appear on the banner:"
msgstr "La couleur de texte à apparaître sur la bannière:"
#: templates/admin.php:521
msgid "Banner Background"
msgstr "Fond de bannière"
#: templates/admin.php:521
msgid "You can change the background colour of the banner:"
msgstr "Vous pouvez changer la couleur de fond de la bannière:"
#: templates/admin.php:524
msgid "The background colour of the banner:"
msgstr "La couleur de fond de la bannière:"
#: templates/admin.php:538
msgid "Accept Button"
msgstr "Accepter le bouton"
#: templates/admin.php:538
msgid ""
"You can change text colour, button colour and text of the 'Accept All' button"
msgstr ""
"Vous pouvez modifier la couleur du texte, la couleur du bouton et le texte "
"du bouton 'Accepter tout'"
#: templates/admin.php:541 templates/admin.php:572 templates/admin.php:603
msgid "Text Colour"
msgstr "Couleur de texte"
#: templates/admin.php:541
msgid "The text colour to appear on the 'Accept All' button:"
msgstr "La couleur de texte à apparaître sur le bouton \"Accepter tout\":"
#: templates/admin.php:551 templates/admin.php:582 templates/admin.php:613
msgid "Button Colour"
msgstr "Couleur de bouton"
#: templates/admin.php:551
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr "La couleur de bouton 'Accepter tout' pour apparaître sur la bannière:"
#: templates/admin.php:569
msgid "Reject Button"
msgstr "Bouton de rejet"
#: templates/admin.php:569
msgid ""
"You can change text colour, button colour and text of the 'Reject All' button"
msgstr ""
"Vous pouvez modifier la couleur du texte, la couleur du bouton et le texte "
"du bouton \"Rejeter tout\""
#: templates/admin.php:572
msgid "The text colour to appear on the 'Reject All' button:"
msgstr "La couleur de texte à apparaître sur le bouton \"Rejeter tout\":"
#: templates/admin.php:582
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr "La couleur du bouton \"rejeter\" pour apparaître sur la bannière:"
#: templates/admin.php:600
msgid "Setting Button"
msgstr "Bouton de réglage"
#: templates/admin.php:600
msgid "You can change text colour and text of the 'Setting' button"
msgstr ""
"Vous pouvez modifier la couleur du texte et le texte du bouton \"réglage\""
#: templates/admin.php:603
msgid "The text colour to appear on the 'Setting' button:"
msgstr "La couleur de texte à apparaître sur le bouton \"réglage\":"
#: templates/admin.php:613
msgid "The 'Setting' button colour to appear on the banner:"
msgstr "La couleur du bouton \"réglage\" pour apparaître sur la bannière:"
#: templates/admin.php:624
msgid "Setting"
msgstr "Réglage"
#: templates/admin.php:632
msgid "Fonts"
msgstr "Polices"
#: templates/admin.php:632
msgid "You can select a font for the text of the banner:"
msgstr "Vous pouvez sélectionner une police pour le texte de la bannière:"
#: templates/admin.php:684
msgid "Select Button"
msgstr "Sélectionner le bouton"
#: templates/admin.php:684
msgid "You can select the shape of the buttons that appear on the banner."
msgstr ""
"Vous pouvez sélectionner la forme des boutons qui apparaissent sur la "
"bannière."
#: templates/admin.php:688
msgid "Default"
msgstr "Défaut"
#: templates/admin.php:692 templates/admin.php:702
msgid "Flat"
msgstr "Flat"
#: templates/admin.php:695 templates/admin.php:705
msgid "Rounded"
msgstr "Arrondi"
#: templates/admin.php:698 templates/admin.php:708
msgid "Stroke"
msgstr "Stroke"
#: templates/admin.php:726
msgid "PREVIEW"
msgstr "Aperçu"
#: templates/admin.php:727
msgid "SAVE"
msgstr "ENREGISTRER"
#: templates/admin.php:746
msgid "Please create cookies policy page and enter URL below."
msgstr ""
"Veuillez créer une page de stratégie de cookies et entrez l'URL ci-dessous."
#: templates/admin.php:750
msgid "Enable Policy:"
msgstr "Activer la politique:"
#: templates/admin.php:767
msgid "Cookie Policy and declaration URL:"
msgstr "Politique de cookie et URL de déclaration:"
#: templates/admin.php:770
msgid "Policy URL"
msgstr "URL de la politique"
#: templates/admin.php:777
msgid "Save"
msgstr "ENREGISTRER"
#: templates/admin.php:831
msgid "Premium Plan"
msgstr "Plan de prime"
#: templates/admin.php:834 templates/admin.php:1023 templates/admin.php:1032
#: templates/admin.php:1040
msgid "Only the users with a paid account can avail this feature."
msgstr ""
"Seuls les utilisateurs ayant un compte payant peuvent profiter de cette "
"fonctionnalité."
#: templates/admin.php:839
msgid "Ok"
msgstr "Ok"
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr "seers logo"
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr "À propos des cookies"
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr "Lire la politique de cookie"
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr "Nécessaire"
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr "Toujours actif"
#: templates/frontend-popup.php:1774
msgid ""
"Necessary cookies help make a website usable by enabling basic functions "
"like page navigation and access to secure areas of the website. The website "
"cannot function properly without these cookies."
msgstr ""
"Les cookies nécessaires aident à créer un site Web utilisable en activant "
"des fonctions de base telles que la navigation de page et l'accès aux zones "
"sécurisées du site Web. Le site Web ne peut fonctionner correctement sans "
"ces cookies."
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784
#: templates/frontend-popup.php:1794 templates/frontend-popup.php:1804
#: templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr "Détail des cookies"
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr "Préférence"
#: templates/frontend-popup.php:1784
msgid ""
"Preference cookies enable a website to remember information that changes the "
"way the website behaves or looks, like your preferred language or the region "
"that you are in."
msgstr ""
"Les cookies de préférences permettent à un site Web de rappeler des "
"informations qui modifient la manière dont le site Web se comporte ou "
"ressemble, comme votre langue préférée ou la région que vous êtes dans."
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr "La statistiques"
#: templates/frontend-popup.php:1794
msgid ""
"Statistic cookies help website owners to understand how visitors interact "
"with websites by collecting and reporting information anonymously."
msgstr ""
"Les cookies statistiques aident les propriétaires de sites Web à comprendre "
"comment les visiteurs interagissent avec les sites Web en collectant et en "
"signalant des informations de manière anonyme."
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr "La commercialisation"
#: templates/frontend-popup.php:1804
msgid ""
"Marketing cookies are used to track visitors across websites. The intention "
"is to display ads that are relevant and engaging for the individual user and "
"thereby more valuable for publishers and third-party advertisers."
msgstr ""
"Les cookies marketing sont utilisés pour suivre les visiteurs sur les sites "
"Web. L'intention est d'afficher des publicités pertinentes et attrayantes "
"pour l'utilisateur individuel et donc plus précieuses pour les éditeurs et "
"les annonceurs tiers."
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr "Non classé"
#: templates/frontend-popup.php:1812
msgid ""
"Unclassified cookies are cookies that we are in the process of classifying, "
"together with the providers of individual cookies."
msgstr ""
"Les cookies non classifiés sont des cookies que nous sommes en train de "
"classifier, avec les fournisseurs de cookies individuels."
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr "Sauvegarder mes choix"
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr "alimenté par"
#~ msgid "To get your Cookie ID click on Activate"
#~ msgstr "To get your Cookie ID click on Activate"
#~ msgid "Activate"
#~ msgstr "Activate"

View File

@ -0,0 +1,639 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-25 17:21+0500\n"
"PO-Revision-Date: 2022-03-30 04:57-0700\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: ga\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n>=3 && n<=6 ? 2 : n>=7 && n<=10 ? 3 : 4);\n"
"X-Generator: Poedit 3.0.1\n"
"X-Poedit-Basepath: ..\n"
"X-Poedit-KeywordsList: __;_e;esc_html_e\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPath-1: inc\n"
"X-Poedit-SearchPath-2: templates\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:382
msgid "Quick Feedback"
msgstr "Aiseolas tapaidh"
#: inc/seers-cookie-consent-plugin-deactivate.php:383
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr "Má tá nóiméad agat, cuir in iúl dúinn cén fáth a bhfuil tú ag díghníomhú:"
#: inc/seers-cookie-consent-plugin-deactivate.php:386
#: inc/seers-cookie-consent-plugin-deactivate.php:387
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr "Níl an banner sa teanga riachtanach"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "The banner picks up your website language automatically. You can always sign-in on your Seers account"
msgstr "Tógann an banner do theanga an láithreáin ghréasáin go huathoibríoch. Is féidir leat clárú i gcónaí ar do chuntas do Seers"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "and choose the language you like. See the video"
msgstr "agus roghnaigh an teanga is mian leat. Féach an físeán"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "here"
msgstr "an áit seo"
#: inc/seers-cookie-consent-plugin-deactivate.php:395
#: inc/seers-cookie-consent-plugin-deactivate.php:396
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr "Níor tháinig Banner le feiceáil"
#: inc/seers-cookie-consent-plugin-deactivate.php:399
#: inc/seers-cookie-consent-plugin-deactivate.php:420
msgid "Most of the times the compatibility issue can be fixed very quickly. Please contact"
msgstr "An chuid is mó de na hamanna is féidir an tsaincheist chomhoiriúnachta a shocrú go han-tapa. Téigh i dteagmháil le do thoil"
#: inc/seers-cookie-consent-plugin-deactivate.php:403
#: inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr "Níl na cookies ag taispeáint i suíomhanna"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "We are scanning your website and it can take up to 12 hours for Cookies to appear. In a very few cases scanner miss a cookie. This"
msgstr "Táimid ag scanadh do láithreán gréasáin agus is féidir leis suas le 12 uair an chloig a ghlacadh le haghaidh cookies le feiceáil. I líon beag cásanna, cailleann scanóir cookie. Seo"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "video"
msgstr "físiúlacht"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "explains how to add cookies manually."
msgstr "míníonn conas cookies a chur leis de láimh."
#: inc/seers-cookie-consent-plugin-deactivate.php:410
#: inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr "Níor mheaitseáil an banner téama an láithreáin ghréasáin"
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "You can fully customize the banner. Please see the video"
msgstr "Is féidir leat an banner a shaincheapadh go hiomlán. Féach an físeán le do thoil"
#: inc/seers-cookie-consent-plugin-deactivate.php:416
#: inc/seers-cookie-consent-plugin-deactivate.php:417
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr "Bhris an breiseán mo shuíomh"
#: inc/seers-cookie-consent-plugin-deactivate.php:424
#: inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr "Tá plugin níos fearr agam"
#: inc/seers-cookie-consent-plugin-deactivate.php:427
msgid "Plugin name"
msgstr "Plugin Ainm"
#: inc/seers-cookie-consent-plugin-deactivate.php:430
msgid "The plugin is great, but i need specific feature that you do not support."
msgstr "Tá an breiseán iontach, ach tá gné shonrach de dhíth orm nach dtacaíonn tú leis."
#: inc/seers-cookie-consent-plugin-deactivate.php:431
#: inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid "The plugin is great, but i need specific feature that you don't support."
msgstr "Tá an breiseán mór, ach tá gné shonrach de dhíth orm nach dtacaíonn tú leis."
#: inc/seers-cookie-consent-plugin-deactivate.php:434
msgid "Banner customisation."
msgstr "Customization Banner."
#: inc/seers-cookie-consent-plugin-deactivate.php:438
#: inc/seers-cookie-consent-plugin-deactivate.php:439
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr "Eile"
#: inc/seers-cookie-consent-plugin-deactivate.php:442
msgid "Kindly tell us the reason so we can improve."
msgstr "Inis dúinn an chúis ionas gur féidir linn a fheabhsú."
#: inc/seers-cookie-consent-plugin-deactivate.php:445
msgid "Submit & Deactivate"
msgstr "Cuir isteach & Díghníomhachtaigh"
#: inc/seers-cookie-consent-plugin-deactivate.php:446
msgid "Cancel"
msgstr "Cealaigh"
#: inc/seers-cookie-consent-plugin-deactivate.php:451
msgid "Skip & Deactivate"
msgstr "Scipeáil & Díghníomhachtaigh"
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr "Dífhostú an fógra seo."
#: seers-cookie-consent-banner-privacy-policy.php:135 templates/admin.php:97
msgid "Settings"
msgstr "Settings"
#: seers-cookie-consent-banner-privacy-policy.php:141
msgid "Upgrade Premium"
msgstr "Uasghrádú a dhéanamh ar phréimh"
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:514
#: templates/frontend-popup.php:1738 templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr "Úsáidimid cookies chun a chinntiú go bhfaighidh tú an taithí is fearr"
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:558
#: templates/admin.php:559 templates/admin.php:561
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1765
msgid "Allow All"
msgstr "Lig Uile"
#: seers-cookie-consent-banner-privacy-policy.php:294 templates/admin.php:589
#: templates/admin.php:590 templates/admin.php:592
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1766
msgid "Disable All"
msgstr "Díchumasaigh Gach"
#: seers-cookie-consent-banner-privacy-policy.php:295 templates/admin.php:621
#: templates/frontend-popup.php:1740
msgid "Preference"
msgstr "Socruithe"
#: seers-cookie-consent-banner-privacy-policy.php:418
#: seers-cookie-consent-banner-privacy-policy.php:446
#: seers-cookie-consent-banner-privacy-policy.php:452
msgid "Cookies policy added successfully."
msgstr "Beartas cookies curtha leis go rathúil."
#: seers-cookie-consent-banner-privacy-policy.php:421
msgid "Some thing went wrong. Please check url and try again"
msgstr "Chuaigh rud eigin mícheart. Seiceáil le do thoil URL agus bain triail as arís"
#: seers-cookie-consent-banner-privacy-policy.php:675
msgid "Some thing went wrong."
msgstr "Chuaigh rud eigin mícheart."
#: seers-cookie-consent-banner-privacy-policy.php:819
msgid "Settings has been updated successfully"
msgstr "Rinneadh suímh a nuashonrú go rathúil"
#: templates/admin.php:92 templates/admin.php:841
msgid "Account Setup"
msgstr "Socrú Cuntais"
#: templates/admin.php:100
msgid "Policy"
msgstr "Beartas"
#: templates/admin.php:104
msgid "User Guide"
msgstr "Treoir Úsáideora"
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr "Tá do bhratach Toilithe Cookie Seers i ngníomh."
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr "NÍL do Meirge Toilithe Cookie Seer gníomhachtaithe mar gheall ar"
#: templates/admin.php:134
msgid "Email"
msgstr "Ríomhphost a chur chuig"
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr "Aontaím Seers"
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr "Téarmaí & Coinníoll"
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr "agus"
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr "Beartas Príobháideachais"
#: templates/admin.php:154 templates/admin.php:172
msgid "I agree Seers to use my email and url to create an account and power the cookie banner."
msgstr "Aontaím Seers chun mo ríomhphost agus mo URL a úsáid chun cuntas a chruthú agus cumhacht a thabhairt don bhratach cookie."
#: templates/admin.php:178
msgid "Create Account"
msgstr "Cruthaigh cuntas"
#: templates/admin.php:181
msgid "Cookie ID"
msgstr "Cookie ID"
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr "Fuarthas ID Cookie Seers go huathoibríoch tar éis cruthú cuntas"
#: templates/admin.php:197
msgid "Powering all your"
msgstr "Ag cumhachtáil do gach duine"
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr "Príobháideachas agus; Riachtanais slándála sonraí"
#: templates/admin.php:199
msgid "Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy compliance tools,"
msgstr "Rochtain a fháil ar réimse leathan GDPR, PeCR, CCPA agus; Uirlisí Comhlíonta Eprivacy,"
#: templates/admin.php:200
msgid "all"
msgstr "fíor-"
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
"deartha chun an hassle a thógáil as na sonraí nua a chomhlíonadh\n"
" Rialacháin um Chosaint."
#: templates/admin.php:206
msgid "Policies Pack"
msgstr "Pacáiste Polasaithe"
#: templates/admin.php:207
msgid "Templates Pack"
msgstr "Pacáiste Teimpléid"
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr "Foireann GDPR"
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr "Bainistíocht Toilithe Cookie"
#: templates/admin.php:212
msgid "DPIA"
msgstr "Dpia"
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr "Iniúchadh GDPR"
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr "Cibearshlán slán"
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr "Bainistíocht Iarratais Ábhair"
#: templates/admin.php:217
msgid "START FREE"
msgstr "Tús a chur le saor in aisce"
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
"Príobháideacht sonraí agus;\n"
" Comhlíonadh. Réitithe"
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
"Iontaobhas Worlds Príobháideacht agus Toiliú Toilithe Ardán chun cabhrú le cuideachtaí\n"
" le GDPR, PeCR, CCPA agus EPrivacy"
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr "Tosaigh Préimh inniu"
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr "Plean Préimhe Seers"
#: templates/admin.php:232
msgid "Branding"
msgstr "Bradán"
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr "Iltheangach"
#: templates/admin.php:234
msgid "Consent Log"
msgstr "Logáil isteach Toilithe"
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr "Polasaí Cookie"
#: templates/admin.php:236
msgid "Prior Consent"
msgstr "Toiliú roimh ré"
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr "6+ leagan amach dearaidh"
#: templates/admin.php:238
msgid "Customer Support"
msgstr "Tacaíocht chustaiméirí"
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr "Customization Banner"
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr "Tábla dearbhaithe Cookie"
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
"TÚS PREMIUM\n"
" INNIU"
#: templates/admin.php:255
msgid "Banner Settings"
msgstr "Socruithe Banner"
#: templates/admin.php:260
msgid "Banner"
msgstr "Bean bhailte"
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr "Cumasaigh / Díchumasaigh Banner Cookie"
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr "Cookie éaga"
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr "Socraigh do cookie toilithe le dul in éag i laethanta."
#: templates/admin.php:291
msgid "Language"
msgstr "Teanga"
#: templates/admin.php:291
msgid "Choose a language for the banner Settings > General."
msgstr "Roghnaigh teanga do na Settings Banner> Ginearálta."
#: templates/admin.php:475
msgid "Show Badge"
msgstr "Taispeáin suaitheantas"
#: templates/admin.php:475
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr "Taispeáin suaitheantas chun cur ar chumas an banner cookie a bheith le feiceáil."
#: templates/admin.php:498
msgid "Visual Settings"
msgstr "Socruithe Amhairc"
#: templates/admin.php:503
msgid "Banner Text"
msgstr "Téacs Banner"
#: templates/admin.php:503
msgid "Text to appear on the banner:"
msgstr "Téacs le feiceáil ar an mbratach:"
#: templates/admin.php:506 templates/admin.php:524
msgid "Colour"
msgstr "Dath a chur ar"
#: templates/admin.php:506
msgid "The text colour to appear on the banner:"
msgstr "An dath téacs le feiceáil ar an mbratach:"
#: templates/admin.php:521
msgid "Banner Background"
msgstr "Banner Cúlra"
#: templates/admin.php:521
msgid "You can change the background colour of the banner:"
msgstr "Is féidir leat dath cúlra an bhratach a athrú:"
#: templates/admin.php:524
msgid "The background colour of the banner:"
msgstr "Dath cúlra an bhratach:"
#: templates/admin.php:538
msgid "Accept Button"
msgstr "Glac leis an gcnaipe"
#: templates/admin.php:538
msgid "You can change text colour, button colour and text of the 'Accept All' button"
msgstr "Is féidir leat dath téacs, dath an chnaipe agus téacs an chnaipe 'Glac All' a athrú"
#: templates/admin.php:541 templates/admin.php:572 templates/admin.php:603
msgid "Text Colour"
msgstr "Dath téacs"
#: templates/admin.php:541
msgid "The text colour to appear on the 'Accept All' button:"
msgstr "An dath téacs le feiceáil ar an gcnaipe 'glacadh le gach rud':"
#: templates/admin.php:551 templates/admin.php:582 templates/admin.php:613
msgid "Button Colour"
msgstr "Dath an chnaipe"
#: templates/admin.php:551
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr "An dath cnaipe 'glacadh le gach' le feiceáil ar an mbratach:"
#: templates/admin.php:569
msgid "Reject Button"
msgstr "Diúltaigh an cnaipe"
#: templates/admin.php:569
msgid "You can change text colour, button colour and text of the 'Reject All' button"
msgstr "Is féidir leat dath téacs a athrú, dath an chnaipe agus téacs an chnaipe 'Diúltaigh All'"
#: templates/admin.php:572
msgid "The text colour to appear on the 'Reject All' button:"
msgstr "An dath téacs le feiceáil ar an gcnaipe 'Diúltú Uile':"
#: templates/admin.php:582
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr "Dath an chnaipe 'Diúltaigh All' le feiceáil ar an mbratach:"
#: templates/admin.php:600
msgid "Setting Button"
msgstr "Cnaipe a leagan síos"
#: templates/admin.php:600
msgid "You can change text colour and text of the 'Setting' button"
msgstr "Is féidir leat dath téacs agus téacs an chnaipe 'Socrú' a athrú"
#: templates/admin.php:603
msgid "The text colour to appear on the 'Setting' button:"
msgstr "An dath téacs le feiceáil ar an gcnaipe 'suíomh':"
#: templates/admin.php:613
msgid "The 'Setting' button colour to appear on the banner:"
msgstr "Dath an cnaipe 'Socraíonn' le feiceáil ar an mbratach:"
#: templates/admin.php:624
msgid "Setting"
msgstr "Leagan"
#: templates/admin.php:632
msgid "Fonts"
msgstr "Clónna"
#: templates/admin.php:632
msgid "You can select a font for the text of the banner:"
msgstr "Is féidir leat cló a roghnú do théacs an bhratach:"
#: templates/admin.php:684
msgid "Select Button"
msgstr "Roghnaigh an cnaipe"
#: templates/admin.php:684
msgid "You can select the shape of the buttons that appear on the banner."
msgstr "Is féidir leat cruth na cnaipí atá le feiceáil ar an mbratach a roghnú."
#: templates/admin.php:688
msgid "Default"
msgstr "Réamh-réad"
#: templates/admin.php:692 templates/admin.php:702
msgid "Flat"
msgstr "Cothrom"
#: templates/admin.php:695 templates/admin.php:705
msgid "Rounded"
msgstr "Cruinn"
#: templates/admin.php:698 templates/admin.php:708
msgid "Stroke"
msgstr "Stroke"
#: templates/admin.php:726
msgid "PREVIEW"
msgstr "Réamhamharc"
#: templates/admin.php:727
msgid "SAVE"
msgstr "Sáraigh"
#: templates/admin.php:746
msgid "Please create cookies policy page and enter URL below."
msgstr "Cruthaigh leathanach Polasaí cookie agus cuir isteach URL thíos."
#: templates/admin.php:750
msgid "Enable Policy:"
msgstr "Cumasaigh Beartas:"
#: templates/admin.php:767
msgid "Cookie Policy and declaration URL:"
msgstr "Beartas cookie agus Dearbhú URL:"
#: templates/admin.php:770
msgid "Policy URL"
msgstr "URL beartais"
#: templates/admin.php:777
msgid "Save"
msgstr "Sáraigh"
#: templates/admin.php:831
msgid "Premium Plan"
msgstr "Plean préimhe"
#: templates/admin.php:834 templates/admin.php:1023 templates/admin.php:1032
#: templates/admin.php:1040
msgid "Only the users with a paid account can avail this feature."
msgstr "Ní féidir ach le húsáideoirí a bhfuil cuntas íoctha acu leas a bhaint as an ngné seo."
#: templates/admin.php:839
msgid "Ok"
msgstr "Ceart go leor"
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr "lógó Seers"
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr "Maidir cookies"
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr "Léigh Polasaí Cookie"
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr "Riachtanach"
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr "I gcónaí Gníomhach"
#: templates/frontend-popup.php:1774
msgid "Necessary cookies help make a website usable by enabling basic functions like page navigation and access to secure areas of the website. The website cannot function properly without these cookies."
msgstr "Cuidíonn cookies riachtanacha le suíomh Gréasáin a úsáid trí fheidhmeanna bunúsacha mar nascleanúint leathanaigh agus rochtain ar chodanna slána den láithreán gréasáin a chumasú. Ní féidir leis an suíomh Gréasáin feidhmiú i gceart gan na cookies seo."
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784
#: templates/frontend-popup.php:1794 templates/frontend-popup.php:1804
#: templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr "Cookies Sonraigh"
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr "Sainroghanna"
#: templates/frontend-popup.php:1784
msgid "Preference cookies enable a website to remember information that changes the way the website behaves or looks, like your preferred language or the region that you are in."
msgstr "Cuireann cookies tosaíochta ar chumas suíomh Gréasáin cuimhneamh ar fhaisnéis a athraíonn an dóigh a n-iompraíonn nó a bhreathnaíonn an suíomh Gréasáin, cosúil le do rogha teanga nó an réigiún ina bhfuil tú."
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr "Staitisticí"
#: templates/frontend-popup.php:1794
msgid "Statistic cookies help website owners to understand how visitors interact with websites by collecting and reporting information anonymously."
msgstr "Cuidíonn cookies staitistiúla le húinéirí láithreán gréasáin tuiscint a fháil ar an gcaoi a n-idirghníomhaíonn cuairteoirí le láithreáin ghréasáin trí fhaisnéis a bhailiú agus a thuairisciú gan ainm."
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr "Margaíocht"
#: templates/frontend-popup.php:1804
msgid "Marketing cookies are used to track visitors across websites. The intention is to display ads that are relevant and engaging for the individual user and thereby more valuable for publishers and third-party advertisers."
msgstr "Úsáidtear cookies margaíochta chun cuairteoirí a rianú ar láithreáin ghréasáin. Is é atá i gceist ná fógraí atá ábhartha agus tarraingteach don úsáideoir aonair a thaispeáint agus ar an gcaoi sin níos luachmhaire dfhoilsitheoirí agus dfhógróirí tríú páirtí."
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr "Neamhrangaithe"
#: templates/frontend-popup.php:1812
msgid "Unclassified cookies are cookies that we are in the process of classifying, together with the providers of individual cookies."
msgstr "Is éard is cookies neamhrangaithe ann ná cookies atá á rangú againn, mar aon le soláthraithe cookies aonair."
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr "Sábháil mo roghanna"
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr "cumhachtaithe ag"

View File

@ -0,0 +1,639 @@
msgid ""
msgstr ""
"Project-Id-Version: seers-cookie-consent-banner-privacy-policy\n"
"POT-Creation-Date: 2022-03-25 17:21+0500\n"
"PO-Revision-Date: 2022-04-03 22:07-0700\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: gd\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n>=3 && n<=6 ? 2 : n>=7 && n<=10 ? 3 : 4);\n"
"X-Generator: Poedit 3.0.1\n"
"X-Poedit-Basepath: ..\n"
"X-Poedit-KeywordsList: __;_e;esc_html_e\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPath-1: inc\n"
"X-Poedit-SearchPath-2: templates\n"
#: inc/seers-cookie-consent-plugin-deactivate.php:382
msgid "Quick Feedback"
msgstr "Feedback malajr"
#: inc/seers-cookie-consent-plugin-deactivate.php:383
msgid "If you have a moment, please let us know why you are deactivating:"
msgstr "Jekk għandek mument, jekk jogħġbok għarrafna għaliex qed tiddiżattiva:"
#: inc/seers-cookie-consent-plugin-deactivate.php:386
#: inc/seers-cookie-consent-plugin-deactivate.php:387
#: inc/seers-cookie-consent-plugin-deactivate_old.php:154
msgid "The banner is not in the required language"
msgstr "Il-banner mhux fil-lingwa meħtieġa"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "The banner picks up your website language automatically. You can always sign-in on your Seers account"
msgstr "Il-banner jiġbor il-lingwa tal-websajt tiegħek awtomatikament. Inti tista 'dejjem tiffirma fuq il-kont tas-SEERS tiegħek"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
msgid "and choose the language you like. See the video"
msgstr "u agħżel il-lingwa li tixtieq. Ara l-video"
#: inc/seers-cookie-consent-plugin-deactivate.php:391
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "here"
msgstr "hawnhekk"
#: inc/seers-cookie-consent-plugin-deactivate.php:395
#: inc/seers-cookie-consent-plugin-deactivate.php:396
#: inc/seers-cookie-consent-plugin-deactivate_old.php:163
msgid "Banner did not appear"
msgstr "Banner ma deherx"
#: inc/seers-cookie-consent-plugin-deactivate.php:399
#: inc/seers-cookie-consent-plugin-deactivate.php:420
msgid "Most of the times the compatibility issue can be fixed very quickly. Please contact"
msgstr "Ħafna mill-ħinijiet il-kwistjoni tal-kompatibilità tista 'tiġi ffissata malajr ħafna. Jekk jogħġbok ikkuntattja"
#: inc/seers-cookie-consent-plugin-deactivate.php:403
#: inc/seers-cookie-consent-plugin-deactivate_old.php:170
msgid "Cookies are not showing in settings"
msgstr "Cookies mhumiex juru fis-settings"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "We are scanning your website and it can take up to 12 hours for Cookies to appear. In a very few cases scanner miss a cookie. This"
msgstr "Qed niskannjaw il-websajt tiegħek u tista 'tieħu sa 12-il siegħa għall-cookies jidhru. Fi ftit każijiet skaner taqbeż cookie. Dan"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "video"
msgstr "video"
#: inc/seers-cookie-consent-plugin-deactivate.php:406
msgid "explains how to add cookies manually."
msgstr "jispjega kif iżżid il-cookies manwalment."
#: inc/seers-cookie-consent-plugin-deactivate.php:410
#: inc/seers-cookie-consent-plugin-deactivate_old.php:177
msgid "The banner did not match website theme"
msgstr "Il-banner ma jaqbilx mat-tema tal-websajt"
#: inc/seers-cookie-consent-plugin-deactivate.php:413
msgid "You can fully customize the banner. Please see the video"
msgstr "Tista 'tibdel bis-sħiħ il-bandiera. Jekk jogħġbok ara l-video"
#: inc/seers-cookie-consent-plugin-deactivate.php:416
#: inc/seers-cookie-consent-plugin-deactivate.php:417
#: inc/seers-cookie-consent-plugin-deactivate_old.php:184
msgid "The plugin broke my site"
msgstr "Il-plugin kissru s-sit tiegħi"
#: inc/seers-cookie-consent-plugin-deactivate.php:424
#: inc/seers-cookie-consent-plugin-deactivate_old.php:191
msgid "I have found a better plugin"
msgstr "Sibt plugin aħjar"
#: inc/seers-cookie-consent-plugin-deactivate.php:427
msgid "Plugin name"
msgstr "Isem tal-Plugin"
#: inc/seers-cookie-consent-plugin-deactivate.php:430
msgid "The plugin is great, but i need specific feature that you do not support."
msgstr "Il-plugin huwa kbir, imma għandi bżonn karatteristika speċifika li ma tappoġġjax."
#: inc/seers-cookie-consent-plugin-deactivate.php:431
#: inc/seers-cookie-consent-plugin-deactivate_old.php:198
msgid "The plugin is great, but i need specific feature that you don't support."
msgstr "Il-plugin huwa kbir, imma għandi bżonn karatteristika speċifika li ma tappoġġjax."
#: inc/seers-cookie-consent-plugin-deactivate.php:434
msgid "Banner customisation."
msgstr "Customisation banner."
#: inc/seers-cookie-consent-plugin-deactivate.php:438
#: inc/seers-cookie-consent-plugin-deactivate.php:439
#: inc/seers-cookie-consent-plugin-deactivate_old.php:206
msgid "Other"
msgstr "Oħrajn"
#: inc/seers-cookie-consent-plugin-deactivate.php:442
msgid "Kindly tell us the reason so we can improve."
msgstr "Ġentilment tgħidilna r-raġuni sabiex inkunu nistgħu ntejbu."
#: inc/seers-cookie-consent-plugin-deactivate.php:445
msgid "Submit & Deactivate"
msgstr "Issottometti & deattivat"
#: inc/seers-cookie-consent-plugin-deactivate.php:446
msgid "Cancel"
msgstr "Ikkanċella"
#: inc/seers-cookie-consent-plugin-deactivate.php:451
msgid "Skip & Deactivate"
msgstr "Skip & deattivat"
#: js/admin.js:15
msgid "Dismiss this notice."
msgstr "Tiċħad dan l-avviż."
#: seers-cookie-consent-banner-privacy-policy.php:135 templates/admin.php:97
msgid "Settings"
msgstr "Settings"
#: seers-cookie-consent-banner-privacy-policy.php:141
msgid "Upgrade Premium"
msgstr "Upgrade Premium"
#: seers-cookie-consent-banner-privacy-policy.php:292 templates/admin.php:514
#: templates/frontend-popup.php:1738 templates/frontend-popup.php:1759
msgid "We use cookies to ensure you get the best experience"
msgstr "Aħna nużaw cookies biex niżguraw li jkollok l-aħjar esperjenza"
#: seers-cookie-consent-banner-privacy-policy.php:293 templates/admin.php:558
#: templates/admin.php:559 templates/admin.php:561
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1765
msgid "Allow All"
msgstr "Ħalli Kollha"
#: seers-cookie-consent-banner-privacy-policy.php:294 templates/admin.php:589
#: templates/admin.php:590 templates/admin.php:592
#: templates/frontend-popup.php:1740 templates/frontend-popup.php:1766
msgid "Disable All"
msgstr "Itfi Kollha"
#: seers-cookie-consent-banner-privacy-policy.php:295 templates/admin.php:621
#: templates/frontend-popup.php:1740
msgid "Preference"
msgstr "Preferenza"
#: seers-cookie-consent-banner-privacy-policy.php:418
#: seers-cookie-consent-banner-privacy-policy.php:446
#: seers-cookie-consent-banner-privacy-policy.php:452
msgid "Cookies policy added successfully."
msgstr "Il-politika tal-cookies miżjuda b'suċċess."
#: seers-cookie-consent-banner-privacy-policy.php:421
msgid "Some thing went wrong. Please check url and try again"
msgstr "Xi ħaġa marret ħażin. Jekk jogħġbok iċċekkja l-URL u erġa 'pprova"
#: seers-cookie-consent-banner-privacy-policy.php:675
msgid "Some thing went wrong."
msgstr "Xi ħaġa marret ħażin."
#: seers-cookie-consent-banner-privacy-policy.php:819
msgid "Settings has been updated successfully"
msgstr "Settings ġiet aġġornata b'suċċess"
#: templates/admin.php:92 templates/admin.php:841
msgid "Account Setup"
msgstr "Setup tal-Kont"
#: templates/admin.php:100
msgid "Policy"
msgstr "Politika"
#: templates/admin.php:104
msgid "User Guide"
msgstr "Utent Gwida"
#: templates/admin.php:119
msgid "Your Seers Cookie Consent banner is activated."
msgstr "Tha a bhratach cead “Seers Cookie” agad air a cur an gnìomh."
#: templates/admin.php:123
msgid "Your Seers Cookie Consent Banner is NOT activated because"
msgstr "Il-banner tal-kunsens tal-cookie tas-seers tiegħek mhux attivat għax"
#: templates/admin.php:134
msgid "Email"
msgstr "Email"
#: templates/admin.php:145 templates/admin.php:162
msgid "I agree Seers"
msgstr "Tha mi ag aontachadh SEERS"
#: templates/admin.php:146 templates/admin.php:163
msgid "Terms & Condition"
msgstr "Termini & Kundizzjoni"
#: templates/admin.php:148 templates/admin.php:165
msgid "and"
msgstr "u"
#: templates/admin.php:149 templates/admin.php:167
msgid "Privacy Policy"
msgstr "Regoli tal-privatezza"
#: templates/admin.php:154 templates/admin.php:172
msgid "I agree Seers to use my email and url to create an account and power the cookie banner."
msgstr "Jiena naqbel li seers biex nużaw l-email u l-URL tiegħi biex noħloq kont u nqajjem il-banner tal-cookie."
#: templates/admin.php:178
msgid "Create Account"
msgstr "Oħloq Kont"
#: templates/admin.php:181
msgid "Cookie ID"
msgstr "Cookie Id"
#: templates/admin.php:182
msgid "Seers Cookie ID will be received automatically after account creation"
msgstr "Seers Cookie ID se jkun riċevut awtomatikament wara l-ħolqien tal-kont"
#: templates/admin.php:197
msgid "Powering all your"
msgstr "Qawwa kollha tiegħek"
#: templates/admin.php:198
msgid "Privacy &amp; Data Security needs"
msgstr "Prìobhaideachd agus; Feumalachdan tèarainteachd dàta"
#: templates/admin.php:199
msgid "Gain access to an extensive range of GDPR, PECR, CCPA &amp; ePrivacy compliance tools,"
msgstr "Faighinn a-mach gu raon farsaing de GDPP, PECR, CCPA agus; Innealan Giùlainidheach bìodachd,"
#: templates/admin.php:200
msgid "all"
msgstr "kollha"
#: templates/admin.php:201
msgid ""
"designed to take the hassle out of complying with the new data\n"
" protection regulations."
msgstr ""
"deartha chun an hassle a thógáil as na sonraí nua a chomhlíonadh\n"
" Rialacháin um Chosaint."
#: templates/admin.php:206
msgid "Policies Pack"
msgstr "Politiki Pack"
#: templates/admin.php:207
msgid "Templates Pack"
msgstr "Templates Pack"
#: templates/admin.php:208
msgid "GDPR Staff eTraining"
msgstr "Persunal tal-GDPR etraining"
#: templates/admin.php:209
msgid "Cookie Consent Management"
msgstr "Ġestjoni tal-kunsens tal-cookie"
#: templates/admin.php:212
msgid "DPIA"
msgstr "Dpia"
#: templates/admin.php:213
msgid "GDPR Audit"
msgstr "Verifika tal-GDPR"
#: templates/admin.php:214
msgid "Cyber Secure"
msgstr "Cyber Secure"
#: templates/admin.php:215
msgid "Subject Request Management"
msgstr "Ġestjoni tat-Talba tas-Suġġett"
#: templates/admin.php:217
msgid "START FREE"
msgstr "Ibda Free"
#: templates/admin.php:223
msgid ""
"Data Privacy &amp;\n"
" Compliance. Solved"
msgstr ""
"Príobháideacht sonraí agus;\n"
" Comhlíonadh. Réitithe"
#: templates/admin.php:225
msgid ""
"Trust worlds leading privacy and consent management platform to help companies comply\n"
" with GDPR, PECR, CCPA and ePrivacy"
msgstr ""
"Iontaobhas Worlds Príobháideacht agus Toiliú Toilithe Ardán chun cabhrú le cuideachtaí\n"
" le GDPR, PeCR, CCPA agus EPrivacy"
#: templates/admin.php:227
msgid "START PREMIUM TODAY"
msgstr "Bidu Premium illum"
#: templates/admin.php:230
msgid "Seers Premium Plan"
msgstr "Seers Pjan Premium"
#: templates/admin.php:232
msgid "Branding"
msgstr "Branding"
#: templates/admin.php:233
msgid "Multi Lingual"
msgstr "Multi Lingwa"
#: templates/admin.php:234
msgid "Consent Log"
msgstr "Log Log"
#: templates/admin.php:235
msgid "Cookie Policy"
msgstr "Politika tal-Cookie"
#: templates/admin.php:236
msgid "Prior Consent"
msgstr "Kunsens minn qabel"
#: templates/admin.php:237
msgid "6+ Design Layouts"
msgstr "6+ Layouts tad-Disinn"
#: templates/admin.php:238
msgid "Customer Support"
msgstr "Appoġġ lill-Klijent"
#: templates/admin.php:239
msgid "Banner Customisation"
msgstr "Gnàthachadh bratach"
#: templates/admin.php:240
msgid "Cookie Declaration Table"
msgstr "Tabella tad-Dikjarazzjoni tal-Cookie"
#: templates/admin.php:241
msgid ""
"START PREMIUM\n"
" TODAY"
msgstr ""
"TÚS PREMIUM\n"
" INNIU"
#: templates/admin.php:255
msgid "Banner Settings"
msgstr "Settings tal-Banner"
#: templates/admin.php:260
msgid "Banner"
msgstr "Banner"
#: templates/admin.php:260
msgid "Enable/disable Cookie banner"
msgstr "Enable / Itfi banner tal-cookie"
#: templates/admin.php:279
msgid "Cookie Expiry"
msgstr "Crìochnachadh cookie"
#: templates/admin.php:279
msgid "Set your consent cookie to expire in days."
msgstr "Issettja l-cookie tal-kunsens tiegħek biex tiskadi fi ġranet."
#: templates/admin.php:291
msgid "Language"
msgstr "Lingwa"
#: templates/admin.php:291
msgid "Choose a language for the banner Settings > General."
msgstr "Agħżel lingwa għas-Settings tal-Banner> Ġenerali."
#: templates/admin.php:475
msgid "Show Badge"
msgstr "Uri Badge"
#: templates/admin.php:475
msgid "Show a badge to enable the cookie banner to appear post consent."
msgstr "Uri badge biex tippermetti lill-banner tal-cookie jidher il-kunsens wara."
#: templates/admin.php:498
msgid "Visual Settings"
msgstr "Settings Viżwali"
#: templates/admin.php:503
msgid "Banner Text"
msgstr "Banner Test"
#: templates/admin.php:503
msgid "Text to appear on the banner:"
msgstr "Test li jidher fuq il-bandiera:"
#: templates/admin.php:506 templates/admin.php:524
msgid "Colour"
msgstr "Kulur"
#: templates/admin.php:506
msgid "The text colour to appear on the banner:"
msgstr "Il-kulur tat-test li jidher fuq il-bandiera:"
#: templates/admin.php:521
msgid "Banner Background"
msgstr "Banner Sfond"
#: templates/admin.php:521
msgid "You can change the background colour of the banner:"
msgstr "Tista 'tbiddel il-kulur ta' l-isfond tal-bandiera:"
#: templates/admin.php:524
msgid "The background colour of the banner:"
msgstr "Dath cùl a 'bhratach:"
#: templates/admin.php:538
msgid "Accept Button"
msgstr "Aċċetta l-buttuna"
#: templates/admin.php:538
msgid "You can change text colour, button colour and text of the 'Accept All' button"
msgstr "Tista 'tbiddel il-kulur tat-test, il-kulur tal-buttuna u t-test tal-buttuna' Aċċetta Kollha '"
#: templates/admin.php:541 templates/admin.php:572 templates/admin.php:603
msgid "Text Colour"
msgstr "Test Kulur"
#: templates/admin.php:541
msgid "The text colour to appear on the 'Accept All' button:"
msgstr "Il-kulur tat-test li jidher fuq il-buttuna 'Aċċetta Kollha':"
#: templates/admin.php:551 templates/admin.php:582 templates/admin.php:613
msgid "Button Colour"
msgstr "Buttuna Kulur"
#: templates/admin.php:551
msgid "The 'Accept All' button colour to appear on the banner:"
msgstr "Il-kulur tal-buttuna 'Aċċetta kollox' biex jidher fuq il-bandiera:"
#: templates/admin.php:569
msgid "Reject Button"
msgstr "Putan a dhiùltadh"
#: templates/admin.php:569
msgid "You can change text colour, button colour and text of the 'Reject All' button"
msgstr "Tista 'tbiddel il-kulur tat-test, il-kulur tal-buttuna u t-test tal-buttuna' tirrifjuta Kollha '"
#: templates/admin.php:572
msgid "The text colour to appear on the 'Reject All' button:"
msgstr "Il-kulur tat-test li jidher fuq il-buttuna 'tirrifjuta kollha':"
#: templates/admin.php:582
msgid "The 'Reject All' button colour to appear on the banner:"
msgstr "Bidh dath a phutain Diùlt na h-Uile a nochdadh air a bhratach:"
#: templates/admin.php:600
msgid "Setting Button"
msgstr "Issettja l-buttuna"
#: templates/admin.php:600
msgid "You can change text colour and text of the 'Setting' button"
msgstr "Tista 'tbiddel il-kulur tat-test u t-test tal-buttuna' issettjar '"
#: templates/admin.php:603
msgid "The text colour to appear on the 'Setting' button:"
msgstr "Il-kulur tat-test li jidher fuq il-buttuna 'issettjar':"
#: templates/admin.php:613
msgid "The 'Setting' button colour to appear on the banner:"
msgstr "Il- 'issettjar' buttuna buttuna li jidhru fuq il-bandiera:"
#: templates/admin.php:624
msgid "Setting"
msgstr "Twaqqif"
#: templates/admin.php:632
msgid "Fonts"
msgstr "Fonts"
#: templates/admin.php:632
msgid "You can select a font for the text of the banner:"
msgstr "Tista 'tagħżel font għat-test tal-bandiera:"
#: templates/admin.php:684
msgid "Select Button"
msgstr "Agħżel Button"
#: templates/admin.php:684
msgid "You can select the shape of the buttons that appear on the banner."
msgstr "Faodaidh tu cumadh nan putanan a tha a 'nochdadh air a' bhratach a thaghadh."
#: templates/admin.php:688
msgid "Default"
msgstr "Default"
#: templates/admin.php:692 templates/admin.php:702
msgid "Flat"
msgstr "Ċatt"
#: templates/admin.php:695 templates/admin.php:705
msgid "Rounded"
msgstr "Aġġustat"
#: templates/admin.php:698 templates/admin.php:708
msgid "Stroke"
msgstr "Stroke"
#: templates/admin.php:726
msgid "PREVIEW"
msgstr "Ro-shealladh"
#: templates/admin.php:727
msgid "SAVE"
msgstr "Save"
#: templates/admin.php:746
msgid "Please create cookies policy page and enter URL below."
msgstr "Jekk jogħġbok ħu l-paġna tal-politika tal-cookies u daħħal il-URL hawn taħt."
#: templates/admin.php:750
msgid "Enable Policy:"
msgstr "Jippermettu l-politika:"
#: templates/admin.php:767
msgid "Cookie Policy and declaration URL:"
msgstr "Politika tal-Cookie U URL Dikjarazzjoni:"
#: templates/admin.php:770
msgid "Policy URL"
msgstr "URL POLITIKA"
#: templates/admin.php:777
msgid "Save"
msgstr "Sàbhail"
#: templates/admin.php:831
msgid "Premium Plan"
msgstr "Pjan Premium"
#: templates/admin.php:834 templates/admin.php:1023 templates/admin.php:1032
#: templates/admin.php:1040
msgid "Only the users with a paid account can avail this feature."
msgstr "L-utenti biss b'kont imħallas jistgħu jużaw din il-karatteristika."
#: templates/admin.php:839
msgid "Ok"
msgstr "Kollox sew"
#: templates/frontend-popup.php:1751
msgid "seers logo"
msgstr "seers loto"
#: templates/frontend-popup.php:1756
msgid "About Cookies"
msgstr "Dwar Cookies"
#: templates/frontend-popup.php:1760
msgid "Read Cookie Policy"
msgstr "Aqra l-Politika tal-Cookie"
#: templates/frontend-popup.php:1772
msgid "Necessary"
msgstr "Meħtieġa"
#: templates/frontend-popup.php:1772
msgid "Always Active"
msgstr "Dejjem Attiv"
#: templates/frontend-popup.php:1774
msgid "Necessary cookies help make a website usable by enabling basic functions like page navigation and access to secure areas of the website. The website cannot function properly without these cookies."
msgstr "Cookies meħtieġa jgħinu biex websajt tintuża billi tippermetti funzjonijiet bażiċi bħan-navigazzjoni tal-paġna u aċċess għal żoni siguri tal-websajt. Il-websajt ma tistax tiffunzjona sewwa mingħajr dawn il cookies."
#: templates/frontend-popup.php:1774 templates/frontend-popup.php:1784
#: templates/frontend-popup.php:1794 templates/frontend-popup.php:1804
#: templates/frontend-popup.php:1812
msgid "Cookies Detail"
msgstr "Dettall tal-cookies"
#: templates/frontend-popup.php:1778
msgid "Preferences"
msgstr "Preferenzi"
#: templates/frontend-popup.php:1784
msgid "Preference cookies enable a website to remember information that changes the way the website behaves or looks, like your preferred language or the region that you are in."
msgstr "Cookies preferenza jippermettu websajt biex tiftakar informazzjoni li tbiddel il-mod kif jaġixxi jew jistenna, bħall-lingwa preferuta tiegħek jew ir-reġjun li inti fil."
#: templates/frontend-popup.php:1788
msgid "Statistics"
msgstr "Statistika"
#: templates/frontend-popup.php:1794
msgid "Statistic cookies help website owners to understand how visitors interact with websites by collecting and reporting information anonymously."
msgstr "Cookies statistiċi jgħinu lis-sidien ta 'websajts jifhmu kif il-viżitaturi jinteraġixxu ma' websajts billi jiġbru u jirrappurtaw informazzjoni b'mod anonimu."
#: templates/frontend-popup.php:1798
msgid "Marketing"
msgstr "Kummerċjalizzazzjoni"
#: templates/frontend-popup.php:1804
msgid "Marketing cookies are used to track visitors across websites. The intention is to display ads that are relevant and engaging for the individual user and thereby more valuable for publishers and third-party advertisers."
msgstr "Il- cookies tal-kummerċ huma użati biex isegwu l-viżitaturi minn websajts oħra. L-intenzjoni hija li jintwerew reklami li huma rilevanti u attraenti għall-utent individwali u b'hekk aktar siewja għall-pubblikaturi u għal dawk li jirreklamaw partijiet terzi."
#: templates/frontend-popup.php:1808
msgid "Unclassified"
msgstr "Mhux ikklassifikat"
#: templates/frontend-popup.php:1812
msgid "Unclassified cookies are cookies that we are in the process of classifying, together with the providers of individual cookies."
msgstr "Cookies mhux ikklassifikati huma cookies li qegħdin fil-proċess li nikklassifikaw, flimkien mal-fornituri ta cookies individwali."
#: templates/frontend-popup.php:1819
msgid "Save my choices"
msgstr "Salv l-għażliet tiegħi"
#: templates/frontend-popup.php:1825
msgid "powered by"
msgstr "lmħaddem minn"

Some files were not shown because too many files have changed in this diff Show More