Version Description
(19.06.2017) =
- New: Admin can now include user subscribed group name in the Welcome Email (Email Subscribers v3.3.1+)
- Update: Documentation links
- Update: Translation for French (fr_FR) language updated (Thanks to Serge)
- Update: Translation for Lithuanian (lt_LT) language updated (Thanks to Andrius)
- Update: Translation for German (de_DE) language updated (Thanks to Markus Buschmann)
- Update: POT file
Download this release
Release Info
Developer | storeapps |
Plugin | Email Subscribers & Newsletters |
Version | 3.3.1 |
Comparing to | |
See all releases |
Code changes from version 3.3 to 3.3.1
- changelog.txt +9 -0
- classes/es-register.php +12 -9
- classes/es-sendmail.php +2 -1
- compose/compose-add.php +2 -2
- compose/compose-edit.php +2 -2
- email-subscribers.php +1 -1
- help/help.php +15 -9
- job/es-subscribe.php +1 -1
- languages/email-subscribers-de_DE.mo +0 -0
- languages/email-subscribers-de_DE.po +590 -498
- languages/email-subscribers-fr_FR.mo +0 -0
- languages/email-subscribers-fr_FR.po +1743 -1341
- languages/email-subscribers-lt_LT.mo +0 -0
- languages/email-subscribers-lt_LT.po +731 -639
- languages/email-subscribers.pot +45 -35
- query/db_default.php +1 -1
- readme.txt +55 -40
- settings/settings-edit.php +1 -1
changelog.txt
CHANGED
@@ -4,6 +4,15 @@ Author : Icegram
|
|
4 |
Author URI : http://www.icegram.com/
|
5 |
License : GPLv3
|
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
********************************Version 3.3************************************************************
|
8 |
|
9 |
* New: Merged Roles and Cron menu into Settings
|
4 |
Author URI : http://www.icegram.com/
|
5 |
License : GPLv3
|
6 |
|
7 |
+
********************************Version 3.3.1************************************************************
|
8 |
+
|
9 |
+
* New: Admin can now include user subscribed group name in the Welcome Email (Email Subscribers v3.3.1+)
|
10 |
+
* Update: Documentation links
|
11 |
+
* Update: Translation for French (fr_FR) language updated (Thanks to Serge)
|
12 |
+
* Update: Translation for Lithuanian (lt_LT) language updated (Thanks to Andrius)
|
13 |
+
* Update: Translation for German (de_DE) language updated (Thanks to Markus Buschmann)
|
14 |
+
* Update: POT file
|
15 |
+
|
16 |
********************************Version 3.3************************************************************
|
17 |
|
18 |
* New: Merged Roles and Cron menu into Settings
|
classes/es-register.php
CHANGED
@@ -21,8 +21,8 @@ class es_cls_registerhook {
|
|
21 |
$handle = fopen($sql_file, 'r');
|
22 |
$query = fread($handle, filesize($sql_file));
|
23 |
fclose($handle);
|
24 |
-
$query=str_replace('CREATE TABLE IF NOT EXISTS ','CREATE TABLE IF NOT EXISTS '.$prefix, $query);
|
25 |
-
$queries=explode('-- SQLQUERY ---', $query);
|
26 |
|
27 |
// run the queries one by one
|
28 |
$has_errors = false;
|
@@ -31,17 +31,17 @@ class es_cls_registerhook {
|
|
31 |
}
|
32 |
|
33 |
// list the tables that haven't been created
|
34 |
-
$missingtables=array();
|
35 |
foreach($array_tables_to_plugin as $table_name) {
|
36 |
if(strtoupper($wpdb->get_var("SHOW TABLES like '". $prefix.$table_name . "'")) != strtoupper($prefix.$table_name)) {
|
37 |
-
$missingtables[]
|
38 |
}
|
39 |
}
|
40 |
|
41 |
// add error in to array variable
|
42 |
if($missingtables) {
|
43 |
$errors[] = __('These tables could not be created on installation ' . implode(', ',$missingtables), 'email-subscribers');
|
44 |
-
$has_errors=true;
|
45 |
}
|
46 |
|
47 |
// if error call wp_die()
|
@@ -693,7 +693,7 @@ class es_cls_registerhook {
|
|
693 |
$home_url = home_url();
|
694 |
$strlen = strlen($home_url);
|
695 |
$res = $strlen%10;
|
696 |
-
if($res != 1)
|
697 |
return;
|
698 |
$es_data = es_cls_dbquery::es_survey_res();
|
699 |
$screen = get_current_screen();
|
@@ -730,13 +730,13 @@ class es_cls_registerhook {
|
|
730 |
<li class="es-profile-txt">
|
731 |
<?php
|
732 |
if($es_data['cron'] > $es_data['immediately']){
|
733 |
-
_e('Send
|
734 |
}else {
|
735 |
-
_e('Send
|
736 |
}
|
737 |
?>
|
738 |
</li>
|
739 |
-
<input type="hidden" name="es_data[
|
740 |
</ul>
|
741 |
</div>
|
742 |
</div>
|
@@ -834,9 +834,12 @@ class es_cls_registerhook {
|
|
834 |
if( !empty($_POST['btn-val']) && $_POST['btn-val'] == 'no' ) {
|
835 |
update_option('es_survey_done', true);
|
836 |
}
|
|
|
837 |
if( !empty( $_POST ) ) {
|
|
|
838 |
$params = $_POST;
|
839 |
$params['domain'] = home_url();
|
|
|
840 |
} else {
|
841 |
exit();
|
842 |
}
|
21 |
$handle = fopen($sql_file, 'r');
|
22 |
$query = fread($handle, filesize($sql_file));
|
23 |
fclose($handle);
|
24 |
+
$query = str_replace('CREATE TABLE IF NOT EXISTS ','CREATE TABLE IF NOT EXISTS '.$prefix, $query);
|
25 |
+
$queries = explode('-- SQLQUERY ---', $query);
|
26 |
|
27 |
// run the queries one by one
|
28 |
$has_errors = false;
|
31 |
}
|
32 |
|
33 |
// list the tables that haven't been created
|
34 |
+
$missingtables = array();
|
35 |
foreach($array_tables_to_plugin as $table_name) {
|
36 |
if(strtoupper($wpdb->get_var("SHOW TABLES like '". $prefix.$table_name . "'")) != strtoupper($prefix.$table_name)) {
|
37 |
+
$missingtables[] = $prefix.$table_name;
|
38 |
}
|
39 |
}
|
40 |
|
41 |
// add error in to array variable
|
42 |
if($missingtables) {
|
43 |
$errors[] = __('These tables could not be created on installation ' . implode(', ',$missingtables), 'email-subscribers');
|
44 |
+
$has_errors = true;
|
45 |
}
|
46 |
|
47 |
// if error call wp_die()
|
693 |
$home_url = home_url();
|
694 |
$strlen = strlen($home_url);
|
695 |
$res = $strlen%10;
|
696 |
+
if($res != 1 && $res != 2)
|
697 |
return;
|
698 |
$es_data = es_cls_dbquery::es_survey_res();
|
699 |
$screen = get_current_screen();
|
730 |
<li class="es-profile-txt">
|
731 |
<?php
|
732 |
if($es_data['cron'] > $es_data['immediately']){
|
733 |
+
_e('Send emails via Cron', ES_TDOMAIN);
|
734 |
}else {
|
735 |
+
_e('Send emails Immediately', ES_TDOMAIN);
|
736 |
}
|
737 |
?>
|
738 |
</li>
|
739 |
+
<input type="hidden" name="es_data[data]" value="<?php echo base64_encode(json_encode($es_data)); ?>">
|
740 |
</ul>
|
741 |
</div>
|
742 |
</div>
|
834 |
if( !empty($_POST['btn-val']) && $_POST['btn-val'] == 'no' ) {
|
835 |
update_option('es_survey_done', true);
|
836 |
}
|
837 |
+
|
838 |
if( !empty( $_POST ) ) {
|
839 |
+
$data = json_decode(base64_decode($_POST['es_data']['data']), true);
|
840 |
$params = $_POST;
|
841 |
$params['domain'] = home_url();
|
842 |
+
$params['es_data']['data'] = $data;
|
843 |
} else {
|
844 |
exit();
|
845 |
}
|
classes/es-sendmail.php
CHANGED
@@ -384,6 +384,7 @@ class es_cls_sendmail {
|
|
384 |
$adminmailcontant = stripslashes($settings['ig_es_admin_new_sub_content']);
|
385 |
$adminmailcontant = str_replace("###NAME###", $name , $adminmailcontant);
|
386 |
$adminmailcontant = str_replace("###EMAIL###", $to, $adminmailcontant);
|
|
|
387 |
|
388 |
if ( $settings['ig_es_emailtype'] == "WP HTML MAIL" || $settings['ig_es_emailtype'] == "PHP HTML MAIL" ) {
|
389 |
$adminmailcontant = nl2br($adminmailcontant);
|
@@ -475,7 +476,7 @@ class es_cls_sendmail {
|
|
475 |
}
|
476 |
|
477 |
// Admin mails
|
478 |
-
if($type == "welcome" && $adminmail
|
479 |
wp_mail($adminmail, $adminmailsubject, $adminmailcontant, $headers);
|
480 |
}
|
481 |
} else { // PHP Mail
|
384 |
$adminmailcontant = stripslashes($settings['ig_es_admin_new_sub_content']);
|
385 |
$adminmailcontant = str_replace("###NAME###", $name , $adminmailcontant);
|
386 |
$adminmailcontant = str_replace("###EMAIL###", $to, $adminmailcontant);
|
387 |
+
$adminmailcontant = str_replace("###GROUP###", $group, $adminmailcontant);
|
388 |
|
389 |
if ( $settings['ig_es_emailtype'] == "WP HTML MAIL" || $settings['ig_es_emailtype'] == "PHP HTML MAIL" ) {
|
390 |
$adminmailcontant = nl2br($adminmailcontant);
|
476 |
}
|
477 |
|
478 |
// Admin mails
|
479 |
+
if($type == "welcome" && $adminmail != "" && $es_c_adminmailoption == "YES") {
|
480 |
wp_mail($adminmail, $adminmailsubject, $adminmailcontant, $headers);
|
481 |
}
|
482 |
} else { // PHP Mail
|
compose/compose-add.php
CHANGED
@@ -75,7 +75,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
75 |
<a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
|
76 |
</h2>
|
77 |
<form name="es_form" method="post" action="#" onsubmit="return _es_submit()">
|
78 |
-
<label for="tag-link"><?php echo __( 'Select your
|
79 |
<select name="es_email_type" id="es_email_type">
|
80 |
<option value='Newsletter' selected="selected"><?php echo __( 'Newsletter', ES_TDOMAIN ); ?></option>
|
81 |
<option value='Post Notification'><?php echo __( 'Post Notification', ES_TDOMAIN ); ?></option>
|
@@ -90,7 +90,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
90 |
<?php $settings_body = array( 'textarea_rows' => 25 ); ?>
|
91 |
<?php wp_editor("", "es_templ_body", $settings_body);?>
|
92 |
<p>
|
93 |
-
<?php echo sprintf(__( '%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, ###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, ###POSTDESC###, ###POSTFULL###', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-what-are-
|
94 |
</p>
|
95 |
|
96 |
<div class="template_status" style="display:none;">
|
75 |
<a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
|
76 |
</h2>
|
77 |
<form name="es_form" method="post" action="#" onsubmit="return _es_submit()">
|
78 |
+
<label for="tag-link"><?php echo __( 'Select your Email Template', ES_TDOMAIN ); ?></label>
|
79 |
<select name="es_email_type" id="es_email_type">
|
80 |
<option value='Newsletter' selected="selected"><?php echo __( 'Newsletter', ES_TDOMAIN ); ?></option>
|
81 |
<option value='Post Notification'><?php echo __( 'Post Notification', ES_TDOMAIN ); ?></option>
|
90 |
<?php $settings_body = array( 'textarea_rows' => 25 ); ?>
|
91 |
<?php wp_editor("", "es_templ_body", $settings_body);?>
|
92 |
<p>
|
93 |
+
<?php echo sprintf(__( '%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, ###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, ###POSTDESC###, ###POSTFULL###', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-what-are-the-available-keywords-in-the-post-notifications/" target="_blank">' . __( 'Available Keywords', ES_TDOMAIN ) . '</a>' ); ?><br />
|
94 |
</p>
|
95 |
|
96 |
<div class="template_status" style="display:none;">
|
compose/compose-edit.php
CHANGED
@@ -86,7 +86,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
86 |
<a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
|
87 |
</h2>
|
88 |
<form name="es_form" method="post" action="#" onsubmit="return _es_submit()">
|
89 |
-
<label for="tag-link"><?php echo __( 'Select your
|
90 |
<select name="es_email_type" id="es_email_type">
|
91 |
<option value='Newsletter' <?php if( $form['es_email_type'] == 'Newsletter' ) { echo 'selected="selected"' ; } ?>><?php echo __( 'Newsletter', ES_TDOMAIN ); ?></option>
|
92 |
<option value='Post Notification' <?php if( $form['es_email_type'] == 'Post Notification' ) { echo 'selected="selected"' ; } ?>><?php echo __( 'Post Notification', ES_TDOMAIN ); ?></option>
|
@@ -101,7 +101,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
101 |
<?php $settings_body = array( 'textarea_rows' => 25 ); ?>
|
102 |
<?php wp_editor(stripslashes($form['es_templ_body']), "es_templ_body", $settings_body);?>
|
103 |
<p>
|
104 |
-
<?php echo sprintf(__( '%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, ###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, ###POSTDESC###, ###POSTFULL###', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-what-are-
|
105 |
</p>
|
106 |
|
107 |
<div class="template_status" style="display:none;">
|
86 |
<a class="add-new-h2" target="_blank" href="<?php echo ES_FAV; ?>"><?php echo __( 'Help', ES_TDOMAIN ); ?></a>
|
87 |
</h2>
|
88 |
<form name="es_form" method="post" action="#" onsubmit="return _es_submit()">
|
89 |
+
<label for="tag-link"><?php echo __( 'Select your Email Template', ES_TDOMAIN ); ?></label>
|
90 |
<select name="es_email_type" id="es_email_type">
|
91 |
<option value='Newsletter' <?php if( $form['es_email_type'] == 'Newsletter' ) { echo 'selected="selected"' ; } ?>><?php echo __( 'Newsletter', ES_TDOMAIN ); ?></option>
|
92 |
<option value='Post Notification' <?php if( $form['es_email_type'] == 'Post Notification' ) { echo 'selected="selected"' ; } ?>><?php echo __( 'Post Notification', ES_TDOMAIN ); ?></option>
|
101 |
<?php $settings_body = array( 'textarea_rows' => 25 ); ?>
|
102 |
<?php wp_editor(stripslashes($form['es_templ_body']), "es_templ_body", $settings_body);?>
|
103 |
<p>
|
104 |
+
<?php echo sprintf(__( '%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, ###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, ###POSTDESC###, ###POSTFULL###', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-what-are-the-available-keywords-in-the-post-notifications/" target="_blank">' . __( 'Available Keywords', ES_TDOMAIN ) . '</a>' ); ?><br />
|
105 |
</p>
|
106 |
|
107 |
<div class="template_status" style="display:none;">
|
email-subscribers.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Email Subscribers & Newsletters
|
4 |
* Plugin URI: http://www.icegram.com/
|
5 |
* Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
|
6 |
-
* Version: 3.3
|
7 |
* Author: Icegram
|
8 |
* Author URI: http://www.icegram.com/
|
9 |
* Requires at least: 3.4
|
3 |
* Plugin Name: Email Subscribers & Newsletters
|
4 |
* Plugin URI: http://www.icegram.com/
|
5 |
* Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
|
6 |
+
* Version: 3.3.1
|
7 |
* Author: Icegram
|
8 |
* Author URI: http://www.icegram.com/
|
9 |
* Requires at least: 3.4
|
help/help.php
CHANGED
@@ -124,7 +124,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
124 |
</p>
|
125 |
</li>
|
126 |
<li class="es_faq">
|
127 |
-
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-general-plugin-settings/" target="_blank">' . __( 'General Plugin Settings', ES_TDOMAIN ) . '</a>' . __( ' (
|
128 |
</li>
|
129 |
<li class="es_faq">
|
130 |
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-import-or-export-email-addresses/" target="_blank">' . __( 'How to Import or Export Email Addresses?', ES_TDOMAIN ) . '</a>' ); ?>
|
@@ -136,22 +136,22 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
136 |
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-add-unsubscribe-link-in-emails/" target="_blank">' . __( 'How to add Unsubscribe link in emails?', ES_TDOMAIN ) . '</a>' ); ?>
|
137 |
</li>
|
138 |
<li class="es_faq">
|
139 |
-
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-
|
140 |
</li>
|
141 |
<li class="es_faq">
|
142 |
-
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-
|
143 |
</li>
|
144 |
<li class="es_faq">
|
145 |
-
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-
|
146 |
</li>
|
147 |
<li class="es_faq">
|
148 |
-
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-send-a-sample-new-post-notification-email-to-testgroup-myself/" target="_blank">' . __( 'How to
|
149 |
</li>
|
150 |
<li class="es_faq">
|
151 |
-
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-check-sent-emails/" target="_blank">' . __( 'How to check
|
152 |
</li>
|
153 |
<li class="es_faq">
|
154 |
-
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-add-update-existing-subscribers-group/" target="_blank">' . __( 'How to Add/Update Existing Subscribers Group?', ES_TDOMAIN ) . '</a>' ); ?>
|
155 |
</li>
|
156 |
<li class="es_faq">
|
157 |
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-subscribers-are-not-receiving-emails/" target="_blank">' . __( 'Subscribers are not receiving Emails?', ES_TDOMAIN ) . '</a>' ); ?>
|
@@ -163,7 +163,13 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
163 |
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-use-rainmakers-form-in-email-subscribers/" target="_blank">' . __( 'How to use Rainmaker’s form in Email Subscribers?', ES_TDOMAIN ) . '</a>' ); ?>
|
164 |
</li>
|
165 |
<li class="es_faq">
|
166 |
-
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
</li>
|
168 |
<li class="es_faq">
|
169 |
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-schedule-cron-emails-in-cpanel/" target="_blank">' . __( 'How to Schedule Cron Emails in cPanel?', ES_TDOMAIN ) . '</a>' ); ?>
|
@@ -177,7 +183,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
177 |
<li class="es_faq">
|
178 |
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-css-help/" target="_blank">' . __( 'CSS Help', ES_TDOMAIN ) . '</a>' ); ?>
|
179 |
<li class="es_faq">
|
180 |
-
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-faq/" target="_blank">' . __( '
|
181 |
</li>
|
182 |
</ol>
|
183 |
</div>
|
124 |
</p>
|
125 |
</li>
|
126 |
<li class="es_faq">
|
127 |
+
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-general-plugin-settings/" target="_blank">' . __( 'General Plugin Settings', ES_TDOMAIN ) . '</a>' . __( ' (Modify existing emails like Confirmation, Welcome, Admin emails and Cron Settings and Assign User Roles)', ES_TDOMAIN ) ); ?>
|
128 |
</li>
|
129 |
<li class="es_faq">
|
130 |
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-import-or-export-email-addresses/" target="_blank">' . __( 'How to Import or Export Email Addresses?', ES_TDOMAIN ) . '</a>' ); ?>
|
136 |
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-add-unsubscribe-link-in-emails/" target="_blank">' . __( 'How to add Unsubscribe link in emails?', ES_TDOMAIN ) . '</a>' ); ?>
|
137 |
</li>
|
138 |
<li class="es_faq">
|
139 |
+
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-compose-and-send-newsletter-emails/" target="_blank">' . __( 'How to Compose and Send Newsletter Emails?', ES_TDOMAIN ) . '</a>' ); ?>
|
140 |
</li>
|
141 |
<li class="es_faq">
|
142 |
+
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-configure-and-send-notification-emails-to-subscribers-when-new-posts-are-published/" target="_blank">' . __( 'How to Configure and Send Post Notification Emails to subscribers when new posts are published?', ES_TDOMAIN ) . '</a>' ); ?>
|
143 |
</li>
|
144 |
<li class="es_faq">
|
145 |
+
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-what-are-the-available-keywords-in-the-post-notifications/" target="_blank">' . __( 'What are the available keywords in the Post Notifications?', ES_TDOMAIN ) . '</a>' ); ?>
|
146 |
</li>
|
147 |
<li class="es_faq">
|
148 |
+
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-send-a-sample-new-post-notification-email-to-testgroup-myself/" target="_blank">' . __( 'How to send a sample new post notification email to testgroup/myself?', ES_TDOMAIN ) . '</a>' ); ?>
|
149 |
</li>
|
150 |
<li class="es_faq">
|
151 |
+
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-check-sent-emails/" target="_blank">' . __( 'How to check sent emails?', ES_TDOMAIN ) . '</a>' ); ?>
|
152 |
</li>
|
153 |
<li class="es_faq">
|
154 |
+
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-add-update-existing-subscribers-group/" target="_blank">' . __( 'How to Add/Update Existing Subscribers Group & Status?', ES_TDOMAIN ) . '</a>' ); ?>
|
155 |
</li>
|
156 |
<li class="es_faq">
|
157 |
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-subscribers-are-not-receiving-emails/" target="_blank">' . __( 'Subscribers are not receiving Emails?', ES_TDOMAIN ) . '</a>' ); ?>
|
163 |
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-use-rainmakers-form-in-email-subscribers/" target="_blank">' . __( 'How to use Rainmaker’s form in Email Subscribers?', ES_TDOMAIN ) . '</a>' ); ?>
|
164 |
</li>
|
165 |
<li class="es_faq">
|
166 |
+
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-redirect-subscribers-to-a-new-page-url-after-successful-sign-up/" target="_blank">' . __( 'How to Redirect Subscribers to a new page/url after successful sign up?', ES_TDOMAIN ) . '</a>' ); ?>
|
167 |
+
</li>
|
168 |
+
<li class="es_faq">
|
169 |
+
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-add-captcha-in-subscribe-form-of-email-subscribers/" target="_blank">' . __( 'How to add captcha in Subscribe form of Email Subscribers?', ES_TDOMAIN ) . '</a>' ); ?>
|
170 |
+
</li>
|
171 |
+
<li class="es_faq">
|
172 |
+
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-schedule-cron-emails/" target="_blank">' . __( 'How to Schedule Cron Emails?', ES_TDOMAIN ) . '</a>' ); ?>
|
173 |
</li>
|
174 |
<li class="es_faq">
|
175 |
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-how-to-schedule-cron-emails-in-cpanel/" target="_blank">' . __( 'How to Schedule Cron Emails in cPanel?', ES_TDOMAIN ) . '</a>' ); ?>
|
183 |
<li class="es_faq">
|
184 |
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-css-help/" target="_blank">' . __( 'CSS Help', ES_TDOMAIN ) . '</a>' ); ?>
|
185 |
<li class="es_faq">
|
186 |
+
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="http://www.icegram.com/documentation/es-faq/" target="_blank">' . __( 'Common FAQ\'s', ES_TDOMAIN ) . '</a>' ); ?>
|
187 |
</li>
|
188 |
</ol>
|
189 |
</div>
|
job/es-subscribe.php
CHANGED
@@ -54,7 +54,7 @@ if( (isset($_GET['es'])) && ($_GET['es'] == "subscribe") ) {
|
|
54 |
}
|
55 |
|
56 |
$action = es_cls_dbquery::es_view_subscriber_widget($form);
|
57 |
-
if($action == "sus") {
|
58 |
$subscribers = array();
|
59 |
$subscribers = es_cls_dbquery::es_view_subscriber_one($es_email,$es_group);
|
60 |
if( $es_optintype == "Double Opt In" ) {
|
54 |
}
|
55 |
|
56 |
$action = es_cls_dbquery::es_view_subscriber_widget($form);
|
57 |
+
if( $action == "sus" ) {
|
58 |
$subscribers = array();
|
59 |
$subscribers = es_cls_dbquery::es_view_subscriber_one($es_email,$es_group);
|
60 |
if( $es_optintype == "Double Opt In" ) {
|
languages/email-subscribers-de_DE.mo
CHANGED
Binary file
|
languages/email-subscribers-de_DE.po
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.
|
4 |
-
"Report-Msgid-Bugs-To:
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
-
"Last-Translator:
|
8 |
-
"Language-Team:
|
9 |
"Language: de\n"
|
10 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
-
"X-Generator: Poedit 2.0.
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;_e:1;"
|
18 |
"_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;_ex:1,2c;"
|
@@ -22,20 +22,220 @@ msgstr ""
|
|
22 |
"X-Loco-Target-Locale: de_DE\n"
|
23 |
"X-Poedit-SearchPath-0: ..\n"
|
24 |
|
25 |
-
#: classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
msgid ""
|
27 |
-
"
|
|
|
|
|
28 |
msgstr ""
|
29 |
-
"
|
30 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
|
32 |
-
#:
|
33 |
-
msgid "
|
34 |
-
msgstr "
|
35 |
|
36 |
-
#:
|
37 |
-
msgid "
|
38 |
-
msgstr "
|
39 |
|
40 |
#: base/es-defined.php:32
|
41 |
msgid ""
|
@@ -94,98 +294,86 @@ msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">über Cron</span>"
|
|
94 |
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
95 |
msgstr "<span style=\"color:#993399;\">Sofort</span>"
|
96 |
|
97 |
-
#: classes/es-loadwidget.php:28 classes/es-register.php:
|
98 |
-
#: subscribers/view-subscriber-show.php:
|
99 |
msgid "Name"
|
100 |
msgstr "Name"
|
101 |
|
102 |
-
#: classes/es-loadwidget.php:33 classes/es-register.php:
|
103 |
msgid "Email *"
|
104 |
msgstr "Email *"
|
105 |
|
106 |
-
#: classes/es-loadwidget.php:38 classes/es-register.php:
|
107 |
msgid "Subscribe"
|
108 |
msgstr "Anmelden"
|
109 |
|
110 |
-
#: classes/es-register.php:
|
111 |
msgid "Email Subscribers"
|
112 |
msgstr "Email Subscribers"
|
113 |
|
114 |
-
#: classes/es-register.php:
|
115 |
#: subscribers/view-subscriber-show.php:241
|
116 |
msgid "Subscribers"
|
117 |
msgstr "Abonnenten"
|
118 |
|
119 |
-
#: classes/es-register.php:
|
120 |
msgid "Compose"
|
121 |
msgstr "Erstellen"
|
122 |
|
123 |
-
#: classes/es-register.php:
|
124 |
#: notification/notification-show.php:52
|
125 |
msgid "Post Notifications"
|
126 |
msgstr "Benachrichtigungen"
|
127 |
|
128 |
-
#: classes/es-register.php:
|
|
|
129 |
msgid "Newsletters"
|
130 |
msgstr "Newsletter"
|
131 |
|
132 |
-
#: classes/es-register.php:
|
133 |
-
msgid "Cron Settings"
|
134 |
-
msgstr "Cron Einstellungen"
|
135 |
-
|
136 |
-
#: classes/es-register.php:162 classes/es-register.php:163
|
137 |
-
#: settings/settings-edit.php:197
|
138 |
-
msgid "Email Settings"
|
139 |
-
msgstr "Email Einstellungen"
|
140 |
-
|
141 |
-
#: classes/es-register.php:165 classes/es-register.php:166 roles/roles-add.php:110
|
142 |
-
msgid "User Roles"
|
143 |
-
msgstr "Benutzerrollen"
|
144 |
-
|
145 |
-
#: classes/es-register.php:168 classes/es-register.php:169
|
146 |
#: sentmail/sentmail-show.php:96
|
147 |
msgid "Reports"
|
148 |
msgstr "Berichte"
|
149 |
|
150 |
-
#: classes/es-register.php:
|
151 |
msgid "Help & Info"
|
152 |
msgstr "Hilfe & Info"
|
153 |
|
154 |
-
#: classes/es-register.php:
|
155 |
msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info"
|
156 |
msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Hilfe & Info"
|
157 |
|
158 |
-
#: classes/es-register.php:
|
159 |
msgctxt "view-subscriber-enhanced-select"
|
160 |
msgid "Please enter subscriber email address."
|
161 |
msgstr "Bitte Emailadresse des Abonnenten eingeben."
|
162 |
|
163 |
-
#: classes/es-register.php:
|
164 |
msgctxt "view-subscriber-enhanced-select"
|
165 |
msgid "Please select subscriber email status."
|
166 |
msgstr "Wähle den Emailstatus des Abonnenten."
|
167 |
|
168 |
-
#: classes/es-register.php:
|
169 |
msgctxt "view-subscriber-enhanced-select"
|
170 |
msgid "Please select or create group for this subscriber."
|
171 |
msgstr "Bitte wähle oder erstelle ein Gruppe für diesen Abonnenten."
|
172 |
|
173 |
-
#: classes/es-register.php:
|
174 |
msgctxt "view-subscriber-enhanced-select"
|
175 |
msgid "Do you want to delete this record?"
|
176 |
msgstr "Möchtest Du diesen Eintrag löschen?"
|
177 |
|
178 |
-
#: classes/es-register.php:
|
179 |
msgctxt "view-subscriber-enhanced-select"
|
180 |
msgid "Please select the bulk action."
|
181 |
msgstr "Bitte wähle die Mehrfachaktion."
|
182 |
|
183 |
-
#: classes/es-register.php:
|
184 |
msgctxt "view-subscriber-enhanced-select"
|
185 |
msgid "Are you sure you want to delete selected records?"
|
186 |
msgstr "Bist Du sicher, dass die selektierten Einträge gelöscht werden sollen?"
|
187 |
|
188 |
-
#: classes/es-register.php:
|
189 |
msgctxt "view-subscriber-enhanced-select"
|
190 |
msgid ""
|
191 |
"Do you want to resend confirmation email? \\nAlso please note, this will update "
|
@@ -194,82 +382,67 @@ msgstr ""
|
|
194 |
"Bestätigungsmail erneut versenden? \\nBeachte, dies wird den Abonnentenstatus in "
|
195 |
"\"Unbestätigt\" ändern."
|
196 |
|
197 |
-
#: classes/es-register.php:
|
198 |
msgctxt "view-subscriber-enhanced-select"
|
199 |
msgid "Please select new subscriber group."
|
200 |
msgstr "Bitte wähle die neue Abonnentengruppe."
|
201 |
|
202 |
-
#: classes/es-register.php:
|
203 |
msgctxt "view-subscriber-enhanced-select"
|
204 |
msgid "Please select new status for subscribers"
|
205 |
-
msgstr "Bitte wähle den neuen Status für Abonnenten
|
206 |
|
207 |
-
#: classes/es-register.php:
|
208 |
msgctxt "view-subscriber-enhanced-select"
|
209 |
msgid "Do you want to update subscribers group?"
|
210 |
msgstr "Abonnentengruppe aktualisieren?"
|
211 |
|
212 |
-
#: classes/es-register.php:
|
213 |
msgctxt "view-subscriber-enhanced-select"
|
214 |
msgid "Do you want to update subscribers status?"
|
215 |
msgstr "Abonnentenstatus aktualisieren?"
|
216 |
|
217 |
-
#: classes/es-register.php:
|
218 |
-
msgctxt "view-subscriber-enhanced-select"
|
219 |
-
msgid "Do you want to export the emails?"
|
220 |
-
msgstr "Emails exportieren?"
|
221 |
-
|
222 |
-
#: classes/es-register.php:195
|
223 |
msgctxt "view-subscriber-enhanced-select"
|
224 |
msgid "Please select only csv file. Please check official website for csv structure.."
|
225 |
msgstr "Bitte nur CSV wählen. Details dazu auf der offiziellen Webseite."
|
226 |
|
227 |
-
#: classes/es-register.php:
|
228 |
-
msgctxt "compose-enhanced-select"
|
229 |
-
msgid "Please enter name for configuration."
|
230 |
-
msgstr "Bitte gib einen Namen für diese Konfiguration ein."
|
231 |
-
|
232 |
-
#: classes/es-register.php:204
|
233 |
-
msgctxt "compose-enhanced-select"
|
234 |
-
msgid "Please select template for this configuration."
|
235 |
-
msgstr "Bitte wähle eine Vorlage für diese Konfiguration."
|
236 |
-
|
237 |
-
#: classes/es-register.php:205
|
238 |
msgctxt "compose-enhanced-select"
|
239 |
msgid "Do you want to delete this record?"
|
240 |
msgstr "Eintrag löschen?"
|
241 |
|
242 |
-
#: classes/es-register.php:
|
243 |
msgctxt "notification-enhanced-select"
|
244 |
msgid "Please select subscribers group."
|
245 |
msgstr "Abonnentengruppe wählen."
|
246 |
|
247 |
-
#: classes/es-register.php:
|
248 |
msgctxt "notification-enhanced-select"
|
249 |
msgid "Please select notification mail subject. Use compose menu to create new."
|
250 |
msgstr "Bitte wähle das Subjekt für eine Notifikationsmail."
|
251 |
|
252 |
-
#: classes/es-register.php:
|
253 |
msgctxt "notification-enhanced-select"
|
254 |
msgid "Please select notification status."
|
255 |
msgstr "Wähle den Benachrichtigungsstatus."
|
256 |
|
257 |
-
#: classes/es-register.php:
|
258 |
msgctxt "notification-enhanced-select"
|
259 |
msgid "Do you want to delete this record?"
|
260 |
msgstr "Eintrag löschen?"
|
261 |
|
262 |
-
#: classes/es-register.php:
|
263 |
msgctxt "sendmail-enhanced-select"
|
264 |
msgid "Please select your mail subject."
|
265 |
msgstr "Bitte wähle das Emailsubjekt."
|
266 |
|
267 |
-
#: classes/es-register.php:
|
268 |
msgctxt "sendmail-enhanced-select"
|
269 |
msgid "Please select your mail type."
|
270 |
msgstr "Bitte wähle den Emailtyp."
|
271 |
|
272 |
-
#: classes/es-register.php:
|
273 |
msgctxt "sendmail-enhanced-select"
|
274 |
msgid ""
|
275 |
"Have you double checked your selected group? If so, let's go ahead and send this."
|
@@ -277,52 +450,52 @@ msgstr ""
|
|
277 |
"Hast Du die gewählte Gruppe nochmals geprüft? Ja? Dann lass uns das jetzt "
|
278 |
"verschicken."
|
279 |
|
280 |
-
#: classes/es-register.php:
|
281 |
msgctxt "sentmail-enhanced-select"
|
282 |
msgid "Do you want to delete this record?"
|
283 |
msgstr "Eintrag löschen?"
|
284 |
|
285 |
-
#: classes/es-register.php:
|
286 |
msgctxt "sentmail-enhanced-select"
|
287 |
msgid "Do you want to delete all records except latest 10?"
|
288 |
msgstr "Alle Einträge mit Ausnahme der letzten 10 löschen?"
|
289 |
|
290 |
-
#: classes/es-register.php:
|
291 |
msgctxt "cron-enhanced-select"
|
292 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
293 |
msgstr "Bitte wähle die Anzahl Mails die pro Stunde/Trigger versendet werden sollen."
|
294 |
|
295 |
-
#: classes/es-register.php:
|
296 |
msgctxt "cron-enhanced-select"
|
297 |
msgid "Please enter the mail count, only number."
|
298 |
msgstr "Bitte gib die Anzahl Mails ein, nur Ziffern."
|
299 |
|
300 |
-
#: classes/es-register.php:
|
301 |
msgctxt "widget-enhanced-select"
|
302 |
msgid "Please enter email address"
|
303 |
-
msgstr "Bitte gib die Emailadresse ein
|
304 |
|
305 |
-
#: classes/es-register.php:
|
306 |
msgctxt "widget-enhanced-select"
|
307 |
msgid "Please provide a valid email address"
|
308 |
-
msgstr "Bitte gib eine gültige Emailadresse ein
|
309 |
|
310 |
-
#: classes/es-register.php:
|
311 |
msgctxt "widget-enhanced-select"
|
312 |
msgid "loading..."
|
313 |
msgstr "lädt..."
|
314 |
|
315 |
-
#: classes/es-register.php:
|
316 |
msgctxt "widget-enhanced-select"
|
317 |
msgid "Cannot create XMLHTTP instance"
|
318 |
msgstr "Die XMLHTTP-Instanz kann nicht erstellt werden"
|
319 |
|
320 |
-
#: classes/es-register.php:
|
321 |
msgctxt "widget-enhanced-select"
|
322 |
msgid "Successfully Subscribed."
|
323 |
msgstr "Erfolgreich angemeldet."
|
324 |
|
325 |
-
#: classes/es-register.php:
|
326 |
msgctxt "widget-enhanced-select"
|
327 |
msgid ""
|
328 |
"Your subscription was successful! Within a few minutes, kindly check the mail in "
|
@@ -333,57 +506,57 @@ msgstr ""
|
|
333 |
"Email. Bitte bestätige darin Deine Anmeldung. Solltest Du keine Mail bekommen prüfe "
|
334 |
"bitte den Spamordner."
|
335 |
|
336 |
-
#: classes/es-register.php:
|
337 |
msgctxt "widget-enhanced-select"
|
338 |
msgid "Email Address already exists!"
|
339 |
msgstr "Diese Adresse existiert bereits!"
|
340 |
|
341 |
-
#: classes/es-register.php:
|
342 |
msgctxt "widget-enhanced-select"
|
343 |
msgid "Oops.. Unexpected error occurred."
|
344 |
msgstr "Oops.. Ein unerwarteter Fehler ist aufgetreten."
|
345 |
|
346 |
-
#: classes/es-register.php:
|
347 |
msgctxt "widget-enhanced-select"
|
348 |
msgid "Invalid email address"
|
349 |
msgstr "Ungültige Emailadresse"
|
350 |
|
351 |
-
#: classes/es-register.php:
|
352 |
msgctxt "widget-enhanced-select"
|
353 |
msgid "Please try after some time"
|
354 |
msgstr "Versuche es in Kürze nochmal"
|
355 |
|
356 |
-
#: classes/es-register.php:
|
357 |
msgctxt "widget-enhanced-select"
|
358 |
msgid "There was a problem with the request"
|
359 |
msgstr "Es gab ein Problem mit der Anforderung"
|
360 |
|
361 |
-
#: classes/es-register.php:
|
362 |
msgctxt "widget-page-enhanced-select"
|
363 |
msgid "Please enter email address"
|
364 |
msgstr "Bitte gib die Emailadresse ein"
|
365 |
|
366 |
-
#: classes/es-register.php:
|
367 |
msgctxt "widget-page-enhanced-select"
|
368 |
msgid "Please provide a valid email address"
|
369 |
msgstr "Bitte gib eine gültige Emailadresse ein"
|
370 |
|
371 |
-
#: classes/es-register.php:
|
372 |
msgctxt "widget-page-enhanced-select"
|
373 |
msgid "loading..."
|
374 |
msgstr "lädt..."
|
375 |
|
376 |
-
#: classes/es-register.php:
|
377 |
msgctxt "widget-page-enhanced-select"
|
378 |
msgid "Cannot create XMLHTTP instance"
|
379 |
msgstr "Die XMLHTTP-Instanz kann nicht erstellt werden"
|
380 |
|
381 |
-
#: classes/es-register.php:
|
382 |
msgctxt "widget-page-enhanced-select"
|
383 |
msgid "Successfully Subscribed."
|
384 |
msgstr "Erfolgreich angemeldet."
|
385 |
|
386 |
-
#: classes/es-register.php:
|
387 |
msgctxt "widget-page-enhanced-select"
|
388 |
msgid ""
|
389 |
"Your subscription was successful! Within a few minutes, kindly check the mail in "
|
@@ -394,79 +567,78 @@ msgstr ""
|
|
394 |
"Email. Bitte bestätige darin Deine Anmeldung. Solltest Du keine Mail bekommen prüfe "
|
395 |
"bitte den Spamordner."
|
396 |
|
397 |
-
#: classes/es-register.php:
|
398 |
msgctxt "widget-page-enhanced-select"
|
399 |
msgid "Email Address already exists!"
|
400 |
msgstr "Diese Adresse existiert bereits!"
|
401 |
|
402 |
-
#: classes/es-register.php:
|
403 |
msgctxt "widget-page-enhanced-select"
|
404 |
msgid "Oops.. Unexpected error occurred."
|
405 |
msgstr "Oops.. Ein unerwarteter Fehler ist aufgetreten."
|
406 |
|
407 |
-
#: classes/es-register.php:
|
408 |
msgctxt "widget-page-enhanced-select"
|
409 |
msgid "Invalid email address"
|
410 |
msgstr "Ungültige Emailadresse"
|
411 |
|
412 |
-
#: classes/es-register.php:
|
413 |
msgctxt "widget-page-enhanced-select"
|
414 |
msgid "Please try after some time"
|
415 |
msgstr "Versuche es in Kürze nochmal"
|
416 |
|
417 |
-
#: classes/es-register.php:
|
418 |
msgctxt "widget-page-enhanced-select"
|
419 |
msgid "There was a problem with the request"
|
420 |
msgstr "Es gab ein Problem mit der Anforderung"
|
421 |
|
422 |
-
#: classes/es-register.php:
|
423 |
msgid "Widget Title"
|
424 |
msgstr "Widget Titel"
|
425 |
|
426 |
-
#: classes/es-register.php:
|
427 |
msgid "Short description about subscription form"
|
428 |
msgstr "Kurze Beschreibung des Anmeldeformulars"
|
429 |
|
430 |
-
#: classes/es-register.php:
|
431 |
msgid "Display Name Field"
|
432 |
msgstr "Namensfeld anzeigen"
|
433 |
|
434 |
-
#: classes/es-register.php:
|
435 |
-
#: settings/settings-edit.php:
|
436 |
msgid "YES"
|
437 |
msgstr "Ja"
|
438 |
|
439 |
-
#: classes/es-register.php:
|
440 |
-
#: settings/settings-edit.php:
|
441 |
msgid "NO"
|
442 |
msgstr "Nein"
|
443 |
|
444 |
-
#: classes/es-register.php:
|
445 |
msgid "Subscriber Group"
|
446 |
msgstr "Abonnentengruppe"
|
447 |
|
448 |
#: compose/compose-add.php:31 compose/compose-edit.php:48
|
449 |
msgid "Please enter template heading."
|
450 |
-
msgstr "Bitte gib die Vorlagenüberschrift ein"
|
451 |
|
452 |
#: compose/compose-add.php:43
|
453 |
msgid "Template successfully created. "
|
454 |
-
msgstr "Vorlage erfolgreich erstellt"
|
455 |
|
456 |
#: compose/compose-add.php:74
|
457 |
msgid "Add new Email"
|
458 |
msgstr "Neue Emailadresse hinzufügen"
|
459 |
|
460 |
#: compose/compose-add.php:75 compose/compose-edit.php:86
|
461 |
-
#: compose/compose-preview.php:28 compose/compose-show.php:66
|
462 |
#: notification/notification-add.php:113 notification/notification-edit.php:124
|
463 |
-
#: notification/notification-show.php:54
|
464 |
-
#:
|
465 |
-
#: sentmail/sentmail-
|
466 |
-
#:
|
467 |
-
#: subscribers/view-subscriber-
|
468 |
-
#: subscribers/view-subscriber-
|
469 |
-
#: subscribers/view-subscriber-sync.php:92
|
470 |
msgid "Help"
|
471 |
msgstr "Hilfe"
|
472 |
|
@@ -512,7 +684,7 @@ msgstr "Verfügbare Schlüsselworte"
|
|
512 |
#: compose/compose-add.php:97 compose/compose-edit.php:108
|
513 |
#: sentmail/deliverreport-show.php:73 sentmail/deliverreport-show.php:84
|
514 |
#: sentmail/sentmail-show.php:113 sentmail/sentmail-show.php:126
|
515 |
-
#: subscribers/view-subscriber-show.php:
|
516 |
msgid "Status"
|
517 |
msgstr "Status"
|
518 |
|
@@ -524,23 +696,22 @@ msgstr "Veröffentlicht"
|
|
524 |
msgid "Please select your mail status"
|
525 |
msgstr "Bitte wähle deinen Emailstatus"
|
526 |
|
527 |
-
#: compose/compose-add.php:105 compose/compose-edit.php:117
|
528 |
#: notification/notification-add.php:253 notification/notification-edit.php:290
|
529 |
-
#:
|
530 |
msgid "Save"
|
531 |
msgstr "Sichern"
|
532 |
|
533 |
#: compose/compose-edit.php:20 compose/compose-preview.php:18
|
534 |
#: compose/compose-show.php:33 notification/notification-edit.php:20
|
535 |
#: notification/notification-show.php:21 sentmail/sentmail-preview.php:18
|
536 |
-
#: sentmail/sentmail-show.php:22
|
537 |
-
#: subscribers/view-subscriber-edit.php:22
|
538 |
msgid "Oops, selected details does not exists."
|
539 |
msgstr "Oops, die gewählten Details existieren nicht."
|
540 |
|
541 |
#: compose/compose-edit.php:61
|
542 |
msgid "Template successfully updated. "
|
543 |
-
msgstr "Vorlage erfolgreich aktualisiert"
|
544 |
|
545 |
#: compose/compose-edit.php:84
|
546 |
msgid "Edit Email"
|
@@ -556,7 +727,7 @@ msgid "Preview Mail"
|
|
556 |
msgstr "Emailvorschau"
|
557 |
|
558 |
#: compose/compose-preview.php:40 compose/compose-show.php:101
|
559 |
-
#: notification/notification-show.php:100 subscribers/view-subscriber-show.php:
|
560 |
msgid "Edit"
|
561 |
msgstr "Bearbeiten"
|
562 |
|
@@ -584,7 +755,7 @@ msgid "Actions"
|
|
584 |
msgstr "Aktion"
|
585 |
|
586 |
#: compose/compose-show.php:102 notification/notification-show.php:103
|
587 |
-
#: subscribers/view-subscriber-show.php:
|
588 |
msgid "Delete"
|
589 |
msgstr "Löschen"
|
590 |
|
@@ -595,97 +766,17 @@ msgstr "Vorschau"
|
|
595 |
|
596 |
#: compose/compose-show.php:111 notification/notification-show.php:143
|
597 |
#: sentmail/deliverreport-show.php:127 sentmail/sentmail-show.php:183
|
598 |
-
#: subscribers/view-subscriber-show.php:
|
599 |
msgid "No records available."
|
600 |
-
msgstr "Keine Einträge verfügbar"
|
601 |
-
|
602 |
-
#: cron/cron-add.php:24
|
603 |
-
msgid "Please enter valid mail count."
|
604 |
-
msgstr "Bitte gib eine gültige Mailanzahl ein."
|
605 |
-
|
606 |
-
#: cron/cron-add.php:34
|
607 |
-
msgid "Successfully updated."
|
608 |
-
msgstr "Erfolgreich aktualisiert."
|
609 |
-
|
610 |
-
#: cron/cron-add.php:87
|
611 |
-
msgid "Cron job URL"
|
612 |
-
msgstr "Cron Job URL"
|
613 |
-
|
614 |
-
#: cron/cron-add.php:88
|
615 |
-
msgid ""
|
616 |
-
"This is your Cron Job URL. It is a readonly field and you are advised not to modify "
|
617 |
-
"it."
|
618 |
-
msgstr "Das ist Deine Cron Job URL. Es wird empfohlen diese nicht zu ändern."
|
619 |
-
|
620 |
-
#: cron/cron-add.php:97
|
621 |
-
msgid "Email Count"
|
622 |
-
msgstr "Anzahl Emails"
|
623 |
-
|
624 |
-
#: cron/cron-add.php:98
|
625 |
-
msgid "Number of emails that you want to trigger per hour."
|
626 |
-
msgstr "Anzahl der Emails die pro Stunde verschickt werden sollen."
|
627 |
-
|
628 |
-
#: cron/cron-add.php:103
|
629 |
-
msgid "(Your web host has limits. We suggest 50 emails per hour to be safe)"
|
630 |
-
msgstr ""
|
631 |
-
"(Dein Webhoster hat Beschränkungen. Wir empfehlen 50 Emails pro Stunde um auf der "
|
632 |
-
"sicheren Seite zu sein)"
|
633 |
-
|
634 |
-
#: cron/cron-add.php:108
|
635 |
-
msgid "Admin Report"
|
636 |
-
msgstr "Admin Bericht"
|
637 |
-
|
638 |
-
#: cron/cron-add.php:109
|
639 |
-
msgid ""
|
640 |
-
"Email to admin whenever cron URL is triggered from your server. (Keywords: "
|
641 |
-
"###DATE###, ###SUBJECT###, ###COUNT###)"
|
642 |
-
msgstr ""
|
643 |
-
"Email an den Admin wenn eine Cron URL vom Server aufgerufen wird. (Schlüsselworte: "
|
644 |
-
"###DATE###, ###SUBJECT###, ###COUNT###)"
|
645 |
-
|
646 |
-
#: cron/cron-add.php:126
|
647 |
-
msgid "What is Cron (auto emails) and how to setup Cron Job?"
|
648 |
-
msgstr "Was ist Cron (Auto-Mailversand) und wie konfiguriere ich einen Cron Job?"
|
649 |
-
|
650 |
-
#: cron/cron-add.php:127
|
651 |
-
msgid ""
|
652 |
-
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
|
653 |
-
"cron-emails/\">What is Cron?</a>"
|
654 |
-
msgstr ""
|
655 |
-
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
|
656 |
-
"cron-emails/\">Was ist Cron?</a>"
|
657 |
-
|
658 |
-
#: cron/cron-add.php:128
|
659 |
-
msgid ""
|
660 |
-
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
|
661 |
-
"cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
|
662 |
-
msgstr ""
|
663 |
-
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
|
664 |
-
"cron-emails-in-parallels-plesk/\">Cron Job in Plesk konfigurieren</a>"
|
665 |
-
|
666 |
-
#: cron/cron-add.php:129
|
667 |
-
msgid ""
|
668 |
-
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
|
669 |
-
"cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
|
670 |
-
msgstr ""
|
671 |
-
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
|
672 |
-
"cron-emails-in-cpanel/\">Cron Job in cPanel konfigurieren</a>"
|
673 |
-
|
674 |
-
#: cron/cron-add.php:130
|
675 |
-
msgid ""
|
676 |
-
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-if-"
|
677 |
-
"hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?</a>"
|
678 |
-
msgstr ""
|
679 |
-
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-if-"
|
680 |
-
"hosting-doesnt-support-cron-jobs/\">Dein Hoster unterstützt keine Cron Jobs?</a>"
|
681 |
|
682 |
-
#: export/export-email-address.php:
|
683 |
msgid "Unexpected url submit has been detected"
|
684 |
msgstr "Eine unerwartete URL wurde übertragen"
|
685 |
|
686 |
#: help/help.php:47
|
687 |
msgid "Welcome to Email Subscribers!"
|
688 |
-
msgstr "Willkommen bei Email Subscribers"
|
689 |
|
690 |
#: help/help.php:48
|
691 |
msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
|
@@ -696,15 +787,6 @@ msgstr ""
|
|
696 |
msgid "For more help and tips..."
|
697 |
msgstr "Für mehr Hilfe & Tips..."
|
698 |
|
699 |
-
#: help/help.php:67
|
700 |
-
#, c-format
|
701 |
-
msgid "Like Email Subscribers? Please consider %s."
|
702 |
-
msgstr "Du magst Email Subscribers? Denke mal über %s nach."
|
703 |
-
|
704 |
-
#: help/help.php:67
|
705 |
-
msgid "contributing to us"
|
706 |
-
msgstr "eine Spende"
|
707 |
-
|
708 |
#: help/help.php:99
|
709 |
msgid "Frequently Asked Questions"
|
710 |
msgstr "Frequently Asked Questions"
|
@@ -713,7 +795,7 @@ msgstr "Frequently Asked Questions"
|
|
713 |
#: help/help.php:136 help/help.php:139 help/help.php:142 help/help.php:145
|
714 |
#: help/help.php:148 help/help.php:151 help/help.php:154 help/help.php:157
|
715 |
#: help/help.php:160 help/help.php:163 help/help.php:166 help/help.php:169
|
716 |
-
#: help/help.php:172 help/help.php:175 help/help.php:178
|
717 |
#, c-format
|
718 |
msgid "%s"
|
719 |
msgstr "%s"
|
@@ -740,16 +822,12 @@ msgstr "Wie importiere oder exportiere ich Emailadressen?"
|
|
740 |
|
741 |
#: help/help.php:133
|
742 |
msgid "How to change/update/translate any texts from Email Subscribers?"
|
743 |
-
msgstr "Wie ändere/aktualisiere/übersetze ich Texte von Email Subscribers"
|
744 |
|
745 |
#: help/help.php:136
|
746 |
msgid "How to add Unsubscribe link in emails?"
|
747 |
msgstr "Wie füge ich meinen Emails einen Abmeldelink hinzu?"
|
748 |
|
749 |
-
#: help/help.php:139
|
750 |
-
msgid "What are Static Templates and Dynamic Templates?"
|
751 |
-
msgstr "Was sind statische / dynamische Vorlagen?"
|
752 |
-
|
753 |
#: help/help.php:142
|
754 |
msgid "How to Compose and Send Newsletter Emails?"
|
755 |
msgstr "Wie erstelle und versende ich Newsletter-Emails?"
|
@@ -802,12 +880,12 @@ msgstr "Wie plane ich Cron Emails in Plesk?"
|
|
802 |
msgid "What to do if Hosting doesn’t support Cron Jobs?"
|
803 |
msgstr "Was ist zu tun wenn mein Hoster keine Cron Jobs unterstützt?"
|
804 |
|
805 |
-
#: help/help.php:
|
806 |
msgid "Commonly Asked Questions"
|
807 |
msgstr "Übliche Fragen"
|
808 |
|
809 |
-
#: job/es-optin.php:58 job/es-optin.php:68 job/es-unsubscribe.php:
|
810 |
-
#: job/es-unsubscribe.php:
|
811 |
msgid "Oops.. We are getting some technical error. Please try again or contact admin."
|
812 |
msgstr ""
|
813 |
"Oops.. Es gibt ein technisches Problem. Versuche es nochmal oder kontaktiere den "
|
@@ -819,11 +897,11 @@ msgstr "Diese Emailadresse wurde schon bestätigt."
|
|
819 |
|
820 |
#: notification/notification-add.php:33
|
821 |
msgid "Please select subscribers group."
|
822 |
-
msgstr "Bitte wähle die Abonnentengruppe"
|
823 |
|
824 |
#: notification/notification-add.php:39
|
825 |
msgid "Please select notification status."
|
826 |
-
msgstr "Bitte wähle den Benachrichtigungsstatus"
|
827 |
|
828 |
#: notification/notification-add.php:45 notification/notification-edit.php:61
|
829 |
msgid "Please select notification mail subject. Use compose menu to create new."
|
@@ -837,7 +915,7 @@ msgstr "Bitte wähle die Kategorie der Beiträge."
|
|
837 |
|
838 |
#: notification/notification-add.php:71
|
839 |
msgid "Notification successfully created. "
|
840 |
-
msgstr "Benachrichtigung erfolgreich erstellt."
|
841 |
|
842 |
#: notification/notification-add.php:112
|
843 |
msgid "Add Notification"
|
@@ -889,7 +967,7 @@ msgstr "Keine individuellen Beitragstypen vorhanden"
|
|
889 |
|
890 |
#: notification/notification-add.php:239 notification/notification-edit.php:275
|
891 |
msgid "Select Notification Status when a new post is published"
|
892 |
-
msgstr "Wähle den Benachrichtigungsstatus wenn ein neuer Beitrag veröffentlicht wird
|
893 |
|
894 |
#: notification/notification-add.php:243 notification/notification-edit.php:279
|
895 |
#: notification/notification-show.php:130 sendmail/sendmail.php:138
|
@@ -915,13 +993,13 @@ msgstr "Bitte wähle den Benachrichtigungsstatus"
|
|
915 |
|
916 |
#: notification/notification-edit.php:89
|
917 |
msgid "Notification successfully updated. "
|
918 |
-
msgstr "Benachrichtigung erfolgreich aktualisiert."
|
919 |
|
920 |
#: notification/notification-edit.php:122
|
921 |
msgid "Edit Notification"
|
922 |
msgstr "Benachrichtigung bearbeiten"
|
923 |
|
924 |
-
#: notification/notification-edit.php:131 subscribers/view-subscriber-show.php:
|
925 |
msgid "Update Subscribers Group"
|
926 |
msgstr "Aktualisiere die Abonnentengruppe"
|
927 |
|
@@ -944,62 +1022,6 @@ msgstr "Beitragskategorien / Individuelle Beitragstypen"
|
|
944 |
msgid "Notification Status"
|
945 |
msgstr "Benachrichtigungsstatus"
|
946 |
|
947 |
-
#: roles/roles-add.php:53
|
948 |
-
msgid "Role Updated. "
|
949 |
-
msgstr "Rolle aktualisiert."
|
950 |
-
|
951 |
-
#: roles/roles-add.php:114
|
952 |
-
msgid "Select user roles who can access following menus. Only Admin can change this."
|
953 |
-
msgstr ""
|
954 |
-
"Wähle die Benutzerrollen die auf die folgenden Menüs zugreifen dürfen. Nur ein Admin "
|
955 |
-
"kann das ändern."
|
956 |
-
|
957 |
-
#: roles/roles-add.php:121
|
958 |
-
msgid "Subscribers Menu"
|
959 |
-
msgstr "Menü Abonnenten"
|
960 |
-
|
961 |
-
#: roles/roles-add.php:125 roles/roles-add.php:137 roles/roles-add.php:149
|
962 |
-
#: roles/roles-add.php:161 roles/roles-add.php:173 roles/roles-add.php:185
|
963 |
-
#: roles/roles-add.php:197
|
964 |
-
msgid "Administrator Only"
|
965 |
-
msgstr "Nur für Administratoren"
|
966 |
-
|
967 |
-
#: roles/roles-add.php:126 roles/roles-add.php:138 roles/roles-add.php:150
|
968 |
-
#: roles/roles-add.php:162 roles/roles-add.php:174 roles/roles-add.php:186
|
969 |
-
#: roles/roles-add.php:198
|
970 |
-
msgid "Administrator/Editor"
|
971 |
-
msgstr "Für Administratoren / Editoren"
|
972 |
-
|
973 |
-
#: roles/roles-add.php:127 roles/roles-add.php:139 roles/roles-add.php:151
|
974 |
-
#: roles/roles-add.php:163 roles/roles-add.php:175 roles/roles-add.php:187
|
975 |
-
#: roles/roles-add.php:199
|
976 |
-
msgid "Administrator/Editor/Author/Contributor"
|
977 |
-
msgstr "Für Administratoren / Editoren / Autoren / Mitarbeiter"
|
978 |
-
|
979 |
-
#: roles/roles-add.php:133
|
980 |
-
msgid "Compose Menu"
|
981 |
-
msgstr "Menü Erstellen"
|
982 |
-
|
983 |
-
#: roles/roles-add.php:145
|
984 |
-
msgid "Post Notifications Menu"
|
985 |
-
msgstr "Menü Benachrichtigungen"
|
986 |
-
|
987 |
-
#: roles/roles-add.php:157
|
988 |
-
msgid "Newsletters + Cron Settings Menu"
|
989 |
-
msgstr "Menü Newsletter + Cron Einstellungen"
|
990 |
-
|
991 |
-
#: roles/roles-add.php:169
|
992 |
-
msgid "Email Settings Menu"
|
993 |
-
msgstr "Menü Email Einstellungen"
|
994 |
-
|
995 |
-
#: roles/roles-add.php:181
|
996 |
-
msgid "Reports Menu"
|
997 |
-
msgstr "Menü Berichte"
|
998 |
-
|
999 |
-
#: roles/roles-add.php:193
|
1000 |
-
msgid "Help & Info Menu"
|
1001 |
-
msgstr "Menü Hilfe & Info"
|
1002 |
-
|
1003 |
#: sendmail/sendmail.php:40
|
1004 |
msgid "Please select your mail subject."
|
1005 |
msgstr "Bitte wähle das Subjekt der Mail."
|
@@ -1046,7 +1068,7 @@ msgstr "Wähle die Abonnentengruppe aus die diese Mail erhalten soll"
|
|
1046 |
|
1047 |
#: sendmail/sendmail.php:178
|
1048 |
msgid "Recipients : 0 "
|
1049 |
-
msgstr "Empfänger : 0"
|
1050 |
|
1051 |
#: sendmail/sendmail.php:180
|
1052 |
#, c-format
|
@@ -1088,8 +1110,7 @@ msgid "Delivery Report"
|
|
1088 |
msgstr "Sendebericht"
|
1089 |
|
1090 |
#: sentmail/deliverreport-show.php:71 sentmail/deliverreport-show.php:82
|
1091 |
-
#: subscribers/view-subscriber-export.php:
|
1092 |
-
#: subscribers/view-subscriber-show.php:352 subscribers/view-subscriber-show.php:366
|
1093 |
msgid "Sno"
|
1094 |
msgstr "Alle"
|
1095 |
|
@@ -1147,8 +1168,8 @@ msgid "Total"
|
|
1147 |
msgstr "Gesamt"
|
1148 |
|
1149 |
#: sentmail/sentmail-show.php:118 sentmail/sentmail-show.php:131
|
1150 |
-
#: subscribers/view-subscriber-export.php:
|
1151 |
-
#: subscribers/view-subscriber-show.php:
|
1152 |
msgid "Action"
|
1153 |
msgstr "Aktion"
|
1154 |
|
@@ -1176,27 +1197,19 @@ msgstr "Plugintabellen synchronisieren"
|
|
1176 |
msgid "Click to sync tables"
|
1177 |
msgstr "Klicken um die Plugintabellen zu synchronisieren"
|
1178 |
|
1179 |
-
#: settings/settings-edit.php:
|
1180 |
-
msgid "
|
1181 |
-
msgstr "
|
1182 |
-
|
1183 |
-
#: settings/settings-edit.php:122
|
1184 |
-
msgid "Please enter sender of notifications from email."
|
1185 |
-
msgstr "Bitte wähle den Absender der Benachrichtigung über die Emailadresse."
|
1186 |
-
|
1187 |
-
#: settings/settings-edit.php:155
|
1188 |
-
msgid "Settings Saved."
|
1189 |
-
msgstr "Einstellungen gesichert."
|
1190 |
|
1191 |
-
#: settings/settings-edit.php:
|
1192 |
-
msgid "
|
1193 |
-
msgstr "
|
1194 |
|
1195 |
-
#: settings/settings-edit.php:
|
1196 |
msgid "Sender of Notifications"
|
1197 |
msgstr "Absender von Benachrichtigungen"
|
1198 |
|
1199 |
-
#: settings/settings-edit.php:
|
1200 |
msgid ""
|
1201 |
"Choose a FROM name and FROM email address for all the emails to be sent from this "
|
1202 |
"plugin."
|
@@ -1204,11 +1217,11 @@ msgstr ""
|
|
1204 |
"Gib einen Absendernamen und eine Absenderemail ein für alle Emails die von diesem "
|
1205 |
"Plugin verschickt werden."
|
1206 |
|
1207 |
-
#: settings/settings-edit.php:
|
1208 |
msgid "Mail Type"
|
1209 |
msgstr "Emailtyp"
|
1210 |
|
1211 |
-
#: settings/settings-edit.php:
|
1212 |
msgid ""
|
1213 |
"Option 1 & 2 is to send mails with default Wordpress method wp_mail(). Option 3 & 4 "
|
1214 |
"is to send mails with PHP method mail()."
|
@@ -1216,27 +1229,27 @@ msgstr ""
|
|
1216 |
"Optionen 1 & 2 verschicken Mails mit der Standart Wordpressmethode wp_mail(). <br /"
|
1217 |
">Optionen 3 & 4 verschicken Mails mit der PHP Methode mail()."
|
1218 |
|
1219 |
-
#: settings/settings-edit.php:
|
1220 |
msgid "1. WP HTML MAIL"
|
1221 |
msgstr "1. WP HTML MAIL"
|
1222 |
|
1223 |
-
#: settings/settings-edit.php:
|
1224 |
msgid "2. WP PLAINTEXT MAIL"
|
1225 |
msgstr "2. WP PLAINTEXT MAIL"
|
1226 |
|
1227 |
-
#: settings/settings-edit.php:
|
1228 |
msgid "3. PHP HTML MAIL"
|
1229 |
msgstr "3. PHP HTML MAIL"
|
1230 |
|
1231 |
-
#: settings/settings-edit.php:
|
1232 |
msgid "4. PHP PLAINTEXT MAIL"
|
1233 |
msgstr "4. PHP PLAINTEXT MAIL"
|
1234 |
|
1235 |
-
#: settings/settings-edit.php:
|
1236 |
msgid "Opt-In Option"
|
1237 |
msgstr "Opt In Option"
|
1238 |
|
1239 |
-
#: settings/settings-edit.php:
|
1240 |
msgid ""
|
1241 |
"Double Opt In means subscribers need to confirm their email address by an activation "
|
1242 |
"link sent them on a activation email message.<br />Single Opt In means subscribers "
|
@@ -1246,44 +1259,115 @@ msgstr ""
|
|
1246 |
"Aktivierungslink in einer Aktivierungsmail bestätigen müssen.<br />Einfaches Opt In "
|
1247 |
"bedeutet, dass Abonnenten ihre Emailadresse nicht bestätigen müssen."
|
1248 |
|
1249 |
-
#: settings/settings-edit.php:
|
1250 |
msgid "Double Opt In"
|
1251 |
msgstr "Doppeltes Opt In"
|
1252 |
|
1253 |
-
#: settings/settings-edit.php:
|
1254 |
#: subscribers/view-subscriber-edit.php:150 subscribers/view-subscriber-import.php:178
|
1255 |
-
#: subscribers/view-subscriber-show.php:
|
1256 |
msgid "Single Opt In"
|
1257 |
msgstr "Einfaches Opt In"
|
1258 |
|
1259 |
-
#: settings/settings-edit.php:
|
1260 |
msgid "Image Size"
|
1261 |
msgstr "Bildgröße"
|
1262 |
|
1263 |
-
#: settings/settings-edit.php:
|
1264 |
msgid ""
|
1265 |
"Select image size for ###POSTIMAGE### to be shown in the Post Notification Emails."
|
1266 |
msgstr ""
|
1267 |
"Wähle die Bildgröße für ###POSTIMAGE### wie es in Benachrichtigungsmails angezeigt "
|
1268 |
"wird."
|
1269 |
|
1270 |
-
#: settings/settings-edit.php:
|
1271 |
msgid "Full Size"
|
1272 |
msgstr "Volle Größe"
|
1273 |
|
1274 |
-
#: settings/settings-edit.php:
|
1275 |
msgid "Medium Size"
|
1276 |
msgstr "Mittlere Größe"
|
1277 |
|
1278 |
-
#: settings/settings-edit.php:
|
1279 |
msgid "Thumbnail"
|
1280 |
msgstr "Vorschau"
|
1281 |
|
1282 |
-
#: settings/settings-edit.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1283 |
msgid "Double Opt In Email Subject (Confirmation Email)"
|
1284 |
msgstr "Subjekt der Bestätigungsmail (Doppeltes Opt In)"
|
1285 |
|
1286 |
-
#: settings/settings-edit.php:
|
1287 |
msgid ""
|
1288 |
"Enter the subject for the confirmation email to be sent for Double Opt In whenever a "
|
1289 |
"user signs up."
|
@@ -1291,11 +1375,11 @@ msgstr ""
|
|
1291 |
"Gib hier das Subjekt ein das in der Bestätigungsmail bei Doppeltem Opt In verschickt "
|
1292 |
"wird wenn sich ein neuer Benutzer anmeldet."
|
1293 |
|
1294 |
-
#: settings/settings-edit.php:
|
1295 |
msgid "Double Opt In Email Content (Confirmation Email)"
|
1296 |
msgstr "Inhalt der Bestätigungsmail (Doppeltes Opt In)"
|
1297 |
|
1298 |
-
#: settings/settings-edit.php:
|
1299 |
msgid ""
|
1300 |
"Enter the content for the confirmation email to be sent for Double Opt In whenever a "
|
1301 |
"user signs up. (Keyword: ###NAME###, ###LINK###)"
|
@@ -1303,15 +1387,15 @@ msgstr ""
|
|
1303 |
"Gib hier den Text ein der in der Bestätigungsmail bei Doppeltem Opt In verschickt "
|
1304 |
"wird wenn sich ein neuer Benutzer anmeldet. (Schlüsselworte: ###NAME###, ###LINK###)"
|
1305 |
|
1306 |
-
#: settings/settings-edit.php:
|
1307 |
msgid "Double Opt In Confirmation Link"
|
1308 |
msgstr "Bestätigungslink für Doppeltes Opt In"
|
1309 |
|
1310 |
-
#: settings/settings-edit.php:
|
1311 |
msgid "It is a readonly field and you are advised not to modify it."
|
1312 |
msgstr "Das ist ein\"Nur-Lesen\"-Feld und es wird empfohlen dieses nicht zu verändern."
|
1313 |
|
1314 |
-
#: settings/settings-edit.php:
|
1315 |
msgid ""
|
1316 |
"Text to display after an email address is successfully subscribed from Double Opt In "
|
1317 |
"(confirmation) Email"
|
@@ -1319,7 +1403,7 @@ msgstr ""
|
|
1319 |
"Text der nach erfolgreicher Registrierung aus der Bestätigungsmail bei Doppelt Opt "
|
1320 |
"In angezeigt wird"
|
1321 |
|
1322 |
-
#: settings/settings-edit.php:
|
1323 |
msgid ""
|
1324 |
"This text will be displayed once user clicks on email confirmation link from the "
|
1325 |
"Double Opt In (confirmation) Email."
|
@@ -1327,11 +1411,11 @@ msgstr ""
|
|
1327 |
"Dieser Text wird angezeigt nachdem der Benutzer auf den Bestätigungslink in der "
|
1328 |
"Double Opt In Bestätigungsmail klickt."
|
1329 |
|
1330 |
-
#: settings/settings-edit.php:
|
1331 |
msgid "Subscriber Welcome Email"
|
1332 |
msgstr "Wilkommensemail für Abonnenten"
|
1333 |
|
1334 |
-
#: settings/settings-edit.php:
|
1335 |
msgid ""
|
1336 |
"To send welcome email to subscriber after successful signup. This option must be set "
|
1337 |
"to YES."
|
@@ -1339,11 +1423,11 @@ msgstr ""
|
|
1339 |
"Sende eine Willkommensmail an den Abonnenten nachdem er efolgreich registriert ist. "
|
1340 |
"Diese Option muss auf JA stehen."
|
1341 |
|
1342 |
-
#: settings/settings-edit.php:
|
1343 |
msgid "Subscriber Welcome Email Subject"
|
1344 |
msgstr "Subjekt der Wilkommensemail für Abonnenten"
|
1345 |
|
1346 |
-
#: settings/settings-edit.php:
|
1347 |
msgid ""
|
1348 |
"Enter the subject for the subscriber welcome email. This will be sent whenever a "
|
1349 |
"user's email is either confirmed (if Double Opt In) / subscribed (if Single Opt In) "
|
@@ -1353,25 +1437,15 @@ msgstr ""
|
|
1353 |
"Emailadresse entweder erfolgreich bestätigt (Double Opt In) oder angemeldet (Single "
|
1354 |
"Opt In) ist."
|
1355 |
|
1356 |
-
#: settings/settings-edit.php:
|
1357 |
msgid "Subscriber Welcome Email Content"
|
1358 |
msgstr "Inhalt der Wilkommensemail für Abonnenten"
|
1359 |
|
1360 |
-
#: settings/settings-edit.php:
|
1361 |
-
msgid ""
|
1362 |
-
"Enter the content for the subscriber welcome email whenever a user's email is either "
|
1363 |
-
"confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully. (Keyword: "
|
1364 |
-
"###NAME###, ###LINK###)"
|
1365 |
-
msgstr ""
|
1366 |
-
"Gib den Inhalt der Willkommensmail an den Abonnenten ein der verwendet wird wenn "
|
1367 |
-
"eine Emailadresse entweder erfolgreich bestätigt (Double Opt In) oder angemeldet "
|
1368 |
-
"(Single Opt In) ist. (Schlüsselworte: ###NAME###, ###LINK###)"
|
1369 |
-
|
1370 |
-
#: settings/settings-edit.php:313
|
1371 |
msgid "Unsubscribe Link"
|
1372 |
msgstr "Link zum Abmelden"
|
1373 |
|
1374 |
-
#: settings/settings-edit.php:
|
1375 |
msgid ""
|
1376 |
"The unsubscribe link gets added automatically to all emails that are sent from this "
|
1377 |
"plugin. It is a readonly field and you are advised not to modify it."
|
@@ -1380,31 +1454,31 @@ msgstr ""
|
|
1380 |
"verschickt werden. Es ist ein \"Nur-Lesen\"-Feld und es wird empohlen das nicht zu "
|
1381 |
"ändern."
|
1382 |
|
1383 |
-
#: settings/settings-edit.php:
|
1384 |
msgid "Unsubscribe Text in Email"
|
1385 |
msgstr "Inhalt der Abmeldeemail"
|
1386 |
|
1387 |
-
#: settings/settings-edit.php:
|
1388 |
msgid ""
|
1389 |
"Enter the text for the unsubscribe link. This text is added with unsubscribe link in "
|
1390 |
"the emails. (Keyword: ###LINK###)"
|
1391 |
msgstr ""
|
1392 |
"Gib den Text für den Abmeldungslink ein. Dieser Text wird mit dem Abmeldelink an die "
|
1393 |
-
"Emails angehängt."
|
1394 |
|
1395 |
-
#: settings/settings-edit.php:
|
1396 |
msgid "Text to display after an email address is unsubscribed"
|
1397 |
msgstr "Dieser Text wird nach der Abmeldung angezeigt"
|
1398 |
|
1399 |
-
#: settings/settings-edit.php:
|
1400 |
msgid "This text will be displayed once user clicks on unsubscribe link."
|
1401 |
msgstr "Dieser Text wird angezeigt nachdem der Benutzer auf den Abmeldelink klickt."
|
1402 |
|
1403 |
-
#: settings/settings-edit.php:
|
1404 |
msgid "Error in the Confirmation Link"
|
1405 |
msgstr "Fehler im Bestätigungslink"
|
1406 |
|
1407 |
-
#: settings/settings-edit.php:
|
1408 |
msgid ""
|
1409 |
"Default message to display if there is any issue while clicking on confirmation link "
|
1410 |
"from the Double Opt In (confirmation) Emails."
|
@@ -1412,91 +1486,148 @@ msgstr ""
|
|
1412 |
"Standartnachricht wenn ein Problem mit dem Bestätigungslink der Doppelten Opt In "
|
1413 |
"Bestätigungsmail besteht."
|
1414 |
|
1415 |
-
#: settings/settings-edit.php:
|
1416 |
msgid "Error in the Unsubscribe Link"
|
1417 |
msgstr "Fehler im Abmeldelink"
|
1418 |
|
1419 |
-
#: settings/settings-edit.php:
|
1420 |
msgid ""
|
1421 |
"Default message to display if there is any issue while clicking on unsubscribe link "
|
1422 |
"from the Emails."
|
1423 |
msgstr ""
|
1424 |
"Standartnachricht wenn ein Problem mit dem Abmeldungslink in den Emails besteht."
|
1425 |
|
1426 |
-
#: settings/settings-edit.php:
|
1427 |
-
msgid "Admin
|
1428 |
-
msgstr "Admin Emailadresse"
|
1429 |
-
|
1430 |
-
#: settings/settings-edit.php:351
|
1431 |
-
msgid ""
|
1432 |
-
"Enter the admin email addresses that should receive notifications (separated by "
|
1433 |
-
"comma)."
|
1434 |
msgstr ""
|
1435 |
-
"
|
1436 |
-
"
|
1437 |
|
1438 |
-
#: settings/settings-edit.php:
|
1439 |
-
msgid "
|
1440 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1441 |
|
1442 |
-
#: settings/settings-edit.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1443 |
msgid ""
|
1444 |
-
"
|
1445 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1446 |
msgstr ""
|
1447 |
-
"
|
1448 |
-
"
|
1449 |
|
1450 |
-
#: settings/settings-edit.php:
|
1451 |
-
msgid "Admin
|
1452 |
-
msgstr "
|
1453 |
|
1454 |
-
#: settings/settings-edit.php:
|
1455 |
msgid ""
|
1456 |
-
"
|
1457 |
-
"
|
1458 |
msgstr ""
|
1459 |
-
"
|
1460 |
-
"
|
1461 |
|
1462 |
#: settings/settings-edit.php:377
|
1463 |
-
msgid "
|
1464 |
-
msgstr "
|
1465 |
|
1466 |
#: settings/settings-edit.php:378
|
1467 |
msgid ""
|
1468 |
-
"
|
1469 |
-
"is
|
1470 |
msgstr ""
|
1471 |
-
"
|
1472 |
-
"
|
1473 |
-
"###EMAIL###)"
|
1474 |
-
|
1475 |
-
#: settings/settings-edit.php:385
|
1476 |
-
msgid "Sent Report Subject"
|
1477 |
-
msgstr "Subjekt des Sendeberichts"
|
1478 |
|
1479 |
-
#: settings/settings-edit.php:
|
1480 |
-
msgid "
|
|
|
|
|
1481 |
msgstr ""
|
1482 |
-
"
|
1483 |
-
"
|
1484 |
|
1485 |
-
#: settings/settings-edit.php:
|
1486 |
-
msgid "
|
1487 |
-
|
|
|
|
|
|
|
|
|
1488 |
|
1489 |
-
#: settings/settings-edit.php:
|
1490 |
msgid ""
|
1491 |
-
"
|
1492 |
-
"
|
1493 |
msgstr ""
|
1494 |
-
"
|
1495 |
-
"
|
1496 |
|
1497 |
-
#: settings/settings-edit.php:
|
1498 |
-
msgid "
|
1499 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1500 |
|
1501 |
#: subscribers/view-subscriber-add.php:36 subscribers/view-subscriber-edit.php:54
|
1502 |
msgid "Please enter subscriber email address."
|
@@ -1527,13 +1658,13 @@ msgid "Invalid Email."
|
|
1527 |
msgstr "Ungültige Emailadresse."
|
1528 |
|
1529 |
#: subscribers/view-subscriber-add.php:110 subscribers/view-subscriber-edit.php:109
|
1530 |
-
#: subscribers/view-subscriber-export.php:
|
1531 |
#: subscribers/view-subscriber-show.php:242 subscribers/view-subscriber-sync.php:89
|
1532 |
msgid "Add New Subscriber"
|
1533 |
msgstr "Neu hinzufügen"
|
1534 |
|
1535 |
#: subscribers/view-subscriber-add.php:111 subscribers/view-subscriber-edit.php:110
|
1536 |
-
#: subscribers/view-subscriber-export.php:
|
1537 |
#: subscribers/view-subscriber-show.php:243 subscribers/view-subscriber-sync.php:90
|
1538 |
msgid "Import"
|
1539 |
msgstr "Import"
|
@@ -1545,7 +1676,7 @@ msgid "Export"
|
|
1545 |
msgstr "Export"
|
1546 |
|
1547 |
#: subscribers/view-subscriber-add.php:113 subscribers/view-subscriber-edit.php:112
|
1548 |
-
#: subscribers/view-subscriber-export.php:
|
1549 |
#: subscribers/view-subscriber-show.php:245 subscribers/view-subscriber-sync.php:143
|
1550 |
msgid "Sync"
|
1551 |
msgstr "Synchronisieren"
|
@@ -1563,20 +1694,20 @@ msgid "Select Subscriber's Status"
|
|
1563 |
msgstr "Wähle den Status des Abonnenten"
|
1564 |
|
1565 |
#: subscribers/view-subscriber-add.php:148 subscribers/view-subscriber-edit.php:147
|
1566 |
-
#: subscribers/view-subscriber-import.php:175 subscribers/view-subscriber-show.php:
|
1567 |
-
#: subscribers/view-subscriber-show.php:
|
1568 |
msgid "Confirmed"
|
1569 |
msgstr "Bestätigt"
|
1570 |
|
1571 |
#: subscribers/view-subscriber-add.php:149 subscribers/view-subscriber-edit.php:148
|
1572 |
-
#: subscribers/view-subscriber-import.php:176 subscribers/view-subscriber-show.php:
|
1573 |
-
#: subscribers/view-subscriber-show.php:
|
1574 |
msgid "Unconfirmed"
|
1575 |
msgstr "Unbestätigt"
|
1576 |
|
1577 |
#: subscribers/view-subscriber-add.php:150 subscribers/view-subscriber-edit.php:149
|
1578 |
-
#: subscribers/view-subscriber-import.php:177 subscribers/view-subscriber-show.php:
|
1579 |
-
#: subscribers/view-subscriber-show.php:
|
1580 |
msgid "Unsubscribed"
|
1581 |
msgstr "Abgemeldet"
|
1582 |
|
@@ -1624,44 +1755,41 @@ msgstr "Status des Abonnenten aktualisieren"
|
|
1624 |
msgid "Update Subscriber's Group"
|
1625 |
msgstr "Gruppe des Abonnenten aktualisieren"
|
1626 |
|
1627 |
-
#: subscribers/view-subscriber-export.php:
|
1628 |
msgid "Export Email Addresses"
|
1629 |
msgstr "Emailadressen exportieren"
|
1630 |
|
1631 |
-
#: subscribers/view-subscriber-export.php:
|
1632 |
msgid "Type of List to Export"
|
1633 |
msgstr "Listentyp für den Export"
|
1634 |
|
1635 |
-
#: subscribers/view-subscriber-export.php:
|
1636 |
msgid "Total Emails Count"
|
1637 |
msgstr "Gesamte Anzahl Emails"
|
1638 |
|
1639 |
-
#: subscribers/view-subscriber-export.php:
|
1640 |
msgid "1"
|
1641 |
msgstr "1"
|
1642 |
|
1643 |
-
#: subscribers/view-subscriber-export.php:
|
1644 |
-
|
1645 |
-
|
1646 |
-
|
1647 |
-
#: subscribers/view-subscriber-export.php:56 subscribers/view-subscriber-export.php:62
|
1648 |
-
#: subscribers/view-subscriber-export.php:68
|
1649 |
msgid "Click to Export in CSV"
|
1650 |
msgstr "Klicken um nach CSV zu exportieren"
|
1651 |
|
1652 |
-
#: subscribers/view-subscriber-export.php:
|
1653 |
msgid "2"
|
1654 |
msgstr "2"
|
1655 |
|
1656 |
-
#: subscribers/view-subscriber-export.php:
|
1657 |
-
msgid "WordPress Registered Users"
|
1658 |
-
msgstr "Registrierte WordPress Benutzer"
|
1659 |
-
|
1660 |
-
#: subscribers/view-subscriber-export.php:65
|
1661 |
msgid "3"
|
1662 |
msgstr "3"
|
1663 |
|
1664 |
-
#: subscribers/view-subscriber-export.php:
|
|
|
|
|
|
|
|
|
1665 |
msgid "Commented Authors"
|
1666 |
msgstr "Kommentierte Autoren"
|
1667 |
|
@@ -1679,11 +1807,11 @@ msgstr "Email importiert."
|
|
1679 |
|
1680 |
#: subscribers/view-subscriber-import.php:93
|
1681 |
msgid "email already exists."
|
1682 |
-
msgstr "Email existiert bereits"
|
1683 |
|
1684 |
#: subscribers/view-subscriber-import.php:94
|
1685 |
msgid "email are invalid."
|
1686 |
-
msgstr "Email sind ungültig"
|
1687 |
|
1688 |
#: subscribers/view-subscriber-import.php:97 subscribers/view-subscriber-import.php:126
|
1689 |
msgid "Click here"
|
@@ -1691,11 +1819,11 @@ msgstr "Klicke hier"
|
|
1691 |
|
1692 |
#: subscribers/view-subscriber-import.php:97 subscribers/view-subscriber-import.php:126
|
1693 |
msgid " to view details."
|
1694 |
-
msgstr "um Details zu sehen."
|
1695 |
|
1696 |
#: subscribers/view-subscriber-import.php:105
|
1697 |
msgid "File Upload Failed."
|
1698 |
-
msgstr "Dateiupload fehlgeschlagen"
|
1699 |
|
1700 |
#: subscribers/view-subscriber-import.php:142
|
1701 |
msgid "Import Email Addresses"
|
@@ -1707,7 +1835,7 @@ msgstr "CSV-Datei auswählen"
|
|
1707 |
|
1708 |
#: subscribers/view-subscriber-import.php:157
|
1709 |
msgid "Check CSV structure "
|
1710 |
-
msgstr "Überprüfe die CSV-Struktur"
|
1711 |
|
1712 |
#: subscribers/view-subscriber-import.php:158
|
1713 |
msgid "from here"
|
@@ -1764,86 +1892,50 @@ msgstr "Abonnentenstatus aktualisiert."
|
|
1764 |
msgid "Please select New Status to update."
|
1765 |
msgstr "Bitte wähle den neuen Status aus."
|
1766 |
|
1767 |
-
#: subscribers/view-subscriber-show.php:
|
1768 |
msgid "Bulk Actions"
|
1769 |
msgstr "Mehrfachaktionen"
|
1770 |
|
1771 |
-
#: subscribers/view-subscriber-show.php:
|
1772 |
msgid "Resend Confirmation"
|
1773 |
msgstr "Benachrichtigung erneut versenden"
|
1774 |
|
1775 |
-
#: subscribers/view-subscriber-show.php:
|
1776 |
msgid "Update Subscribers Status"
|
1777 |
msgstr "Abonnentenstatus aktualisieren"
|
1778 |
|
1779 |
-
#: subscribers/view-subscriber-show.php:
|
1780 |
msgid "Select Group"
|
1781 |
msgstr "Wähle Gruppe"
|
1782 |
|
1783 |
-
#: subscribers/view-subscriber-show.php:
|
1784 |
msgid "Select Status"
|
1785 |
msgstr "Status wählen"
|
1786 |
|
1787 |
-
#: subscribers/view-subscriber-show.php:
|
1788 |
msgid "Apply"
|
1789 |
msgstr "Anwenden"
|
1790 |
|
1791 |
-
#: subscribers/view-subscriber-show.php:
|
1792 |
msgid "All Groups"
|
1793 |
msgstr "Alle Gruppen"
|
1794 |
|
1795 |
-
#: subscribers/view-subscriber-show.php:
|
1796 |
msgid "All Status"
|
1797 |
msgstr "Alle Stati"
|
1798 |
|
1799 |
-
#: subscribers/view-subscriber-show.php:
|
1800 |
-
msgid "1 to 200 emails"
|
1801 |
-
msgstr "1 bis 200 Emails"
|
1802 |
-
|
1803 |
-
#: subscribers/view-subscriber-show.php:334
|
1804 |
-
msgid "201 to 400"
|
1805 |
-
msgstr "201 bis 400"
|
1806 |
-
|
1807 |
-
#: subscribers/view-subscriber-show.php:335
|
1808 |
-
msgid "401 to 600"
|
1809 |
-
msgstr "401 bis 600"
|
1810 |
-
|
1811 |
-
#: subscribers/view-subscriber-show.php:336
|
1812 |
-
msgid "601 to 800"
|
1813 |
-
msgstr "601 bis 800"
|
1814 |
-
|
1815 |
-
#: subscribers/view-subscriber-show.php:337
|
1816 |
-
msgid "801 to 1000"
|
1817 |
-
msgstr "8001 bis 1000"
|
1818 |
-
|
1819 |
-
#: subscribers/view-subscriber-show.php:338
|
1820 |
-
msgid "1001 to 2000"
|
1821 |
-
msgstr "1001 bis 2000"
|
1822 |
-
|
1823 |
-
#: subscribers/view-subscriber-show.php:339
|
1824 |
-
msgid "2001 to 5000"
|
1825 |
-
msgstr "2001 bis 5000"
|
1826 |
-
|
1827 |
-
#: subscribers/view-subscriber-show.php:340
|
1828 |
-
msgid "5001 to 10000"
|
1829 |
-
msgstr "5001 bis 10000"
|
1830 |
-
|
1831 |
-
#: subscribers/view-subscriber-show.php:341
|
1832 |
msgid "Display All"
|
1833 |
msgstr "Alle anzeigen"
|
1834 |
|
1835 |
-
#: subscribers/view-subscriber-show.php:
|
1836 |
msgid "Email Address"
|
1837 |
msgstr "Emailadresse"
|
1838 |
|
1839 |
-
#: subscribers/view-subscriber-show.php:
|
1840 |
msgid "Group"
|
1841 |
msgstr "Gruppe"
|
1842 |
|
1843 |
-
#: subscribers/view-subscriber-show.php:357 subscribers/view-subscriber-show.php:371
|
1844 |
-
msgid "Signup Date<br>(YYYY-MM-DD)"
|
1845 |
-
msgstr "Anmeldedatum (JJJJ-MM-TT)"
|
1846 |
-
|
1847 |
#: subscribers/view-subscriber-sync.php:36
|
1848 |
msgid "Please select default group to newly registered user."
|
1849 |
msgstr "Bitte wähle die Standartgruppe für neu registrierte Benutzer."
|
@@ -1879,7 +1971,7 @@ msgid ""
|
|
1879 |
"subscribers about new blog posts once it is published."
|
1880 |
msgstr ""
|
1881 |
"Füge das Anmeldeformular zur Webseite hinzu, sende HTML Newsletter & automatische "
|
1882 |
-
"Benachrichtigungen an die Abonnenten sobald neue Beiträge
|
1883 |
|
1884 |
#. Author of the plugin/theme
|
1885 |
msgid "Icegram"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.3\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-06-13 09:40:46+00:00\n"
|
6 |
+
"PO-Revision-Date: 2017-06-16 17:31+0200\n"
|
7 |
+
"Last-Translator: \n"
|
8 |
+
"Language-Team: \n"
|
9 |
"Language: de\n"
|
10 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"X-Generator: Poedit 2.0.2\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;_e:1;"
|
18 |
"_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;_ex:1,2c;"
|
22 |
"X-Loco-Target-Locale: de_DE\n"
|
23 |
"X-Poedit-SearchPath-0: ..\n"
|
24 |
|
25 |
+
#: classes/es-register.php:155 classes/es-register.php:156
|
26 |
+
#: settings/settings-edit.php:41
|
27 |
+
msgid "Settings"
|
28 |
+
msgstr "Einstellungen"
|
29 |
+
|
30 |
+
#: classes/es-register.php:192
|
31 |
+
msgctxt "compose-enhanced-select"
|
32 |
+
msgid "Please enter the Email Subject."
|
33 |
+
msgstr "Bitte gib das Subjekt der Email ein."
|
34 |
+
|
35 |
+
#: classes/es-register.php:707
|
36 |
+
msgid "is getting even better!"
|
37 |
+
msgstr "wird sogar noch besser!"
|
38 |
+
|
39 |
+
#: classes/es-register.php:708
|
40 |
+
msgid "But I need you to"
|
41 |
+
msgstr "Aber ich brauche Dich"
|
42 |
+
|
43 |
+
#: classes/es-register.php:708
|
44 |
+
msgid "help me prioritize"
|
45 |
+
msgstr "hilf mir zu priorisieren"
|
46 |
+
|
47 |
+
#: classes/es-register.php:708
|
48 |
+
msgid "Please send your response today."
|
49 |
+
msgstr "Bitte sende Deine Antwort noch heute."
|
50 |
+
|
51 |
+
#: classes/es-register.php:715
|
52 |
+
msgid "Here's how you use ES:"
|
53 |
+
msgstr "Und so verwendest Du ES:"
|
54 |
+
|
55 |
+
#: classes/es-register.php:720
|
56 |
+
msgid "Used Post Notifications more often than Newsletter"
|
57 |
+
msgstr "Verwendete öfter Benachrichtigungen über Beiträge als Newsletter"
|
58 |
+
|
59 |
+
#: classes/es-register.php:722
|
60 |
+
msgid "Used Newsletter more often than Post Notifications"
|
61 |
+
msgstr "Verwendete öfter Newsletter als Benachrichtigungen über Beiträge"
|
62 |
+
|
63 |
+
#: classes/es-register.php:724
|
64 |
+
msgid "Used Post Notification & Newsletter equally"
|
65 |
+
msgstr ""
|
66 |
+
"Verwendete Newsletter & Benachrichtigungen über Beiträge zu gleichen Teilen"
|
67 |
+
|
68 |
+
#: classes/es-register.php:728
|
69 |
+
msgid "Have "
|
70 |
+
msgstr "Habe "
|
71 |
+
|
72 |
+
#: classes/es-register.php:728
|
73 |
+
msgid " Active Subscribers"
|
74 |
+
msgstr " Aktive Abonnenten"
|
75 |
+
|
76 |
+
#: classes/es-register.php:729
|
77 |
+
msgid "Post "
|
78 |
+
msgstr "Beitrag "
|
79 |
+
|
80 |
+
#: classes/es-register.php:729
|
81 |
+
msgid " blog per week"
|
82 |
+
msgstr " Beiträge pro Woche"
|
83 |
+
|
84 |
+
#: classes/es-register.php:733
|
85 |
+
msgid "Send mails via Cron"
|
86 |
+
msgstr "Sende Emails via Cron"
|
87 |
+
|
88 |
+
#: classes/es-register.php:735
|
89 |
+
msgid "Send mails Immediately"
|
90 |
+
msgstr "Sende Emails sofort"
|
91 |
+
|
92 |
+
#: classes/es-register.php:745
|
93 |
+
msgid "How soon do you want these new features?"
|
94 |
+
msgstr "Wie bald möchtest Du diese neuen Features?"
|
95 |
+
|
96 |
+
#: classes/es-register.php:749
|
97 |
+
msgid "Beautiful Email Designs"
|
98 |
+
msgstr "Schöne Email Designs"
|
99 |
+
|
100 |
+
#: classes/es-register.php:750 classes/es-register.php:755 classes/es-register.php:764
|
101 |
+
#: classes/es-register.php:769
|
102 |
+
msgid "Right now!"
|
103 |
+
msgstr "Jetzt!"
|
104 |
+
|
105 |
+
#: classes/es-register.php:751 classes/es-register.php:756 classes/es-register.php:765
|
106 |
+
#: classes/es-register.php:770
|
107 |
+
msgid "Soon"
|
108 |
+
msgstr "Bald"
|
109 |
+
|
110 |
+
#: classes/es-register.php:752 classes/es-register.php:757 classes/es-register.php:766
|
111 |
+
#: classes/es-register.php:771
|
112 |
+
msgid "Later"
|
113 |
+
msgstr "Später"
|
114 |
+
|
115 |
+
#: classes/es-register.php:754
|
116 |
+
msgid "Spam Check, Scheduling... (Better Email Delivery)"
|
117 |
+
msgstr "Spamüberprüfung, Zeitplanung... (Besserer Emailversand)"
|
118 |
+
|
119 |
+
#: classes/es-register.php:763
|
120 |
+
msgid "Discard Fake / Bouncing Emails"
|
121 |
+
msgstr "Verwerfe Fake- oder zurückgekommene Emails"
|
122 |
+
|
123 |
+
#: classes/es-register.php:768
|
124 |
+
msgid "Advanced Reporting"
|
125 |
+
msgstr "Erweiterte Berichte"
|
126 |
+
|
127 |
+
#: classes/es-register.php:791
|
128 |
+
msgid "Thank you!"
|
129 |
+
msgstr "Danke!"
|
130 |
+
|
131 |
+
#: classes/es-register.php:792
|
132 |
+
msgid "No issues, have a nice day!"
|
133 |
+
msgstr "Keine Probleme gefunden, Genieße den Tag!"
|
134 |
+
|
135 |
+
#: help/help.php:67
|
136 |
+
#, c-format
|
137 |
+
msgid ""
|
138 |
+
"Like Email Subscribers? If yes, then consider %s to support further developments."
|
139 |
+
msgstr ""
|
140 |
+
"Du magst Email Subscribers? Falls ja, erwäge doch %s um zukünftige Entwicklungen zu "
|
141 |
+
"unterstützen."
|
142 |
+
|
143 |
+
#: help/help.php:67
|
144 |
+
msgid "donating to us"
|
145 |
+
msgstr "eine Spende an uns"
|
146 |
+
|
147 |
+
#: help/help.php:139
|
148 |
+
msgid "What are the keywords available in the Post Notification template?"
|
149 |
+
msgstr ""
|
150 |
+
"Welche Schlüsselworte sind in der Vorlage für Beitragsbenachrichtigungen verfügbar?"
|
151 |
+
|
152 |
+
#: help/help.php:178
|
153 |
+
msgid "CSS Help"
|
154 |
+
msgstr "CSS Hilfe"
|
155 |
+
|
156 |
+
#: settings/settings-edit.php:23
|
157 |
+
msgid "Admin"
|
158 |
+
msgstr "Admin"
|
159 |
+
|
160 |
+
#: settings/settings-edit.php:24
|
161 |
+
msgid "Signup Confirmation"
|
162 |
+
msgstr "Anmeldebestätigung"
|
163 |
+
|
164 |
+
#: settings/settings-edit.php:26
|
165 |
+
msgid "Cron"
|
166 |
+
msgstr "Cron"
|
167 |
+
|
168 |
+
#: settings/settings-edit.php:228
|
169 |
msgid ""
|
170 |
+
"Enter the content for the subscriber welcome email whenever a user's email is either "
|
171 |
+
"confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully. (Keyword: "
|
172 |
+
"###NAME###, ###GROUP###, ###LINK###)"
|
173 |
msgstr ""
|
174 |
+
"Gib den Inhalt für die Willkommensmail ein. Diese wird verschickt wenn eine "
|
175 |
+
"Emailadresse entweder erfolgreich bestätigt (Double Opt In) oder angemeldet (Single "
|
176 |
+
"Opt In) ist. (Schlüsselworte: ###NAME###, ###GROUP###, ###LINK###)"
|
177 |
+
|
178 |
+
#: subscribers/view-subscriber-export.php:62
|
179 |
+
msgid "All Subscribers"
|
180 |
+
msgstr "Alle Abonnenten"
|
181 |
+
|
182 |
+
#: subscribers/view-subscriber-export.php:68
|
183 |
+
msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
|
184 |
+
msgstr "Aktive Abonnenten (Status Bestätigt & Einfaches Opt In)"
|
185 |
+
|
186 |
+
#: subscribers/view-subscriber-export.php:74
|
187 |
+
msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
|
188 |
+
msgstr "Inaktive Abonnenten (Status: Unbestätigt & Abgemeldet)"
|
189 |
+
|
190 |
+
#: subscribers/view-subscriber-export.php:79
|
191 |
+
msgid "4"
|
192 |
+
msgstr "4"
|
193 |
+
|
194 |
+
#: subscribers/view-subscriber-export.php:85
|
195 |
+
msgid "5"
|
196 |
+
msgstr "5"
|
197 |
+
|
198 |
+
#: subscribers/view-subscriber-show.php:252
|
199 |
+
#, c-format
|
200 |
+
msgid "Total Subscribers: %s"
|
201 |
+
msgstr "Abonnenten insgesamt: %s"
|
202 |
+
|
203 |
+
#: subscribers/view-subscriber-show.php:254
|
204 |
+
#, c-format
|
205 |
+
msgid "Active Subscribers: %s"
|
206 |
+
msgstr "Abonnenten aktiv: %s"
|
207 |
+
|
208 |
+
#: subscribers/view-subscriber-show.php:342
|
209 |
+
msgid "1 to 500 emails"
|
210 |
+
msgstr "1 bis 500 Emails"
|
211 |
+
|
212 |
+
#: subscribers/view-subscriber-show.php:343
|
213 |
+
msgid "501 to 1000"
|
214 |
+
msgstr "501 bis 1000"
|
215 |
+
|
216 |
+
#: subscribers/view-subscriber-show.php:344
|
217 |
+
msgid "1001 to 1500"
|
218 |
+
msgstr "1001 bis 1500"
|
219 |
+
|
220 |
+
#: subscribers/view-subscriber-show.php:345
|
221 |
+
msgid "1501 to 2000"
|
222 |
+
msgstr "1501 bis 2000"
|
223 |
+
|
224 |
+
#: subscribers/view-subscriber-show.php:346
|
225 |
+
msgid "2001 to 4000"
|
226 |
+
msgstr "2001 bis 4000"
|
227 |
+
|
228 |
+
#: subscribers/view-subscriber-show.php:347
|
229 |
+
msgid "4001 to 6000"
|
230 |
+
msgstr "4001 bis 6000"
|
231 |
|
232 |
+
#: subscribers/view-subscriber-show.php:348
|
233 |
+
msgid "6001 to 10000"
|
234 |
+
msgstr "6001 bis 10000"
|
235 |
|
236 |
+
#: subscribers/view-subscriber-show.php:364 subscribers/view-subscriber-show.php:377
|
237 |
+
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
238 |
+
msgstr "Anmeldedatum und -Zeit<br>(Y-M-D H:I:S)"
|
239 |
|
240 |
#: base/es-defined.php:32
|
241 |
msgid ""
|
294 |
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
295 |
msgstr "<span style=\"color:#993399;\">Sofort</span>"
|
296 |
|
297 |
+
#: classes/es-loadwidget.php:28 classes/es-register.php:961
|
298 |
+
#: subscribers/view-subscriber-show.php:361 subscribers/view-subscriber-show.php:374
|
299 |
msgid "Name"
|
300 |
msgstr "Name"
|
301 |
|
302 |
+
#: classes/es-loadwidget.php:33 classes/es-register.php:966
|
303 |
msgid "Email *"
|
304 |
msgstr "Email *"
|
305 |
|
306 |
+
#: classes/es-loadwidget.php:38 classes/es-register.php:971
|
307 |
msgid "Subscribe"
|
308 |
msgstr "Anmelden"
|
309 |
|
310 |
+
#: classes/es-register.php:140 classes/es-register.php:141 classes/es-register.php:707
|
311 |
msgid "Email Subscribers"
|
312 |
msgstr "Email Subscribers"
|
313 |
|
314 |
+
#: classes/es-register.php:143 classes/es-register.php:144
|
315 |
#: subscribers/view-subscriber-show.php:241
|
316 |
msgid "Subscribers"
|
317 |
msgstr "Abonnenten"
|
318 |
|
319 |
+
#: classes/es-register.php:146 classes/es-register.php:147 compose/compose-show.php:64
|
320 |
msgid "Compose"
|
321 |
msgstr "Erstellen"
|
322 |
|
323 |
+
#: classes/es-register.php:149 classes/es-register.php:150
|
324 |
#: notification/notification-show.php:52
|
325 |
msgid "Post Notifications"
|
326 |
msgstr "Benachrichtigungen"
|
327 |
|
328 |
+
#: classes/es-register.php:152 classes/es-register.php:153 sendmail/sendmail.php:93
|
329 |
+
#: settings/settings-edit.php:318
|
330 |
msgid "Newsletters"
|
331 |
msgstr "Newsletter"
|
332 |
|
333 |
+
#: classes/es-register.php:158 classes/es-register.php:159
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
334 |
#: sentmail/sentmail-show.php:96
|
335 |
msgid "Reports"
|
336 |
msgstr "Berichte"
|
337 |
|
338 |
+
#: classes/es-register.php:161
|
339 |
msgid "Help & Info"
|
340 |
msgstr "Hilfe & Info"
|
341 |
|
342 |
+
#: classes/es-register.php:162
|
343 |
msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info"
|
344 |
msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Hilfe & Info"
|
345 |
|
346 |
+
#: classes/es-register.php:173
|
347 |
msgctxt "view-subscriber-enhanced-select"
|
348 |
msgid "Please enter subscriber email address."
|
349 |
msgstr "Bitte Emailadresse des Abonnenten eingeben."
|
350 |
|
351 |
+
#: classes/es-register.php:174
|
352 |
msgctxt "view-subscriber-enhanced-select"
|
353 |
msgid "Please select subscriber email status."
|
354 |
msgstr "Wähle den Emailstatus des Abonnenten."
|
355 |
|
356 |
+
#: classes/es-register.php:175
|
357 |
msgctxt "view-subscriber-enhanced-select"
|
358 |
msgid "Please select or create group for this subscriber."
|
359 |
msgstr "Bitte wähle oder erstelle ein Gruppe für diesen Abonnenten."
|
360 |
|
361 |
+
#: classes/es-register.php:176
|
362 |
msgctxt "view-subscriber-enhanced-select"
|
363 |
msgid "Do you want to delete this record?"
|
364 |
msgstr "Möchtest Du diesen Eintrag löschen?"
|
365 |
|
366 |
+
#: classes/es-register.php:177
|
367 |
msgctxt "view-subscriber-enhanced-select"
|
368 |
msgid "Please select the bulk action."
|
369 |
msgstr "Bitte wähle die Mehrfachaktion."
|
370 |
|
371 |
+
#: classes/es-register.php:178
|
372 |
msgctxt "view-subscriber-enhanced-select"
|
373 |
msgid "Are you sure you want to delete selected records?"
|
374 |
msgstr "Bist Du sicher, dass die selektierten Einträge gelöscht werden sollen?"
|
375 |
|
376 |
+
#: classes/es-register.php:179
|
377 |
msgctxt "view-subscriber-enhanced-select"
|
378 |
msgid ""
|
379 |
"Do you want to resend confirmation email? \\nAlso please note, this will update "
|
382 |
"Bestätigungsmail erneut versenden? \\nBeachte, dies wird den Abonnentenstatus in "
|
383 |
"\"Unbestätigt\" ändern."
|
384 |
|
385 |
+
#: classes/es-register.php:180
|
386 |
msgctxt "view-subscriber-enhanced-select"
|
387 |
msgid "Please select new subscriber group."
|
388 |
msgstr "Bitte wähle die neue Abonnentengruppe."
|
389 |
|
390 |
+
#: classes/es-register.php:181
|
391 |
msgctxt "view-subscriber-enhanced-select"
|
392 |
msgid "Please select new status for subscribers"
|
393 |
+
msgstr "Bitte wähle den neuen Status für Abonnenten"
|
394 |
|
395 |
+
#: classes/es-register.php:182
|
396 |
msgctxt "view-subscriber-enhanced-select"
|
397 |
msgid "Do you want to update subscribers group?"
|
398 |
msgstr "Abonnentengruppe aktualisieren?"
|
399 |
|
400 |
+
#: classes/es-register.php:183
|
401 |
msgctxt "view-subscriber-enhanced-select"
|
402 |
msgid "Do you want to update subscribers status?"
|
403 |
msgstr "Abonnentenstatus aktualisieren?"
|
404 |
|
405 |
+
#: classes/es-register.php:184
|
|
|
|
|
|
|
|
|
|
|
406 |
msgctxt "view-subscriber-enhanced-select"
|
407 |
msgid "Please select only csv file. Please check official website for csv structure.."
|
408 |
msgstr "Bitte nur CSV wählen. Details dazu auf der offiziellen Webseite."
|
409 |
|
410 |
+
#: classes/es-register.php:193
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
411 |
msgctxt "compose-enhanced-select"
|
412 |
msgid "Do you want to delete this record?"
|
413 |
msgstr "Eintrag löschen?"
|
414 |
|
415 |
+
#: classes/es-register.php:201
|
416 |
msgctxt "notification-enhanced-select"
|
417 |
msgid "Please select subscribers group."
|
418 |
msgstr "Abonnentengruppe wählen."
|
419 |
|
420 |
+
#: classes/es-register.php:202
|
421 |
msgctxt "notification-enhanced-select"
|
422 |
msgid "Please select notification mail subject. Use compose menu to create new."
|
423 |
msgstr "Bitte wähle das Subjekt für eine Notifikationsmail."
|
424 |
|
425 |
+
#: classes/es-register.php:203
|
426 |
msgctxt "notification-enhanced-select"
|
427 |
msgid "Please select notification status."
|
428 |
msgstr "Wähle den Benachrichtigungsstatus."
|
429 |
|
430 |
+
#: classes/es-register.php:204
|
431 |
msgctxt "notification-enhanced-select"
|
432 |
msgid "Do you want to delete this record?"
|
433 |
msgstr "Eintrag löschen?"
|
434 |
|
435 |
+
#: classes/es-register.php:212
|
436 |
msgctxt "sendmail-enhanced-select"
|
437 |
msgid "Please select your mail subject."
|
438 |
msgstr "Bitte wähle das Emailsubjekt."
|
439 |
|
440 |
+
#: classes/es-register.php:213
|
441 |
msgctxt "sendmail-enhanced-select"
|
442 |
msgid "Please select your mail type."
|
443 |
msgstr "Bitte wähle den Emailtyp."
|
444 |
|
445 |
+
#: classes/es-register.php:214
|
446 |
msgctxt "sendmail-enhanced-select"
|
447 |
msgid ""
|
448 |
"Have you double checked your selected group? If so, let's go ahead and send this."
|
450 |
"Hast Du die gewählte Gruppe nochmals geprüft? Ja? Dann lass uns das jetzt "
|
451 |
"verschicken."
|
452 |
|
453 |
+
#: classes/es-register.php:222
|
454 |
msgctxt "sentmail-enhanced-select"
|
455 |
msgid "Do you want to delete this record?"
|
456 |
msgstr "Eintrag löschen?"
|
457 |
|
458 |
+
#: classes/es-register.php:223
|
459 |
msgctxt "sentmail-enhanced-select"
|
460 |
msgid "Do you want to delete all records except latest 10?"
|
461 |
msgstr "Alle Einträge mit Ausnahme der letzten 10 löschen?"
|
462 |
|
463 |
+
#: classes/es-register.php:231
|
464 |
msgctxt "cron-enhanced-select"
|
465 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
466 |
msgstr "Bitte wähle die Anzahl Mails die pro Stunde/Trigger versendet werden sollen."
|
467 |
|
468 |
+
#: classes/es-register.php:232
|
469 |
msgctxt "cron-enhanced-select"
|
470 |
msgid "Please enter the mail count, only number."
|
471 |
msgstr "Bitte gib die Anzahl Mails ein, nur Ziffern."
|
472 |
|
473 |
+
#: classes/es-register.php:245
|
474 |
msgctxt "widget-enhanced-select"
|
475 |
msgid "Please enter email address"
|
476 |
+
msgstr "Bitte gib die Emailadresse ein"
|
477 |
|
478 |
+
#: classes/es-register.php:246
|
479 |
msgctxt "widget-enhanced-select"
|
480 |
msgid "Please provide a valid email address"
|
481 |
+
msgstr "Bitte gib eine gültige Emailadresse ein"
|
482 |
|
483 |
+
#: classes/es-register.php:247
|
484 |
msgctxt "widget-enhanced-select"
|
485 |
msgid "loading..."
|
486 |
msgstr "lädt..."
|
487 |
|
488 |
+
#: classes/es-register.php:248
|
489 |
msgctxt "widget-enhanced-select"
|
490 |
msgid "Cannot create XMLHTTP instance"
|
491 |
msgstr "Die XMLHTTP-Instanz kann nicht erstellt werden"
|
492 |
|
493 |
+
#: classes/es-register.php:249
|
494 |
msgctxt "widget-enhanced-select"
|
495 |
msgid "Successfully Subscribed."
|
496 |
msgstr "Erfolgreich angemeldet."
|
497 |
|
498 |
+
#: classes/es-register.php:250
|
499 |
msgctxt "widget-enhanced-select"
|
500 |
msgid ""
|
501 |
"Your subscription was successful! Within a few minutes, kindly check the mail in "
|
506 |
"Email. Bitte bestätige darin Deine Anmeldung. Solltest Du keine Mail bekommen prüfe "
|
507 |
"bitte den Spamordner."
|
508 |
|
509 |
+
#: classes/es-register.php:251
|
510 |
msgctxt "widget-enhanced-select"
|
511 |
msgid "Email Address already exists!"
|
512 |
msgstr "Diese Adresse existiert bereits!"
|
513 |
|
514 |
+
#: classes/es-register.php:252
|
515 |
msgctxt "widget-enhanced-select"
|
516 |
msgid "Oops.. Unexpected error occurred."
|
517 |
msgstr "Oops.. Ein unerwarteter Fehler ist aufgetreten."
|
518 |
|
519 |
+
#: classes/es-register.php:253
|
520 |
msgctxt "widget-enhanced-select"
|
521 |
msgid "Invalid email address"
|
522 |
msgstr "Ungültige Emailadresse"
|
523 |
|
524 |
+
#: classes/es-register.php:254
|
525 |
msgctxt "widget-enhanced-select"
|
526 |
msgid "Please try after some time"
|
527 |
msgstr "Versuche es in Kürze nochmal"
|
528 |
|
529 |
+
#: classes/es-register.php:255
|
530 |
msgctxt "widget-enhanced-select"
|
531 |
msgid "There was a problem with the request"
|
532 |
msgstr "Es gab ein Problem mit der Anforderung"
|
533 |
|
534 |
+
#: classes/es-register.php:262
|
535 |
msgctxt "widget-page-enhanced-select"
|
536 |
msgid "Please enter email address"
|
537 |
msgstr "Bitte gib die Emailadresse ein"
|
538 |
|
539 |
+
#: classes/es-register.php:263
|
540 |
msgctxt "widget-page-enhanced-select"
|
541 |
msgid "Please provide a valid email address"
|
542 |
msgstr "Bitte gib eine gültige Emailadresse ein"
|
543 |
|
544 |
+
#: classes/es-register.php:264
|
545 |
msgctxt "widget-page-enhanced-select"
|
546 |
msgid "loading..."
|
547 |
msgstr "lädt..."
|
548 |
|
549 |
+
#: classes/es-register.php:265
|
550 |
msgctxt "widget-page-enhanced-select"
|
551 |
msgid "Cannot create XMLHTTP instance"
|
552 |
msgstr "Die XMLHTTP-Instanz kann nicht erstellt werden"
|
553 |
|
554 |
+
#: classes/es-register.php:266
|
555 |
msgctxt "widget-page-enhanced-select"
|
556 |
msgid "Successfully Subscribed."
|
557 |
msgstr "Erfolgreich angemeldet."
|
558 |
|
559 |
+
#: classes/es-register.php:267
|
560 |
msgctxt "widget-page-enhanced-select"
|
561 |
msgid ""
|
562 |
"Your subscription was successful! Within a few minutes, kindly check the mail in "
|
567 |
"Email. Bitte bestätige darin Deine Anmeldung. Solltest Du keine Mail bekommen prüfe "
|
568 |
"bitte den Spamordner."
|
569 |
|
570 |
+
#: classes/es-register.php:268
|
571 |
msgctxt "widget-page-enhanced-select"
|
572 |
msgid "Email Address already exists!"
|
573 |
msgstr "Diese Adresse existiert bereits!"
|
574 |
|
575 |
+
#: classes/es-register.php:269
|
576 |
msgctxt "widget-page-enhanced-select"
|
577 |
msgid "Oops.. Unexpected error occurred."
|
578 |
msgstr "Oops.. Ein unerwarteter Fehler ist aufgetreten."
|
579 |
|
580 |
+
#: classes/es-register.php:270
|
581 |
msgctxt "widget-page-enhanced-select"
|
582 |
msgid "Invalid email address"
|
583 |
msgstr "Ungültige Emailadresse"
|
584 |
|
585 |
+
#: classes/es-register.php:271
|
586 |
msgctxt "widget-page-enhanced-select"
|
587 |
msgid "Please try after some time"
|
588 |
msgstr "Versuche es in Kürze nochmal"
|
589 |
|
590 |
+
#: classes/es-register.php:272
|
591 |
msgctxt "widget-page-enhanced-select"
|
592 |
msgid "There was a problem with the request"
|
593 |
msgstr "Es gab ein Problem mit der Anforderung"
|
594 |
|
595 |
+
#: classes/es-register.php:1009
|
596 |
msgid "Widget Title"
|
597 |
msgstr "Widget Titel"
|
598 |
|
599 |
+
#: classes/es-register.php:1013
|
600 |
msgid "Short description about subscription form"
|
601 |
msgstr "Kurze Beschreibung des Anmeldeformulars"
|
602 |
|
603 |
+
#: classes/es-register.php:1017
|
604 |
msgid "Display Name Field"
|
605 |
msgstr "Namensfeld anzeigen"
|
606 |
|
607 |
+
#: classes/es-register.php:1019 settings/settings-edit.php:140
|
608 |
+
#: settings/settings-edit.php:213 subscribers/view-subscriber-sync.php:107
|
609 |
msgid "YES"
|
610 |
msgstr "Ja"
|
611 |
|
612 |
+
#: classes/es-register.php:1020 settings/settings-edit.php:141
|
613 |
+
#: settings/settings-edit.php:214 subscribers/view-subscriber-sync.php:106
|
614 |
msgid "NO"
|
615 |
msgstr "Nein"
|
616 |
|
617 |
+
#: classes/es-register.php:1024
|
618 |
msgid "Subscriber Group"
|
619 |
msgstr "Abonnentengruppe"
|
620 |
|
621 |
#: compose/compose-add.php:31 compose/compose-edit.php:48
|
622 |
msgid "Please enter template heading."
|
623 |
+
msgstr "Bitte gib die Vorlagenüberschrift ein."
|
624 |
|
625 |
#: compose/compose-add.php:43
|
626 |
msgid "Template successfully created. "
|
627 |
+
msgstr "Vorlage erfolgreich erstellt. "
|
628 |
|
629 |
#: compose/compose-add.php:74
|
630 |
msgid "Add new Email"
|
631 |
msgstr "Neue Emailadresse hinzufügen"
|
632 |
|
633 |
#: compose/compose-add.php:75 compose/compose-edit.php:86
|
634 |
+
#: compose/compose-preview.php:28 compose/compose-show.php:66
|
635 |
#: notification/notification-add.php:113 notification/notification-edit.php:124
|
636 |
+
#: notification/notification-show.php:54 sendmail/sendmail.php:94
|
637 |
+
#: sentmail/deliverreport-show.php:61 sentmail/sentmail-preview.php:28
|
638 |
+
#: sentmail/sentmail-show.php:97 settings/settings-edit.php:42
|
639 |
+
#: subscribers/view-subscriber-add.php:114 subscribers/view-subscriber-edit.php:113
|
640 |
+
#: subscribers/view-subscriber-export.php:38 subscribers/view-subscriber-import.php:146
|
641 |
+
#: subscribers/view-subscriber-show.php:246 subscribers/view-subscriber-sync.php:92
|
|
|
642 |
msgid "Help"
|
643 |
msgstr "Hilfe"
|
644 |
|
684 |
#: compose/compose-add.php:97 compose/compose-edit.php:108
|
685 |
#: sentmail/deliverreport-show.php:73 sentmail/deliverreport-show.php:84
|
686 |
#: sentmail/sentmail-show.php:113 sentmail/sentmail-show.php:126
|
687 |
+
#: subscribers/view-subscriber-show.php:362 subscribers/view-subscriber-show.php:375
|
688 |
msgid "Status"
|
689 |
msgstr "Status"
|
690 |
|
696 |
msgid "Please select your mail status"
|
697 |
msgstr "Bitte wähle deinen Emailstatus"
|
698 |
|
699 |
+
#: compose/compose-add.php:105 compose/compose-edit.php:117
|
700 |
#: notification/notification-add.php:253 notification/notification-edit.php:290
|
701 |
+
#: subscribers/view-subscriber-edit.php:191
|
702 |
msgid "Save"
|
703 |
msgstr "Sichern"
|
704 |
|
705 |
#: compose/compose-edit.php:20 compose/compose-preview.php:18
|
706 |
#: compose/compose-show.php:33 notification/notification-edit.php:20
|
707 |
#: notification/notification-show.php:21 sentmail/sentmail-preview.php:18
|
708 |
+
#: sentmail/sentmail-show.php:22 subscribers/view-subscriber-edit.php:22
|
|
|
709 |
msgid "Oops, selected details does not exists."
|
710 |
msgstr "Oops, die gewählten Details existieren nicht."
|
711 |
|
712 |
#: compose/compose-edit.php:61
|
713 |
msgid "Template successfully updated. "
|
714 |
+
msgstr "Vorlage erfolgreich aktualisiert. "
|
715 |
|
716 |
#: compose/compose-edit.php:84
|
717 |
msgid "Edit Email"
|
727 |
msgstr "Emailvorschau"
|
728 |
|
729 |
#: compose/compose-preview.php:40 compose/compose-show.php:101
|
730 |
+
#: notification/notification-show.php:100 subscribers/view-subscriber-show.php:404
|
731 |
msgid "Edit"
|
732 |
msgstr "Bearbeiten"
|
733 |
|
755 |
msgstr "Aktion"
|
756 |
|
757 |
#: compose/compose-show.php:102 notification/notification-show.php:103
|
758 |
+
#: subscribers/view-subscriber-show.php:287 subscribers/view-subscriber-show.php:409
|
759 |
msgid "Delete"
|
760 |
msgstr "Löschen"
|
761 |
|
766 |
|
767 |
#: compose/compose-show.php:111 notification/notification-show.php:143
|
768 |
#: sentmail/deliverreport-show.php:127 sentmail/sentmail-show.php:183
|
769 |
+
#: subscribers/view-subscriber-show.php:432
|
770 |
msgid "No records available."
|
771 |
+
msgstr "Keine Einträge verfügbar."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
772 |
|
773 |
+
#: export/export-email-address.php:45 export/export-email-address.php:49
|
774 |
msgid "Unexpected url submit has been detected"
|
775 |
msgstr "Eine unerwartete URL wurde übertragen"
|
776 |
|
777 |
#: help/help.php:47
|
778 |
msgid "Welcome to Email Subscribers!"
|
779 |
+
msgstr "Willkommen bei Email Subscribers!"
|
780 |
|
781 |
#: help/help.php:48
|
782 |
msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
|
787 |
msgid "For more help and tips..."
|
788 |
msgstr "Für mehr Hilfe & Tips..."
|
789 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
790 |
#: help/help.php:99
|
791 |
msgid "Frequently Asked Questions"
|
792 |
msgstr "Frequently Asked Questions"
|
795 |
#: help/help.php:136 help/help.php:139 help/help.php:142 help/help.php:145
|
796 |
#: help/help.php:148 help/help.php:151 help/help.php:154 help/help.php:157
|
797 |
#: help/help.php:160 help/help.php:163 help/help.php:166 help/help.php:169
|
798 |
+
#: help/help.php:172 help/help.php:175 help/help.php:178 help/help.php:180
|
799 |
#, c-format
|
800 |
msgid "%s"
|
801 |
msgstr "%s"
|
822 |
|
823 |
#: help/help.php:133
|
824 |
msgid "How to change/update/translate any texts from Email Subscribers?"
|
825 |
+
msgstr "Wie ändere/aktualisiere/übersetze ich Texte von Email Subscribers?"
|
826 |
|
827 |
#: help/help.php:136
|
828 |
msgid "How to add Unsubscribe link in emails?"
|
829 |
msgstr "Wie füge ich meinen Emails einen Abmeldelink hinzu?"
|
830 |
|
|
|
|
|
|
|
|
|
831 |
#: help/help.php:142
|
832 |
msgid "How to Compose and Send Newsletter Emails?"
|
833 |
msgstr "Wie erstelle und versende ich Newsletter-Emails?"
|
880 |
msgid "What to do if Hosting doesn’t support Cron Jobs?"
|
881 |
msgstr "Was ist zu tun wenn mein Hoster keine Cron Jobs unterstützt?"
|
882 |
|
883 |
+
#: help/help.php:180
|
884 |
msgid "Commonly Asked Questions"
|
885 |
msgstr "Übliche Fragen"
|
886 |
|
887 |
+
#: job/es-optin.php:58 job/es-optin.php:68 job/es-unsubscribe.php:54
|
888 |
+
#: job/es-unsubscribe.php:61
|
889 |
msgid "Oops.. We are getting some technical error. Please try again or contact admin."
|
890 |
msgstr ""
|
891 |
"Oops.. Es gibt ein technisches Problem. Versuche es nochmal oder kontaktiere den "
|
897 |
|
898 |
#: notification/notification-add.php:33
|
899 |
msgid "Please select subscribers group."
|
900 |
+
msgstr "Bitte wähle die Abonnentengruppe."
|
901 |
|
902 |
#: notification/notification-add.php:39
|
903 |
msgid "Please select notification status."
|
904 |
+
msgstr "Bitte wähle den Benachrichtigungsstatus."
|
905 |
|
906 |
#: notification/notification-add.php:45 notification/notification-edit.php:61
|
907 |
msgid "Please select notification mail subject. Use compose menu to create new."
|
915 |
|
916 |
#: notification/notification-add.php:71
|
917 |
msgid "Notification successfully created. "
|
918 |
+
msgstr "Benachrichtigung erfolgreich erstellt. "
|
919 |
|
920 |
#: notification/notification-add.php:112
|
921 |
msgid "Add Notification"
|
967 |
|
968 |
#: notification/notification-add.php:239 notification/notification-edit.php:275
|
969 |
msgid "Select Notification Status when a new post is published"
|
970 |
+
msgstr "Wähle den Benachrichtigungsstatus wenn ein neuer Beitrag veröffentlicht wird"
|
971 |
|
972 |
#: notification/notification-add.php:243 notification/notification-edit.php:279
|
973 |
#: notification/notification-show.php:130 sendmail/sendmail.php:138
|
993 |
|
994 |
#: notification/notification-edit.php:89
|
995 |
msgid "Notification successfully updated. "
|
996 |
+
msgstr "Benachrichtigung erfolgreich aktualisiert. "
|
997 |
|
998 |
#: notification/notification-edit.php:122
|
999 |
msgid "Edit Notification"
|
1000 |
msgstr "Benachrichtigung bearbeiten"
|
1001 |
|
1002 |
+
#: notification/notification-edit.php:131 subscribers/view-subscriber-show.php:289
|
1003 |
msgid "Update Subscribers Group"
|
1004 |
msgstr "Aktualisiere die Abonnentengruppe"
|
1005 |
|
1022 |
msgid "Notification Status"
|
1023 |
msgstr "Benachrichtigungsstatus"
|
1024 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1025 |
#: sendmail/sendmail.php:40
|
1026 |
msgid "Please select your mail subject."
|
1027 |
msgstr "Bitte wähle das Subjekt der Mail."
|
1068 |
|
1069 |
#: sendmail/sendmail.php:178
|
1070 |
msgid "Recipients : 0 "
|
1071 |
+
msgstr "Empfänger : 0 "
|
1072 |
|
1073 |
#: sendmail/sendmail.php:180
|
1074 |
#, c-format
|
1110 |
msgstr "Sendebericht"
|
1111 |
|
1112 |
#: sentmail/deliverreport-show.php:71 sentmail/deliverreport-show.php:82
|
1113 |
+
#: subscribers/view-subscriber-export.php:45 subscribers/view-subscriber-export.php:53
|
|
|
1114 |
msgid "Sno"
|
1115 |
msgstr "Alle"
|
1116 |
|
1168 |
msgstr "Gesamt"
|
1169 |
|
1170 |
#: sentmail/sentmail-show.php:118 sentmail/sentmail-show.php:131
|
1171 |
+
#: subscribers/view-subscriber-export.php:48 subscribers/view-subscriber-export.php:56
|
1172 |
+
#: subscribers/view-subscriber-show.php:365 subscribers/view-subscriber-show.php:378
|
1173 |
msgid "Action"
|
1174 |
msgstr "Aktion"
|
1175 |
|
1197 |
msgid "Click to sync tables"
|
1198 |
msgstr "Klicken um die Plugintabellen zu synchronisieren"
|
1199 |
|
1200 |
+
#: settings/settings-edit.php:25
|
1201 |
+
msgid "User Roles"
|
1202 |
+
msgstr "Benutzerrollen"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1203 |
|
1204 |
+
#: settings/settings-edit.php:64
|
1205 |
+
msgid "Save Settings"
|
1206 |
+
msgstr "Einstellungen speichern"
|
1207 |
|
1208 |
+
#: settings/settings-edit.php:76
|
1209 |
msgid "Sender of Notifications"
|
1210 |
msgstr "Absender von Benachrichtigungen"
|
1211 |
|
1212 |
+
#: settings/settings-edit.php:77
|
1213 |
msgid ""
|
1214 |
"Choose a FROM name and FROM email address for all the emails to be sent from this "
|
1215 |
"plugin."
|
1217 |
"Gib einen Absendernamen und eine Absenderemail ein für alle Emails die von diesem "
|
1218 |
"Plugin verschickt werden."
|
1219 |
|
1220 |
+
#: settings/settings-edit.php:87
|
1221 |
msgid "Mail Type"
|
1222 |
msgstr "Emailtyp"
|
1223 |
|
1224 |
+
#: settings/settings-edit.php:88
|
1225 |
msgid ""
|
1226 |
"Option 1 & 2 is to send mails with default Wordpress method wp_mail(). Option 3 & 4 "
|
1227 |
"is to send mails with PHP method mail()."
|
1229 |
"Optionen 1 & 2 verschicken Mails mit der Standart Wordpressmethode wp_mail(). <br /"
|
1230 |
">Optionen 3 & 4 verschicken Mails mit der PHP Methode mail()."
|
1231 |
|
1232 |
+
#: settings/settings-edit.php:92
|
1233 |
msgid "1. WP HTML MAIL"
|
1234 |
msgstr "1. WP HTML MAIL"
|
1235 |
|
1236 |
+
#: settings/settings-edit.php:93
|
1237 |
msgid "2. WP PLAINTEXT MAIL"
|
1238 |
msgstr "2. WP PLAINTEXT MAIL"
|
1239 |
|
1240 |
+
#: settings/settings-edit.php:94
|
1241 |
msgid "3. PHP HTML MAIL"
|
1242 |
msgstr "3. PHP HTML MAIL"
|
1243 |
|
1244 |
+
#: settings/settings-edit.php:95
|
1245 |
msgid "4. PHP PLAINTEXT MAIL"
|
1246 |
msgstr "4. PHP PLAINTEXT MAIL"
|
1247 |
|
1248 |
+
#: settings/settings-edit.php:102
|
1249 |
msgid "Opt-In Option"
|
1250 |
msgstr "Opt In Option"
|
1251 |
|
1252 |
+
#: settings/settings-edit.php:103
|
1253 |
msgid ""
|
1254 |
"Double Opt In means subscribers need to confirm their email address by an activation "
|
1255 |
"link sent them on a activation email message.<br />Single Opt In means subscribers "
|
1259 |
"Aktivierungslink in einer Aktivierungsmail bestätigen müssen.<br />Einfaches Opt In "
|
1260 |
"bedeutet, dass Abonnenten ihre Emailadresse nicht bestätigen müssen."
|
1261 |
|
1262 |
+
#: settings/settings-edit.php:107
|
1263 |
msgid "Double Opt In"
|
1264 |
msgstr "Doppeltes Opt In"
|
1265 |
|
1266 |
+
#: settings/settings-edit.php:108 subscribers/view-subscriber-add.php:151
|
1267 |
#: subscribers/view-subscriber-edit.php:150 subscribers/view-subscriber-import.php:178
|
1268 |
+
#: subscribers/view-subscriber-show.php:312 subscribers/view-subscriber-show.php:339
|
1269 |
msgid "Single Opt In"
|
1270 |
msgstr "Einfaches Opt In"
|
1271 |
|
1272 |
+
#: settings/settings-edit.php:114
|
1273 |
msgid "Image Size"
|
1274 |
msgstr "Bildgröße"
|
1275 |
|
1276 |
+
#: settings/settings-edit.php:115
|
1277 |
msgid ""
|
1278 |
"Select image size for ###POSTIMAGE### to be shown in the Post Notification Emails."
|
1279 |
msgstr ""
|
1280 |
"Wähle die Bildgröße für ###POSTIMAGE### wie es in Benachrichtigungsmails angezeigt "
|
1281 |
"wird."
|
1282 |
|
1283 |
+
#: settings/settings-edit.php:119
|
1284 |
msgid "Full Size"
|
1285 |
msgstr "Volle Größe"
|
1286 |
|
1287 |
+
#: settings/settings-edit.php:120
|
1288 |
msgid "Medium Size"
|
1289 |
msgstr "Mittlere Größe"
|
1290 |
|
1291 |
+
#: settings/settings-edit.php:121
|
1292 |
msgid "Thumbnail"
|
1293 |
msgstr "Vorschau"
|
1294 |
|
1295 |
+
#: settings/settings-edit.php:127
|
1296 |
+
msgid "Admin Email Addresses"
|
1297 |
+
msgstr "Admin Emailadresse"
|
1298 |
+
|
1299 |
+
#: settings/settings-edit.php:128
|
1300 |
+
msgid ""
|
1301 |
+
"Enter the admin email addresses that should receive notifications (separated by "
|
1302 |
+
"comma)."
|
1303 |
+
msgstr ""
|
1304 |
+
"Gib die Emailadressen der Admins ein die Benachrichtigungen bekommen sollen (durch "
|
1305 |
+
"Kommas getrennt)."
|
1306 |
+
|
1307 |
+
#: settings/settings-edit.php:134
|
1308 |
+
msgid "Notify admin when a new subscriber signs up"
|
1309 |
+
msgstr "Nachricht an den Admin bei neuem Abonnent"
|
1310 |
+
|
1311 |
+
#: settings/settings-edit.php:135
|
1312 |
+
msgid ""
|
1313 |
+
"To send admin email notifications for the new subscriber. This option must be set to "
|
1314 |
+
"YES."
|
1315 |
+
msgstr ""
|
1316 |
+
"Sende eine Benachrichtigungsmail an den Admin wenn ein neuer Abonnent dazugekommen "
|
1317 |
+
"ist. Diese Option muss auf JA stehen."
|
1318 |
+
|
1319 |
+
#: settings/settings-edit.php:147
|
1320 |
+
msgid "Admin Email Subject when a new subscriber signs up"
|
1321 |
+
msgstr "Subjekt der Email an den Admin wenn ein neuer Abonnent sich angemeldet hat"
|
1322 |
+
|
1323 |
+
#: settings/settings-edit.php:148
|
1324 |
+
msgid ""
|
1325 |
+
"Enter the subject for the admin email which will be sent whenever a new email is "
|
1326 |
+
"added and confirmed."
|
1327 |
+
msgstr ""
|
1328 |
+
"Gib das Subjekt für die Email an die Admins ein das verwendet wird wenn eine neue "
|
1329 |
+
"Emailadresse hinzugefügt und bestätigt wurde."
|
1330 |
+
|
1331 |
+
#: settings/settings-edit.php:154
|
1332 |
+
msgid "Admin Email Content when a new subscriber signs up"
|
1333 |
+
msgstr "Inhalt der Email an den Admin wenn ein neuer Abonnent sich angemeldet hat"
|
1334 |
+
|
1335 |
+
#: settings/settings-edit.php:155
|
1336 |
+
msgid ""
|
1337 |
+
"Enter the email content for the admin email which will be sent whenever a new email "
|
1338 |
+
"is added and confirmed. (Keyword: ###NAME###, ###EMAIL###)"
|
1339 |
+
msgstr ""
|
1340 |
+
"Gib den Inhalt für die Email an die Admins ein der verwendet wird wenn eine neue "
|
1341 |
+
"Emailadresse hinzugefügt und bestätigt wurde. (Schlüsselworte: ###NAME###, "
|
1342 |
+
"###EMAIL###)"
|
1343 |
+
|
1344 |
+
#: settings/settings-edit.php:162
|
1345 |
+
msgid "Sent Report Subject"
|
1346 |
+
msgstr "Subjekt des Sendeberichts"
|
1347 |
+
|
1348 |
+
#: settings/settings-edit.php:163
|
1349 |
+
msgid "Enter the subject for the sent email report. It will be emailed to Admin."
|
1350 |
+
msgstr ""
|
1351 |
+
"Gib das Subjekt für die Mail mit den Sendeberichten ein. Diese wird an den Admin "
|
1352 |
+
"geschickt."
|
1353 |
+
|
1354 |
+
#: settings/settings-edit.php:169
|
1355 |
+
msgid "Sent Report Content"
|
1356 |
+
msgstr "Inhalt des Sendeberichts"
|
1357 |
+
|
1358 |
+
#: settings/settings-edit.php:170
|
1359 |
+
msgid ""
|
1360 |
+
"Enter the content for the sent email report. It will be emailed to Admin. (Keyword: "
|
1361 |
+
"###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
|
1362 |
+
msgstr ""
|
1363 |
+
"Gib den Inhalt des Sendeberichts ein. Dieser wird dem Admin geschickt. "
|
1364 |
+
"(Schlüsselworte: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
|
1365 |
+
|
1366 |
+
#: settings/settings-edit.php:179
|
1367 |
msgid "Double Opt In Email Subject (Confirmation Email)"
|
1368 |
msgstr "Subjekt der Bestätigungsmail (Doppeltes Opt In)"
|
1369 |
|
1370 |
+
#: settings/settings-edit.php:180
|
1371 |
msgid ""
|
1372 |
"Enter the subject for the confirmation email to be sent for Double Opt In whenever a "
|
1373 |
"user signs up."
|
1375 |
"Gib hier das Subjekt ein das in der Bestätigungsmail bei Doppeltem Opt In verschickt "
|
1376 |
"wird wenn sich ein neuer Benutzer anmeldet."
|
1377 |
|
1378 |
+
#: settings/settings-edit.php:186
|
1379 |
msgid "Double Opt In Email Content (Confirmation Email)"
|
1380 |
msgstr "Inhalt der Bestätigungsmail (Doppeltes Opt In)"
|
1381 |
|
1382 |
+
#: settings/settings-edit.php:187
|
1383 |
msgid ""
|
1384 |
"Enter the content for the confirmation email to be sent for Double Opt In whenever a "
|
1385 |
"user signs up. (Keyword: ###NAME###, ###LINK###)"
|
1387 |
"Gib hier den Text ein der in der Bestätigungsmail bei Doppeltem Opt In verschickt "
|
1388 |
"wird wenn sich ein neuer Benutzer anmeldet. (Schlüsselworte: ###NAME###, ###LINK###)"
|
1389 |
|
1390 |
+
#: settings/settings-edit.php:193
|
1391 |
msgid "Double Opt In Confirmation Link"
|
1392 |
msgstr "Bestätigungslink für Doppeltes Opt In"
|
1393 |
|
1394 |
+
#: settings/settings-edit.php:194
|
1395 |
msgid "It is a readonly field and you are advised not to modify it."
|
1396 |
msgstr "Das ist ein\"Nur-Lesen\"-Feld und es wird empfohlen dieses nicht zu verändern."
|
1397 |
|
1398 |
+
#: settings/settings-edit.php:200
|
1399 |
msgid ""
|
1400 |
"Text to display after an email address is successfully subscribed from Double Opt In "
|
1401 |
"(confirmation) Email"
|
1403 |
"Text der nach erfolgreicher Registrierung aus der Bestätigungsmail bei Doppelt Opt "
|
1404 |
"In angezeigt wird"
|
1405 |
|
1406 |
+
#: settings/settings-edit.php:201
|
1407 |
msgid ""
|
1408 |
"This text will be displayed once user clicks on email confirmation link from the "
|
1409 |
"Double Opt In (confirmation) Email."
|
1411 |
"Dieser Text wird angezeigt nachdem der Benutzer auf den Bestätigungslink in der "
|
1412 |
"Double Opt In Bestätigungsmail klickt."
|
1413 |
|
1414 |
+
#: settings/settings-edit.php:208
|
1415 |
msgid "Subscriber Welcome Email"
|
1416 |
msgstr "Wilkommensemail für Abonnenten"
|
1417 |
|
1418 |
+
#: settings/settings-edit.php:209
|
1419 |
msgid ""
|
1420 |
"To send welcome email to subscriber after successful signup. This option must be set "
|
1421 |
"to YES."
|
1423 |
"Sende eine Willkommensmail an den Abonnenten nachdem er efolgreich registriert ist. "
|
1424 |
"Diese Option muss auf JA stehen."
|
1425 |
|
1426 |
+
#: settings/settings-edit.php:220
|
1427 |
msgid "Subscriber Welcome Email Subject"
|
1428 |
msgstr "Subjekt der Wilkommensemail für Abonnenten"
|
1429 |
|
1430 |
+
#: settings/settings-edit.php:221
|
1431 |
msgid ""
|
1432 |
"Enter the subject for the subscriber welcome email. This will be sent whenever a "
|
1433 |
"user's email is either confirmed (if Double Opt In) / subscribed (if Single Opt In) "
|
1437 |
"Emailadresse entweder erfolgreich bestätigt (Double Opt In) oder angemeldet (Single "
|
1438 |
"Opt In) ist."
|
1439 |
|
1440 |
+
#: settings/settings-edit.php:227
|
1441 |
msgid "Subscriber Welcome Email Content"
|
1442 |
msgstr "Inhalt der Wilkommensemail für Abonnenten"
|
1443 |
|
1444 |
+
#: settings/settings-edit.php:236
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1445 |
msgid "Unsubscribe Link"
|
1446 |
msgstr "Link zum Abmelden"
|
1447 |
|
1448 |
+
#: settings/settings-edit.php:237
|
1449 |
msgid ""
|
1450 |
"The unsubscribe link gets added automatically to all emails that are sent from this "
|
1451 |
"plugin. It is a readonly field and you are advised not to modify it."
|
1454 |
"verschickt werden. Es ist ein \"Nur-Lesen\"-Feld und es wird empohlen das nicht zu "
|
1455 |
"ändern."
|
1456 |
|
1457 |
+
#: settings/settings-edit.php:243
|
1458 |
msgid "Unsubscribe Text in Email"
|
1459 |
msgstr "Inhalt der Abmeldeemail"
|
1460 |
|
1461 |
+
#: settings/settings-edit.php:244
|
1462 |
msgid ""
|
1463 |
"Enter the text for the unsubscribe link. This text is added with unsubscribe link in "
|
1464 |
"the emails. (Keyword: ###LINK###)"
|
1465 |
msgstr ""
|
1466 |
"Gib den Text für den Abmeldungslink ein. Dieser Text wird mit dem Abmeldelink an die "
|
1467 |
+
"Emails angehängt. (Keyword: ###LINK###)"
|
1468 |
|
1469 |
+
#: settings/settings-edit.php:250
|
1470 |
msgid "Text to display after an email address is unsubscribed"
|
1471 |
msgstr "Dieser Text wird nach der Abmeldung angezeigt"
|
1472 |
|
1473 |
+
#: settings/settings-edit.php:251
|
1474 |
msgid "This text will be displayed once user clicks on unsubscribe link."
|
1475 |
msgstr "Dieser Text wird angezeigt nachdem der Benutzer auf den Abmeldelink klickt."
|
1476 |
|
1477 |
+
#: settings/settings-edit.php:258
|
1478 |
msgid "Error in the Confirmation Link"
|
1479 |
msgstr "Fehler im Bestätigungslink"
|
1480 |
|
1481 |
+
#: settings/settings-edit.php:259
|
1482 |
msgid ""
|
1483 |
"Default message to display if there is any issue while clicking on confirmation link "
|
1484 |
"from the Double Opt In (confirmation) Emails."
|
1486 |
"Standartnachricht wenn ein Problem mit dem Bestätigungslink der Doppelten Opt In "
|
1487 |
"Bestätigungsmail besteht."
|
1488 |
|
1489 |
+
#: settings/settings-edit.php:265
|
1490 |
msgid "Error in the Unsubscribe Link"
|
1491 |
msgstr "Fehler im Abmeldelink"
|
1492 |
|
1493 |
+
#: settings/settings-edit.php:266
|
1494 |
msgid ""
|
1495 |
"Default message to display if there is any issue while clicking on unsubscribe link "
|
1496 |
"from the Emails."
|
1497 |
msgstr ""
|
1498 |
"Standartnachricht wenn ein Problem mit dem Abmeldungslink in den Emails besteht."
|
1499 |
|
1500 |
+
#: settings/settings-edit.php:276
|
1501 |
+
msgid "Select user roles who can access following menus. Only Admin can change this."
|
|
|
|
|
|
|
|
|
|
|
|
|
1502 |
msgstr ""
|
1503 |
+
"Wähle die Benutzerrollen die auf die folgenden Menüs zugreifen dürfen. Nur ein Admin "
|
1504 |
+
"kann das ändern."
|
1505 |
|
1506 |
+
#: settings/settings-edit.php:282
|
1507 |
+
msgid "Subscribers Menu"
|
1508 |
+
msgstr "Menü Abonnenten"
|
1509 |
+
|
1510 |
+
#: settings/settings-edit.php:286 settings/settings-edit.php:298
|
1511 |
+
#: settings/settings-edit.php:310 settings/settings-edit.php:322
|
1512 |
+
#: settings/settings-edit.php:334
|
1513 |
+
msgid "Administrator Only"
|
1514 |
+
msgstr "Nur für Administratoren"
|
1515 |
+
|
1516 |
+
#: settings/settings-edit.php:287 settings/settings-edit.php:299
|
1517 |
+
#: settings/settings-edit.php:311 settings/settings-edit.php:323
|
1518 |
+
#: settings/settings-edit.php:335
|
1519 |
+
msgid "Administrator/Editor"
|
1520 |
+
msgstr "Für Administratoren / Editoren"
|
1521 |
+
|
1522 |
+
#: settings/settings-edit.php:288 settings/settings-edit.php:300
|
1523 |
+
#: settings/settings-edit.php:312 settings/settings-edit.php:324
|
1524 |
+
#: settings/settings-edit.php:336
|
1525 |
+
msgid "Administrator/Editor/Author/Contributor"
|
1526 |
+
msgstr "Für Administratoren / Editoren / Autoren / Mitarbeiter"
|
1527 |
+
|
1528 |
+
#: settings/settings-edit.php:294
|
1529 |
+
msgid "Compose Menu"
|
1530 |
+
msgstr "Menü Erstellen"
|
1531 |
+
|
1532 |
+
#: settings/settings-edit.php:306
|
1533 |
+
msgid "Post Notifications Menu"
|
1534 |
+
msgstr "Menü Benachrichtigungen"
|
1535 |
|
1536 |
+
#: settings/settings-edit.php:330
|
1537 |
+
msgid "Reports Menu"
|
1538 |
+
msgstr "Menü Berichte"
|
1539 |
+
|
1540 |
+
#: settings/settings-edit.php:345
|
1541 |
+
msgid "Cron job URL"
|
1542 |
+
msgstr "Cron Job URL"
|
1543 |
+
|
1544 |
+
#: settings/settings-edit.php:346
|
1545 |
msgid ""
|
1546 |
+
"This is your Cron Job URL. It is a readonly field and you are advised not to modify "
|
1547 |
+
"it."
|
1548 |
+
msgstr "Das ist Deine Cron Job URL. Es wird empfohlen diese nicht zu ändern."
|
1549 |
+
|
1550 |
+
#: settings/settings-edit.php:355
|
1551 |
+
msgid "Email Count"
|
1552 |
+
msgstr "Anzahl Emails"
|
1553 |
+
|
1554 |
+
#: settings/settings-edit.php:356
|
1555 |
+
msgid "Number of emails that you want to trigger per hour."
|
1556 |
+
msgstr "Anzahl der Emails die pro Stunde verschickt werden sollen."
|
1557 |
+
|
1558 |
+
#: settings/settings-edit.php:361
|
1559 |
+
msgid "(Your web host has limits. We suggest 50 emails per hour to be safe)"
|
1560 |
msgstr ""
|
1561 |
+
"(Dein Webhoster hat Beschränkungen. Wir empfehlen 50 Emails pro Stunde um auf der "
|
1562 |
+
"sicheren Seite zu sein)"
|
1563 |
|
1564 |
+
#: settings/settings-edit.php:366
|
1565 |
+
msgid "Admin Report"
|
1566 |
+
msgstr "Admin Bericht"
|
1567 |
|
1568 |
+
#: settings/settings-edit.php:367
|
1569 |
msgid ""
|
1570 |
+
"Email to admin whenever cron URL is triggered from your server. (Keywords: "
|
1571 |
+
"###DATE###, ###SUBJECT###, ###COUNT###)"
|
1572 |
msgstr ""
|
1573 |
+
"Email an den Admin wenn eine Cron URL vom Server aufgerufen wird. (Schlüsselworte: "
|
1574 |
+
"###DATE###, ###SUBJECT###, ###COUNT###)"
|
1575 |
|
1576 |
#: settings/settings-edit.php:377
|
1577 |
+
msgid "What is Cron (auto emails) and how to setup Cron Job?"
|
1578 |
+
msgstr "Was ist Cron (Auto-Mailversand) und wie konfiguriere ich einen Cron Job?"
|
1579 |
|
1580 |
#: settings/settings-edit.php:378
|
1581 |
msgid ""
|
1582 |
+
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
|
1583 |
+
"cron-emails/\">What is Cron?</a>"
|
1584 |
msgstr ""
|
1585 |
+
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
|
1586 |
+
"cron-emails/\">Was ist Cron?</a>"
|
|
|
|
|
|
|
|
|
|
|
1587 |
|
1588 |
+
#: settings/settings-edit.php:379
|
1589 |
+
msgid ""
|
1590 |
+
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
|
1591 |
+
"cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
|
1592 |
msgstr ""
|
1593 |
+
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
|
1594 |
+
"cron-emails-in-parallels-plesk/\">Cron Job in Plesk konfigurieren</a>"
|
1595 |
|
1596 |
+
#: settings/settings-edit.php:380
|
1597 |
+
msgid ""
|
1598 |
+
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
|
1599 |
+
"cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
|
1600 |
+
msgstr ""
|
1601 |
+
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-schedule-"
|
1602 |
+
"cron-emails-in-cpanel/\">Cron Job in cPanel konfigurieren</a>"
|
1603 |
|
1604 |
+
#: settings/settings-edit.php:381
|
1605 |
msgid ""
|
1606 |
+
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-if-"
|
1607 |
+
"hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?</a>"
|
1608 |
msgstr ""
|
1609 |
+
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-if-"
|
1610 |
+
"hosting-doesnt-support-cron-jobs/\">Dein Hoster unterstützt keine Cron Jobs?</a>"
|
1611 |
|
1612 |
+
#: settings/settings-edit.php:495
|
1613 |
+
msgid "Please enter sender of notifications from name."
|
1614 |
+
msgstr "Bitte wähle den Absender der Benachrichtigung über den Namen."
|
1615 |
+
|
1616 |
+
#: settings/settings-edit.php:500
|
1617 |
+
msgid "Please enter sender of notifications from email."
|
1618 |
+
msgstr "Bitte wähle den Absender der Benachrichtigung über die Emailadresse."
|
1619 |
+
|
1620 |
+
#: settings/settings-edit.php:544
|
1621 |
+
msgid "Please enter valid mail count."
|
1622 |
+
msgstr "Bitte gib eine gültige Mailanzahl ein."
|
1623 |
+
|
1624 |
+
#: settings/settings-edit.php:557
|
1625 |
+
msgid "Settings Saved."
|
1626 |
+
msgstr "Einstellungen gesichert."
|
1627 |
+
|
1628 |
+
#: settings/settings-edit.php:560
|
1629 |
+
msgid "Oops, unable to update."
|
1630 |
+
msgstr "Oops.. Update nicht möglich."
|
1631 |
|
1632 |
#: subscribers/view-subscriber-add.php:36 subscribers/view-subscriber-edit.php:54
|
1633 |
msgid "Please enter subscriber email address."
|
1658 |
msgstr "Ungültige Emailadresse."
|
1659 |
|
1660 |
#: subscribers/view-subscriber-add.php:110 subscribers/view-subscriber-edit.php:109
|
1661 |
+
#: subscribers/view-subscriber-export.php:35 subscribers/view-subscriber-import.php:143
|
1662 |
#: subscribers/view-subscriber-show.php:242 subscribers/view-subscriber-sync.php:89
|
1663 |
msgid "Add New Subscriber"
|
1664 |
msgstr "Neu hinzufügen"
|
1665 |
|
1666 |
#: subscribers/view-subscriber-add.php:111 subscribers/view-subscriber-edit.php:110
|
1667 |
+
#: subscribers/view-subscriber-export.php:36 subscribers/view-subscriber-import.php:210
|
1668 |
#: subscribers/view-subscriber-show.php:243 subscribers/view-subscriber-sync.php:90
|
1669 |
msgid "Import"
|
1670 |
msgstr "Import"
|
1676 |
msgstr "Export"
|
1677 |
|
1678 |
#: subscribers/view-subscriber-add.php:113 subscribers/view-subscriber-edit.php:112
|
1679 |
+
#: subscribers/view-subscriber-export.php:37 subscribers/view-subscriber-import.php:145
|
1680 |
#: subscribers/view-subscriber-show.php:245 subscribers/view-subscriber-sync.php:143
|
1681 |
msgid "Sync"
|
1682 |
msgstr "Synchronisieren"
|
1694 |
msgstr "Wähle den Status des Abonnenten"
|
1695 |
|
1696 |
#: subscribers/view-subscriber-add.php:148 subscribers/view-subscriber-edit.php:147
|
1697 |
+
#: subscribers/view-subscriber-import.php:175 subscribers/view-subscriber-show.php:309
|
1698 |
+
#: subscribers/view-subscriber-show.php:336
|
1699 |
msgid "Confirmed"
|
1700 |
msgstr "Bestätigt"
|
1701 |
|
1702 |
#: subscribers/view-subscriber-add.php:149 subscribers/view-subscriber-edit.php:148
|
1703 |
+
#: subscribers/view-subscriber-import.php:176 subscribers/view-subscriber-show.php:310
|
1704 |
+
#: subscribers/view-subscriber-show.php:337
|
1705 |
msgid "Unconfirmed"
|
1706 |
msgstr "Unbestätigt"
|
1707 |
|
1708 |
#: subscribers/view-subscriber-add.php:150 subscribers/view-subscriber-edit.php:149
|
1709 |
+
#: subscribers/view-subscriber-import.php:177 subscribers/view-subscriber-show.php:311
|
1710 |
+
#: subscribers/view-subscriber-show.php:338
|
1711 |
msgid "Unsubscribed"
|
1712 |
msgstr "Abgemeldet"
|
1713 |
|
1755 |
msgid "Update Subscriber's Group"
|
1756 |
msgstr "Gruppe des Abonnenten aktualisieren"
|
1757 |
|
1758 |
+
#: subscribers/view-subscriber-export.php:34
|
1759 |
msgid "Export Email Addresses"
|
1760 |
msgstr "Emailadressen exportieren"
|
1761 |
|
1762 |
+
#: subscribers/view-subscriber-export.php:46 subscribers/view-subscriber-export.php:54
|
1763 |
msgid "Type of List to Export"
|
1764 |
msgstr "Listentyp für den Export"
|
1765 |
|
1766 |
+
#: subscribers/view-subscriber-export.php:47 subscribers/view-subscriber-export.php:55
|
1767 |
msgid "Total Emails Count"
|
1768 |
msgstr "Gesamte Anzahl Emails"
|
1769 |
|
1770 |
+
#: subscribers/view-subscriber-export.php:61
|
1771 |
msgid "1"
|
1772 |
msgstr "1"
|
1773 |
|
1774 |
+
#: subscribers/view-subscriber-export.php:64 subscribers/view-subscriber-export.php:70
|
1775 |
+
#: subscribers/view-subscriber-export.php:76 subscribers/view-subscriber-export.php:82
|
1776 |
+
#: subscribers/view-subscriber-export.php:88
|
|
|
|
|
|
|
1777 |
msgid "Click to Export in CSV"
|
1778 |
msgstr "Klicken um nach CSV zu exportieren"
|
1779 |
|
1780 |
+
#: subscribers/view-subscriber-export.php:67
|
1781 |
msgid "2"
|
1782 |
msgstr "2"
|
1783 |
|
1784 |
+
#: subscribers/view-subscriber-export.php:73
|
|
|
|
|
|
|
|
|
1785 |
msgid "3"
|
1786 |
msgstr "3"
|
1787 |
|
1788 |
+
#: subscribers/view-subscriber-export.php:80
|
1789 |
+
msgid "WordPress Registered Users"
|
1790 |
+
msgstr "Registrierte WordPress Benutzer"
|
1791 |
+
|
1792 |
+
#: subscribers/view-subscriber-export.php:86
|
1793 |
msgid "Commented Authors"
|
1794 |
msgstr "Kommentierte Autoren"
|
1795 |
|
1807 |
|
1808 |
#: subscribers/view-subscriber-import.php:93
|
1809 |
msgid "email already exists."
|
1810 |
+
msgstr "Email existiert bereits."
|
1811 |
|
1812 |
#: subscribers/view-subscriber-import.php:94
|
1813 |
msgid "email are invalid."
|
1814 |
+
msgstr "Email sind ungültig."
|
1815 |
|
1816 |
#: subscribers/view-subscriber-import.php:97 subscribers/view-subscriber-import.php:126
|
1817 |
msgid "Click here"
|
1819 |
|
1820 |
#: subscribers/view-subscriber-import.php:97 subscribers/view-subscriber-import.php:126
|
1821 |
msgid " to view details."
|
1822 |
+
msgstr " um Details zu sehen."
|
1823 |
|
1824 |
#: subscribers/view-subscriber-import.php:105
|
1825 |
msgid "File Upload Failed."
|
1826 |
+
msgstr "Dateiupload fehlgeschlagen."
|
1827 |
|
1828 |
#: subscribers/view-subscriber-import.php:142
|
1829 |
msgid "Import Email Addresses"
|
1835 |
|
1836 |
#: subscribers/view-subscriber-import.php:157
|
1837 |
msgid "Check CSV structure "
|
1838 |
+
msgstr "Überprüfe die CSV-Struktur "
|
1839 |
|
1840 |
#: subscribers/view-subscriber-import.php:158
|
1841 |
msgid "from here"
|
1892 |
msgid "Please select New Status to update."
|
1893 |
msgstr "Bitte wähle den neuen Status aus."
|
1894 |
|
1895 |
+
#: subscribers/view-subscriber-show.php:286
|
1896 |
msgid "Bulk Actions"
|
1897 |
msgstr "Mehrfachaktionen"
|
1898 |
|
1899 |
+
#: subscribers/view-subscriber-show.php:288 subscribers/view-subscriber-show.php:417
|
1900 |
msgid "Resend Confirmation"
|
1901 |
msgstr "Benachrichtigung erneut versenden"
|
1902 |
|
1903 |
+
#: subscribers/view-subscriber-show.php:290
|
1904 |
msgid "Update Subscribers Status"
|
1905 |
msgstr "Abonnentenstatus aktualisieren"
|
1906 |
|
1907 |
+
#: subscribers/view-subscriber-show.php:293
|
1908 |
msgid "Select Group"
|
1909 |
msgstr "Wähle Gruppe"
|
1910 |
|
1911 |
+
#: subscribers/view-subscriber-show.php:308
|
1912 |
msgid "Select Status"
|
1913 |
msgstr "Status wählen"
|
1914 |
|
1915 |
+
#: subscribers/view-subscriber-show.php:314
|
1916 |
msgid "Apply"
|
1917 |
msgstr "Anwenden"
|
1918 |
|
1919 |
+
#: subscribers/view-subscriber-show.php:318
|
1920 |
msgid "All Groups"
|
1921 |
msgstr "Alle Gruppen"
|
1922 |
|
1923 |
+
#: subscribers/view-subscriber-show.php:335
|
1924 |
msgid "All Status"
|
1925 |
msgstr "Alle Stati"
|
1926 |
|
1927 |
+
#: subscribers/view-subscriber-show.php:349
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1928 |
msgid "Display All"
|
1929 |
msgstr "Alle anzeigen"
|
1930 |
|
1931 |
+
#: subscribers/view-subscriber-show.php:360 subscribers/view-subscriber-show.php:373
|
1932 |
msgid "Email Address"
|
1933 |
msgstr "Emailadresse"
|
1934 |
|
1935 |
+
#: subscribers/view-subscriber-show.php:363 subscribers/view-subscriber-show.php:376
|
1936 |
msgid "Group"
|
1937 |
msgstr "Gruppe"
|
1938 |
|
|
|
|
|
|
|
|
|
1939 |
#: subscribers/view-subscriber-sync.php:36
|
1940 |
msgid "Please select default group to newly registered user."
|
1941 |
msgstr "Bitte wähle die Standartgruppe für neu registrierte Benutzer."
|
1971 |
"subscribers about new blog posts once it is published."
|
1972 |
msgstr ""
|
1973 |
"Füge das Anmeldeformular zur Webseite hinzu, sende HTML Newsletter & automatische "
|
1974 |
+
"Benachrichtigungen an die Abonnenten sobald neue Beiträge veröffentlicht werden."
|
1975 |
|
1976 |
#. Author of the plugin/theme
|
1977 |
msgid "Icegram"
|
languages/email-subscribers-fr_FR.mo
CHANGED
Binary file
|
languages/email-subscribers-fr_FR.po
CHANGED
@@ -2,1744 +2,2146 @@
|
|
2 |
# This file is distributed under the same license as the Plugins - Email Subscribers & Newsletters - Development (trunk) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
10 |
-
"X-Generator: Poedit
|
11 |
-
"Language: fr\n"
|
12 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.2.6\n"
|
13 |
-
"POT-Creation-Date: \n"
|
14 |
-
"Last-Translator: \n"
|
15 |
-
"Language-Team: Serge Rauber <contact@kalyx.fr>\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
|
18 |
-
#:
|
19 |
-
msgid "
|
20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
|
22 |
-
#:
|
23 |
-
msgid "
|
24 |
-
msgstr "
|
25 |
|
26 |
-
#:
|
27 |
-
msgid "
|
28 |
-
msgstr "
|
29 |
|
30 |
-
#:
|
31 |
-
msgid "
|
32 |
-
msgstr "
|
33 |
|
34 |
-
#:
|
35 |
-
msgid "
|
36 |
-
msgstr "
|
37 |
|
38 |
-
#:
|
39 |
-
msgid "
|
40 |
-
msgstr "
|
41 |
|
42 |
-
#:
|
43 |
-
msgid "
|
44 |
-
msgstr "
|
45 |
|
46 |
-
#:
|
47 |
-
msgid "
|
48 |
-
msgstr "
|
49 |
|
50 |
-
#:
|
51 |
-
msgid "
|
52 |
-
msgstr "
|
53 |
|
54 |
-
#:
|
55 |
-
msgid "
|
56 |
-
msgstr "
|
57 |
|
58 |
-
#:
|
59 |
-
msgid "
|
60 |
-
msgstr "
|
61 |
|
62 |
-
#:
|
63 |
-
msgid "
|
64 |
-
msgstr "
|
65 |
|
66 |
-
#:
|
67 |
-
|
68 |
-
|
|
|
|
|
69 |
|
70 |
-
#:
|
71 |
-
msgid "
|
72 |
-
msgstr "
|
73 |
|
74 |
-
#:
|
75 |
-
msgid "
|
76 |
-
msgstr "
|
77 |
|
78 |
-
#:
|
79 |
-
|
80 |
-
|
|
|
81 |
|
82 |
-
#:
|
83 |
-
|
84 |
-
|
|
|
85 |
|
86 |
-
#:
|
87 |
-
|
88 |
-
|
|
|
89 |
|
90 |
-
#:
|
91 |
-
|
92 |
-
|
|
|
93 |
|
94 |
-
#:
|
95 |
-
|
96 |
-
|
|
|
97 |
|
98 |
-
#:
|
99 |
-
|
100 |
-
|
|
|
101 |
|
102 |
-
#:
|
103 |
-
|
104 |
-
|
|
|
105 |
|
106 |
-
#:
|
107 |
-
msgid "
|
108 |
-
msgstr "
|
109 |
|
110 |
-
#:
|
111 |
-
msgid "
|
112 |
-
msgstr "
|
113 |
|
114 |
-
#:
|
115 |
-
|
116 |
-
|
|
|
117 |
|
118 |
-
#:
|
119 |
-
|
120 |
-
|
|
|
121 |
|
122 |
-
#:
|
123 |
-
|
124 |
-
|
|
|
125 |
|
126 |
-
#:
|
127 |
-
|
128 |
-
|
|
|
129 |
|
130 |
-
#:
|
131 |
-
|
132 |
-
|
|
|
133 |
|
134 |
-
#:
|
135 |
-
|
136 |
-
|
|
|
137 |
|
138 |
-
#:
|
139 |
-
|
140 |
-
|
|
|
|
|
|
|
|
|
|
|
141 |
|
142 |
-
#:
|
143 |
-
|
144 |
-
|
|
|
145 |
|
146 |
-
#:
|
147 |
-
|
148 |
-
|
|
|
149 |
|
150 |
-
#:
|
151 |
-
|
152 |
-
|
|
|
153 |
|
154 |
-
#:
|
155 |
-
|
156 |
-
|
|
|
157 |
|
158 |
-
#:
|
159 |
-
|
160 |
-
|
|
|
|
|
|
|
|
|
|
|
161 |
|
162 |
-
#:
|
163 |
-
|
164 |
-
|
|
|
165 |
|
166 |
-
#:
|
167 |
-
|
168 |
-
|
|
|
169 |
|
170 |
-
#: classes/es-register.php:
|
171 |
-
|
172 |
-
msgid "
|
173 |
-
msgstr "
|
174 |
|
175 |
-
#: classes/es-register.php:
|
176 |
-
|
177 |
-
msgid "
|
178 |
-
|
|
|
|
|
|
|
179 |
|
180 |
-
#: classes/es-register.php:
|
181 |
-
|
182 |
-
msgid "
|
183 |
-
msgstr "
|
184 |
|
185 |
-
#: classes/es-register.php:
|
186 |
-
|
187 |
-
|
|
|
188 |
|
189 |
-
#: classes/es-register.php:
|
190 |
-
|
191 |
-
msgid "
|
192 |
-
msgstr "
|
193 |
|
194 |
-
#:
|
195 |
-
|
196 |
-
msgid "
|
197 |
-
msgstr "
|
198 |
|
199 |
-
#:
|
200 |
-
|
201 |
-
|
|
|
|
|
|
|
|
|
|
|
202 |
|
203 |
-
#: classes/es-register.php:
|
204 |
-
|
205 |
-
msgid "
|
206 |
-
msgstr "
|
207 |
|
208 |
-
#:
|
209 |
-
|
210 |
-
|
|
|
211 |
|
212 |
-
#:
|
213 |
-
|
214 |
-
|
|
|
|
|
|
|
215 |
|
216 |
-
#:
|
217 |
-
|
218 |
-
|
|
|
219 |
|
220 |
-
#:
|
221 |
-
|
222 |
-
|
|
|
223 |
|
224 |
-
#:
|
225 |
-
|
226 |
-
|
|
|
227 |
|
228 |
-
#:
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
msgid "No record was selected."
|
233 |
-
msgstr "Aucun élément n'est sélectionné."
|
234 |
|
235 |
-
#:
|
236 |
-
|
237 |
-
|
|
|
238 |
|
239 |
-
#:
|
240 |
-
|
241 |
-
|
|
|
242 |
|
243 |
-
#: classes/es-register.php:
|
244 |
-
msgctxt "
|
245 |
-
msgid "
|
246 |
-
|
|
|
|
|
|
|
|
|
|
|
247 |
|
248 |
-
#: classes/es-register.php:
|
249 |
-
msgctxt "
|
250 |
-
msgid "
|
251 |
-
msgstr "
|
252 |
|
253 |
-
|
254 |
-
|
255 |
-
|
|
|
256 |
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
msgid "http://www.icegram.com/"
|
262 |
-
msgstr "http://www.icegram.com/"
|
263 |
|
264 |
-
#: classes/es-register.php:
|
265 |
-
msgctxt "
|
266 |
-
msgid "
|
267 |
-
msgstr "
|
268 |
|
269 |
-
#:
|
270 |
-
|
271 |
-
|
|
|
272 |
|
273 |
-
#:
|
274 |
-
|
275 |
-
|
|
|
276 |
|
277 |
-
#:
|
278 |
-
|
279 |
-
|
|
|
280 |
|
281 |
-
#:
|
282 |
-
|
283 |
-
|
|
|
284 |
|
285 |
-
#:
|
286 |
-
|
287 |
-
|
|
|
288 |
|
289 |
-
#:
|
290 |
-
|
291 |
-
|
|
|
292 |
|
293 |
-
#:
|
294 |
-
|
295 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
296 |
|
297 |
-
#:
|
298 |
-
|
299 |
-
|
|
|
300 |
|
301 |
-
#:
|
302 |
-
|
303 |
-
|
|
|
304 |
|
305 |
-
#:
|
306 |
-
|
307 |
-
|
|
|
308 |
|
309 |
-
#:
|
310 |
-
|
311 |
-
|
|
|
312 |
|
313 |
-
#:
|
314 |
-
|
315 |
-
|
|
|
316 |
|
317 |
-
#:
|
318 |
-
msgid "
|
319 |
-
msgstr "
|
320 |
|
321 |
-
#:
|
322 |
-
|
323 |
-
|
324 |
-
msgstr "Enregistrement supprimé."
|
325 |
|
326 |
-
#:
|
327 |
-
msgid "
|
328 |
-
msgstr "
|
329 |
|
330 |
-
#:
|
331 |
-
msgid "
|
332 |
-
msgstr "
|
333 |
|
334 |
-
#:
|
335 |
-
msgid "
|
336 |
-
msgstr "
|
337 |
|
338 |
-
#:
|
339 |
-
msgid "
|
340 |
-
msgstr "
|
341 |
|
342 |
-
#:
|
343 |
-
msgid "
|
344 |
-
msgstr "
|
345 |
|
346 |
-
#:
|
347 |
-
msgid "
|
348 |
-
msgstr "
|
349 |
|
350 |
-
#:
|
351 |
-
|
352 |
-
|
353 |
-
msgstr " pour voir les détails."
|
354 |
|
355 |
-
#:
|
356 |
-
msgid "
|
357 |
-
msgstr "
|
358 |
|
359 |
-
#:
|
360 |
-
msgid "
|
361 |
-
msgstr "
|
362 |
|
363 |
-
#:
|
364 |
-
msgid "
|
365 |
-
msgstr "
|
366 |
|
367 |
-
#:
|
368 |
-
msgid "
|
369 |
-
msgstr "
|
370 |
|
371 |
-
#:
|
372 |
-
msgid "
|
373 |
-
msgstr "
|
374 |
|
375 |
-
#:
|
376 |
-
msgid "
|
377 |
-
msgstr "
|
378 |
|
379 |
-
#:
|
380 |
-
msgid "
|
381 |
-
msgstr "
|
382 |
|
383 |
-
#:
|
384 |
-
|
385 |
-
|
|
|
386 |
|
387 |
-
#:
|
388 |
-
#:
|
389 |
-
|
390 |
-
|
391 |
-
msgstr "Exporter en CSV"
|
392 |
|
393 |
-
#:
|
394 |
-
|
395 |
-
|
|
|
396 |
|
397 |
-
#:
|
398 |
-
msgid "
|
399 |
-
msgstr "
|
400 |
|
401 |
-
#:
|
402 |
-
|
403 |
-
|
404 |
-
msgstr "Type de liste à exporter"
|
405 |
|
406 |
-
#:
|
407 |
-
msgid "
|
408 |
-
msgstr "
|
409 |
|
410 |
-
#:
|
411 |
-
msgid "
|
412 |
-
msgstr "
|
413 |
|
414 |
-
#:
|
415 |
-
msgid "
|
416 |
-
msgstr "
|
417 |
|
418 |
-
#:
|
419 |
-
msgid "
|
420 |
-
msgstr "
|
421 |
|
422 |
-
#:
|
423 |
-
msgid "
|
424 |
-
msgstr "
|
425 |
|
426 |
-
#:
|
427 |
-
msgid "
|
428 |
-
msgstr "
|
429 |
|
430 |
-
#:
|
431 |
-
#: subscribers/view-subscriber-
|
432 |
-
msgid "
|
433 |
-
msgstr "
|
434 |
|
435 |
-
#:
|
436 |
-
|
437 |
-
|
|
|
438 |
|
439 |
-
#:
|
440 |
-
msgid "
|
441 |
-
msgstr "
|
442 |
|
443 |
-
#:
|
444 |
-
msgid "
|
445 |
-
msgstr "
|
446 |
|
447 |
-
#:
|
448 |
-
msgid "
|
449 |
-
msgstr "
|
450 |
|
451 |
-
#:
|
452 |
-
|
453 |
-
|
454 |
-
#: subscribers/view-subscriber-import.php:144
|
455 |
-
#: subscribers/view-subscriber-show.php:244
|
456 |
-
#: subscribers/view-subscriber-sync.php:142
|
457 |
-
msgid "Sync"
|
458 |
-
msgstr "Synchroniser"
|
459 |
|
460 |
-
#:
|
461 |
-
#:
|
462 |
-
#:
|
463 |
-
#:
|
464 |
-
#:
|
465 |
-
|
466 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
467 |
|
468 |
-
#:
|
469 |
-
|
470 |
-
|
471 |
-
#: subscribers/view-subscriber-import.php:209
|
472 |
-
#: subscribers/view-subscriber-show.php:242
|
473 |
-
#: subscribers/view-subscriber-sync.php:89
|
474 |
-
msgid "Import"
|
475 |
-
msgstr "Importer"
|
476 |
|
477 |
-
#:
|
478 |
-
|
479 |
-
|
480 |
-
#: subscribers/view-subscriber-import.php:142
|
481 |
-
#: subscribers/view-subscriber-show.php:241
|
482 |
-
#: subscribers/view-subscriber-sync.php:88
|
483 |
-
msgid "Add New Subscriber"
|
484 |
-
msgstr "Ajouter un abonné"
|
485 |
|
486 |
-
#:
|
487 |
-
msgid "
|
488 |
-
msgstr "
|
489 |
|
490 |
-
#:
|
491 |
-
msgid "
|
492 |
-
msgstr "
|
493 |
|
494 |
-
#:
|
495 |
-
msgid "
|
496 |
-
msgstr "
|
497 |
|
498 |
-
#:
|
499 |
-
msgid "
|
500 |
-
msgstr "
|
501 |
|
502 |
-
#:
|
503 |
-
msgid "
|
504 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
505 |
|
506 |
-
#:
|
507 |
-
msgid "
|
508 |
-
msgstr "
|
509 |
|
510 |
-
#:
|
511 |
-
|
512 |
-
|
|
|
|
|
|
|
|
|
513 |
|
514 |
-
#:
|
515 |
-
msgid "
|
516 |
-
msgstr "
|
517 |
|
518 |
-
#:
|
519 |
-
msgid "
|
520 |
-
msgstr "
|
521 |
|
522 |
-
#:
|
523 |
-
|
524 |
-
|
|
|
|
|
525 |
|
526 |
-
#:
|
527 |
-
|
528 |
-
|
|
|
|
|
|
|
529 |
|
530 |
-
#:
|
531 |
-
msgid "
|
532 |
-
msgstr "
|
533 |
|
534 |
-
#:
|
535 |
-
msgid "
|
536 |
-
msgstr "
|
537 |
|
538 |
-
#:
|
539 |
-
|
540 |
-
|
|
|
541 |
|
542 |
-
#:
|
543 |
-
msgid "
|
544 |
-
msgstr "
|
545 |
|
546 |
-
#:
|
547 |
-
|
548 |
-
|
|
|
|
|
549 |
|
550 |
-
#:
|
551 |
-
|
552 |
-
|
|
|
553 |
|
554 |
-
#:
|
555 |
-
|
556 |
-
|
|
|
557 |
|
558 |
-
#:
|
559 |
-
|
560 |
-
|
|
|
561 |
|
562 |
-
#:
|
563 |
-
msgid "
|
564 |
-
msgstr "
|
565 |
|
566 |
-
#:
|
567 |
-
msgid "
|
568 |
-
msgstr "
|
569 |
|
570 |
-
#:
|
571 |
-
|
572 |
-
|
|
|
|
|
573 |
|
574 |
-
#:
|
575 |
-
|
576 |
-
|
|
|
577 |
|
578 |
-
#:
|
579 |
-
|
580 |
-
|
|
|
|
|
581 |
|
582 |
-
#:
|
583 |
-
msgid "
|
584 |
-
msgstr "
|
585 |
|
586 |
-
#: help/help.php:
|
587 |
-
msgid "
|
588 |
-
msgstr "
|
589 |
|
590 |
-
#: help/help.php:
|
591 |
-
msgid "
|
592 |
-
|
|
|
|
|
|
|
593 |
|
594 |
-
#: help/help.php:
|
595 |
-
msgid "
|
596 |
-
msgstr "
|
597 |
|
598 |
-
#: help/help.php:
|
599 |
-
msgid "
|
600 |
-
|
|
|
|
|
|
|
|
|
601 |
|
602 |
-
#: help/help.php:
|
603 |
-
msgid "
|
604 |
-
msgstr "
|
605 |
|
606 |
-
#: help/help.php:
|
607 |
-
msgid "
|
608 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
609 |
|
610 |
-
#: help/help.php:
|
611 |
msgid "General Plugin Settings"
|
612 |
msgstr "Options générales"
|
613 |
|
614 |
-
#: help/help.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
615 |
msgid "How to Import or Export Email Addresses?"
|
616 |
msgstr "Comment importer ou exporter des adresses e-mail?"
|
617 |
|
618 |
-
#: help/help.php:
|
619 |
-
msgid "How to
|
620 |
-
msgstr "Comment
|
621 |
-
|
622 |
-
#: help/help.php:117 help/help.php:126 help/help.php:129 help/help.php:132
|
623 |
-
#: help/help.php:135 help/help.php:138 help/help.php:141 help/help.php:144
|
624 |
-
#: help/help.php:147 help/help.php:150 help/help.php:153 help/help.php:156
|
625 |
-
#: help/help.php:159 help/help.php:162 help/help.php:165 help/help.php:168
|
626 |
-
#: help/help.php:171 help/help.php:174 help/help.php:177
|
627 |
-
msgid "%s"
|
628 |
-
msgstr "%s"
|
629 |
|
630 |
-
#:
|
631 |
-
msgid "
|
632 |
-
msgstr "
|
|
|
633 |
|
634 |
-
#:
|
635 |
-
msgid "
|
636 |
-
msgstr "
|
|
|
|
|
637 |
|
638 |
-
#:
|
639 |
-
msgid "
|
640 |
-
msgstr "
|
641 |
|
642 |
-
#:
|
643 |
-
|
644 |
-
|
645 |
-
|
|
|
|
|
|
|
646 |
|
647 |
-
#:
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
msgid "Save"
|
652 |
-
msgstr "Enregistrer"
|
653 |
|
654 |
-
#:
|
655 |
-
msgid "
|
656 |
-
msgstr "
|
657 |
|
658 |
-
#:
|
659 |
-
msgid "
|
660 |
-
msgstr "
|
661 |
|
662 |
-
#:
|
663 |
-
msgid "
|
664 |
-
msgstr "
|
665 |
|
666 |
-
#:
|
667 |
-
msgid "
|
668 |
-
msgstr "
|
669 |
|
670 |
-
#:
|
671 |
-
msgid "
|
672 |
-
msgstr "
|
673 |
|
674 |
-
#:
|
675 |
-
msgid "
|
676 |
-
msgstr "
|
677 |
|
678 |
-
#:
|
679 |
-
msgid "
|
680 |
-
msgstr "
|
681 |
|
682 |
-
#:
|
683 |
-
|
684 |
-
|
685 |
-
msgstr "Pour confirmer votre abonnement, consultez votre boîte de reception et cliquez sur le lien qui vous a été envoyé."
|
686 |
|
687 |
-
#:
|
688 |
-
msgid "
|
689 |
-
msgstr "
|
690 |
|
691 |
-
#:
|
692 |
-
|
693 |
-
|
694 |
-
msgstr "Pour confirmer votre abonnement, consultez votre boîte de reception et cliquez sur le lien qui vous a été envoyé."
|
695 |
|
696 |
-
#:
|
697 |
-
|
698 |
-
|
699 |
-
msgstr "Veuillez choisir le type d'envoi."
|
700 |
|
701 |
-
|
702 |
-
|
703 |
-
|
|
|
|
|
|
|
|
|
|
|
704 |
|
705 |
-
#:
|
706 |
-
msgid "
|
707 |
-
msgstr "
|
708 |
|
709 |
-
#:
|
710 |
-
msgid "
|
711 |
-
msgstr "
|
712 |
|
713 |
-
#: notification/notification-
|
714 |
-
msgid "
|
715 |
-
msgstr "
|
716 |
|
717 |
-
#: notification/notification-
|
718 |
-
msgid "
|
719 |
-
|
|
|
|
|
|
|
720 |
|
721 |
-
#: notification/notification-edit.php:
|
722 |
-
msgid "Please select
|
723 |
-
msgstr "Veuillez sélectionner
|
724 |
|
725 |
-
#: notification/notification-
|
726 |
-
msgid "
|
727 |
-
msgstr "
|
728 |
|
729 |
-
#: notification/notification-add.php:
|
730 |
-
msgid "
|
731 |
-
msgstr "
|
732 |
|
733 |
-
#: notification/notification-add.php:
|
734 |
-
msgid "
|
735 |
-
msgstr "
|
736 |
|
737 |
-
#: notification/notification-add.php:
|
738 |
-
|
739 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
740 |
|
741 |
-
#: notification/notification-add.php:
|
742 |
-
msgid "Select Notification
|
743 |
-
msgstr "
|
744 |
|
745 |
-
#: notification/notification-add.php:
|
746 |
-
msgid "
|
747 |
-
msgstr "
|
748 |
|
749 |
-
#: notification/notification-add.php:
|
750 |
msgid "Select Post Categories"
|
751 |
msgstr "Catégories"
|
752 |
|
753 |
-
#: notification/notification-add.php:
|
754 |
-
msgid "
|
755 |
-
msgstr "
|
756 |
|
757 |
-
#:
|
758 |
-
msgid "
|
759 |
-
msgstr "
|
760 |
|
761 |
-
|
762 |
-
msgid "
|
763 |
-
msgstr "
|
764 |
|
765 |
-
#:
|
766 |
-
|
767 |
-
|
768 |
-
msgstr "NON"
|
769 |
|
770 |
-
#:
|
771 |
-
|
772 |
-
|
773 |
-
msgstr "OUI"
|
774 |
|
775 |
-
#:
|
776 |
-
msgid "
|
777 |
-
msgstr "
|
778 |
|
779 |
-
#:
|
780 |
-
|
781 |
-
|
|
|
782 |
|
783 |
-
#:
|
784 |
-
|
785 |
-
|
|
|
786 |
|
787 |
-
#:
|
788 |
-
msgid "
|
789 |
-
msgstr "
|
790 |
|
791 |
-
#:
|
792 |
-
msgid "
|
793 |
-
msgstr "
|
794 |
|
795 |
-
#:
|
796 |
-
msgid "
|
797 |
-
msgstr "
|
798 |
|
799 |
-
#:
|
800 |
-
msgid "
|
801 |
-
msgstr "
|
802 |
|
803 |
-
#:
|
804 |
-
msgid "
|
805 |
-
msgstr "
|
806 |
|
807 |
-
#:
|
808 |
-
|
809 |
-
|
|
|
810 |
|
811 |
-
#:
|
812 |
-
msgid "
|
813 |
-
|
|
|
|
|
|
|
|
|
814 |
|
815 |
-
#:
|
816 |
-
|
817 |
-
|
818 |
-
#: sentmail/sentmail-show.php:21 settings/settings-edit.php:19
|
819 |
-
#: subscribers/view-subscriber-edit.php:21
|
820 |
-
msgid "Oops, selected details does not exists."
|
821 |
-
msgstr "Oups, ces données n'existent pas."
|
822 |
|
823 |
-
#:
|
824 |
-
|
825 |
-
|
826 |
-
msgid "Administrator/Editor/Author/Contributor"
|
827 |
-
msgstr "Administrateur/Editeur/Auteur/Contributeur"
|
828 |
|
829 |
-
#:
|
830 |
-
|
831 |
-
|
832 |
-
msgid "Administrator/Editor"
|
833 |
-
msgstr "Administrateur/Editeur"
|
834 |
|
835 |
-
#:
|
836 |
-
|
837 |
-
|
838 |
-
msgid "Administrator Only"
|
839 |
-
msgstr "Que les administrateurs"
|
840 |
|
841 |
-
#:
|
842 |
-
msgid "
|
843 |
-
msgstr "
|
844 |
|
845 |
-
#:
|
846 |
-
msgid "
|
847 |
-
msgstr "
|
848 |
|
849 |
-
#:
|
850 |
-
msgid "
|
851 |
-
msgstr "
|
852 |
|
853 |
-
#:
|
854 |
-
msgid "
|
855 |
-
msgstr "
|
856 |
|
857 |
-
#:
|
858 |
-
msgid "
|
859 |
-
msgstr "
|
860 |
|
861 |
-
#:
|
862 |
-
msgid "
|
863 |
-
msgstr "
|
864 |
|
865 |
-
#:
|
866 |
-
msgid "
|
867 |
-
msgstr "
|
868 |
|
869 |
-
#:
|
870 |
-
msgid "
|
871 |
-
msgstr "
|
872 |
|
873 |
-
#:
|
874 |
-
msgid "
|
875 |
-
msgstr "
|
876 |
|
877 |
-
#:
|
878 |
-
msgid "
|
879 |
-
msgstr "
|
880 |
|
881 |
-
#:
|
882 |
-
msgid "
|
883 |
-
msgstr "
|
884 |
|
885 |
-
#:
|
886 |
-
msgid "
|
887 |
-
msgstr "
|
888 |
|
889 |
-
#:
|
890 |
-
msgid "
|
891 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
892 |
|
893 |
-
#:
|
894 |
-
msgid "
|
895 |
-
msgstr "
|
896 |
|
897 |
-
#:
|
898 |
-
msgid "
|
899 |
-
msgstr "
|
900 |
|
901 |
-
#:
|
902 |
-
msgid "
|
903 |
-
msgstr "
|
904 |
|
905 |
-
#:
|
906 |
-
msgid "
|
907 |
-
msgstr "
|
908 |
|
909 |
-
#:
|
910 |
-
msgid "
|
911 |
-
msgstr "
|
912 |
|
913 |
-
#:
|
914 |
-
msgid "
|
915 |
-
msgstr "
|
916 |
|
917 |
-
#:
|
918 |
-
|
919 |
-
|
|
|
|
|
920 |
|
921 |
-
#:
|
922 |
-
msgid "
|
923 |
-
msgstr "
|
924 |
|
925 |
-
#:
|
926 |
-
|
927 |
-
|
|
|
928 |
|
929 |
-
#:
|
930 |
-
msgid "
|
931 |
-
msgstr "
|
932 |
|
933 |
-
#:
|
934 |
-
msgid "
|
935 |
-
msgstr "
|
936 |
|
937 |
-
#:
|
938 |
-
msgid "
|
939 |
-
msgstr "
|
940 |
|
941 |
-
#:
|
942 |
-
msgid "
|
943 |
-
msgstr "
|
944 |
|
945 |
-
#:
|
946 |
-
|
947 |
-
|
948 |
-
msgstr "Il y a eu un problème avec la requête."
|
949 |
|
950 |
-
#:
|
951 |
-
|
952 |
-
|
953 |
-
msgstr "
|
|
|
|
|
954 |
|
955 |
-
#:
|
956 |
-
|
957 |
-
|
958 |
-
msgstr "Adresse e-mail non valide."
|
959 |
|
960 |
-
#:
|
961 |
-
|
962 |
-
|
963 |
-
msgstr "Oups... Une erreur inattendue s'est produite."
|
964 |
|
965 |
-
#:
|
966 |
-
|
967 |
-
|
968 |
-
msgstr "Cette adresse existe déjà."
|
969 |
|
970 |
-
#:
|
971 |
-
|
972 |
-
|
973 |
-
msgstr "Inscription réussie."
|
974 |
|
975 |
-
#:
|
976 |
-
|
977 |
-
|
978 |
-
msgstr "Impossible de créer l'instance XMLHTTP"
|
979 |
|
980 |
-
#:
|
981 |
-
|
982 |
-
|
983 |
-
|
|
|
|
|
|
|
984 |
|
985 |
-
#:
|
986 |
-
|
987 |
-
|
988 |
-
msgstr "Veuillez saisir une adresse e-mail valide."
|
989 |
|
990 |
-
#:
|
991 |
-
|
992 |
-
|
993 |
-
|
|
|
|
|
|
|
994 |
|
995 |
-
#:
|
996 |
-
|
997 |
-
|
998 |
-
msgstr "Il ya eu un problème avec la requête."
|
999 |
|
1000 |
-
#:
|
1001 |
-
|
1002 |
-
|
1003 |
-
msgstr "Veuillez réessayer dans quelques instants."
|
1004 |
|
1005 |
-
#:
|
1006 |
-
|
1007 |
-
|
1008 |
-
msgstr "Adresse e-mail non valide."
|
1009 |
|
1010 |
-
#:
|
1011 |
-
|
1012 |
-
|
1013 |
-
msgstr "Oups.. une erreur inattendue s'est produite."
|
1014 |
|
1015 |
-
#:
|
1016 |
-
|
1017 |
-
|
1018 |
-
msgstr "Cet adresse e-mail existe déjà."
|
1019 |
|
1020 |
-
#:
|
1021 |
-
|
1022 |
-
|
1023 |
-
msgstr "Inscription réussie."
|
1024 |
|
1025 |
-
#:
|
1026 |
-
|
1027 |
-
|
1028 |
-
msgstr "Impossible de créer l'instance XMLHTTP"
|
1029 |
|
1030 |
-
#:
|
1031 |
-
|
1032 |
-
|
1033 |
-
msgstr "envoi..."
|
1034 |
|
1035 |
-
#:
|
1036 |
-
|
1037 |
-
|
1038 |
-
msgstr "Veuillez saisir une adresse e-mail valide."
|
1039 |
|
1040 |
-
#:
|
1041 |
-
|
1042 |
-
|
1043 |
-
|
|
|
|
|
|
|
1044 |
|
1045 |
-
#:
|
1046 |
-
|
1047 |
-
|
1048 |
-
msgstr "Veuillez saisir le nombre de courriel. Que des chiffres."
|
1049 |
|
1050 |
-
#:
|
1051 |
-
|
1052 |
-
|
1053 |
-
|
|
|
|
|
|
|
1054 |
|
1055 |
-
#:
|
1056 |
-
|
1057 |
-
|
1058 |
-
msgstr "Voulez-vous supprimer tous les enregistrements sauf les 10 derniers?"
|
1059 |
|
1060 |
-
#:
|
1061 |
-
|
1062 |
-
|
1063 |
-
msgstr "Voulez-vous supprimer cet enregistrement?"
|
1064 |
|
1065 |
-
#:
|
1066 |
-
|
1067 |
-
|
1068 |
-
msgstr "Veuillez choisir le sujet du courriel."
|
1069 |
|
1070 |
-
#:
|
1071 |
-
|
1072 |
-
|
1073 |
-
msgstr "Voulez-vous supprimer cet enregistrement?"
|
1074 |
|
1075 |
-
#:
|
1076 |
-
|
1077 |
-
|
1078 |
-
msgstr "Veuillez sélectionner le statut de la notification."
|
1079 |
|
1080 |
-
#:
|
1081 |
-
|
1082 |
-
|
1083 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1084 |
|
1085 |
-
#:
|
1086 |
-
|
1087 |
-
|
1088 |
-
msgstr "Veuillez choisir un groupe."
|
1089 |
|
1090 |
-
#:
|
1091 |
-
|
1092 |
-
|
1093 |
-
|
|
|
|
|
|
|
1094 |
|
1095 |
-
#:
|
1096 |
-
|
1097 |
-
|
1098 |
-
msgstr "Sélectionnez un modèle pour cette configuration."
|
1099 |
|
1100 |
-
#:
|
1101 |
-
|
1102 |
-
|
1103 |
-
|
|
|
1104 |
|
1105 |
-
#:
|
1106 |
-
|
1107 |
-
|
1108 |
-
msgstr "Veuillez choisir uniquement un fichier csv. Consultez la documentation pour la structure du fichier csv."
|
1109 |
|
1110 |
-
#:
|
1111 |
-
|
1112 |
-
|
1113 |
-
msgstr "Voulez-vous exporter les e-mails?"
|
1114 |
|
1115 |
-
#:
|
1116 |
-
|
1117 |
-
|
1118 |
-
msgstr "Voulez-vous mettre à jour ce groupe?"
|
1119 |
|
1120 |
-
#:
|
1121 |
-
|
1122 |
-
|
1123 |
-
msgstr "Veuillez choisir un groupe d'abonnés."
|
1124 |
|
1125 |
-
#:
|
1126 |
-
|
1127 |
-
|
1128 |
-
|
|
|
|
|
|
|
1129 |
|
1130 |
-
#:
|
1131 |
-
|
1132 |
-
|
1133 |
-
msgstr "Voulez-vous supprimer les lignes sélectionnées?"
|
1134 |
|
1135 |
-
#:
|
1136 |
-
|
1137 |
-
|
1138 |
-
|
|
|
|
|
|
|
1139 |
|
1140 |
-
#:
|
1141 |
-
|
1142 |
-
|
1143 |
-
msgstr "Voulez-vous supprimer cette ligne?"
|
1144 |
|
1145 |
-
#:
|
1146 |
-
|
1147 |
-
|
1148 |
-
|
|
|
|
|
|
|
1149 |
|
1150 |
-
#:
|
1151 |
-
|
1152 |
-
|
1153 |
-
msgstr "Sélectionnez le type d'envoi pour cet abonné."
|
1154 |
|
1155 |
-
#:
|
1156 |
-
|
1157 |
-
|
1158 |
-
|
|
|
|
|
|
|
1159 |
|
1160 |
-
#:
|
1161 |
-
msgid "
|
1162 |
-
msgstr "
|
1163 |
|
1164 |
-
#:
|
1165 |
-
msgid "
|
1166 |
-
|
|
|
|
|
|
|
1167 |
|
1168 |
-
#:
|
1169 |
-
msgid "
|
1170 |
-
msgstr "
|
1171 |
|
1172 |
-
#:
|
1173 |
-
msgid "
|
1174 |
-
|
|
|
|
|
|
|
|
|
|
|
1175 |
|
1176 |
-
#:
|
1177 |
-
msgid "
|
1178 |
-
msgstr "
|
1179 |
|
1180 |
-
#:
|
1181 |
-
|
1182 |
-
|
1183 |
-
|
|
|
|
|
|
|
1184 |
|
1185 |
-
#:
|
1186 |
-
msgid "
|
1187 |
-
msgstr "
|
1188 |
|
1189 |
-
#:
|
1190 |
-
|
1191 |
-
|
1192 |
-
|
|
|
|
|
|
|
|
|
1193 |
|
1194 |
-
#:
|
1195 |
-
|
1196 |
-
|
1197 |
-
msgstr "Adresses e-mail"
|
1198 |
|
1199 |
-
#: settings/settings-edit.php:
|
1200 |
-
|
1201 |
-
|
1202 |
-
|
1203 |
-
#: subscribers/view-subscriber-show.php:329
|
1204 |
-
msgid "Single Opt In"
|
1205 |
-
msgstr "Simple validation"
|
1206 |
|
1207 |
-
#:
|
1208 |
-
|
1209 |
-
|
1210 |
-
|
1211 |
-
|
1212 |
-
msgid "Unsubscribed"
|
1213 |
-
msgstr "Désabonné"
|
1214 |
|
1215 |
-
#:
|
1216 |
-
|
1217 |
-
|
1218 |
-
|
1219 |
-
|
1220 |
-
|
1221 |
-
|
1222 |
|
1223 |
-
#:
|
1224 |
-
|
1225 |
-
|
1226 |
-
#: subscribers/view-subscriber-show.php:299
|
1227 |
-
#: subscribers/view-subscriber-show.php:326
|
1228 |
-
msgid "Confirmed"
|
1229 |
-
msgstr "Confirmé"
|
1230 |
|
1231 |
-
#:
|
1232 |
-
|
1233 |
-
|
1234 |
-
|
|
|
|
|
|
|
1235 |
|
1236 |
-
#:
|
1237 |
-
msgid "
|
1238 |
-
msgstr "
|
1239 |
|
1240 |
-
#:
|
1241 |
-
|
1242 |
-
|
1243 |
-
|
|
|
|
|
|
|
|
|
1244 |
|
1245 |
-
#:
|
1246 |
-
msgid "
|
1247 |
-
msgstr "
|
1248 |
|
1249 |
-
#:
|
1250 |
-
msgid "
|
1251 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1252 |
|
1253 |
-
#:
|
1254 |
-
msgid "
|
1255 |
-
msgstr "
|
1256 |
|
1257 |
-
#:
|
1258 |
-
|
1259 |
-
|
1260 |
-
|
|
|
|
|
|
|
|
|
|
|
1261 |
|
1262 |
-
#:
|
1263 |
-
|
1264 |
-
|
1265 |
-
msgstr "Groupe"
|
1266 |
|
1267 |
-
#:
|
1268 |
-
msgid "
|
1269 |
-
|
|
|
|
|
|
|
|
|
1270 |
|
1271 |
-
#:
|
1272 |
-
msgid "
|
1273 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
1274 |
|
1275 |
-
#:
|
1276 |
-
msgid "Error
|
1277 |
-
msgstr "Erreur
|
1278 |
|
1279 |
-
#:
|
1280 |
-
msgid "
|
1281 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1282 |
|
1283 |
-
#:
|
1284 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1285 |
msgid "Please enter subscriber email address."
|
1286 |
msgstr "Veuillez saisir l'e-mail de l'abonné."
|
1287 |
|
1288 |
-
#:
|
1289 |
-
msgid "
|
1290 |
-
msgstr "
|
1291 |
|
1292 |
-
#:
|
1293 |
-
msgid "
|
1294 |
-
|
|
|
|
|
|
|
|
|
1295 |
|
1296 |
-
#:
|
1297 |
-
msgid "
|
1298 |
-
msgstr "
|
1299 |
|
1300 |
-
#:
|
1301 |
-
msgid "
|
1302 |
-
msgstr "
|
1303 |
|
1304 |
-
#:
|
1305 |
-
msgid "
|
1306 |
-
msgstr "
|
1307 |
|
1308 |
-
#:
|
1309 |
-
|
1310 |
-
|
|
|
|
|
|
|
|
|
|
|
1311 |
|
1312 |
-
#:
|
1313 |
-
|
1314 |
-
|
|
|
|
|
|
|
|
|
|
|
1315 |
|
1316 |
-
#:
|
1317 |
-
|
1318 |
-
|
|
|
|
|
|
|
|
|
1319 |
|
1320 |
-
#:
|
1321 |
-
|
1322 |
-
|
|
|
|
|
|
|
|
|
|
|
1323 |
|
1324 |
-
#:
|
1325 |
-
msgid "
|
1326 |
-
msgstr "
|
1327 |
|
1328 |
-
#:
|
1329 |
-
msgid "
|
1330 |
-
msgstr "
|
1331 |
|
1332 |
-
#:
|
1333 |
-
msgid "Subscriber
|
1334 |
-
msgstr "
|
1335 |
|
1336 |
-
#:
|
1337 |
-
|
1338 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1339 |
|
1340 |
-
#:
|
1341 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1342 |
msgstr ""
|
1343 |
-
"
|
1344 |
-
"Simple validation: les utilisateurs n'ont pas besoin de confirmer leur adresse e-mail."
|
1345 |
|
1346 |
-
#:
|
1347 |
-
msgid "
|
1348 |
-
msgstr "
|
1349 |
|
1350 |
-
#:
|
1351 |
-
msgid "
|
1352 |
-
msgstr "
|
1353 |
|
1354 |
-
#:
|
1355 |
-
msgid "
|
1356 |
-
msgstr "
|
1357 |
|
1358 |
-
#:
|
1359 |
-
msgid "
|
1360 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1361 |
|
1362 |
-
#:
|
1363 |
-
msgid "
|
1364 |
-
msgstr "
|
1365 |
|
1366 |
-
#:
|
1367 |
-
msgid "
|
1368 |
-
msgstr "
|
1369 |
|
1370 |
-
#:
|
1371 |
-
msgid "
|
1372 |
-
msgstr "
|
1373 |
|
1374 |
-
#:
|
1375 |
-
msgid "
|
1376 |
-
msgstr "
|
1377 |
|
1378 |
-
#:
|
1379 |
-
msgid "
|
1380 |
-
|
|
|
|
|
|
|
|
|
1381 |
|
1382 |
-
#:
|
1383 |
-
msgid "
|
1384 |
-
msgstr "
|
1385 |
|
1386 |
-
#:
|
1387 |
-
msgid "
|
1388 |
-
msgstr "
|
1389 |
|
1390 |
-
#:
|
1391 |
-
msgid "
|
1392 |
-
msgstr "
|
1393 |
|
1394 |
-
#:
|
1395 |
-
|
1396 |
-
|
|
|
1397 |
|
1398 |
-
#:
|
1399 |
-
|
1400 |
-
|
|
|
1401 |
|
1402 |
-
#:
|
1403 |
-
msgid "
|
1404 |
-
msgstr "
|
1405 |
|
1406 |
-
#:
|
1407 |
-
msgid "
|
1408 |
-
msgstr "
|
1409 |
|
1410 |
-
#:
|
1411 |
-
msgid "
|
1412 |
-
msgstr "
|
1413 |
|
1414 |
-
#:
|
1415 |
-
msgid "
|
1416 |
-
msgstr "
|
1417 |
|
1418 |
-
#:
|
1419 |
-
msgid "
|
1420 |
-
msgstr "
|
1421 |
|
1422 |
-
#:
|
1423 |
-
msgid "
|
1424 |
-
msgstr "
|
1425 |
|
1426 |
-
#:
|
1427 |
-
msgid "
|
1428 |
-
msgstr "
|
1429 |
|
1430 |
-
#:
|
1431 |
-
msgid "
|
1432 |
-
msgstr "
|
1433 |
|
1434 |
-
#:
|
1435 |
-
|
1436 |
-
|
|
|
1437 |
|
1438 |
-
#:
|
1439 |
-
|
1440 |
-
|
1441 |
-
|
1442 |
-
|
1443 |
-
msgid "Sno"
|
1444 |
-
msgstr "n°"
|
1445 |
|
1446 |
-
#:
|
1447 |
-
|
1448 |
-
|
|
|
1449 |
|
1450 |
-
#:
|
1451 |
-
|
1452 |
-
|
|
|
|
|
|
|
1453 |
|
1454 |
-
#:
|
1455 |
-
msgid "
|
1456 |
-
|
|
|
|
|
1457 |
|
1458 |
-
#:
|
1459 |
-
msgid "
|
1460 |
-
msgstr "
|
1461 |
|
1462 |
-
#:
|
1463 |
-
msgid "
|
1464 |
-
msgstr "
|
1465 |
|
1466 |
-
#:
|
1467 |
-
msgid "
|
1468 |
-
msgstr "
|
1469 |
|
1470 |
-
#:
|
1471 |
-
msgid "
|
1472 |
-
msgstr "
|
1473 |
|
1474 |
-
#:
|
1475 |
-
msgid "
|
1476 |
-
msgstr "
|
1477 |
|
1478 |
-
#:
|
1479 |
-
msgid "
|
1480 |
-
msgstr "
|
1481 |
|
1482 |
-
#:
|
1483 |
-
msgid "
|
1484 |
-
msgstr "
|
1485 |
|
1486 |
-
#:
|
1487 |
-
|
1488 |
-
|
|
|
1489 |
|
1490 |
-
#:
|
1491 |
-
msgid "Subscribers
|
1492 |
-
msgstr "
|
1493 |
|
1494 |
-
#:
|
1495 |
-
msgid "
|
1496 |
-
msgstr "
|
1497 |
|
1498 |
-
#:
|
1499 |
-
msgid "
|
1500 |
-
msgstr "
|
1501 |
|
1502 |
-
#:
|
1503 |
-
msgid "
|
1504 |
-
msgstr "
|
1505 |
|
1506 |
-
#:
|
1507 |
-
msgid "
|
1508 |
-
msgstr "
|
1509 |
|
1510 |
-
#:
|
1511 |
-
msgid "
|
1512 |
-
msgstr "
|
1513 |
|
1514 |
-
#:
|
1515 |
-
|
1516 |
-
|
1517 |
-
#: sendmail/sendmail.php:136 sendmail/sendmail.php:150
|
1518 |
-
#: subscribers/view-subscriber-add.php:161
|
1519 |
-
#: subscribers/view-subscriber-edit.php:161
|
1520 |
-
#: subscribers/view-subscriber-import.php:189
|
1521 |
-
#: subscribers/view-subscriber-sync.php:118
|
1522 |
-
msgid "Select"
|
1523 |
-
msgstr "Sélectionner"
|
1524 |
|
1525 |
-
#:
|
1526 |
-
msgid "
|
1527 |
-
msgstr "
|
1528 |
|
1529 |
-
#:
|
1530 |
-
msgid "
|
1531 |
-
msgstr "
|
1532 |
|
1533 |
-
#:
|
1534 |
-
msgid "
|
1535 |
-
msgstr "
|
1536 |
|
1537 |
-
#:
|
1538 |
-
msgid "
|
1539 |
-
msgstr "
|
1540 |
|
1541 |
-
#:
|
1542 |
-
msgid "
|
1543 |
-
msgstr "
|
1544 |
|
1545 |
-
#:
|
1546 |
-
msgid "
|
1547 |
-
msgstr "
|
1548 |
|
1549 |
-
#:
|
1550 |
-
msgid "
|
1551 |
-
msgstr "
|
1552 |
|
1553 |
-
#:
|
1554 |
-
|
1555 |
-
|
|
|
1556 |
|
1557 |
-
#:
|
1558 |
-
#:
|
1559 |
-
msgid "
|
1560 |
-
msgstr "
|
1561 |
|
1562 |
-
#:
|
1563 |
-
|
1564 |
-
|
|
|
1565 |
|
1566 |
-
#:
|
1567 |
-
msgid "
|
1568 |
-
msgstr "
|
|
|
|
|
1569 |
|
1570 |
-
#:
|
1571 |
-
msgid "
|
1572 |
-
msgstr "
|
1573 |
|
1574 |
-
#:
|
1575 |
-
msgid "
|
1576 |
-
msgstr "
|
1577 |
|
1578 |
-
#:
|
1579 |
-
msgid "
|
1580 |
-
msgstr "
|
|
|
1581 |
|
1582 |
-
#:
|
1583 |
-
|
1584 |
-
|
1585 |
-
msgid "No records available."
|
1586 |
-
msgstr "Aucun enregistrement."
|
1587 |
|
1588 |
-
|
1589 |
-
|
1590 |
-
|
1591 |
-
msgstr "Aperçu"
|
1592 |
|
1593 |
-
|
1594 |
-
|
1595 |
-
|
1596 |
-
|
1597 |
-
msgstr "Supprimer"
|
1598 |
|
1599 |
-
|
1600 |
-
|
1601 |
-
|
1602 |
-
|
1603 |
-
|
1604 |
-
|
1605 |
-
|
|
|
1606 |
|
1607 |
-
|
1608 |
-
|
1609 |
-
|
1610 |
-
msgid "Type"
|
1611 |
-
msgstr "Type"
|
1612 |
|
1613 |
-
|
1614 |
-
|
1615 |
-
msgstr "Sujet"
|
1616 |
|
1617 |
-
|
1618 |
-
|
1619 |
-
msgid "Add New"
|
1620 |
-
msgstr "Ajouter"
|
1621 |
|
1622 |
-
|
1623 |
-
|
1624 |
-
msgid "Click Here"
|
1625 |
-
msgstr "Cliquez ici"
|
1626 |
|
1627 |
-
|
1628 |
-
|
1629 |
-
#: subscribers/view-subscriber-show.php:398
|
1630 |
-
msgid "Edit"
|
1631 |
-
msgstr "Modifier"
|
1632 |
|
1633 |
-
|
1634 |
-
|
1635 |
-
msgstr "Retour"
|
1636 |
|
1637 |
-
|
1638 |
-
|
1639 |
-
msgstr "Aperçu du courriel"
|
1640 |
|
1641 |
-
|
1642 |
-
|
1643 |
-
msgstr "Mise à jour du modèle réussie."
|
1644 |
|
1645 |
-
|
1646 |
-
|
1647 |
-
#: cron/cron-add.php:79 notification/notification-add.php:112
|
1648 |
-
#: notification/notification-edit.php:123 notification/notification-show.php:53
|
1649 |
-
#: roles/roles-add.php:110 sendmail/sendmail.php:93
|
1650 |
-
#: sentmail/deliverreport-show.php:60 sentmail/sentmail-preview.php:27
|
1651 |
-
#: sentmail/sentmail-show.php:96 settings/settings-edit.php:197
|
1652 |
-
#: subscribers/view-subscriber-add.php:113
|
1653 |
-
#: subscribers/view-subscriber-edit.php:112
|
1654 |
-
#: subscribers/view-subscriber-export.php:29
|
1655 |
-
#: subscribers/view-subscriber-import.php:145
|
1656 |
-
#: subscribers/view-subscriber-show.php:245
|
1657 |
-
#: subscribers/view-subscriber-sync.php:91
|
1658 |
-
msgid "Help"
|
1659 |
-
msgstr "Aide"
|
1660 |
|
1661 |
-
|
1662 |
-
|
1663 |
-
#: sentmail/deliverreport-show.php:73 sentmail/deliverreport-show.php:85
|
1664 |
-
#: sentmail/sentmail-show.php:112 sentmail/sentmail-show.php:125
|
1665 |
-
#: subscribers/view-subscriber-show.php:354
|
1666 |
-
#: subscribers/view-subscriber-show.php:368
|
1667 |
-
msgid "Status"
|
1668 |
-
msgstr "Statut"
|
1669 |
|
1670 |
-
|
1671 |
-
|
1672 |
-
msgstr "Sujet du courriel"
|
1673 |
|
1674 |
-
|
1675 |
-
|
1676 |
-
|
|
|
|
|
|
|
1677 |
|
1678 |
-
|
1679 |
-
|
1680 |
-
msgid "Click here"
|
1681 |
-
msgstr "Cliquez ici"
|
1682 |
|
1683 |
-
|
1684 |
-
|
1685 |
-
|
|
|
1686 |
|
1687 |
-
|
1688 |
-
|
1689 |
-
msgstr "Veuillez saisir le nom du modèle."
|
1690 |
|
1691 |
-
|
1692 |
-
|
1693 |
-
msgstr "Groupe d'abonnés"
|
1694 |
|
1695 |
-
|
1696 |
-
|
1697 |
-
msgstr "Courte description de votre formulaire d'abonnement."
|
1698 |
|
1699 |
-
|
1700 |
-
msgid "
|
1701 |
-
msgstr "
|
1702 |
|
1703 |
-
|
1704 |
-
msgid "
|
1705 |
-
msgstr "
|
1706 |
|
1707 |
-
|
1708 |
-
msgid "
|
1709 |
-
msgstr "
|
1710 |
|
1711 |
-
|
1712 |
-
msgid "
|
1713 |
-
msgstr "
|
1714 |
|
1715 |
-
|
1716 |
-
msgid "
|
1717 |
-
msgstr "
|
1718 |
|
1719 |
-
|
1720 |
-
|
1721 |
-
msgid "Compose"
|
1722 |
-
msgstr "Modèles"
|
1723 |
|
1724 |
-
|
1725 |
-
|
1726 |
-
msgid "Subscribers"
|
1727 |
-
msgstr "Abonnés"
|
1728 |
|
1729 |
-
|
1730 |
-
|
1731 |
-
msgstr "Modifier un abonné"
|
1732 |
|
1733 |
-
|
1734 |
-
|
1735 |
-
msgstr "S'abonner"
|
1736 |
|
1737 |
-
|
1738 |
-
|
1739 |
-
msgstr "E-mail *"
|
1740 |
|
1741 |
-
|
1742 |
-
|
1743 |
-
|
1744 |
-
msgid "
|
1745 |
-
msgstr "
|
2 |
# This file is distributed under the same license as the Plugins - Email Subscribers & Newsletters - Development (trunk) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.3\n"
|
6 |
+
"Report-Msgid-Bugs-To: http://www.icegram.com/contact/\n"
|
7 |
+
"POT-Creation-Date: 2017-06-14 18:46+0200\n"
|
8 |
+
"PO-Revision-Date: 2017-06-15 10:13+0200\n"
|
9 |
+
"Last-Translator: \n"
|
10 |
+
"Language-Team: Serge Rauber <contact@kalyx.fr>\n"
|
11 |
+
"Language: fr\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
16 |
+
"X-Generator: Poedit 2.0.1\n"
|
|
|
|
|
|
|
|
|
|
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
|
19 |
+
#: base/es-defined.php:32
|
20 |
+
msgid ""
|
21 |
+
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
22 |
+
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
23 |
+
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
24 |
+
"</a> rating. A huge thank you from Icegram in advance!"
|
25 |
+
msgstr ""
|
26 |
+
"Si vous aimez <strong>Email Subscribers</strong>, attribuez-lui <a target="
|
27 |
+
"\"_blank\" href=\"https://wordpress.org/support/plugin/email-subscribers/"
|
28 |
+
"reviews/?filter=5#new-post\">★★★★★</a>. Un "
|
29 |
+
"grand merci d'Icegram d'avance!"
|
30 |
|
31 |
+
#: classes/es-common.php:13
|
32 |
+
msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
|
33 |
+
msgstr "<span style=\"color:#006600;font-weight:bold;\">Confirmé</span>"
|
34 |
|
35 |
+
#: classes/es-common.php:16
|
36 |
+
msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
|
37 |
+
msgstr "<span style=\"color:#FF0000\">Non confirmé</span>"
|
38 |
|
39 |
+
#: classes/es-common.php:19
|
40 |
+
msgid "<span style=\"color:#999900\">Unsubscribed</span>"
|
41 |
+
msgstr "<span style=\"color:#999900\">Désabonné</span>"
|
42 |
|
43 |
+
#: classes/es-common.php:22
|
44 |
+
msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
|
45 |
+
msgstr "<span style=\"color:#0000FF\">Simple vérification</span>"
|
46 |
|
47 |
+
#: classes/es-common.php:25
|
48 |
+
msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
|
49 |
+
msgstr "<span style=\"color:#00CC00;font-weight:bold\">Vu</span>"
|
50 |
|
51 |
+
#: classes/es-common.php:28
|
52 |
+
msgid "<span style=\"color:#999900;\">Nodata</span>"
|
53 |
+
msgstr "<span style=\"color:#999900;\">Aucune donnée</span>"
|
54 |
|
55 |
+
#: classes/es-common.php:31
|
56 |
+
msgid "<span style=\"color:#FF0000\">Disabled</span>"
|
57 |
+
msgstr "<span style=\"color:#FF0000\">Désactivé</span>"
|
58 |
|
59 |
+
#: classes/es-common.php:34
|
60 |
+
msgid "<span style=\"color:#FF0000\">In Queue</span>"
|
61 |
+
msgstr "<span style=\"color:#FF0000\">En file d'attente</span>"
|
62 |
|
63 |
+
#: classes/es-common.php:37
|
64 |
+
msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
|
65 |
+
msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Envoyé</span>"
|
66 |
|
67 |
+
#: classes/es-common.php:40
|
68 |
+
msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
|
69 |
+
msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
|
70 |
|
71 |
+
#: classes/es-common.php:43
|
72 |
+
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
73 |
+
msgstr "<span style=\"color:#993399;\">Courriel instantané</span>"
|
74 |
|
75 |
+
#: classes/es-loadwidget.php:28 classes/es-register.php:961
|
76 |
+
#: subscribers/view-subscriber-show.php:361
|
77 |
+
#: subscribers/view-subscriber-show.php:374
|
78 |
+
msgid "Name"
|
79 |
+
msgstr "Nom"
|
80 |
|
81 |
+
#: classes/es-loadwidget.php:33 classes/es-register.php:966
|
82 |
+
msgid "Email *"
|
83 |
+
msgstr "E-mail *"
|
84 |
|
85 |
+
#: classes/es-loadwidget.php:38 classes/es-register.php:971
|
86 |
+
msgid "Subscribe"
|
87 |
+
msgstr "S'abonner"
|
88 |
|
89 |
+
#: classes/es-register.php:140 classes/es-register.php:141
|
90 |
+
#: classes/es-register.php:707
|
91 |
+
msgid "Email Subscribers"
|
92 |
+
msgstr "Email Subscribers & Newsletters"
|
93 |
|
94 |
+
#: classes/es-register.php:143 classes/es-register.php:144
|
95 |
+
#: subscribers/view-subscriber-show.php:241
|
96 |
+
msgid "Subscribers"
|
97 |
+
msgstr "Abonnés"
|
98 |
|
99 |
+
#: classes/es-register.php:146 classes/es-register.php:147
|
100 |
+
#: compose/compose-show.php:64
|
101 |
+
msgid "Compose"
|
102 |
+
msgstr "Modèles"
|
103 |
|
104 |
+
#: classes/es-register.php:149 classes/es-register.php:150
|
105 |
+
#: notification/notification-show.php:52
|
106 |
+
msgid "Post Notifications"
|
107 |
+
msgstr "Notifications d'article"
|
108 |
|
109 |
+
#: classes/es-register.php:152 classes/es-register.php:153
|
110 |
+
#: sendmail/sendmail.php:93 settings/settings-edit.php:318
|
111 |
+
msgid "Newsletters"
|
112 |
+
msgstr "Newsletters"
|
113 |
|
114 |
+
#: classes/es-register.php:155 classes/es-register.php:156
|
115 |
+
#: settings/settings-edit.php:41
|
116 |
+
msgid "Settings"
|
117 |
+
msgstr "Paramètres"
|
118 |
|
119 |
+
#: classes/es-register.php:158 classes/es-register.php:159
|
120 |
+
#: sentmail/sentmail-show.php:96
|
121 |
+
msgid "Reports"
|
122 |
+
msgstr "Rapports"
|
123 |
|
124 |
+
#: classes/es-register.php:161
|
125 |
+
msgid "Help & Info"
|
126 |
+
msgstr "Aide & Infos"
|
127 |
|
128 |
+
#: classes/es-register.php:162
|
129 |
+
msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info"
|
130 |
+
msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Aide & Infos"
|
131 |
|
132 |
+
#: classes/es-register.php:173
|
133 |
+
msgctxt "view-subscriber-enhanced-select"
|
134 |
+
msgid "Please enter subscriber email address."
|
135 |
+
msgstr "Entrer l'adresse e-mail de l'abonné."
|
136 |
|
137 |
+
#: classes/es-register.php:174
|
138 |
+
msgctxt "view-subscriber-enhanced-select"
|
139 |
+
msgid "Please select subscriber email status."
|
140 |
+
msgstr "Sélectionner le type d'envoi pour cet abonné."
|
141 |
|
142 |
+
#: classes/es-register.php:175
|
143 |
+
msgctxt "view-subscriber-enhanced-select"
|
144 |
+
msgid "Please select or create group for this subscriber."
|
145 |
+
msgstr "Sélectionner ou créer un groupe pour cet abonné."
|
146 |
|
147 |
+
#: classes/es-register.php:176
|
148 |
+
msgctxt "view-subscriber-enhanced-select"
|
149 |
+
msgid "Do you want to delete this record?"
|
150 |
+
msgstr "Voulez-vous supprimer cette ligne?"
|
151 |
|
152 |
+
#: classes/es-register.php:177
|
153 |
+
msgctxt "view-subscriber-enhanced-select"
|
154 |
+
msgid "Please select the bulk action."
|
155 |
+
msgstr "Veuillez sélectionner une action."
|
156 |
|
157 |
+
#: classes/es-register.php:178
|
158 |
+
msgctxt "view-subscriber-enhanced-select"
|
159 |
+
msgid "Are you sure you want to delete selected records?"
|
160 |
+
msgstr "Voulez-vous supprimer les lignes sélectionnées?"
|
161 |
|
162 |
+
#: classes/es-register.php:179
|
163 |
+
msgctxt "view-subscriber-enhanced-select"
|
164 |
+
msgid ""
|
165 |
+
"Do you want to resend confirmation email? \\nAlso please note, this will "
|
166 |
+
"update subscriber current status to 'Unconfirmed'."
|
167 |
+
msgstr ""
|
168 |
+
"Voulez-vous renvoyer un message de confirmation?\\n A noter: le statut de "
|
169 |
+
"l'abonné passera à 'En attente de confirmation'."
|
170 |
|
171 |
+
#: classes/es-register.php:180
|
172 |
+
msgctxt "view-subscriber-enhanced-select"
|
173 |
+
msgid "Please select new subscriber group."
|
174 |
+
msgstr "Veuillez choisir un groupe d'abonnés."
|
175 |
|
176 |
+
#: classes/es-register.php:181
|
177 |
+
msgctxt "view-subscriber-enhanced-select"
|
178 |
+
msgid "Please select new status for subscribers"
|
179 |
+
msgstr "Veuillez choisir un nouveau statut pour ces abonnés"
|
180 |
|
181 |
+
#: classes/es-register.php:182
|
182 |
+
msgctxt "view-subscriber-enhanced-select"
|
183 |
+
msgid "Do you want to update subscribers group?"
|
184 |
+
msgstr "Voulez-vous mettre à jour ce groupe?"
|
185 |
|
186 |
+
#: classes/es-register.php:183
|
187 |
+
msgctxt "view-subscriber-enhanced-select"
|
188 |
+
msgid "Do you want to update subscribers status?"
|
189 |
+
msgstr "Voulez vous modifier le statut de ces abonnés?"
|
190 |
|
191 |
+
#: classes/es-register.php:184
|
192 |
+
msgctxt "view-subscriber-enhanced-select"
|
193 |
+
msgid ""
|
194 |
+
"Please select only csv file. Please check official website for csv "
|
195 |
+
"structure.."
|
196 |
+
msgstr ""
|
197 |
+
"Veuillez choisir uniquement un fichier csv. Consultez la documentation pour "
|
198 |
+
"la structure du fichier csv."
|
199 |
|
200 |
+
#: classes/es-register.php:192
|
201 |
+
msgctxt "compose-enhanced-select"
|
202 |
+
msgid "Please enter the Email Subject."
|
203 |
+
msgstr "Veuillez saisir le sujet de votre courriel."
|
204 |
|
205 |
+
#: classes/es-register.php:193
|
206 |
+
msgctxt "compose-enhanced-select"
|
207 |
+
msgid "Do you want to delete this record?"
|
208 |
+
msgstr "Voulez-vous supprimer cet enregistrement?"
|
209 |
|
210 |
+
#: classes/es-register.php:201
|
211 |
+
msgctxt "notification-enhanced-select"
|
212 |
+
msgid "Please select subscribers group."
|
213 |
+
msgstr "Veuillez choisir un groupe."
|
214 |
|
215 |
+
#: classes/es-register.php:202
|
216 |
+
msgctxt "notification-enhanced-select"
|
217 |
+
msgid ""
|
218 |
+
"Please select notification mail subject. Use compose menu to create new."
|
219 |
+
msgstr ""
|
220 |
+
"Veuillez choisir le modèle de courriel. Utilisez le menu Modèles pour en "
|
221 |
+
"créer un nouveau."
|
222 |
|
223 |
+
#: classes/es-register.php:203
|
224 |
+
msgctxt "notification-enhanced-select"
|
225 |
+
msgid "Please select notification status."
|
226 |
+
msgstr "Veuillez sélectionner le statut de la notification."
|
227 |
|
228 |
+
#: classes/es-register.php:204
|
229 |
+
msgctxt "notification-enhanced-select"
|
230 |
+
msgid "Do you want to delete this record?"
|
231 |
+
msgstr "Voulez-vous supprimer cet enregistrement?"
|
232 |
|
233 |
+
#: classes/es-register.php:212
|
234 |
+
msgctxt "sendmail-enhanced-select"
|
235 |
+
msgid "Please select your mail subject."
|
236 |
+
msgstr "Veuillez choisir le sujet du courriel."
|
237 |
|
238 |
+
#: classes/es-register.php:213
|
239 |
+
msgctxt "sendmail-enhanced-select"
|
240 |
+
msgid "Please select your mail type."
|
241 |
+
msgstr "Veuillez choisir le type d'envoi."
|
242 |
|
243 |
+
#: classes/es-register.php:214
|
244 |
+
msgctxt "sendmail-enhanced-select"
|
245 |
+
msgid ""
|
246 |
+
"Have you double checked your selected group? If so, let's go ahead and send "
|
247 |
+
"this."
|
248 |
+
msgstr ""
|
249 |
+
"Avez-vous vérifié les groupes sélectionnés? Si c'est bon, allons-y, on peut "
|
250 |
+
"envoyer."
|
251 |
|
252 |
+
#: classes/es-register.php:222
|
253 |
+
msgctxt "sentmail-enhanced-select"
|
254 |
+
msgid "Do you want to delete this record?"
|
255 |
+
msgstr "Voulez-vous supprimer cet enregistrement?"
|
256 |
|
257 |
+
#: classes/es-register.php:223
|
258 |
+
msgctxt "sentmail-enhanced-select"
|
259 |
+
msgid "Do you want to delete all records except latest 10?"
|
260 |
+
msgstr "Voulez-vous supprimer tous les enregistrements sauf les 10 derniers?"
|
261 |
|
262 |
+
#: classes/es-register.php:231
|
263 |
+
msgctxt "cron-enhanced-select"
|
264 |
+
msgid "Please select enter number of mails you want to send per hour/trigger."
|
265 |
+
msgstr ""
|
266 |
+
"Veuillez saisir le nombre de courriels que vous voulez envoyer par heure/"
|
267 |
+
"envoi."
|
268 |
|
269 |
+
#: classes/es-register.php:232
|
270 |
+
msgctxt "cron-enhanced-select"
|
271 |
+
msgid "Please enter the mail count, only number."
|
272 |
+
msgstr "Veuillez saisir le nombre de courriel. Que des chiffres."
|
273 |
|
274 |
+
#: classes/es-register.php:245
|
275 |
+
msgctxt "widget-enhanced-select"
|
276 |
+
msgid "Please enter email address"
|
277 |
+
msgstr "Veuillez saisir une adresse e-mail"
|
278 |
|
279 |
+
#: classes/es-register.php:246
|
280 |
+
msgctxt "widget-enhanced-select"
|
281 |
+
msgid "Please provide a valid email address"
|
282 |
+
msgstr "Veuillez saisir une adresse e-mail valide"
|
283 |
|
284 |
+
#: classes/es-register.php:247
|
285 |
+
msgctxt "widget-enhanced-select"
|
286 |
+
msgid "loading..."
|
287 |
+
msgstr "envoi..."
|
|
|
|
|
288 |
|
289 |
+
#: classes/es-register.php:248
|
290 |
+
msgctxt "widget-enhanced-select"
|
291 |
+
msgid "Cannot create XMLHTTP instance"
|
292 |
+
msgstr "Impossible de créer l'instance XMLHTTP"
|
293 |
|
294 |
+
#: classes/es-register.php:249
|
295 |
+
msgctxt "widget-enhanced-select"
|
296 |
+
msgid "Successfully Subscribed."
|
297 |
+
msgstr "Mise à jour réussie."
|
298 |
|
299 |
+
#: classes/es-register.php:250
|
300 |
+
msgctxt "widget-enhanced-select"
|
301 |
+
msgid ""
|
302 |
+
"Your subscription was successful! Within a few minutes, kindly check the "
|
303 |
+
"mail in your mailbox and confirm your subscription. If you can't see the "
|
304 |
+
"mail in your mailbox, please check your spam folder."
|
305 |
+
msgstr ""
|
306 |
+
"Pour confirmer votre abonnement, consultez votre boîte de reception et "
|
307 |
+
"cliquez sur le lien qui vous a été envoyé."
|
308 |
|
309 |
+
#: classes/es-register.php:251
|
310 |
+
msgctxt "widget-enhanced-select"
|
311 |
+
msgid "Email Address already exists!"
|
312 |
+
msgstr "Cet adresse e-mail existe déjà !"
|
313 |
|
314 |
+
#: classes/es-register.php:252
|
315 |
+
msgctxt "widget-enhanced-select"
|
316 |
+
msgid "Oops.. Unexpected error occurred."
|
317 |
+
msgstr "Oups.. une erreur inattendue s'est produite."
|
318 |
|
319 |
+
#: classes/es-register.php:253
|
320 |
+
msgctxt "widget-enhanced-select"
|
321 |
+
msgid "Invalid email address"
|
322 |
+
msgstr "Adresse e-mail non valide"
|
|
|
|
|
323 |
|
324 |
+
#: classes/es-register.php:254
|
325 |
+
msgctxt "widget-enhanced-select"
|
326 |
+
msgid "Please try after some time"
|
327 |
+
msgstr "Veuillez réessayer dans quelques instants"
|
328 |
|
329 |
+
#: classes/es-register.php:255
|
330 |
+
msgctxt "widget-enhanced-select"
|
331 |
+
msgid "There was a problem with the request"
|
332 |
+
msgstr "Il y a eu un problème avec la requête"
|
333 |
|
334 |
+
#: classes/es-register.php:262
|
335 |
+
msgctxt "widget-page-enhanced-select"
|
336 |
+
msgid "Please enter email address"
|
337 |
+
msgstr "Veuillez saisir une adresse e-mail"
|
338 |
|
339 |
+
#: classes/es-register.php:263
|
340 |
+
msgctxt "widget-page-enhanced-select"
|
341 |
+
msgid "Please provide a valid email address"
|
342 |
+
msgstr "Veuillez saisir une adresse e-mail valide"
|
343 |
|
344 |
+
#: classes/es-register.php:264
|
345 |
+
msgctxt "widget-page-enhanced-select"
|
346 |
+
msgid "loading..."
|
347 |
+
msgstr "chargement..."
|
348 |
|
349 |
+
#: classes/es-register.php:265
|
350 |
+
msgctxt "widget-page-enhanced-select"
|
351 |
+
msgid "Cannot create XMLHTTP instance"
|
352 |
+
msgstr "Impossible de créer l'instance XMLHTTP"
|
353 |
|
354 |
+
#: classes/es-register.php:266
|
355 |
+
msgctxt "widget-page-enhanced-select"
|
356 |
+
msgid "Successfully Subscribed."
|
357 |
+
msgstr "Abonnement réussi."
|
358 |
|
359 |
+
#: classes/es-register.php:267
|
360 |
+
msgctxt "widget-page-enhanced-select"
|
361 |
+
msgid ""
|
362 |
+
"Your subscription was successful! Within a few minutes, kindly check the "
|
363 |
+
"mail in your mailbox and confirm your subscription. If you can't see the "
|
364 |
+
"mail in your mailbox, please check your spam folder."
|
365 |
+
msgstr ""
|
366 |
+
"Pour confirmer votre abonnement, consultez votre boîte de reception et "
|
367 |
+
"cliquez sur le lien qui vous a été envoyé."
|
368 |
|
369 |
+
#: classes/es-register.php:268
|
370 |
+
msgctxt "widget-page-enhanced-select"
|
371 |
+
msgid "Email Address already exists!"
|
372 |
+
msgstr "Cette adresse existe déjà !"
|
373 |
|
374 |
+
#: classes/es-register.php:269
|
375 |
+
msgctxt "widget-page-enhanced-select"
|
376 |
+
msgid "Oops.. Unexpected error occurred."
|
377 |
+
msgstr "Oups... Une erreur inattendue s'est produite."
|
378 |
|
379 |
+
#: classes/es-register.php:270
|
380 |
+
msgctxt "widget-page-enhanced-select"
|
381 |
+
msgid "Invalid email address"
|
382 |
+
msgstr "Adresse e-mail non valide"
|
383 |
|
384 |
+
#: classes/es-register.php:271
|
385 |
+
msgctxt "widget-page-enhanced-select"
|
386 |
+
msgid "Please try after some time"
|
387 |
+
msgstr "Veuillez réessayer plus tard"
|
388 |
|
389 |
+
#: classes/es-register.php:272
|
390 |
+
msgctxt "widget-page-enhanced-select"
|
391 |
+
msgid "There was a problem with the request"
|
392 |
+
msgstr "Il y a eu un problème avec la requête"
|
393 |
|
394 |
+
#: classes/es-register.php:707
|
395 |
+
msgid "is getting even better!"
|
396 |
+
msgstr "s'améliore toujours!"
|
397 |
|
398 |
+
#: classes/es-register.php:708
|
399 |
+
msgid "But I need you to"
|
400 |
+
msgstr "Mais j'ai besoin de vous"
|
|
|
401 |
|
402 |
+
#: classes/es-register.php:708
|
403 |
+
msgid "help me prioritize"
|
404 |
+
msgstr "pour m'aider à choisir les priorités"
|
405 |
|
406 |
+
#: classes/es-register.php:708
|
407 |
+
msgid "Please send your response today."
|
408 |
+
msgstr "Merci d'envoyer votre réponse maintenant."
|
409 |
|
410 |
+
#: classes/es-register.php:715
|
411 |
+
msgid "Here's how you use ES:"
|
412 |
+
msgstr "Comment utilisez-vous Email Subscribers :"
|
413 |
|
414 |
+
#: classes/es-register.php:720
|
415 |
+
msgid "Used Post Notifications more often than Newsletter"
|
416 |
+
msgstr "J'utilise plutôt les notifications d'articles que la newsletter"
|
417 |
|
418 |
+
#: classes/es-register.php:722
|
419 |
+
msgid "Used Newsletter more often than Post Notifications"
|
420 |
+
msgstr "J'utilise plutôt les newletters que les notifications d'articles"
|
421 |
|
422 |
+
#: classes/es-register.php:724
|
423 |
+
msgid "Used Post Notification & Newsletter equally"
|
424 |
+
msgstr "J'utilise autant les newletters que les notifications d'articles"
|
425 |
|
426 |
+
#: classes/es-register.php:728
|
427 |
+
msgid "Have "
|
428 |
+
msgstr "J'ai"
|
|
|
429 |
|
430 |
+
#: classes/es-register.php:728
|
431 |
+
msgid " Active Subscribers"
|
432 |
+
msgstr " Abonnés activés"
|
433 |
|
434 |
+
#: classes/es-register.php:729
|
435 |
+
msgid "Post "
|
436 |
+
msgstr "J'écris"
|
437 |
|
438 |
+
#: classes/es-register.php:729
|
439 |
+
msgid " blog per week"
|
440 |
+
msgstr " articles par semaine"
|
441 |
|
442 |
+
#: classes/es-register.php:733
|
443 |
+
msgid "Send mails via Cron"
|
444 |
+
msgstr "Envoyer les courriels en tâche de fond"
|
445 |
|
446 |
+
#: classes/es-register.php:735
|
447 |
+
msgid "Send mails Immediately"
|
448 |
+
msgstr "Envoyer les courriels immédiatement"
|
449 |
|
450 |
+
#: classes/es-register.php:745
|
451 |
+
msgid "How soon do you want these new features?"
|
452 |
+
msgstr "Quand désirez-vous ces nouvelles fonctionnalités?"
|
453 |
|
454 |
+
#: classes/es-register.php:749
|
455 |
+
msgid "Beautiful Email Designs"
|
456 |
+
msgstr "Superbes design d'e-mail "
|
457 |
|
458 |
+
#: classes/es-register.php:750 classes/es-register.php:755
|
459 |
+
#: classes/es-register.php:764 classes/es-register.php:769
|
460 |
+
msgid "Right now!"
|
461 |
+
msgstr "Tout de suite!"
|
462 |
|
463 |
+
#: classes/es-register.php:751 classes/es-register.php:756
|
464 |
+
#: classes/es-register.php:765 classes/es-register.php:770
|
465 |
+
msgid "Soon"
|
466 |
+
msgstr "Bientôt"
|
|
|
467 |
|
468 |
+
#: classes/es-register.php:752 classes/es-register.php:757
|
469 |
+
#: classes/es-register.php:766 classes/es-register.php:771
|
470 |
+
msgid "Later"
|
471 |
+
msgstr "Plus tard"
|
472 |
|
473 |
+
#: classes/es-register.php:754
|
474 |
+
msgid "Spam Check, Scheduling... (Better Email Delivery)"
|
475 |
+
msgstr "Vérification de span, planification... (Meilleur réception d'e-mail)"
|
476 |
|
477 |
+
#: classes/es-register.php:763
|
478 |
+
msgid "Discard Fake / Bouncing Emails"
|
479 |
+
msgstr "Suppression des fakes / Message de non délivrance"
|
|
|
480 |
|
481 |
+
#: classes/es-register.php:768
|
482 |
+
msgid "Advanced Reporting"
|
483 |
+
msgstr "Rapport avancé"
|
484 |
|
485 |
+
#: classes/es-register.php:791
|
486 |
+
msgid "Thank you!"
|
487 |
+
msgstr "Merci!"
|
488 |
|
489 |
+
#: classes/es-register.php:792
|
490 |
+
msgid "No issues, have a nice day!"
|
491 |
+
msgstr "Aucune demande, passez une bonne journée!"
|
492 |
|
493 |
+
#: classes/es-register.php:1009
|
494 |
+
msgid "Widget Title"
|
495 |
+
msgstr "Titre du widget"
|
496 |
|
497 |
+
#: classes/es-register.php:1013
|
498 |
+
msgid "Short description about subscription form"
|
499 |
+
msgstr "Courte description de votre formulaire d'abonnement"
|
500 |
|
501 |
+
#: classes/es-register.php:1017
|
502 |
+
msgid "Display Name Field"
|
503 |
+
msgstr "Afficher le champ Nom"
|
504 |
|
505 |
+
#: classes/es-register.php:1019 settings/settings-edit.php:140
|
506 |
+
#: settings/settings-edit.php:213 subscribers/view-subscriber-sync.php:107
|
507 |
+
msgid "YES"
|
508 |
+
msgstr "OUI"
|
509 |
|
510 |
+
#: classes/es-register.php:1020 settings/settings-edit.php:141
|
511 |
+
#: settings/settings-edit.php:214 subscribers/view-subscriber-sync.php:106
|
512 |
+
msgid "NO"
|
513 |
+
msgstr "NON"
|
514 |
|
515 |
+
#: classes/es-register.php:1024
|
516 |
+
msgid "Subscriber Group"
|
517 |
+
msgstr "Groupe d'abonnés"
|
518 |
|
519 |
+
#: compose/compose-add.php:31 compose/compose-edit.php:48
|
520 |
+
msgid "Please enter template heading."
|
521 |
+
msgstr "Veuillez saisir le nom du modèle."
|
522 |
|
523 |
+
#: compose/compose-add.php:43
|
524 |
+
msgid "Template successfully created. "
|
525 |
+
msgstr "Modèle créé."
|
526 |
|
527 |
+
#: compose/compose-add.php:74
|
528 |
+
msgid "Add new Email"
|
529 |
+
msgstr "Ajouter un nouveau courriel"
|
|
|
|
|
|
|
|
|
|
|
530 |
|
531 |
+
#: compose/compose-add.php:75 compose/compose-edit.php:86
|
532 |
+
#: compose/compose-preview.php:28 compose/compose-show.php:66
|
533 |
+
#: notification/notification-add.php:113 notification/notification-edit.php:124
|
534 |
+
#: notification/notification-show.php:54 sendmail/sendmail.php:94
|
535 |
+
#: sentmail/deliverreport-show.php:61 sentmail/sentmail-preview.php:28
|
536 |
+
#: sentmail/sentmail-show.php:97 settings/settings-edit.php:42
|
537 |
+
#: subscribers/view-subscriber-add.php:114
|
538 |
+
#: subscribers/view-subscriber-edit.php:113
|
539 |
+
#: subscribers/view-subscriber-export.php:38
|
540 |
+
#: subscribers/view-subscriber-import.php:146
|
541 |
+
#: subscribers/view-subscriber-show.php:246
|
542 |
+
#: subscribers/view-subscriber-sync.php:92
|
543 |
+
msgid "Help"
|
544 |
+
msgstr "Aide"
|
545 |
|
546 |
+
#: compose/compose-add.php:78 compose/compose-edit.php:89
|
547 |
+
msgid "Select your Mail Template"
|
548 |
+
msgstr "Sélectionner le modèle de courriel"
|
|
|
|
|
|
|
|
|
|
|
549 |
|
550 |
+
#: compose/compose-add.php:80 compose/compose-edit.php:91
|
551 |
+
msgid "Newsletter"
|
552 |
+
msgstr "Newsletters"
|
|
|
|
|
|
|
|
|
|
|
553 |
|
554 |
+
#: compose/compose-add.php:81 compose/compose-edit.php:92
|
555 |
+
msgid "Post Notification"
|
556 |
+
msgstr "Notification d'article"
|
557 |
|
558 |
+
#: compose/compose-add.php:85 compose/compose-edit.php:96
|
559 |
+
msgid "Enter your Email Subject"
|
560 |
+
msgstr "Saisir le sujet du courriel"
|
561 |
|
562 |
+
#: compose/compose-add.php:87 compose/compose-edit.php:98
|
563 |
+
msgid "Keyword: ###POSTTITLE###"
|
564 |
+
msgstr "Mot clé: ###POSTTITLE###"
|
565 |
|
566 |
+
#: compose/compose-add.php:89 compose/compose-edit.php:100
|
567 |
+
msgid "Enter Content for your Email"
|
568 |
+
msgstr "Saisir le contenu du courriel"
|
569 |
|
570 |
+
#: compose/compose-add.php:93 compose/compose-edit.php:104
|
571 |
+
msgid ""
|
572 |
+
"%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
|
573 |
+
"###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, "
|
574 |
+
"###POSTDESC###, ###POSTFULL###"
|
575 |
+
msgstr ""
|
576 |
+
"%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
|
577 |
+
"###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, "
|
578 |
+
"###POSTDESC###, ###POSTFULL###"
|
579 |
|
580 |
+
#: compose/compose-add.php:93 compose/compose-edit.php:104
|
581 |
+
msgid "Available Keywords"
|
582 |
+
msgstr "Mots clés autorisés"
|
583 |
|
584 |
+
#: compose/compose-add.php:97 compose/compose-edit.php:108
|
585 |
+
#: sentmail/deliverreport-show.php:73 sentmail/deliverreport-show.php:84
|
586 |
+
#: sentmail/sentmail-show.php:113 sentmail/sentmail-show.php:126
|
587 |
+
#: subscribers/view-subscriber-show.php:362
|
588 |
+
#: subscribers/view-subscriber-show.php:375
|
589 |
+
msgid "Status"
|
590 |
+
msgstr "Statut"
|
591 |
|
592 |
+
#: compose/compose-add.php:99 compose/compose-edit.php:110
|
593 |
+
msgid "Published"
|
594 |
+
msgstr "Publié"
|
595 |
|
596 |
+
#: compose/compose-add.php:101 compose/compose-edit.php:112
|
597 |
+
msgid "Please select your mail status"
|
598 |
+
msgstr "Sélectionnez le statut du modèle de courriel"
|
599 |
|
600 |
+
#: compose/compose-add.php:105 compose/compose-edit.php:117
|
601 |
+
#: notification/notification-add.php:253 notification/notification-edit.php:290
|
602 |
+
#: subscribers/view-subscriber-edit.php:191
|
603 |
+
msgid "Save"
|
604 |
+
msgstr "Enregistrer"
|
605 |
|
606 |
+
#: compose/compose-edit.php:20 compose/compose-preview.php:18
|
607 |
+
#: compose/compose-show.php:33 notification/notification-edit.php:20
|
608 |
+
#: notification/notification-show.php:21 sentmail/sentmail-preview.php:18
|
609 |
+
#: sentmail/sentmail-show.php:22 subscribers/view-subscriber-edit.php:22
|
610 |
+
msgid "Oops, selected details does not exists."
|
611 |
+
msgstr "Oups, ces données n'existent pas."
|
612 |
|
613 |
+
#: compose/compose-edit.php:61
|
614 |
+
msgid "Template successfully updated. "
|
615 |
+
msgstr "Mise à jour du modèle réussie."
|
616 |
|
617 |
+
#: compose/compose-edit.php:84
|
618 |
+
msgid "Edit Email"
|
619 |
+
msgstr "Modifier l'email"
|
620 |
|
621 |
+
#: compose/compose-edit.php:85 compose/compose-show.php:65
|
622 |
+
#: notification/notification-edit.php:123 notification/notification-show.php:53
|
623 |
+
msgid "Add New"
|
624 |
+
msgstr "Ajouter"
|
625 |
|
626 |
+
#: compose/compose-preview.php:27 sentmail/sentmail-preview.php:27
|
627 |
+
msgid "Preview Mail"
|
628 |
+
msgstr "Aperçu du courriel"
|
629 |
|
630 |
+
#: compose/compose-preview.php:40 compose/compose-show.php:101
|
631 |
+
#: notification/notification-show.php:100
|
632 |
+
#: subscribers/view-subscriber-show.php:404
|
633 |
+
msgid "Edit"
|
634 |
+
msgstr "Modifier"
|
635 |
|
636 |
+
#: compose/compose-show.php:14 sendmail/sendmail.php:18
|
637 |
+
#: subscribers/view-subscriber-show.php:17
|
638 |
+
msgid "Click Here"
|
639 |
+
msgstr "Cliquez ici"
|
640 |
|
641 |
+
#: compose/compose-show.php:47 notification/notification-show.php:35
|
642 |
+
#: sentmail/sentmail-show.php:36
|
643 |
+
msgid "Selected record deleted."
|
644 |
+
msgstr "La sélection a été supprimée."
|
645 |
|
646 |
+
#: compose/compose-show.php:77 compose/compose-show.php:84
|
647 |
+
#: notification/notification-show.php:68 notification/notification-show.php:76
|
648 |
+
msgid "Email Subject"
|
649 |
+
msgstr "Sujet"
|
650 |
|
651 |
+
#: compose/compose-show.php:78 compose/compose-show.php:85
|
652 |
+
msgid "Email Template"
|
653 |
+
msgstr "Type d'email"
|
654 |
|
655 |
+
#: compose/compose-show.php:79 compose/compose-show.php:86
|
656 |
+
msgid "Actions"
|
657 |
+
msgstr "Actions"
|
658 |
|
659 |
+
#: compose/compose-show.php:102 notification/notification-show.php:103
|
660 |
+
#: subscribers/view-subscriber-show.php:287
|
661 |
+
#: subscribers/view-subscriber-show.php:409
|
662 |
+
msgid "Delete"
|
663 |
+
msgstr "Supprimer"
|
664 |
|
665 |
+
#: compose/compose-show.php:103 sentmail/sentmail-show.php:111
|
666 |
+
#: sentmail/sentmail-show.php:124
|
667 |
+
msgid "Preview"
|
668 |
+
msgstr "Aperçu"
|
669 |
|
670 |
+
#: compose/compose-show.php:111 notification/notification-show.php:143
|
671 |
+
#: sentmail/deliverreport-show.php:127 sentmail/sentmail-show.php:183
|
672 |
+
#: subscribers/view-subscriber-show.php:432
|
673 |
+
msgid "No records available."
|
674 |
+
msgstr "Aucun enregistrement."
|
675 |
|
676 |
+
#: export/export-email-address.php:45 export/export-email-address.php:49
|
677 |
+
msgid "Unexpected url submit has been detected"
|
678 |
+
msgstr "Une erreur d'URL a été détectée"
|
679 |
|
680 |
+
#: help/help.php:47
|
681 |
+
msgid "Welcome to Email Subscribers!"
|
682 |
+
msgstr "Bienvenue sur Email Subscribers & Newsletters!"
|
683 |
|
684 |
+
#: help/help.php:48
|
685 |
+
msgid ""
|
686 |
+
"Thanks for installing and we hope you will enjoy using Email Subscribers."
|
687 |
+
msgstr ""
|
688 |
+
"Merci d'avoir installé Email Subscribers & Newsletters. Nous espérons que "
|
689 |
+
"vous serez satisfaits d'utiliser cette extension."
|
690 |
|
691 |
+
#: help/help.php:52
|
692 |
+
msgid "For more help and tips..."
|
693 |
+
msgstr "Pour de l'aide et des astuces..."
|
694 |
|
695 |
+
#: help/help.php:67
|
696 |
+
msgid ""
|
697 |
+
"Like Email Subscribers? If yes, then consider %s to support further "
|
698 |
+
"developments."
|
699 |
+
msgstr ""
|
700 |
+
"Vous aimez Email Subscribers? Si oui, merci de nous soutenir %s pour aider "
|
701 |
+
"aux futurs développements."
|
702 |
|
703 |
+
#: help/help.php:67
|
704 |
+
msgid "donating to us"
|
705 |
+
msgstr "en nous versant une contribution"
|
706 |
|
707 |
+
#: help/help.php:99
|
708 |
+
msgid "Frequently Asked Questions"
|
709 |
+
msgstr "Foire aux questions"
|
710 |
+
|
711 |
+
#: help/help.php:118 help/help.php:127 help/help.php:130 help/help.php:133
|
712 |
+
#: help/help.php:136 help/help.php:139 help/help.php:142 help/help.php:145
|
713 |
+
#: help/help.php:148 help/help.php:151 help/help.php:154 help/help.php:157
|
714 |
+
#: help/help.php:160 help/help.php:163 help/help.php:166 help/help.php:169
|
715 |
+
#: help/help.php:172 help/help.php:175 help/help.php:178 help/help.php:180
|
716 |
+
msgid "%s"
|
717 |
+
msgstr "%s"
|
718 |
+
|
719 |
+
#: help/help.php:118
|
720 |
+
msgid "How to Add Subscription box to website?"
|
721 |
+
msgstr "Comment ajouter un formulaire d'abonnement sur votre site?"
|
722 |
|
723 |
+
#: help/help.php:127
|
724 |
msgid "General Plugin Settings"
|
725 |
msgstr "Options générales"
|
726 |
|
727 |
+
#: help/help.php:127
|
728 |
+
msgid ""
|
729 |
+
" (How to modify the existing email content like Confirmation email, Welcome "
|
730 |
+
"email, Admin emails)"
|
731 |
+
msgstr ""
|
732 |
+
" (Comment modifier le contenu des courriels de validation, de bienvenue et "
|
733 |
+
"ceux reçus par l'administrateur)"
|
734 |
+
|
735 |
+
#: help/help.php:130
|
736 |
msgid "How to Import or Export Email Addresses?"
|
737 |
msgstr "Comment importer ou exporter des adresses e-mail?"
|
738 |
|
739 |
+
#: help/help.php:133
|
740 |
+
msgid "How to change/update/translate any texts from Email Subscribers?"
|
741 |
+
msgstr "Comment changer/mettre à jour/traduire l'extension?"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
742 |
|
743 |
+
#: help/help.php:136
|
744 |
+
msgid "How to add Unsubscribe link in emails?"
|
745 |
+
msgstr ""
|
746 |
+
"Comment ajouter un lien pour se désabonner dans les courriels envoyés?"
|
747 |
|
748 |
+
#: help/help.php:139
|
749 |
+
msgid "What are the keywords available in the Post Notification template?"
|
750 |
+
msgstr ""
|
751 |
+
"Quels sont les mots clés disponibles dans les modèles de notification "
|
752 |
+
"d'articles?"
|
753 |
|
754 |
+
#: help/help.php:142
|
755 |
+
msgid "How to Compose and Send Newsletter Emails?"
|
756 |
+
msgstr "Comment créer et envoyer un courriel statique?"
|
757 |
|
758 |
+
#: help/help.php:145
|
759 |
+
msgid ""
|
760 |
+
"How to Configure and Send Post Notification emails to subscribers when new "
|
761 |
+
"posts are published?"
|
762 |
+
msgstr ""
|
763 |
+
"Comment configurer et envoyer des notifications aux abonnés lorsque de "
|
764 |
+
"nouveaux articles sont publiés?"
|
765 |
|
766 |
+
#: help/help.php:148
|
767 |
+
msgid "How to Send a sample new post notification email to testgroup/myself?"
|
768 |
+
msgstr ""
|
769 |
+
"Comment envoyer un exemple de notification à moi-même ou un groupe test?"
|
|
|
|
|
770 |
|
771 |
+
#: help/help.php:151
|
772 |
+
msgid "How to check Sent emails reports?"
|
773 |
+
msgstr "Comment vérifier les rapports de courriels envoyés?"
|
774 |
|
775 |
+
#: help/help.php:154
|
776 |
+
msgid "How to Add/Update Existing Subscribers Group?"
|
777 |
+
msgstr "Comment ajouter/mettre à jour les groupes d'abonnés?"
|
778 |
|
779 |
+
#: help/help.php:157
|
780 |
+
msgid "Subscribers are not receiving Emails?"
|
781 |
+
msgstr "Les abonnés ne reçoivent pas les courriels ?"
|
782 |
|
783 |
+
#: help/help.php:160
|
784 |
+
msgid "How to show subscribe form inside a popup?"
|
785 |
+
msgstr "Comment afficher le formulaire d'abonnement dans une popup?"
|
786 |
|
787 |
+
#: help/help.php:163
|
788 |
+
msgid "How to use Rainmaker’s form in Email Subscribers?"
|
789 |
+
msgstr "Comment utiliser un formulaire Rainmaker?"
|
790 |
|
791 |
+
#: help/help.php:166
|
792 |
+
msgid "How to Schedule Cron Mails?"
|
793 |
+
msgstr "Comment planifier l'envoi des courriels?"
|
794 |
|
795 |
+
#: help/help.php:169
|
796 |
+
msgid "How to Schedule Cron Emails in cPanel?"
|
797 |
+
msgstr "Comment planifier l'envoi des courriels sur cPanel?"
|
798 |
|
799 |
+
#: help/help.php:172
|
800 |
+
msgid "How to Schedule Cron Emails in Parallels Plesk?"
|
801 |
+
msgstr "Comment planifier l'envoi des courriels sur Parallels Plesk?"
|
|
|
802 |
|
803 |
+
#: help/help.php:175
|
804 |
+
msgid "What to do if Hosting doesn’t support Cron Jobs?"
|
805 |
+
msgstr "Que faire si votre hébergeur ne propose pas de tâche CRON?"
|
806 |
|
807 |
+
#: help/help.php:178
|
808 |
+
msgid "CSS Help"
|
809 |
+
msgstr "Aide CSS"
|
|
|
810 |
|
811 |
+
#: help/help.php:180
|
812 |
+
msgid "Commonly Asked Questions"
|
813 |
+
msgstr "Foire aux questions"
|
|
|
814 |
|
815 |
+
#: job/es-optin.php:58 job/es-optin.php:68 job/es-unsubscribe.php:54
|
816 |
+
#: job/es-unsubscribe.php:61
|
817 |
+
msgid ""
|
818 |
+
"Oops.. We are getting some technical error. Please try again or contact "
|
819 |
+
"admin."
|
820 |
+
msgstr ""
|
821 |
+
"Oups... Nous avons des erreurs techniques. Veuillez réessayer ou contactez "
|
822 |
+
"l'administrateur du site."
|
823 |
|
824 |
+
#: job/es-optin.php:61
|
825 |
+
msgid "This email address has already been confirmed."
|
826 |
+
msgstr "Cette adresse a déjà été confirmée."
|
827 |
|
828 |
+
#: notification/notification-add.php:33
|
829 |
+
msgid "Please select subscribers group."
|
830 |
+
msgstr "Veuillez sélectionner un groupe d'abonnés."
|
831 |
|
832 |
+
#: notification/notification-add.php:39
|
833 |
+
msgid "Please select notification status."
|
834 |
+
msgstr "Veuillez sélectionner le mode d'envoi de la notification"
|
835 |
|
836 |
+
#: notification/notification-add.php:45 notification/notification-edit.php:61
|
837 |
+
msgid ""
|
838 |
+
"Please select notification mail subject. Use compose menu to create new."
|
839 |
+
msgstr ""
|
840 |
+
"Veuillez sélectionner le modèle de courriel. Utilisez le menu Modèles pour "
|
841 |
+
"en créer un nouveau."
|
842 |
|
843 |
+
#: notification/notification-add.php:51 notification/notification-edit.php:67
|
844 |
+
msgid "Please select post categories."
|
845 |
+
msgstr "Veuillez sélectionner une catégorie."
|
846 |
|
847 |
+
#: notification/notification-add.php:71
|
848 |
+
msgid "Notification successfully created. "
|
849 |
+
msgstr "Notification correctement créée."
|
850 |
|
851 |
+
#: notification/notification-add.php:112
|
852 |
+
msgid "Add Notification"
|
853 |
+
msgstr "Nouvelle notification"
|
854 |
|
855 |
+
#: notification/notification-add.php:120
|
856 |
+
msgid "Select Subscribers Group"
|
857 |
+
msgstr "Groupe d'abonnés"
|
858 |
|
859 |
+
#: notification/notification-add.php:124 notification/notification-add.php:148
|
860 |
+
#: notification/notification-edit.php:135
|
861 |
+
#: notification/notification-edit.php:168 sendmail/sendmail.php:110
|
862 |
+
#: sendmail/sendmail.php:137 sendmail/sendmail.php:151
|
863 |
+
#: subscribers/view-subscriber-add.php:162
|
864 |
+
#: subscribers/view-subscriber-edit.php:162
|
865 |
+
#: subscribers/view-subscriber-import.php:190
|
866 |
+
#: subscribers/view-subscriber-sync.php:119
|
867 |
+
msgid "Select"
|
868 |
+
msgstr "Sélectionner"
|
869 |
|
870 |
+
#: notification/notification-add.php:142 notification/notification-edit.php:162
|
871 |
+
msgid "Select Notification Email Subject"
|
872 |
+
msgstr "Sélectionner le sujet du courriel"
|
873 |
|
874 |
+
#: notification/notification-add.php:143 notification/notification-edit.php:163
|
875 |
+
msgid "(Use compose menu to create new)"
|
876 |
+
msgstr "(utilisez le menu Modèles pour en créer un nouveau)"
|
877 |
|
878 |
+
#: notification/notification-add.php:167 notification/notification-edit.php:190
|
879 |
msgid "Select Post Categories"
|
880 |
msgstr "Catégories"
|
881 |
|
882 |
+
#: notification/notification-add.php:195 notification/notification-edit.php:225
|
883 |
+
msgid "Check All"
|
884 |
+
msgstr "Sélectionner tout"
|
885 |
|
886 |
+
#: notification/notification-add.php:196 notification/notification-edit.php:226
|
887 |
+
msgid "Uncheck All"
|
888 |
+
msgstr "Désélectionner tout"
|
889 |
|
890 |
+
#: notification/notification-add.php:202 notification/notification-edit.php:233
|
891 |
+
msgid "Select your Custom Post Type"
|
892 |
+
msgstr "Type de contenu"
|
893 |
|
894 |
+
#: notification/notification-add.php:203 notification/notification-edit.php:234
|
895 |
+
msgid "(Optional)"
|
896 |
+
msgstr "(Optionnel)"
|
|
|
897 |
|
898 |
+
#: notification/notification-add.php:232 notification/notification-edit.php:268
|
899 |
+
msgid "No Custom Post Types Available"
|
900 |
+
msgstr "Aucun type de contenu personnalisé n'est disponible"
|
|
|
901 |
|
902 |
+
#: notification/notification-add.php:239 notification/notification-edit.php:275
|
903 |
+
msgid "Select Notification Status when a new post is published"
|
904 |
+
msgstr "Sélectionner le type d'envoi lorsqu'un nouvel article est publié"
|
905 |
|
906 |
+
#: notification/notification-add.php:243 notification/notification-edit.php:279
|
907 |
+
#: notification/notification-show.php:130 sendmail/sendmail.php:138
|
908 |
+
msgid "Send email immediately"
|
909 |
+
msgstr "Envoyer les courriels immédiatement"
|
910 |
|
911 |
+
#: notification/notification-add.php:244 notification/notification-edit.php:280
|
912 |
+
#: notification/notification-show.php:132
|
913 |
+
msgid "Add to cron and send email via cron job"
|
914 |
+
msgstr "Ajouter à la file d'attente et envoyer via la tâche CRON"
|
915 |
|
916 |
+
#: notification/notification-add.php:245 notification/notification-edit.php:281
|
917 |
+
msgid "Disable email notification"
|
918 |
+
msgstr "Ne pas envoyer"
|
919 |
|
920 |
+
#: notification/notification-edit.php:49
|
921 |
+
msgid "Please select subscribers group"
|
922 |
+
msgstr "Veuillez sélectionner le groupe d'abonnés"
|
923 |
|
924 |
+
#: notification/notification-edit.php:55
|
925 |
+
msgid "Please select notification status"
|
926 |
+
msgstr "Veuillez sélectionner le mode d'envoi"
|
927 |
|
928 |
+
#: notification/notification-edit.php:89
|
929 |
+
msgid "Notification successfully updated. "
|
930 |
+
msgstr "Mise à jour de la notification réussie. "
|
931 |
|
932 |
+
#: notification/notification-edit.php:122
|
933 |
+
msgid "Edit Notification"
|
934 |
+
msgstr "Modifier la notification"
|
935 |
|
936 |
+
#: notification/notification-edit.php:131
|
937 |
+
#: subscribers/view-subscriber-show.php:289
|
938 |
+
msgid "Update Subscribers Group"
|
939 |
+
msgstr "Mettre à jour le groupe"
|
940 |
|
941 |
+
#: notification/notification-show.php:57
|
942 |
+
msgid ""
|
943 |
+
"Use this to setup and send notification emails to your subscribers when a "
|
944 |
+
"new post is published in your blog."
|
945 |
+
msgstr ""
|
946 |
+
"Permet de configurer et envoyer des notifications aux abonnés lorsque de "
|
947 |
+
"nouveaux articles sont publiés."
|
948 |
|
949 |
+
#: notification/notification-show.php:69 notification/notification-show.php:77
|
950 |
+
msgid "Subscribers Group"
|
951 |
+
msgstr "Groupe d'abonnés"
|
|
|
|
|
|
|
|
|
952 |
|
953 |
+
#: notification/notification-show.php:70 notification/notification-show.php:78
|
954 |
+
msgid "Post Categories / Custom Post Types"
|
955 |
+
msgstr "Catégories / Types de contenu"
|
|
|
|
|
956 |
|
957 |
+
#: notification/notification-show.php:71 notification/notification-show.php:79
|
958 |
+
msgid "Notification Status"
|
959 |
+
msgstr "Mode d'envoi"
|
|
|
|
|
960 |
|
961 |
+
#: sendmail/sendmail.php:40
|
962 |
+
msgid "Please select your mail subject."
|
963 |
+
msgstr "Veuillez choisir le sujet de votre courriel."
|
|
|
|
|
964 |
|
965 |
+
#: sendmail/sendmail.php:46
|
966 |
+
msgid "Please select your mail type."
|
967 |
+
msgstr "Veuillez sélectionner le type de courriel."
|
968 |
|
969 |
+
#: sendmail/sendmail.php:52
|
970 |
+
msgid "Please select your group."
|
971 |
+
msgstr "Veuillez sélectionner le groupe."
|
972 |
|
973 |
+
#: sendmail/sendmail.php:59
|
974 |
+
msgid "Mail sent successfully. "
|
975 |
+
msgstr "Courriel envoyé. "
|
976 |
|
977 |
+
#: sendmail/sendmail.php:63
|
978 |
+
msgid "Click here to check Statistics"
|
979 |
+
msgstr "Cliquez ici pour voir les statistiques"
|
980 |
|
981 |
+
#: sendmail/sendmail.php:69
|
982 |
+
msgid "Oops.. We are getting some error. mail not sending."
|
983 |
+
msgstr "Oups... Problème détecté. Le courriel n'a pas été envoyé."
|
984 |
|
985 |
+
#: sendmail/sendmail.php:97
|
986 |
+
msgid "Use this to send newsletter emails to your subscribers."
|
987 |
+
msgstr "A utiliser pour envoyer des courriels à vos abonnés."
|
988 |
|
989 |
+
#: sendmail/sendmail.php:105
|
990 |
+
msgid "Select Email Subject from available list"
|
991 |
+
msgstr "Sélectionnez le sujet du courriel dans la liste"
|
992 |
|
993 |
+
#: sendmail/sendmail.php:132
|
994 |
+
msgid "Select Email Type"
|
995 |
+
msgstr "Type d'envoi"
|
996 |
|
997 |
+
#: sendmail/sendmail.php:139
|
998 |
+
msgid "Send email via cron job"
|
999 |
+
msgstr "Envoyer les courriels via la tâche CRON"
|
1000 |
|
1001 |
+
#: sendmail/sendmail.php:146
|
1002 |
+
msgid "Select Subscribers group to Send Email"
|
1003 |
+
msgstr "Groupe d'abonnés"
|
1004 |
|
1005 |
+
#: sendmail/sendmail.php:178
|
1006 |
+
msgid "Recipients : 0 "
|
1007 |
+
msgstr "Destinataires : 0 "
|
1008 |
|
1009 |
+
#: sendmail/sendmail.php:180
|
1010 |
+
msgid "Recipients : %s"
|
1011 |
+
msgstr "Destinataires : %s"
|
1012 |
|
1013 |
+
#: sendmail/sendmail.php:183
|
1014 |
+
msgid ""
|
1015 |
+
"<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
|
1016 |
+
"that you change above Mail Type to Cron and Send Mail via Cron Job.</"
|
1017 |
+
"strong><br>Click on Help for more information."
|
1018 |
+
msgstr ""
|
1019 |
+
"<br><br><strong>Il ya plus de 100 destinataires.<br>Nous vous recommandons "
|
1020 |
+
"de modifier le mode d'envoi et d'utiliser la tâche CRON pour envoyer les "
|
1021 |
+
"courriels.</strong><br>Cliquez sur l'aide pour plus d'information."
|
1022 |
|
1023 |
+
#: sendmail/sendmail.php:194 sendmail/sendmail.php:196
|
1024 |
+
msgid "Send Email"
|
1025 |
+
msgstr "Envoyer"
|
1026 |
|
1027 |
+
#: sendmail/sendmail.php:199
|
1028 |
+
msgid "Reset"
|
1029 |
+
msgstr "Réinitialiser"
|
1030 |
|
1031 |
+
#: sentmail/deliverreport-show.php:14
|
1032 |
+
msgid "Oops.. Unexpected error occurred. Please try again."
|
1033 |
+
msgstr "Oups... Erreur inattendue. Merci de réessayer."
|
1034 |
|
1035 |
+
#: sentmail/deliverreport-show.php:50 sentmail/sentmail-show.php:86
|
1036 |
+
msgid " << "
|
1037 |
+
msgstr " << "
|
1038 |
|
1039 |
+
#: sentmail/deliverreport-show.php:51 sentmail/sentmail-show.php:87
|
1040 |
+
msgid " >> "
|
1041 |
+
msgstr " >> "
|
1042 |
|
1043 |
+
#: sentmail/deliverreport-show.php:60
|
1044 |
+
msgid "Delivery Report"
|
1045 |
+
msgstr "Rapport d'envoi"
|
1046 |
|
1047 |
+
#: sentmail/deliverreport-show.php:71 sentmail/deliverreport-show.php:82
|
1048 |
+
#: subscribers/view-subscriber-export.php:45
|
1049 |
+
#: subscribers/view-subscriber-export.php:53
|
1050 |
+
msgid "Sno"
|
1051 |
+
msgstr "n°"
|
1052 |
|
1053 |
+
#: sentmail/deliverreport-show.php:72 sentmail/deliverreport-show.php:83
|
1054 |
+
msgid "Email"
|
1055 |
+
msgstr "E-mail"
|
1056 |
|
1057 |
+
#: sentmail/deliverreport-show.php:74 sentmail/deliverreport-show.php:85
|
1058 |
+
#: sentmail/sentmail-show.php:114 sentmail/sentmail-show.php:127
|
1059 |
+
msgid "Sent"
|
1060 |
+
msgstr "Type d'envoi"
|
1061 |
|
1062 |
+
#: sentmail/deliverreport-show.php:75 sentmail/deliverreport-show.php:86
|
1063 |
+
msgid "Sent Date"
|
1064 |
+
msgstr "Envoyé le"
|
1065 |
|
1066 |
+
#: sentmail/deliverreport-show.php:76 sentmail/deliverreport-show.php:87
|
1067 |
+
msgid "Viewed Status"
|
1068 |
+
msgstr "Statut"
|
1069 |
|
1070 |
+
#: sentmail/deliverreport-show.php:77 sentmail/deliverreport-show.php:88
|
1071 |
+
msgid "Viewed Date"
|
1072 |
+
msgstr "Ouvert le"
|
1073 |
|
1074 |
+
#: sentmail/sentmail-preview.php:42
|
1075 |
+
msgid "Back"
|
1076 |
+
msgstr "Retour"
|
1077 |
|
1078 |
+
#: sentmail/sentmail-show.php:43
|
1079 |
+
msgid "Successfully deleted all reports except latest 10."
|
1080 |
+
msgstr "Les rapports ont été supprimés sauf les 10 derniers."
|
|
|
1081 |
|
1082 |
+
#: sentmail/sentmail-show.php:100
|
1083 |
+
msgid ""
|
1084 |
+
"It will show reports for all Newsletters & Post Notification emails sent."
|
1085 |
+
msgstr ""
|
1086 |
+
"Affiche les rapports pour toutes les newsletters et les courriels de "
|
1087 |
+
"notification envoyés."
|
1088 |
|
1089 |
+
#: sentmail/sentmail-show.php:110 sentmail/sentmail-show.php:123
|
1090 |
+
msgid "View Reports"
|
1091 |
+
msgstr "Afficher les rapports"
|
|
|
1092 |
|
1093 |
+
#: sentmail/sentmail-show.php:112 sentmail/sentmail-show.php:125
|
1094 |
+
msgid "Type"
|
1095 |
+
msgstr "Type"
|
|
|
1096 |
|
1097 |
+
#: sentmail/sentmail-show.php:115 sentmail/sentmail-show.php:128
|
1098 |
+
msgid "Start Date"
|
1099 |
+
msgstr "Date de début"
|
|
|
1100 |
|
1101 |
+
#: sentmail/sentmail-show.php:116 sentmail/sentmail-show.php:129
|
1102 |
+
msgid "End Date"
|
1103 |
+
msgstr "Date de fin"
|
|
|
1104 |
|
1105 |
+
#: sentmail/sentmail-show.php:117 sentmail/sentmail-show.php:130
|
1106 |
+
msgid "Total"
|
1107 |
+
msgstr "Total"
|
|
|
1108 |
|
1109 |
+
#: sentmail/sentmail-show.php:118 sentmail/sentmail-show.php:131
|
1110 |
+
#: subscribers/view-subscriber-export.php:48
|
1111 |
+
#: subscribers/view-subscriber-export.php:56
|
1112 |
+
#: subscribers/view-subscriber-show.php:365
|
1113 |
+
#: subscribers/view-subscriber-show.php:378
|
1114 |
+
msgid "Action"
|
1115 |
+
msgstr "Action"
|
1116 |
|
1117 |
+
#: sentmail/sentmail-show.php:193
|
1118 |
+
msgid "Optimize Table & Delete Records"
|
1119 |
+
msgstr "Optimiser la table"
|
|
|
1120 |
|
1121 |
+
#: sentmail/sentmail-show.php:202
|
1122 |
+
msgid ""
|
1123 |
+
"Note: Please click on <strong>Optimize Table & Delete Records</strong> "
|
1124 |
+
"button to delete all reports except latest 10."
|
1125 |
+
msgstr ""
|
1126 |
+
"Note: cliquez sur le bouton <strong>Optimiser la table</strong> pour "
|
1127 |
+
"supprimer tous les enregistrements sauf les 10 derniers."
|
1128 |
|
1129 |
+
#: settings/setting-sync.php:16
|
1130 |
+
msgid "Table sync completed successfully."
|
1131 |
+
msgstr "Synchronisation de la table effectuée."
|
|
|
1132 |
|
1133 |
+
#: settings/setting-sync.php:29
|
1134 |
+
msgid "Sync plugin tables"
|
1135 |
+
msgstr "Synchronisation des tables"
|
|
|
1136 |
|
1137 |
+
#: settings/setting-sync.php:33
|
1138 |
+
msgid "Click to sync tables"
|
1139 |
+
msgstr "Cliquez pour synchroniser les tables"
|
|
|
1140 |
|
1141 |
+
#: settings/settings-edit.php:23
|
1142 |
+
msgid "Admin"
|
1143 |
+
msgstr "Administration"
|
|
|
1144 |
|
1145 |
+
#: settings/settings-edit.php:24
|
1146 |
+
msgid "Signup Confirmation"
|
1147 |
+
msgstr "Confirmation d'abonnement"
|
|
|
1148 |
|
1149 |
+
#: settings/settings-edit.php:25
|
1150 |
+
msgid "User Roles"
|
1151 |
+
msgstr "Rôles utilisateur"
|
|
|
1152 |
|
1153 |
+
#: settings/settings-edit.php:26
|
1154 |
+
msgid "Cron"
|
1155 |
+
msgstr "Tâche CRON"
|
|
|
1156 |
|
1157 |
+
#: settings/settings-edit.php:64
|
1158 |
+
msgid "Save Settings"
|
1159 |
+
msgstr "Enregistrer les paramètres"
|
|
|
1160 |
|
1161 |
+
#: settings/settings-edit.php:76
|
1162 |
+
msgid "Sender of Notifications"
|
1163 |
+
msgstr "Expéditeur des courriels"
|
|
|
1164 |
|
1165 |
+
#: settings/settings-edit.php:77
|
1166 |
+
msgid ""
|
1167 |
+
"Choose a FROM name and FROM email address for all the emails to be sent from "
|
1168 |
+
"this plugin."
|
1169 |
+
msgstr ""
|
1170 |
+
"Choisissez le nom et l'e-mail de l'expéditeur pour tous les courriels "
|
1171 |
+
"envoyés via cette extension."
|
1172 |
|
1173 |
+
#: settings/settings-edit.php:87
|
1174 |
+
msgid "Mail Type"
|
1175 |
+
msgstr "Type d'email"
|
|
|
1176 |
|
1177 |
+
#: settings/settings-edit.php:88
|
1178 |
+
msgid ""
|
1179 |
+
"Option 1 & 2 is to send mails with default Wordpress method wp_mail(). "
|
1180 |
+
"Option 3 & 4 is to send mails with PHP method mail()."
|
1181 |
+
msgstr ""
|
1182 |
+
"Les options 1 & 2 utilisent la méthode wp_mail() de WordPress. Les options 3 "
|
1183 |
+
"& 4 utilisent la méthode mail() de PHP."
|
1184 |
|
1185 |
+
#: settings/settings-edit.php:92
|
1186 |
+
msgid "1. WP HTML MAIL"
|
1187 |
+
msgstr "1. WP HTML MAIL"
|
|
|
1188 |
|
1189 |
+
#: settings/settings-edit.php:93
|
1190 |
+
msgid "2. WP PLAINTEXT MAIL"
|
1191 |
+
msgstr "2. WP PLAINTEXT MAIL"
|
|
|
1192 |
|
1193 |
+
#: settings/settings-edit.php:94
|
1194 |
+
msgid "3. PHP HTML MAIL"
|
1195 |
+
msgstr "3. PHP HTML MAIL"
|
|
|
1196 |
|
1197 |
+
#: settings/settings-edit.php:95
|
1198 |
+
msgid "4. PHP PLAINTEXT MAIL"
|
1199 |
+
msgstr "4. PHP PLAINTEXT MAIL"
|
|
|
1200 |
|
1201 |
+
#: settings/settings-edit.php:102
|
1202 |
+
msgid "Opt-In Option"
|
1203 |
+
msgstr "Option de validation"
|
|
|
1204 |
|
1205 |
+
#: settings/settings-edit.php:103
|
1206 |
+
msgid ""
|
1207 |
+
"Double Opt In means subscribers need to confirm their email address by an "
|
1208 |
+
"activation link sent them on a activation email message.<br />Single Opt In "
|
1209 |
+
"means subscribers do not need to confirm their email address."
|
1210 |
+
msgstr ""
|
1211 |
+
"Double validation: pour valider leur abonnement, les utilisateurs doivent "
|
1212 |
+
"cliquer sur un lien d'activation envoyé par courriel lors de leur "
|
1213 |
+
"inscription.\n"
|
1214 |
+
"Simple validation: les utilisateurs n'ont pas besoin de confirmer leur "
|
1215 |
+
"adresse e-mail."
|
1216 |
|
1217 |
+
#: settings/settings-edit.php:107
|
1218 |
+
msgid "Double Opt In"
|
1219 |
+
msgstr "Doube validation"
|
|
|
1220 |
|
1221 |
+
#: settings/settings-edit.php:108 subscribers/view-subscriber-add.php:151
|
1222 |
+
#: subscribers/view-subscriber-edit.php:150
|
1223 |
+
#: subscribers/view-subscriber-import.php:178
|
1224 |
+
#: subscribers/view-subscriber-show.php:312
|
1225 |
+
#: subscribers/view-subscriber-show.php:339
|
1226 |
+
msgid "Single Opt In"
|
1227 |
+
msgstr "Simple validation"
|
1228 |
|
1229 |
+
#: settings/settings-edit.php:114
|
1230 |
+
msgid "Image Size"
|
1231 |
+
msgstr "Taille d'image"
|
|
|
1232 |
|
1233 |
+
#: settings/settings-edit.php:115
|
1234 |
+
msgid ""
|
1235 |
+
"Select image size for ###POSTIMAGE### to be shown in the Post Notification "
|
1236 |
+
"Emails."
|
1237 |
+
msgstr "Choisissez la taille d'image dans le courriel pour ###POSTIMAGE###."
|
1238 |
|
1239 |
+
#: settings/settings-edit.php:119
|
1240 |
+
msgid "Full Size"
|
1241 |
+
msgstr "Grande taille"
|
|
|
1242 |
|
1243 |
+
#: settings/settings-edit.php:120
|
1244 |
+
msgid "Medium Size"
|
1245 |
+
msgstr "Taille moyenne"
|
|
|
1246 |
|
1247 |
+
#: settings/settings-edit.php:121
|
1248 |
+
msgid "Thumbnail"
|
1249 |
+
msgstr "Miniature"
|
|
|
1250 |
|
1251 |
+
#: settings/settings-edit.php:127
|
1252 |
+
msgid "Admin Email Addresses"
|
1253 |
+
msgstr "Adresses e-mail des administrateurs"
|
|
|
1254 |
|
1255 |
+
#: settings/settings-edit.php:128
|
1256 |
+
msgid ""
|
1257 |
+
"Enter the admin email addresses that should receive notifications (separated "
|
1258 |
+
"by comma)."
|
1259 |
+
msgstr ""
|
1260 |
+
"Entrer les adresses des administrateurs qui recevront les notifications "
|
1261 |
+
"(séparés par une virgule)."
|
1262 |
|
1263 |
+
#: settings/settings-edit.php:134
|
1264 |
+
msgid "Notify admin when a new subscriber signs up"
|
1265 |
+
msgstr "Notifier l'administrateur d'un nouvel abonné"
|
|
|
1266 |
|
1267 |
+
#: settings/settings-edit.php:135
|
1268 |
+
msgid ""
|
1269 |
+
"To send admin email notifications for the new subscriber. This option must "
|
1270 |
+
"be set to YES."
|
1271 |
+
msgstr ""
|
1272 |
+
"Pour envoyer une notification aux administrateurs lors d'une nouvelle "
|
1273 |
+
"inscription, cette option doit être sur OUI."
|
1274 |
|
1275 |
+
#: settings/settings-edit.php:147
|
1276 |
+
msgid "Admin Email Subject when a new subscriber signs up"
|
1277 |
+
msgstr "Sujet du courriel à l'administrateur pour un nouvel abonné"
|
|
|
1278 |
|
1279 |
+
#: settings/settings-edit.php:148
|
1280 |
+
msgid ""
|
1281 |
+
"Enter the subject for the admin email which will be sent whenever a new "
|
1282 |
+
"email is added and confirmed."
|
1283 |
+
msgstr ""
|
1284 |
+
"Entrer le sujet du courriel envoyé à l'administrateur à chaque fois qu'un "
|
1285 |
+
"nouvel abonné est ajouté et confirmé."
|
1286 |
|
1287 |
+
#: settings/settings-edit.php:154
|
1288 |
+
msgid "Admin Email Content when a new subscriber signs up"
|
1289 |
+
msgstr "Contenu du courriel à l'administrateur pour un nouvel abonné"
|
|
|
1290 |
|
1291 |
+
#: settings/settings-edit.php:155
|
1292 |
+
msgid ""
|
1293 |
+
"Enter the email content for the admin email which will be sent whenever a "
|
1294 |
+
"new email is added and confirmed. (Keyword: ###NAME###, ###EMAIL###)"
|
1295 |
+
msgstr ""
|
1296 |
+
"Entrer le contenu du courriel envoyé à l'administrateur à chaque fois qu'un "
|
1297 |
+
"nouvel abonné est ajouté et confirmé. (Mots clés : ###NAME###, ###EMAIL###)"
|
1298 |
|
1299 |
+
#: settings/settings-edit.php:162
|
1300 |
+
msgid "Sent Report Subject"
|
1301 |
+
msgstr "Sujet pour le rapport d'envoi"
|
1302 |
|
1303 |
+
#: settings/settings-edit.php:163
|
1304 |
+
msgid ""
|
1305 |
+
"Enter the subject for the sent email report. It will be emailed to Admin."
|
1306 |
+
msgstr ""
|
1307 |
+
"Entrer le sujet du rapport d'envoi de courriels. Il sera envoyé à "
|
1308 |
+
"l'administrateur."
|
1309 |
|
1310 |
+
#: settings/settings-edit.php:169
|
1311 |
+
msgid "Sent Report Content"
|
1312 |
+
msgstr "Contenu du rapport d'envoi"
|
1313 |
|
1314 |
+
#: settings/settings-edit.php:170
|
1315 |
+
msgid ""
|
1316 |
+
"Enter the content for the sent email report. It will be emailed to Admin. "
|
1317 |
+
"(Keyword: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
|
1318 |
+
msgstr ""
|
1319 |
+
"Entrer le contenu du rapport d'envoi de courriels. Il sera envoyé à "
|
1320 |
+
"l'administrateur. (Mots clés : ###COUNT###, ###UNIQUE###, ###STARTTIME###, "
|
1321 |
+
"###ENDTIME###)"
|
1322 |
|
1323 |
+
#: settings/settings-edit.php:179
|
1324 |
+
msgid "Double Opt In Email Subject (Confirmation Email)"
|
1325 |
+
msgstr "Sujet du courriel de confirmation (double validation)"
|
1326 |
|
1327 |
+
#: settings/settings-edit.php:180
|
1328 |
+
msgid ""
|
1329 |
+
"Enter the subject for the confirmation email to be sent for Double Opt In "
|
1330 |
+
"whenever a user signs up."
|
1331 |
+
msgstr ""
|
1332 |
+
"Entrer le sujet du courriel de confirmation envoyé lors d'une double "
|
1333 |
+
"validation chaque fois qu'un utilisateur s'inscrit."
|
1334 |
|
1335 |
+
#: settings/settings-edit.php:186
|
1336 |
+
msgid "Double Opt In Email Content (Confirmation Email)"
|
1337 |
+
msgstr "Contenu du courriel de confirmation (double validation)"
|
1338 |
|
1339 |
+
#: settings/settings-edit.php:187
|
1340 |
+
msgid ""
|
1341 |
+
"Enter the content for the confirmation email to be sent for Double Opt In "
|
1342 |
+
"whenever a user signs up. (Keyword: ###NAME###, ###LINK###)"
|
1343 |
+
msgstr ""
|
1344 |
+
"Entrer le contenu du courriel de confirmation envoyé lors d'une double "
|
1345 |
+
"validation chaque fois qu'un utilisateur s'inscrit. (Mot clés : ###NAME###, "
|
1346 |
+
"###LINK###)"
|
1347 |
|
1348 |
+
#: settings/settings-edit.php:193
|
1349 |
+
msgid "Double Opt In Confirmation Link"
|
1350 |
+
msgstr "Lien de confirmation"
|
|
|
1351 |
|
1352 |
+
#: settings/settings-edit.php:194
|
1353 |
+
msgid "It is a readonly field and you are advised not to modify it."
|
1354 |
+
msgstr ""
|
1355 |
+
"C'est un champ en lecture seule et il est conseillé de ne pas le modifier."
|
|
|
|
|
|
|
1356 |
|
1357 |
+
#: settings/settings-edit.php:200
|
1358 |
+
msgid ""
|
1359 |
+
"Text to display after an email address is successfully subscribed from "
|
1360 |
+
"Double Opt In (confirmation) Email"
|
1361 |
+
msgstr "Texte à afficher lors d'un abonnement réussi par double validation"
|
|
|
|
|
1362 |
|
1363 |
+
#: settings/settings-edit.php:201
|
1364 |
+
msgid ""
|
1365 |
+
"This text will be displayed once user clicks on email confirmation link from "
|
1366 |
+
"the Double Opt In (confirmation) Email."
|
1367 |
+
msgstr ""
|
1368 |
+
"Ce texte sera affiché lorsque l'utilisateur clique sur le lien de "
|
1369 |
+
"confirmation dans le courriel de confirmation."
|
1370 |
|
1371 |
+
#: settings/settings-edit.php:208
|
1372 |
+
msgid "Subscriber Welcome Email"
|
1373 |
+
msgstr "Courriel de bienvenue"
|
|
|
|
|
|
|
|
|
1374 |
|
1375 |
+
#: settings/settings-edit.php:209
|
1376 |
+
msgid ""
|
1377 |
+
"To send welcome email to subscriber after successful signup. This option "
|
1378 |
+
"must be set to YES."
|
1379 |
+
msgstr ""
|
1380 |
+
"Pour envoyer un courriel de bienvenue suite à une inscription réussie, cette "
|
1381 |
+
"option doit être sur OUI."
|
1382 |
|
1383 |
+
#: settings/settings-edit.php:220
|
1384 |
+
msgid "Subscriber Welcome Email Subject"
|
1385 |
+
msgstr "Sujet du courriel de bienvenue"
|
1386 |
|
1387 |
+
#: settings/settings-edit.php:221
|
1388 |
+
msgid ""
|
1389 |
+
"Enter the subject for the subscriber welcome email. This will be sent "
|
1390 |
+
"whenever a user's email is either confirmed (if Double Opt In) / subscribed "
|
1391 |
+
"(if Single Opt In) successfully."
|
1392 |
+
msgstr ""
|
1393 |
+
"Entrer le sujet du courriel de bienvenue. Il sera envoyé à chaque fois qu'un "
|
1394 |
+
"abonnement est confirmé ( simple ou double validation )."
|
1395 |
|
1396 |
+
#: settings/settings-edit.php:227
|
1397 |
+
msgid "Subscriber Welcome Email Content"
|
1398 |
+
msgstr "Contenu du courriel de bienvenue"
|
1399 |
|
1400 |
+
#: settings/settings-edit.php:228
|
1401 |
+
msgid ""
|
1402 |
+
"Enter the content for the subscriber welcome email whenever a user's email "
|
1403 |
+
"is either confirmed (if Double Opt In) / subscribed (if Single Opt In) "
|
1404 |
+
"successfully. (Keyword: ###NAME###, ###GROUP###, ###LINK###)"
|
1405 |
+
msgstr ""
|
1406 |
+
"Entrer le contenu du courriel de bienvenue. Il sera envoyé à chaque fois "
|
1407 |
+
"qu'un abonnement est confirmé ( simple ou double validation ). (Mots clés: "
|
1408 |
+
"###NAME###, ###GROUP###, ###LINK###)"
|
1409 |
|
1410 |
+
#: settings/settings-edit.php:236
|
1411 |
+
msgid "Unsubscribe Link"
|
1412 |
+
msgstr "Lien de désabonnement"
|
1413 |
|
1414 |
+
#: settings/settings-edit.php:237
|
1415 |
+
msgid ""
|
1416 |
+
"The unsubscribe link gets added automatically to all emails that are sent "
|
1417 |
+
"from this plugin. It is a readonly field and you are advised not to modify "
|
1418 |
+
"it."
|
1419 |
+
msgstr ""
|
1420 |
+
"Le lien de désabonnement est automatiquement sur tous les courriels envoyés "
|
1421 |
+
"apr cette extension. C'est un champ en lecture seule et il est conseillé de "
|
1422 |
+
"ne pas le modifier."
|
1423 |
|
1424 |
+
#: settings/settings-edit.php:243
|
1425 |
+
msgid "Unsubscribe Text in Email"
|
1426 |
+
msgstr "Texte de désabonnement dans les courriels"
|
|
|
1427 |
|
1428 |
+
#: settings/settings-edit.php:244
|
1429 |
+
msgid ""
|
1430 |
+
"Enter the text for the unsubscribe link. This text is added with unsubscribe "
|
1431 |
+
"link in the emails. (Keyword: ###LINK###)"
|
1432 |
+
msgstr ""
|
1433 |
+
"Entrer le texte contenant le lien de désabonnement. Ce texte est ajouté dans "
|
1434 |
+
"les courriels. (Mot clé : ###LINK###)"
|
1435 |
|
1436 |
+
#: settings/settings-edit.php:250
|
1437 |
+
msgid "Text to display after an email address is unsubscribed"
|
1438 |
+
msgstr "Texte à afficher lors d'un désabonnement"
|
1439 |
+
|
1440 |
+
#: settings/settings-edit.php:251
|
1441 |
+
msgid "This text will be displayed once user clicks on unsubscribe link."
|
1442 |
+
msgstr ""
|
1443 |
+
"Ce texte sera affiché lorsque l'utilisateur clique sur le lien de "
|
1444 |
+
"désabonnement."
|
1445 |
|
1446 |
+
#: settings/settings-edit.php:258
|
1447 |
+
msgid "Error in the Confirmation Link"
|
1448 |
+
msgstr "Erreur sur lien de confirmation"
|
1449 |
|
1450 |
+
#: settings/settings-edit.php:259
|
1451 |
+
msgid ""
|
1452 |
+
"Default message to display if there is any issue while clicking on "
|
1453 |
+
"confirmation link from the Double Opt In (confirmation) Emails."
|
1454 |
+
msgstr ""
|
1455 |
+
"Message à afficher s'il y a un eu une erreur suite au clic sur le lien de "
|
1456 |
+
"confirmation du courriel de double validation."
|
1457 |
+
|
1458 |
+
#: settings/settings-edit.php:265
|
1459 |
+
msgid "Error in the Unsubscribe Link"
|
1460 |
+
msgstr "Erreur sur le lien de désabonnement"
|
1461 |
+
|
1462 |
+
#: settings/settings-edit.php:266
|
1463 |
+
msgid ""
|
1464 |
+
"Default message to display if there is any issue while clicking on "
|
1465 |
+
"unsubscribe link from the Emails."
|
1466 |
+
msgstr ""
|
1467 |
+
"Message à afficher s'il y a un eu une erreur suite au clic sur le lien de "
|
1468 |
+
"désabonnement des courriels."
|
1469 |
+
|
1470 |
+
#: settings/settings-edit.php:276
|
1471 |
+
msgid ""
|
1472 |
+
"Select user roles who can access following menus. Only Admin can change this."
|
1473 |
+
msgstr ""
|
1474 |
+
"Sélectionnez à partir de quel rôle les menus sont accessibles. Seuls les "
|
1475 |
+
"administrateurs peuvent changer cette option."
|
1476 |
+
|
1477 |
+
#: settings/settings-edit.php:282
|
1478 |
+
msgid "Subscribers Menu"
|
1479 |
+
msgstr "Menu Abonnés"
|
1480 |
+
|
1481 |
+
#: settings/settings-edit.php:286 settings/settings-edit.php:298
|
1482 |
+
#: settings/settings-edit.php:310 settings/settings-edit.php:322
|
1483 |
+
#: settings/settings-edit.php:334
|
1484 |
+
msgid "Administrator Only"
|
1485 |
+
msgstr "Que les administrateurs"
|
1486 |
+
|
1487 |
+
#: settings/settings-edit.php:287 settings/settings-edit.php:299
|
1488 |
+
#: settings/settings-edit.php:311 settings/settings-edit.php:323
|
1489 |
+
#: settings/settings-edit.php:335
|
1490 |
+
msgid "Administrator/Editor"
|
1491 |
+
msgstr "Administrateur/Editeur"
|
1492 |
+
|
1493 |
+
#: settings/settings-edit.php:288 settings/settings-edit.php:300
|
1494 |
+
#: settings/settings-edit.php:312 settings/settings-edit.php:324
|
1495 |
+
#: settings/settings-edit.php:336
|
1496 |
+
msgid "Administrator/Editor/Author/Contributor"
|
1497 |
+
msgstr "Administrateur/Editeur/Auteur/Contributeur"
|
1498 |
+
|
1499 |
+
#: settings/settings-edit.php:294
|
1500 |
+
msgid "Compose Menu"
|
1501 |
+
msgstr "Menu Modèles"
|
1502 |
+
|
1503 |
+
#: settings/settings-edit.php:306
|
1504 |
+
msgid "Post Notifications Menu"
|
1505 |
+
msgstr "Menu Notifications d'article"
|
1506 |
+
|
1507 |
+
#: settings/settings-edit.php:330
|
1508 |
+
msgid "Reports Menu"
|
1509 |
+
msgstr "Menu Rapports"
|
1510 |
+
|
1511 |
+
#: settings/settings-edit.php:345
|
1512 |
+
msgid "Cron job URL"
|
1513 |
+
msgstr "URL de la tâche CRON"
|
1514 |
+
|
1515 |
+
#: settings/settings-edit.php:346
|
1516 |
+
msgid ""
|
1517 |
+
"This is your Cron Job URL. It is a readonly field and you are advised not to "
|
1518 |
+
"modify it."
|
1519 |
+
msgstr "URL à utiliser pour paramétrer la tâche CRON sur votre serveur."
|
1520 |
+
|
1521 |
+
#: settings/settings-edit.php:355
|
1522 |
+
msgid "Email Count"
|
1523 |
+
msgstr "Nombre de courriels"
|
1524 |
+
|
1525 |
+
#: settings/settings-edit.php:356
|
1526 |
+
msgid "Number of emails that you want to trigger per hour."
|
1527 |
+
msgstr "Nombre de courriels que vous souhaitez envoyer par heure."
|
1528 |
+
|
1529 |
+
#: settings/settings-edit.php:361
|
1530 |
+
msgid "(Your web host has limits. We suggest 50 emails per hour to be safe)"
|
1531 |
+
msgstr ""
|
1532 |
+
"(Votre hébergeur a ses limites. Nous suggérons 50 courriels par heure pour "
|
1533 |
+
"être sûr)"
|
1534 |
+
|
1535 |
+
#: settings/settings-edit.php:366
|
1536 |
+
msgid "Admin Report"
|
1537 |
+
msgstr "Rapport envoyé aux administrateurs"
|
1538 |
+
|
1539 |
+
#: settings/settings-edit.php:367
|
1540 |
+
msgid ""
|
1541 |
+
"Email to admin whenever cron URL is triggered from your server. (Keywords: "
|
1542 |
+
"###DATE###, ###SUBJECT###, ###COUNT###)"
|
1543 |
+
msgstr ""
|
1544 |
+
"Contenu du courriel envoyé à l'administrateur à chaque fois que la tâche "
|
1545 |
+
"Cron est déclenchée depuis votre serveur. (Mots clés : ###DATE###, "
|
1546 |
+
"###SUBJECT###, ###COUNT###)"
|
1547 |
|
1548 |
+
#: settings/settings-edit.php:377
|
1549 |
+
msgid "What is Cron (auto emails) and how to setup Cron Job?"
|
1550 |
+
msgstr "Qu'est-ce que Cron et comment paramétrer une tâche Cron?"
|
1551 |
+
|
1552 |
+
#: settings/settings-edit.php:378
|
1553 |
+
msgid ""
|
1554 |
+
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
|
1555 |
+
"schedule-cron-emails/\">What is Cron?</a>"
|
1556 |
+
msgstr ""
|
1557 |
+
"<a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-how-to-schedule-"
|
1558 |
+
"cron-mails/\">Qu'est qu'une tâche Cron?</a>"
|
1559 |
+
|
1560 |
+
#: settings/settings-edit.php:379
|
1561 |
+
msgid ""
|
1562 |
+
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
|
1563 |
+
"schedule-cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
|
1564 |
+
msgstr ""
|
1565 |
+
"<a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-how-to-schedule-"
|
1566 |
+
"cron-emails-in-parallels-plesk/\">Paramétrer une tâche cron sur Plesk</a>"
|
1567 |
+
|
1568 |
+
#: settings/settings-edit.php:380
|
1569 |
+
msgid ""
|
1570 |
+
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
|
1571 |
+
"schedule-cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
|
1572 |
+
msgstr ""
|
1573 |
+
"<a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-how-to-schedule-"
|
1574 |
+
"cron-emails-in-cpanel/\">Paramétrer une tâche cron sur cPanel</a>"
|
1575 |
+
|
1576 |
+
#: settings/settings-edit.php:381
|
1577 |
+
msgid ""
|
1578 |
+
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-"
|
1579 |
+
"do-if-hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?"
|
1580 |
+
"</a>"
|
1581 |
+
msgstr ""
|
1582 |
+
"<a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-what-to-do-if-"
|
1583 |
+
"hosting-doesnt-support-cron-jobs/\">Votre hébergeur ne gère pas les tâches "
|
1584 |
+
"cron?</a>"
|
1585 |
+
|
1586 |
+
#: settings/settings-edit.php:495
|
1587 |
+
msgid "Please enter sender of notifications from name."
|
1588 |
+
msgstr "Veuillez saisir le nom de l'expéditeur"
|
1589 |
+
|
1590 |
+
#: settings/settings-edit.php:500
|
1591 |
+
msgid "Please enter sender of notifications from email."
|
1592 |
+
msgstr "Veuillez saisir l'e-mail de l'expéditeur"
|
1593 |
+
|
1594 |
+
#: settings/settings-edit.php:544
|
1595 |
+
msgid "Please enter valid mail count."
|
1596 |
+
msgstr "Veuillez saisir un nombre de courriel valide."
|
1597 |
+
|
1598 |
+
#: settings/settings-edit.php:557
|
1599 |
+
msgid "Settings Saved."
|
1600 |
+
msgstr "Options enregistrées."
|
1601 |
+
|
1602 |
+
#: settings/settings-edit.php:560
|
1603 |
+
msgid "Oops, unable to update."
|
1604 |
+
msgstr "Oups, impossible de mettre à jour."
|
1605 |
+
|
1606 |
+
#: subscribers/view-subscriber-add.php:36
|
1607 |
+
#: subscribers/view-subscriber-edit.php:54
|
1608 |
msgid "Please enter subscriber email address."
|
1609 |
msgstr "Veuillez saisir l'e-mail de l'abonné."
|
1610 |
|
1611 |
+
#: subscribers/view-subscriber-add.php:49
|
1612 |
+
msgid "Please select or create your group for this email."
|
1613 |
+
msgstr "Merci de sélectionner ou créer votre groupe pour cet e-mail."
|
1614 |
|
1615 |
+
#: subscribers/view-subscriber-add.php:56
|
1616 |
+
msgid ""
|
1617 |
+
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1618 |
+
"the group name."
|
1619 |
+
msgstr ""
|
1620 |
+
"Erreur: les caractères (['^$%&*()}{@#~?><>,|=_+\\\"]) ne sont pas admis "
|
1621 |
+
"dans le nom d'un groupe."
|
1622 |
|
1623 |
+
#: subscribers/view-subscriber-add.php:66
|
1624 |
+
msgid "Subscriber has been saved."
|
1625 |
+
msgstr "Abonné enregistré."
|
1626 |
|
1627 |
+
#: subscribers/view-subscriber-add.php:68
|
1628 |
+
msgid "Subscriber already exists."
|
1629 |
+
msgstr "Cet abonné existe déjà."
|
1630 |
|
1631 |
+
#: subscribers/view-subscriber-add.php:71
|
1632 |
+
msgid "Invalid Email."
|
1633 |
+
msgstr "E-mail non valide."
|
1634 |
|
1635 |
+
#: subscribers/view-subscriber-add.php:110
|
1636 |
+
#: subscribers/view-subscriber-edit.php:109
|
1637 |
+
#: subscribers/view-subscriber-export.php:35
|
1638 |
+
#: subscribers/view-subscriber-import.php:143
|
1639 |
+
#: subscribers/view-subscriber-show.php:242
|
1640 |
+
#: subscribers/view-subscriber-sync.php:89
|
1641 |
+
msgid "Add New Subscriber"
|
1642 |
+
msgstr "Ajouter un abonné"
|
1643 |
|
1644 |
+
#: subscribers/view-subscriber-add.php:111
|
1645 |
+
#: subscribers/view-subscriber-edit.php:110
|
1646 |
+
#: subscribers/view-subscriber-export.php:36
|
1647 |
+
#: subscribers/view-subscriber-import.php:210
|
1648 |
+
#: subscribers/view-subscriber-show.php:243
|
1649 |
+
#: subscribers/view-subscriber-sync.php:90
|
1650 |
+
msgid "Import"
|
1651 |
+
msgstr "Importer"
|
1652 |
|
1653 |
+
#: subscribers/view-subscriber-add.php:112
|
1654 |
+
#: subscribers/view-subscriber-edit.php:111
|
1655 |
+
#: subscribers/view-subscriber-import.php:144
|
1656 |
+
#: subscribers/view-subscriber-show.php:244
|
1657 |
+
#: subscribers/view-subscriber-sync.php:91
|
1658 |
+
msgid "Export"
|
1659 |
+
msgstr "Exporter"
|
1660 |
|
1661 |
+
#: subscribers/view-subscriber-add.php:113
|
1662 |
+
#: subscribers/view-subscriber-edit.php:112
|
1663 |
+
#: subscribers/view-subscriber-export.php:37
|
1664 |
+
#: subscribers/view-subscriber-import.php:145
|
1665 |
+
#: subscribers/view-subscriber-show.php:245
|
1666 |
+
#: subscribers/view-subscriber-sync.php:143
|
1667 |
+
msgid "Sync"
|
1668 |
+
msgstr "Synchroniser"
|
1669 |
|
1670 |
+
#: subscribers/view-subscriber-add.php:123
|
1671 |
+
msgid "Enter Subscriber's Full name"
|
1672 |
+
msgstr "Nom complet"
|
1673 |
|
1674 |
+
#: subscribers/view-subscriber-add.php:133
|
1675 |
+
msgid "Enter Subscriber's Email Address"
|
1676 |
+
msgstr "Adresse e-mail"
|
1677 |
|
1678 |
+
#: subscribers/view-subscriber-add.php:143
|
1679 |
+
msgid "Select Subscriber's Status"
|
1680 |
+
msgstr "Statut"
|
1681 |
|
1682 |
+
#: subscribers/view-subscriber-add.php:148
|
1683 |
+
#: subscribers/view-subscriber-edit.php:147
|
1684 |
+
#: subscribers/view-subscriber-import.php:175
|
1685 |
+
#: subscribers/view-subscriber-show.php:309
|
1686 |
+
#: subscribers/view-subscriber-show.php:336
|
1687 |
+
msgid "Confirmed"
|
1688 |
+
msgstr "Confirmé"
|
1689 |
+
|
1690 |
+
#: subscribers/view-subscriber-add.php:149
|
1691 |
+
#: subscribers/view-subscriber-edit.php:148
|
1692 |
+
#: subscribers/view-subscriber-import.php:176
|
1693 |
+
#: subscribers/view-subscriber-show.php:310
|
1694 |
+
#: subscribers/view-subscriber-show.php:337
|
1695 |
+
msgid "Unconfirmed"
|
1696 |
+
msgstr "Non confirmé"
|
1697 |
+
|
1698 |
+
#: subscribers/view-subscriber-add.php:150
|
1699 |
+
#: subscribers/view-subscriber-edit.php:149
|
1700 |
+
#: subscribers/view-subscriber-import.php:177
|
1701 |
+
#: subscribers/view-subscriber-show.php:311
|
1702 |
+
#: subscribers/view-subscriber-show.php:338
|
1703 |
+
msgid "Unsubscribed"
|
1704 |
+
msgstr "Désabonné"
|
1705 |
+
|
1706 |
+
#: subscribers/view-subscriber-add.php:158
|
1707 |
+
msgid "Select (or) Create Group for Subscriber"
|
1708 |
+
msgstr "Groupe"
|
1709 |
|
1710 |
+
#: subscribers/view-subscriber-add.php:174
|
1711 |
+
#: subscribers/view-subscriber-import.php:202
|
1712 |
+
msgid "(or)"
|
1713 |
+
msgstr "(ou)"
|
1714 |
+
|
1715 |
+
#: subscribers/view-subscriber-add.php:183
|
1716 |
+
msgid "Add Subscriber"
|
1717 |
+
msgstr "Ajouter un abonné"
|
1718 |
+
|
1719 |
+
#: subscribers/view-subscriber-edit.php:64
|
1720 |
+
msgid "Error: Special characters are not allowed in the group name."
|
1721 |
msgstr ""
|
1722 |
+
"Erreur: les caractères spéciaux ne sont pas autorisés dans le nom du groupe."
|
|
|
1723 |
|
1724 |
+
#: subscribers/view-subscriber-edit.php:74
|
1725 |
+
msgid "Subscriber details updated."
|
1726 |
+
msgstr "Informations sur l'abonné mises à jour."
|
1727 |
|
1728 |
+
#: subscribers/view-subscriber-edit.php:76
|
1729 |
+
msgid "Subscriber already exists for this group."
|
1730 |
+
msgstr "Cet abonné fait déjà parti de ce groupe."
|
1731 |
|
1732 |
+
#: subscribers/view-subscriber-edit.php:108
|
1733 |
+
msgid "Edit Subscriber"
|
1734 |
+
msgstr "Modifier un abonné"
|
1735 |
|
1736 |
+
#: subscribers/view-subscriber-edit.php:122
|
1737 |
+
msgid "Subscriber's Full Name"
|
1738 |
+
msgstr "Nom complet de l'abonné"
|
1739 |
+
|
1740 |
+
#: subscribers/view-subscriber-edit.php:132
|
1741 |
+
msgid "Subscriber's Email Address"
|
1742 |
+
msgstr "Courriel de l'abonné"
|
1743 |
+
|
1744 |
+
#: subscribers/view-subscriber-edit.php:142
|
1745 |
+
msgid "Update Subscriber's Status"
|
1746 |
+
msgstr "Statut"
|
1747 |
+
|
1748 |
+
#: subscribers/view-subscriber-edit.php:157
|
1749 |
+
msgid "Update Subscriber's Group"
|
1750 |
+
msgstr "Groupe"
|
1751 |
+
|
1752 |
+
#: subscribers/view-subscriber-export.php:34
|
1753 |
+
msgid "Export Email Addresses"
|
1754 |
+
msgstr "Export des adresses e-mail"
|
1755 |
+
|
1756 |
+
#: subscribers/view-subscriber-export.php:46
|
1757 |
+
#: subscribers/view-subscriber-export.php:54
|
1758 |
+
msgid "Type of List to Export"
|
1759 |
+
msgstr "Type de liste à exporter"
|
1760 |
+
|
1761 |
+
#: subscribers/view-subscriber-export.php:47
|
1762 |
+
#: subscribers/view-subscriber-export.php:55
|
1763 |
+
msgid "Total Emails Count"
|
1764 |
+
msgstr "Nombre d'e-mails"
|
1765 |
+
|
1766 |
+
#: subscribers/view-subscriber-export.php:61
|
1767 |
+
msgid "1"
|
1768 |
+
msgstr "1"
|
1769 |
+
|
1770 |
+
#: subscribers/view-subscriber-export.php:62
|
1771 |
+
msgid "All Subscribers"
|
1772 |
+
msgstr "Tous les abonnés"
|
1773 |
+
|
1774 |
+
#: subscribers/view-subscriber-export.php:64
|
1775 |
+
#: subscribers/view-subscriber-export.php:70
|
1776 |
+
#: subscribers/view-subscriber-export.php:76
|
1777 |
+
#: subscribers/view-subscriber-export.php:82
|
1778 |
+
#: subscribers/view-subscriber-export.php:88
|
1779 |
+
msgid "Click to Export in CSV"
|
1780 |
+
msgstr "Exporter en CSV"
|
1781 |
+
|
1782 |
+
#: subscribers/view-subscriber-export.php:67
|
1783 |
+
msgid "2"
|
1784 |
+
msgstr "2"
|
1785 |
+
|
1786 |
+
#: subscribers/view-subscriber-export.php:68
|
1787 |
+
msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
|
1788 |
+
msgstr "Abonnés activés: (Statuts: confirmé & simple validation)"
|
1789 |
+
|
1790 |
+
#: subscribers/view-subscriber-export.php:73
|
1791 |
+
msgid "3"
|
1792 |
+
msgstr "3"
|
1793 |
+
|
1794 |
+
#: subscribers/view-subscriber-export.php:74
|
1795 |
+
msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
|
1796 |
+
msgstr "Abonnés non activés (Statuts: non confirmé & désabonné)"
|
1797 |
|
1798 |
+
#: subscribers/view-subscriber-export.php:79
|
1799 |
+
msgid "4"
|
1800 |
+
msgstr "4"
|
1801 |
|
1802 |
+
#: subscribers/view-subscriber-export.php:80
|
1803 |
+
msgid "WordPress Registered Users"
|
1804 |
+
msgstr "Utilisateurs du site"
|
1805 |
|
1806 |
+
#: subscribers/view-subscriber-export.php:85
|
1807 |
+
msgid "5"
|
1808 |
+
msgstr "5"
|
1809 |
|
1810 |
+
#: subscribers/view-subscriber-export.php:86
|
1811 |
+
msgid "Commented Authors"
|
1812 |
+
msgstr "Auteurs de commentaires"
|
1813 |
|
1814 |
+
#: subscribers/view-subscriber-import.php:44
|
1815 |
+
msgid ""
|
1816 |
+
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1817 |
+
"the Group name."
|
1818 |
+
msgstr ""
|
1819 |
+
"Erreurr: Les caractères spéciaux (['^$%&*()}{@#~?><>,|=_+\\\"]) ne sont pas "
|
1820 |
+
"autorisés pour le nom du groupe."
|
1821 |
|
1822 |
+
#: subscribers/view-subscriber-import.php:92
|
1823 |
+
msgid "email imported."
|
1824 |
+
msgstr "e-mail importé."
|
1825 |
|
1826 |
+
#: subscribers/view-subscriber-import.php:93
|
1827 |
+
msgid "email already exists."
|
1828 |
+
msgstr "e-mail existant."
|
1829 |
|
1830 |
+
#: subscribers/view-subscriber-import.php:94
|
1831 |
+
msgid "email are invalid."
|
1832 |
+
msgstr "e-mail non valide."
|
1833 |
|
1834 |
+
#: subscribers/view-subscriber-import.php:97
|
1835 |
+
#: subscribers/view-subscriber-import.php:126
|
1836 |
+
msgid "Click here"
|
1837 |
+
msgstr "Cliquez ici"
|
1838 |
|
1839 |
+
#: subscribers/view-subscriber-import.php:97
|
1840 |
+
#: subscribers/view-subscriber-import.php:126
|
1841 |
+
msgid " to view details."
|
1842 |
+
msgstr " pour voir les détails."
|
1843 |
|
1844 |
+
#: subscribers/view-subscriber-import.php:105
|
1845 |
+
msgid "File Upload Failed."
|
1846 |
+
msgstr "Le téléchargement a échoué."
|
1847 |
|
1848 |
+
#: subscribers/view-subscriber-import.php:142
|
1849 |
+
msgid "Import Email Addresses"
|
1850 |
+
msgstr "Import d'adresses e-mail"
|
1851 |
|
1852 |
+
#: subscribers/view-subscriber-import.php:155
|
1853 |
+
msgid "Select CSV file"
|
1854 |
+
msgstr "Sélectionnez un fichier CSV"
|
1855 |
|
1856 |
+
#: subscribers/view-subscriber-import.php:157
|
1857 |
+
msgid "Check CSV structure "
|
1858 |
+
msgstr "Vérifiez la structure du fichier CSV"
|
1859 |
|
1860 |
+
#: subscribers/view-subscriber-import.php:158
|
1861 |
+
msgid "from here"
|
1862 |
+
msgstr "ici"
|
1863 |
|
1864 |
+
#: subscribers/view-subscriber-import.php:169
|
1865 |
+
msgid "Select Subscribers Email Status"
|
1866 |
+
msgstr "Sélectionnez le statut des abonnés"
|
1867 |
|
1868 |
+
#: subscribers/view-subscriber-import.php:185
|
1869 |
+
msgid "Select (or) Create Group for Subscribers"
|
1870 |
+
msgstr "Sélectionnez ou créez un groupe d'abonnés"
|
1871 |
|
1872 |
+
#: subscribers/view-subscriber-show.php:45
|
1873 |
+
msgid "Selected details does not exists."
|
1874 |
+
msgstr "L'élément sélectionné n'existe pas."
|
1875 |
|
1876 |
+
#: subscribers/view-subscriber-show.php:56
|
1877 |
+
#: subscribers/view-subscriber-show.php:95
|
1878 |
+
msgid "Record deleted."
|
1879 |
+
msgstr "Enregistrement supprimé."
|
1880 |
|
1881 |
+
#: subscribers/view-subscriber-show.php:67
|
1882 |
+
msgid ""
|
1883 |
+
"To send confirmation email, please change the Opt-in option to Double Opt In."
|
1884 |
+
msgstr ""
|
1885 |
+
"Pour envoyer un courriel de confirmation, cochez l'option double validation."
|
|
|
|
|
1886 |
|
1887 |
+
#: subscribers/view-subscriber-show.php:75
|
1888 |
+
#: subscribers/view-subscriber-show.php:134
|
1889 |
+
msgid "Confirmation emails Resent Successfully."
|
1890 |
+
msgstr "Courriel(s) de confirmation renvoyé(s)."
|
1891 |
|
1892 |
+
#: subscribers/view-subscriber-show.php:100
|
1893 |
+
#: subscribers/view-subscriber-show.php:139
|
1894 |
+
#: subscribers/view-subscriber-show.php:177
|
1895 |
+
#: subscribers/view-subscriber-show.php:216
|
1896 |
+
msgid "No record was selected."
|
1897 |
+
msgstr "Aucun élément n'est sélectionné."
|
1898 |
|
1899 |
+
#: subscribers/view-subscriber-show.php:115
|
1900 |
+
msgid ""
|
1901 |
+
"To send confirmation mail, please change the Opt-in option to Double Opt In."
|
1902 |
+
msgstr ""
|
1903 |
+
"Pour envoyer un courriel de confirmation, cochez l'option double validation."
|
1904 |
|
1905 |
+
#: subscribers/view-subscriber-show.php:163
|
1906 |
+
msgid "Subscribers Group updated."
|
1907 |
+
msgstr "Groupe d'abonnés mis à jour."
|
1908 |
|
1909 |
+
#: subscribers/view-subscriber-show.php:168
|
1910 |
+
msgid "Please select New group to update."
|
1911 |
+
msgstr "Veuillez choisir le nouveau groupe."
|
1912 |
|
1913 |
+
#: subscribers/view-subscriber-show.php:202
|
1914 |
+
msgid "Subscribers Status updated."
|
1915 |
+
msgstr "Statut des abonnés mis à jour."
|
1916 |
|
1917 |
+
#: subscribers/view-subscriber-show.php:207
|
1918 |
+
msgid "Please select New Status to update."
|
1919 |
+
msgstr "Veuillez choisir le nouveau statut."
|
1920 |
|
1921 |
+
#: subscribers/view-subscriber-show.php:252
|
1922 |
+
msgid "Total Subscribers: %s"
|
1923 |
+
msgstr "Total d'abonnés : %s"
|
1924 |
|
1925 |
+
#: subscribers/view-subscriber-show.php:254
|
1926 |
+
msgid "Active Subscribers: %s"
|
1927 |
+
msgstr "Abonnés activés : %s"
|
1928 |
|
1929 |
+
#: subscribers/view-subscriber-show.php:286
|
1930 |
+
msgid "Bulk Actions"
|
1931 |
+
msgstr "Actions groupées"
|
1932 |
|
1933 |
+
#: subscribers/view-subscriber-show.php:288
|
1934 |
+
#: subscribers/view-subscriber-show.php:417
|
1935 |
+
msgid "Resend Confirmation"
|
1936 |
+
msgstr "Renvoyer la confirmation"
|
1937 |
|
1938 |
+
#: subscribers/view-subscriber-show.php:290
|
1939 |
+
msgid "Update Subscribers Status"
|
1940 |
+
msgstr "Mettre à jour le statut"
|
1941 |
|
1942 |
+
#: subscribers/view-subscriber-show.php:293
|
1943 |
+
msgid "Select Group"
|
1944 |
+
msgstr "Choix du groupe"
|
1945 |
|
1946 |
+
#: subscribers/view-subscriber-show.php:308
|
1947 |
+
msgid "Select Status"
|
1948 |
+
msgstr "Choix du statut"
|
1949 |
|
1950 |
+
#: subscribers/view-subscriber-show.php:314
|
1951 |
+
msgid "Apply"
|
1952 |
+
msgstr "Appliquer"
|
1953 |
|
1954 |
+
#: subscribers/view-subscriber-show.php:318
|
1955 |
+
msgid "All Groups"
|
1956 |
+
msgstr "Tous les groupes"
|
1957 |
|
1958 |
+
#: subscribers/view-subscriber-show.php:335
|
1959 |
+
msgid "All Status"
|
1960 |
+
msgstr "Tous les statuts"
|
1961 |
|
1962 |
+
#: subscribers/view-subscriber-show.php:342
|
1963 |
+
msgid "1 to 500 emails"
|
1964 |
+
msgstr "1 à 500"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1965 |
|
1966 |
+
#: subscribers/view-subscriber-show.php:343
|
1967 |
+
msgid "501 to 1000"
|
1968 |
+
msgstr "501 à 1000"
|
1969 |
|
1970 |
+
#: subscribers/view-subscriber-show.php:344
|
1971 |
+
msgid "1001 to 1500"
|
1972 |
+
msgstr "1001 à 1500"
|
1973 |
|
1974 |
+
#: subscribers/view-subscriber-show.php:345
|
1975 |
+
msgid "1501 to 2000"
|
1976 |
+
msgstr "1501 à 2000"
|
1977 |
|
1978 |
+
#: subscribers/view-subscriber-show.php:346
|
1979 |
+
msgid "2001 to 4000"
|
1980 |
+
msgstr "2001 à 4000"
|
1981 |
|
1982 |
+
#: subscribers/view-subscriber-show.php:347
|
1983 |
+
msgid "4001 to 6000"
|
1984 |
+
msgstr "4001 à 6000"
|
1985 |
|
1986 |
+
#: subscribers/view-subscriber-show.php:348
|
1987 |
+
msgid "6001 to 10000"
|
1988 |
+
msgstr "6001 à 10000"
|
1989 |
|
1990 |
+
#: subscribers/view-subscriber-show.php:349
|
1991 |
+
msgid "Display All"
|
1992 |
+
msgstr "Tout afficher"
|
1993 |
|
1994 |
+
#: subscribers/view-subscriber-show.php:360
|
1995 |
+
#: subscribers/view-subscriber-show.php:373
|
1996 |
+
msgid "Email Address"
|
1997 |
+
msgstr "Adresses e-mail"
|
1998 |
|
1999 |
+
#: subscribers/view-subscriber-show.php:363
|
2000 |
+
#: subscribers/view-subscriber-show.php:376
|
2001 |
+
msgid "Group"
|
2002 |
+
msgstr "Groupe"
|
2003 |
|
2004 |
+
#: subscribers/view-subscriber-show.php:364
|
2005 |
+
#: subscribers/view-subscriber-show.php:377
|
2006 |
+
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
2007 |
+
msgstr "Date d'inscription<br>(AAAA-MM-JJ h:m:s)"
|
2008 |
|
2009 |
+
#: subscribers/view-subscriber-sync.php:36
|
2010 |
+
msgid "Please select default group to newly registered user."
|
2011 |
+
msgstr ""
|
2012 |
+
"Veuillez sélectionner un groupe pour les nouveaux utilisateurs enregistrés "
|
2013 |
+
"sur le site."
|
2014 |
|
2015 |
+
#: subscribers/view-subscriber-sync.php:50
|
2016 |
+
msgid "Emails Successfully Synced."
|
2017 |
+
msgstr "E-mails synchronisés."
|
2018 |
|
2019 |
+
#: subscribers/view-subscriber-sync.php:88
|
2020 |
+
msgid "Sync Email"
|
2021 |
+
msgstr "Synchro E-mail"
|
2022 |
|
2023 |
+
#: subscribers/view-subscriber-sync.php:101
|
2024 |
+
msgid "Sync newly registered users to subscribers list"
|
2025 |
+
msgstr ""
|
2026 |
+
"Ajouter les nouveaux utilisateurs inscrits au site à un groupe d'abonnés"
|
2027 |
|
2028 |
+
#: subscribers/view-subscriber-sync.php:114
|
2029 |
+
msgid "Select group to add newly registered users to"
|
2030 |
+
msgstr "Sélectionner un groupe auquel ajouter les nouveaux abonnés du site"
|
|
|
|
|
2031 |
|
2032 |
+
#. Plugin Name of the plugin/theme
|
2033 |
+
msgid "Email Subscribers & Newsletters"
|
2034 |
+
msgstr "Email Subscribers & Newsletters"
|
|
|
2035 |
|
2036 |
+
#. Plugin URI of the plugin/theme
|
2037 |
+
#. Author URI of the plugin/theme
|
2038 |
+
msgid "http://www.icegram.com/"
|
2039 |
+
msgstr "http://www.icegram.com/"
|
|
|
2040 |
|
2041 |
+
#. Description of the plugin/theme
|
2042 |
+
msgid ""
|
2043 |
+
"Add subscription forms on website, send HTML newsletters & automatically "
|
2044 |
+
"notify subscribers about new blog posts once it is published."
|
2045 |
+
msgstr ""
|
2046 |
+
"Permet d'ajouter un formulaire d'abonnement sur votre site, d'envoyer des "
|
2047 |
+
"newsletters en HTML et d'informer automatiquement vos abonnés de vos "
|
2048 |
+
"nouvelles publications."
|
2049 |
|
2050 |
+
#. Author of the plugin/theme
|
2051 |
+
msgid "Icegram"
|
2052 |
+
msgstr "Icegram"
|
|
|
|
|
2053 |
|
2054 |
+
#~ msgid "Email Settings Menu"
|
2055 |
+
#~ msgstr "Menu Options des courriels"
|
|
|
2056 |
|
2057 |
+
#~ msgid "Newsletters + Cron Settings Menu"
|
2058 |
+
#~ msgstr "Menus Newletters et paramètres Cron"
|
|
|
|
|
2059 |
|
2060 |
+
#~ msgid "Email Settings"
|
2061 |
+
#~ msgstr "Options des courriels"
|
|
|
|
|
2062 |
|
2063 |
+
#~ msgid "801 to 1000"
|
2064 |
+
#~ msgstr "801 - 1000"
|
|
|
|
|
|
|
2065 |
|
2066 |
+
#~ msgid "601 to 800"
|
2067 |
+
#~ msgstr "601 - 800"
|
|
|
2068 |
|
2069 |
+
#~ msgid "201 to 400"
|
2070 |
+
#~ msgstr "201 - 400"
|
|
|
2071 |
|
2072 |
+
#~ msgid "Role Updated. "
|
2073 |
+
#~ msgstr "Rôle mis à jour."
|
|
|
2074 |
|
2075 |
+
#~ msgid "What are Static Templates and Dynamic Templates?"
|
2076 |
+
#~ msgstr "Qu'est-ce qu'un modèle statique et un modèle dynamique?"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2077 |
|
2078 |
+
#~ msgid "No, I don't want it"
|
2079 |
+
#~ msgstr "Non merci"
|
|
|
|
|
|
|
|
|
|
|
|
|
2080 |
|
2081 |
+
#~ msgid "Yes, I want this"
|
2082 |
+
#~ msgstr "Installer"
|
|
|
2083 |
|
2084 |
+
#~ msgid ""
|
2085 |
+
#~ "Email Subscribers recommends free plugin <b>Rainmaker</b> to collect "
|
2086 |
+
#~ "leads instantly"
|
2087 |
+
#~ msgstr ""
|
2088 |
+
#~ "Email Subscribers & Newsletters recommande l’extension <b>Rainmaker</b> "
|
2089 |
+
#~ "pour collecter des prospects immédiatement."
|
2090 |
|
2091 |
+
#~ msgid "Send mail immediately when new post is published."
|
2092 |
+
#~ msgstr "Envoyer les courriels directement lorsqu'un article est publié."
|
|
|
|
|
2093 |
|
2094 |
+
#~ msgid "Add to cron when new post is published and send via cron job"
|
2095 |
+
#~ msgstr ""
|
2096 |
+
#~ "Ajouter à la tâche de fond lorsqu'un article est publié et envoyer les "
|
2097 |
+
#~ "courriels en tâche de fond"
|
2098 |
|
2099 |
+
#~ msgid "Select Notification Status"
|
2100 |
+
#~ msgstr "Mode d'envoi"
|
|
|
2101 |
|
2102 |
+
#~ msgid "Dynamic Template (For Post Notification Emails)"
|
2103 |
+
#~ msgstr "Modèle dynamique (pour les notifications)"
|
|
|
2104 |
|
2105 |
+
#~ msgid "Static Template (For Newsletter Emails)"
|
2106 |
+
#~ msgstr "Modèle statique (pour les newsletters)"
|
|
|
2107 |
|
2108 |
+
#~ msgctxt "widget-page-enhanced-select"
|
2109 |
+
#~ msgid "Subscribed successfully."
|
2110 |
+
#~ msgstr "Inscription réussie."
|
2111 |
|
2112 |
+
#~ msgctxt "widget-enhanced-select"
|
2113 |
+
#~ msgid "Subscribed successfully."
|
2114 |
+
#~ msgstr "Inscription réussie."
|
2115 |
|
2116 |
+
#~ msgctxt "compose-enhanced-select"
|
2117 |
+
#~ msgid "Please select template for this configuration."
|
2118 |
+
#~ msgstr "Sélectionnez un modèle pour cette configuration."
|
2119 |
|
2120 |
+
#~ msgctxt "compose-enhanced-select"
|
2121 |
+
#~ msgid "Please enter name for configuration."
|
2122 |
+
#~ msgstr "Veuillez entrer le nom de la configuration."
|
2123 |
|
2124 |
+
#~ msgctxt "view-subscriber-enhanced-select"
|
2125 |
+
#~ msgid "Do you want to export the emails?"
|
2126 |
+
#~ msgstr "Voulez-vous exporter les e-mails?"
|
2127 |
|
2128 |
+
#~ msgid "Admin Email Content"
|
2129 |
+
#~ msgstr "Contenu du courriel pour l'administrateur"
|
|
|
|
|
2130 |
|
2131 |
+
#~ msgid "Admin Email Subject"
|
2132 |
+
#~ msgstr "Sujet de la notification"
|
|
|
|
|
2133 |
|
2134 |
+
#~ msgid "Source"
|
2135 |
+
#~ msgstr "Source"
|
|
|
2136 |
|
2137 |
+
#~ msgid "Database ID"
|
2138 |
+
#~ msgstr "ID"
|
|
|
2139 |
|
2140 |
+
#~ msgid "Help & Info Menu"
|
2141 |
+
#~ msgstr "Menu Aide & Infos"
|
|
|
2142 |
|
2143 |
+
#~ msgid "Mail Subject"
|
2144 |
+
#~ msgstr "Sujet du courriel"
|
2145 |
+
|
2146 |
+
#~ msgid "Short Description"
|
2147 |
+
#~ msgstr "Description courte"
|
languages/email-subscribers-lt_LT.mo
CHANGED
Binary file
|
languages/email-subscribers-lt_LT.po
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: Lithuanian\n"
|
9 |
"Language: lt-LT\n"
|
10 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10 >= 2 "
|
@@ -25,248 +25,235 @@ msgstr ""
|
|
25 |
"X-Loco-Target-Locale: lt_LT\n"
|
26 |
"X-Loco-Parser: loco_parse_po"
|
27 |
|
28 |
-
#: classes/es-register.php:
|
29 |
-
|
30 |
-
|
31 |
-
msgstr "Iškilo problema dėl užklausos"
|
32 |
|
33 |
-
#: classes/es-register.php:
|
34 |
-
|
35 |
-
|
36 |
-
msgstr "Iškilo problema dėl užklausos"
|
37 |
|
38 |
-
#: classes/es-register.php:
|
39 |
-
msgid "
|
40 |
-
msgstr "
|
41 |
|
42 |
-
#:
|
43 |
-
msgid "
|
44 |
-
msgstr "
|
45 |
|
46 |
-
#:
|
47 |
-
msgid "
|
48 |
-
msgstr "
|
49 |
|
50 |
-
#:
|
51 |
-
msgid "
|
52 |
-
msgstr "
|
53 |
|
54 |
-
#:
|
55 |
-
msgid "
|
56 |
-
msgstr "
|
57 |
|
58 |
-
#:
|
59 |
-
msgid "
|
60 |
-
msgstr "
|
61 |
|
62 |
-
#:
|
63 |
-
msgid "
|
64 |
-
msgstr "
|
65 |
|
66 |
-
#:
|
67 |
-
msgid "
|
68 |
-
msgstr "
|
69 |
|
70 |
-
#:
|
71 |
-
msgid ""
|
72 |
-
"
|
73 |
-
"whenever a user signs up."
|
74 |
-
msgstr ""
|
75 |
-
"Įrašykite dvigubo patvirtinimo laiško, kuris bus siunčiamas, kai vartotojas "
|
76 |
-
"užsisakys prenumeratą, temą"
|
77 |
|
78 |
-
#:
|
79 |
-
|
80 |
-
|
|
|
81 |
|
82 |
-
#:
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
msgstr ""
|
87 |
-
"Įveskite dvigubo patvirtinimo laiško, kuris bus siunčiamas, kai vartotojas "
|
88 |
-
"užsisakys prenumeratą, turinį. (Raktažodis: ###NAME###, ###LINK###)"
|
89 |
|
90 |
-
#:
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
msgstr ""
|
95 |
-
"Rodomas tekstas po sėkmingos prenumeratos patvirtinimo iš dvigubo "
|
96 |
-
"patvirtinimo laiško."
|
97 |
|
98 |
-
#:
|
99 |
-
msgid ""
|
100 |
-
"
|
101 |
-
"whenever a user's email is either confirmed (if Double Opt In) / subscribed "
|
102 |
-
"(if Single Opt In) successfully."
|
103 |
-
msgstr ""
|
104 |
-
"Įrašykite prenumeratoriaus pasveikinimo laiško temą. Jis bus siunčiamas, kai "
|
105 |
-
"vartotojo el. pašto adresas patvirtinamas (Dvigubo patvirtinimo atveju) arba "
|
106 |
-
"užsiregistruoja (Viengubo patvirtinimo atveju) sėkmingai."
|
107 |
|
108 |
-
#:
|
109 |
-
msgid ""
|
110 |
-
"
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
"
|
115 |
-
|
116 |
-
|
117 |
-
"
|
|
|
118 |
|
119 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
120 |
msgid ""
|
121 |
-
"
|
122 |
-
"
|
123 |
-
"it."
|
124 |
msgstr ""
|
125 |
-
"
|
126 |
-
"
|
127 |
-
"nerekomenduojame jo keisti."
|
128 |
|
129 |
-
#:
|
130 |
-
msgid "
|
131 |
-
msgstr "
|
132 |
|
133 |
-
#:
|
134 |
-
msgid "
|
135 |
-
msgstr "
|
136 |
|
137 |
-
#:
|
138 |
-
msgid "
|
139 |
-
msgstr "
|
140 |
|
141 |
-
#: settings/settings-edit.php:
|
142 |
-
msgid "
|
143 |
-
msgstr "
|
144 |
|
145 |
-
#: settings/settings-edit.php:
|
146 |
-
msgid "
|
147 |
-
msgstr "
|
148 |
|
149 |
-
#: settings/settings-edit.php:
|
|
|
|
|
|
|
|
|
150 |
msgid ""
|
151 |
-
"Enter the
|
152 |
-
"
|
|
|
153 |
msgstr ""
|
154 |
-
"
|
155 |
-
"adresas
|
|
|
|
|
156 |
|
157 |
-
#:
|
158 |
-
msgid "
|
159 |
-
msgstr "
|
160 |
|
161 |
-
#:
|
162 |
-
msgid ""
|
163 |
-
"Enter the email content for the admin email which will be sent whenever a "
|
164 |
-
"new email is added and confirmed. (Keyword: ###NAME###, ###EMAIL###)"
|
165 |
msgstr ""
|
166 |
-
"
|
167 |
-
"adresas pridedamas ir patvirtinamas, turinį. (Raktažodis: ###NAME###, "
|
168 |
-
"###EMAIL###)"
|
169 |
|
170 |
-
#:
|
171 |
-
msgid ""
|
172 |
-
"Enter the subject for the sent email report. It will be emailed to Admin."
|
173 |
msgstr ""
|
174 |
-
"
|
175 |
-
"administratoriui."
|
176 |
|
177 |
-
#:
|
178 |
-
msgid ""
|
179 |
-
|
180 |
-
"(Keyword: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
|
181 |
-
msgstr ""
|
182 |
-
"Įrašykite siųstų laiškų ataskaitos laiško turinį. Jis bus siunčiamas "
|
183 |
-
"administratoriui. (Raktažodis: ###COUNT###, ###UNIQUE###, ###STARTTIME###, "
|
184 |
-
"###ENDTIME###)"
|
185 |
|
186 |
-
#: subscribers/view-subscriber-export.php:
|
187 |
-
|
188 |
-
|
189 |
-
msgstr "Laiškų skaičius iš viso"
|
190 |
|
191 |
-
#: subscribers/view-subscriber-
|
192 |
-
|
193 |
-
|
|
|
194 |
|
195 |
-
#: subscribers/view-subscriber-show.php:
|
196 |
-
|
197 |
-
|
|
|
198 |
|
199 |
-
#:
|
200 |
-
msgid ""
|
201 |
-
"
|
202 |
-
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
203 |
-
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
204 |
-
"</a> rating. A huge thank you from Icegram in advance!"
|
205 |
-
msgstr ""
|
206 |
-
"Jei jums patinka <strong>Email Subscribers</strong>, prašome pasidalinti <a "
|
207 |
-
"target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
208 |
-
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
209 |
-
"</a> reitingu. Icegram dėkoja iš anksto!"
|
210 |
|
211 |
-
#:
|
212 |
-
|
213 |
-
|
214 |
-
msgstr "Prašome įvesti el. pašto adresą"
|
215 |
|
216 |
-
#:
|
217 |
-
|
218 |
-
|
219 |
-
msgstr "Prašome nurodyti teisingą el. pašto adresą"
|
220 |
|
221 |
-
#:
|
222 |
-
|
223 |
-
|
224 |
-
msgstr "Užsiprenumeravote sėkmingai."
|
225 |
|
226 |
-
#:
|
227 |
-
|
228 |
-
|
229 |
-
msgstr "El. pašto adresas jau egzistuoja!"
|
230 |
|
231 |
-
#:
|
232 |
-
|
233 |
-
|
234 |
-
msgstr "Neteisingas el. pašto adresas"
|
235 |
|
236 |
-
#:
|
237 |
-
|
238 |
-
|
239 |
-
msgstr "Bandykite vėliau"
|
240 |
|
241 |
-
#:
|
242 |
-
|
243 |
-
msgid "
|
244 |
-
msgstr "
|
245 |
|
246 |
-
#: classes/es-register.php:
|
247 |
-
|
248 |
-
msgid "
|
249 |
-
msgstr "
|
250 |
|
251 |
-
#: classes/es-register.php:
|
252 |
-
msgctxt "
|
253 |
-
msgid "
|
254 |
-
msgstr "
|
255 |
|
256 |
-
#: classes/es-register.php:
|
257 |
-
|
258 |
-
|
259 |
-
msgstr "El. pašto adresas jau egzistuoja!"
|
260 |
|
261 |
-
#: classes/es-register.php:
|
262 |
-
|
263 |
-
|
264 |
-
msgstr "Neteisingas el. pašto adresas"
|
265 |
|
266 |
-
#: classes/es-register.php:
|
267 |
-
|
268 |
-
|
269 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
270 |
|
271 |
#: classes/es-common.php:13
|
272 |
msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
|
@@ -314,104 +301,91 @@ msgstr ""
|
|
314 |
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
315 |
msgstr "<span style=\"color:#993399;\">Nedelsiant</span>"
|
316 |
|
317 |
-
#: classes/es-loadwidget.php:28 classes/es-register.php:
|
318 |
-
#: subscribers/view-subscriber-show.php:
|
319 |
-
#: subscribers/view-subscriber-show.php:
|
320 |
msgid "Name"
|
321 |
msgstr "Vardas"
|
322 |
|
323 |
-
#: classes/es-loadwidget.php:33 classes/es-register.php:
|
324 |
msgid "Email *"
|
325 |
msgstr "El. paštas *"
|
326 |
|
327 |
-
#: classes/es-loadwidget.php:38 classes/es-register.php:
|
328 |
msgid "Subscribe"
|
329 |
msgstr "Prenumeruoti"
|
330 |
|
331 |
#. Name of the plugin
|
332 |
-
#: classes/es-register.php:
|
|
|
333 |
msgid "Email Subscribers"
|
334 |
msgstr "Email Subscribers"
|
335 |
|
336 |
-
#: classes/es-register.php:
|
337 |
#: subscribers/view-subscriber-show.php:241
|
338 |
msgid "Subscribers"
|
339 |
msgstr "Prenumeratoriai"
|
340 |
|
341 |
-
#: classes/es-register.php:
|
342 |
#: compose/compose-show.php:64
|
343 |
msgid "Compose"
|
344 |
msgstr "Kurti naują"
|
345 |
|
346 |
-
#: classes/es-register.php:
|
347 |
#: notification/notification-show.php:52
|
348 |
msgid "Post Notifications"
|
349 |
msgstr "Pranešimai apie įrašus"
|
350 |
|
351 |
-
#: classes/es-register.php:
|
352 |
-
#: sendmail/sendmail.php:93
|
353 |
msgid "Newsletters"
|
354 |
-
msgstr "
|
355 |
|
356 |
-
#: classes/es-register.php:
|
357 |
-
msgid "Cron Settings"
|
358 |
-
msgstr "Periodinių užduočių (cron) nustatymai"
|
359 |
-
|
360 |
-
#: classes/es-register.php:162 classes/es-register.php:163
|
361 |
-
#: settings/settings-edit.php:197
|
362 |
-
msgid "Email Settings"
|
363 |
-
msgstr "El. pašto nustatymai"
|
364 |
-
|
365 |
-
#: classes/es-register.php:165 classes/es-register.php:166
|
366 |
-
#: roles/roles-add.php:110
|
367 |
-
msgid "User Roles"
|
368 |
-
msgstr "Vartotojo vaidmenys"
|
369 |
-
|
370 |
-
#: classes/es-register.php:168 classes/es-register.php:169
|
371 |
#: sentmail/sentmail-show.php:96
|
372 |
msgid "Reports"
|
373 |
msgstr "Ataskaitos"
|
374 |
|
375 |
-
#: classes/es-register.php:
|
376 |
msgid "Help & Info"
|
377 |
msgstr "Pagalba ir informacija"
|
378 |
|
379 |
-
#: classes/es-register.php:
|
380 |
msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info"
|
381 |
msgstr ""
|
382 |
"<span style=\"color:#f18500;font-weight:bolder;\">Pagalba ir informacija"
|
383 |
|
384 |
-
#: classes/es-register.php:
|
385 |
msgctxt "view-subscriber-enhanced-select"
|
386 |
msgid "Please enter subscriber email address."
|
387 |
msgstr "Prašome įvesti prenumeratoriaus el. pašto adresą."
|
388 |
|
389 |
-
#: classes/es-register.php:
|
390 |
msgctxt "view-subscriber-enhanced-select"
|
391 |
msgid "Please select subscriber email status."
|
392 |
msgstr "Prašome pasirinkti prenumeratoriaus el. pašto statusą."
|
393 |
|
394 |
-
#: classes/es-register.php:
|
395 |
msgctxt "view-subscriber-enhanced-select"
|
396 |
msgid "Please select or create group for this subscriber."
|
397 |
msgstr "Prašome pasirinkti arba sukurti grupę šiam prenumeratoriui."
|
398 |
|
399 |
-
#: classes/es-register.php:
|
400 |
msgctxt "view-subscriber-enhanced-select"
|
401 |
msgid "Do you want to delete this record?"
|
402 |
msgstr "Ar norite ištrinti šį įrašą?"
|
403 |
|
404 |
-
#: classes/es-register.php:
|
405 |
msgctxt "view-subscriber-enhanced-select"
|
406 |
msgid "Please select the bulk action."
|
407 |
msgstr "Prašome pasirinkti masinį veiksmą."
|
408 |
|
409 |
-
#: classes/es-register.php:
|
410 |
msgctxt "view-subscriber-enhanced-select"
|
411 |
msgid "Are you sure you want to delete selected records?"
|
412 |
msgstr "Ar tikrai norite trinti pasirinktus įrašus?"
|
413 |
|
414 |
-
#: classes/es-register.php:
|
415 |
msgctxt "view-subscriber-enhanced-select"
|
416 |
msgid ""
|
417 |
"Do you want to resend confirmation email? \\nAlso please note, this will "
|
@@ -421,32 +395,27 @@ msgstr ""
|
|
421 |
"kad bus prenumeratoriaus dabartinis statusas bus pakeistas į "
|
422 |
"\"Nepatvirtinta\"."
|
423 |
|
424 |
-
#: classes/es-register.php:
|
425 |
msgctxt "view-subscriber-enhanced-select"
|
426 |
msgid "Please select new subscriber group."
|
427 |
msgstr "Prašome pasirinkti naują prenumeratorių grupę."
|
428 |
|
429 |
-
#: classes/es-register.php:
|
430 |
msgctxt "view-subscriber-enhanced-select"
|
431 |
msgid "Please select new status for subscribers"
|
432 |
msgstr "Prašome pasirinkti naują prenumeratorių statusą"
|
433 |
|
434 |
-
#: classes/es-register.php:
|
435 |
msgctxt "view-subscriber-enhanced-select"
|
436 |
msgid "Do you want to update subscribers group?"
|
437 |
msgstr "Ar norite atnaujinti prenumeratorių grupę?"
|
438 |
|
439 |
-
#: classes/es-register.php:
|
440 |
msgctxt "view-subscriber-enhanced-select"
|
441 |
msgid "Do you want to update subscribers status?"
|
442 |
msgstr "Ar norite atnaujinti prenumeratorių statusą?"
|
443 |
|
444 |
-
#: classes/es-register.php:
|
445 |
-
msgctxt "view-subscriber-enhanced-select"
|
446 |
-
msgid "Do you want to export the emails?"
|
447 |
-
msgstr "Ar norite eksportuoti el. pašto adresus?"
|
448 |
-
|
449 |
-
#: classes/es-register.php:195
|
450 |
msgctxt "view-subscriber-enhanced-select"
|
451 |
msgid ""
|
452 |
"Please select only csv file. Please check official website for csv structure."
|
@@ -455,27 +424,17 @@ msgstr ""
|
|
455 |
"Prašome pasirinkti tik CSV failą. CSV struktūrą pasitikrinkite oficialioje "
|
456 |
"svetainėje."
|
457 |
|
458 |
-
#: classes/es-register.php:
|
459 |
-
msgctxt "compose-enhanced-select"
|
460 |
-
msgid "Please enter name for configuration."
|
461 |
-
msgstr "Prašome įvesti konfiguracijos pavadinimą."
|
462 |
-
|
463 |
-
#: classes/es-register.php:204
|
464 |
-
msgctxt "compose-enhanced-select"
|
465 |
-
msgid "Please select template for this configuration."
|
466 |
-
msgstr "Prašome pasirinkti šios konfiguracijos šabloną."
|
467 |
-
|
468 |
-
#: classes/es-register.php:205
|
469 |
msgctxt "compose-enhanced-select"
|
470 |
msgid "Do you want to delete this record?"
|
471 |
msgstr "Ar norite ištrinti šį įrašą?"
|
472 |
|
473 |
-
#: classes/es-register.php:
|
474 |
msgctxt "notification-enhanced-select"
|
475 |
msgid "Please select subscribers group."
|
476 |
msgstr "Prašome pasirinkti prenumeratorių grupę."
|
477 |
|
478 |
-
#: classes/es-register.php:
|
479 |
msgctxt "notification-enhanced-select"
|
480 |
msgid ""
|
481 |
"Please select notification mail subject. Use compose menu to create new."
|
@@ -483,27 +442,27 @@ msgstr ""
|
|
483 |
"Prašome pasirinkti pranešimo laiško temą. Norėdami sukurti naują, naudokite "
|
484 |
"meniu \"Sukurti\"."
|
485 |
|
486 |
-
#: classes/es-register.php:
|
487 |
msgctxt "notification-enhanced-select"
|
488 |
msgid "Please select notification status."
|
489 |
msgstr "Prašome pasirinkti pranešimo statusą."
|
490 |
|
491 |
-
#: classes/es-register.php:
|
492 |
msgctxt "notification-enhanced-select"
|
493 |
msgid "Do you want to delete this record?"
|
494 |
msgstr "Ar norite ištrinti šį įrašą?"
|
495 |
|
496 |
-
#: classes/es-register.php:
|
497 |
msgctxt "sendmail-enhanced-select"
|
498 |
msgid "Please select your mail subject."
|
499 |
msgstr "Prašome pasirinkti laiško temą."
|
500 |
|
501 |
-
#: classes/es-register.php:
|
502 |
msgctxt "sendmail-enhanced-select"
|
503 |
msgid "Please select your mail type."
|
504 |
msgstr "Prašome pasirinkti laiško tipą."
|
505 |
|
506 |
-
#: classes/es-register.php:
|
507 |
msgctxt "sendmail-enhanced-select"
|
508 |
msgid ""
|
509 |
"Have you double checked your selected group? If so, let's go ahead and send "
|
@@ -512,38 +471,53 @@ msgstr ""
|
|
512 |
"Ar du kartus patikrinote pasirinktą grupę? Jei taip, tęskite toliau ir "
|
513 |
"siųskite tai."
|
514 |
|
515 |
-
#: classes/es-register.php:
|
516 |
msgctxt "sentmail-enhanced-select"
|
517 |
msgid "Do you want to delete this record?"
|
518 |
msgstr "Ar norite ištrinti šį įrašą?"
|
519 |
|
520 |
-
#: classes/es-register.php:
|
521 |
msgctxt "sentmail-enhanced-select"
|
522 |
msgid "Do you want to delete all records except latest 10?"
|
523 |
msgstr "Ar norite ištrinti visus, išskyrus 10 naujausių, įrašus?"
|
524 |
|
525 |
-
#: classes/es-register.php:
|
526 |
msgctxt "cron-enhanced-select"
|
527 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
528 |
msgstr ""
|
529 |
"Prašome pasirinkti laiškų kiekį, kurį norite siųsti per valandą/veiksmą."
|
530 |
|
531 |
-
#: classes/es-register.php:
|
532 |
msgctxt "cron-enhanced-select"
|
533 |
msgid "Please enter the mail count, only number."
|
534 |
msgstr "Prašome įvesti laiškų kiekį (tik skaičius)."
|
535 |
|
536 |
-
#: classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
537 |
msgctxt "widget-enhanced-select"
|
538 |
msgid "loading..."
|
539 |
msgstr "kraunasi..."
|
540 |
|
541 |
-
#: classes/es-register.php:
|
542 |
msgctxt "widget-enhanced-select"
|
543 |
msgid "Cannot create XMLHTTP instance"
|
544 |
msgstr "Nepavyko sukurti XMLHTTP instancijos"
|
545 |
|
546 |
-
#: classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
547 |
msgctxt "widget-enhanced-select"
|
548 |
msgid ""
|
549 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
@@ -554,22 +528,57 @@ msgstr ""
|
|
554 |
"savo pašto dėžutė ir patvirtinkite savo prenumeratą. Jei negalite rasti savo "
|
555 |
"pašto dėžutėje laiško, patikrinkite savo šlamšto aplanką."
|
556 |
|
557 |
-
#: classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
558 |
msgctxt "widget-enhanced-select"
|
559 |
msgid "Oops.. Unexpected error occurred."
|
560 |
msgstr "Oi.. įvyko netikėta klaida."
|
561 |
|
562 |
-
#: classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
563 |
msgctxt "widget-page-enhanced-select"
|
564 |
msgid "loading..."
|
565 |
msgstr "kraunasi..."
|
566 |
|
567 |
-
#: classes/es-register.php:
|
568 |
msgctxt "widget-page-enhanced-select"
|
569 |
msgid "Cannot create XMLHTTP instance"
|
570 |
msgstr "Nepavyko sukurti XMLHTTP instancijos"
|
571 |
|
572 |
-
#: classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
573 |
msgctxt "widget-page-enhanced-select"
|
574 |
msgid ""
|
575 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
@@ -580,46 +589,54 @@ msgstr ""
|
|
580 |
"savo pašto dėžutė ir patvirtinkite savo prenumeratą. Jei negalite rasti savo "
|
581 |
"pašto dėžutėje laiško, patikrinkite savo šlamšto aplanką."
|
582 |
|
583 |
-
#: classes/es-register.php:
|
|
|
|
|
|
|
|
|
|
|
584 |
msgctxt "widget-page-enhanced-select"
|
585 |
msgid "Oops.. Unexpected error occurred."
|
586 |
msgstr "Oi.. įvyko netikėta klaida."
|
587 |
|
588 |
-
#: classes/es-register.php:
|
589 |
-
|
590 |
-
"
|
591 |
-
"
|
592 |
-
msgstr ""
|
593 |
-
"Email Subscribers rekomenduoja nemokamą įskiepį <b>Rainmaker</b> iš karto "
|
594 |
-
"rinkti potencialius klientus."
|
595 |
|
596 |
-
#: classes/es-register.php:
|
597 |
-
|
598 |
-
|
|
|
599 |
|
600 |
-
#: classes/es-register.php:
|
601 |
-
|
602 |
-
|
|
|
603 |
|
604 |
-
#: classes/es-register.php:
|
605 |
msgid "Widget Title"
|
606 |
msgstr "Valdiklio pavadinimas"
|
607 |
|
608 |
-
#: classes/es-register.php:
|
|
|
|
|
|
|
|
|
609 |
msgid "Display Name Field"
|
610 |
msgstr "Rodyti vardo lauką"
|
611 |
|
612 |
-
#: classes/es-register.php:
|
613 |
-
#: settings/settings-edit.php:
|
614 |
msgid "YES"
|
615 |
msgstr "Taip"
|
616 |
|
617 |
-
#: classes/es-register.php:
|
618 |
-
#: settings/settings-edit.php:
|
619 |
msgid "NO"
|
620 |
msgstr "Ne"
|
621 |
|
622 |
-
#: classes/es-register.php:
|
623 |
msgid "Subscriber Group"
|
624 |
msgstr "Prenumeratoriaus grupė"
|
625 |
|
@@ -637,14 +654,14 @@ msgstr "Pridėti naują el. paštą"
|
|
637 |
|
638 |
#: compose/compose-add.php:75 compose/compose-edit.php:86
|
639 |
#: compose/compose-preview.php:28 compose/compose-show.php:66
|
640 |
-
#:
|
641 |
#: notification/notification-edit.php:124
|
642 |
-
#: notification/notification-show.php:54
|
643 |
-
#:
|
644 |
-
#: sentmail/sentmail-
|
645 |
-
#:
|
646 |
#: subscribers/view-subscriber-edit.php:113
|
647 |
-
#: subscribers/view-subscriber-export.php:
|
648 |
#: subscribers/view-subscriber-import.php:146
|
649 |
#: subscribers/view-subscriber-show.php:246
|
650 |
#: subscribers/view-subscriber-sync.php:92
|
@@ -693,8 +710,8 @@ msgstr "Galimi raktažodžiai"
|
|
693 |
#: compose/compose-add.php:97 compose/compose-edit.php:108
|
694 |
#: sentmail/deliverreport-show.php:73 sentmail/deliverreport-show.php:84
|
695 |
#: sentmail/sentmail-show.php:113 sentmail/sentmail-show.php:126
|
696 |
-
#: subscribers/view-subscriber-show.php:
|
697 |
-
#: subscribers/view-subscriber-show.php:
|
698 |
msgid "Status"
|
699 |
msgstr "Statusas"
|
700 |
|
@@ -707,8 +724,8 @@ msgid "Please select your mail status"
|
|
707 |
msgstr "Prašome pasirinkti laiško statusą."
|
708 |
|
709 |
#: compose/compose-add.php:105 compose/compose-edit.php:117
|
710 |
-
#:
|
711 |
-
#: notification/notification-edit.php:290
|
712 |
#: subscribers/view-subscriber-edit.php:191
|
713 |
msgid "Save"
|
714 |
msgstr "Saugoti"
|
@@ -716,8 +733,7 @@ msgstr "Saugoti"
|
|
716 |
#: compose/compose-edit.php:20 compose/compose-preview.php:18
|
717 |
#: compose/compose-show.php:33 notification/notification-edit.php:20
|
718 |
#: notification/notification-show.php:21 sentmail/sentmail-preview.php:18
|
719 |
-
#: sentmail/sentmail-show.php:22
|
720 |
-
#: subscribers/view-subscriber-edit.php:22
|
721 |
msgid "Oops, selected details does not exists."
|
722 |
msgstr "Oi, pažymėti duomenys neegzistuoja."
|
723 |
|
@@ -740,7 +756,7 @@ msgstr "Peržiūrėti laišką"
|
|
740 |
|
741 |
#: compose/compose-preview.php:40 compose/compose-show.php:101
|
742 |
#: notification/notification-show.php:100
|
743 |
-
#: subscribers/view-subscriber-show.php:
|
744 |
msgid "Edit"
|
745 |
msgstr "Redaguoti"
|
746 |
|
@@ -768,8 +784,8 @@ msgid "Actions"
|
|
768 |
msgstr "Veiksmai"
|
769 |
|
770 |
#: compose/compose-show.php:102 notification/notification-show.php:103
|
771 |
-
#: subscribers/view-subscriber-show.php:
|
772 |
-
#: subscribers/view-subscriber-show.php:
|
773 |
msgid "Delete"
|
774 |
msgstr "Trinti"
|
775 |
|
@@ -780,92 +796,11 @@ msgstr "Peržiūra"
|
|
780 |
|
781 |
#: compose/compose-show.php:111 notification/notification-show.php:143
|
782 |
#: sentmail/deliverreport-show.php:127 sentmail/sentmail-show.php:183
|
783 |
-
#: subscribers/view-subscriber-show.php:
|
784 |
msgid "No records available."
|
785 |
msgstr "Nėra įrašų."
|
786 |
|
787 |
-
#:
|
788 |
-
msgid "Please enter valid mail count."
|
789 |
-
msgstr "Prašome įvesti teisingą laiškų kiekį."
|
790 |
-
|
791 |
-
#: cron/cron-add.php:34
|
792 |
-
msgid "Successfully updated."
|
793 |
-
msgstr "Sėkmingai atnaujinta."
|
794 |
-
|
795 |
-
#: cron/cron-add.php:87
|
796 |
-
msgid "Cron job URL"
|
797 |
-
msgstr "Periodinių užduočių (cron) adresas"
|
798 |
-
|
799 |
-
#: cron/cron-add.php:88
|
800 |
-
msgid ""
|
801 |
-
"This is your Cron Job URL. It is a readonly field and you are advised not to "
|
802 |
-
"modify it."
|
803 |
-
msgstr ""
|
804 |
-
"Tai jūsų periodinės užduoties (cron) adresas. Laukas tik skaitymui ir "
|
805 |
-
"patartina jo nekeisti."
|
806 |
-
|
807 |
-
#: cron/cron-add.php:103
|
808 |
-
msgid "(Your web host has limits. We suggest 50 emails per hour to be safe)"
|
809 |
-
msgstr ""
|
810 |
-
"(Jūsų serveris turi limitą. Saugumo dėlei, mes siūlome 50 laiškų per valandą "
|
811 |
-
"limitą)"
|
812 |
-
|
813 |
-
#: cron/cron-add.php:108
|
814 |
-
msgid "Admin Report"
|
815 |
-
msgstr "Administratoriaus ataskaita"
|
816 |
-
|
817 |
-
#: cron/cron-add.php:109
|
818 |
-
msgid ""
|
819 |
-
"Email to admin whenever cron URL is triggered from your server. (Keywords: "
|
820 |
-
"###DATE###, ###SUBJECT###, ###COUNT###)"
|
821 |
-
msgstr ""
|
822 |
-
"Siųsti laišką administratoriui, kai periodinės užduoties (cron) adresas yra "
|
823 |
-
"aktyvuojamas serveryje. (Raktažodžiai: ###DATE###, ###SUBJECT###, "
|
824 |
-
"###COUNT###)"
|
825 |
-
|
826 |
-
#: cron/cron-add.php:126
|
827 |
-
msgid "What is Cron (auto emails) and how to setup Cron Job?"
|
828 |
-
msgstr ""
|
829 |
-
"Kas yra periodinės užduotys (cron)(automatiniai laiškai) ir kaip jas "
|
830 |
-
"nustatyti?"
|
831 |
-
|
832 |
-
#: cron/cron-add.php:127
|
833 |
-
msgid ""
|
834 |
-
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
|
835 |
-
"schedule-cron-emails/\">What is Cron?</a>"
|
836 |
-
msgstr ""
|
837 |
-
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
|
838 |
-
"schedule-cron-emails/\">Kas yra periodinės užduotys (cron)?</a>"
|
839 |
-
|
840 |
-
#: cron/cron-add.php:128
|
841 |
-
msgid ""
|
842 |
-
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
|
843 |
-
"schedule-cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
|
844 |
-
msgstr ""
|
845 |
-
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
|
846 |
-
"schedule-cron-emails-in-parallels-plesk/\">Periodinių užduočių (cron job) "
|
847 |
-
"nustatymas Plesk</a>"
|
848 |
-
|
849 |
-
#: cron/cron-add.php:129
|
850 |
-
msgid ""
|
851 |
-
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
|
852 |
-
"schedule-cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
|
853 |
-
msgstr ""
|
854 |
-
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
|
855 |
-
"schedule-cron-emails-in-cpanel/\">Periodinių užduočių (cron job) nustatymas "
|
856 |
-
"cPanel</a>"
|
857 |
-
|
858 |
-
#: cron/cron-add.php:130
|
859 |
-
msgid ""
|
860 |
-
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-"
|
861 |
-
"do-if-hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?"
|
862 |
-
"</a>"
|
863 |
-
msgstr ""
|
864 |
-
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-"
|
865 |
-
"do-if-hosting-doesnt-support-cron-jobs/\">Serveris nepalaiko periodinių "
|
866 |
-
"užduočių (cron job)?</a>"
|
867 |
-
|
868 |
-
#: export/export-email-address.php:33 export/export-email-address.php:37
|
869 |
msgid "Unexpected url submit has been detected"
|
870 |
msgstr "Buvo aptiktas nenumatytas nuorodos pateikimas"
|
871 |
|
@@ -884,15 +819,6 @@ msgstr ""
|
|
884 |
msgid "For more help and tips..."
|
885 |
msgstr "Norėdami gauti daugiau pagalbos ir patarimų..."
|
886 |
|
887 |
-
#: help/help.php:67
|
888 |
-
#, c-format
|
889 |
-
msgid "Like Email Subscribers? Please consider %s."
|
890 |
-
msgstr "Patinka Email Subscribers? Apsvarstykite %s."
|
891 |
-
|
892 |
-
#: help/help.php:67
|
893 |
-
msgid "contributing to us"
|
894 |
-
msgstr "prisidedant prie mūsų"
|
895 |
-
|
896 |
#: help/help.php:99
|
897 |
msgid "Frequently Asked Questions"
|
898 |
msgstr "Dažnai užduodami klausimai"
|
@@ -901,7 +827,7 @@ msgstr "Dažnai užduodami klausimai"
|
|
901 |
#: help/help.php:136 help/help.php:139 help/help.php:142 help/help.php:145
|
902 |
#: help/help.php:148 help/help.php:151 help/help.php:154 help/help.php:157
|
903 |
#: help/help.php:160 help/help.php:163 help/help.php:166 help/help.php:169
|
904 |
-
#: help/help.php:172 help/help.php:175 help/help.php:178
|
905 |
#, c-format
|
906 |
msgid "%s"
|
907 |
msgstr "%s"
|
@@ -935,10 +861,6 @@ msgstr ""
|
|
935 |
msgid "How to add Unsubscribe link in emails?"
|
936 |
msgstr "Kaip pridėti prenumeratos atsisakymo nuorodą laiškuose?"
|
937 |
|
938 |
-
#: help/help.php:139
|
939 |
-
msgid "What are Static Templates and Dynamic Templates?"
|
940 |
-
msgstr "Kas yra statiniai ir dinaminiai šablonai?"
|
941 |
-
|
942 |
#: help/help.php:142
|
943 |
msgid "How to Compose and Send Newsletter Emails?"
|
944 |
msgstr "Kaip kurti ir siųsti naujienlaiškių laiškus?"
|
@@ -994,12 +916,12 @@ msgstr ""
|
|
994 |
msgid "What to do if Hosting doesn’t support Cron Jobs?"
|
995 |
msgstr "Ką daryti jei serveris nepalaiko periodinių užduočių (cron job)?"
|
996 |
|
997 |
-
#: help/help.php:
|
998 |
msgid "Commonly Asked Questions"
|
999 |
msgstr "Dažniausiai užduodami klausimai"
|
1000 |
|
1001 |
-
#: job/es-optin.php:58 job/es-optin.php:68 job/es-unsubscribe.php:
|
1002 |
-
#: job/es-unsubscribe.php:
|
1003 |
msgid ""
|
1004 |
"Oops.. We are getting some technical error. Please try again or contact "
|
1005 |
"admin."
|
@@ -1124,7 +1046,7 @@ msgid "Edit Notification"
|
|
1124 |
msgstr "Redaguoti pranešimą"
|
1125 |
|
1126 |
#: notification/notification-edit.php:131
|
1127 |
-
#: subscribers/view-subscriber-show.php:
|
1128 |
msgid "Update Subscribers Group"
|
1129 |
msgstr "Atnaujinti prenumeratorių grupę"
|
1130 |
|
@@ -1148,63 +1070,6 @@ msgstr "Įrašo kategorijos / Pasirinktiniai įrašo tipai"
|
|
1148 |
msgid "Notification Status"
|
1149 |
msgstr "Pranešimo statusas"
|
1150 |
|
1151 |
-
#: roles/roles-add.php:53
|
1152 |
-
msgid "Role Updated. "
|
1153 |
-
msgstr "Vaidmuo atnaujintas."
|
1154 |
-
|
1155 |
-
#: roles/roles-add.php:114
|
1156 |
-
msgid ""
|
1157 |
-
"Select user roles who can access following menus. Only Admin can change this."
|
1158 |
-
msgstr ""
|
1159 |
-
"Pasirinkite vartotojo vaidmenis, kurie gali pasiekti šiuos meniu. Tik "
|
1160 |
-
"administratorius gali tai pakeisti."
|
1161 |
-
|
1162 |
-
#: roles/roles-add.php:121
|
1163 |
-
msgid "Subscribers Menu"
|
1164 |
-
msgstr "Prenumeratorių meniu"
|
1165 |
-
|
1166 |
-
#: roles/roles-add.php:125 roles/roles-add.php:137 roles/roles-add.php:149
|
1167 |
-
#: roles/roles-add.php:161 roles/roles-add.php:173 roles/roles-add.php:185
|
1168 |
-
#: roles/roles-add.php:197
|
1169 |
-
msgid "Administrator Only"
|
1170 |
-
msgstr "Tik administratoriui"
|
1171 |
-
|
1172 |
-
#: roles/roles-add.php:126 roles/roles-add.php:138 roles/roles-add.php:150
|
1173 |
-
#: roles/roles-add.php:162 roles/roles-add.php:174 roles/roles-add.php:186
|
1174 |
-
#: roles/roles-add.php:198
|
1175 |
-
msgid "Administrator/Editor"
|
1176 |
-
msgstr "Administratorius/redaktorius"
|
1177 |
-
|
1178 |
-
#: roles/roles-add.php:127 roles/roles-add.php:139 roles/roles-add.php:151
|
1179 |
-
#: roles/roles-add.php:163 roles/roles-add.php:175 roles/roles-add.php:187
|
1180 |
-
#: roles/roles-add.php:199
|
1181 |
-
msgid "Administrator/Editor/Author/Contributor"
|
1182 |
-
msgstr "Administratorius/redaktorius/autorius/pagalbininkas"
|
1183 |
-
|
1184 |
-
#: roles/roles-add.php:133
|
1185 |
-
msgid "Compose Menu"
|
1186 |
-
msgstr "Kurti meniu"
|
1187 |
-
|
1188 |
-
#: roles/roles-add.php:145
|
1189 |
-
msgid "Post Notifications Menu"
|
1190 |
-
msgstr "Pranešimų apie įrašus meniu"
|
1191 |
-
|
1192 |
-
#: roles/roles-add.php:157
|
1193 |
-
msgid "Newsletters + Cron Settings Menu"
|
1194 |
-
msgstr "Naujienlaiškiai ir periodinių užduočių (cron) nustatymų meniu"
|
1195 |
-
|
1196 |
-
#: roles/roles-add.php:169
|
1197 |
-
msgid "Email Settings Menu"
|
1198 |
-
msgstr "El. pašto nustatymų meniu"
|
1199 |
-
|
1200 |
-
#: roles/roles-add.php:181
|
1201 |
-
msgid "Reports Menu"
|
1202 |
-
msgstr "Ataskaitų meniu"
|
1203 |
-
|
1204 |
-
#: roles/roles-add.php:193
|
1205 |
-
msgid "Help & Info Menu"
|
1206 |
-
msgstr "Pagalbos ir informacijos meniu"
|
1207 |
-
|
1208 |
#: sendmail/sendmail.php:40
|
1209 |
msgid "Please select your mail subject."
|
1210 |
msgstr "Prašome pasirinkti laiško temą."
|
@@ -1233,10 +1098,22 @@ msgstr "Oi.. Iškilo šiek tiek klaidų. Laiškas nesiunčiamas."
|
|
1233 |
msgid "Use this to send newsletter emails to your subscribers."
|
1234 |
msgstr "Naudokite naujienlaiškių savo prenumeratoriams siuntimui."
|
1235 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1236 |
#: sendmail/sendmail.php:139
|
1237 |
msgid "Send email via cron job"
|
1238 |
msgstr "Siųsti laišką naudojant periodines užduotis (cron job)"
|
1239 |
|
|
|
|
|
|
|
|
|
1240 |
#: sendmail/sendmail.php:178
|
1241 |
msgid "Recipients : 0 "
|
1242 |
msgstr "Gavėjai: 0"
|
@@ -1282,10 +1159,8 @@ msgid "Delivery Report"
|
|
1282 |
msgstr "Pristatymo ataskaita"
|
1283 |
|
1284 |
#: sentmail/deliverreport-show.php:71 sentmail/deliverreport-show.php:82
|
1285 |
-
#: subscribers/view-subscriber-export.php:37
|
1286 |
#: subscribers/view-subscriber-export.php:45
|
1287 |
-
#: subscribers/view-subscriber-
|
1288 |
-
#: subscribers/view-subscriber-show.php:366
|
1289 |
msgid "Sno"
|
1290 |
msgstr "Nr."
|
1291 |
|
@@ -1346,10 +1221,10 @@ msgid "Total"
|
|
1346 |
msgstr "Viso"
|
1347 |
|
1348 |
#: sentmail/sentmail-show.php:118 sentmail/sentmail-show.php:131
|
1349 |
-
#: subscribers/view-subscriber-export.php:40
|
1350 |
#: subscribers/view-subscriber-export.php:48
|
1351 |
-
#: subscribers/view-subscriber-
|
1352 |
-
#: subscribers/view-subscriber-show.php:
|
|
|
1353 |
msgid "Action"
|
1354 |
msgstr "Veiksmas"
|
1355 |
|
@@ -1377,27 +1252,19 @@ msgstr "Sinchronizuoti įskiepio lenteles"
|
|
1377 |
msgid "Click to sync tables"
|
1378 |
msgstr "Spauskite jei norite sinchronizuoti lenteles"
|
1379 |
|
1380 |
-
#: settings/settings-edit.php:
|
1381 |
-
msgid "
|
1382 |
-
msgstr "
|
1383 |
-
|
1384 |
-
#: settings/settings-edit.php:122
|
1385 |
-
msgid "Please enter sender of notifications from email."
|
1386 |
-
msgstr "Prašome įvesti pranešimų siuntėjo el. paštą."
|
1387 |
-
|
1388 |
-
#: settings/settings-edit.php:155
|
1389 |
-
msgid "Settings Saved."
|
1390 |
-
msgstr "Nustatymai išsaugoti."
|
1391 |
|
1392 |
-
#: settings/settings-edit.php:
|
1393 |
-
msgid "
|
1394 |
-
msgstr "
|
1395 |
|
1396 |
-
#: settings/settings-edit.php:
|
1397 |
msgid "Sender of Notifications"
|
1398 |
msgstr "Pranešimų siuntėjas"
|
1399 |
|
1400 |
-
#: settings/settings-edit.php:
|
1401 |
msgid ""
|
1402 |
"Choose a FROM name and FROM email address for all the emails to be sent from "
|
1403 |
"this plugin."
|
@@ -1405,11 +1272,11 @@ msgstr ""
|
|
1405 |
"Pasirinkite siuntėjo vardą ir elektroninio pašto adresą visiems šio įskiepio "
|
1406 |
"siunčiamiems laiškams."
|
1407 |
|
1408 |
-
#: settings/settings-edit.php:
|
1409 |
msgid "Mail Type"
|
1410 |
msgstr "Laiško tipas"
|
1411 |
|
1412 |
-
#: settings/settings-edit.php:
|
1413 |
msgid ""
|
1414 |
"Option 1 & 2 is to send mails with default Wordpress method wp_mail(). "
|
1415 |
"Option 3 & 4 is to send mails with PHP method mail()."
|
@@ -1417,78 +1284,187 @@ msgstr ""
|
|
1417 |
"1 ir 2 variantai naudoja standartinį Wordpress metodą wp_mail(). 3 ir 4 "
|
1418 |
"variantai naudoja PHP metodą mail()."
|
1419 |
|
1420 |
-
#: settings/settings-edit.php:
|
1421 |
msgid "1. WP HTML MAIL"
|
1422 |
msgstr "1. WP HTML laiškas"
|
1423 |
|
1424 |
-
#: settings/settings-edit.php:
|
1425 |
msgid "2. WP PLAINTEXT MAIL"
|
1426 |
msgstr "2. WP paprasto teksto laiškas"
|
1427 |
|
1428 |
-
#: settings/settings-edit.php:
|
1429 |
msgid "3. PHP HTML MAIL"
|
1430 |
msgstr "3. PHP HTML laiškas"
|
1431 |
|
1432 |
-
#: settings/settings-edit.php:
|
1433 |
msgid "4. PHP PLAINTEXT MAIL"
|
1434 |
msgstr "4. PHP paprasto teksto laiškas"
|
1435 |
|
1436 |
-
#: settings/settings-edit.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1437 |
msgid ""
|
1438 |
-
"
|
1439 |
-
"activation link sent them on a activation email message.<br />Single Opt In "
|
1440 |
-
"means subscribers do not need to confirm their email address."
|
1441 |
msgstr ""
|
1442 |
-
"
|
1443 |
-
"
|
1444 |
-
"patvirtinimas reiškia, kad prenumeratoriai neturi patvirtinti savo el. pašto "
|
1445 |
-
"adreso."
|
1446 |
|
1447 |
-
#: settings/settings-edit.php:
|
1448 |
-
msgid "
|
1449 |
-
msgstr "
|
1450 |
|
1451 |
-
#: settings/settings-edit.php:
|
1452 |
-
|
1453 |
-
|
1454 |
-
|
1455 |
-
|
1456 |
-
|
1457 |
-
|
|
|
1458 |
|
1459 |
-
#: settings/settings-edit.php:
|
1460 |
-
msgid "
|
1461 |
-
msgstr "
|
1462 |
|
1463 |
-
#: settings/settings-edit.php:
|
1464 |
msgid ""
|
1465 |
-
"
|
1466 |
-
"
|
1467 |
msgstr ""
|
1468 |
-
"
|
1469 |
-
"
|
1470 |
-
|
1471 |
-
#: settings/settings-edit.php:248
|
1472 |
-
msgid "Full Size"
|
1473 |
-
msgstr "Visas dydis"
|
1474 |
|
1475 |
-
#: settings/settings-edit.php:
|
1476 |
-
msgid "
|
1477 |
-
msgstr "
|
1478 |
|
1479 |
-
#: settings/settings-edit.php:
|
1480 |
-
msgid "
|
1481 |
-
|
|
|
|
|
|
|
|
|
1482 |
|
1483 |
-
#: settings/settings-edit.php:
|
1484 |
msgid "Double Opt In Confirmation Link"
|
1485 |
msgstr "Dvigubo patvirtinimo nuoroda"
|
1486 |
|
1487 |
-
#: settings/settings-edit.php:
|
1488 |
msgid "It is a readonly field and you are advised not to modify it."
|
1489 |
msgstr "Laukas tik skaitymui ir patartina jo nekeisti."
|
1490 |
|
1491 |
-
#: settings/settings-edit.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1492 |
msgid ""
|
1493 |
"This text will be displayed once user clicks on email confirmation link from "
|
1494 |
"the Double Opt In (confirmation) Email."
|
@@ -1496,11 +1472,11 @@ msgstr ""
|
|
1496 |
"Šis tekstas bus rodomas, kai vartotojas paspaus ant dvigubo patvirtinimo "
|
1497 |
"laiške esančios nuorodos."
|
1498 |
|
1499 |
-
#: settings/settings-edit.php:
|
1500 |
msgid "Subscriber Welcome Email"
|
1501 |
msgstr "Prenumeratoriaus pasveikinimo laiškas"
|
1502 |
|
1503 |
-
#: settings/settings-edit.php:
|
1504 |
msgid ""
|
1505 |
"To send welcome email to subscriber after successful signup. This option "
|
1506 |
"must be set to YES."
|
@@ -1508,23 +1484,43 @@ msgstr ""
|
|
1508 |
"Norėdami išsiųsti pasveikinimo laišką prenumeratoriui po sėkmingos "
|
1509 |
"registracijos, turite nustatyti TAIP."
|
1510 |
|
1511 |
-
#: settings/settings-edit.php:
|
1512 |
msgid "Subscriber Welcome Email Subject"
|
1513 |
msgstr "Prenumeratoriaus pasveikinimo laiško tema"
|
1514 |
|
1515 |
-
#: settings/settings-edit.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1516 |
msgid "Subscriber Welcome Email Content"
|
1517 |
msgstr "Prenumeratoriaus pasveikinimo laiško turinys"
|
1518 |
|
1519 |
-
#: settings/settings-edit.php:
|
1520 |
msgid "Unsubscribe Link"
|
1521 |
msgstr "Prenumeratos atsisakymo nuoroda"
|
1522 |
|
1523 |
-
#: settings/settings-edit.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1524 |
msgid "Unsubscribe Text in Email"
|
1525 |
msgstr "Prenumeratos atsisakymo tekstas laiške"
|
1526 |
|
1527 |
-
#: settings/settings-edit.php:
|
1528 |
msgid ""
|
1529 |
"Enter the text for the unsubscribe link. This text is added with unsubscribe "
|
1530 |
"link in the emails. (Keyword: ###LINK###)"
|
@@ -1532,13 +1528,21 @@ msgstr ""
|
|
1532 |
"Įveskite prenumeratos atsisakymo nuorodos tekstą. Jis bus pridėtas kartu su "
|
1533 |
"prenumeratos atsisakymo nuoroda visuose laiškuose. (Raktažodis: ###LINK###)"
|
1534 |
|
1535 |
-
#: settings/settings-edit.php:
|
|
|
|
|
|
|
|
|
1536 |
msgid "This text will be displayed once user clicks on unsubscribe link."
|
1537 |
msgstr ""
|
1538 |
"Šis tekstas bus rodomas, kai vartotojas paspaus ant prenumeratos atsisakymo "
|
1539 |
"nuorodos."
|
1540 |
|
1541 |
-
#: settings/settings-edit.php:
|
|
|
|
|
|
|
|
|
1542 |
msgid ""
|
1543 |
"Default message to display if there is any issue while clicking on "
|
1544 |
"confirmation link from the Double Opt In (confirmation) Emails."
|
@@ -1546,7 +1550,11 @@ msgstr ""
|
|
1546 |
"Numatytoji žinutė, kuri rodoma, jei kyla kokių nors problemų paspaudus ant "
|
1547 |
"patvirtinimo nuorodos dvigubo patvirtinimo laiške."
|
1548 |
|
1549 |
-
#: settings/settings-edit.php:
|
|
|
|
|
|
|
|
|
1550 |
msgid ""
|
1551 |
"Default message to display if there is any issue while clicking on "
|
1552 |
"unsubscribe link from the Emails."
|
@@ -1554,37 +1562,147 @@ msgstr ""
|
|
1554 |
"Numatytoji žinutė, kuri rodoma, jei kyla problemų paspaudus ant laiškuose "
|
1555 |
"rodomos prenumeratos atsisakymo nuorodos."
|
1556 |
|
1557 |
-
#: settings/settings-edit.php:
|
1558 |
-
msgid "
|
1559 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1560 |
|
1561 |
-
#: settings/settings-edit.php:
|
1562 |
msgid ""
|
1563 |
-
"
|
1564 |
-
"
|
1565 |
msgstr ""
|
1566 |
-
"
|
1567 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1568 |
|
1569 |
-
#: settings/settings-edit.php:
|
1570 |
msgid ""
|
1571 |
-
"
|
1572 |
-
"
|
1573 |
msgstr ""
|
1574 |
-
"
|
1575 |
-
"
|
|
|
1576 |
|
1577 |
-
#: settings/settings-edit.php:
|
1578 |
-
msgid "
|
1579 |
-
msgstr "
|
|
|
|
|
1580 |
|
1581 |
-
#: settings/settings-edit.php:
|
1582 |
-
msgid "
|
1583 |
-
|
|
|
|
|
|
|
|
|
1584 |
|
1585 |
-
#: settings/settings-edit.php:
|
1586 |
-
msgid "
|
1587 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1588 |
|
1589 |
#: subscribers/view-subscriber-add.php:36
|
1590 |
#: subscribers/view-subscriber-edit.php:54
|
@@ -1617,7 +1735,7 @@ msgstr "Neteisingas el. paštas."
|
|
1617 |
|
1618 |
#: subscribers/view-subscriber-add.php:110
|
1619 |
#: subscribers/view-subscriber-edit.php:109
|
1620 |
-
#: subscribers/view-subscriber-export.php:
|
1621 |
#: subscribers/view-subscriber-import.php:143
|
1622 |
#: subscribers/view-subscriber-show.php:242
|
1623 |
#: subscribers/view-subscriber-sync.php:89
|
@@ -1626,7 +1744,7 @@ msgstr "Pridėti naują prenumeratorių"
|
|
1626 |
|
1627 |
#: subscribers/view-subscriber-add.php:111
|
1628 |
#: subscribers/view-subscriber-edit.php:110
|
1629 |
-
#: subscribers/view-subscriber-export.php:
|
1630 |
#: subscribers/view-subscriber-import.php:210
|
1631 |
#: subscribers/view-subscriber-show.php:243
|
1632 |
#: subscribers/view-subscriber-sync.php:90
|
@@ -1643,7 +1761,7 @@ msgstr "Eksportuoti"
|
|
1643 |
|
1644 |
#: subscribers/view-subscriber-add.php:113
|
1645 |
#: subscribers/view-subscriber-edit.php:112
|
1646 |
-
#: subscribers/view-subscriber-export.php:
|
1647 |
#: subscribers/view-subscriber-import.php:145
|
1648 |
#: subscribers/view-subscriber-show.php:245
|
1649 |
#: subscribers/view-subscriber-sync.php:143
|
@@ -1665,24 +1783,24 @@ msgstr "Pasirinkite prenumeratoriaus statusą"
|
|
1665 |
#: subscribers/view-subscriber-add.php:148
|
1666 |
#: subscribers/view-subscriber-edit.php:147
|
1667 |
#: subscribers/view-subscriber-import.php:175
|
1668 |
-
#: subscribers/view-subscriber-show.php:
|
1669 |
-
#: subscribers/view-subscriber-show.php:
|
1670 |
msgid "Confirmed"
|
1671 |
msgstr "Patvirtinta"
|
1672 |
|
1673 |
#: subscribers/view-subscriber-add.php:149
|
1674 |
#: subscribers/view-subscriber-edit.php:148
|
1675 |
#: subscribers/view-subscriber-import.php:176
|
1676 |
-
#: subscribers/view-subscriber-show.php:
|
1677 |
-
#: subscribers/view-subscriber-show.php:
|
1678 |
msgid "Unconfirmed"
|
1679 |
msgstr "Nepatvirtintas"
|
1680 |
|
1681 |
#: subscribers/view-subscriber-add.php:150
|
1682 |
#: subscribers/view-subscriber-edit.php:149
|
1683 |
#: subscribers/view-subscriber-import.php:177
|
1684 |
-
#: subscribers/view-subscriber-show.php:
|
1685 |
-
#: subscribers/view-subscriber-show.php:
|
1686 |
msgid "Unsubscribed"
|
1687 |
msgstr "Nutraukė prenumeratą"
|
1688 |
|
@@ -1731,38 +1849,45 @@ msgstr "Atnaujinti prenumeratoriaus statusą"
|
|
1731 |
msgid "Update Subscriber's Group"
|
1732 |
msgstr "Atnaujinti prenumeratoriaus grupę"
|
1733 |
|
1734 |
-
#: subscribers/view-subscriber-export.php:
|
1735 |
msgid "Export Email Addresses"
|
1736 |
msgstr "Eksportuoti el. pašto adresus"
|
1737 |
|
1738 |
-
#: subscribers/view-subscriber-export.php:
|
1739 |
-
#: subscribers/view-subscriber-export.php:
|
1740 |
msgid "Type of List to Export"
|
1741 |
msgstr "Sąrašo eksportuoti tipas"
|
1742 |
|
1743 |
-
#: subscribers/view-subscriber-export.php:
|
|
|
|
|
|
|
|
|
|
|
1744 |
msgid "1"
|
1745 |
msgstr "1"
|
1746 |
|
1747 |
-
#: subscribers/view-subscriber-export.php:
|
1748 |
-
#: subscribers/view-subscriber-export.php:
|
1749 |
-
#: subscribers/view-subscriber-export.php:
|
|
|
|
|
1750 |
msgid "Click to Export in CSV"
|
1751 |
msgstr "Norėdami eksportuoti CSV, spauskite čia"
|
1752 |
|
1753 |
-
#: subscribers/view-subscriber-export.php:
|
1754 |
msgid "2"
|
1755 |
msgstr "2"
|
1756 |
|
1757 |
-
#: subscribers/view-subscriber-export.php:
|
1758 |
-
msgid "WordPress Registered Users"
|
1759 |
-
msgstr "WordPress registruoti vartotojai"
|
1760 |
-
|
1761 |
-
#: subscribers/view-subscriber-export.php:65
|
1762 |
msgid "3"
|
1763 |
msgstr "3"
|
1764 |
|
1765 |
-
#: subscribers/view-subscriber-export.php:
|
|
|
|
|
|
|
|
|
1766 |
msgid "Commented Authors"
|
1767 |
msgstr "Komentuoti autoriai"
|
1768 |
|
@@ -1875,86 +2000,53 @@ msgstr "Prenumeratorių būsena atnaujinta."
|
|
1875 |
msgid "Please select New Status to update."
|
1876 |
msgstr "Prašome pasirinkti naują būseną atnaujinimui."
|
1877 |
|
1878 |
-
#: subscribers/view-subscriber-show.php:
|
1879 |
msgid "Bulk Actions"
|
1880 |
msgstr "Masiniai veiksmai"
|
1881 |
|
1882 |
-
#: subscribers/view-subscriber-show.php:
|
1883 |
-
#: subscribers/view-subscriber-show.php:
|
1884 |
msgid "Resend Confirmation"
|
1885 |
msgstr "Persiųsti patvirtinimą dar kartą"
|
1886 |
|
1887 |
-
#: subscribers/view-subscriber-show.php:
|
1888 |
msgid "Update Subscribers Status"
|
1889 |
msgstr "Atnaujinti prenumeratorių būseną"
|
1890 |
|
1891 |
-
#: subscribers/view-subscriber-show.php:
|
1892 |
msgid "Select Group"
|
1893 |
msgstr "Pasirinkti grupę"
|
1894 |
|
1895 |
-
#: subscribers/view-subscriber-show.php:
|
|
|
|
|
|
|
|
|
1896 |
msgid "Apply"
|
1897 |
msgstr "Tinkinti"
|
1898 |
|
1899 |
-
#: subscribers/view-subscriber-show.php:
|
1900 |
msgid "All Groups"
|
1901 |
msgstr "Visos grupės"
|
1902 |
|
1903 |
-
#: subscribers/view-subscriber-show.php:
|
1904 |
msgid "All Status"
|
1905 |
msgstr "Visos būsenos"
|
1906 |
|
1907 |
-
#: subscribers/view-subscriber-show.php:
|
1908 |
-
msgid "1 to 200 emails"
|
1909 |
-
msgstr "Nuo 1 iki 200 laiškų"
|
1910 |
-
|
1911 |
-
#: subscribers/view-subscriber-show.php:334
|
1912 |
-
msgid "201 to 400"
|
1913 |
-
msgstr "Nuo 201 iki 400"
|
1914 |
-
|
1915 |
-
#: subscribers/view-subscriber-show.php:335
|
1916 |
-
msgid "401 to 600"
|
1917 |
-
msgstr "Nuo 401 iki 600"
|
1918 |
-
|
1919 |
-
#: subscribers/view-subscriber-show.php:336
|
1920 |
-
msgid "601 to 800"
|
1921 |
-
msgstr "Nuo 601 iki 800"
|
1922 |
-
|
1923 |
-
#: subscribers/view-subscriber-show.php:337
|
1924 |
-
msgid "801 to 1000"
|
1925 |
-
msgstr "Nuo 801 iki 1000"
|
1926 |
-
|
1927 |
-
#: subscribers/view-subscriber-show.php:338
|
1928 |
-
msgid "1001 to 2000"
|
1929 |
-
msgstr "Nuo 1001 iki 2000"
|
1930 |
-
|
1931 |
-
#: subscribers/view-subscriber-show.php:339
|
1932 |
-
msgid "2001 to 5000"
|
1933 |
-
msgstr "Nuo 2001 iki 5000"
|
1934 |
-
|
1935 |
-
#: subscribers/view-subscriber-show.php:340
|
1936 |
-
msgid "5001 to 10000"
|
1937 |
-
msgstr "Nuo 5001 iki 10000"
|
1938 |
-
|
1939 |
-
#: subscribers/view-subscriber-show.php:341
|
1940 |
msgid "Display All"
|
1941 |
msgstr "Rodyti visus"
|
1942 |
|
1943 |
-
#: subscribers/view-subscriber-show.php:
|
1944 |
-
#: subscribers/view-subscriber-show.php:
|
1945 |
msgid "Email Address"
|
1946 |
msgstr "El. pašto adresas"
|
1947 |
|
1948 |
-
#: subscribers/view-subscriber-show.php:
|
1949 |
-
#: subscribers/view-subscriber-show.php:
|
1950 |
msgid "Group"
|
1951 |
msgstr "Grupė"
|
1952 |
|
1953 |
-
#: subscribers/view-subscriber-show.php:357
|
1954 |
-
#: subscribers/view-subscriber-show.php:371
|
1955 |
-
msgid "Signup Date<br>(YYYY-MM-DD)"
|
1956 |
-
msgstr "Prenumeratos data<br>(YYYY-MM-DD)"
|
1957 |
-
|
1958 |
#: subscribers/view-subscriber-sync.php:36
|
1959 |
msgid "Please select default group to newly registered user."
|
1960 |
msgstr "Prašome pasirinkti numatytąją grupę naujai registruotiems vartotojams."
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.3\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-06-13 09:40:46+00:00\n"
|
6 |
+
"PO-Revision-Date: 2017-06-16 13:56+0000\n"
|
7 |
+
"Last-Translator: \n"
|
8 |
"Language-Team: Lithuanian\n"
|
9 |
"Language: lt-LT\n"
|
10 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10 >= 2 "
|
25 |
"X-Loco-Target-Locale: lt_LT\n"
|
26 |
"X-Loco-Parser: loco_parse_po"
|
27 |
|
28 |
+
#: classes/es-register.php:720
|
29 |
+
msgid "Used Post Notifications more often than Newsletter"
|
30 |
+
msgstr "Naudojo įrašų pranešimus dažniau nei naujienlaiškį"
|
|
|
31 |
|
32 |
+
#: classes/es-register.php:722
|
33 |
+
msgid "Used Newsletter more often than Post Notifications"
|
34 |
+
msgstr "Naudojo naujienlaiškį dažniau nei įrašų pranešimus"
|
|
|
35 |
|
36 |
+
#: classes/es-register.php:724
|
37 |
+
msgid "Used Post Notification & Newsletter equally"
|
38 |
+
msgstr "Naudojo įrašų pranešimus ir naujienlaiškį vienodai"
|
39 |
|
40 |
+
#: classes/es-register.php:728
|
41 |
+
msgid "Have "
|
42 |
+
msgstr "Turi"
|
43 |
|
44 |
+
#: classes/es-register.php:728
|
45 |
+
msgid " Active Subscribers"
|
46 |
+
msgstr "Aktyvūs prenumeratoriai"
|
47 |
|
48 |
+
#: classes/es-register.php:729
|
49 |
+
msgid "Post "
|
50 |
+
msgstr "Įrašas"
|
51 |
|
52 |
+
#: classes/es-register.php:729
|
53 |
+
msgid " blog per week"
|
54 |
+
msgstr "įrašų per savaitę"
|
55 |
|
56 |
+
#: classes/es-register.php:733
|
57 |
+
msgid "Send mails via Cron"
|
58 |
+
msgstr "Siųsti laišką naudojant periodines užduotis (cron)"
|
59 |
|
60 |
+
#: classes/es-register.php:735
|
61 |
+
msgid "Send mails Immediately"
|
62 |
+
msgstr "Siųsti laiškus nedelsiant"
|
63 |
|
64 |
+
#: classes/es-register.php:745
|
65 |
+
msgid "How soon do you want these new features?"
|
66 |
+
msgstr "Kaip greitai jūs norite šių naujų funkcijų?"
|
67 |
|
68 |
+
#: classes/es-register.php:749
|
69 |
+
msgid "Beautiful Email Designs"
|
70 |
+
msgstr "Gražūs laiškų dizainai"
|
|
|
|
|
|
|
|
|
71 |
|
72 |
+
#: classes/es-register.php:750 classes/es-register.php:755
|
73 |
+
#: classes/es-register.php:764 classes/es-register.php:769
|
74 |
+
msgid "Right now!"
|
75 |
+
msgstr "Dabar!"
|
76 |
|
77 |
+
#: classes/es-register.php:751 classes/es-register.php:756
|
78 |
+
#: classes/es-register.php:765 classes/es-register.php:770
|
79 |
+
msgid "Soon"
|
80 |
+
msgstr "Greitai"
|
|
|
|
|
|
|
81 |
|
82 |
+
#: classes/es-register.php:752 classes/es-register.php:757
|
83 |
+
#: classes/es-register.php:766 classes/es-register.php:771
|
84 |
+
msgid "Later"
|
85 |
+
msgstr "Vėliau"
|
|
|
|
|
|
|
86 |
|
87 |
+
#: classes/es-register.php:754
|
88 |
+
msgid "Spam Check, Scheduling... (Better Email Delivery)"
|
89 |
+
msgstr "Šlamšto tikrinimas, nustatymas... (geresnis laiškų pristatymas)"
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
|
91 |
+
#: classes/es-register.php:763
|
92 |
+
msgid "Discard Fake / Bouncing Emails"
|
93 |
+
msgstr "Išmesti neteisingus / neveikiančius el. pašto adresus"
|
94 |
+
|
95 |
+
#: classes/es-register.php:768
|
96 |
+
msgid "Advanced Reporting"
|
97 |
+
msgstr "Detalesnės ataskaitos"
|
98 |
+
|
99 |
+
#: classes/es-register.php:791
|
100 |
+
msgid "Thank you!"
|
101 |
+
msgstr "Ačiū!"
|
102 |
|
103 |
+
#: classes/es-register.php:792
|
104 |
+
msgid "No issues, have a nice day!"
|
105 |
+
msgstr "Jokių problemų, gražios dienos!"
|
106 |
+
|
107 |
+
#: help/help.php:67
|
108 |
+
#, c-format
|
109 |
msgid ""
|
110 |
+
"Like Email Subscribers? If yes, then consider %s to support further "
|
111 |
+
"developments."
|
|
|
112 |
msgstr ""
|
113 |
+
"Patinka Email Subscribers? Jei taip, apsvarstykite %s paremti tolimesnį "
|
114 |
+
"vystymą."
|
|
|
115 |
|
116 |
+
#: help/help.php:67
|
117 |
+
msgid "donating to us"
|
118 |
+
msgstr "dovanojant mums"
|
119 |
|
120 |
+
#: help/help.php:139
|
121 |
+
msgid "What are the keywords available in the Post Notification template?"
|
122 |
+
msgstr "Kokie galimi raktažodžiai pranešimuose apie įrašus?"
|
123 |
|
124 |
+
#: help/help.php:178
|
125 |
+
msgid "CSS Help"
|
126 |
+
msgstr "CSS pagalba"
|
127 |
|
128 |
+
#: settings/settings-edit.php:23
|
129 |
+
msgid "Admin"
|
130 |
+
msgstr "Administratorius"
|
131 |
|
132 |
+
#: settings/settings-edit.php:24
|
133 |
+
msgid "Signup Confirmation"
|
134 |
+
msgstr "Registracijos patvirtinimas"
|
135 |
|
136 |
+
#: settings/settings-edit.php:26
|
137 |
+
msgid "Cron"
|
138 |
+
msgstr "Periodinės užduotys (cron)"
|
139 |
+
|
140 |
+
#: settings/settings-edit.php:228
|
141 |
msgid ""
|
142 |
+
"Enter the content for the subscriber welcome email whenever a user's email "
|
143 |
+
"is either confirmed (if Double Opt In) / subscribed (if Single Opt In) "
|
144 |
+
"successfully. (Keyword: ###NAME###, ###GROUP###, ###LINK###)"
|
145 |
msgstr ""
|
146 |
+
"Įveskite prenumeratoriaus sveikinimo laiško turinį, kuris bus siunčiamas, "
|
147 |
+
"kai prenumeratoriaus el. pašto adresas patvirtinimas (dvigubo patvirtinimo "
|
148 |
+
"atveju) arba prenumerata sėkminga (viengubo patvirtinimo atveju). "
|
149 |
+
"(Raktažodis: ###NAME###, ###GROUP###, ###LINK###)"
|
150 |
|
151 |
+
#: subscribers/view-subscriber-export.php:62
|
152 |
+
msgid "All Subscribers"
|
153 |
+
msgstr "Visi prenumeratoriai"
|
154 |
|
155 |
+
#: subscribers/view-subscriber-export.php:68
|
156 |
+
msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
|
|
|
|
|
157 |
msgstr ""
|
158 |
+
"Aktyvūs prenumeratoriai (Statusas: Patvirtinta ir viengubas patvirtinimas)"
|
|
|
|
|
159 |
|
160 |
+
#: subscribers/view-subscriber-export.php:74
|
161 |
+
msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
|
|
|
162 |
msgstr ""
|
163 |
+
"Neaktyvūs prenumeratoriai (Statusas: Nepatvirtintas ir Nutraukė prenumeratą)"
|
|
|
164 |
|
165 |
+
#: subscribers/view-subscriber-export.php:79
|
166 |
+
msgid "4"
|
167 |
+
msgstr "4"
|
|
|
|
|
|
|
|
|
|
|
168 |
|
169 |
+
#: subscribers/view-subscriber-export.php:85
|
170 |
+
msgid "5"
|
171 |
+
msgstr "5"
|
|
|
172 |
|
173 |
+
#: subscribers/view-subscriber-show.php:252
|
174 |
+
#, c-format
|
175 |
+
msgid "Total Subscribers: %s"
|
176 |
+
msgstr "Prenumeratorių iš viso: %s"
|
177 |
|
178 |
+
#: subscribers/view-subscriber-show.php:254
|
179 |
+
#, c-format
|
180 |
+
msgid "Active Subscribers: %s"
|
181 |
+
msgstr "Aktyvių prenumeratorių: %s"
|
182 |
|
183 |
+
#: subscribers/view-subscriber-show.php:342
|
184 |
+
msgid "1 to 500 emails"
|
185 |
+
msgstr "Nuo 1 iki 500 laiškų"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
186 |
|
187 |
+
#: subscribers/view-subscriber-show.php:343
|
188 |
+
msgid "501 to 1000"
|
189 |
+
msgstr "Nuo 501 iki 1000"
|
|
|
190 |
|
191 |
+
#: subscribers/view-subscriber-show.php:344
|
192 |
+
msgid "1001 to 1500"
|
193 |
+
msgstr "Nuo 1001 iki 1500"
|
|
|
194 |
|
195 |
+
#: subscribers/view-subscriber-show.php:345
|
196 |
+
msgid "1501 to 2000"
|
197 |
+
msgstr "Nuo 1501 iki 2000"
|
|
|
198 |
|
199 |
+
#: subscribers/view-subscriber-show.php:346
|
200 |
+
msgid "2001 to 4000"
|
201 |
+
msgstr "Nuo 2001 iki 4000"
|
|
|
202 |
|
203 |
+
#: subscribers/view-subscriber-show.php:347
|
204 |
+
msgid "4001 to 6000"
|
205 |
+
msgstr "Nuo 4001 iki 6000"
|
|
|
206 |
|
207 |
+
#: subscribers/view-subscriber-show.php:348
|
208 |
+
msgid "6001 to 10000"
|
209 |
+
msgstr "Nuo 6001 iki 10000"
|
|
|
210 |
|
211 |
+
#: subscribers/view-subscriber-show.php:364
|
212 |
+
#: subscribers/view-subscriber-show.php:377
|
213 |
+
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
214 |
+
msgstr "Registracijos data ir laikas<br>(Y-M-D H:I:S)"
|
215 |
|
216 |
+
#: classes/es-register.php:155 classes/es-register.php:156
|
217 |
+
#: settings/settings-edit.php:41
|
218 |
+
msgid "Settings"
|
219 |
+
msgstr "Nustatymai"
|
220 |
|
221 |
+
#: classes/es-register.php:192
|
222 |
+
msgctxt "compose-enhanced-select"
|
223 |
+
msgid "Please enter the Email Subject."
|
224 |
+
msgstr "Prašome įvesti laiško temą"
|
225 |
|
226 |
+
#: classes/es-register.php:707
|
227 |
+
msgid "is getting even better!"
|
228 |
+
msgstr "dar geriau!"
|
|
|
229 |
|
230 |
+
#: classes/es-register.php:708
|
231 |
+
msgid "But I need you to"
|
232 |
+
msgstr "Bet man reikia jums"
|
|
|
233 |
|
234 |
+
#: classes/es-register.php:708
|
235 |
+
msgid "help me prioritize"
|
236 |
+
msgstr "padėti man nustatyti prioritetus"
|
237 |
+
|
238 |
+
#: classes/es-register.php:708
|
239 |
+
msgid "Please send your response today."
|
240 |
+
msgstr "Prašome atsiųsti savo atsakymą šiandien."
|
241 |
+
|
242 |
+
#: classes/es-register.php:715
|
243 |
+
msgid "Here's how you use ES:"
|
244 |
+
msgstr "Štai kaip jūs naudojate ES:"
|
245 |
+
|
246 |
+
#: base/es-defined.php:32
|
247 |
+
msgid ""
|
248 |
+
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
249 |
+
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
250 |
+
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
251 |
+
"</a> rating. A huge thank you from Icegram in advance!"
|
252 |
+
msgstr ""
|
253 |
+
"Jei jums patinka <strong>Email Subscribers</strong>, prašome pasidalinti <a "
|
254 |
+
"target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
255 |
+
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
256 |
+
"</a> reitingu. Icegram dėkoja iš anksto!"
|
257 |
|
258 |
#: classes/es-common.php:13
|
259 |
msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
|
301 |
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
302 |
msgstr "<span style=\"color:#993399;\">Nedelsiant</span>"
|
303 |
|
304 |
+
#: classes/es-loadwidget.php:28 classes/es-register.php:961
|
305 |
+
#: subscribers/view-subscriber-show.php:361
|
306 |
+
#: subscribers/view-subscriber-show.php:374
|
307 |
msgid "Name"
|
308 |
msgstr "Vardas"
|
309 |
|
310 |
+
#: classes/es-loadwidget.php:33 classes/es-register.php:966
|
311 |
msgid "Email *"
|
312 |
msgstr "El. paštas *"
|
313 |
|
314 |
+
#: classes/es-loadwidget.php:38 classes/es-register.php:971
|
315 |
msgid "Subscribe"
|
316 |
msgstr "Prenumeruoti"
|
317 |
|
318 |
#. Name of the plugin
|
319 |
+
#: classes/es-register.php:140 classes/es-register.php:141
|
320 |
+
#: classes/es-register.php:707
|
321 |
msgid "Email Subscribers"
|
322 |
msgstr "Email Subscribers"
|
323 |
|
324 |
+
#: classes/es-register.php:143 classes/es-register.php:144
|
325 |
#: subscribers/view-subscriber-show.php:241
|
326 |
msgid "Subscribers"
|
327 |
msgstr "Prenumeratoriai"
|
328 |
|
329 |
+
#: classes/es-register.php:146 classes/es-register.php:147
|
330 |
#: compose/compose-show.php:64
|
331 |
msgid "Compose"
|
332 |
msgstr "Kurti naują"
|
333 |
|
334 |
+
#: classes/es-register.php:149 classes/es-register.php:150
|
335 |
#: notification/notification-show.php:52
|
336 |
msgid "Post Notifications"
|
337 |
msgstr "Pranešimai apie įrašus"
|
338 |
|
339 |
+
#: classes/es-register.php:152 classes/es-register.php:153
|
340 |
+
#: sendmail/sendmail.php:93 settings/settings-edit.php:318
|
341 |
msgid "Newsletters"
|
342 |
+
msgstr "Naujienlaiškio siuntimas"
|
343 |
|
344 |
+
#: classes/es-register.php:158 classes/es-register.php:159
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
345 |
#: sentmail/sentmail-show.php:96
|
346 |
msgid "Reports"
|
347 |
msgstr "Ataskaitos"
|
348 |
|
349 |
+
#: classes/es-register.php:161
|
350 |
msgid "Help & Info"
|
351 |
msgstr "Pagalba ir informacija"
|
352 |
|
353 |
+
#: classes/es-register.php:162
|
354 |
msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info"
|
355 |
msgstr ""
|
356 |
"<span style=\"color:#f18500;font-weight:bolder;\">Pagalba ir informacija"
|
357 |
|
358 |
+
#: classes/es-register.php:173
|
359 |
msgctxt "view-subscriber-enhanced-select"
|
360 |
msgid "Please enter subscriber email address."
|
361 |
msgstr "Prašome įvesti prenumeratoriaus el. pašto adresą."
|
362 |
|
363 |
+
#: classes/es-register.php:174
|
364 |
msgctxt "view-subscriber-enhanced-select"
|
365 |
msgid "Please select subscriber email status."
|
366 |
msgstr "Prašome pasirinkti prenumeratoriaus el. pašto statusą."
|
367 |
|
368 |
+
#: classes/es-register.php:175
|
369 |
msgctxt "view-subscriber-enhanced-select"
|
370 |
msgid "Please select or create group for this subscriber."
|
371 |
msgstr "Prašome pasirinkti arba sukurti grupę šiam prenumeratoriui."
|
372 |
|
373 |
+
#: classes/es-register.php:176
|
374 |
msgctxt "view-subscriber-enhanced-select"
|
375 |
msgid "Do you want to delete this record?"
|
376 |
msgstr "Ar norite ištrinti šį įrašą?"
|
377 |
|
378 |
+
#: classes/es-register.php:177
|
379 |
msgctxt "view-subscriber-enhanced-select"
|
380 |
msgid "Please select the bulk action."
|
381 |
msgstr "Prašome pasirinkti masinį veiksmą."
|
382 |
|
383 |
+
#: classes/es-register.php:178
|
384 |
msgctxt "view-subscriber-enhanced-select"
|
385 |
msgid "Are you sure you want to delete selected records?"
|
386 |
msgstr "Ar tikrai norite trinti pasirinktus įrašus?"
|
387 |
|
388 |
+
#: classes/es-register.php:179
|
389 |
msgctxt "view-subscriber-enhanced-select"
|
390 |
msgid ""
|
391 |
"Do you want to resend confirmation email? \\nAlso please note, this will "
|
395 |
"kad bus prenumeratoriaus dabartinis statusas bus pakeistas į "
|
396 |
"\"Nepatvirtinta\"."
|
397 |
|
398 |
+
#: classes/es-register.php:180
|
399 |
msgctxt "view-subscriber-enhanced-select"
|
400 |
msgid "Please select new subscriber group."
|
401 |
msgstr "Prašome pasirinkti naują prenumeratorių grupę."
|
402 |
|
403 |
+
#: classes/es-register.php:181
|
404 |
msgctxt "view-subscriber-enhanced-select"
|
405 |
msgid "Please select new status for subscribers"
|
406 |
msgstr "Prašome pasirinkti naują prenumeratorių statusą"
|
407 |
|
408 |
+
#: classes/es-register.php:182
|
409 |
msgctxt "view-subscriber-enhanced-select"
|
410 |
msgid "Do you want to update subscribers group?"
|
411 |
msgstr "Ar norite atnaujinti prenumeratorių grupę?"
|
412 |
|
413 |
+
#: classes/es-register.php:183
|
414 |
msgctxt "view-subscriber-enhanced-select"
|
415 |
msgid "Do you want to update subscribers status?"
|
416 |
msgstr "Ar norite atnaujinti prenumeratorių statusą?"
|
417 |
|
418 |
+
#: classes/es-register.php:184
|
|
|
|
|
|
|
|
|
|
|
419 |
msgctxt "view-subscriber-enhanced-select"
|
420 |
msgid ""
|
421 |
"Please select only csv file. Please check official website for csv structure."
|
424 |
"Prašome pasirinkti tik CSV failą. CSV struktūrą pasitikrinkite oficialioje "
|
425 |
"svetainėje."
|
426 |
|
427 |
+
#: classes/es-register.php:193
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
428 |
msgctxt "compose-enhanced-select"
|
429 |
msgid "Do you want to delete this record?"
|
430 |
msgstr "Ar norite ištrinti šį įrašą?"
|
431 |
|
432 |
+
#: classes/es-register.php:201
|
433 |
msgctxt "notification-enhanced-select"
|
434 |
msgid "Please select subscribers group."
|
435 |
msgstr "Prašome pasirinkti prenumeratorių grupę."
|
436 |
|
437 |
+
#: classes/es-register.php:202
|
438 |
msgctxt "notification-enhanced-select"
|
439 |
msgid ""
|
440 |
"Please select notification mail subject. Use compose menu to create new."
|
442 |
"Prašome pasirinkti pranešimo laiško temą. Norėdami sukurti naują, naudokite "
|
443 |
"meniu \"Sukurti\"."
|
444 |
|
445 |
+
#: classes/es-register.php:203
|
446 |
msgctxt "notification-enhanced-select"
|
447 |
msgid "Please select notification status."
|
448 |
msgstr "Prašome pasirinkti pranešimo statusą."
|
449 |
|
450 |
+
#: classes/es-register.php:204
|
451 |
msgctxt "notification-enhanced-select"
|
452 |
msgid "Do you want to delete this record?"
|
453 |
msgstr "Ar norite ištrinti šį įrašą?"
|
454 |
|
455 |
+
#: classes/es-register.php:212
|
456 |
msgctxt "sendmail-enhanced-select"
|
457 |
msgid "Please select your mail subject."
|
458 |
msgstr "Prašome pasirinkti laiško temą."
|
459 |
|
460 |
+
#: classes/es-register.php:213
|
461 |
msgctxt "sendmail-enhanced-select"
|
462 |
msgid "Please select your mail type."
|
463 |
msgstr "Prašome pasirinkti laiško tipą."
|
464 |
|
465 |
+
#: classes/es-register.php:214
|
466 |
msgctxt "sendmail-enhanced-select"
|
467 |
msgid ""
|
468 |
"Have you double checked your selected group? If so, let's go ahead and send "
|
471 |
"Ar du kartus patikrinote pasirinktą grupę? Jei taip, tęskite toliau ir "
|
472 |
"siųskite tai."
|
473 |
|
474 |
+
#: classes/es-register.php:222
|
475 |
msgctxt "sentmail-enhanced-select"
|
476 |
msgid "Do you want to delete this record?"
|
477 |
msgstr "Ar norite ištrinti šį įrašą?"
|
478 |
|
479 |
+
#: classes/es-register.php:223
|
480 |
msgctxt "sentmail-enhanced-select"
|
481 |
msgid "Do you want to delete all records except latest 10?"
|
482 |
msgstr "Ar norite ištrinti visus, išskyrus 10 naujausių, įrašus?"
|
483 |
|
484 |
+
#: classes/es-register.php:231
|
485 |
msgctxt "cron-enhanced-select"
|
486 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
487 |
msgstr ""
|
488 |
"Prašome pasirinkti laiškų kiekį, kurį norite siųsti per valandą/veiksmą."
|
489 |
|
490 |
+
#: classes/es-register.php:232
|
491 |
msgctxt "cron-enhanced-select"
|
492 |
msgid "Please enter the mail count, only number."
|
493 |
msgstr "Prašome įvesti laiškų kiekį (tik skaičius)."
|
494 |
|
495 |
+
#: classes/es-register.php:245
|
496 |
+
msgctxt "widget-enhanced-select"
|
497 |
+
msgid "Please enter email address"
|
498 |
+
msgstr "Prašome įvesti el. pašto adresą"
|
499 |
+
|
500 |
+
#: classes/es-register.php:246
|
501 |
+
msgctxt "widget-enhanced-select"
|
502 |
+
msgid "Please provide a valid email address"
|
503 |
+
msgstr "Prašome nurodyti teisingą el. pašto adresą"
|
504 |
+
|
505 |
+
#: classes/es-register.php:247
|
506 |
msgctxt "widget-enhanced-select"
|
507 |
msgid "loading..."
|
508 |
msgstr "kraunasi..."
|
509 |
|
510 |
+
#: classes/es-register.php:248
|
511 |
msgctxt "widget-enhanced-select"
|
512 |
msgid "Cannot create XMLHTTP instance"
|
513 |
msgstr "Nepavyko sukurti XMLHTTP instancijos"
|
514 |
|
515 |
+
#: classes/es-register.php:249
|
516 |
+
msgctxt "widget-enhanced-select"
|
517 |
+
msgid "Successfully Subscribed."
|
518 |
+
msgstr "Užsiprenumeravote sėkmingai."
|
519 |
+
|
520 |
+
#: classes/es-register.php:250
|
521 |
msgctxt "widget-enhanced-select"
|
522 |
msgid ""
|
523 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
528 |
"savo pašto dėžutė ir patvirtinkite savo prenumeratą. Jei negalite rasti savo "
|
529 |
"pašto dėžutėje laiško, patikrinkite savo šlamšto aplanką."
|
530 |
|
531 |
+
#: classes/es-register.php:251
|
532 |
+
msgctxt "widget-enhanced-select"
|
533 |
+
msgid "Email Address already exists!"
|
534 |
+
msgstr "El. pašto adresas jau egzistuoja!"
|
535 |
+
|
536 |
+
#: classes/es-register.php:252
|
537 |
msgctxt "widget-enhanced-select"
|
538 |
msgid "Oops.. Unexpected error occurred."
|
539 |
msgstr "Oi.. įvyko netikėta klaida."
|
540 |
|
541 |
+
#: classes/es-register.php:253
|
542 |
+
msgctxt "widget-enhanced-select"
|
543 |
+
msgid "Invalid email address"
|
544 |
+
msgstr "Neteisingas el. pašto adresas"
|
545 |
+
|
546 |
+
#: classes/es-register.php:254
|
547 |
+
msgctxt "widget-enhanced-select"
|
548 |
+
msgid "Please try after some time"
|
549 |
+
msgstr "Bandykite vėliau"
|
550 |
+
|
551 |
+
#: classes/es-register.php:255
|
552 |
+
msgctxt "widget-enhanced-select"
|
553 |
+
msgid "There was a problem with the request"
|
554 |
+
msgstr "Iškilo problema dėl užklausos"
|
555 |
+
|
556 |
+
#: classes/es-register.php:262
|
557 |
+
msgctxt "widget-page-enhanced-select"
|
558 |
+
msgid "Please enter email address"
|
559 |
+
msgstr "Prašome įvesti el. pašto adresą"
|
560 |
+
|
561 |
+
#: classes/es-register.php:263
|
562 |
+
msgctxt "widget-page-enhanced-select"
|
563 |
+
msgid "Please provide a valid email address"
|
564 |
+
msgstr "Prašome nurodyti teisingą el. pašto adresą"
|
565 |
+
|
566 |
+
#: classes/es-register.php:264
|
567 |
msgctxt "widget-page-enhanced-select"
|
568 |
msgid "loading..."
|
569 |
msgstr "kraunasi..."
|
570 |
|
571 |
+
#: classes/es-register.php:265
|
572 |
msgctxt "widget-page-enhanced-select"
|
573 |
msgid "Cannot create XMLHTTP instance"
|
574 |
msgstr "Nepavyko sukurti XMLHTTP instancijos"
|
575 |
|
576 |
+
#: classes/es-register.php:266
|
577 |
+
msgctxt "widget-page-enhanced-select"
|
578 |
+
msgid "Successfully Subscribed."
|
579 |
+
msgstr "Užsiprenumeravote sėkmingai."
|
580 |
+
|
581 |
+
#: classes/es-register.php:267
|
582 |
msgctxt "widget-page-enhanced-select"
|
583 |
msgid ""
|
584 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
589 |
"savo pašto dėžutė ir patvirtinkite savo prenumeratą. Jei negalite rasti savo "
|
590 |
"pašto dėžutėje laiško, patikrinkite savo šlamšto aplanką."
|
591 |
|
592 |
+
#: classes/es-register.php:268
|
593 |
+
msgctxt "widget-page-enhanced-select"
|
594 |
+
msgid "Email Address already exists!"
|
595 |
+
msgstr "El. pašto adresas jau egzistuoja!"
|
596 |
+
|
597 |
+
#: classes/es-register.php:269
|
598 |
msgctxt "widget-page-enhanced-select"
|
599 |
msgid "Oops.. Unexpected error occurred."
|
600 |
msgstr "Oi.. įvyko netikėta klaida."
|
601 |
|
602 |
+
#: classes/es-register.php:270
|
603 |
+
msgctxt "widget-page-enhanced-select"
|
604 |
+
msgid "Invalid email address"
|
605 |
+
msgstr "Neteisingas el. pašto adresas"
|
|
|
|
|
|
|
606 |
|
607 |
+
#: classes/es-register.php:271
|
608 |
+
msgctxt "widget-page-enhanced-select"
|
609 |
+
msgid "Please try after some time"
|
610 |
+
msgstr "Bandykite vėliau"
|
611 |
|
612 |
+
#: classes/es-register.php:272
|
613 |
+
msgctxt "widget-page-enhanced-select"
|
614 |
+
msgid "There was a problem with the request"
|
615 |
+
msgstr "Iškilo problema dėl užklausos"
|
616 |
|
617 |
+
#: classes/es-register.php:1009
|
618 |
msgid "Widget Title"
|
619 |
msgstr "Valdiklio pavadinimas"
|
620 |
|
621 |
+
#: classes/es-register.php:1013
|
622 |
+
msgid "Short description about subscription form"
|
623 |
+
msgstr "Trumpas prenumeratos formos aprašymas"
|
624 |
+
|
625 |
+
#: classes/es-register.php:1017
|
626 |
msgid "Display Name Field"
|
627 |
msgstr "Rodyti vardo lauką"
|
628 |
|
629 |
+
#: classes/es-register.php:1019 settings/settings-edit.php:140
|
630 |
+
#: settings/settings-edit.php:213 subscribers/view-subscriber-sync.php:107
|
631 |
msgid "YES"
|
632 |
msgstr "Taip"
|
633 |
|
634 |
+
#: classes/es-register.php:1020 settings/settings-edit.php:141
|
635 |
+
#: settings/settings-edit.php:214 subscribers/view-subscriber-sync.php:106
|
636 |
msgid "NO"
|
637 |
msgstr "Ne"
|
638 |
|
639 |
+
#: classes/es-register.php:1024
|
640 |
msgid "Subscriber Group"
|
641 |
msgstr "Prenumeratoriaus grupė"
|
642 |
|
654 |
|
655 |
#: compose/compose-add.php:75 compose/compose-edit.php:86
|
656 |
#: compose/compose-preview.php:28 compose/compose-show.php:66
|
657 |
+
#: notification/notification-add.php:113
|
658 |
#: notification/notification-edit.php:124
|
659 |
+
#: notification/notification-show.php:54 sendmail/sendmail.php:94
|
660 |
+
#: sentmail/deliverreport-show.php:61 sentmail/sentmail-preview.php:28
|
661 |
+
#: sentmail/sentmail-show.php:97 settings/settings-edit.php:42
|
662 |
+
#: subscribers/view-subscriber-add.php:114
|
663 |
#: subscribers/view-subscriber-edit.php:113
|
664 |
+
#: subscribers/view-subscriber-export.php:38
|
665 |
#: subscribers/view-subscriber-import.php:146
|
666 |
#: subscribers/view-subscriber-show.php:246
|
667 |
#: subscribers/view-subscriber-sync.php:92
|
710 |
#: compose/compose-add.php:97 compose/compose-edit.php:108
|
711 |
#: sentmail/deliverreport-show.php:73 sentmail/deliverreport-show.php:84
|
712 |
#: sentmail/sentmail-show.php:113 sentmail/sentmail-show.php:126
|
713 |
+
#: subscribers/view-subscriber-show.php:362
|
714 |
+
#: subscribers/view-subscriber-show.php:375
|
715 |
msgid "Status"
|
716 |
msgstr "Statusas"
|
717 |
|
724 |
msgstr "Prašome pasirinkti laiško statusą."
|
725 |
|
726 |
#: compose/compose-add.php:105 compose/compose-edit.php:117
|
727 |
+
#: notification/notification-add.php:253
|
728 |
+
#: notification/notification-edit.php:290
|
729 |
#: subscribers/view-subscriber-edit.php:191
|
730 |
msgid "Save"
|
731 |
msgstr "Saugoti"
|
733 |
#: compose/compose-edit.php:20 compose/compose-preview.php:18
|
734 |
#: compose/compose-show.php:33 notification/notification-edit.php:20
|
735 |
#: notification/notification-show.php:21 sentmail/sentmail-preview.php:18
|
736 |
+
#: sentmail/sentmail-show.php:22 subscribers/view-subscriber-edit.php:22
|
|
|
737 |
msgid "Oops, selected details does not exists."
|
738 |
msgstr "Oi, pažymėti duomenys neegzistuoja."
|
739 |
|
756 |
|
757 |
#: compose/compose-preview.php:40 compose/compose-show.php:101
|
758 |
#: notification/notification-show.php:100
|
759 |
+
#: subscribers/view-subscriber-show.php:404
|
760 |
msgid "Edit"
|
761 |
msgstr "Redaguoti"
|
762 |
|
784 |
msgstr "Veiksmai"
|
785 |
|
786 |
#: compose/compose-show.php:102 notification/notification-show.php:103
|
787 |
+
#: subscribers/view-subscriber-show.php:287
|
788 |
+
#: subscribers/view-subscriber-show.php:409
|
789 |
msgid "Delete"
|
790 |
msgstr "Trinti"
|
791 |
|
796 |
|
797 |
#: compose/compose-show.php:111 notification/notification-show.php:143
|
798 |
#: sentmail/deliverreport-show.php:127 sentmail/sentmail-show.php:183
|
799 |
+
#: subscribers/view-subscriber-show.php:432
|
800 |
msgid "No records available."
|
801 |
msgstr "Nėra įrašų."
|
802 |
|
803 |
+
#: export/export-email-address.php:45 export/export-email-address.php:49
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
804 |
msgid "Unexpected url submit has been detected"
|
805 |
msgstr "Buvo aptiktas nenumatytas nuorodos pateikimas"
|
806 |
|
819 |
msgid "For more help and tips..."
|
820 |
msgstr "Norėdami gauti daugiau pagalbos ir patarimų..."
|
821 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
822 |
#: help/help.php:99
|
823 |
msgid "Frequently Asked Questions"
|
824 |
msgstr "Dažnai užduodami klausimai"
|
827 |
#: help/help.php:136 help/help.php:139 help/help.php:142 help/help.php:145
|
828 |
#: help/help.php:148 help/help.php:151 help/help.php:154 help/help.php:157
|
829 |
#: help/help.php:160 help/help.php:163 help/help.php:166 help/help.php:169
|
830 |
+
#: help/help.php:172 help/help.php:175 help/help.php:178 help/help.php:180
|
831 |
#, c-format
|
832 |
msgid "%s"
|
833 |
msgstr "%s"
|
861 |
msgid "How to add Unsubscribe link in emails?"
|
862 |
msgstr "Kaip pridėti prenumeratos atsisakymo nuorodą laiškuose?"
|
863 |
|
|
|
|
|
|
|
|
|
864 |
#: help/help.php:142
|
865 |
msgid "How to Compose and Send Newsletter Emails?"
|
866 |
msgstr "Kaip kurti ir siųsti naujienlaiškių laiškus?"
|
916 |
msgid "What to do if Hosting doesn’t support Cron Jobs?"
|
917 |
msgstr "Ką daryti jei serveris nepalaiko periodinių užduočių (cron job)?"
|
918 |
|
919 |
+
#: help/help.php:180
|
920 |
msgid "Commonly Asked Questions"
|
921 |
msgstr "Dažniausiai užduodami klausimai"
|
922 |
|
923 |
+
#: job/es-optin.php:58 job/es-optin.php:68 job/es-unsubscribe.php:54
|
924 |
+
#: job/es-unsubscribe.php:61
|
925 |
msgid ""
|
926 |
"Oops.. We are getting some technical error. Please try again or contact "
|
927 |
"admin."
|
1046 |
msgstr "Redaguoti pranešimą"
|
1047 |
|
1048 |
#: notification/notification-edit.php:131
|
1049 |
+
#: subscribers/view-subscriber-show.php:289
|
1050 |
msgid "Update Subscribers Group"
|
1051 |
msgstr "Atnaujinti prenumeratorių grupę"
|
1052 |
|
1070 |
msgid "Notification Status"
|
1071 |
msgstr "Pranešimo statusas"
|
1072 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1073 |
#: sendmail/sendmail.php:40
|
1074 |
msgid "Please select your mail subject."
|
1075 |
msgstr "Prašome pasirinkti laiško temą."
|
1098 |
msgid "Use this to send newsletter emails to your subscribers."
|
1099 |
msgstr "Naudokite naujienlaiškių savo prenumeratoriams siuntimui."
|
1100 |
|
1101 |
+
#: sendmail/sendmail.php:105
|
1102 |
+
msgid "Select Email Subject from available list"
|
1103 |
+
msgstr "Pasirinkite laiško temą iš sąrašo"
|
1104 |
+
|
1105 |
+
#: sendmail/sendmail.php:132
|
1106 |
+
msgid "Select Email Type"
|
1107 |
+
msgstr "Pasirinkite laiško tipą"
|
1108 |
+
|
1109 |
#: sendmail/sendmail.php:139
|
1110 |
msgid "Send email via cron job"
|
1111 |
msgstr "Siųsti laišką naudojant periodines užduotis (cron job)"
|
1112 |
|
1113 |
+
#: sendmail/sendmail.php:146
|
1114 |
+
msgid "Select Subscribers group to Send Email"
|
1115 |
+
msgstr "Pasirinkite prenumeratorių grupę, kuriai siųsti laišką"
|
1116 |
+
|
1117 |
#: sendmail/sendmail.php:178
|
1118 |
msgid "Recipients : 0 "
|
1119 |
msgstr "Gavėjai: 0"
|
1159 |
msgstr "Pristatymo ataskaita"
|
1160 |
|
1161 |
#: sentmail/deliverreport-show.php:71 sentmail/deliverreport-show.php:82
|
|
|
1162 |
#: subscribers/view-subscriber-export.php:45
|
1163 |
+
#: subscribers/view-subscriber-export.php:53
|
|
|
1164 |
msgid "Sno"
|
1165 |
msgstr "Nr."
|
1166 |
|
1221 |
msgstr "Viso"
|
1222 |
|
1223 |
#: sentmail/sentmail-show.php:118 sentmail/sentmail-show.php:131
|
|
|
1224 |
#: subscribers/view-subscriber-export.php:48
|
1225 |
+
#: subscribers/view-subscriber-export.php:56
|
1226 |
+
#: subscribers/view-subscriber-show.php:365
|
1227 |
+
#: subscribers/view-subscriber-show.php:378
|
1228 |
msgid "Action"
|
1229 |
msgstr "Veiksmas"
|
1230 |
|
1252 |
msgid "Click to sync tables"
|
1253 |
msgstr "Spauskite jei norite sinchronizuoti lenteles"
|
1254 |
|
1255 |
+
#: settings/settings-edit.php:25
|
1256 |
+
msgid "User Roles"
|
1257 |
+
msgstr "Vartotojo vaidmenys"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1258 |
|
1259 |
+
#: settings/settings-edit.php:64
|
1260 |
+
msgid "Save Settings"
|
1261 |
+
msgstr "Išsaugoti nustatymus"
|
1262 |
|
1263 |
+
#: settings/settings-edit.php:76
|
1264 |
msgid "Sender of Notifications"
|
1265 |
msgstr "Pranešimų siuntėjas"
|
1266 |
|
1267 |
+
#: settings/settings-edit.php:77
|
1268 |
msgid ""
|
1269 |
"Choose a FROM name and FROM email address for all the emails to be sent from "
|
1270 |
"this plugin."
|
1272 |
"Pasirinkite siuntėjo vardą ir elektroninio pašto adresą visiems šio įskiepio "
|
1273 |
"siunčiamiems laiškams."
|
1274 |
|
1275 |
+
#: settings/settings-edit.php:87
|
1276 |
msgid "Mail Type"
|
1277 |
msgstr "Laiško tipas"
|
1278 |
|
1279 |
+
#: settings/settings-edit.php:88
|
1280 |
msgid ""
|
1281 |
"Option 1 & 2 is to send mails with default Wordpress method wp_mail(). "
|
1282 |
"Option 3 & 4 is to send mails with PHP method mail()."
|
1284 |
"1 ir 2 variantai naudoja standartinį Wordpress metodą wp_mail(). 3 ir 4 "
|
1285 |
"variantai naudoja PHP metodą mail()."
|
1286 |
|
1287 |
+
#: settings/settings-edit.php:92
|
1288 |
msgid "1. WP HTML MAIL"
|
1289 |
msgstr "1. WP HTML laiškas"
|
1290 |
|
1291 |
+
#: settings/settings-edit.php:93
|
1292 |
msgid "2. WP PLAINTEXT MAIL"
|
1293 |
msgstr "2. WP paprasto teksto laiškas"
|
1294 |
|
1295 |
+
#: settings/settings-edit.php:94
|
1296 |
msgid "3. PHP HTML MAIL"
|
1297 |
msgstr "3. PHP HTML laiškas"
|
1298 |
|
1299 |
+
#: settings/settings-edit.php:95
|
1300 |
msgid "4. PHP PLAINTEXT MAIL"
|
1301 |
msgstr "4. PHP paprasto teksto laiškas"
|
1302 |
|
1303 |
+
#: settings/settings-edit.php:102
|
1304 |
+
msgid "Opt-In Option"
|
1305 |
+
msgstr "Prenumeratos patvirtinimas"
|
1306 |
+
|
1307 |
+
#: settings/settings-edit.php:103
|
1308 |
+
msgid ""
|
1309 |
+
"Double Opt In means subscribers need to confirm their email address by an "
|
1310 |
+
"activation link sent them on a activation email message.<br />Single Opt In "
|
1311 |
+
"means subscribers do not need to confirm their email address."
|
1312 |
+
msgstr ""
|
1313 |
+
"Dvigubas patvirtinimas reiškia, kad prenumeratoriai turi patvirtinti savo el."
|
1314 |
+
" pašto adresą aktyvuodami nuorodą aktyvacijos laiške.<br />Viengubas "
|
1315 |
+
"patvirtinimas reiškia, kad prenumeratoriai neturi patvirtinti savo el. pašto "
|
1316 |
+
"adreso."
|
1317 |
+
|
1318 |
+
#: settings/settings-edit.php:107
|
1319 |
+
msgid "Double Opt In"
|
1320 |
+
msgstr "Dvigubas patvirtinimas"
|
1321 |
+
|
1322 |
+
#: settings/settings-edit.php:108 subscribers/view-subscriber-add.php:151
|
1323 |
+
#: subscribers/view-subscriber-edit.php:150
|
1324 |
+
#: subscribers/view-subscriber-import.php:178
|
1325 |
+
#: subscribers/view-subscriber-show.php:312
|
1326 |
+
#: subscribers/view-subscriber-show.php:339
|
1327 |
+
msgid "Single Opt In"
|
1328 |
+
msgstr "Viengubas patvirtinimas"
|
1329 |
+
|
1330 |
+
#: settings/settings-edit.php:114
|
1331 |
+
msgid "Image Size"
|
1332 |
+
msgstr "Paveikslėlio dydis"
|
1333 |
+
|
1334 |
+
#: settings/settings-edit.php:115
|
1335 |
+
msgid ""
|
1336 |
+
"Select image size for ###POSTIMAGE### to be shown in the Post Notification "
|
1337 |
+
"Emails."
|
1338 |
+
msgstr ""
|
1339 |
+
"Pasirinkite vaizdo dydį ###POSTIMAGE###, kuris bus rodomas pranešimų apie "
|
1340 |
+
"įrašus laiškuose."
|
1341 |
+
|
1342 |
+
#: settings/settings-edit.php:119
|
1343 |
+
msgid "Full Size"
|
1344 |
+
msgstr "Visas dydis"
|
1345 |
+
|
1346 |
+
#: settings/settings-edit.php:120
|
1347 |
+
msgid "Medium Size"
|
1348 |
+
msgstr "Vidutinis dydis"
|
1349 |
+
|
1350 |
+
#: settings/settings-edit.php:121
|
1351 |
+
msgid "Thumbnail"
|
1352 |
+
msgstr "Miniatiūra"
|
1353 |
+
|
1354 |
+
#: settings/settings-edit.php:127
|
1355 |
+
msgid "Admin Email Addresses"
|
1356 |
+
msgstr "Administratorių el. pašto adresai"
|
1357 |
+
|
1358 |
+
#: settings/settings-edit.php:128
|
1359 |
+
msgid ""
|
1360 |
+
"Enter the admin email addresses that should receive notifications (separated "
|
1361 |
+
"by comma)."
|
1362 |
+
msgstr ""
|
1363 |
+
"Įveskite Administratorių elektroninio pašto adresus, kuriais turėtų būti "
|
1364 |
+
"siunčiami pranešimai (atskiriant kableliu)."
|
1365 |
+
|
1366 |
+
#: settings/settings-edit.php:134
|
1367 |
+
msgid "Notify admin when a new subscriber signs up"
|
1368 |
+
msgstr "Informuoti administratorių, kai naujas prenumeratorius užsiregistruoja"
|
1369 |
+
|
1370 |
+
#: settings/settings-edit.php:135
|
1371 |
+
msgid ""
|
1372 |
+
"To send admin email notifications for the new subscriber. This option must "
|
1373 |
+
"be set to YES."
|
1374 |
+
msgstr ""
|
1375 |
+
"Norėdami siųsti pranešimus administratoriams apie naujus prenumeratorius, "
|
1376 |
+
"turite nustatyti TAIP."
|
1377 |
+
|
1378 |
+
#: settings/settings-edit.php:147
|
1379 |
+
msgid "Admin Email Subject when a new subscriber signs up"
|
1380 |
+
msgstr "Laiško administratoriui, kai prenumeratorius užsiregistruoja, tema"
|
1381 |
+
|
1382 |
+
#: settings/settings-edit.php:148
|
1383 |
+
msgid ""
|
1384 |
+
"Enter the subject for the admin email which will be sent whenever a new "
|
1385 |
+
"email is added and confirmed."
|
1386 |
+
msgstr ""
|
1387 |
+
"Įrašykite laiško administratoriui, kuris siunčiamas kai naujas el. pašto "
|
1388 |
+
"adresas pridedamas ir patvirtinamas, temą."
|
1389 |
+
|
1390 |
+
#: settings/settings-edit.php:154
|
1391 |
+
msgid "Admin Email Content when a new subscriber signs up"
|
1392 |
+
msgstr "Laiško administratoriui, kai prenumeratorius užsiregistruoja, turinys"
|
1393 |
+
|
1394 |
+
#: settings/settings-edit.php:155
|
1395 |
+
msgid ""
|
1396 |
+
"Enter the email content for the admin email which will be sent whenever a "
|
1397 |
+
"new email is added and confirmed. (Keyword: ###NAME###, ###EMAIL###)"
|
1398 |
+
msgstr ""
|
1399 |
+
"Įrašykite laiško administratoriui, kuris siunčiamas kai naujas el. pašto "
|
1400 |
+
"adresas pridedamas ir patvirtinamas, turinį. (Raktažodis: ###NAME###, "
|
1401 |
+
"###EMAIL###)"
|
1402 |
+
|
1403 |
+
#: settings/settings-edit.php:162
|
1404 |
+
msgid "Sent Report Subject"
|
1405 |
+
msgstr "Išsiųstų laiškų ataskaitos tema"
|
1406 |
+
|
1407 |
+
#: settings/settings-edit.php:163
|
1408 |
msgid ""
|
1409 |
+
"Enter the subject for the sent email report. It will be emailed to Admin."
|
|
|
|
|
1410 |
msgstr ""
|
1411 |
+
"Įrašykite siųstų laiškų ataskaitos laiško temą. Jis bus siunčiamas "
|
1412 |
+
"administratoriui."
|
|
|
|
|
1413 |
|
1414 |
+
#: settings/settings-edit.php:169
|
1415 |
+
msgid "Sent Report Content"
|
1416 |
+
msgstr "Išsiųstų laiškų ataskaitos turinys"
|
1417 |
|
1418 |
+
#: settings/settings-edit.php:170
|
1419 |
+
msgid ""
|
1420 |
+
"Enter the content for the sent email report. It will be emailed to Admin. "
|
1421 |
+
"(Keyword: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
|
1422 |
+
msgstr ""
|
1423 |
+
"Įrašykite siųstų laiškų ataskaitos laiško turinį. Jis bus siunčiamas "
|
1424 |
+
"administratoriui. (Raktažodis: ###COUNT###, ###UNIQUE###, ###STARTTIME###, "
|
1425 |
+
"###ENDTIME###)"
|
1426 |
|
1427 |
+
#: settings/settings-edit.php:179
|
1428 |
+
msgid "Double Opt In Email Subject (Confirmation Email)"
|
1429 |
+
msgstr "Dvigubo patvirtinimo laiško tema (Patvirtinimo laiškas)"
|
1430 |
|
1431 |
+
#: settings/settings-edit.php:180
|
1432 |
msgid ""
|
1433 |
+
"Enter the subject for the confirmation email to be sent for Double Opt In "
|
1434 |
+
"whenever a user signs up."
|
1435 |
msgstr ""
|
1436 |
+
"Įrašykite dvigubo patvirtinimo laiško, kuris bus siunčiamas, kai vartotojas "
|
1437 |
+
"užsisakys prenumeratą, temą"
|
|
|
|
|
|
|
|
|
1438 |
|
1439 |
+
#: settings/settings-edit.php:186
|
1440 |
+
msgid "Double Opt In Email Content (Confirmation Email)"
|
1441 |
+
msgstr "Dvigubo patvirtinimo laiško turinys (Patvirtinimo laiškas)"
|
1442 |
|
1443 |
+
#: settings/settings-edit.php:187
|
1444 |
+
msgid ""
|
1445 |
+
"Enter the content for the confirmation email to be sent for Double Opt In "
|
1446 |
+
"whenever a user signs up. (Keyword: ###NAME###, ###LINK###)"
|
1447 |
+
msgstr ""
|
1448 |
+
"Įveskite dvigubo patvirtinimo laiško, kuris bus siunčiamas, kai vartotojas "
|
1449 |
+
"užsisakys prenumeratą, turinį. (Raktažodis: ###NAME###, ###LINK###)"
|
1450 |
|
1451 |
+
#: settings/settings-edit.php:193
|
1452 |
msgid "Double Opt In Confirmation Link"
|
1453 |
msgstr "Dvigubo patvirtinimo nuoroda"
|
1454 |
|
1455 |
+
#: settings/settings-edit.php:194
|
1456 |
msgid "It is a readonly field and you are advised not to modify it."
|
1457 |
msgstr "Laukas tik skaitymui ir patartina jo nekeisti."
|
1458 |
|
1459 |
+
#: settings/settings-edit.php:200
|
1460 |
+
msgid ""
|
1461 |
+
"Text to display after an email address is successfully subscribed from "
|
1462 |
+
"Double Opt In (confirmation) Email"
|
1463 |
+
msgstr ""
|
1464 |
+
"Rodomas tekstas po sėkmingos prenumeratos patvirtinimo iš dvigubo "
|
1465 |
+
"patvirtinimo laiško."
|
1466 |
+
|
1467 |
+
#: settings/settings-edit.php:201
|
1468 |
msgid ""
|
1469 |
"This text will be displayed once user clicks on email confirmation link from "
|
1470 |
"the Double Opt In (confirmation) Email."
|
1472 |
"Šis tekstas bus rodomas, kai vartotojas paspaus ant dvigubo patvirtinimo "
|
1473 |
"laiške esančios nuorodos."
|
1474 |
|
1475 |
+
#: settings/settings-edit.php:208
|
1476 |
msgid "Subscriber Welcome Email"
|
1477 |
msgstr "Prenumeratoriaus pasveikinimo laiškas"
|
1478 |
|
1479 |
+
#: settings/settings-edit.php:209
|
1480 |
msgid ""
|
1481 |
"To send welcome email to subscriber after successful signup. This option "
|
1482 |
"must be set to YES."
|
1484 |
"Norėdami išsiųsti pasveikinimo laišką prenumeratoriui po sėkmingos "
|
1485 |
"registracijos, turite nustatyti TAIP."
|
1486 |
|
1487 |
+
#: settings/settings-edit.php:220
|
1488 |
msgid "Subscriber Welcome Email Subject"
|
1489 |
msgstr "Prenumeratoriaus pasveikinimo laiško tema"
|
1490 |
|
1491 |
+
#: settings/settings-edit.php:221
|
1492 |
+
msgid ""
|
1493 |
+
"Enter the subject for the subscriber welcome email. This will be sent "
|
1494 |
+
"whenever a user's email is either confirmed (if Double Opt In) / subscribed "
|
1495 |
+
"(if Single Opt In) successfully."
|
1496 |
+
msgstr ""
|
1497 |
+
"Įrašykite prenumeratoriaus pasveikinimo laiško temą. Jis bus siunčiamas, kai "
|
1498 |
+
"vartotojo el. pašto adresas patvirtinamas (Dvigubo patvirtinimo atveju) arba "
|
1499 |
+
"užsiregistruoja (Viengubo patvirtinimo atveju) sėkmingai."
|
1500 |
+
|
1501 |
+
#: settings/settings-edit.php:227
|
1502 |
msgid "Subscriber Welcome Email Content"
|
1503 |
msgstr "Prenumeratoriaus pasveikinimo laiško turinys"
|
1504 |
|
1505 |
+
#: settings/settings-edit.php:236
|
1506 |
msgid "Unsubscribe Link"
|
1507 |
msgstr "Prenumeratos atsisakymo nuoroda"
|
1508 |
|
1509 |
+
#: settings/settings-edit.php:237
|
1510 |
+
msgid ""
|
1511 |
+
"The unsubscribe link gets added automatically to all emails that are sent "
|
1512 |
+
"from this plugin. It is a readonly field and you are advised not to modify "
|
1513 |
+
"it."
|
1514 |
+
msgstr ""
|
1515 |
+
"Prenumeratos atsisakymo nuoroda prideda automatiškai visuose el. pašto "
|
1516 |
+
"laiškuose, kurie siunčiami šio įskiepio. Šis laukas tik skaitymui ir "
|
1517 |
+
"nerekomenduojame jo keisti."
|
1518 |
+
|
1519 |
+
#: settings/settings-edit.php:243
|
1520 |
msgid "Unsubscribe Text in Email"
|
1521 |
msgstr "Prenumeratos atsisakymo tekstas laiške"
|
1522 |
|
1523 |
+
#: settings/settings-edit.php:244
|
1524 |
msgid ""
|
1525 |
"Enter the text for the unsubscribe link. This text is added with unsubscribe "
|
1526 |
"link in the emails. (Keyword: ###LINK###)"
|
1528 |
"Įveskite prenumeratos atsisakymo nuorodos tekstą. Jis bus pridėtas kartu su "
|
1529 |
"prenumeratos atsisakymo nuoroda visuose laiškuose. (Raktažodis: ###LINK###)"
|
1530 |
|
1531 |
+
#: settings/settings-edit.php:250
|
1532 |
+
msgid "Text to display after an email address is unsubscribed"
|
1533 |
+
msgstr "Rodomas tekstas po el. pašto adreso prenumeratos atšaukimo."
|
1534 |
+
|
1535 |
+
#: settings/settings-edit.php:251
|
1536 |
msgid "This text will be displayed once user clicks on unsubscribe link."
|
1537 |
msgstr ""
|
1538 |
"Šis tekstas bus rodomas, kai vartotojas paspaus ant prenumeratos atsisakymo "
|
1539 |
"nuorodos."
|
1540 |
|
1541 |
+
#: settings/settings-edit.php:258
|
1542 |
+
msgid "Error in the Confirmation Link"
|
1543 |
+
msgstr "Patvirtinimo nuorodos klaida"
|
1544 |
+
|
1545 |
+
#: settings/settings-edit.php:259
|
1546 |
msgid ""
|
1547 |
"Default message to display if there is any issue while clicking on "
|
1548 |
"confirmation link from the Double Opt In (confirmation) Emails."
|
1550 |
"Numatytoji žinutė, kuri rodoma, jei kyla kokių nors problemų paspaudus ant "
|
1551 |
"patvirtinimo nuorodos dvigubo patvirtinimo laiške."
|
1552 |
|
1553 |
+
#: settings/settings-edit.php:265
|
1554 |
+
msgid "Error in the Unsubscribe Link"
|
1555 |
+
msgstr "Prenumeratos atsisakymo nuorodos klaida"
|
1556 |
+
|
1557 |
+
#: settings/settings-edit.php:266
|
1558 |
msgid ""
|
1559 |
"Default message to display if there is any issue while clicking on "
|
1560 |
"unsubscribe link from the Emails."
|
1562 |
"Numatytoji žinutė, kuri rodoma, jei kyla problemų paspaudus ant laiškuose "
|
1563 |
"rodomos prenumeratos atsisakymo nuorodos."
|
1564 |
|
1565 |
+
#: settings/settings-edit.php:276
|
1566 |
+
msgid ""
|
1567 |
+
"Select user roles who can access following menus. Only Admin can change this."
|
1568 |
+
msgstr ""
|
1569 |
+
"Pasirinkite vartotojo vaidmenis, kurie gali pasiekti šiuos meniu. Tik "
|
1570 |
+
"administratorius gali tai pakeisti."
|
1571 |
+
|
1572 |
+
#: settings/settings-edit.php:282
|
1573 |
+
msgid "Subscribers Menu"
|
1574 |
+
msgstr "Prenumeratorių meniu"
|
1575 |
+
|
1576 |
+
#: settings/settings-edit.php:286 settings/settings-edit.php:298
|
1577 |
+
#: settings/settings-edit.php:310 settings/settings-edit.php:322
|
1578 |
+
#: settings/settings-edit.php:334
|
1579 |
+
msgid "Administrator Only"
|
1580 |
+
msgstr "Tik administratoriui"
|
1581 |
+
|
1582 |
+
#: settings/settings-edit.php:287 settings/settings-edit.php:299
|
1583 |
+
#: settings/settings-edit.php:311 settings/settings-edit.php:323
|
1584 |
+
#: settings/settings-edit.php:335
|
1585 |
+
msgid "Administrator/Editor"
|
1586 |
+
msgstr "Administratorius/redaktorius"
|
1587 |
+
|
1588 |
+
#: settings/settings-edit.php:288 settings/settings-edit.php:300
|
1589 |
+
#: settings/settings-edit.php:312 settings/settings-edit.php:324
|
1590 |
+
#: settings/settings-edit.php:336
|
1591 |
+
msgid "Administrator/Editor/Author/Contributor"
|
1592 |
+
msgstr "Administratorius/redaktorius/autorius/pagalbininkas"
|
1593 |
+
|
1594 |
+
#: settings/settings-edit.php:294
|
1595 |
+
msgid "Compose Menu"
|
1596 |
+
msgstr "Kurti meniu"
|
1597 |
+
|
1598 |
+
#: settings/settings-edit.php:306
|
1599 |
+
msgid "Post Notifications Menu"
|
1600 |
+
msgstr "Pranešimų apie įrašus meniu"
|
1601 |
+
|
1602 |
+
#: settings/settings-edit.php:330
|
1603 |
+
msgid "Reports Menu"
|
1604 |
+
msgstr "Ataskaitų meniu"
|
1605 |
+
|
1606 |
+
#: settings/settings-edit.php:345
|
1607 |
+
msgid "Cron job URL"
|
1608 |
+
msgstr "Periodinių užduočių (cron) adresas"
|
1609 |
|
1610 |
+
#: settings/settings-edit.php:346
|
1611 |
msgid ""
|
1612 |
+
"This is your Cron Job URL. It is a readonly field and you are advised not to "
|
1613 |
+
"modify it."
|
1614 |
msgstr ""
|
1615 |
+
"Tai jūsų periodinės užduoties (cron) adresas. Laukas tik skaitymui ir "
|
1616 |
+
"patartina jo nekeisti."
|
1617 |
+
|
1618 |
+
#: settings/settings-edit.php:355
|
1619 |
+
msgid "Email Count"
|
1620 |
+
msgstr "Laiškų skaičius"
|
1621 |
+
|
1622 |
+
#: settings/settings-edit.php:356
|
1623 |
+
msgid "Number of emails that you want to trigger per hour."
|
1624 |
+
msgstr "Laiškų, kuriuos norite išsiųsti per valandą, skaičius"
|
1625 |
+
|
1626 |
+
#: settings/settings-edit.php:361
|
1627 |
+
msgid "(Your web host has limits. We suggest 50 emails per hour to be safe)"
|
1628 |
+
msgstr ""
|
1629 |
+
"(Jūsų serveris turi limitą. Saugumo dėlei, mes siūlome 50 laiškų per valandą "
|
1630 |
+
"limitą)"
|
1631 |
+
|
1632 |
+
#: settings/settings-edit.php:366
|
1633 |
+
msgid "Admin Report"
|
1634 |
+
msgstr "Administratoriaus ataskaita"
|
1635 |
|
1636 |
+
#: settings/settings-edit.php:367
|
1637 |
msgid ""
|
1638 |
+
"Email to admin whenever cron URL is triggered from your server. (Keywords: "
|
1639 |
+
"###DATE###, ###SUBJECT###, ###COUNT###)"
|
1640 |
msgstr ""
|
1641 |
+
"Siųsti laišką administratoriui, kai periodinės užduoties (cron) adresas yra "
|
1642 |
+
"aktyvuojamas serveryje. (Raktažodžiai: ###DATE###, ###SUBJECT###, "
|
1643 |
+
"###COUNT###)"
|
1644 |
|
1645 |
+
#: settings/settings-edit.php:377
|
1646 |
+
msgid "What is Cron (auto emails) and how to setup Cron Job?"
|
1647 |
+
msgstr ""
|
1648 |
+
"Kas yra periodinės užduotys (cron)(automatiniai laiškai) ir kaip jas "
|
1649 |
+
"nustatyti?"
|
1650 |
|
1651 |
+
#: settings/settings-edit.php:378
|
1652 |
+
msgid ""
|
1653 |
+
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
|
1654 |
+
"schedule-cron-emails/\">What is Cron?</a>"
|
1655 |
+
msgstr ""
|
1656 |
+
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
|
1657 |
+
"schedule-cron-emails/\">Kas yra periodinės užduotys (cron)?</a>"
|
1658 |
|
1659 |
+
#: settings/settings-edit.php:379
|
1660 |
+
msgid ""
|
1661 |
+
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
|
1662 |
+
"schedule-cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
|
1663 |
+
msgstr ""
|
1664 |
+
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
|
1665 |
+
"schedule-cron-emails-in-parallels-plesk/\">Periodinių užduočių (cron job) "
|
1666 |
+
"nustatymas Plesk</a>"
|
1667 |
+
|
1668 |
+
#: settings/settings-edit.php:380
|
1669 |
+
msgid ""
|
1670 |
+
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
|
1671 |
+
"schedule-cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
|
1672 |
+
msgstr ""
|
1673 |
+
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
|
1674 |
+
"schedule-cron-emails-in-cpanel/\">Periodinių užduočių (cron job) nustatymas "
|
1675 |
+
"cPanel</a>"
|
1676 |
+
|
1677 |
+
#: settings/settings-edit.php:381
|
1678 |
+
msgid ""
|
1679 |
+
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-"
|
1680 |
+
"do-if-hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?"
|
1681 |
+
"</a>"
|
1682 |
+
msgstr ""
|
1683 |
+
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-"
|
1684 |
+
"do-if-hosting-doesnt-support-cron-jobs/\">Serveris nepalaiko periodinių "
|
1685 |
+
"užduočių (cron job)?</a>"
|
1686 |
+
|
1687 |
+
#: settings/settings-edit.php:495
|
1688 |
+
msgid "Please enter sender of notifications from name."
|
1689 |
+
msgstr "Prašome įvesti pranešimų siuntėjo vardą."
|
1690 |
+
|
1691 |
+
#: settings/settings-edit.php:500
|
1692 |
+
msgid "Please enter sender of notifications from email."
|
1693 |
+
msgstr "Prašome įvesti pranešimų siuntėjo el. paštą."
|
1694 |
+
|
1695 |
+
#: settings/settings-edit.php:544
|
1696 |
+
msgid "Please enter valid mail count."
|
1697 |
+
msgstr "Prašome įvesti teisingą laiškų kiekį."
|
1698 |
+
|
1699 |
+
#: settings/settings-edit.php:557
|
1700 |
+
msgid "Settings Saved."
|
1701 |
+
msgstr "Nustatymai išsaugoti."
|
1702 |
+
|
1703 |
+
#: settings/settings-edit.php:560
|
1704 |
+
msgid "Oops, unable to update."
|
1705 |
+
msgstr "Oi, negalima atnaujinti."
|
1706 |
|
1707 |
#: subscribers/view-subscriber-add.php:36
|
1708 |
#: subscribers/view-subscriber-edit.php:54
|
1735 |
|
1736 |
#: subscribers/view-subscriber-add.php:110
|
1737 |
#: subscribers/view-subscriber-edit.php:109
|
1738 |
+
#: subscribers/view-subscriber-export.php:35
|
1739 |
#: subscribers/view-subscriber-import.php:143
|
1740 |
#: subscribers/view-subscriber-show.php:242
|
1741 |
#: subscribers/view-subscriber-sync.php:89
|
1744 |
|
1745 |
#: subscribers/view-subscriber-add.php:111
|
1746 |
#: subscribers/view-subscriber-edit.php:110
|
1747 |
+
#: subscribers/view-subscriber-export.php:36
|
1748 |
#: subscribers/view-subscriber-import.php:210
|
1749 |
#: subscribers/view-subscriber-show.php:243
|
1750 |
#: subscribers/view-subscriber-sync.php:90
|
1761 |
|
1762 |
#: subscribers/view-subscriber-add.php:113
|
1763 |
#: subscribers/view-subscriber-edit.php:112
|
1764 |
+
#: subscribers/view-subscriber-export.php:37
|
1765 |
#: subscribers/view-subscriber-import.php:145
|
1766 |
#: subscribers/view-subscriber-show.php:245
|
1767 |
#: subscribers/view-subscriber-sync.php:143
|
1783 |
#: subscribers/view-subscriber-add.php:148
|
1784 |
#: subscribers/view-subscriber-edit.php:147
|
1785 |
#: subscribers/view-subscriber-import.php:175
|
1786 |
+
#: subscribers/view-subscriber-show.php:309
|
1787 |
+
#: subscribers/view-subscriber-show.php:336
|
1788 |
msgid "Confirmed"
|
1789 |
msgstr "Patvirtinta"
|
1790 |
|
1791 |
#: subscribers/view-subscriber-add.php:149
|
1792 |
#: subscribers/view-subscriber-edit.php:148
|
1793 |
#: subscribers/view-subscriber-import.php:176
|
1794 |
+
#: subscribers/view-subscriber-show.php:310
|
1795 |
+
#: subscribers/view-subscriber-show.php:337
|
1796 |
msgid "Unconfirmed"
|
1797 |
msgstr "Nepatvirtintas"
|
1798 |
|
1799 |
#: subscribers/view-subscriber-add.php:150
|
1800 |
#: subscribers/view-subscriber-edit.php:149
|
1801 |
#: subscribers/view-subscriber-import.php:177
|
1802 |
+
#: subscribers/view-subscriber-show.php:311
|
1803 |
+
#: subscribers/view-subscriber-show.php:338
|
1804 |
msgid "Unsubscribed"
|
1805 |
msgstr "Nutraukė prenumeratą"
|
1806 |
|
1849 |
msgid "Update Subscriber's Group"
|
1850 |
msgstr "Atnaujinti prenumeratoriaus grupę"
|
1851 |
|
1852 |
+
#: subscribers/view-subscriber-export.php:34
|
1853 |
msgid "Export Email Addresses"
|
1854 |
msgstr "Eksportuoti el. pašto adresus"
|
1855 |
|
1856 |
+
#: subscribers/view-subscriber-export.php:46
|
1857 |
+
#: subscribers/view-subscriber-export.php:54
|
1858 |
msgid "Type of List to Export"
|
1859 |
msgstr "Sąrašo eksportuoti tipas"
|
1860 |
|
1861 |
+
#: subscribers/view-subscriber-export.php:47
|
1862 |
+
#: subscribers/view-subscriber-export.php:55
|
1863 |
+
msgid "Total Emails Count"
|
1864 |
+
msgstr "Laiškų skaičius iš viso"
|
1865 |
+
|
1866 |
+
#: subscribers/view-subscriber-export.php:61
|
1867 |
msgid "1"
|
1868 |
msgstr "1"
|
1869 |
|
1870 |
+
#: subscribers/view-subscriber-export.php:64
|
1871 |
+
#: subscribers/view-subscriber-export.php:70
|
1872 |
+
#: subscribers/view-subscriber-export.php:76
|
1873 |
+
#: subscribers/view-subscriber-export.php:82
|
1874 |
+
#: subscribers/view-subscriber-export.php:88
|
1875 |
msgid "Click to Export in CSV"
|
1876 |
msgstr "Norėdami eksportuoti CSV, spauskite čia"
|
1877 |
|
1878 |
+
#: subscribers/view-subscriber-export.php:67
|
1879 |
msgid "2"
|
1880 |
msgstr "2"
|
1881 |
|
1882 |
+
#: subscribers/view-subscriber-export.php:73
|
|
|
|
|
|
|
|
|
1883 |
msgid "3"
|
1884 |
msgstr "3"
|
1885 |
|
1886 |
+
#: subscribers/view-subscriber-export.php:80
|
1887 |
+
msgid "WordPress Registered Users"
|
1888 |
+
msgstr "WordPress registruoti vartotojai"
|
1889 |
+
|
1890 |
+
#: subscribers/view-subscriber-export.php:86
|
1891 |
msgid "Commented Authors"
|
1892 |
msgstr "Komentuoti autoriai"
|
1893 |
|
2000 |
msgid "Please select New Status to update."
|
2001 |
msgstr "Prašome pasirinkti naują būseną atnaujinimui."
|
2002 |
|
2003 |
+
#: subscribers/view-subscriber-show.php:286
|
2004 |
msgid "Bulk Actions"
|
2005 |
msgstr "Masiniai veiksmai"
|
2006 |
|
2007 |
+
#: subscribers/view-subscriber-show.php:288
|
2008 |
+
#: subscribers/view-subscriber-show.php:417
|
2009 |
msgid "Resend Confirmation"
|
2010 |
msgstr "Persiųsti patvirtinimą dar kartą"
|
2011 |
|
2012 |
+
#: subscribers/view-subscriber-show.php:290
|
2013 |
msgid "Update Subscribers Status"
|
2014 |
msgstr "Atnaujinti prenumeratorių būseną"
|
2015 |
|
2016 |
+
#: subscribers/view-subscriber-show.php:293
|
2017 |
msgid "Select Group"
|
2018 |
msgstr "Pasirinkti grupę"
|
2019 |
|
2020 |
+
#: subscribers/view-subscriber-show.php:308
|
2021 |
+
msgid "Select Status"
|
2022 |
+
msgstr "Pasirinkite būseną"
|
2023 |
+
|
2024 |
+
#: subscribers/view-subscriber-show.php:314
|
2025 |
msgid "Apply"
|
2026 |
msgstr "Tinkinti"
|
2027 |
|
2028 |
+
#: subscribers/view-subscriber-show.php:318
|
2029 |
msgid "All Groups"
|
2030 |
msgstr "Visos grupės"
|
2031 |
|
2032 |
+
#: subscribers/view-subscriber-show.php:335
|
2033 |
msgid "All Status"
|
2034 |
msgstr "Visos būsenos"
|
2035 |
|
2036 |
+
#: subscribers/view-subscriber-show.php:349
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2037 |
msgid "Display All"
|
2038 |
msgstr "Rodyti visus"
|
2039 |
|
2040 |
+
#: subscribers/view-subscriber-show.php:360
|
2041 |
+
#: subscribers/view-subscriber-show.php:373
|
2042 |
msgid "Email Address"
|
2043 |
msgstr "El. pašto adresas"
|
2044 |
|
2045 |
+
#: subscribers/view-subscriber-show.php:363
|
2046 |
+
#: subscribers/view-subscriber-show.php:376
|
2047 |
msgid "Group"
|
2048 |
msgstr "Grupė"
|
2049 |
|
|
|
|
|
|
|
|
|
|
|
2050 |
#: subscribers/view-subscriber-sync.php:36
|
2051 |
msgid "Please select default group to newly registered user."
|
2052 |
msgstr "Prašome pasirinkti numatytąją grupę naujai registruotiems vartotojams."
|
languages/email-subscribers.pot
CHANGED
@@ -2,13 +2,13 @@
|
|
2 |
# This file is distributed under the same license as the Email Subscribers & Newsletters package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.3\n"
|
6 |
"Report-Msgid-Bugs-To: http://www.storeapps.org/support/contact-us/\n"
|
7 |
-
"POT-Creation-Date: 2017-06-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"PO-Revision-Date:
|
12 |
"Last-Translator: Ratnakar Dubey <ratnakar.dubey@storeapps.org>\n"
|
13 |
"Language-Team: StoreApps <support@storeapps.org>\n"
|
14 |
|
@@ -64,17 +64,17 @@ msgstr ""
|
|
64 |
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: classes/es-loadwidget.php:28 classes/es-register.php:
|
68 |
#: subscribers/view-subscriber-show.php:361
|
69 |
#: subscribers/view-subscriber-show.php:374
|
70 |
msgid "Name"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: classes/es-loadwidget.php:33 classes/es-register.php:
|
74 |
msgid "Email *"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: classes/es-loadwidget.php:38 classes/es-register.php:
|
78 |
msgid "Subscribe"
|
79 |
msgstr ""
|
80 |
|
@@ -418,11 +418,11 @@ msgid " blog per week"
|
|
418 |
msgstr ""
|
419 |
|
420 |
#: classes/es-register.php:733
|
421 |
-
msgid "Send
|
422 |
msgstr ""
|
423 |
|
424 |
#: classes/es-register.php:735
|
425 |
-
msgid "Send
|
426 |
msgstr ""
|
427 |
|
428 |
#: classes/es-register.php:745
|
@@ -468,29 +468,29 @@ msgstr ""
|
|
468 |
msgid "No issues, have a nice day!"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: classes/es-register.php:
|
472 |
msgid "Widget Title"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: classes/es-register.php:
|
476 |
msgid "Short description about subscription form"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: classes/es-register.php:
|
480 |
msgid "Display Name Field"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: classes/es-register.php:
|
484 |
#: settings/settings-edit.php:213 subscribers/view-subscriber-sync.php:107
|
485 |
msgid "YES"
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: classes/es-register.php:
|
489 |
#: settings/settings-edit.php:214 subscribers/view-subscriber-sync.php:106
|
490 |
msgid "NO"
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: classes/es-register.php:
|
494 |
msgid "Subscriber Group"
|
495 |
msgstr ""
|
496 |
|
@@ -523,7 +523,7 @@ msgid "Help"
|
|
523 |
msgstr ""
|
524 |
|
525 |
#: compose/compose-add.php:78 compose/compose-edit.php:89
|
526 |
-
msgid "Select your
|
527 |
msgstr ""
|
528 |
|
529 |
#: compose/compose-add.php:80 compose/compose-edit.php:91
|
@@ -686,7 +686,8 @@ msgstr ""
|
|
686 |
#: help/help.php:136 help/help.php:139 help/help.php:142 help/help.php:145
|
687 |
#: help/help.php:148 help/help.php:151 help/help.php:154 help/help.php:157
|
688 |
#: help/help.php:160 help/help.php:163 help/help.php:166 help/help.php:169
|
689 |
-
#: help/help.php:172 help/help.php:175 help/help.php:178 help/help.php:
|
|
|
690 |
msgid "%s"
|
691 |
msgstr ""
|
692 |
|
@@ -700,8 +701,8 @@ msgstr ""
|
|
700 |
|
701 |
#: help/help.php:127
|
702 |
msgid ""
|
703 |
-
" (
|
704 |
-
"
|
705 |
msgstr ""
|
706 |
|
707 |
#: help/help.php:130
|
@@ -717,29 +718,29 @@ msgid "How to add Unsubscribe link in emails?"
|
|
717 |
msgstr ""
|
718 |
|
719 |
#: help/help.php:139
|
720 |
-
msgid "
|
721 |
msgstr ""
|
722 |
|
723 |
#: help/help.php:142
|
724 |
-
msgid "
|
|
|
|
|
725 |
msgstr ""
|
726 |
|
727 |
#: help/help.php:145
|
728 |
-
msgid ""
|
729 |
-
"How to Configure and Send Post Notification emails to subscribers when new "
|
730 |
-
"posts are published?"
|
731 |
msgstr ""
|
732 |
|
733 |
#: help/help.php:148
|
734 |
-
msgid "How to
|
735 |
msgstr ""
|
736 |
|
737 |
#: help/help.php:151
|
738 |
-
msgid "How to check
|
739 |
msgstr ""
|
740 |
|
741 |
#: help/help.php:154
|
742 |
-
msgid "How to Add/Update Existing Subscribers Group?"
|
743 |
msgstr ""
|
744 |
|
745 |
#: help/help.php:157
|
@@ -755,27 +756,35 @@ msgid "How to use Rainmaker’s form in Email Subscribers?"
|
|
755 |
msgstr ""
|
756 |
|
757 |
#: help/help.php:166
|
758 |
-
msgid "How to
|
759 |
msgstr ""
|
760 |
|
761 |
#: help/help.php:169
|
762 |
-
msgid "How to
|
763 |
msgstr ""
|
764 |
|
765 |
#: help/help.php:172
|
766 |
-
msgid "How to Schedule Cron Emails
|
767 |
msgstr ""
|
768 |
|
769 |
#: help/help.php:175
|
770 |
-
msgid "
|
771 |
msgstr ""
|
772 |
|
773 |
#: help/help.php:178
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
774 |
msgid "CSS Help"
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: help/help.php:
|
778 |
-
msgid "
|
779 |
msgstr ""
|
780 |
|
781 |
#: job/es-optin.php:58 job/es-optin.php:68 job/es-unsubscribe.php:54
|
@@ -1241,7 +1250,8 @@ msgstr ""
|
|
1241 |
#: settings/settings-edit.php:155
|
1242 |
msgid ""
|
1243 |
"Enter the email content for the admin email which will be sent whenever a "
|
1244 |
-
"new email is added and confirmed. (Keyword: ###NAME###, ###EMAIL
|
|
|
1245 |
msgstr ""
|
1246 |
|
1247 |
#: settings/settings-edit.php:162
|
@@ -1924,9 +1934,9 @@ msgstr ""
|
|
1924 |
msgid "Email Subscribers & Newsletters"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
-
#. #-#-#-#-# email-subscribers.pot (Email Subscribers & Newsletters 3.3) #-#-#-#-#
|
1928 |
#. Plugin URI of the plugin/theme
|
1929 |
-
#. #-#-#-#-# email-subscribers.pot (Email Subscribers & Newsletters 3.3) #-#-#-#-#
|
1930 |
#. Author URI of the plugin/theme
|
1931 |
msgid "http://www.icegram.com/"
|
1932 |
msgstr ""
|
2 |
# This file is distributed under the same license as the Email Subscribers & Newsletters package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.3.1\n"
|
6 |
"Report-Msgid-Bugs-To: http://www.storeapps.org/support/contact-us/\n"
|
7 |
+
"POT-Creation-Date: 2017-06-19 12:27:32+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: Mon, 19 Jun 2017 17:57:32 +0530\n"
|
12 |
"Last-Translator: Ratnakar Dubey <ratnakar.dubey@storeapps.org>\n"
|
13 |
"Language-Team: StoreApps <support@storeapps.org>\n"
|
14 |
|
64 |
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: classes/es-loadwidget.php:28 classes/es-register.php:964
|
68 |
#: subscribers/view-subscriber-show.php:361
|
69 |
#: subscribers/view-subscriber-show.php:374
|
70 |
msgid "Name"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: classes/es-loadwidget.php:33 classes/es-register.php:969
|
74 |
msgid "Email *"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: classes/es-loadwidget.php:38 classes/es-register.php:974
|
78 |
msgid "Subscribe"
|
79 |
msgstr ""
|
80 |
|
418 |
msgstr ""
|
419 |
|
420 |
#: classes/es-register.php:733
|
421 |
+
msgid "Send emails via Cron"
|
422 |
msgstr ""
|
423 |
|
424 |
#: classes/es-register.php:735
|
425 |
+
msgid "Send emails Immediately"
|
426 |
msgstr ""
|
427 |
|
428 |
#: classes/es-register.php:745
|
468 |
msgid "No issues, have a nice day!"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: classes/es-register.php:1012
|
472 |
msgid "Widget Title"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: classes/es-register.php:1016
|
476 |
msgid "Short description about subscription form"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: classes/es-register.php:1020
|
480 |
msgid "Display Name Field"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: classes/es-register.php:1022 settings/settings-edit.php:140
|
484 |
#: settings/settings-edit.php:213 subscribers/view-subscriber-sync.php:107
|
485 |
msgid "YES"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: classes/es-register.php:1023 settings/settings-edit.php:141
|
489 |
#: settings/settings-edit.php:214 subscribers/view-subscriber-sync.php:106
|
490 |
msgid "NO"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: classes/es-register.php:1027
|
494 |
msgid "Subscriber Group"
|
495 |
msgstr ""
|
496 |
|
523 |
msgstr ""
|
524 |
|
525 |
#: compose/compose-add.php:78 compose/compose-edit.php:89
|
526 |
+
msgid "Select your Email Template"
|
527 |
msgstr ""
|
528 |
|
529 |
#: compose/compose-add.php:80 compose/compose-edit.php:91
|
686 |
#: help/help.php:136 help/help.php:139 help/help.php:142 help/help.php:145
|
687 |
#: help/help.php:148 help/help.php:151 help/help.php:154 help/help.php:157
|
688 |
#: help/help.php:160 help/help.php:163 help/help.php:166 help/help.php:169
|
689 |
+
#: help/help.php:172 help/help.php:175 help/help.php:178 help/help.php:181
|
690 |
+
#: help/help.php:184 help/help.php:186
|
691 |
msgid "%s"
|
692 |
msgstr ""
|
693 |
|
701 |
|
702 |
#: help/help.php:127
|
703 |
msgid ""
|
704 |
+
" (Modify existing emails like Confirmation, Welcome, Admin emails and Cron "
|
705 |
+
"Settings and Assign User Roles)"
|
706 |
msgstr ""
|
707 |
|
708 |
#: help/help.php:130
|
718 |
msgstr ""
|
719 |
|
720 |
#: help/help.php:139
|
721 |
+
msgid "How to Compose and Send Newsletter Emails?"
|
722 |
msgstr ""
|
723 |
|
724 |
#: help/help.php:142
|
725 |
+
msgid ""
|
726 |
+
"How to Configure and Send Post Notification Emails to subscribers when new "
|
727 |
+
"posts are published?"
|
728 |
msgstr ""
|
729 |
|
730 |
#: help/help.php:145
|
731 |
+
msgid "What are the available keywords in the Post Notifications?"
|
|
|
|
|
732 |
msgstr ""
|
733 |
|
734 |
#: help/help.php:148
|
735 |
+
msgid "How to send a sample new post notification email to testgroup/myself?"
|
736 |
msgstr ""
|
737 |
|
738 |
#: help/help.php:151
|
739 |
+
msgid "How to check sent emails?"
|
740 |
msgstr ""
|
741 |
|
742 |
#: help/help.php:154
|
743 |
+
msgid "How to Add/Update Existing Subscribers Group & Status?"
|
744 |
msgstr ""
|
745 |
|
746 |
#: help/help.php:157
|
756 |
msgstr ""
|
757 |
|
758 |
#: help/help.php:166
|
759 |
+
msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
|
760 |
msgstr ""
|
761 |
|
762 |
#: help/help.php:169
|
763 |
+
msgid "How to add captcha in Subscribe form of Email Subscribers?"
|
764 |
msgstr ""
|
765 |
|
766 |
#: help/help.php:172
|
767 |
+
msgid "How to Schedule Cron Emails?"
|
768 |
msgstr ""
|
769 |
|
770 |
#: help/help.php:175
|
771 |
+
msgid "How to Schedule Cron Emails in cPanel?"
|
772 |
msgstr ""
|
773 |
|
774 |
#: help/help.php:178
|
775 |
+
msgid "How to Schedule Cron Emails in Parallels Plesk?"
|
776 |
+
msgstr ""
|
777 |
+
|
778 |
+
#: help/help.php:181
|
779 |
+
msgid "What to do if Hosting doesn’t support Cron Jobs?"
|
780 |
+
msgstr ""
|
781 |
+
|
782 |
+
#: help/help.php:184
|
783 |
msgid "CSS Help"
|
784 |
msgstr ""
|
785 |
|
786 |
+
#: help/help.php:186
|
787 |
+
msgid "Common FAQ's"
|
788 |
msgstr ""
|
789 |
|
790 |
#: job/es-optin.php:58 job/es-optin.php:68 job/es-unsubscribe.php:54
|
1250 |
#: settings/settings-edit.php:155
|
1251 |
msgid ""
|
1252 |
"Enter the email content for the admin email which will be sent whenever a "
|
1253 |
+
"new email is added and confirmed. (Keyword: ###NAME###, ###EMAIL###, "
|
1254 |
+
"###GROUP###)"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
#: settings/settings-edit.php:162
|
1934 |
msgid "Email Subscribers & Newsletters"
|
1935 |
msgstr ""
|
1936 |
|
1937 |
+
#. #-#-#-#-# email-subscribers.pot (Email Subscribers & Newsletters 3.3.1) #-#-#-#-#
|
1938 |
#. Plugin URI of the plugin/theme
|
1939 |
+
#. #-#-#-#-# email-subscribers.pot (Email Subscribers & Newsletters 3.3.1) #-#-#-#-#
|
1940 |
#. Author URI of the plugin/theme
|
1941 |
msgid "http://www.icegram.com/"
|
1942 |
msgstr ""
|
query/db_default.php
CHANGED
@@ -28,7 +28,7 @@ class es_cls_default {
|
|
28 |
$default['ig_es_notifyadmin'] = "YES";
|
29 |
$default['ig_es_adminemail'] = $admin_email;
|
30 |
$default['ig_es_admin_new_sub_subject'] = $blogname . " New email subscription";
|
31 |
-
$default['ig_es_admin_new_sub_content'] = "Hi Admin, \r\n\r\nWe have received a request to subscribe new email address to receive emails from our website. \r\n\r\nEmail: ###EMAIL
|
32 |
$default['ig_es_welcomeemail'] = "YES";
|
33 |
$default['ig_es_welcomesubject'] = $blogname . " Welcome to our newsletter";
|
34 |
$default['ig_es_welcomecontent'] = "Hi ###NAME###, \r\n\r\nWe have received a request to subscribe this email address to receive newsletter from our website in group ###GROUP###. \r\n\r\nThank You\r\n".$blogname." \r\n\r\n No longer interested in emails from ".$blogname."?. Please <a href='###LINK###'>click here</a> to unsubscribe";
|
28 |
$default['ig_es_notifyadmin'] = "YES";
|
29 |
$default['ig_es_adminemail'] = $admin_email;
|
30 |
$default['ig_es_admin_new_sub_subject'] = $blogname . " New email subscription";
|
31 |
+
$default['ig_es_admin_new_sub_content'] = "Hi Admin, \r\n\r\nWe have received a request to subscribe new email address to receive emails from our website. \r\n\r\nName : ###NAME###\r\nEmail: ###EMAIL###\r\nGroup: ###GROUP### \r\n\r\nThank You\r\n".$blogname;
|
32 |
$default['ig_es_welcomeemail'] = "YES";
|
33 |
$default['ig_es_welcomesubject'] = $blogname . " Welcome to our newsletter";
|
34 |
$default['ig_es_welcomecontent'] = "Hi ###NAME###, \r\n\r\nWe have received a request to subscribe this email address to receive newsletter from our website in group ###GROUP###. \r\n\r\nThank You\r\n".$blogname." \r\n\r\n No longer interested in emails from ".$blogname."?. Please <a href='###LINK###'>click here</a> to unsubscribe";
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Author URI: http://www.icegram.com/
|
|
5 |
Tags: email marketing, email newsletter form, email signup, email widget, newsletter, newsletter signup, subscribe, subscription form, bulk emails, signup form, list builder, lead generation
|
6 |
Requires at least: 3.4
|
7 |
Tested up to: 4.8
|
8 |
-
Stable tag: 3.3
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.htmlss
|
11 |
|
@@ -48,7 +48,7 @@ I am very satisfied with this easy and complete plugin/widget. In 5 minutes or l
|
|
48 |
* Support **localization or internationalization**.
|
49 |
* **Include/exclude categories** while sending a newsletter.
|
50 |
* **Ability to control user access** (Roles and Capabilities).
|
51 |
-
* Easy **Integration with [Icegram](https://wordpress.org/plugins/icegram/) and [Rainmaker](https://wordpress.org/plugins/icegram-rainmaker/)**
|
52 |
|
53 |
> **Best Email Subscriber Plugin!!** -
|
54 |
> I have tried quite a few subscribe by email type plugins and this by far blows them all out of the water. Beautiful emails and and great backend design for the admin. This works so nice and works well with SMTP solutions
|
@@ -64,17 +64,18 @@ Email subscribers lets you collect leads from anyplace on your website. You can
|
|
64 |
|
65 |
* **Widget option**
|
66 |
|
67 |
-
Go to Dashboard->Appearance->Widgets. Drag and drop the Email Subscribers widget to your
|
68 |
|
69 |
* **Add directly in the theme**
|
70 |
|
71 |
-
|
|
|
72 |
|
73 |
> **Great Plugin** -
|
74 |
> Works as expected. Great way to build an email list on your own site. It allows my clients to manage their own lists via login. I love the automatic notifications to subscribers when new posts are created. Looking forward to a “premium” paid version that includes email templates.
|
75 |
> - [jj9617](https://wordpress.org/support/topic/great-plugin-10646/)
|
76 |
|
77 |
-
### Send Automated
|
78 |
|
79 |
As soon as you publish a new blogpost, email subscribers will automatically send the people on your list a notification, informing them about the new blogpost.
|
80 |
|
@@ -193,13 +194,13 @@ Refer [here](http://www.icegram.com/documentation/es-how-to-install-and-activate
|
|
193 |
|
194 |
Refer [here](http://www.icegram.com/documentation/es-how-to-add-subscription-box-to-website/).
|
195 |
|
196 |
-
= 3. How to
|
197 |
|
198 |
-
Refer [here](http://www.icegram.com/documentation/es-
|
199 |
|
200 |
-
= 4. How to
|
201 |
|
202 |
-
Refer [here](http://www.icegram.com/documentation/es-
|
203 |
|
204 |
= 5. How to change/update/translate any strings from the plugin? =
|
205 |
|
@@ -209,27 +210,27 @@ Refer steps from [here](http://www.icegram.com/documentation/es-how-to-change-up
|
|
209 |
|
210 |
Refer [here](http://www.icegram.com/documentation/es-how-to-add-unsubscribe-link-in-emails/).
|
211 |
|
212 |
-
= 7.
|
213 |
-
|
214 |
-
Refer [here](http://www.icegram.com/documentation/es-what-are-static-templates-and-dynamic-templates/).
|
215 |
-
|
216 |
-
= 8. How to Compose and Send Newsletter Emails =
|
217 |
|
218 |
Refer [here](http://www.icegram.com/documentation/es-how-to-compose-and-send-static-newsletter-mails/).
|
219 |
|
220 |
-
=
|
221 |
|
222 |
Refer [here](http://www.icegram.com/documentation/es-how-to-configure-and-send-notification-emails-to-subscribers-when-new-posts-are-published/).
|
223 |
|
224 |
-
=
|
|
|
|
|
|
|
|
|
225 |
|
226 |
Refer [here](http://www.icegram.com/documentation/es-how-to-send-a-sample-new-post-notification-email-to-testgroup-myself/).
|
227 |
|
228 |
-
= 11. How to check
|
229 |
|
230 |
Refer [here](http://www.icegram.com/documentation/es-how-to-check-sent-emails/).
|
231 |
|
232 |
-
= 12. How to Add/Update Existing Subscribers Group? =
|
233 |
|
234 |
Refer [here](http://www.icegram.com/documentation/es-how-to-add-update-existing-subscribers-group/).
|
235 |
|
@@ -245,45 +246,41 @@ Refer [here](http://www.icegram.com/documentation/es-how-to-show-subscribe-form-
|
|
245 |
|
246 |
Refer [here](http://www.icegram.com/documentation/es-how-to-use-rainmakers-form-in-email-subscribers/).
|
247 |
|
248 |
-
= 16. How to
|
249 |
|
250 |
-
Refer [here](http://www.icegram.com/documentation/es-how-to-
|
251 |
-
|
252 |
-
= 17. How to Schedule Cron Emails/auto emails for Email Subscribers in cPanel? =
|
253 |
-
|
254 |
-
Refer [here](http://www.icegram.com/documentation/es-how-to-schedule-cron-emails-in-cpanel/).
|
255 |
|
256 |
-
=
|
257 |
|
258 |
-
Refer [here](http://www.icegram.com/documentation/es-how-to-
|
259 |
|
260 |
-
=
|
261 |
|
262 |
-
Refer [here](http://www.icegram.com/documentation/es-
|
263 |
|
264 |
-
=
|
265 |
|
266 |
-
Refer [here](http://www.icegram.com/documentation/es-
|
267 |
|
268 |
-
=
|
269 |
|
270 |
-
|
271 |
|
272 |
-
=
|
273 |
|
274 |
-
[
|
275 |
|
276 |
-
=
|
277 |
|
278 |
-
[
|
279 |
|
280 |
-
=
|
281 |
|
282 |
-
[
|
283 |
|
284 |
-
=
|
285 |
|
286 |
-
[
|
287 |
|
288 |
== Screenshots ==
|
289 |
|
@@ -311,6 +308,15 @@ Use [Email Subscribers - Group Selector](https://wordpress.org/plugins/email-sub
|
|
311 |
|
312 |
== Changelog ==
|
313 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
314 |
= 3.3 (13.06.2017) =
|
315 |
|
316 |
* New: Merged Roles and Cron menu into Settings
|
@@ -563,6 +569,15 @@ For the changelog of earlier versions, please refer to the separate [changelog.t
|
|
563 |
|
564 |
== Upgrade Notice ==
|
565 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
566 |
= 3.3 (13.06.2017) =
|
567 |
|
568 |
* New: Merged Roles and Cron menu into Settings
|
5 |
Tags: email marketing, email newsletter form, email signup, email widget, newsletter, newsletter signup, subscribe, subscription form, bulk emails, signup form, list builder, lead generation
|
6 |
Requires at least: 3.4
|
7 |
Tested up to: 4.8
|
8 |
+
Stable tag: 3.3.1
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.htmlss
|
11 |
|
48 |
* Support **localization or internationalization**.
|
49 |
* **Include/exclude categories** while sending a newsletter.
|
50 |
* **Ability to control user access** (Roles and Capabilities).
|
51 |
+
* Easy **Integration with free plugins [Icegram](https://wordpress.org/plugins/icegram/) and [Rainmaker](https://wordpress.org/plugins/icegram-rainmaker/)**
|
52 |
|
53 |
> **Best Email Subscriber Plugin!!** -
|
54 |
> I have tried quite a few subscribe by email type plugins and this by far blows them all out of the water. Beautiful emails and and great backend design for the admin. This works so nice and works well with SMTP solutions
|
64 |
|
65 |
* **Widget option**
|
66 |
|
67 |
+
Go to WordPress Dashboard -> Appearance -> Widgets. Drag and drop the Email Subscribers widget to your desired location.
|
68 |
|
69 |
* **Add directly in the theme**
|
70 |
|
71 |
+
Add following line of PHP code directly in your theme :
|
72 |
+
`es_subbox( $namefield = "YES", $desc = "", $group = "" );`
|
73 |
|
74 |
> **Great Plugin** -
|
75 |
> Works as expected. Great way to build an email list on your own site. It allows my clients to manage their own lists via login. I love the automatic notifications to subscribers when new posts are created. Looking forward to a “premium” paid version that includes email templates.
|
76 |
> - [jj9617](https://wordpress.org/support/topic/great-plugin-10646/)
|
77 |
|
78 |
+
### Send Automated Emails as soon as a New Blog Post is Published
|
79 |
|
80 |
As soon as you publish a new blogpost, email subscribers will automatically send the people on your list a notification, informing them about the new blogpost.
|
81 |
|
194 |
|
195 |
Refer [here](http://www.icegram.com/documentation/es-how-to-add-subscription-box-to-website/).
|
196 |
|
197 |
+
= 3. How to modify the existing emails like emails like Confirmation, Welcome, Admin emails and Cron Settings and Assign User Roles? =
|
198 |
|
199 |
+
Refer [here](http://www.icegram.com/documentation/es-general-plugin-settings/).
|
200 |
|
201 |
+
= 4. How to Import and export email address? =
|
202 |
|
203 |
+
Refer [here](http://www.icegram.com/documentation/es-how-to-import-or-export-email-address-to-subscriber-list/).
|
204 |
|
205 |
= 5. How to change/update/translate any strings from the plugin? =
|
206 |
|
210 |
|
211 |
Refer [here](http://www.icegram.com/documentation/es-how-to-add-unsubscribe-link-in-emails/).
|
212 |
|
213 |
+
= 7. How to Compose and Send Newsletter Emails =
|
|
|
|
|
|
|
|
|
214 |
|
215 |
Refer [here](http://www.icegram.com/documentation/es-how-to-compose-and-send-static-newsletter-mails/).
|
216 |
|
217 |
+
= 8. How to Configure and Send Post Notification emails to subscribers when new posts are published? =
|
218 |
|
219 |
Refer [here](http://www.icegram.com/documentation/es-how-to-configure-and-send-notification-emails-to-subscribers-when-new-posts-are-published/).
|
220 |
|
221 |
+
= 9. What are the available keywords in the Post Notifications? =
|
222 |
+
|
223 |
+
Refer [here](http://www.icegram.com/documentation/es-what-are-the-available-keywords-in-the-post-notifications/).
|
224 |
+
|
225 |
+
= 10. How to send a sample new post notification email to testgroup/myself? =
|
226 |
|
227 |
Refer [here](http://www.icegram.com/documentation/es-how-to-send-a-sample-new-post-notification-email-to-testgroup-myself/).
|
228 |
|
229 |
+
= 11. How to check sent emails reports? =
|
230 |
|
231 |
Refer [here](http://www.icegram.com/documentation/es-how-to-check-sent-emails/).
|
232 |
|
233 |
+
= 12. How to Add/Update Existing Subscribers Group & Status? =
|
234 |
|
235 |
Refer [here](http://www.icegram.com/documentation/es-how-to-add-update-existing-subscribers-group/).
|
236 |
|
246 |
|
247 |
Refer [here](http://www.icegram.com/documentation/es-how-to-use-rainmakers-form-in-email-subscribers/).
|
248 |
|
249 |
+
= 16. How to Redirect Subscribers to a new page/url after successful sign up? =
|
250 |
|
251 |
+
Refer [here](http://www.icegram.com/documentation/es-how-to-redirect-subscribers-to-a-new-page-url-after-successful-sign-up/).
|
|
|
|
|
|
|
|
|
252 |
|
253 |
+
= 17. How to add captcha in Subscribe form of Email Subscribers? =
|
254 |
|
255 |
+
Refer [here](http://www.icegram.com/documentation/es-how-to-add-captcha-in-subscribe-form-of-email-subscribers/).
|
256 |
|
257 |
+
= 18. How to Schedule Cron Emails/auto emails? =
|
258 |
|
259 |
+
Refer [here](http://www.icegram.com/documentation/es-how-to-schedule-cron-emails/).
|
260 |
|
261 |
+
= 17. How to Schedule Cron Emails in cPanel? =
|
262 |
|
263 |
+
Refer [here](http://www.icegram.com/documentation/es-how-to-schedule-cron-emails-in-cpanel/).
|
264 |
|
265 |
+
= 18. How to Schedule Cron Emails in Parallels Plesk? =
|
266 |
|
267 |
+
Refer [here](http://www.icegram.com/documentation/es-how-to-schedule-cron-emails-in-parallels-plesk/).
|
268 |
|
269 |
+
= 19. What to do if Hosting doesn’t support Cron Jobs? =
|
270 |
|
271 |
+
Refer [here](http://www.icegram.com/documentation/es-what-to-do-if-hosting-doesnt-support-cron-jobs/).
|
272 |
|
273 |
+
= 20. CSS Help =
|
274 |
|
275 |
+
Refer [here](http://www.icegram.com/documentation/es-css-help/).
|
276 |
|
277 |
+
= 21. Email Subscribers FAQ =
|
278 |
|
279 |
+
Refer [here](http://www.icegram.com/documentation/es-faq/).
|
280 |
|
281 |
+
= 22. How to add group selection in front end subscription box =
|
282 |
|
283 |
+
Use our free plugin [Email Subscribers - Group Selector](https://wordpress.org/plugins/email-subscribers-advanced-form/).
|
284 |
|
285 |
== Screenshots ==
|
286 |
|
308 |
|
309 |
== Changelog ==
|
310 |
|
311 |
+
= 3.3.1 (19.06.2017) =
|
312 |
+
|
313 |
+
* New: Admin can now include user subscribed group name in the Welcome Email (Email Subscribers v3.3.1+)
|
314 |
+
* Update: Documentation links
|
315 |
+
* Update: Translation for French (fr_FR) language updated (Thanks to Serge)
|
316 |
+
* Update: Translation for Lithuanian (lt_LT) language updated (Thanks to Andrius)
|
317 |
+
* Update: Translation for German (de_DE) language updated (Thanks to Markus Buschmann)
|
318 |
+
* Update: POT file
|
319 |
+
|
320 |
= 3.3 (13.06.2017) =
|
321 |
|
322 |
* New: Merged Roles and Cron menu into Settings
|
569 |
|
570 |
== Upgrade Notice ==
|
571 |
|
572 |
+
= 3.3.1 (19.06.2017) =
|
573 |
+
|
574 |
+
* New: Admin can now include user subscribed group name in the Welcome Email (Email Subscribers v3.3.1+)
|
575 |
+
* Update: Documentation links
|
576 |
+
* Update: Translation for French (fr_FR) language updated (Thanks to Serge)
|
577 |
+
* Update: Translation for Lithuanian (lt_LT) language updated (Thanks to Andrius)
|
578 |
+
* Update: Translation for German (de_DE) language updated (Thanks to Markus Buschmann)
|
579 |
+
* Update: POT file
|
580 |
+
|
581 |
= 3.3 (13.06.2017) =
|
582 |
|
583 |
* New: Merged Roles and Cron menu into Settings
|
settings/settings-edit.php
CHANGED
@@ -152,7 +152,7 @@ if ( ! class_exists( 'ES_Settings' ) ) {
|
|
152 |
<tr class="es-admin active-settings">
|
153 |
<th scope="row">
|
154 |
<label for="elp"><?php echo __( 'Admin Email Content when a new subscriber signs up', ES_TDOMAIN ); ?>
|
155 |
-
<p class="description"><?php echo __( 'Enter the email content for the admin email which will be sent whenever a new email is added and confirmed. (Keyword: ###NAME###, ###EMAIL###)', ES_TDOMAIN ); ?></p></label>
|
156 |
</th>
|
157 |
<td><textarea size="100" id="es_c_adminmailcontant" rows="10" cols="58" name="es_c_adminmailcontant"><?php echo esc_html(stripslashes($this->form['ig_es_admin_new_sub_content'])); ?></textarea></td>
|
158 |
</tr>
|
152 |
<tr class="es-admin active-settings">
|
153 |
<th scope="row">
|
154 |
<label for="elp"><?php echo __( 'Admin Email Content when a new subscriber signs up', ES_TDOMAIN ); ?>
|
155 |
+
<p class="description"><?php echo __( 'Enter the email content for the admin email which will be sent whenever a new email is added and confirmed. (Keyword: ###NAME###, ###EMAIL###, ###GROUP###)', ES_TDOMAIN ); ?></p></label>
|
156 |
</th>
|
157 |
<td><textarea size="100" id="es_c_adminmailcontant" rows="10" cols="58" name="es_c_adminmailcontant"><?php echo esc_html(stripslashes($this->form['ig_es_admin_new_sub_content'])); ?></textarea></td>
|
158 |
</tr>
|