Version Description
(17.04.2018) =
- Fix: Some users getting 'Invalid email address' for valid email address during form submission
- Fix: Empty email field not showing validation errors during form submission
- Update: Make email field required in the subscribe form
- Update: Remove extra error notices
- Update: POT file
- Localization: Translation for German Deutsch (de_DE) language updated (Thanks to Markus Buschmann)
- Localization: Made all translation files up-to-date with latest POT file
Download this release
Release Info
Developer | storeapps |
Plugin | Email Subscribers & Newsletters |
Version | 3.4.12 |
Comparing to | |
See all releases |
Code changes from version 3.4.11 to 3.4.12
- changelog.txt +11 -1
- classes/es-loadwidget.php +1 -1
- classes/es-register.php +5 -13
- email-subscribers.php +1 -1
- help/help.php +3 -0
- job/es-subscribe.php +34 -37
- languages/email-subscribers-ca.mo +0 -0
- languages/email-subscribers-ca.po +1687 -1721
- languages/email-subscribers-cs_CZ.mo +0 -0
- languages/email-subscribers-cs_CZ.po +1442 -1476
- languages/email-subscribers-de_DE.mo +0 -0
- languages/email-subscribers-de_DE.po +1730 -1752
- languages/email-subscribers-es_ES.mo +0 -0
- languages/email-subscribers-es_ES.po +1655 -1689
- languages/email-subscribers-fr_FR.mo +0 -0
- languages/email-subscribers-fr_FR.po +1601 -1635
- languages/email-subscribers-hu_HU.mo +0 -0
- languages/email-subscribers-hu_HU.po +1443 -1477
- languages/email-subscribers-it_IT.mo +0 -0
- languages/email-subscribers-it_IT.po +1667 -1701
- languages/email-subscribers-lt_LT.mo +0 -0
- languages/email-subscribers-lt_LT.po +241 -378
changelog.txt
CHANGED
@@ -4,7 +4,17 @@ Author : Icegram
|
|
4 |
Author URI : https://www.icegram.com/
|
5 |
License : GPLv3
|
6 |
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
|
9 |
* Fix: Special characters in the post title showing as html entities when using {{POSTTITLE}} keyword [due to `get_the_title($post)`]
|
10 |
* Fix: 'Oops.. Unexpected error occurred 0.' in Email Subscribers - Group Selector form when subscriber status is unconfirmed or unsubscribed
|
4 |
Author URI : https://www.icegram.com/
|
5 |
License : GPLv3
|
6 |
|
7 |
+
***********************************************************Version 3.4.12************************************************************
|
8 |
+
|
9 |
+
* Fix: Some users getting 'Invalid email address' for valid email address during form submission
|
10 |
+
* Fix: Empty email field not showing validation errors during form submission
|
11 |
+
* Update: Make email field required in the subscribe form
|
12 |
+
* Update: Remove extra error notices
|
13 |
+
* Update: POT file
|
14 |
+
* Localization: Translation for German Deutsch (de_DE) language updated (Thanks to Markus Buschmann)
|
15 |
+
* Localization: Made all translation files up-to-date with latest POT file
|
16 |
+
|
17 |
+
***********************************************************Version 3.4.11************************************************************
|
18 |
|
19 |
* Fix: Special characters in the post title showing as html entities when using {{POSTTITLE}} keyword [due to `get_the_title($post)`]
|
20 |
* Fix: 'Oops.. Unexpected error occurred 0.' in Email Subscribers - Group Selector form when subscriber status is unconfirmed or unsubscribed
|
classes/es-loadwidget.php
CHANGED
@@ -32,7 +32,7 @@ class es_cls_widget {
|
|
32 |
}
|
33 |
$es .= '<div class="es_lablebox"><label class="es_shortcode_form_email">'.__( 'Email *', ES_TDOMAIN ).'</label></div>';
|
34 |
$es .= '<div class="es_textbox">';
|
35 |
-
$es .= '<input type="email" id="es_txt_email_pg" class="es_textbox_class" name="es_txt_email_pg" maxlength="40">';
|
36 |
$es .= '</div>';
|
37 |
$es .= '<div class="es_button">';
|
38 |
$es .= '<input type="submit" id="es_txt_button_pg" class="es_textbox_button es_submit_button" name="es_txt_button_pg" value="'.__( 'Subscribe', ES_TDOMAIN ).'">';
|
32 |
}
|
33 |
$es .= '<div class="es_lablebox"><label class="es_shortcode_form_email">'.__( 'Email *', ES_TDOMAIN ).'</label></div>';
|
34 |
$es .= '<div class="es_textbox">';
|
35 |
+
$es .= '<input type="email" id="es_txt_email_pg" class="es_textbox_class" name="es_txt_email_pg" maxlength="40" required>';
|
36 |
$es .= '</div>';
|
37 |
$es .= '<div class="es_button">';
|
38 |
$es .= '<input type="submit" id="es_txt_button_pg" class="es_textbox_button es_submit_button" name="es_txt_button_pg" value="'.__( 'Subscribe', ES_TDOMAIN ).'">';
|
classes/es-register.php
CHANGED
@@ -256,17 +256,13 @@ class es_cls_registerhook {
|
|
256 |
wp_enqueue_script( 'es-widget' );
|
257 |
$es_select_params = array(
|
258 |
'es_email_notice' => _x( 'Please enter email address', 'widget-enhanced-select', ES_TDOMAIN ),
|
259 |
-
'es_incorrect_email' => _x( 'Please provide a valid email address', 'widget-enhanced-select', ES_TDOMAIN ),
|
260 |
-
'es_load_more' => _x( 'loading...', 'widget-enhanced-select', ES_TDOMAIN ),
|
261 |
-
'es_ajax_error' => _x( 'Cannot create XMLHTTP instance', 'widget-enhanced-select', ES_TDOMAIN ),
|
262 |
'es_success_message' => _x( 'Successfully Subscribed.', 'widget-enhanced-select', ES_TDOMAIN ),
|
263 |
-
'es_success_notice' => _x( 'Your subscription was successful! Kindly check your mailbox and confirm your subscription. If you
|
264 |
'es_email_exists' => _x( 'Email Address already exists!', 'widget-enhanced-select', ES_TDOMAIN ),
|
265 |
'es_error' => _x( 'Oops.. Unexpected error occurred.', 'widget-enhanced-select', ES_TDOMAIN ),
|
266 |
'es_invalid_email' => _x( 'Invalid email address', 'widget-enhanced-select', ES_TDOMAIN ),
|
267 |
'es_try_later' => _x( 'Please try after some time', 'widget-enhanced-select', ES_TDOMAIN ),
|
268 |
-
'
|
269 |
-
'es_ajax_url' => admin_url( 'admin-ajax.php' )
|
270 |
);
|
271 |
wp_localize_script( 'es-widget', 'es_widget_notices', $es_select_params );
|
272 |
|
@@ -274,17 +270,13 @@ class es_cls_registerhook {
|
|
274 |
wp_enqueue_script( 'es-widget-page' );
|
275 |
$es_select_params = array(
|
276 |
'es_email_notice' => _x( 'Please enter email address', 'widget-page-enhanced-select', ES_TDOMAIN ),
|
277 |
-
'es_incorrect_email' => _x( 'Please provide a valid email address', 'widget-page-enhanced-select', ES_TDOMAIN ),
|
278 |
-
'es_load_more' => _x( 'loading...', 'widget-page-enhanced-select', ES_TDOMAIN ),
|
279 |
-
'es_ajax_error' => _x( 'Cannot create XMLHTTP instance', 'widget-page-enhanced-select', ES_TDOMAIN ),
|
280 |
'es_success_message' => _x( 'Successfully Subscribed.', 'widget-page-enhanced-select', ES_TDOMAIN ),
|
281 |
-
'es_success_notice' => _x( 'Your subscription was successful! Kindly check your mailbox and confirm your subscription. If you
|
282 |
'es_email_exists' => _x( 'Email Address already exists!', 'widget-page-enhanced-select', ES_TDOMAIN ),
|
283 |
'es_error' => _x( 'Oops.. Unexpected error occurred.', 'widget-page-enhanced-select', ES_TDOMAIN ),
|
284 |
'es_invalid_email' => _x( 'Invalid email address', 'widget-page-enhanced-select', ES_TDOMAIN ),
|
285 |
'es_try_later' => _x( 'Please try after some time', 'widget-page-enhanced-select', ES_TDOMAIN ),
|
286 |
-
'
|
287 |
-
'es_ajax_url' => admin_url( 'admin-ajax.php' )
|
288 |
);
|
289 |
wp_localize_script( 'es-widget-page', 'es_widget_page_notices', $es_select_params );
|
290 |
|
@@ -1065,7 +1057,7 @@ class es_widget_register extends WP_Widget {
|
|
1065 |
<?php } ?>
|
1066 |
<div class="es_lablebox"><label class="es_widget_form_email"><?php echo __( 'Email *', ES_TDOMAIN ); ?></label></div>
|
1067 |
<div class="es_textbox">
|
1068 |
-
<input type="email" id="es_txt_email" class="es_textbox_class" name="es_txt_email" value="" maxlength="40">
|
1069 |
</div>
|
1070 |
<div class="es_button">
|
1071 |
<input type="submit" id="es_txt_button" class="es_textbox_button es_submit_button" name="es_txt_button" value="<?php echo __( 'Subscribe', ES_TDOMAIN ); ?>">
|
256 |
wp_enqueue_script( 'es-widget' );
|
257 |
$es_select_params = array(
|
258 |
'es_email_notice' => _x( 'Please enter email address', 'widget-enhanced-select', ES_TDOMAIN ),
|
|
|
|
|
|
|
259 |
'es_success_message' => _x( 'Successfully Subscribed.', 'widget-enhanced-select', ES_TDOMAIN ),
|
260 |
+
'es_success_notice' => _x( 'Your subscription was successful! Kindly check your mailbox and confirm your subscription. If you don\'t see the email within a few minutes, check the spam/junk folder.', 'widget-enhanced-select', ES_TDOMAIN ),
|
261 |
'es_email_exists' => _x( 'Email Address already exists!', 'widget-enhanced-select', ES_TDOMAIN ),
|
262 |
'es_error' => _x( 'Oops.. Unexpected error occurred.', 'widget-enhanced-select', ES_TDOMAIN ),
|
263 |
'es_invalid_email' => _x( 'Invalid email address', 'widget-enhanced-select', ES_TDOMAIN ),
|
264 |
'es_try_later' => _x( 'Please try after some time', 'widget-enhanced-select', ES_TDOMAIN ),
|
265 |
+
'es_ajax_url' => admin_url( 'admin-ajax.php' ),
|
|
|
266 |
);
|
267 |
wp_localize_script( 'es-widget', 'es_widget_notices', $es_select_params );
|
268 |
|
270 |
wp_enqueue_script( 'es-widget-page' );
|
271 |
$es_select_params = array(
|
272 |
'es_email_notice' => _x( 'Please enter email address', 'widget-page-enhanced-select', ES_TDOMAIN ),
|
|
|
|
|
|
|
273 |
'es_success_message' => _x( 'Successfully Subscribed.', 'widget-page-enhanced-select', ES_TDOMAIN ),
|
274 |
+
'es_success_notice' => _x( 'Your subscription was successful! Kindly check your mailbox and confirm your subscription. If you don\'t see the email within a few minutes, check the spam/junk folder.', 'widget-page-enhanced-select', ES_TDOMAIN ),
|
275 |
'es_email_exists' => _x( 'Email Address already exists!', 'widget-page-enhanced-select', ES_TDOMAIN ),
|
276 |
'es_error' => _x( 'Oops.. Unexpected error occurred.', 'widget-page-enhanced-select', ES_TDOMAIN ),
|
277 |
'es_invalid_email' => _x( 'Invalid email address', 'widget-page-enhanced-select', ES_TDOMAIN ),
|
278 |
'es_try_later' => _x( 'Please try after some time', 'widget-page-enhanced-select', ES_TDOMAIN ),
|
279 |
+
'es_ajax_url' => admin_url( 'admin-ajax.php' ),
|
|
|
280 |
);
|
281 |
wp_localize_script( 'es-widget-page', 'es_widget_page_notices', $es_select_params );
|
282 |
|
1057 |
<?php } ?>
|
1058 |
<div class="es_lablebox"><label class="es_widget_form_email"><?php echo __( 'Email *', ES_TDOMAIN ); ?></label></div>
|
1059 |
<div class="es_textbox">
|
1060 |
+
<input type="email" id="es_txt_email" class="es_textbox_class" name="es_txt_email" value="" maxlength="40" required>
|
1061 |
</div>
|
1062 |
<div class="es_button">
|
1063 |
<input type="submit" id="es_txt_button" class="es_textbox_button es_submit_button" name="es_txt_button" value="<?php echo __( 'Subscribe', ES_TDOMAIN ); ?>">
|
email-subscribers.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Email Subscribers & Newsletters
|
4 |
* Plugin URI: https://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.4.
|
7 |
* Author: Icegram
|
8 |
* Author URI: https://www.icegram.com/
|
9 |
* Requires at least: 3.4
|
3 |
* Plugin Name: Email Subscribers & Newsletters
|
4 |
* Plugin URI: https://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.4.12
|
7 |
* Author: Icegram
|
8 |
* Author URI: https://www.icegram.com/
|
9 |
* Requires at least: 3.4
|
help/help.php
CHANGED
@@ -323,6 +323,9 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
323 |
<li class="es_faq">
|
324 |
<?php echo sprintf(__( 'Modify %s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-general-plugin-settings/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'default text, email contents', ES_TDOMAIN ) . '</a>' . __( ' (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User Roles', ES_TDOMAIN ) ); ?>
|
325 |
</li>
|
|
|
|
|
|
|
326 |
<li class="es_faq">
|
327 |
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-how-to-import-or-export-email-addresses/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'How to Import or Export Email Addresses?', ES_TDOMAIN ) . '</a>' ); ?>
|
328 |
</li>
|
323 |
<li class="es_faq">
|
324 |
<?php echo sprintf(__( 'Modify %s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-general-plugin-settings/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'default text, email contents', ES_TDOMAIN ) . '</a>' . __( ' (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User Roles', ES_TDOMAIN ) ); ?>
|
325 |
</li>
|
326 |
+
<li class="es_faq">
|
327 |
+
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-how-does-sync-work/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'How does Sync work?', ES_TDOMAIN ) . '</a>' ); ?>
|
328 |
+
</li>
|
329 |
<li class="es_faq">
|
330 |
<?php echo sprintf(__( '%s', ES_TDOMAIN ), '<a href="https://www.icegram.com/documentation/es-how-to-import-or-export-email-addresses/?utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page" target="_blank">' . __( 'How to Import or Export Email Addresses?', ES_TDOMAIN ) . '</a>' ); ?>
|
331 |
</li>
|
job/es-subscribe.php
CHANGED
@@ -16,7 +16,7 @@ class es_cls_job_subscribe {
|
|
16 |
|
17 |
// check_admin_referer( 'es-subscribe', 'es-subscribe' );
|
18 |
|
19 |
-
$es_response = array(
|
20 |
|
21 |
if ( ( isset( $_REQUEST['es'] ) ) && ( $_REQUEST['es'] == 'subscribe' ) && ( isset( $_REQUEST['action'] ) ) && ( $_REQUEST['action'] == 'es_add_subscriber' ) && !empty( $_REQUEST['esfpx_es-subscribe'] ) ) {
|
22 |
$es_subscriber_name = '';
|
@@ -49,54 +49,51 @@ class es_cls_job_subscribe {
|
|
49 |
$es_subscriber_group = 'Public';
|
50 |
}
|
51 |
|
52 |
-
$es_response = array();
|
53 |
if ( $es_subscriber_email != '' ) {
|
54 |
if ( !filter_var( $es_subscriber_email, FILTER_VALIDATE_EMAIL ) ) {
|
55 |
$es_response['error'] = 'invalid-email';
|
56 |
} else {
|
57 |
-
$
|
58 |
-
|
59 |
-
if ( $same_domain !== false && $same_domain < 5 ) {
|
60 |
-
$action = '';
|
61 |
-
global $wpdb;
|
62 |
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
|
68 |
-
|
69 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
if( $es_optintype == "Double Opt In" ) {
|
71 |
-
$
|
|
|
72 |
} else {
|
73 |
-
$
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
} else {
|
84 |
-
$es_c_usermailoption = get_option( 'ig_es_welcomeemail' );
|
85 |
-
if ( $es_c_usermailoption == "YES" ) {
|
86 |
-
es_cls_sendmail::es_sendmail("welcome", $template = 0, $subscribers, "welcome", 0);
|
87 |
-
}
|
88 |
-
$es_response['success'] = 'subscribed-successfully';
|
89 |
-
}
|
90 |
-
} elseif( $action == "ext" ) {
|
91 |
-
$es_response['success'] = 'already-exist';
|
92 |
-
} elseif( $action == "invalid" ) {
|
93 |
-
$es_response['error'] = 'invalid-email';
|
94 |
-
}
|
95 |
-
} else {
|
96 |
-
$es_response['error'] = 'unexpected-error';
|
97 |
}
|
98 |
}
|
|
|
|
|
99 |
}
|
|
|
|
|
100 |
}
|
101 |
|
102 |
echo json_encode($es_response);
|
16 |
|
17 |
// check_admin_referer( 'es-subscribe', 'es-subscribe' );
|
18 |
|
19 |
+
$es_response = array();
|
20 |
|
21 |
if ( ( isset( $_REQUEST['es'] ) ) && ( $_REQUEST['es'] == 'subscribe' ) && ( isset( $_REQUEST['action'] ) ) && ( $_REQUEST['action'] == 'es_add_subscriber' ) && !empty( $_REQUEST['esfpx_es-subscribe'] ) ) {
|
22 |
$es_subscriber_name = '';
|
49 |
$es_subscriber_group = 'Public';
|
50 |
}
|
51 |
|
|
|
52 |
if ( $es_subscriber_email != '' ) {
|
53 |
if ( !filter_var( $es_subscriber_email, FILTER_VALIDATE_EMAIL ) ) {
|
54 |
$es_response['error'] = 'invalid-email';
|
55 |
} else {
|
56 |
+
$action = '';
|
57 |
+
global $wpdb;
|
|
|
|
|
|
|
58 |
|
59 |
+
$subscriber_form['es_email_name'] = $es_subscriber_name;
|
60 |
+
$subscriber_form['es_email_mail'] = $es_subscriber_email;
|
61 |
+
$subscriber_form['es_email_group'] = $es_subscriber_group;
|
62 |
+
$subscriber_form['es_nonce'] = $es_nonce;
|
63 |
|
64 |
+
$es_optintype = get_option( 'ig_es_optintype' );
|
65 |
|
66 |
+
if( $es_optintype == "Double Opt In" ) {
|
67 |
+
$subscriber_form['es_email_status'] = "Unconfirmed";
|
68 |
+
} else {
|
69 |
+
$subscriber_form['es_email_status'] = "Single Opt In";
|
70 |
+
}
|
71 |
+
|
72 |
+
$action = es_cls_dbquery::es_view_subscriber_widget($subscriber_form);
|
73 |
+
if( $action == "sus" ) {
|
74 |
+
$subscribers = array();
|
75 |
+
$subscribers = es_cls_dbquery::es_view_subscriber_one($es_subscriber_email,$es_subscriber_group);
|
76 |
if( $es_optintype == "Double Opt In" ) {
|
77 |
+
es_cls_sendmail::es_sendmail("optin", $template = 0, $subscribers, "optin", 0);
|
78 |
+
$es_response['success'] = 'subscribed-pending-doubleoptin';
|
79 |
} else {
|
80 |
+
$es_c_usermailoption = get_option( 'ig_es_welcomeemail' );
|
81 |
+
if ( $es_c_usermailoption == "YES" ) {
|
82 |
+
es_cls_sendmail::es_sendmail("welcome", $template = 0, $subscribers, "welcome", 0);
|
83 |
+
}
|
84 |
+
$es_response['success'] = 'subscribed-successfully';
|
85 |
+
}
|
86 |
+
} elseif( $action == "ext" ) {
|
87 |
+
$es_response['success'] = 'already-exist';
|
88 |
+
} elseif( $action == "invalid" ) {
|
89 |
+
$es_response['error'] = 'invalid-email';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
}
|
91 |
}
|
92 |
+
} else {
|
93 |
+
$es_response['error'] = 'no-email-address';
|
94 |
}
|
95 |
+
} else {
|
96 |
+
$es_response['error'] = 'unexpected-error';
|
97 |
}
|
98 |
|
99 |
echo json_encode($es_response);
|
languages/email-subscribers-ca.mo
CHANGED
Binary file
|
languages/email-subscribers-ca.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.4.
|
4 |
"Report-Msgid-Bugs-To: https://www.storeapps.org/support/contact-us/\n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Catalan\n"
|
@@ -22,32 +22,51 @@ msgstr ""
|
|
22 |
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
23 |
"X-Loco-Target-Locale: ca_ES"
|
24 |
|
25 |
-
#: ../
|
26 |
-
|
|
|
|
|
|
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: ../
|
30 |
-
|
31 |
-
msgid "
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: ../
|
35 |
-
|
36 |
-
msgid "
|
|
|
|
|
|
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: ../
|
40 |
-
|
|
|
|
|
|
|
|
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: ../
|
44 |
msgid ""
|
45 |
-
"
|
46 |
-
"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: ../
|
50 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
msgstr ""
|
52 |
|
53 |
#: ../export/export-email-address.php:50 ../export/export-email-address.php:54
|
@@ -81,2191 +100,2138 @@ msgstr ""
|
|
81 |
msgid "Use HTML editor to create newsletters and post notifications."
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: ../help/help.php:
|
|
|
|
|
|
|
|
|
85 |
msgid "Using our <b>free</b> "
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: ../help/help.php:
|
89 |
msgid ""
|
90 |
"Using Email Subscribers you can achieve this easily with our <b>free</b> "
|
91 |
"plugin "
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: ../help/help.php:
|
95 |
msgid "Email subscribers easily integrates with another <b>free</b> plugin "
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: ../
|
99 |
-
msgctxt "view-subscriber-enhanced-select"
|
100 |
-
msgid ""
|
101 |
-
"Do you want to resend confirmation email? Also please note, this will update "
|
102 |
-
"subscriber current status to 'Unconfirmed'."
|
103 |
-
msgstr ""
|
104 |
-
|
105 |
-
#: ../classes/es-register.php:215
|
106 |
-
msgctxt "notification-enhanced-select"
|
107 |
msgid "Please select notification mail subject. Use templates menu to create new."
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: ../
|
111 |
-
|
112 |
-
msgid ""
|
113 |
-
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
114 |
-
"subscription. If you can't see the email within a few minutes, check the "
|
115 |
-
"spam folder."
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: ../
|
119 |
-
msgctxt "widget-page-enhanced-select"
|
120 |
msgid ""
|
121 |
-
"
|
122 |
-
"
|
123 |
-
"spam folder."
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: ../
|
127 |
-
msgid ""
|
128 |
-
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
129 |
-
"subscribers list?</b> Come check our Pro plan."
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: ../
|
133 |
-
|
|
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: ../
|
137 |
-
msgid "
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: ../classes/es-
|
141 |
-
|
142 |
-
|
143 |
-
msgstr ""
|
144 |
|
145 |
-
#: ../
|
146 |
-
msgid "
|
147 |
-
msgstr "
|
148 |
|
149 |
-
#: ../
|
150 |
-
msgid "
|
151 |
-
msgstr "
|
152 |
|
153 |
-
#: ../
|
154 |
-
msgid "
|
155 |
-
msgstr "
|
156 |
|
157 |
-
#: ../
|
158 |
-
msgid "
|
159 |
-
msgstr "
|
160 |
|
161 |
-
#: ../
|
162 |
-
msgid "
|
163 |
-
msgstr "
|
164 |
|
165 |
-
#: ../
|
166 |
-
|
167 |
-
|
168 |
-
#: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
|
169 |
-
#: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
170 |
-
#: export.php:51 ../subscribers/view-subscriber-add.php:118 ../subscribers/view-
|
171 |
-
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
172 |
-
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
173 |
-
msgid "Help"
|
174 |
-
msgstr "Ajuda"
|
175 |
|
176 |
-
#: ../
|
177 |
-
msgid "
|
178 |
-
msgstr "
|
179 |
|
180 |
-
#: ../
|
181 |
-
|
182 |
-
|
183 |
-
#: subscriber-add.php:166 ../subscribers/view-subscriber-edit.php:162 ..
|
184 |
-
#: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
|
185 |
-
#: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
|
186 |
-
msgid "Select"
|
187 |
-
msgstr "seleccionar"
|
188 |
|
189 |
-
#: ../
|
190 |
-
|
191 |
-
|
192 |
-
msgstr "Selecciona notificació assumpte del correu"
|
193 |
|
194 |
-
#: ../
|
195 |
-
|
196 |
-
|
197 |
-
msgstr "Seleccioneu categoria de correu"
|
198 |
|
199 |
-
#: ../
|
200 |
-
#:
|
201 |
-
msgid "
|
202 |
-
msgstr "
|
203 |
|
204 |
-
#: ../
|
205 |
-
|
206 |
-
|
207 |
-
msgstr "Deseleccionar-ho tot"
|
208 |
|
209 |
-
#: ../
|
210 |
-
#:
|
211 |
-
msgid "
|
212 |
-
msgstr "
|
213 |
|
214 |
-
#: ../
|
215 |
-
#:
|
216 |
-
msgid "
|
217 |
-
msgstr "
|
218 |
|
219 |
-
#: ../
|
220 |
-
#:
|
221 |
-
msgid "
|
222 |
-
msgstr "
|
223 |
|
224 |
-
#: ../
|
225 |
-
#:
|
226 |
-
msgid "
|
227 |
-
msgstr "
|
228 |
|
229 |
-
#: ../
|
230 |
-
#:
|
231 |
-
msgid "
|
232 |
-
msgstr "
|
233 |
|
234 |
-
#: ../
|
235 |
-
#:
|
236 |
-
msgid "
|
237 |
-
msgstr "
|
238 |
|
239 |
-
#: ../
|
240 |
-
#:
|
241 |
-
msgid "
|
242 |
-
msgstr "
|
243 |
|
244 |
-
#: ../
|
245 |
-
#:
|
246 |
-
msgid "
|
247 |
-
msgstr "
|
248 |
|
249 |
-
#: ../
|
250 |
-
|
251 |
-
|
252 |
-
msgid "Oops, selected details does not exists."
|
253 |
-
msgstr "Vaja, les dades seleccionades no existeixen."
|
254 |
|
255 |
-
#: ../
|
256 |
-
msgid "
|
257 |
-
msgstr "
|
258 |
|
259 |
-
#: ../
|
260 |
-
|
261 |
-
msgid "
|
262 |
-
msgstr "
|
263 |
|
264 |
-
#: ../
|
265 |
-
|
266 |
-
msgid "
|
267 |
-
msgstr "
|
268 |
|
269 |
-
#: ../
|
270 |
-
|
271 |
-
"
|
272 |
-
"
|
273 |
-
msgstr ""
|
274 |
-
"Utilitzeu aquesta opció per configurar i enviar notificacions per correu "
|
275 |
-
"electrònic als subscriptors quan es publica una nova entrada al bloc."
|
276 |
|
277 |
-
#: ../
|
278 |
-
|
279 |
-
msgid "
|
280 |
-
msgstr "
|
281 |
|
282 |
-
#: ../
|
283 |
-
|
284 |
-
msgid "
|
285 |
-
msgstr "
|
286 |
|
287 |
-
#: ../
|
288 |
-
|
289 |
-
msgid "
|
290 |
-
msgstr "
|
291 |
-
|
292 |
-
#: ../notification/notification-show.php:71 ../notification/notification-show.php:
|
293 |
-
#: 79
|
294 |
-
msgid "Notification Status"
|
295 |
-
msgstr "Estat de la notificació"
|
296 |
|
297 |
-
#: ../
|
298 |
-
|
299 |
-
msgid "
|
300 |
-
msgstr "
|
301 |
|
302 |
-
#: ../
|
303 |
-
|
304 |
-
msgid "
|
305 |
-
msgstr "
|
306 |
|
307 |
-
#: ../
|
308 |
-
|
309 |
-
msgid "
|
310 |
-
msgstr "
|
311 |
|
312 |
-
#: ../
|
313 |
-
|
314 |
-
|
|
|
315 |
|
316 |
-
#: ../
|
317 |
-
|
318 |
-
|
|
|
|
|
|
|
|
|
|
|
319 |
|
320 |
-
#: ../
|
321 |
-
|
322 |
-
|
|
|
323 |
|
324 |
-
#: ../
|
325 |
-
|
326 |
-
|
|
|
327 |
|
328 |
-
#: ../
|
329 |
-
|
330 |
-
msgid "
|
331 |
-
msgstr "
|
332 |
|
333 |
-
|
334 |
-
|
335 |
-
|
|
|
336 |
|
337 |
-
|
338 |
-
|
339 |
-
|
|
|
340 |
|
341 |
-
|
|
|
342 |
msgid ""
|
343 |
-
"
|
344 |
-
"
|
345 |
msgstr ""
|
346 |
-
"
|
347 |
-
"
|
348 |
-
"vegada que es publiquen."
|
349 |
-
|
350 |
-
#. Author of the plugin/theme
|
351 |
-
msgid "Icegram"
|
352 |
-
msgstr "Icegram"
|
353 |
-
|
354 |
-
#: ../email-subscribers.php:95
|
355 |
-
msgctxt "timezone date format"
|
356 |
-
msgid "Y-m-d H:i:s"
|
357 |
-
msgstr "A-m-d H:m:s"
|
358 |
-
|
359 |
-
#: ../settings/settings-edit.php:23
|
360 |
-
msgid "Admin"
|
361 |
-
msgstr "Administrador"
|
362 |
-
|
363 |
-
#: ../settings/settings-edit.php:24
|
364 |
-
msgid "Signup Confirmation"
|
365 |
-
msgstr "Confirmació de registre"
|
366 |
-
|
367 |
-
#: ../settings/settings-edit.php:25
|
368 |
-
msgid "Cron"
|
369 |
-
msgstr "Cron"
|
370 |
|
371 |
-
#: ../
|
372 |
-
|
373 |
-
|
|
|
374 |
|
375 |
-
#: ../
|
376 |
-
|
377 |
-
msgid "
|
378 |
-
msgstr "
|
379 |
|
380 |
-
#: ../
|
381 |
-
|
382 |
-
|
|
|
|
|
|
|
383 |
|
384 |
-
#: ../
|
385 |
-
|
386 |
-
|
|
|
387 |
|
388 |
-
#: ../
|
389 |
-
|
390 |
-
"
|
391 |
-
"
|
392 |
-
msgstr ""
|
393 |
-
"Triar un remitent i una adreça de correu electrònic per a tots els correus "
|
394 |
-
"electrònics per ser enviats des d'aquest plugin."
|
395 |
|
396 |
-
#: ../
|
397 |
-
|
398 |
-
|
|
|
399 |
|
400 |
-
#: ../
|
401 |
-
|
402 |
-
"
|
403 |
-
"
|
404 |
-
msgstr ""
|
405 |
-
"L'opció 1 i 2 és per enviar emails amb el mètode predeterminat de Wordpress "
|
406 |
-
"wp_mail(). L'opció 3 i 4 és per enviar emails amb el mètode PHP ()."
|
407 |
|
408 |
-
#: ../
|
409 |
-
|
410 |
-
|
|
|
411 |
|
412 |
-
#: ../
|
413 |
-
|
414 |
-
|
|
|
415 |
|
416 |
-
#: ../
|
417 |
-
|
418 |
-
|
|
|
419 |
|
420 |
-
#: ../
|
421 |
-
|
422 |
-
|
|
|
423 |
|
424 |
-
#: ../
|
425 |
-
|
426 |
-
|
|
|
427 |
|
428 |
-
#: ../
|
429 |
-
|
430 |
-
"
|
431 |
-
"
|
432 |
-
"by clicking on the activation link.<br />Single Opt-In : In this type, the "
|
433 |
-
"subscriber is not asked to confirm their email address. They are subscribed "
|
434 |
-
"directly in the list."
|
435 |
-
msgstr ""
|
436 |
-
"Double Opt-In : En aquest tipus, al subscriptor se li envia un enllaç "
|
437 |
-
"d'activació tan aviat com es subscrigui a la vostra llista. Han de confirmar "
|
438 |
-
"la seva subscripció fent clic a l'enllaç d'activació.<br />Single Opt-In : "
|
439 |
-
"En aquest tipus, no es demana al subscriptor que confirmi la seva adreça de "
|
440 |
-
"correu electrònic. Estan subscrits directament a la llista."
|
441 |
|
442 |
-
#: ../
|
443 |
-
|
444 |
-
|
|
|
445 |
|
446 |
-
#: ../
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
msgid "Single Opt In"
|
451 |
-
msgstr "Opt In sencill"
|
452 |
|
453 |
-
#: ../
|
454 |
-
|
455 |
-
|
|
|
456 |
|
457 |
-
#: ../
|
458 |
msgid ""
|
459 |
-
"
|
460 |
-
"
|
|
|
|
|
461 |
msgstr ""
|
462 |
-
"
|
463 |
-
"
|
464 |
-
|
465 |
-
|
466 |
-
msgid "Full Size"
|
467 |
-
msgstr "mida completa"
|
468 |
-
|
469 |
-
#: ../settings/settings-edit.php:122
|
470 |
-
msgid "Medium Size"
|
471 |
-
msgstr "Mida mitjana"
|
472 |
|
473 |
-
#: ../
|
474 |
-
|
475 |
-
|
|
|
476 |
|
477 |
-
#: ../
|
478 |
-
msgid "
|
479 |
-
msgstr "
|
480 |
|
481 |
-
#: ../
|
482 |
-
msgid ""
|
483 |
-
"
|
484 |
-
"by comma)."
|
485 |
-
msgstr ""
|
486 |
-
"Introduïu les adreces de correu electrònic d'administració que han de rebre "
|
487 |
-
"notificacions (separades per comes)."
|
488 |
|
489 |
-
#: ../
|
490 |
-
msgid "
|
491 |
-
msgstr "
|
492 |
|
493 |
-
#: ../
|
494 |
-
msgid ""
|
495 |
-
"
|
496 |
-
"be set to YES."
|
497 |
-
msgstr ""
|
498 |
-
"Per enviar notificacions per correu electrònic a l'administrador per un nou "
|
499 |
-
"subscrit. Aquesta opció ha d'estar a YES."
|
500 |
|
501 |
-
#: ../
|
502 |
-
|
503 |
-
|
504 |
-
msgstr "Si"
|
505 |
|
506 |
-
#: ../
|
507 |
-
|
508 |
-
|
509 |
-
msgstr "No"
|
510 |
|
511 |
-
#: ../
|
512 |
-
msgid "
|
513 |
-
msgstr ""
|
514 |
-
"Assumpte del correu electrònic a l'administrador quan hi ha un subscripció "
|
515 |
-
"nou"
|
516 |
|
517 |
-
#: ../
|
518 |
-
msgid ""
|
519 |
-
"
|
520 |
-
"confirmed."
|
521 |
-
msgstr ""
|
522 |
-
"Assumpte del correu electrònic a l'administració sempre que un subscriptor "
|
523 |
-
"nou es registri i es confirmi."
|
524 |
|
525 |
-
#: ../
|
526 |
-
msgid "
|
527 |
-
msgstr ""
|
528 |
-
"Contingut de correu electrònic a l'administrador quan es registra un nou "
|
529 |
-
"subscriptor"
|
530 |
|
531 |
-
#: ../
|
532 |
-
msgid ""
|
533 |
-
"
|
534 |
-
"confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
|
535 |
-
msgstr ""
|
536 |
-
"Contingut per al correu electrònic d'administració cada vegada que un "
|
537 |
-
"subscriptor nou es registra i es confirma.<br />Paraules clau disponibles: "
|
538 |
-
"{{NAME}}, {{EMAIL}}, {{GROUP}}"
|
539 |
|
540 |
-
#: ../settings/settings-edit.php:
|
541 |
-
msgid "
|
542 |
-
msgstr "
|
543 |
|
544 |
-
#: ../
|
545 |
-
|
546 |
-
|
|
|
547 |
|
548 |
-
#: ../
|
549 |
-
msgid "
|
550 |
-
msgstr "
|
551 |
|
552 |
-
#: ../
|
553 |
-
msgid ""
|
554 |
-
"
|
555 |
-
"Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
|
556 |
-
msgstr ""
|
557 |
-
"Contingut per a l'informe de correu electrònic que s'enviarà a "
|
558 |
-
"l'administrador.<br />Paraules clau disponibles: {{COUNT}}, {{UNIQUE}}, "
|
559 |
-
"{{STARTTIME}}, {{ENDTIME}}"
|
560 |
|
561 |
-
#: ../
|
562 |
-
msgid "
|
563 |
-
msgstr "
|
564 |
|
565 |
-
#: ../
|
566 |
-
msgid ""
|
567 |
-
"
|
568 |
-
"subscriber signs up."
|
569 |
-
msgstr ""
|
570 |
-
"Assumpte per al correu electrònic de confirmació que s'enviarà sempre que un "
|
571 |
-
"subscriptor s'inscrigui per Double Opt-In "
|
572 |
|
573 |
-
#: ../
|
574 |
-
msgid "
|
575 |
-
msgstr ""
|
576 |
-
"Contingut de correu electrònic pel sistema Double Opt-In (correu de "
|
577 |
-
"confirmació)"
|
578 |
|
579 |
-
#: ../
|
|
|
580 |
msgid ""
|
581 |
-
"
|
582 |
-
"
|
|
|
583 |
msgstr ""
|
584 |
-
"
|
585 |
-
"
|
586 |
-
"{{
|
587 |
|
588 |
-
#: ../
|
589 |
-
msgid "
|
590 |
-
msgstr "
|
591 |
|
592 |
-
#: ../
|
593 |
-
msgid "
|
594 |
-
msgstr "
|
595 |
|
596 |
-
#: ../
|
597 |
-
msgid ""
|
598 |
-
"
|
599 |
-
"Double Opt-In (Confirmation) Email"
|
600 |
-
msgstr ""
|
601 |
-
"Text que es mostrarà després que una adreça de correu electrònic s'ha "
|
602 |
-
"subscrit correctament per Double Opt-In (email de confirmació)"
|
603 |
|
604 |
-
#: ../
|
605 |
-
msgid ""
|
606 |
-
"
|
607 |
-
"the Double Opt In (confirmation) Email."
|
608 |
-
msgstr ""
|
609 |
-
"Aquest text es mostrarà un cop que l'usuari faci clic a l'enllaç de "
|
610 |
-
"confirmació del correu electrònic pel Doble Opt In (confirmació)"
|
611 |
|
612 |
-
#: ../settings/settings-edit.php:
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
"registrar-se?"
|
617 |
|
618 |
-
#: ../settings/settings-edit.php:
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
msgstr ""
|
623 |
-
"Per enviar correu electrònic de benvinguda al subscriptor després del "
|
624 |
-
"registre amb èxit. Aquesta opció ha d'estar a YES."
|
625 |
|
626 |
-
#: ../
|
627 |
-
msgid "
|
628 |
-
msgstr "
|
629 |
|
630 |
-
#: ../
|
631 |
-
msgid ""
|
632 |
-
"
|
633 |
-
"user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
|
634 |
-
"Opt-In) successfully."
|
635 |
-
msgstr ""
|
636 |
-
"Assumpte del correu electrònic de benvinguda als subscriptors. Això "
|
637 |
-
"s'enviarà sempre que s'hagi confirmat un email de l'usuari (si és Double Opt-"
|
638 |
-
"In) / o subscrit (si és Opt-In individual) amb èxit."
|
639 |
|
640 |
-
#: ../
|
641 |
-
msgid "
|
642 |
-
msgstr "
|
643 |
|
644 |
-
#: ../
|
645 |
-
|
646 |
-
"
|
647 |
-
"
|
648 |
-
"<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
|
649 |
-
msgstr ""
|
650 |
-
"Contingut per al correu electrònic de benvinguda dels subscriptors sempre "
|
651 |
-
"que es confirmi el correu electrònic d'un usuari (si és per Double Opt in) / "
|
652 |
-
"o es subscrigui (per Opt in sencill) amb èxit.<br />Paraules clau "
|
653 |
-
"disponibles: {{NAME}}, {{GROUP}}, {{LINK}}"
|
654 |
|
655 |
-
#: ../
|
656 |
-
msgid "
|
657 |
-
msgstr "
|
658 |
|
659 |
-
#: ../
|
660 |
-
msgid ""
|
661 |
-
"
|
662 |
-
"from this plugin. It is a readonly field and you are advised not to modify "
|
663 |
-
"it."
|
664 |
-
msgstr ""
|
665 |
-
"Aquest enllaç de cancel·lació de subscripció s'afegeix automàticament a tots "
|
666 |
-
"els correus electrònics que s'envien des d'aquest complement. Es tracta d'un "
|
667 |
-
"camp de lectura i se us aconsella no modificar-lo."
|
668 |
|
669 |
-
#: ../
|
670 |
-
msgid "
|
671 |
-
msgstr "
|
672 |
|
673 |
-
#: ../
|
|
|
|
|
|
|
|
|
674 |
msgid ""
|
675 |
-
"
|
676 |
-
"
|
|
|
677 |
msgstr ""
|
678 |
-
"
|
679 |
-
"
|
680 |
-
"
|
|
|
681 |
|
682 |
-
#: ../
|
683 |
-
msgid "
|
684 |
-
msgstr "
|
685 |
|
686 |
-
#: ../
|
687 |
msgid ""
|
688 |
-
"
|
689 |
-
"
|
690 |
msgstr ""
|
691 |
-
"
|
692 |
-
"
|
693 |
|
694 |
-
#: ../
|
695 |
-
msgid "
|
696 |
-
msgstr "
|
697 |
|
698 |
-
#: ../
|
|
|
|
|
|
|
|
|
699 |
msgid ""
|
700 |
-
"
|
701 |
-
"
|
702 |
msgstr ""
|
703 |
-
"
|
704 |
-
"
|
705 |
-
"Opt-In (confirmació)."
|
706 |
|
707 |
-
#: ../
|
708 |
-
msgid "
|
709 |
-
msgstr "
|
710 |
|
711 |
-
#: ../
|
712 |
-
msgid ""
|
713 |
-
"Default message to display if there is any issue while clicking on "
|
714 |
-
"unsubscribe link from the emails."
|
715 |
msgstr ""
|
716 |
-
"
|
717 |
-
"
|
718 |
|
719 |
-
#: ../
|
720 |
-
msgid "
|
721 |
msgstr ""
|
722 |
-
"
|
723 |
-
"
|
724 |
-
|
725 |
-
#: ../settings/settings-edit.php:288
|
726 |
-
msgid "Subscribers Menu"
|
727 |
-
msgstr "Menú dels subscriptors"
|
728 |
|
729 |
-
#: ../
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
|
735 |
-
#: ../
|
736 |
-
|
737 |
-
|
738 |
-
msgid "Administrator/Editor"
|
739 |
-
msgstr "Administrador/editor"
|
740 |
|
741 |
-
#: ../
|
742 |
-
|
743 |
-
|
744 |
-
msgid "Administrator/Editor/Author/Contributor"
|
745 |
-
msgstr "Administrador/editor/autor/contribuidor"
|
746 |
|
747 |
-
#: ../
|
748 |
-
msgid "
|
749 |
-
msgstr "
|
750 |
|
751 |
-
#: ../
|
752 |
-
msgid "
|
753 |
-
msgstr "
|
754 |
|
755 |
-
#: ../
|
756 |
-
|
757 |
-
|
758 |
-
msgstr "Butlletins"
|
759 |
|
760 |
-
#: ../
|
761 |
-
|
762 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
763 |
|
764 |
-
#: ../
|
765 |
-
msgid "
|
766 |
-
msgstr "
|
767 |
|
768 |
-
#: ../
|
|
|
769 |
msgid ""
|
770 |
-
"
|
771 |
-
"
|
772 |
-
|
773 |
-
"
|
774 |
-
"
|
775 |
-
|
776 |
-
|
777 |
-
msgid "Email Count"
|
778 |
-
msgstr "Comte de correu electrònic"
|
779 |
-
|
780 |
-
#: ../settings/settings-edit.php:364
|
781 |
-
msgid "Number of emails that you want to trigger per hour."
|
782 |
-
msgstr "Nombre de missatges de correu electrònic que voleu enviar per hora."
|
783 |
-
|
784 |
-
#: ../settings/settings-edit.php:369
|
785 |
-
msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
|
786 |
msgstr ""
|
787 |
-
"
|
788 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
789 |
|
790 |
-
#: ../
|
791 |
-
msgid "
|
792 |
-
msgstr "
|
793 |
|
794 |
-
#: ../
|
795 |
-
msgid ""
|
796 |
-
"Email to admin whenever a cron URL is triggered from your server.<br "
|
797 |
-
"/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
|
798 |
msgstr ""
|
799 |
-
"
|
800 |
-
"
|
801 |
-
"{{DATE}}, {{SUBJECT}}, {{COUNT}}"
|
802 |
|
803 |
-
#: ../
|
804 |
-
msgid "
|
805 |
-
msgstr "
|
806 |
|
807 |
-
#: ../
|
808 |
-
msgid ""
|
809 |
-
|
810 |
-
"schedule-cron-emails/?"
|
811 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
|
812 |
-
"Cron?</a>"
|
813 |
-
msgstr ""
|
814 |
-
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
815 |
-
"schedule-cron-emails/?"
|
816 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Què és "
|
817 |
-
"Cron?</a>"
|
818 |
|
819 |
-
#: ../
|
820 |
-
|
821 |
-
|
822 |
-
"
|
823 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
|
824 |
-
"job in cPanel</a>"
|
825 |
-
msgstr ""
|
826 |
-
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
827 |
-
"schedule-cron-emails-in-cpanel/?"
|
828 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configureu "
|
829 |
-
"el treball cron a cPanel</a>"
|
830 |
|
831 |
-
#: ../
|
832 |
-
msgid ""
|
833 |
-
|
834 |
-
"schedule-cron-emails-in-parallels-plesk/?"
|
835 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
|
836 |
-
"job in Plesk</a>"
|
837 |
-
msgstr ""
|
838 |
-
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
839 |
-
"schedule-cron-emails-in-parallels-plesk/?"
|
840 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configurar "
|
841 |
-
"el treball cron a Plesk</a>"
|
842 |
|
843 |
-
#: ../
|
844 |
msgid ""
|
845 |
-
"
|
846 |
-
"
|
847 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
|
848 |
-
"does not support cron jobs?</a>"
|
849 |
msgstr ""
|
850 |
-
"
|
851 |
-
"
|
852 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">L'allotjame"
|
853 |
-
"nt no és compatible amb els treballs de cron?</a>"
|
854 |
|
855 |
-
#: ../
|
856 |
-
msgid "
|
857 |
-
msgstr "
|
858 |
|
859 |
-
#: ../
|
860 |
-
msgid "
|
861 |
-
msgstr "
|
862 |
|
863 |
-
#: ../
|
864 |
-
msgid "
|
865 |
-
msgstr "
|
866 |
|
867 |
-
#: ../
|
868 |
-
msgid "
|
869 |
-
msgstr "
|
870 |
|
871 |
-
#: ../
|
872 |
-
msgid "
|
873 |
-
msgstr "
|
874 |
|
875 |
-
#: ../
|
876 |
-
msgid "
|
877 |
-
msgstr "
|
878 |
|
879 |
-
#: ../
|
880 |
-
msgid "
|
881 |
-
msgstr "
|
882 |
|
883 |
-
#: ../
|
884 |
-
msgid "
|
885 |
-
msgstr "
|
|
|
|
|
886 |
|
887 |
-
#: ../
|
888 |
-
msgid "
|
889 |
-
msgstr "
|
890 |
|
891 |
-
#: ../
|
892 |
-
msgid ""
|
893 |
-
"This is how the email you sent may look. <br>Note: Different email services "
|
894 |
-
"(like gmail, yahoo etc) display email content differently. So there could be "
|
895 |
-
"a slight variation on how your customer will view the email content."
|
896 |
msgstr ""
|
897 |
-
"
|
898 |
-
"
|
899 |
-
"correu electrònic de manera diferent. Per tant, podria haver-hi una lleugera "
|
900 |
-
"variació sobre com el vostre client veurà el contingut del correu electrònic."
|
901 |
|
902 |
-
#: ../
|
903 |
-
msgid "
|
904 |
-
msgstr "
|
905 |
|
906 |
-
#: ../
|
907 |
-
msgid "
|
908 |
-
msgstr "
|
909 |
|
910 |
-
#: ../
|
911 |
-
msgid "
|
912 |
-
msgstr "
|
913 |
|
914 |
-
#: ../
|
915 |
-
msgid "
|
916 |
-
msgstr "
|
917 |
|
918 |
-
#: ../
|
919 |
-
|
920 |
-
|
921 |
-
msgstr "Informes"
|
922 |
|
923 |
-
#: ../
|
924 |
-
msgid "
|
925 |
-
msgstr "
|
926 |
|
927 |
-
#: ../
|
928 |
-
msgid "
|
929 |
-
msgstr "
|
930 |
|
931 |
-
#: ../
|
932 |
-
|
933 |
-
|
934 |
-
msgstr "Vista previa"
|
935 |
|
936 |
-
#: ../
|
937 |
-
msgid "
|
938 |
-
msgstr "
|
939 |
|
940 |
-
#: ../
|
941 |
-
|
942 |
-
|
943 |
-
msgid "Status"
|
944 |
-
msgstr "Estat"
|
945 |
|
946 |
-
#: ../
|
947 |
-
|
948 |
-
|
949 |
-
msgstr "Enviat"
|
950 |
|
951 |
-
#: ../
|
952 |
-
msgid "
|
953 |
-
msgstr "
|
954 |
|
955 |
-
#: ../
|
956 |
-
msgid "
|
957 |
-
|
|
|
|
|
|
|
|
|
958 |
|
959 |
-
#: ../
|
960 |
-
msgid "
|
961 |
-
msgstr "
|
962 |
|
963 |
-
#: ../
|
964 |
-
|
965 |
-
|
966 |
-
msgid "Action"
|
967 |
-
msgstr "Acció"
|
968 |
|
969 |
-
#: ../
|
970 |
-
msgid "
|
971 |
-
msgstr "
|
972 |
|
973 |
-
#: ../
|
974 |
msgid ""
|
975 |
-
"
|
976 |
-
"
|
977 |
msgstr ""
|
978 |
-
"
|
979 |
-
"
|
|
|
980 |
|
981 |
-
|
982 |
-
|
983 |
-
|
|
|
984 |
|
985 |
-
#: ../
|
986 |
-
msgid "
|
987 |
-
|
|
|
|
|
|
|
|
|
988 |
|
989 |
-
#: ../
|
990 |
-
|
991 |
-
|
992 |
-
|
993 |
-
msgstr "Sno"
|
994 |
|
995 |
-
#: ../
|
996 |
-
msgid "
|
997 |
-
msgstr "
|
998 |
|
999 |
-
#: ../
|
1000 |
-
msgid "
|
1001 |
-
msgstr "
|
1002 |
|
1003 |
-
#: ../
|
1004 |
-
msgid "
|
1005 |
-
msgstr "
|
1006 |
|
1007 |
-
#: ../
|
1008 |
-
msgid "
|
1009 |
-
|
|
|
|
|
|
|
|
|
1010 |
|
1011 |
-
#: ../
|
1012 |
msgid ""
|
1013 |
-
"
|
1014 |
-
"
|
1015 |
msgstr ""
|
1016 |
-
"
|
1017 |
-
"
|
1018 |
|
1019 |
-
#: ../
|
1020 |
-
msgid "
|
1021 |
-
msgstr "
|
1022 |
|
1023 |
-
#: ../
|
1024 |
-
|
1025 |
-
|
|
|
|
|
|
|
|
|
|
|
1026 |
|
1027 |
-
#: ../
|
1028 |
-
msgid "email
|
1029 |
-
msgstr "
|
1030 |
|
1031 |
-
#: ../
|
1032 |
-
|
1033 |
-
|
1034 |
-
msgstr "Clica aquí"
|
1035 |
|
1036 |
-
#: ../
|
1037 |
-
|
1038 |
-
|
1039 |
-
msgstr "per veure els detalls."
|
1040 |
|
1041 |
-
#: ../
|
1042 |
-
msgid "
|
1043 |
-
msgstr "
|
1044 |
|
1045 |
-
#: ../
|
1046 |
-
msgid "
|
1047 |
-
msgstr "
|
1048 |
|
1049 |
-
#: ../
|
1050 |
-
|
1051 |
-
|
1052 |
-
#: subscribers/view-subscriber-sync.php:89
|
1053 |
-
msgid "Add New Subscriber"
|
1054 |
-
msgstr "Afegir nou subscriptor"
|
1055 |
|
1056 |
-
#: ../
|
1057 |
-
#: show.php:
|
1058 |
-
#:
|
1059 |
-
|
1060 |
-
|
|
|
|
|
|
|
|
|
|
|
1061 |
|
1062 |
-
#: ../
|
1063 |
-
|
1064 |
-
|
1065 |
-
#: subscribers/view-subscriber-sync.php:143
|
1066 |
-
msgid "Sync"
|
1067 |
-
msgstr "Sincronitzar"
|
1068 |
|
1069 |
-
#: ../
|
1070 |
-
|
1071 |
-
|
|
|
|
|
|
|
|
|
|
|
1072 |
|
1073 |
-
#: ../
|
1074 |
-
|
1075 |
-
|
|
|
1076 |
|
1077 |
-
#: ../
|
1078 |
-
|
1079 |
-
|
|
|
1080 |
|
1081 |
-
#: ../
|
1082 |
-
|
1083 |
-
|
|
|
1084 |
|
1085 |
-
#: ../
|
1086 |
-
#:
|
1087 |
-
|
1088 |
-
|
1089 |
-
msgstr "Confirmat"
|
1090 |
|
1091 |
-
#: ../
|
1092 |
-
#:
|
1093 |
-
|
1094 |
-
|
1095 |
-
msgstr "Per confirmar"
|
1096 |
|
1097 |
-
#: ../
|
1098 |
-
#:
|
1099 |
-
|
1100 |
-
|
1101 |
-
msgstr "No subscrit"
|
1102 |
|
1103 |
-
#: ../
|
1104 |
-
|
1105 |
-
|
|
|
1106 |
|
1107 |
-
#: ../
|
1108 |
-
#:
|
1109 |
-
msgid "
|
1110 |
-
msgstr "
|
1111 |
|
1112 |
-
#: ../
|
1113 |
-
#: show.php:
|
1114 |
-
|
1115 |
-
|
1116 |
-
msgid "Import"
|
1117 |
-
msgstr "Importar"
|
1118 |
|
1119 |
-
#: ../
|
1120 |
-
|
1121 |
-
|
|
|
1122 |
|
1123 |
-
#: ../
|
1124 |
-
|
1125 |
-
|
|
|
1126 |
|
1127 |
-
#: ../
|
1128 |
-
#: php:
|
1129 |
-
msgid "
|
1130 |
-
msgstr "
|
1131 |
|
1132 |
-
#: ../
|
1133 |
-
|
1134 |
-
|
1135 |
-
"
|
1136 |
-
"
|
1137 |
|
1138 |
-
#: ../
|
1139 |
-
|
1140 |
-
|
1141 |
-
msgid "No record was selected."
|
1142 |
-
msgstr "No has seleccionat cap registre"
|
1143 |
|
1144 |
-
#: ../
|
1145 |
-
msgid "
|
1146 |
-
msgstr ""
|
1147 |
-
"Per enviar el correu de confirmació, si us plau, canvieu l'opció de Opt-in a "
|
1148 |
-
"Double Opt In."
|
1149 |
|
1150 |
-
#: ../
|
1151 |
-
msgid "
|
1152 |
-
msgstr "
|
1153 |
|
1154 |
-
#: ../
|
1155 |
-
msgid "
|
1156 |
-
msgstr "
|
1157 |
|
1158 |
-
#: ../
|
1159 |
-
|
1160 |
-
|
|
|
1161 |
|
1162 |
-
#: ../subscribers/view-subscriber-show.
|
1163 |
-
|
1164 |
-
|
|
|
1165 |
|
1166 |
-
#: ../
|
1167 |
-
|
1168 |
-
|
1169 |
-
msgstr "Subscriptors"
|
1170 |
|
1171 |
-
#: ../
|
1172 |
-
|
1173 |
-
|
1174 |
-
|
|
|
|
|
|
|
1175 |
|
1176 |
-
#: ../
|
1177 |
-
|
1178 |
-
|
|
|
1179 |
|
1180 |
-
#: ../
|
1181 |
-
#:
|
1182 |
-
msgid "
|
1183 |
-
msgstr "
|
1184 |
|
1185 |
-
#: ../
|
1186 |
-
|
1187 |
-
|
|
|
1188 |
|
1189 |
-
#: ../
|
1190 |
-
|
1191 |
-
|
|
|
1192 |
|
1193 |
-
#: ../subscribers/view-subscriber-show.
|
1194 |
-
|
1195 |
-
|
|
|
1196 |
|
1197 |
-
#: ../
|
1198 |
-
#: show.php:
|
1199 |
-
msgid "
|
1200 |
-
msgstr "
|
1201 |
|
1202 |
-
#: ../
|
1203 |
-
|
1204 |
-
|
|
|
|
|
1205 |
|
1206 |
-
#: ../subscribers/view-subscriber-show.php:
|
1207 |
-
msgid "
|
1208 |
-
msgstr "
|
1209 |
|
1210 |
-
#: ../
|
1211 |
-
msgid "
|
1212 |
-
msgstr "Selecciona
|
1213 |
|
1214 |
-
#: ../
|
1215 |
-
msgid "
|
1216 |
-
msgstr "
|
1217 |
|
1218 |
-
#: ../
|
1219 |
-
msgid "
|
1220 |
-
msgstr "
|
1221 |
|
1222 |
-
#: ../
|
1223 |
-
msgid "
|
1224 |
-
msgstr "
|
1225 |
|
1226 |
-
#: ../
|
1227 |
-
msgid "
|
1228 |
-
msgstr "
|
1229 |
|
1230 |
-
#: ../
|
1231 |
-
msgid "
|
1232 |
-
msgstr "
|
1233 |
|
1234 |
-
#: ../
|
1235 |
-
msgid "
|
1236 |
-
msgstr "
|
|
|
|
|
1237 |
|
1238 |
-
#: ../
|
1239 |
-
msgid "
|
1240 |
-
msgstr "
|
1241 |
|
1242 |
-
#: ../
|
1243 |
-
msgid "
|
1244 |
-
msgstr "
|
1245 |
|
1246 |
-
#: ../
|
1247 |
-
msgid "
|
1248 |
-
msgstr "
|
1249 |
|
1250 |
-
#: ../
|
1251 |
-
msgid "
|
1252 |
-
msgstr "
|
1253 |
|
1254 |
-
#: ../
|
1255 |
-
msgid "
|
1256 |
-
msgstr "
|
1257 |
|
1258 |
-
#: ../
|
1259 |
-
|
1260 |
-
|
|
|
1261 |
|
1262 |
-
#: ../
|
1263 |
-
|
1264 |
-
|
1265 |
-
|
|
|
|
|
|
|
|
|
|
|
1266 |
|
1267 |
-
#: ../
|
1268 |
-
|
1269 |
-
|
1270 |
-
msgstr "Comptador de correus electrònics."
|
1271 |
|
1272 |
-
#: ../
|
1273 |
-
msgid "
|
1274 |
-
msgstr "
|
1275 |
|
1276 |
-
#: ../
|
1277 |
-
msgid "
|
1278 |
-
msgstr "
|
1279 |
|
1280 |
-
#: ../
|
1281 |
-
|
1282 |
-
|
1283 |
-
msgid "Click to Export in CSV"
|
1284 |
-
msgstr "Feu clic a Exportar a CSV"
|
1285 |
|
1286 |
-
#: ../
|
1287 |
-
msgid "
|
1288 |
-
msgstr "
|
1289 |
|
1290 |
-
#: ../
|
1291 |
-
msgid "
|
1292 |
-
msgstr "
|
1293 |
|
1294 |
-
#: ../
|
1295 |
-
|
1296 |
-
|
|
|
|
|
1297 |
|
1298 |
-
#: ../
|
1299 |
-
msgid "
|
1300 |
-
msgstr "
|
1301 |
|
1302 |
-
#: ../
|
1303 |
-
|
1304 |
-
|
|
|
|
|
1305 |
|
1306 |
-
#: ../
|
1307 |
-
|
1308 |
-
|
|
|
1309 |
|
1310 |
-
#: ../
|
1311 |
-
msgid "
|
1312 |
-
msgstr "
|
1313 |
|
1314 |
-
#: ../
|
1315 |
-
msgid "
|
1316 |
-
msgstr "
|
1317 |
|
1318 |
-
#: ../
|
1319 |
-
|
1320 |
-
|
1321 |
-
msgstr "Si us plau, introdueixi l'adreça de correu electrònic del subscriptor."
|
1322 |
|
1323 |
-
#: ../
|
1324 |
-
msgid "
|
1325 |
-
msgstr "
|
1326 |
|
1327 |
-
#: ../
|
1328 |
msgid ""
|
1329 |
-
"
|
1330 |
-
"
|
|
|
1331 |
msgstr ""
|
1332 |
-
"
|
1333 |
-
"
|
1334 |
-
|
1335 |
-
|
1336 |
-
msgid "Subscriber has been saved."
|
1337 |
-
msgstr "El subscriptor s'ha guardat"
|
1338 |
-
|
1339 |
-
#: ../subscribers/view-subscriber-add.php:71
|
1340 |
-
msgid "Subscriber already exists."
|
1341 |
-
msgstr "Aquest subscriptor ja existeix"
|
1342 |
-
|
1343 |
-
#: ../subscribers/view-subscriber-add.php:74
|
1344 |
-
msgid "Invalid Email."
|
1345 |
-
msgstr "Email no vàlid"
|
1346 |
|
1347 |
-
#: ../
|
1348 |
-
msgid "
|
1349 |
-
msgstr "
|
1350 |
|
1351 |
-
#: ../
|
1352 |
-
msgid "
|
1353 |
-
msgstr "
|
1354 |
|
1355 |
-
#: ../
|
1356 |
-
msgid "
|
1357 |
-
msgstr "
|
1358 |
|
1359 |
-
#: ../
|
1360 |
-
msgid "
|
1361 |
-
msgstr "
|
1362 |
|
1363 |
-
#: ../
|
1364 |
-
msgid "
|
1365 |
-
msgstr "
|
1366 |
|
1367 |
-
#: ../
|
1368 |
-
msgid "
|
1369 |
-
msgstr "
|
1370 |
|
1371 |
-
#: ../
|
1372 |
-
msgid "
|
1373 |
-
msgstr "
|
1374 |
|
1375 |
-
#: ../
|
1376 |
-
msgid "
|
1377 |
-
msgstr "
|
1378 |
|
1379 |
-
#: ../
|
1380 |
-
|
1381 |
-
|
|
|
|
|
1382 |
|
1383 |
-
#: ../
|
1384 |
-
msgid "
|
1385 |
-
msgstr "
|
1386 |
|
1387 |
-
#: ../
|
1388 |
-
msgid "
|
1389 |
-
|
|
|
|
|
|
|
|
|
1390 |
|
1391 |
-
#: ../
|
1392 |
-
msgid "
|
1393 |
-
msgstr "
|
1394 |
|
1395 |
-
#: ../
|
1396 |
-
msgid "
|
1397 |
-
msgstr "
|
1398 |
|
1399 |
-
#: ../
|
1400 |
-
msgid "
|
1401 |
-
msgstr ""
|
1402 |
-
"Si us plau, seleccioneu el grup per defecte per l'usuari recentment "
|
1403 |
-
"registrat."
|
1404 |
|
1405 |
-
#: ../
|
1406 |
-
msgid "
|
1407 |
-
msgstr "
|
1408 |
|
1409 |
-
#: ../
|
1410 |
-
msgid "
|
1411 |
-
msgstr "
|
1412 |
|
1413 |
-
#: ../
|
1414 |
-
msgid "
|
1415 |
-
msgstr "
|
1416 |
|
1417 |
-
#: ../
|
1418 |
-
msgid "
|
1419 |
-
msgstr "
|
1420 |
|
1421 |
-
#: ../
|
1422 |
-
msgid "
|
1423 |
-
msgstr "
|
1424 |
|
1425 |
-
#: ../
|
1426 |
-
msgid "
|
1427 |
-
msgstr "
|
1428 |
|
1429 |
-
#: ../
|
1430 |
msgid ""
|
1431 |
-
"
|
1432 |
-
"
|
1433 |
msgstr ""
|
1434 |
-
"
|
1435 |
-
"
|
1436 |
|
1437 |
-
#: ../
|
1438 |
-
msgid ""
|
1439 |
-
"
|
1440 |
-
"content differently. So there could be a slight variation on how your "
|
1441 |
-
"customer will view the email content."
|
1442 |
-
msgstr ""
|
1443 |
-
"<br><br>Nota: els diferents serveis de correu electrònic (com ara Gmail, "
|
1444 |
-
"Yahoo, etc.) mostren contingut de correu electrònic de manera diferent. Per "
|
1445 |
-
"tant, podria haver-hi una lleugera variació sobre com el vostre client veurà "
|
1446 |
-
"el contingut del correu electrònic."
|
1447 |
|
1448 |
-
#: ../
|
1449 |
-
#: 58 ../job/es-optin.php:68
|
1450 |
msgid ""
|
1451 |
-
"
|
1452 |
-
"
|
1453 |
msgstr ""
|
1454 |
-
"
|
1455 |
-
"
|
1456 |
|
1457 |
-
#: ../
|
1458 |
-
msgid "
|
1459 |
-
msgstr "
|
1460 |
|
1461 |
-
#: ../
|
1462 |
-
msgid "
|
1463 |
-
msgstr "
|
1464 |
|
1465 |
-
#: ../
|
1466 |
-
msgid "
|
1467 |
-
msgstr "
|
1468 |
|
1469 |
-
#: ../
|
1470 |
-
|
1471 |
-
|
1472 |
-
msgstr "Subscriure"
|
1473 |
|
1474 |
-
#: ../
|
1475 |
-
|
1476 |
-
|
1477 |
-
msgstr "Versió: %s"
|
1478 |
|
1479 |
-
#: ../
|
1480 |
-
msgid "
|
1481 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1482 |
|
1483 |
-
#: ../
|
1484 |
-
msgid "
|
1485 |
-
msgstr "
|
1486 |
|
1487 |
-
#: ../
|
1488 |
-
|
1489 |
-
|
|
|
|
|
|
|
1490 |
|
1491 |
-
#: ../
|
1492 |
-
msgid "
|
1493 |
-
msgstr "
|
1494 |
|
1495 |
-
#: ../
|
1496 |
msgid ""
|
1497 |
-
"
|
1498 |
-
"
|
1499 |
-
"newsletters and manage all this in one single place."
|
1500 |
msgstr ""
|
1501 |
-
"
|
1502 |
-
"
|
1503 |
-
"automatitzats de notificacions de correus, crear i enviar butlletins i "
|
1504 |
-
"gestionar-ho tot en un sol lloc."
|
1505 |
|
1506 |
-
#: ../
|
1507 |
-
msgid "
|
1508 |
-
msgstr "
|
1509 |
|
1510 |
-
#: ../
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1511 |
msgid ""
|
1512 |
-
"
|
1513 |
-
"
|
1514 |
msgstr ""
|
1515 |
-
"
|
1516 |
-
"
|
1517 |
-
|
1518 |
-
#: ../help/help.php:259
|
1519 |
-
msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
|
1520 |
-
msgstr "Configureu double Opt-in i Single Opt-in pels subscriptors"
|
1521 |
|
1522 |
-
#: ../
|
1523 |
-
msgid "
|
1524 |
-
msgstr "
|
1525 |
|
1526 |
-
#: ../
|
1527 |
msgid ""
|
1528 |
-
"
|
1529 |
-
"
|
1530 |
msgstr ""
|
1531 |
-
"
|
1532 |
-
"
|
1533 |
|
1534 |
-
#: ../
|
1535 |
-
msgid "
|
1536 |
-
msgstr "
|
|
|
|
|
1537 |
|
1538 |
-
#: ../
|
1539 |
-
msgid "
|
|
|
|
|
1540 |
msgstr ""
|
1541 |
-
"
|
1542 |
-
"
|
1543 |
|
1544 |
-
#: ../
|
1545 |
-
msgid "
|
1546 |
msgstr ""
|
1547 |
-
"
|
1548 |
-
"
|
1549 |
|
1550 |
-
#: ../
|
1551 |
-
msgid "
|
|
|
|
|
1552 |
msgstr ""
|
1553 |
-
"
|
1554 |
-
"
|
|
|
1555 |
|
1556 |
-
#: ../
|
1557 |
-
msgid "
|
1558 |
-
msgstr "
|
1559 |
|
1560 |
-
#: ../
|
1561 |
-
msgid "
|
1562 |
-
msgstr "
|
1563 |
|
1564 |
-
#: ../
|
1565 |
-
msgid "
|
1566 |
-
msgstr "
|
1567 |
|
1568 |
-
#: ../
|
1569 |
-
msgid "
|
1570 |
-
|
|
|
|
|
|
|
|
|
|
|
1571 |
|
1572 |
-
#: ../
|
1573 |
-
msgid "
|
1574 |
-
msgstr "
|
1575 |
|
1576 |
-
#: ../
|
1577 |
-
|
1578 |
-
|
1579 |
-
|
1580 |
-
|
1581 |
-
|
1582 |
-
|
1583 |
-
msgid "%s"
|
1584 |
-
msgstr "%s"
|
1585 |
|
1586 |
-
#: ../
|
1587 |
-
msgid "
|
1588 |
-
msgstr "
|
|
|
|
|
1589 |
|
1590 |
-
#: ../
|
1591 |
-
#, php-format
|
1592 |
msgid ""
|
1593 |
-
"
|
1594 |
-
"
|
1595 |
-
"namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
|
1596 |
-
" b) Go to Appearance -> Widgets. Click on widget Email subscribers "
|
1597 |
-
"and drag it to the sidebar on the right <i>Or</i><br>\n"
|
1598 |
-
" c) Copy and past this php code to your desired template location : "
|
1599 |
-
"<strong>%s</strong>"
|
1600 |
msgstr ""
|
1601 |
-
"
|
1602 |
-
"
|
1603 |
-
"
|
1604 |
-
"<i>O</i><br>\n"
|
1605 |
-
" b) Vés a l'aparença -> Widgets. Clica a widget Subscriure per correu "
|
1606 |
-
"electrònic i arrossegueu-lo a la barra lateral de la dreta <i>O</i><br>\n"
|
1607 |
-
" c) Copieu i enganxeu aquest codi php a la vostra ubicació de "
|
1608 |
-
"plantilla desitjada : <strong>%s</strong>"
|
1609 |
|
1610 |
-
#: ../
|
1611 |
-
msgid "
|
1612 |
-
msgstr "
|
1613 |
|
1614 |
-
#: ../
|
1615 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
1616 |
msgstr ""
|
1617 |
-
"
|
1618 |
-
"
|
1619 |
|
1620 |
-
#: ../
|
1621 |
-
msgid "
|
1622 |
-
|
|
|
|
|
|
|
|
|
1623 |
|
1624 |
-
#: ../
|
1625 |
-
msgid "
|
1626 |
-
msgstr "
|
|
|
|
|
1627 |
|
1628 |
-
#: ../
|
1629 |
-
|
1630 |
-
|
1631 |
-
|
|
|
|
|
|
|
1632 |
|
1633 |
-
#: ../
|
1634 |
-
msgid "
|
1635 |
-
msgstr "
|
1636 |
|
1637 |
-
#: ../
|
1638 |
msgid ""
|
1639 |
-
"
|
1640 |
-
"
|
|
|
1641 |
msgstr ""
|
1642 |
-
"
|
1643 |
-
"
|
|
|
1644 |
|
1645 |
-
#: ../
|
1646 |
-
msgid "
|
1647 |
-
msgstr "
|
1648 |
|
1649 |
-
#: ../
|
1650 |
-
msgid "
|
1651 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1652 |
|
1653 |
-
#: ../
|
1654 |
-
msgid "
|
1655 |
-
msgstr "
|
1656 |
|
1657 |
-
#: ../
|
1658 |
-
msgid "
|
1659 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1660 |
|
1661 |
-
#: ../
|
1662 |
-
msgid "
|
1663 |
-
msgstr "
|
1664 |
|
1665 |
-
#: ../
|
1666 |
-
msgid "
|
1667 |
-
|
|
|
|
|
|
|
|
|
|
|
1668 |
|
1669 |
-
#: ../
|
1670 |
-
msgid "
|
1671 |
-
msgstr "
|
1672 |
|
1673 |
-
#: ../
|
1674 |
-
msgid "
|
|
|
|
|
1675 |
msgstr ""
|
1676 |
-
"
|
1677 |
-
"
|
1678 |
|
1679 |
-
#: ../
|
1680 |
-
msgid "
|
1681 |
-
msgstr "
|
1682 |
|
1683 |
-
#: ../
|
1684 |
-
msgid "
|
|
|
|
|
1685 |
msgstr ""
|
1686 |
-
"
|
1687 |
-
"
|
1688 |
-
|
1689 |
-
#: ../help/help.php:372
|
1690 |
-
msgid "Cron Job Setup"
|
1691 |
-
msgstr "Configuració del treball Cron"
|
1692 |
|
1693 |
-
#: ../
|
1694 |
-
msgid "
|
1695 |
-
msgstr "
|
1696 |
|
1697 |
-
#: ../
|
1698 |
-
msgid "
|
1699 |
-
|
|
|
|
|
|
|
|
|
1700 |
|
1701 |
-
#: ../
|
1702 |
-
msgid "
|
1703 |
-
msgstr "
|
|
|
|
|
1704 |
|
1705 |
-
#: ../
|
1706 |
-
msgid "
|
1707 |
-
msgstr "
|
1708 |
|
1709 |
-
#: ../
|
1710 |
-
|
1711 |
-
|
|
|
|
|
1712 |
|
1713 |
-
#: ../
|
1714 |
-
|
1715 |
-
|
|
|
|
|
1716 |
|
1717 |
-
#: ../
|
1718 |
-
|
1719 |
-
|
|
|
|
|
1720 |
|
1721 |
-
#: ../
|
1722 |
-
msgid "
|
1723 |
-
msgstr "
|
1724 |
|
1725 |
-
#: ../
|
1726 |
-
msgid "
|
1727 |
-
msgstr "
|
1728 |
|
1729 |
-
#: ../
|
1730 |
-
msgid "
|
1731 |
-
msgstr "
|
1732 |
|
1733 |
-
#: ../
|
1734 |
-
msgid "
|
1735 |
-
msgstr "
|
1736 |
|
1737 |
-
#: ../
|
1738 |
msgid ""
|
1739 |
-
"
|
1740 |
-
"
|
1741 |
msgstr ""
|
1742 |
-
"
|
1743 |
-
"
|
1744 |
-
|
1745 |
-
#: ../help/help.php:414
|
1746 |
-
msgid "The user can then subscribe to whichever group most appeals to them."
|
1747 |
-
msgstr "L'usuari pot subscriure's a qualsevol grup que els interessi."
|
1748 |
|
1749 |
-
#: ../
|
1750 |
-
msgid "
|
1751 |
-
msgstr "
|
1752 |
|
1753 |
-
#: ../
|
1754 |
-
msgid "
|
1755 |
-
msgstr "
|
1756 |
|
1757 |
-
#: ../
|
1758 |
-
msgid ""
|
1759 |
-
"Don't limit your subscriber form to a widget. Embed it within popups, hello "
|
1760 |
-
"bars, slide-ins, sidebars, full screen popups etc."
|
1761 |
msgstr ""
|
1762 |
-
"
|
1763 |
-
"
|
1764 |
-
"finestres emergents a pantalla completa, etc."
|
1765 |
|
1766 |
-
#: ../
|
|
|
|
|
|
|
|
|
1767 |
msgid ""
|
1768 |
-
"
|
1769 |
-
"
|
1770 |
msgstr ""
|
1771 |
-
"
|
1772 |
-
"
|
1773 |
-
|
1774 |
-
#: ../help/help.php:436 ../help/help.php:456
|
1775 |
-
#, php-format
|
1776 |
-
msgid "How to %s"
|
1777 |
-
msgstr "Com %s"
|
1778 |
|
1779 |
-
#: ../
|
1780 |
-
msgid "
|
1781 |
-
msgstr "
|
1782 |
|
1783 |
-
#: ../
|
1784 |
-
msgid "
|
1785 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1786 |
|
1787 |
-
#: ../
|
1788 |
-
msgid "
|
1789 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1790 |
|
1791 |
-
#: ../
|
1792 |
msgid ""
|
1793 |
-
"
|
1794 |
-
"
|
|
|
|
|
1795 |
msgstr ""
|
1796 |
-
"
|
1797 |
-
"
|
|
|
|
|
1798 |
|
1799 |
-
#: ../
|
1800 |
msgid ""
|
1801 |
-
"
|
1802 |
-
"
|
|
|
|
|
1803 |
msgstr ""
|
1804 |
-
"
|
1805 |
-
"
|
|
|
|
|
1806 |
|
1807 |
-
#: ../
|
1808 |
-
msgid "
|
1809 |
-
msgstr "
|
1810 |
|
1811 |
-
#: ../
|
1812 |
-
msgid "Please
|
1813 |
-
msgstr "
|
1814 |
|
1815 |
-
#: ../
|
1816 |
-
msgid "Please
|
1817 |
-
msgstr "
|
1818 |
|
1819 |
-
#: ../
|
1820 |
-
msgid "
|
1821 |
-
msgstr "
|
1822 |
|
1823 |
-
#: ../
|
1824 |
-
msgid "
|
1825 |
-
msgstr "
|
1826 |
|
1827 |
-
#: ../
|
1828 |
-
|
1829 |
-
|
|
|
1830 |
|
1831 |
-
#: ../
|
1832 |
-
msgid "
|
1833 |
-
msgstr "
|
1834 |
|
1835 |
-
#: ../
|
1836 |
-
msgid "
|
|
|
|
|
1837 |
msgstr ""
|
1838 |
-
"
|
1839 |
-
"
|
1840 |
|
1841 |
-
#: ../
|
1842 |
-
msgid "
|
1843 |
-
msgstr "
|
1844 |
|
1845 |
-
#: ../
|
1846 |
-
msgid "
|
1847 |
-
msgstr "
|
1848 |
|
1849 |
-
#: ../
|
1850 |
-
msgid "
|
1851 |
-
msgstr "
|
1852 |
|
1853 |
-
#: ../
|
1854 |
-
|
1855 |
-
|
|
|
|
|
|
|
1856 |
|
1857 |
-
#: ../
|
1858 |
-
|
1859 |
-
|
|
|
|
|
|
|
1860 |
|
1861 |
-
#: ../
|
1862 |
-
|
1863 |
-
|
1864 |
-
|
|
|
1865 |
|
1866 |
-
#: ../
|
1867 |
-
|
1868 |
-
|
1869 |
-
|
1870 |
-
|
1871 |
-
msgstr ""
|
1872 |
-
"<br> compten <strong> Els destinataris són superiors a 100. <br> És molt "
|
1873 |
-
"recomanable que canviï mes Tipus de correu a Cron i enviar-lo via Cron Job. "
|
1874 |
-
"</ strong> <br> Feu clic a Ajuda per obtenir més informació ."
|
1875 |
|
1876 |
-
#: ../
|
1877 |
-
msgid "
|
1878 |
-
msgstr "
|
1879 |
|
1880 |
-
#: ../
|
1881 |
-
msgid "
|
1882 |
-
msgstr "
|
1883 |
|
1884 |
-
#: ../
|
1885 |
-
msgid "
|
1886 |
-
msgstr "
|
1887 |
|
1888 |
-
#: ../
|
1889 |
-
|
1890 |
-
|
|
|
|
|
1891 |
|
1892 |
-
#: ../
|
1893 |
-
|
1894 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1895 |
|
1896 |
-
#: ../
|
1897 |
-
msgid "
|
1898 |
-
msgstr "
|
1899 |
|
1900 |
-
#: ../
|
1901 |
-
msgid "
|
1902 |
-
msgstr "
|
1903 |
|
1904 |
-
#: ../
|
1905 |
-
msgid "
|
1906 |
-
msgstr "
|
1907 |
|
1908 |
-
#: ../
|
1909 |
-
msgid "
|
1910 |
-
msgstr "
|
1911 |
|
1912 |
-
#: ../
|
1913 |
-
msgid "
|
1914 |
-
msgstr "
|
1915 |
|
1916 |
-
#: ../
|
1917 |
-
msgid "
|
1918 |
-
msgstr "
|
1919 |
|
1920 |
-
#: ../
|
1921 |
-
msgid "
|
1922 |
-
msgstr "
|
1923 |
|
1924 |
-
#: ../
|
1925 |
-
msgid "
|
1926 |
-
msgstr "
|
1927 |
|
1928 |
-
#: ../
|
1929 |
-
|
1930 |
-
|
1931 |
-
msgstr "Email Subscribers"
|
1932 |
|
1933 |
-
#: ../
|
1934 |
-
#:
|
1935 |
-
msgid "
|
1936 |
-
msgstr "
|
1937 |
|
1938 |
-
#: ../
|
1939 |
-
|
1940 |
-
|
|
|
1941 |
|
1942 |
-
#: ../
|
1943 |
-
msgid "
|
1944 |
-
msgstr "
|
1945 |
|
1946 |
-
#: ../
|
1947 |
-
|
1948 |
-
|
1949 |
-
msgstr "Si us plau, introdueixi l'adreça de correu electrònic del subscriptor."
|
1950 |
|
1951 |
-
#: ../
|
1952 |
-
|
1953 |
-
|
1954 |
-
|
|
|
1955 |
|
1956 |
-
#: ../
|
1957 |
-
|
1958 |
-
|
1959 |
-
msgstr "Si us plau, seleccionar o crear grup per a aquest abonat."
|
1960 |
|
1961 |
-
#: ../
|
1962 |
-
|
1963 |
-
|
1964 |
-
msgstr "Vols eliminar aquest registre?"
|
1965 |
|
1966 |
-
#: ../
|
1967 |
-
|
1968 |
-
|
1969 |
-
msgstr "Selecciona l'acció bulk"
|
1970 |
|
1971 |
-
#: ../
|
1972 |
-
|
1973 |
-
|
1974 |
-
msgstr "Esteu segur que voleu esborrar els registres seleccionats?"
|
1975 |
|
1976 |
-
#: ../
|
1977 |
-
|
1978 |
-
|
1979 |
-
msgstr "Seleccioneu nou grup d'abonats."
|
1980 |
|
1981 |
-
#: ../
|
1982 |
-
|
1983 |
-
|
1984 |
-
msgstr "Seleccioneu nou estatus per a subscriptors"
|
1985 |
|
1986 |
-
#: ../
|
1987 |
-
|
1988 |
-
|
1989 |
-
msgstr "Vols actualitzar el grup de subscriptors?"
|
1990 |
|
1991 |
-
#: ../
|
1992 |
-
|
1993 |
-
|
1994 |
-
msgstr "Vols actualitzar l'estat dels subscriptors?"
|
1995 |
|
1996 |
-
#: ../
|
1997 |
-
msgctxt "view-subscriber-enhanced-select"
|
1998 |
msgid ""
|
1999 |
-
"
|
2000 |
-
"."
|
2001 |
msgstr ""
|
2002 |
-
"
|
2003 |
-
"
|
2004 |
|
2005 |
-
#: ../
|
2006 |
-
|
2007 |
-
|
2008 |
-
msgstr "Selecciona el grup de subscriptors."
|
2009 |
|
2010 |
-
#: ../
|
2011 |
-
|
2012 |
-
|
2013 |
-
msgstr "Seleccioneu l'estat de la notificació."
|
2014 |
|
2015 |
-
#: ../
|
2016 |
-
|
2017 |
-
|
2018 |
-
msgstr "Vols eliminar aquest registre?"
|
2019 |
|
2020 |
-
#: ../
|
2021 |
-
|
2022 |
-
msgid "
|
2023 |
-
msgstr "
|
2024 |
|
2025 |
-
#: ../
|
2026 |
-
|
2027 |
-
msgid "
|
2028 |
-
msgstr "
|
2029 |
|
2030 |
-
#: ../
|
2031 |
-
|
2032 |
-
|
2033 |
-
"Have you double checked your selected group? If so, let's go ahead and send "
|
2034 |
-
"this."
|
2035 |
-
msgstr ""
|
2036 |
-
"Heu comprovat dues vegades el vostre grup seleccionat? Si és així, seguirem "
|
2037 |
-
"endavant i l'enviarem."
|
2038 |
|
2039 |
-
#: ../
|
2040 |
-
|
2041 |
-
|
2042 |
-
msgstr "Vols eliminar aquest registre?"
|
2043 |
|
2044 |
-
#: ../
|
2045 |
-
|
2046 |
-
|
2047 |
-
msgstr "Vols eliminar tots els registres excepte els 10 últims?"
|
2048 |
|
2049 |
-
#: ../
|
2050 |
-
|
2051 |
-
|
2052 |
-
msgstr ""
|
2053 |
-
"Si us plau seleccioneu Introduir el nombre de missatges que voleu enviar per "
|
2054 |
-
"hora / gallet."
|
2055 |
|
2056 |
-
#: ../
|
2057 |
-
|
2058 |
-
|
2059 |
-
msgstr "Si us plau, introdueixi el recompte d'emails, només número."
|
2060 |
|
2061 |
-
#: ../
|
2062 |
-
|
2063 |
-
|
2064 |
-
msgstr "Si us plau, entra l'adreça d'email"
|
2065 |
|
2066 |
-
#: ../
|
2067 |
-
|
2068 |
-
|
2069 |
-
msgstr "Si us plau, proporciona una adreça de correu electrònic vàlida"
|
2070 |
|
2071 |
-
#: ../
|
2072 |
-
|
2073 |
-
|
2074 |
-
|
|
|
|
|
|
|
|
|
2075 |
|
2076 |
-
#: ../
|
2077 |
-
|
2078 |
-
|
2079 |
-
|
|
|
2080 |
|
2081 |
-
#: ../
|
2082 |
-
|
2083 |
-
|
2084 |
-
|
|
|
2085 |
|
2086 |
-
#: ../
|
2087 |
-
|
2088 |
-
|
2089 |
-
|
|
|
2090 |
|
2091 |
-
#: ../
|
2092 |
-
|
2093 |
-
|
2094 |
-
msgstr "Vaja... S'ha produït un error inesperat."
|
2095 |
|
2096 |
-
#: ../
|
2097 |
-
|
2098 |
-
|
2099 |
-
msgstr "l'Adreça de correu electrònic no és vàlida"
|
2100 |
|
2101 |
-
#: ../
|
2102 |
-
|
2103 |
-
|
2104 |
-
msgstr "Torna-ho a provar d'aquí a una estona"
|
2105 |
|
2106 |
-
#: ../
|
2107 |
-
|
2108 |
-
|
2109 |
-
msgstr "Hi ha un problema amb la sol·licitud"
|
2110 |
|
2111 |
-
#: ../
|
2112 |
-
|
2113 |
-
msgid "
|
2114 |
-
msgstr "
|
2115 |
|
2116 |
-
#: ../
|
2117 |
-
|
2118 |
-
|
2119 |
-
msgstr "Si us plau, proporciona una adreça de correu electrònic vàlida"
|
2120 |
|
2121 |
-
#: ../
|
2122 |
-
|
2123 |
-
|
2124 |
-
msgstr "Carregant..."
|
2125 |
|
2126 |
-
#: ../
|
2127 |
-
|
2128 |
-
|
2129 |
-
msgstr "No es pot crear la instància XMLHTTP"
|
2130 |
|
2131 |
-
#: ../
|
2132 |
-
|
2133 |
-
|
2134 |
-
msgstr "Subscripció exitosa"
|
2135 |
|
2136 |
-
#: ../
|
2137 |
-
|
2138 |
-
msgid "
|
2139 |
-
msgstr "
|
2140 |
|
2141 |
-
#: ../
|
2142 |
-
|
2143 |
-
|
2144 |
-
msgstr "Vaja... S'ha produït un error inesperat."
|
2145 |
|
2146 |
-
#: ../
|
2147 |
-
|
2148 |
-
|
2149 |
-
msgstr "l'Adreça de correu electrònic no és vàlida"
|
2150 |
|
2151 |
-
#: ../
|
2152 |
-
|
2153 |
-
|
2154 |
-
msgstr "Torna-ho a provar d'aquí a una estona"
|
2155 |
|
2156 |
-
#: ../
|
2157 |
-
|
2158 |
-
|
2159 |
-
msgstr "Hi ha un problema amb la sol·licitud"
|
2160 |
|
2161 |
-
#: ../
|
2162 |
-
msgid ""
|
2163 |
-
"
|
2164 |
-
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
2165 |
-
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
2166 |
-
"</a> rating. A huge thank you from Icegram in advance!"
|
2167 |
-
msgstr ""
|
2168 |
-
"Si t'agrada <strong>Email Subscribers</strong>, si us plau consideri deixar-"
|
2169 |
-
"nos una <a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
2170 |
-
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
2171 |
-
"</a> qualificació. Un enorme agraiment d'Icegram per endavant!"
|
2172 |
|
2173 |
-
#: ../
|
2174 |
-
|
2175 |
-
|
2176 |
-
msgstr "Versió de subscriptors de correu electrònic: <strong>%s</strong>"
|
2177 |
|
2178 |
-
#: ../
|
2179 |
-
msgid "
|
2180 |
-
msgstr "
|
2181 |
|
2182 |
-
#: ../
|
2183 |
-
msgid "
|
2184 |
-
msgstr "
|
2185 |
|
2186 |
-
#: ../
|
2187 |
-
msgid "
|
2188 |
-
msgstr "
|
2189 |
|
2190 |
-
#: ../
|
2191 |
-
msgid "
|
2192 |
-
msgstr "
|
2193 |
|
2194 |
-
#: ../
|
2195 |
-
msgid "
|
2196 |
-
msgstr "
|
2197 |
|
2198 |
-
#: ../
|
2199 |
-
msgid "
|
2200 |
-
msgstr "
|
2201 |
|
2202 |
-
#: ../
|
2203 |
-
msgid "
|
2204 |
-
msgstr "
|
2205 |
|
2206 |
-
#: ../
|
2207 |
-
msgid "
|
2208 |
-
msgstr "
|
2209 |
|
2210 |
-
#: ../
|
2211 |
-
msgid "
|
2212 |
-
msgstr "
|
|
|
|
|
2213 |
|
2214 |
-
#: ../
|
2215 |
-
msgid "
|
2216 |
-
msgstr "
|
2217 |
|
2218 |
-
#: ../
|
2219 |
-
msgid "
|
2220 |
-
msgstr "
|
2221 |
|
2222 |
-
#: ../
|
2223 |
-
msgid "
|
2224 |
-
msgstr "
|
2225 |
|
2226 |
-
#: ../
|
2227 |
-
msgid "
|
2228 |
-
msgstr "
|
2229 |
|
2230 |
-
#: ../
|
2231 |
-
msgid "
|
2232 |
-
msgstr "
|
2233 |
|
2234 |
-
#: ../
|
2235 |
-
msgid "
|
2236 |
-
msgstr "
|
2237 |
|
2238 |
-
#: ../
|
2239 |
-
#, php-format
|
2240 |
msgid ""
|
2241 |
-
"
|
2242 |
-
"
|
2243 |
-
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
2244 |
msgstr ""
|
2245 |
-
"
|
2246 |
-
"
|
2247 |
-
"{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
2248 |
-
|
2249 |
-
#: ../classes/es-register.php:981 ../classes/es-register.php:982
|
2250 |
-
msgid "Available Keywords"
|
2251 |
-
msgstr "Paraules clau disponibles"
|
2252 |
|
2253 |
-
#: ../
|
2254 |
-
msgid "
|
2255 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2256 |
|
2257 |
-
|
2258 |
-
msgid "
|
2259 |
-
msgstr "
|
2260 |
|
2261 |
-
|
2262 |
-
msgid "
|
2263 |
-
msgstr "
|
2264 |
|
2265 |
-
|
2266 |
-
msgid "
|
2267 |
-
|
|
|
|
|
|
|
|
|
|
|
2268 |
|
2269 |
-
#: ../
|
2270 |
-
|
2271 |
-
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.12\n"
|
4 |
"Report-Msgid-Bugs-To: https://www.storeapps.org/support/contact-us/\n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Tue Apr 17 2018 15:50:04 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Catalan\n"
|
22 |
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
23 |
"X-Loco-Target-Locale: ca_ES"
|
24 |
|
25 |
+
#: ../classes/es-register.php:201
|
26 |
+
msgctxt "view-subscriber-enhanced-select"
|
27 |
+
msgid ""
|
28 |
+
"Do you want to resend confirmation email? Also please note, this will update "
|
29 |
+
"subscriber current status to 'Unconfirmed'."
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: ../classes/es-register.php:215
|
33 |
+
msgctxt "notification-enhanced-select"
|
34 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: ../classes/es-register.php:260
|
38 |
+
msgctxt "widget-enhanced-select"
|
39 |
+
msgid ""
|
40 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
41 |
+
"subscription. If you don't see the email within a few minutes, check the "
|
42 |
+
"spam/junk folder."
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: ../classes/es-register.php:274
|
46 |
+
msgctxt "widget-page-enhanced-select"
|
47 |
+
msgid ""
|
48 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
49 |
+
"subscription. If you don't see the email within a few minutes, check the "
|
50 |
+
"spam/junk folder."
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: ../classes/es-register.php:739
|
54 |
msgid ""
|
55 |
+
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
56 |
+
"subscribers list?</b> Come check our Pro plan."
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: ../classes/es-register.php:740
|
60 |
+
msgid "Check Pro plan "
|
61 |
+
msgstr ""
|
62 |
+
|
63 |
+
#: ../classes/es-register.php:740
|
64 |
+
msgid "Not interested."
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
+
#: ../classes/es-register.php:974
|
68 |
+
#, php-format
|
69 |
+
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
70 |
msgstr ""
|
71 |
|
72 |
#: ../export/export-email-address.php:50 ../export/export-email-address.php:54
|
100 |
msgid "Use HTML editor to create newsletters and post notifications."
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: ../help/help.php:327
|
104 |
+
msgid "How does Sync work?"
|
105 |
+
msgstr ""
|
106 |
+
|
107 |
+
#: ../help/help.php:412
|
108 |
msgid "Using our <b>free</b> "
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: ../help/help.php:432
|
112 |
msgid ""
|
113 |
"Using Email Subscribers you can achieve this easily with our <b>free</b> "
|
114 |
"plugin "
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: ../help/help.php:449
|
118 |
msgid "Email subscribers easily integrates with another <b>free</b> plugin "
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
msgid "Please select notification mail subject. Use templates menu to create new."
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
126 |
+
#: 164
|
127 |
+
msgid "(Use templates menu to create new)"
|
|
|
|
|
|
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: ../subscribers/view-subscriber-export.php:12
|
|
|
131 |
msgid ""
|
132 |
+
"Oops! Looks like you are not the site administrator.<br><br>Only the site "
|
133 |
+
"administrator can export subscriber list."
|
|
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: ../subscribers/view-subscriber-export.php:14
|
137 |
+
msgid "Go back to Subscribers dashboard"
|
|
|
|
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: ../subscribers/view-subscriber-show.php:75 ../subscribers/view-subscriber-show.
|
141 |
+
#: php:134
|
142 |
+
msgid "Confirmation emails resent successfully."
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: ../subscribers/view-subscriber-show.php:256
|
146 |
+
msgid "Total Subscribers: "
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: ../classes/es-common.php:13
|
150 |
+
msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
|
151 |
+
msgstr "<span style=\"color:#006600;font-weight:bold;\">Confirmat</span>"
|
|
|
152 |
|
153 |
+
#: ../classes/es-common.php:16
|
154 |
+
msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
|
155 |
+
msgstr "<span style=\"color:#FF0000\">Per confirmar</span>"
|
156 |
|
157 |
+
#: ../classes/es-common.php:19
|
158 |
+
msgid "<span style=\"color:#999900\">Unsubscribed</span>"
|
159 |
+
msgstr "<span style=\"color:#999900\">Cancel·lat</span>"
|
160 |
|
161 |
+
#: ../classes/es-common.php:22
|
162 |
+
msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
|
163 |
+
msgstr "Opt in sencill"
|
164 |
|
165 |
+
#: ../classes/es-common.php:25
|
166 |
+
msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
|
167 |
+
msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Vist</span>"
|
168 |
|
169 |
+
#: ../classes/es-common.php:28
|
170 |
+
msgid "<span style=\"color:#999900;\">Nodata</span>"
|
171 |
+
msgstr "<span style=\"color:#999900;\">No hi ha dades</span>"
|
172 |
|
173 |
+
#: ../classes/es-common.php:31
|
174 |
+
msgid "<span style=\"color:#FF0000\">Disabled</span>"
|
175 |
+
msgstr "<span style=\"color:#FF0000\">Desactivat</span>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
176 |
|
177 |
+
#: ../classes/es-common.php:34
|
178 |
+
msgid "<span style=\"color:#FF0000\">In Queue</span>"
|
179 |
+
msgstr "<span style=\"color:#FF0000\">A la cua</span>"
|
180 |
|
181 |
+
#: ../classes/es-common.php:37
|
182 |
+
msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
|
183 |
+
msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Enviat</span>"
|
|
|
|
|
|
|
|
|
|
|
184 |
|
185 |
+
#: ../classes/es-common.php:40
|
186 |
+
msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
|
187 |
+
msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
|
|
|
188 |
|
189 |
+
#: ../classes/es-common.php:43
|
190 |
+
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
191 |
+
msgstr "Immediatament"
|
|
|
192 |
|
193 |
+
#: ../classes/es-loadwidget.php:28 ../classes/es-register.php:1053 ..
|
194 |
+
#: subscribers/view-subscriber-show.php:289
|
195 |
+
msgid "Name"
|
196 |
+
msgstr "Nom"
|
197 |
|
198 |
+
#: ../classes/es-loadwidget.php:33 ../classes/es-register.php:1058
|
199 |
+
msgid "Email *"
|
200 |
+
msgstr "Email*"
|
|
|
201 |
|
202 |
+
#: ../classes/es-loadwidget.php:38 ../classes/es-register.php:1063 ../help/help.
|
203 |
+
#: php:196
|
204 |
+
msgid "Subscribe"
|
205 |
+
msgstr "Subscriure"
|
206 |
|
207 |
+
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
208 |
+
#: register.php:801
|
209 |
+
msgid "Email Subscribers"
|
210 |
+
msgstr "Email Subscribers"
|
211 |
|
212 |
+
#: ../classes/es-register.php:165 ../classes/es-register.php:166 ..
|
213 |
+
#: subscribers/view-subscriber-show.php:242
|
214 |
+
msgid "Subscribers"
|
215 |
+
msgstr "Subscriptors"
|
216 |
|
217 |
+
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
218 |
+
#: register.php:789 ../classes/es-register.php:790 ../classes/es-register.php:795
|
219 |
+
msgid "Templates"
|
220 |
+
msgstr "Plantilles"
|
221 |
|
222 |
+
#: ../classes/es-register.php:171 ../classes/es-register.php:172 ../help/help.php:
|
223 |
+
#: 361 ../notification/notification-show.php:52
|
224 |
+
msgid "Post Notifications"
|
225 |
+
msgstr "Notificacions de les entrades"
|
226 |
|
227 |
+
#: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
|
228 |
+
#: 351 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:324
|
229 |
+
msgid "Newsletters"
|
230 |
+
msgstr "Butlletins"
|
231 |
|
232 |
+
#: ../classes/es-register.php:177 ../classes/es-register.php:178 ..
|
233 |
+
#: settings/settings-edit.php:42
|
234 |
+
msgid "Settings"
|
235 |
+
msgstr "Configuració"
|
236 |
|
237 |
+
#: ../classes/es-register.php:180 ../classes/es-register.php:181 ..
|
238 |
+
#: sentmail/sentmail-show.php:93
|
239 |
+
msgid "Reports"
|
240 |
+
msgstr "Informes"
|
241 |
|
242 |
+
#: ../classes/es-register.php:183
|
243 |
+
msgid "Help & Info"
|
244 |
+
msgstr "Ajuda i informació"
|
|
|
|
|
245 |
|
246 |
+
#: ../classes/es-register.php:184
|
247 |
+
msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
|
248 |
+
msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Ajuda & informació</span>"
|
249 |
|
250 |
+
#: ../classes/es-register.php:195
|
251 |
+
msgctxt "view-subscriber-enhanced-select"
|
252 |
+
msgid "Please enter subscriber email address."
|
253 |
+
msgstr "Si us plau, introdueixi l'adreça de correu electrònic del subscriptor."
|
254 |
|
255 |
+
#: ../classes/es-register.php:196
|
256 |
+
msgctxt "view-subscriber-enhanced-select"
|
257 |
+
msgid "Please select subscriber email status."
|
258 |
+
msgstr "Seleccioneu l'estat de correu electrònic del subscriptor."
|
259 |
|
260 |
+
#: ../classes/es-register.php:197
|
261 |
+
msgctxt "view-subscriber-enhanced-select"
|
262 |
+
msgid "Please select or create group for this subscriber."
|
263 |
+
msgstr "Si us plau, seleccionar o crear grup per a aquest abonat."
|
|
|
|
|
|
|
264 |
|
265 |
+
#: ../classes/es-register.php:198
|
266 |
+
msgctxt "view-subscriber-enhanced-select"
|
267 |
+
msgid "Do you want to delete this record?"
|
268 |
+
msgstr "Vols eliminar aquest registre?"
|
269 |
|
270 |
+
#: ../classes/es-register.php:199
|
271 |
+
msgctxt "view-subscriber-enhanced-select"
|
272 |
+
msgid "Please select the bulk action."
|
273 |
+
msgstr "Selecciona l'acció bulk"
|
274 |
|
275 |
+
#: ../classes/es-register.php:200
|
276 |
+
msgctxt "view-subscriber-enhanced-select"
|
277 |
+
msgid "Are you sure you want to delete selected records?"
|
278 |
+
msgstr "Esteu segur que voleu esborrar els registres seleccionats?"
|
|
|
|
|
|
|
|
|
|
|
279 |
|
280 |
+
#: ../classes/es-register.php:202
|
281 |
+
msgctxt "view-subscriber-enhanced-select"
|
282 |
+
msgid "Please select new subscriber group."
|
283 |
+
msgstr "Seleccioneu nou grup d'abonats."
|
284 |
|
285 |
+
#: ../classes/es-register.php:203
|
286 |
+
msgctxt "view-subscriber-enhanced-select"
|
287 |
+
msgid "Please select new status for subscribers"
|
288 |
+
msgstr "Seleccioneu nou estatus per a subscriptors"
|
289 |
|
290 |
+
#: ../classes/es-register.php:204
|
291 |
+
msgctxt "view-subscriber-enhanced-select"
|
292 |
+
msgid "Do you want to update subscribers group?"
|
293 |
+
msgstr "Vols actualitzar el grup de subscriptors?"
|
294 |
|
295 |
+
#: ../classes/es-register.php:205
|
296 |
+
msgctxt "view-subscriber-enhanced-select"
|
297 |
+
msgid "Do you want to update subscribers status?"
|
298 |
+
msgstr "Vols actualitzar l'estat dels subscriptors?"
|
299 |
|
300 |
+
#: ../classes/es-register.php:206
|
301 |
+
msgctxt "view-subscriber-enhanced-select"
|
302 |
+
msgid ""
|
303 |
+
"Please select only csv file. Please check official website for csv structure."
|
304 |
+
"."
|
305 |
+
msgstr ""
|
306 |
+
"Seleccioneu només l'arxiu csv. Consulteu el lloc web oficial per a "
|
307 |
+
"l'estructura csv .."
|
308 |
|
309 |
+
#: ../classes/es-register.php:214
|
310 |
+
msgctxt "notification-enhanced-select"
|
311 |
+
msgid "Please select subscribers group."
|
312 |
+
msgstr "Selecciona el grup de subscriptors."
|
313 |
|
314 |
+
#: ../classes/es-register.php:216
|
315 |
+
msgctxt "notification-enhanced-select"
|
316 |
+
msgid "Please select notification status."
|
317 |
+
msgstr "Seleccioneu l'estat de la notificació."
|
318 |
|
319 |
+
#: ../classes/es-register.php:217
|
320 |
+
msgctxt "notification-enhanced-select"
|
321 |
+
msgid "Do you want to delete this record?"
|
322 |
+
msgstr "Vols eliminar aquest registre?"
|
323 |
|
324 |
+
#: ../classes/es-register.php:225
|
325 |
+
msgctxt "sendmail-enhanced-select"
|
326 |
+
msgid "Please select your mail subject."
|
327 |
+
msgstr "Si us plau selecciona l'assumpte del teu email."
|
328 |
|
329 |
+
#: ../classes/es-register.php:226
|
330 |
+
msgctxt "sendmail-enhanced-select"
|
331 |
+
msgid "Please select your mail type."
|
332 |
+
msgstr "Si us plau selecciona el teu tipus de correu."
|
333 |
|
334 |
+
#: ../classes/es-register.php:227
|
335 |
+
msgctxt "sendmail-enhanced-select"
|
336 |
msgid ""
|
337 |
+
"Have you double checked your selected group? If so, let's go ahead and send "
|
338 |
+
"this."
|
339 |
msgstr ""
|
340 |
+
"Heu comprovat dues vegades el vostre grup seleccionat? Si és així, seguirem "
|
341 |
+
"endavant i l'enviarem."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
342 |
|
343 |
+
#: ../classes/es-register.php:235
|
344 |
+
msgctxt "sentmail-enhanced-select"
|
345 |
+
msgid "Do you want to delete this record?"
|
346 |
+
msgstr "Vols eliminar aquest registre?"
|
347 |
|
348 |
+
#: ../classes/es-register.php:236
|
349 |
+
msgctxt "sentmail-enhanced-select"
|
350 |
+
msgid "Do you want to delete all records except latest 10?"
|
351 |
+
msgstr "Vols eliminar tots els registres excepte els 10 últims?"
|
352 |
|
353 |
+
#: ../classes/es-register.php:244
|
354 |
+
msgctxt "cron-enhanced-select"
|
355 |
+
msgid "Please select enter number of mails you want to send per hour/trigger."
|
356 |
+
msgstr ""
|
357 |
+
"Si us plau seleccioneu Introduir el nombre de missatges que voleu enviar per "
|
358 |
+
"hora / gallet."
|
359 |
|
360 |
+
#: ../classes/es-register.php:245
|
361 |
+
msgctxt "cron-enhanced-select"
|
362 |
+
msgid "Please enter the mail count, only number."
|
363 |
+
msgstr "Si us plau, introdueixi el recompte d'emails, només número."
|
364 |
|
365 |
+
#: ../classes/es-register.php:258
|
366 |
+
msgctxt "widget-enhanced-select"
|
367 |
+
msgid "Please enter email address"
|
368 |
+
msgstr "Si us plau, entra l'adreça d'email"
|
|
|
|
|
|
|
369 |
|
370 |
+
#: ../classes/es-register.php:259
|
371 |
+
msgctxt "widget-enhanced-select"
|
372 |
+
msgid "Successfully Subscribed."
|
373 |
+
msgstr "Subscripció exitosa"
|
374 |
|
375 |
+
#: ../classes/es-register.php:261
|
376 |
+
msgctxt "widget-enhanced-select"
|
377 |
+
msgid "Email Address already exists!"
|
378 |
+
msgstr "Aquesta adreça de correu electrònic ja existeix!"
|
|
|
|
|
|
|
379 |
|
380 |
+
#: ../classes/es-register.php:262
|
381 |
+
msgctxt "widget-enhanced-select"
|
382 |
+
msgid "Oops.. Unexpected error occurred."
|
383 |
+
msgstr "Vaja... S'ha produït un error inesperat."
|
384 |
|
385 |
+
#: ../classes/es-register.php:263
|
386 |
+
msgctxt "widget-enhanced-select"
|
387 |
+
msgid "Invalid email address"
|
388 |
+
msgstr "l'Adreça de correu electrònic no és vàlida"
|
389 |
|
390 |
+
#: ../classes/es-register.php:264
|
391 |
+
msgctxt "widget-enhanced-select"
|
392 |
+
msgid "Please try after some time"
|
393 |
+
msgstr "Torna-ho a provar d'aquí a una estona"
|
394 |
|
395 |
+
#: ../classes/es-register.php:272
|
396 |
+
msgctxt "widget-page-enhanced-select"
|
397 |
+
msgid "Please enter email address"
|
398 |
+
msgstr "Si us plau, entra l'adreça d'email"
|
399 |
|
400 |
+
#: ../classes/es-register.php:273
|
401 |
+
msgctxt "widget-page-enhanced-select"
|
402 |
+
msgid "Successfully Subscribed."
|
403 |
+
msgstr "Subscripció exitosa"
|
404 |
|
405 |
+
#: ../classes/es-register.php:275
|
406 |
+
msgctxt "widget-page-enhanced-select"
|
407 |
+
msgid "Email Address already exists!"
|
408 |
+
msgstr "Aquesta adreça de correu electrònic ja existeix!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
409 |
|
410 |
+
#: ../classes/es-register.php:276
|
411 |
+
msgctxt "widget-page-enhanced-select"
|
412 |
+
msgid "Oops.. Unexpected error occurred."
|
413 |
+
msgstr "Vaja... S'ha produït un error inesperat."
|
414 |
|
415 |
+
#: ../classes/es-register.php:277
|
416 |
+
msgctxt "widget-page-enhanced-select"
|
417 |
+
msgid "Invalid email address"
|
418 |
+
msgstr "l'Adreça de correu electrònic no és vàlida"
|
|
|
|
|
419 |
|
420 |
+
#: ../classes/es-register.php:278
|
421 |
+
msgctxt "widget-page-enhanced-select"
|
422 |
+
msgid "Please try after some time"
|
423 |
+
msgstr "Torna-ho a provar d'aquí a una estona"
|
424 |
|
425 |
+
#: ../classes/es-register.php:766
|
426 |
msgid ""
|
427 |
+
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
428 |
+
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
429 |
+
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
430 |
+
"</a> rating. A huge thank you from Icegram in advance!"
|
431 |
msgstr ""
|
432 |
+
"Si t'agrada <strong>Email Subscribers</strong>, si us plau consideri deixar-"
|
433 |
+
"nos una <a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
434 |
+
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
435 |
+
"</a> qualificació. Un enorme agraiment d'Icegram per endavant!"
|
|
|
|
|
|
|
|
|
|
|
|
|
436 |
|
437 |
+
#: ../classes/es-register.php:780
|
438 |
+
#, php-format
|
439 |
+
msgid "Email Subscribers version: <strong>%s</strong>"
|
440 |
+
msgstr "Versió de subscriptors de correu electrònic: <strong>%s</strong>"
|
441 |
|
442 |
+
#: ../classes/es-register.php:791 ../classes/es-register.php:792
|
443 |
+
msgid "Add new Template"
|
444 |
+
msgstr "Afegir plantilla nova"
|
445 |
|
446 |
+
#: ../classes/es-register.php:793
|
447 |
+
msgid "Edit Templates"
|
448 |
+
msgstr "Editar plantilles"
|
|
|
|
|
|
|
|
|
449 |
|
450 |
+
#: ../classes/es-register.php:794
|
451 |
+
msgid "New Templates"
|
452 |
+
msgstr "Plantilla nova"
|
453 |
|
454 |
+
#: ../classes/es-register.php:796
|
455 |
+
msgid "View Templates"
|
456 |
+
msgstr "Veure les plantilles"
|
|
|
|
|
|
|
|
|
457 |
|
458 |
+
#: ../classes/es-register.php:797
|
459 |
+
msgid "Search Templates"
|
460 |
+
msgstr "Cercar plantilles"
|
|
|
461 |
|
462 |
+
#: ../classes/es-register.php:798
|
463 |
+
msgid "No Templates found"
|
464 |
+
msgstr "No s'han trobat plantilles"
|
|
|
465 |
|
466 |
+
#: ../classes/es-register.php:799
|
467 |
+
msgid "No Templates found in Trash"
|
468 |
+
msgstr "No s'ha trobat cap plantilla a la paperera"
|
|
|
|
|
469 |
|
470 |
+
#: ../classes/es-register.php:802
|
471 |
+
msgid "Thumbnail (For Visual Representation only)"
|
472 |
+
msgstr "Miniatura (només per a la representació visual)"
|
|
|
|
|
|
|
|
|
473 |
|
474 |
+
#: ../classes/es-register.php:803
|
475 |
+
msgid "Set thumbnail"
|
476 |
+
msgstr "Estableix miniatura"
|
|
|
|
|
477 |
|
478 |
+
#: ../classes/es-register.php:840
|
479 |
+
msgid "Template Type"
|
480 |
+
msgstr "Tipus de plantilla"
|
|
|
|
|
|
|
|
|
|
|
481 |
|
482 |
+
#: ../classes/es-register.php:841 ../settings/settings-edit.php:123
|
483 |
+
msgid "Thumbnail"
|
484 |
+
msgstr "Miniatura"
|
485 |
|
486 |
+
#: ../classes/es-register.php:889 ../sentmail/sentmail-show.php:108 ..
|
487 |
+
#: sentmail/sentmail-show.php:121
|
488 |
+
msgid "Preview"
|
489 |
+
msgstr "Vista previa"
|
490 |
|
491 |
+
#: ../classes/es-register.php:906
|
492 |
+
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
493 |
+
msgstr "Paraula clau disponible per a la notificació de publicacions: {{POSTTITLE}}"
|
494 |
|
495 |
+
#: ../classes/es-register.php:909
|
496 |
+
msgid "Select your Email Template Type"
|
497 |
+
msgstr "Seleccioneu el vostre tipus de plantilla de correu electrònic"
|
|
|
|
|
|
|
|
|
|
|
498 |
|
499 |
+
#: ../classes/es-register.php:911
|
500 |
+
msgid "Newsletter"
|
501 |
+
msgstr "Butlletí de notícies"
|
502 |
|
503 |
+
#: ../classes/es-register.php:912
|
504 |
+
msgid "Post Notification"
|
505 |
+
msgstr "Notificació de l'entrada"
|
|
|
|
|
|
|
|
|
506 |
|
507 |
+
#: ../classes/es-register.php:959
|
508 |
+
msgid "Preview Template"
|
509 |
+
msgstr "Vista prèvia de la plantilla"
|
|
|
|
|
510 |
|
511 |
+
#: ../classes/es-register.php:973
|
512 |
+
#, php-format
|
513 |
msgid ""
|
514 |
+
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
515 |
+
"{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
|
516 |
+
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
517 |
msgstr ""
|
518 |
+
"%s per a la notificació de correus:{{NAME}}, {{EMAIL}}, {{DATE}}, "
|
519 |
+
"{{POSTTITLE}}, {{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, "
|
520 |
+
"{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
521 |
|
522 |
+
#: ../classes/es-register.php:973 ../classes/es-register.php:974
|
523 |
+
msgid "Available Keywords"
|
524 |
+
msgstr "Paraules clau disponibles"
|
525 |
|
526 |
+
#: ../classes/es-register.php:1103
|
527 |
+
msgid "Widget Title"
|
528 |
+
msgstr "Títol del widget"
|
529 |
|
530 |
+
#: ../classes/es-register.php:1107
|
531 |
+
msgid "Short description about subscription form"
|
532 |
+
msgstr "Breu descripció sobre el formulari de subscripció"
|
|
|
|
|
|
|
|
|
533 |
|
534 |
+
#: ../classes/es-register.php:1111
|
535 |
+
msgid "Display Name Field"
|
536 |
+
msgstr "Mostra nom del camp"
|
|
|
|
|
|
|
|
|
537 |
|
538 |
+
#: ../classes/es-register.php:1113 ../settings/settings-edit.php:142 ..
|
539 |
+
#: settings/settings-edit.php:217 ../subscribers/view-subscriber-sync.php:107
|
540 |
+
msgid "YES"
|
541 |
+
msgstr "Si"
|
|
|
542 |
|
543 |
+
#: ../classes/es-register.php:1114 ../settings/settings-edit.php:143 ..
|
544 |
+
#: settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:106
|
545 |
+
msgid "NO"
|
546 |
+
msgstr "No"
|
|
|
|
|
|
|
547 |
|
548 |
+
#: ../classes/es-register.php:1118
|
549 |
+
msgid "Subscriber Group"
|
550 |
+
msgstr "Grup de subscriptor"
|
551 |
|
552 |
+
#: ../help/help.php:184
|
553 |
+
msgid "Welcome to Email Subscribers!"
|
554 |
+
msgstr "Benvingut a Email Subscribers!"
|
|
|
|
|
|
|
|
|
|
|
|
|
555 |
|
556 |
+
#: ../help/help.php:191
|
557 |
+
msgid "Get more help and tips..."
|
558 |
+
msgstr "Obteniu més ajuda i consells ..."
|
559 |
|
560 |
+
#: ../help/help.php:205
|
561 |
+
#, php-format
|
562 |
+
msgid "Version: %s"
|
563 |
+
msgstr "Versió: %s"
|
|
|
|
|
|
|
|
|
|
|
|
|
564 |
|
565 |
+
#: ../help/help.php:208
|
566 |
+
msgid "Questions? Need Help?"
|
567 |
+
msgstr "Preguntes? Necessites ajuda?"
|
568 |
|
569 |
+
#: ../help/help.php:209
|
570 |
+
msgid "Contact Us"
|
571 |
+
msgstr "Contacti amb nosaltres"
|
|
|
|
|
|
|
|
|
|
|
|
|
572 |
|
573 |
+
#: ../help/help.php:214
|
574 |
+
msgid "donating to us"
|
575 |
+
msgstr "Aporteu-nos "
|
576 |
|
577 |
+
#: ../help/help.php:249
|
578 |
+
msgid "Description"
|
579 |
+
msgstr "Descripció"
|
580 |
+
|
581 |
+
#: ../help/help.php:251
|
582 |
msgid ""
|
583 |
+
"Email Subscribers is a complete newsletter plugin which lets you collect "
|
584 |
+
"leads, send automated new blog post notification emails, create & send "
|
585 |
+
"newsletters and manage all this in one single place."
|
586 |
msgstr ""
|
587 |
+
"Email Subscribers és un plugin molt complet de butlletí de notícies que us "
|
588 |
+
"permet recollir els clients potencials, enviar correus electrònics "
|
589 |
+
"automatitzats de notificacions de correus, crear i enviar butlletins i "
|
590 |
+
"gestionar-ho tot en un sol lloc."
|
591 |
|
592 |
+
#: ../help/help.php:253
|
593 |
+
msgid "Feature Overview"
|
594 |
+
msgstr "Informació sobre funcions"
|
595 |
|
596 |
+
#: ../help/help.php:256
|
597 |
msgid ""
|
598 |
+
"Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
|
599 |
+
"Code)."
|
600 |
msgstr ""
|
601 |
+
"Recopileu els correus electrònics del client afegint un quadre de "
|
602 |
+
"subscripció (Widget / Codi abreujat / Codi PHP)."
|
603 |
|
604 |
+
#: ../help/help.php:259
|
605 |
+
msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
|
606 |
+
msgstr "Configureu double Opt-in i Single Opt-in pels subscriptors"
|
607 |
|
608 |
+
#: ../help/help.php:262
|
609 |
+
msgid "Send automatic welcome email to subscribers."
|
610 |
+
msgstr "Envia correus automàtics de benvinguda als subscriptors."
|
611 |
+
|
612 |
+
#: ../help/help.php:265
|
613 |
msgid ""
|
614 |
+
"Send new post notification emails to subscribers when new posts are "
|
615 |
+
"published on your website."
|
616 |
msgstr ""
|
617 |
+
"Envia emails de notificació als subscriptors quan hi ha noves entrades "
|
618 |
+
"publicades al lloc web"
|
|
|
619 |
|
620 |
+
#: ../help/help.php:268
|
621 |
+
msgid "Schedule email (Cron job) or send them manually."
|
622 |
+
msgstr "Programeu el correu electrònic (treball Cron) o envieu-los manualment."
|
623 |
|
624 |
+
#: ../help/help.php:271
|
625 |
+
msgid "Send email notification to admin when a new user signs up."
|
|
|
|
|
626 |
msgstr ""
|
627 |
+
"Enviar una notificació per correu electrònic a l'administrador quan un nou "
|
628 |
+
"usuari s'inscrigui."
|
629 |
|
630 |
+
#: ../help/help.php:274
|
631 |
+
msgid "Automatically add Unsubscribe link in the email."
|
632 |
msgstr ""
|
633 |
+
"Afegiu automàticament l'enllaç per cancel·lar la subscripció al correu "
|
634 |
+
"electrònic."
|
|
|
|
|
|
|
|
|
635 |
|
636 |
+
#: ../help/help.php:277
|
637 |
+
msgid "Easily migrate subscribers from another app using Import & Export."
|
638 |
+
msgstr ""
|
639 |
+
"Permet migrar fàcilment els subscriptors d'una altra aplicació mitjançant "
|
640 |
+
"Importar i exportar."
|
641 |
|
642 |
+
#: ../help/help.php:283
|
643 |
+
msgid "Send newsletters to different groups."
|
644 |
+
msgstr "Enviar butlletins a diferents grups."
|
|
|
|
|
645 |
|
646 |
+
#: ../help/help.php:286
|
647 |
+
msgid "Get detailed sent email reports."
|
648 |
+
msgstr "Obteniu informes de correu electrònic detallats."
|
|
|
|
|
649 |
|
650 |
+
#: ../help/help.php:289
|
651 |
+
msgid "Control user access (User Roles and Capabilities)."
|
652 |
+
msgstr "Controlar l'accés dels usuaris (funcions i funcions dels usuaris)."
|
653 |
|
654 |
+
#: ../help/help.php:292
|
655 |
+
msgid "Supports localization and internationalization."
|
656 |
+
msgstr "Suporta la localització i la internacionalització."
|
657 |
|
658 |
+
#: ../help/help.php:299
|
659 |
+
msgid "Add Subscribe form"
|
660 |
+
msgstr "Afegeix formulari de subscripció"
|
|
|
661 |
|
662 |
+
#: ../help/help.php:301 ../help/help.php:312 ../help/help.php:315 ../help/help.
|
663 |
+
#: php:327 ../help/help.php:330 ../help/help.php:333 ../help/help.php:336 ..
|
664 |
+
#: help/help.php:339 ../help/help.php:342 ../help/help.php:354 ../help/help.php:
|
665 |
+
#: 357 ../help/help.php:364 ../help/help.php:367 ../help/help.php:370 ..
|
666 |
+
#: help/help.php:378 ../help/help.php:381 ../help/help.php:384 ../help/help.php:
|
667 |
+
#: 387 ../help/help.php:393 ../help/help.php:396 ../help/help.php:398
|
668 |
+
#, php-format
|
669 |
+
msgid "%s"
|
670 |
+
msgstr "%s"
|
671 |
|
672 |
+
#: ../help/help.php:301
|
673 |
+
msgid "How to Add Subscription box to website?"
|
674 |
+
msgstr "Com afegir el quadre de subscripció a la pàgina web?"
|
675 |
|
676 |
+
#: ../help/help.php:304
|
677 |
+
#, php-format
|
678 |
msgid ""
|
679 |
+
"Use any of the following 3 methods :<br>\n"
|
680 |
+
" a) Shortcode in any page/post : <strong>[email-subscribers "
|
681 |
+
"namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
|
682 |
+
" b) Go to Appearance -> Widgets. Click on widget Email subscribers "
|
683 |
+
"and drag it to the sidebar on the right <i>Or</i><br>\n"
|
684 |
+
" c) Copy and past this php code to your desired template location : "
|
685 |
+
"<strong>%s</strong>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
686 |
msgstr ""
|
687 |
+
"Utilitzeu qualsevol dels tres mètodes següents:<br>\n"
|
688 |
+
" a) Codi curt en qualsevol pàgina/publicació: <strong>[Camp de nom de "
|
689 |
+
"subscriptors de correu electrònic=\"SI\" desc=\"\" grup=\"Public\"]</strong> "
|
690 |
+
"<i>O</i><br>\n"
|
691 |
+
" b) Vés a l'aparença -> Widgets. Clica a widget Subscriure per correu "
|
692 |
+
"electrònic i arrossegueu-lo a la barra lateral de la dreta <i>O</i><br>\n"
|
693 |
+
" c) Copieu i enganxeu aquest codi php a la vostra ubicació de "
|
694 |
+
"plantilla desitjada : <strong>%s</strong>"
|
695 |
|
696 |
+
#: ../help/help.php:309
|
697 |
+
msgid "Additional form settings"
|
698 |
+
msgstr "Configuració addicional del formulari"
|
699 |
|
700 |
+
#: ../help/help.php:312
|
701 |
+
msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
|
|
|
|
|
702 |
msgstr ""
|
703 |
+
"Com redireccionar els subscriptors a una nova pàgina/url després de "
|
704 |
+
"registrar-se amb èxit?"
|
|
|
705 |
|
706 |
+
#: ../help/help.php:315
|
707 |
+
msgid "How to add captcha in Subscribe form of Email Subscribers?"
|
708 |
+
msgstr "Com afegir captcha al formulari de subscripció d'Email Subscribers?"
|
709 |
|
710 |
+
#: ../help/help.php:321
|
711 |
+
msgid "General Plugin Configuration"
|
712 |
+
msgstr "Configuració general del plugin"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
713 |
|
714 |
+
#: ../help/help.php:324
|
715 |
+
#, php-format
|
716 |
+
msgid "Modify %s"
|
717 |
+
msgstr "Modificar %s"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
718 |
|
719 |
+
#: ../help/help.php:324
|
720 |
+
msgid "default text, email contents"
|
721 |
+
msgstr "text per defecte del contingut del correu electrònic"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
722 |
|
723 |
+
#: ../help/help.php:324
|
724 |
msgid ""
|
725 |
+
" (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User "
|
726 |
+
"Roles"
|
|
|
|
|
727 |
msgstr ""
|
728 |
+
"(com a confirmació, correus electrònics de benvinguda, administració), "
|
729 |
+
"configuració de Cron i assignació de funcions d'usuari"
|
|
|
|
|
730 |
|
731 |
+
#: ../help/help.php:330
|
732 |
+
msgid "How to Import or Export Email Addresses?"
|
733 |
+
msgstr "Com importar o exportar adreces d'email?"
|
734 |
|
735 |
+
#: ../help/help.php:333
|
736 |
+
msgid "How to Add/Update Existing Subscribers Group & Status?"
|
737 |
+
msgstr "Com afegir i actualitzar el grup i l'estat dels subscriptors existents?"
|
738 |
|
739 |
+
#: ../help/help.php:336
|
740 |
+
msgid "How to change/update/translate any texts from the plugin?"
|
741 |
+
msgstr "Com canviar / actualitzar / traduir qualsevol text del plugin?"
|
742 |
|
743 |
+
#: ../help/help.php:339
|
744 |
+
msgid "How to add Unsubscribe link in emails?"
|
745 |
+
msgstr "Com afegir el link \"Donar-se de baixa\" en els correus electrònics?"
|
746 |
|
747 |
+
#: ../help/help.php:342
|
748 |
+
msgid "How to check sent emails?"
|
749 |
+
msgstr "Com es poden consultar els correus electrònics enviats?"
|
750 |
|
751 |
+
#: ../help/help.php:354
|
752 |
+
msgid "Create and Send Newsletter Emails"
|
753 |
+
msgstr "Crea i envia correus electrònics de butlletins"
|
754 |
|
755 |
+
#: ../help/help.php:357
|
756 |
+
msgid "Keywords in the Newsletters"
|
757 |
+
msgstr "Paraules clau als butlletins informatius"
|
758 |
|
759 |
+
#: ../help/help.php:364
|
760 |
+
msgid "Create and Send Post Notification Emails when new posts are published"
|
761 |
+
msgstr ""
|
762 |
+
"Crear i enviar correus electrònics de notificació de publicacions quan s'hi "
|
763 |
+
"publiquin entrades noves"
|
764 |
|
765 |
+
#: ../help/help.php:367
|
766 |
+
msgid "Keywords in the Post Notifications"
|
767 |
+
msgstr "Paraules clau a les Notificacions de publicacions"
|
768 |
|
769 |
+
#: ../help/help.php:370
|
770 |
+
msgid "Send a test post notification email to myself/testgroup"
|
|
|
|
|
|
|
771 |
msgstr ""
|
772 |
+
"Envia un missatge de correu electrònic de notificació de prova a mi mateix / "
|
773 |
+
"grup de prova"
|
|
|
|
|
774 |
|
775 |
+
#: ../help/help.php:375
|
776 |
+
msgid "Cron Job Setup"
|
777 |
+
msgstr "Configuració del treball Cron"
|
778 |
|
779 |
+
#: ../help/help.php:378
|
780 |
+
msgid "What is Cron and how to Schedule Cron Emails?"
|
781 |
+
msgstr "Què és Cron i com programar els correus electrònics de Cron?"
|
782 |
|
783 |
+
#: ../help/help.php:381
|
784 |
+
msgid "Schedule Cron Emails in cPanel"
|
785 |
+
msgstr "Programeu els correus electrònics de Cron a cPanel"
|
786 |
|
787 |
+
#: ../help/help.php:384
|
788 |
+
msgid "Schedule Cron Emails in Parallels Plesk"
|
789 |
+
msgstr "Programar Cron Emails a Parallels Plesk"
|
790 |
|
791 |
+
#: ../help/help.php:387
|
792 |
+
msgid "Hosting doesn’t support Cron Jobs?"
|
793 |
+
msgstr "El hosting no és compatible amb Cron Jobs?"
|
|
|
794 |
|
795 |
+
#: ../help/help.php:390
|
796 |
+
msgid "Troubleshooting Steps"
|
797 |
+
msgstr "Passos de resolució de problemes"
|
798 |
|
799 |
+
#: ../help/help.php:393
|
800 |
+
msgid "Subscribers are not receiving Emails?"
|
801 |
+
msgstr "Els subscriptors no estan rebent missatges de correu electrònic?"
|
802 |
|
803 |
+
#: ../help/help.php:396
|
804 |
+
msgid "CSS Help"
|
805 |
+
msgstr "Ajuda CSS"
|
|
|
806 |
|
807 |
+
#: ../help/help.php:398
|
808 |
+
msgid "FAQ's"
|
809 |
+
msgstr "FAQ's"
|
810 |
|
811 |
+
#: ../help/help.php:404
|
812 |
+
msgid "Want to do more? Here's how.."
|
813 |
+
msgstr "Voleu fer més? A continuació s'explica com ..."
|
|
|
|
|
814 |
|
815 |
+
#: ../help/help.php:407
|
816 |
+
msgid "Allow Subscribers to get subscribed to any group"
|
817 |
+
msgstr "Permetre que els subscriptors es subscriguin a qualsevol grup"
|
|
|
818 |
|
819 |
+
#: ../help/help.php:413
|
820 |
+
msgid "Group Selector"
|
821 |
+
msgstr "Selector de grup"
|
822 |
|
823 |
+
#: ../help/help.php:414
|
824 |
+
msgid ""
|
825 |
+
"plugin, you can extend Email Subscribers Form functionality by providing an "
|
826 |
+
"grouping option right next to the form."
|
827 |
+
msgstr ""
|
828 |
+
"plugin, podeu estendre la funcionalitat del formulari d'Email Subscribers "
|
829 |
+
"oferint una opció d'agrupació al costat del formulari."
|
830 |
|
831 |
+
#: ../help/help.php:417
|
832 |
+
msgid "The user can then subscribe to whichever group most appeals to them."
|
833 |
+
msgstr "L'usuari pot subscriure's a qualsevol grup que els interessi."
|
834 |
|
835 |
+
#: ../help/help.php:420
|
836 |
+
msgid "For example: Subscribe either to Updates or to Offers."
|
837 |
+
msgstr "Per exemple: subscriviu-vos a actualitzacions o a ofertes."
|
|
|
|
|
838 |
|
839 |
+
#: ../help/help.php:424
|
840 |
+
msgid "Show your subscribe form inside attractive popups"
|
841 |
+
msgstr "Mostra el vostre formulari de subscripció a les finestres emergents"
|
842 |
|
843 |
+
#: ../help/help.php:429
|
844 |
msgid ""
|
845 |
+
"Don't limit your subscriber form to a widget. Embed it within popups, hello "
|
846 |
+
"bars, slide-ins, sidebars, full screen popups etc."
|
847 |
msgstr ""
|
848 |
+
"No limiti el formulari d'abonat a un widget. Incrusteu-lo a les finestres "
|
849 |
+
"emergents, les barres d'hola, les diapositives, les barres laterals, les "
|
850 |
+
"finestres emergents a pantalla completa, etc."
|
851 |
|
852 |
+
#. Author of the plugin/theme
|
853 |
+
#: ../help/help.php:433
|
854 |
+
msgid "Icegram"
|
855 |
+
msgstr "Icegram"
|
856 |
|
857 |
+
#: ../help/help.php:436
|
858 |
+
msgid ""
|
859 |
+
"Icegram's beautiful designs instantly capture user attention and help "
|
860 |
+
"increase sign-ups to your WordPress website."
|
861 |
+
msgstr ""
|
862 |
+
"Els bonics dissenys d'Icegram capturen instantàniament l'atenció dels "
|
863 |
+
"usuaris i ajuden a augmentar els registres al vostre lloc web de WordPress."
|
864 |
|
865 |
+
#: ../help/help.php:439 ../help/help.php:459
|
866 |
+
#, php-format
|
867 |
+
msgid "How to %s"
|
868 |
+
msgstr "Com %s"
|
|
|
869 |
|
870 |
+
#: ../help/help.php:439
|
871 |
+
msgid "show subscribe form inside a popup"
|
872 |
+
msgstr "mostra el formulari de subscripció dins d'una finestra emergent"
|
873 |
|
874 |
+
#: ../help/help.php:443
|
875 |
+
msgid "Get beautiful and elegant form styles"
|
876 |
+
msgstr "Obteniu bonics i elegants estils de formularis"
|
877 |
|
878 |
+
#: ../help/help.php:450
|
879 |
+
msgid "Rainmaker"
|
880 |
+
msgstr "Rainmaker"
|
881 |
|
882 |
+
#: ../help/help.php:453
|
883 |
+
msgid ""
|
884 |
+
"Rainmaker extends the core features of Email Subscribers and provides "
|
885 |
+
"elegant form styles."
|
886 |
+
msgstr ""
|
887 |
+
"Rainmaker amplia les característiques bàsiques dels subscriptors de correu "
|
888 |
+
"electrònic i proporciona elegants estils de formularis ."
|
889 |
|
890 |
+
#: ../help/help.php:456
|
891 |
msgid ""
|
892 |
+
"These styles are well designed and beautify your subscription form making it "
|
893 |
+
"more appealing."
|
894 |
msgstr ""
|
895 |
+
"Aquests estils estan ben dissenyats i embelleigen el vostre formulari de "
|
896 |
+
"subscripció fent-lo més atractiu."
|
897 |
|
898 |
+
#: ../help/help.php:459
|
899 |
+
msgid "add Rainmaker’s form in Email Subscribers"
|
900 |
+
msgstr "afegiu el formulari Rainmaker al Email Subscribers"
|
901 |
|
902 |
+
#: ../job/es-optin.php:58 ../job/es-optin.php:68 ../job/es-unsubscribe.php:54 ..
|
903 |
+
#: job/es-unsubscribe.php:61
|
904 |
+
msgid ""
|
905 |
+
"Oops.. We are getting some technical error. Please try again or contact "
|
906 |
+
"admin."
|
907 |
+
msgstr ""
|
908 |
+
"Vaja... Estem rebent algun error tècnic. Intenteu-ho de nou o poseu-vos en "
|
909 |
+
"contacte amb l'administrador."
|
910 |
|
911 |
+
#: ../job/es-optin.php:61
|
912 |
+
msgid "This email address has already been confirmed."
|
913 |
+
msgstr "Aquesta adreça de correu electrònic ja ha estat confirmada."
|
914 |
|
915 |
+
#: ../notification/notification-add.php:33
|
916 |
+
msgid "Please select subscribers group."
|
917 |
+
msgstr "Si us plau, seleccioneu el grup de subscriptors."
|
|
|
918 |
|
919 |
+
#: ../notification/notification-add.php:39
|
920 |
+
msgid "Please select notification status."
|
921 |
+
msgstr "Seleccioneu l'estat de la notificació."
|
|
|
922 |
|
923 |
+
#: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
|
924 |
+
msgid "Please select post categories."
|
925 |
+
msgstr "Seleccioneu les categories de correus."
|
926 |
|
927 |
+
#: ../notification/notification-add.php:71
|
928 |
+
msgid "Notification successfully created. "
|
929 |
+
msgstr "Notificació creada correctament."
|
930 |
|
931 |
+
#: ../notification/notification-add.php:112
|
932 |
+
msgid "Add Notification"
|
933 |
+
msgstr "Afegir notificació"
|
|
|
|
|
|
|
934 |
|
935 |
+
#: ../notification/notification-add.php:113 ../notification/notification-edit.php:
|
936 |
+
#: 124 ../notification/notification-show.php:54 ../sendmail/sendmail.php:94 ..
|
937 |
+
#: sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
|
938 |
+
#: sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
|
939 |
+
#: subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
|
940 |
+
#: php:113 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
|
941 |
+
#: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
|
942 |
+
#: subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:32
|
943 |
+
msgid "Help"
|
944 |
+
msgstr "Ajuda"
|
945 |
|
946 |
+
#: ../notification/notification-add.php:121
|
947 |
+
msgid "Select Subscribers Group"
|
948 |
+
msgstr "Seleccioneu Grup Subscriptors"
|
|
|
|
|
|
|
949 |
|
950 |
+
#: ../notification/notification-add.php:125 ../notification/notification-add.php:
|
951 |
+
#: 149 ../notification/notification-edit.php:136 ../notification/notification-
|
952 |
+
#: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
|
953 |
+
#: sendmail/sendmail.php:152 ../subscribers/view-subscriber-add.php:166 ..
|
954 |
+
#: subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
|
955 |
+
#: import.php:193 ../subscribers/view-subscriber-sync.php:119
|
956 |
+
msgid "Select"
|
957 |
+
msgstr "seleccionar"
|
958 |
|
959 |
+
#: ../notification/notification-add.php:143 ../notification/notification-edit.php:
|
960 |
+
#: 163
|
961 |
+
msgid "Select Notification Email Subject"
|
962 |
+
msgstr "Selecciona notificació assumpte del correu"
|
963 |
|
964 |
+
#: ../notification/notification-add.php:168 ../notification/notification-edit.php:
|
965 |
+
#: 191
|
966 |
+
msgid "Select Post Categories"
|
967 |
+
msgstr "Seleccioneu categoria de correu"
|
968 |
|
969 |
+
#: ../notification/notification-add.php:196 ../notification/notification-edit.php:
|
970 |
+
#: 226
|
971 |
+
msgid "Check All"
|
972 |
+
msgstr "Seleccionar-ho tot"
|
973 |
|
974 |
+
#: ../notification/notification-add.php:197 ../notification/notification-edit.php:
|
975 |
+
#: 227
|
976 |
+
msgid "Uncheck All"
|
977 |
+
msgstr "Deseleccionar-ho tot"
|
|
|
978 |
|
979 |
+
#: ../notification/notification-add.php:203 ../notification/notification-edit.php:
|
980 |
+
#: 234
|
981 |
+
msgid "Select your Custom Post Type"
|
982 |
+
msgstr "Seleccioni el seu tipus personalitzat del Post"
|
|
|
983 |
|
984 |
+
#: ../notification/notification-add.php:204 ../notification/notification-edit.php:
|
985 |
+
#: 235
|
986 |
+
msgid "(Optional)"
|
987 |
+
msgstr "(Opcional)"
|
|
|
988 |
|
989 |
+
#: ../notification/notification-add.php:233 ../notification/notification-edit.php:
|
990 |
+
#: 269
|
991 |
+
msgid "No Custom Post Types Available"
|
992 |
+
msgstr "Sense tipus de Post personalitzats disponibles"
|
993 |
|
994 |
+
#: ../notification/notification-add.php:240 ../notification/notification-edit.php:
|
995 |
+
#: 276
|
996 |
+
msgid "Select Notification Status when a new post is published"
|
997 |
+
msgstr "Tria un estat de notificació quan es publica una nova entrada"
|
998 |
|
999 |
+
#: ../notification/notification-add.php:244 ../notification/notification-edit.php:
|
1000 |
+
#: 280 ../notification/notification-show.php:130 ../sendmail/sendmail.php:139
|
1001 |
+
msgid "Send email immediately"
|
1002 |
+
msgstr "Enviar email immediatamanet"
|
|
|
|
|
1003 |
|
1004 |
+
#: ../notification/notification-add.php:245 ../notification/notification-edit.php:
|
1005 |
+
#: 281 ../notification/notification-show.php:132
|
1006 |
+
msgid "Add to cron and send email via cron job"
|
1007 |
+
msgstr "Afegir a cron i enviar correu electrònic a través de cron"
|
1008 |
|
1009 |
+
#: ../notification/notification-add.php:246 ../notification/notification-edit.php:
|
1010 |
+
#: 282
|
1011 |
+
msgid "Disable email notification"
|
1012 |
+
msgstr "Desactivar la notificació de correu electrònic"
|
1013 |
|
1014 |
+
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
1015 |
+
#: 291 ../subscribers/view-subscriber-edit.php:191
|
1016 |
+
msgid "Save"
|
1017 |
+
msgstr "Desar"
|
1018 |
|
1019 |
+
#: ../notification/notification-edit.php:20 ../notification/notification-show.php:
|
1020 |
+
#: 21 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
|
1021 |
+
#: subscribers/view-subscriber-edit.php:22
|
1022 |
+
msgid "Oops, selected details does not exists."
|
1023 |
+
msgstr "Vaja, les dades seleccionades no existeixen."
|
1024 |
|
1025 |
+
#: ../notification/notification-edit.php:49
|
1026 |
+
msgid "Please select subscribers group"
|
1027 |
+
msgstr "Selecciona el grup de subscriptors"
|
|
|
|
|
1028 |
|
1029 |
+
#: ../notification/notification-edit.php:55
|
1030 |
+
msgid "Please select notification status"
|
1031 |
+
msgstr "Selecciona l'estat de notificació"
|
|
|
|
|
1032 |
|
1033 |
+
#: ../notification/notification-edit.php:89
|
1034 |
+
msgid "Notification successfully updated. "
|
1035 |
+
msgstr "Notificació actualitzada correctament."
|
1036 |
|
1037 |
+
#: ../notification/notification-edit.php:122
|
1038 |
+
msgid "Edit Notification"
|
1039 |
+
msgstr "Editar la notificació"
|
1040 |
|
1041 |
+
#: ../notification/notification-edit.php:123 ../notification/notification-show.
|
1042 |
+
#: php:53
|
1043 |
+
msgid "Add New"
|
1044 |
+
msgstr "Afegir nou"
|
1045 |
|
1046 |
+
#: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
|
1047 |
+
#: php:303
|
1048 |
+
msgid "Update Subscribers Group"
|
1049 |
+
msgstr "Actualitzar grups de subscriptors"
|
1050 |
|
1051 |
+
#: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
|
1052 |
+
msgid "Selected record deleted."
|
1053 |
+
msgstr "Eliminat el registre seleccionat ."
|
|
|
1054 |
|
1055 |
+
#: ../notification/notification-show.php:57
|
1056 |
+
msgid ""
|
1057 |
+
"Use this to setup and send notification emails to your subscribers when a "
|
1058 |
+
"new post is published in your blog."
|
1059 |
+
msgstr ""
|
1060 |
+
"Utilitzeu aquesta opció per configurar i enviar notificacions per correu "
|
1061 |
+
"electrònic als subscriptors quan es publica una nova entrada al bloc."
|
1062 |
|
1063 |
+
#: ../notification/notification-show.php:68 ../notification/notification-show.php:
|
1064 |
+
#: 76
|
1065 |
+
msgid "Email Subject"
|
1066 |
+
msgstr "Subjecte del email"
|
1067 |
|
1068 |
+
#: ../notification/notification-show.php:69 ../notification/notification-show.php:
|
1069 |
+
#: 77
|
1070 |
+
msgid "Subscribers Group"
|
1071 |
+
msgstr "Grups de subscriptors"
|
1072 |
|
1073 |
+
#: ../notification/notification-show.php:70 ../notification/notification-show.php:
|
1074 |
+
#: 78
|
1075 |
+
msgid "Post Categories / Custom Post Types"
|
1076 |
+
msgstr "Categories de les entrades / Tipus personalitzats d'entrades"
|
1077 |
|
1078 |
+
#: ../notification/notification-show.php:71 ../notification/notification-show.php:
|
1079 |
+
#: 79
|
1080 |
+
msgid "Notification Status"
|
1081 |
+
msgstr "Estat de la notificació"
|
1082 |
|
1083 |
+
#: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
|
1084 |
+
#: php:417 ../templates/template-preview.php:35
|
1085 |
+
msgid "Edit"
|
1086 |
+
msgstr "Editar"
|
1087 |
|
1088 |
+
#: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
|
1089 |
+
#: php:301 ../subscribers/view-subscriber-show.php:422
|
1090 |
+
msgid "Delete"
|
1091 |
+
msgstr "Esborrar"
|
1092 |
|
1093 |
+
#: ../notification/notification-show.php:143 ../sentmail/deliverreport-show.php:
|
1094 |
+
#: 128 ../sentmail/sentmail-show.php:180 ../subscribers/view-subscriber-show.php:
|
1095 |
+
#: 456
|
1096 |
+
msgid "No records available."
|
1097 |
+
msgstr "No hi ha registres disponibles."
|
1098 |
|
1099 |
+
#: ../sendmail/sendmail.php:18 ../subscribers/view-subscriber-show.php:17
|
1100 |
+
msgid "Click Here"
|
1101 |
+
msgstr "Clica aquí"
|
1102 |
|
1103 |
+
#: ../sendmail/sendmail.php:40
|
1104 |
+
msgid "Please select your mail subject."
|
1105 |
+
msgstr "Selecciona l'assumpte del email"
|
1106 |
|
1107 |
+
#: ../sendmail/sendmail.php:46
|
1108 |
+
msgid "Please select your mail type."
|
1109 |
+
msgstr "Selecciona el tipus d'email"
|
1110 |
|
1111 |
+
#: ../sendmail/sendmail.php:52
|
1112 |
+
msgid "Please select your group."
|
1113 |
+
msgstr "Selecciona el teu grup"
|
1114 |
|
1115 |
+
#: ../sendmail/sendmail.php:59
|
1116 |
+
msgid "Email sent successfully. "
|
1117 |
+
msgstr "El correu electrònic s'ha enviat correctament."
|
1118 |
|
1119 |
+
#: ../sendmail/sendmail.php:63
|
1120 |
+
msgid "Click here to check Statistics"
|
1121 |
+
msgstr "Cliqueu aquí per comprovar les estadístiques"
|
1122 |
|
1123 |
+
#: ../sendmail/sendmail.php:69
|
1124 |
+
msgid "Oops.. We are getting some error. mail not sending."
|
1125 |
+
msgstr "Vaja... Estem rebent algun error. El correu no s'envia."
|
1126 |
|
1127 |
+
#: ../sendmail/sendmail.php:97
|
1128 |
+
msgid "Use this to send newsletter emails to your subscribers."
|
1129 |
+
msgstr ""
|
1130 |
+
"Utilitzeu aquesta opció per enviar butlletins pel correu electrònic als seus "
|
1131 |
+
"subscriptors."
|
1132 |
|
1133 |
+
#: ../sendmail/sendmail.php:106
|
1134 |
+
msgid "Select Email Subject from available list"
|
1135 |
+
msgstr "Seleccioneu Assumpte del correu de la llista disponible"
|
1136 |
|
1137 |
+
#: ../sendmail/sendmail.php:133
|
1138 |
+
msgid "Select Email Type"
|
1139 |
+
msgstr "Seleccionar el tipus de correu electrònic"
|
1140 |
|
1141 |
+
#: ../sendmail/sendmail.php:140
|
1142 |
+
msgid "Send email via cron job"
|
1143 |
+
msgstr "Enviar email via cron"
|
1144 |
|
1145 |
+
#: ../sendmail/sendmail.php:147
|
1146 |
+
msgid "Select Subscribers group to Send Email"
|
1147 |
+
msgstr "Seleccioneu un grup de subscriptors per enviar correu electrònic"
|
1148 |
|
1149 |
+
#: ../sendmail/sendmail.php:179
|
1150 |
+
msgid "Recipients : 0 "
|
1151 |
+
msgstr "Destinataris: 0"
|
1152 |
|
1153 |
+
#: ../sendmail/sendmail.php:181
|
1154 |
+
#, php-format
|
1155 |
+
msgid "Recipients : %s"
|
1156 |
+
msgstr "Destinataris : %s"
|
1157 |
|
1158 |
+
#: ../sendmail/sendmail.php:184
|
1159 |
+
msgid ""
|
1160 |
+
"<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
|
1161 |
+
"that you change above Mail Type to Cron and Send Mail via Cron Job."
|
1162 |
+
"</strong><br>Click on Help for more information."
|
1163 |
+
msgstr ""
|
1164 |
+
"<br> compten <strong> Els destinataris són superiors a 100. <br> És molt "
|
1165 |
+
"recomanable que canviï mes Tipus de correu a Cron i enviar-lo via Cron Job. "
|
1166 |
+
"</ strong> <br> Feu clic a Ajuda per obtenir més informació ."
|
1167 |
|
1168 |
+
#: ../sendmail/sendmail.php:196 ../sendmail/sendmail.php:198
|
1169 |
+
msgid "Send Email"
|
1170 |
+
msgstr "Enviar el correu electrònic"
|
|
|
1171 |
|
1172 |
+
#: ../sendmail/sendmail.php:201
|
1173 |
+
msgid "Reset"
|
1174 |
+
msgstr "restablir"
|
1175 |
|
1176 |
+
#: ../sentmail/deliverreport-show.php:14
|
1177 |
+
msgid "Oops.. Unexpected error occurred. Please try again."
|
1178 |
+
msgstr "Vaja... S'ha produït un error inesperat. Si us plau torna-ho a provar."
|
1179 |
|
1180 |
+
#: ../sentmail/deliverreport-show.php:47 ../sentmail/sentmail-show.php:83
|
1181 |
+
msgid " << "
|
1182 |
+
msgstr " << "
|
|
|
|
|
1183 |
|
1184 |
+
#: ../sentmail/deliverreport-show.php:48 ../sentmail/sentmail-show.php:84
|
1185 |
+
msgid " >> "
|
1186 |
+
msgstr " >> "
|
1187 |
|
1188 |
+
#: ../sentmail/deliverreport-show.php:60
|
1189 |
+
msgid "Delivery Report"
|
1190 |
+
msgstr "Informe de lliurament"
|
1191 |
|
1192 |
+
#: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
|
1193 |
+
#: subscribers/view-subscriber-export.php:58 ../subscribers/view-subscriber-
|
1194 |
+
#: export.php:66
|
1195 |
+
msgid "Sno"
|
1196 |
+
msgstr "Sno"
|
1197 |
|
1198 |
+
#: ../sentmail/deliverreport-show.php:73 ../sentmail/deliverreport-show.php:84
|
1199 |
+
msgid "Email"
|
1200 |
+
msgstr "Email"
|
1201 |
|
1202 |
+
#: ../sentmail/deliverreport-show.php:74 ../sentmail/deliverreport-show.php:85 ..
|
1203 |
+
#: sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
|
1204 |
+
#: subscribers/view-subscriber-show.php:290
|
1205 |
+
msgid "Status"
|
1206 |
+
msgstr "Estat"
|
1207 |
|
1208 |
+
#: ../sentmail/deliverreport-show.php:75 ../sentmail/deliverreport-show.php:86 ..
|
1209 |
+
#: sentmail/sentmail-show.php:111 ../sentmail/sentmail-show.php:124
|
1210 |
+
msgid "Sent"
|
1211 |
+
msgstr "Enviat"
|
1212 |
|
1213 |
+
#: ../sentmail/deliverreport-show.php:76 ../sentmail/deliverreport-show.php:87
|
1214 |
+
msgid "Sent Date"
|
1215 |
+
msgstr "data d'enviament"
|
1216 |
|
1217 |
+
#: ../sentmail/deliverreport-show.php:77 ../sentmail/deliverreport-show.php:88
|
1218 |
+
msgid "Viewed Status"
|
1219 |
+
msgstr "Veure status"
|
1220 |
|
1221 |
+
#: ../sentmail/deliverreport-show.php:78 ../sentmail/deliverreport-show.php:89
|
1222 |
+
msgid "Viewed Date"
|
1223 |
+
msgstr "Veure data"
|
|
|
1224 |
|
1225 |
+
#: ../sentmail/sentmail-preview.php:27
|
1226 |
+
msgid "Preview Email"
|
1227 |
+
msgstr "Previsualització de correu electrònic"
|
1228 |
|
1229 |
+
#: ../sentmail/sentmail-preview.php:31
|
1230 |
msgid ""
|
1231 |
+
"This is how the email you sent may look. <br>Note: Different email services "
|
1232 |
+
"(like gmail, yahoo etc) display email content differently. So there could be "
|
1233 |
+
"a slight variation on how your customer will view the email content."
|
1234 |
msgstr ""
|
1235 |
+
"Així és com es veu el correu electrònic que has enviat. <br>Nota: Diferents "
|
1236 |
+
"serveis de correu electrònic (com gmail, yahoo etc) mostren contingut de "
|
1237 |
+
"correu electrònic de manera diferent. Per tant, podria haver-hi una lleugera "
|
1238 |
+
"variació sobre com el vostre client veurà el contingut del correu electrònic."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1239 |
|
1240 |
+
#: ../sentmail/sentmail-preview.php:53
|
1241 |
+
msgid "Back"
|
1242 |
+
msgstr "Enrera"
|
1243 |
|
1244 |
+
#: ../sentmail/sentmail-show.php:43
|
1245 |
+
msgid "Successfully deleted all reports except latest 10."
|
1246 |
+
msgstr "S'han eliminat tots els informes excepte els 10 últims."
|
1247 |
|
1248 |
+
#: ../sentmail/sentmail-show.php:97
|
1249 |
+
msgid "It will show reports for all Newsletters & Post Notification emails sent."
|
1250 |
+
msgstr "Es mostrarà informes de tots els Butlletins & Post notificació enviats."
|
1251 |
|
1252 |
+
#: ../sentmail/sentmail-show.php:107 ../sentmail/sentmail-show.php:120
|
1253 |
+
msgid "View Reports"
|
1254 |
+
msgstr "Veure informes"
|
1255 |
|
1256 |
+
#: ../sentmail/sentmail-show.php:109 ../sentmail/sentmail-show.php:122
|
1257 |
+
msgid "Type"
|
1258 |
+
msgstr "Tipus"
|
1259 |
|
1260 |
+
#: ../sentmail/sentmail-show.php:112 ../sentmail/sentmail-show.php:125
|
1261 |
+
msgid "Start Date"
|
1262 |
+
msgstr "Data d'inici"
|
1263 |
|
1264 |
+
#: ../sentmail/sentmail-show.php:113 ../sentmail/sentmail-show.php:126
|
1265 |
+
msgid "End Date"
|
1266 |
+
msgstr "Data final"
|
1267 |
|
1268 |
+
#: ../sentmail/sentmail-show.php:114 ../sentmail/sentmail-show.php:127
|
1269 |
+
msgid "Total"
|
1270 |
+
msgstr "Total"
|
1271 |
|
1272 |
+
#: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
|
1273 |
+
#: subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
|
1274 |
+
#: export.php:69 ../subscribers/view-subscriber-show.php:293
|
1275 |
+
msgid "Action"
|
1276 |
+
msgstr "Acció"
|
1277 |
|
1278 |
+
#: ../sentmail/sentmail-show.php:190
|
1279 |
+
msgid "Optimize Table & Delete Records"
|
1280 |
+
msgstr "Optimitzar la taula i eliminar registres"
|
1281 |
|
1282 |
+
#: ../sentmail/sentmail-show.php:199
|
1283 |
+
msgid ""
|
1284 |
+
"Note: Please click on <strong>Optimize Table & Delete Records</strong> "
|
1285 |
+
"button to delete all reports except latest 10."
|
1286 |
+
msgstr ""
|
1287 |
+
"Nota: Si us plau, feu clic al botó <strong> Optimitzar la taula i eliminar "
|
1288 |
+
"registres </ strong> per eliminar tots els informes excepte els 10 últims."
|
1289 |
|
1290 |
+
#: ../settings/setting-sync.php:16
|
1291 |
+
msgid "Table sync completed successfully."
|
1292 |
+
msgstr "Taula de sincronització completada amb èxit."
|
1293 |
|
1294 |
+
#: ../settings/setting-sync.php:29
|
1295 |
+
msgid "Sync plugin tables"
|
1296 |
+
msgstr "Taules de sincronització de plugin"
|
1297 |
|
1298 |
+
#: ../settings/setting-sync.php:33
|
1299 |
+
msgid "Click to sync tables"
|
1300 |
+
msgstr "Clica per sincronitzar les taules"
|
|
|
|
|
1301 |
|
1302 |
+
#: ../settings/settings-edit.php:23
|
1303 |
+
msgid "Admin"
|
1304 |
+
msgstr "Administrador"
|
1305 |
|
1306 |
+
#: ../settings/settings-edit.php:24
|
1307 |
+
msgid "Signup Confirmation"
|
1308 |
+
msgstr "Confirmació de registre"
|
1309 |
|
1310 |
+
#: ../settings/settings-edit.php:25
|
1311 |
+
msgid "Cron"
|
1312 |
+
msgstr "Cron"
|
1313 |
|
1314 |
+
#: ../settings/settings-edit.php:26
|
1315 |
+
msgid "User Roles"
|
1316 |
+
msgstr "Funcions d'usuari"
|
1317 |
|
1318 |
+
#: ../settings/settings-edit.php:67
|
1319 |
+
msgid "Save Settings"
|
1320 |
+
msgstr "Desa la configuració"
|
1321 |
|
1322 |
+
#: ../settings/settings-edit.php:78
|
1323 |
+
msgid "Sender of Notifications"
|
1324 |
+
msgstr "Remitent de Notificacions"
|
1325 |
|
1326 |
+
#: ../settings/settings-edit.php:79
|
1327 |
msgid ""
|
1328 |
+
"Choose a FROM name and FROM email address for all the emails to be sent from "
|
1329 |
+
"this plugin."
|
1330 |
msgstr ""
|
1331 |
+
"Triar un remitent i una adreça de correu electrònic per a tots els correus "
|
1332 |
+
"electrònics per ser enviats des d'aquest plugin."
|
1333 |
|
1334 |
+
#: ../settings/settings-edit.php:89
|
1335 |
+
msgid "Email Type"
|
1336 |
+
msgstr "Tipus de correu electrònic"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1337 |
|
1338 |
+
#: ../settings/settings-edit.php:90
|
|
|
1339 |
msgid ""
|
1340 |
+
"Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
|
1341 |
+
"Option 3 & 4 is to send emails with PHP method mail()."
|
1342 |
msgstr ""
|
1343 |
+
"L'opció 1 i 2 és per enviar emails amb el mètode predeterminat de Wordpress "
|
1344 |
+
"wp_mail(). L'opció 3 i 4 és per enviar emails amb el mètode PHP ()."
|
1345 |
|
1346 |
+
#: ../settings/settings-edit.php:94
|
1347 |
+
msgid "1. WP HTML MAIL"
|
1348 |
+
msgstr "1. WP HTML MAIL"
|
1349 |
|
1350 |
+
#: ../settings/settings-edit.php:95
|
1351 |
+
msgid "2. WP PLAINTEXT MAIL"
|
1352 |
+
msgstr "2. WP TEXT PLA MAIL"
|
1353 |
|
1354 |
+
#: ../settings/settings-edit.php:96
|
1355 |
+
msgid "3. PHP HTML MAIL"
|
1356 |
+
msgstr "3. PHP HTML MAIL"
|
1357 |
|
1358 |
+
#: ../settings/settings-edit.php:97
|
1359 |
+
msgid "4. PHP PLAINTEXT MAIL"
|
1360 |
+
msgstr "4. PHP TEXT PLA MAIL"
|
|
|
1361 |
|
1362 |
+
#: ../settings/settings-edit.php:104
|
1363 |
+
msgid "Opt-In Type"
|
1364 |
+
msgstr "Tipus d'Opt-in"
|
|
|
1365 |
|
1366 |
+
#: ../settings/settings-edit.php:105
|
1367 |
+
msgid ""
|
1368 |
+
"Double Opt-In : In this type, the subscriber is sent an activation link as "
|
1369 |
+
"soon as they subscribe to your list. They have to confirm their subscription "
|
1370 |
+
"by clicking on the activation link.<br />Single Opt-In : In this type, the "
|
1371 |
+
"subscriber is not asked to confirm their email address. They are subscribed "
|
1372 |
+
"directly in the list."
|
1373 |
+
msgstr ""
|
1374 |
+
"Double Opt-In : En aquest tipus, al subscriptor se li envia un enllaç "
|
1375 |
+
"d'activació tan aviat com es subscrigui a la vostra llista. Han de confirmar "
|
1376 |
+
"la seva subscripció fent clic a l'enllaç d'activació.<br />Single Opt-In : "
|
1377 |
+
"En aquest tipus, no es demana al subscriptor que confirmi la seva adreça de "
|
1378 |
+
"correu electrònic. Estan subscrits directament a la llista."
|
1379 |
|
1380 |
+
#: ../settings/settings-edit.php:109
|
1381 |
+
msgid "Double Opt In"
|
1382 |
+
msgstr "Doble Opt In"
|
1383 |
|
1384 |
+
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-add.php:155 ..
|
1385 |
+
#: subscribers/view-subscriber-edit.php:150 ../subscribers/view-subscriber-
|
1386 |
+
#: import.php:181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-
|
1387 |
+
#: subscriber-show.php:356
|
1388 |
+
msgid "Single Opt In"
|
1389 |
+
msgstr "Opt In sencill"
|
1390 |
|
1391 |
+
#: ../settings/settings-edit.php:116
|
1392 |
+
msgid "Image Size"
|
1393 |
+
msgstr "Mida de la imatge"
|
1394 |
|
1395 |
+
#: ../settings/settings-edit.php:117
|
1396 |
msgid ""
|
1397 |
+
"Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
|
1398 |
+
"Emails."
|
|
|
1399 |
msgstr ""
|
1400 |
+
"Seleccioneu la mida de la imatge {{POSTIMAGE}} que es mostrarà als correus "
|
1401 |
+
"electrònics de notificació de correu"
|
|
|
|
|
1402 |
|
1403 |
+
#: ../settings/settings-edit.php:121
|
1404 |
+
msgid "Full Size"
|
1405 |
+
msgstr "mida completa"
|
1406 |
|
1407 |
+
#: ../settings/settings-edit.php:122
|
1408 |
+
msgid "Medium Size"
|
1409 |
+
msgstr "Mida mitjana"
|
1410 |
+
|
1411 |
+
#: ../settings/settings-edit.php:129
|
1412 |
+
msgid "Admin Email Addresses"
|
1413 |
+
msgstr "Adreces email dels administradors"
|
1414 |
+
|
1415 |
+
#: ../settings/settings-edit.php:130
|
1416 |
msgid ""
|
1417 |
+
"Enter the admin email addresses that should receive notifications (separated "
|
1418 |
+
"by comma)."
|
1419 |
msgstr ""
|
1420 |
+
"Introduïu les adreces de correu electrònic d'administració que han de rebre "
|
1421 |
+
"notificacions (separades per comes)."
|
|
|
|
|
|
|
|
|
1422 |
|
1423 |
+
#: ../settings/settings-edit.php:136
|
1424 |
+
msgid "Notify Admin when a new subscriber signs up"
|
1425 |
+
msgstr "Notifica a Admin quan un nou subscriptor s'inscriu"
|
1426 |
|
1427 |
+
#: ../settings/settings-edit.php:137
|
1428 |
msgid ""
|
1429 |
+
"To send admin email notifications for the new subscriber. This option must "
|
1430 |
+
"be set to YES."
|
1431 |
msgstr ""
|
1432 |
+
"Per enviar notificacions per correu electrònic a l'administrador per un nou "
|
1433 |
+
"subscrit. Aquesta opció ha d'estar a YES."
|
1434 |
|
1435 |
+
#: ../settings/settings-edit.php:149
|
1436 |
+
msgid "Admin Email Subject on new subscriber sign up"
|
1437 |
+
msgstr ""
|
1438 |
+
"Assumpte del correu electrònic a l'administrador quan hi ha un subscripció "
|
1439 |
+
"nou"
|
1440 |
|
1441 |
+
#: ../settings/settings-edit.php:150
|
1442 |
+
msgid ""
|
1443 |
+
"Subject for the admin email whenever a new subscriber signs up and is "
|
1444 |
+
"confirmed."
|
1445 |
msgstr ""
|
1446 |
+
"Assumpte del correu electrònic a l'administració sempre que un subscriptor "
|
1447 |
+
"nou es registri i es confirmi."
|
1448 |
|
1449 |
+
#: ../settings/settings-edit.php:156
|
1450 |
+
msgid "Admin Email Content on new subscriber signs up"
|
1451 |
msgstr ""
|
1452 |
+
"Contingut de correu electrònic a l'administrador quan es registra un nou "
|
1453 |
+
"subscriptor"
|
1454 |
|
1455 |
+
#: ../settings/settings-edit.php:157
|
1456 |
+
msgid ""
|
1457 |
+
"Content for the admin email whenever a new subscriber signs up and is "
|
1458 |
+
"confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
|
1459 |
msgstr ""
|
1460 |
+
"Contingut per al correu electrònic d'administració cada vegada que un "
|
1461 |
+
"subscriptor nou es registra i es confirma.<br />Paraules clau disponibles: "
|
1462 |
+
"{{NAME}}, {{EMAIL}}, {{GROUP}}"
|
1463 |
|
1464 |
+
#: ../settings/settings-edit.php:164
|
1465 |
+
msgid "Sent Report Subject"
|
1466 |
+
msgstr "Assumpte del informe enviat"
|
1467 |
|
1468 |
+
#: ../settings/settings-edit.php:165
|
1469 |
+
msgid "Subject for the email report which will be sent to admin."
|
1470 |
+
msgstr "Assumpte de l'informe de correu electrònic que s'enviarà a l'administrador."
|
1471 |
|
1472 |
+
#: ../settings/settings-edit.php:171
|
1473 |
+
msgid "Sent Report Content"
|
1474 |
+
msgstr "Contingut del informe enviat"
|
1475 |
|
1476 |
+
#: ../settings/settings-edit.php:172
|
1477 |
+
msgid ""
|
1478 |
+
"Content for the email report which will be sent to admin.<br />Available "
|
1479 |
+
"Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
|
1480 |
+
msgstr ""
|
1481 |
+
"Contingut per a l'informe de correu electrònic que s'enviarà a "
|
1482 |
+
"l'administrador.<br />Paraules clau disponibles: {{COUNT}}, {{UNIQUE}}, "
|
1483 |
+
"{{STARTTIME}}, {{ENDTIME}}"
|
1484 |
|
1485 |
+
#: ../settings/settings-edit.php:183
|
1486 |
+
msgid "Double Opt-In Email Subject (Confirmation Email)"
|
1487 |
+
msgstr "Assumpte del email de doble Opt-in (correu electrònic de confirmació)"
|
1488 |
|
1489 |
+
#: ../settings/settings-edit.php:184
|
1490 |
+
msgid ""
|
1491 |
+
"Subject for the confirmation email to be sent for Double Opt-In whenever a "
|
1492 |
+
"subscriber signs up."
|
1493 |
+
msgstr ""
|
1494 |
+
"Assumpte per al correu electrònic de confirmació que s'enviarà sempre que un "
|
1495 |
+
"subscriptor s'inscrigui per Double Opt-In "
|
|
|
|
|
1496 |
|
1497 |
+
#: ../settings/settings-edit.php:190
|
1498 |
+
msgid "Double Opt-In Email Content (Confirmation Email)"
|
1499 |
+
msgstr ""
|
1500 |
+
"Contingut de correu electrònic pel sistema Double Opt-In (correu de "
|
1501 |
+
"confirmació)"
|
1502 |
|
1503 |
+
#: ../settings/settings-edit.php:191
|
|
|
1504 |
msgid ""
|
1505 |
+
"Content for the confirmation email to be sent for Double Opt-In whenever a "
|
1506 |
+
"subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
|
|
|
|
|
|
|
|
|
|
|
1507 |
msgstr ""
|
1508 |
+
"Contingut del correu electrònic de confirmació que s'enviarà a Double Opt-In "
|
1509 |
+
"sempre que un subscriptor s'inscrigui.<br />Paraules clau disponibles: "
|
1510 |
+
"{{NAME}}, {{LINK}}"
|
|
|
|
|
|
|
|
|
|
|
1511 |
|
1512 |
+
#: ../settings/settings-edit.php:197
|
1513 |
+
msgid "Double Opt-In Confirmation Link"
|
1514 |
+
msgstr "Link de confirmació pel sistema Double Opt-in"
|
1515 |
|
1516 |
+
#: ../settings/settings-edit.php:198
|
1517 |
+
msgid "It is a readonly field and you are advised not to modify it."
|
1518 |
+
msgstr "És un camp de només lectura i se li recomana no modificar-lo."
|
1519 |
+
|
1520 |
+
#: ../settings/settings-edit.php:204
|
1521 |
+
msgid ""
|
1522 |
+
"Text to display after an email address is successfully subscribed from "
|
1523 |
+
"Double Opt-In (Confirmation) Email"
|
1524 |
msgstr ""
|
1525 |
+
"Text que es mostrarà després que una adreça de correu electrònic s'ha "
|
1526 |
+
"subscrit correctament per Double Opt-In (email de confirmació)"
|
1527 |
|
1528 |
+
#: ../settings/settings-edit.php:205
|
1529 |
+
msgid ""
|
1530 |
+
"This text will be displayed once user clicks on email confirmation link from "
|
1531 |
+
"the Double Opt In (confirmation) Email."
|
1532 |
+
msgstr ""
|
1533 |
+
"Aquest text es mostrarà un cop que l'usuari faci clic a l'enllaç de "
|
1534 |
+
"confirmació del correu electrònic pel Doble Opt In (confirmació)"
|
1535 |
|
1536 |
+
#: ../settings/settings-edit.php:212
|
1537 |
+
msgid "Send Welcome Email to New Subscribers after Sign Up?"
|
1538 |
+
msgstr ""
|
1539 |
+
"Enviar uncorreu electrònic de benvinguda als subscriptors nous després de "
|
1540 |
+
"registrar-se?"
|
1541 |
|
1542 |
+
#: ../settings/settings-edit.php:213
|
1543 |
+
msgid ""
|
1544 |
+
"To send welcome email to subscriber after successful signup. This option "
|
1545 |
+
"must be set to YES."
|
1546 |
+
msgstr ""
|
1547 |
+
"Per enviar correu electrònic de benvinguda al subscriptor després del "
|
1548 |
+
"registre amb èxit. Aquesta opció ha d'estar a YES."
|
1549 |
|
1550 |
+
#: ../settings/settings-edit.php:224
|
1551 |
+
msgid "Subject for Welcome Email"
|
1552 |
+
msgstr "Assumpte del correu electrònic de benvinguda"
|
1553 |
|
1554 |
+
#: ../settings/settings-edit.php:225
|
1555 |
msgid ""
|
1556 |
+
"Subject for the subscriber welcome email. This will be sent whenever a "
|
1557 |
+
"user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
|
1558 |
+
"Opt-In) successfully."
|
1559 |
msgstr ""
|
1560 |
+
"Assumpte del correu electrònic de benvinguda als subscriptors. Això "
|
1561 |
+
"s'enviarà sempre que s'hagi confirmat un email de l'usuari (si és Double Opt-"
|
1562 |
+
"In) / o subscrit (si és Opt-In individual) amb èxit."
|
1563 |
|
1564 |
+
#: ../settings/settings-edit.php:231
|
1565 |
+
msgid "Email Content for Welcome Email"
|
1566 |
+
msgstr "Contingut del correu electrònic de benvinguda"
|
1567 |
|
1568 |
+
#: ../settings/settings-edit.php:232
|
1569 |
+
msgid ""
|
1570 |
+
"Content for the subscriber welcome email whenever a user's email is either "
|
1571 |
+
"confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
|
1572 |
+
"<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
|
1573 |
+
msgstr ""
|
1574 |
+
"Contingut per al correu electrònic de benvinguda dels subscriptors sempre "
|
1575 |
+
"que es confirmi el correu electrònic d'un usuari (si és per Double Opt in) / "
|
1576 |
+
"o es subscrigui (per Opt in sencill) amb èxit.<br />Paraules clau "
|
1577 |
+
"disponibles: {{NAME}}, {{GROUP}}, {{LINK}}"
|
1578 |
|
1579 |
+
#: ../settings/settings-edit.php:240
|
1580 |
+
msgid "Unsubscribe Link"
|
1581 |
+
msgstr "Enllaç per a donar-se de baixa"
|
1582 |
|
1583 |
+
#: ../settings/settings-edit.php:241
|
1584 |
+
msgid ""
|
1585 |
+
"This unsubscribe link is automatically added to all the emails that are sent "
|
1586 |
+
"from this plugin. It is a readonly field and you are advised not to modify "
|
1587 |
+
"it."
|
1588 |
+
msgstr ""
|
1589 |
+
"Aquest enllaç de cancel·lació de subscripció s'afegeix automàticament a tots "
|
1590 |
+
"els correus electrònics que s'envien des d'aquest complement. Es tracta d'un "
|
1591 |
+
"camp de lectura i se us aconsella no modificar-lo."
|
1592 |
|
1593 |
+
#: ../settings/settings-edit.php:247
|
1594 |
+
msgid "Unsubscribe Text in Email"
|
1595 |
+
msgstr "Text de donar-se de baixa en el correu electrònic"
|
1596 |
|
1597 |
+
#: ../settings/settings-edit.php:248
|
1598 |
+
msgid ""
|
1599 |
+
"The text for the unsubscribe link. This text is automatically added with "
|
1600 |
+
"unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
|
1601 |
+
msgstr ""
|
1602 |
+
"Text del enllaç de cancel·lar la subscripció. Aquest text s'afegeix "
|
1603 |
+
"automàticament amb l'enllaç de baixa al correu electrònic.<br />Paraules "
|
1604 |
+
"clau disponibles: {{LINK}}"
|
1605 |
|
1606 |
+
#: ../settings/settings-edit.php:254
|
1607 |
+
msgid "Text to display after an email address is unsubscribed"
|
1608 |
+
msgstr "Text a mostrar després que una adreça de correu electrònic és donada de baixa"
|
1609 |
|
1610 |
+
#: ../settings/settings-edit.php:255
|
1611 |
+
msgid ""
|
1612 |
+
"This text will be displayed once user clicks on unsubscribe link from the "
|
1613 |
+
"email."
|
1614 |
msgstr ""
|
1615 |
+
"Aquest text es mostrarà una vegada que l'usuari faci clic a l'enllaç de "
|
1616 |
+
"baixa de l'adreça electrònica."
|
1617 |
|
1618 |
+
#: ../settings/settings-edit.php:262
|
1619 |
+
msgid "Error in the Subscribe / Confirmation Link"
|
1620 |
+
msgstr "Error en l'enllaç de subscripció / confirmació"
|
1621 |
|
1622 |
+
#: ../settings/settings-edit.php:263
|
1623 |
+
msgid ""
|
1624 |
+
"Default message to display if there is any issue while clicking on subscribe "
|
1625 |
+
"/ confirmation link from the Double Opt-In (Confirmation) emails."
|
1626 |
msgstr ""
|
1627 |
+
"Missatge predeterminat per mostrar si hi ha algun problema mentre feu clic a "
|
1628 |
+
"l'enllaç de subscripció / confirmació des dels correus electrònics de Double "
|
1629 |
+
"Opt-In (confirmació)."
|
|
|
|
|
|
|
1630 |
|
1631 |
+
#: ../settings/settings-edit.php:269
|
1632 |
+
msgid "Error in the Unsubscribe Link"
|
1633 |
+
msgstr "Error amb l'enllaç de baixa"
|
1634 |
|
1635 |
+
#: ../settings/settings-edit.php:270
|
1636 |
+
msgid ""
|
1637 |
+
"Default message to display if there is any issue while clicking on "
|
1638 |
+
"unsubscribe link from the emails."
|
1639 |
+
msgstr ""
|
1640 |
+
"Missatge predeterminat per mostrar si hi ha cap problema mentre feu clic a "
|
1641 |
+
"l'enllaç de baixa dels correus electrònics."
|
1642 |
|
1643 |
+
#: ../settings/settings-edit.php:282
|
1644 |
+
msgid "Select user roles who can access following menus. Only Admin can change this."
|
1645 |
+
msgstr ""
|
1646 |
+
"Seleccioneu els rols d'usuaris que poden accedir als menús següents. Només "
|
1647 |
+
"administrador pot canviar això."
|
1648 |
|
1649 |
+
#: ../settings/settings-edit.php:288
|
1650 |
+
msgid "Subscribers Menu"
|
1651 |
+
msgstr "Menú dels subscriptors"
|
1652 |
|
1653 |
+
#: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
|
1654 |
+
#: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
|
1655 |
+
#: settings/settings-edit.php:340
|
1656 |
+
msgid "Administrator Only"
|
1657 |
+
msgstr "Només l'administrador"
|
1658 |
|
1659 |
+
#: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
|
1660 |
+
#: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
|
1661 |
+
#: settings/settings-edit.php:341
|
1662 |
+
msgid "Administrator/Editor"
|
1663 |
+
msgstr "Administrador/editor"
|
1664 |
|
1665 |
+
#: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
|
1666 |
+
#: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
|
1667 |
+
#: settings/settings-edit.php:342
|
1668 |
+
msgid "Administrator/Editor/Author/Contributor"
|
1669 |
+
msgstr "Administrador/editor/autor/contribuidor"
|
1670 |
|
1671 |
+
#: ../settings/settings-edit.php:300
|
1672 |
+
msgid "Templates Menu"
|
1673 |
+
msgstr "Menú de plantilles"
|
1674 |
|
1675 |
+
#: ../settings/settings-edit.php:312
|
1676 |
+
msgid "Post Notifications Menu"
|
1677 |
+
msgstr "Menú de notificacionns"
|
1678 |
|
1679 |
+
#: ../settings/settings-edit.php:336
|
1680 |
+
msgid "Reports Menu"
|
1681 |
+
msgstr "menú d'informes"
|
1682 |
|
1683 |
+
#: ../settings/settings-edit.php:353
|
1684 |
+
msgid "Cron job URL"
|
1685 |
+
msgstr "URL de treball del Cron"
|
1686 |
|
1687 |
+
#: ../settings/settings-edit.php:354
|
1688 |
msgid ""
|
1689 |
+
"This is your Cron Job URL. It is a readonly field and you are advised not to "
|
1690 |
+
"modify it."
|
1691 |
msgstr ""
|
1692 |
+
"Aquesta és la seva URL Cron Job. És un camp de només lectura i se li "
|
1693 |
+
"recomana no modificar-lo."
|
|
|
|
|
|
|
|
|
1694 |
|
1695 |
+
#: ../settings/settings-edit.php:363
|
1696 |
+
msgid "Email Count"
|
1697 |
+
msgstr "Comte de correu electrònic"
|
1698 |
|
1699 |
+
#: ../settings/settings-edit.php:364
|
1700 |
+
msgid "Number of emails that you want to trigger per hour."
|
1701 |
+
msgstr "Nombre de missatges de correu electrònic que voleu enviar per hora."
|
1702 |
|
1703 |
+
#: ../settings/settings-edit.php:369
|
1704 |
+
msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
|
|
|
|
|
1705 |
msgstr ""
|
1706 |
+
"(El vostre proveïdor d'allotjament web té límits. Us suggerim 50 correus "
|
1707 |
+
"electrònics per hora per anar segurs.)"
|
|
|
1708 |
|
1709 |
+
#: ../settings/settings-edit.php:374
|
1710 |
+
msgid "Cron Report"
|
1711 |
+
msgstr "Informe Cron"
|
1712 |
+
|
1713 |
+
#: ../settings/settings-edit.php:375
|
1714 |
msgid ""
|
1715 |
+
"Email to admin whenever a cron URL is triggered from your server.<br "
|
1716 |
+
"/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
|
1717 |
msgstr ""
|
1718 |
+
"Envieu un missatge de correu electrònic a l'administrador cada cop que "
|
1719 |
+
"s'activi una URL cron del vostre servidor.<br />Paraules clau disponibles: "
|
1720 |
+
"{{DATE}}, {{SUBJECT}}, {{COUNT}}"
|
|
|
|
|
|
|
|
|
1721 |
|
1722 |
+
#: ../settings/settings-edit.php:385
|
1723 |
+
msgid "What is Cron (auto emails) and how to setup Cron Job?"
|
1724 |
+
msgstr "El que és Cron (correus electrònics automàtics) i com configurar Cron Job?"
|
1725 |
|
1726 |
+
#: ../settings/settings-edit.php:386
|
1727 |
+
msgid ""
|
1728 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
1729 |
+
"schedule-cron-emails/?"
|
1730 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
|
1731 |
+
"Cron?</a>"
|
1732 |
+
msgstr ""
|
1733 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
1734 |
+
"schedule-cron-emails/?"
|
1735 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Què és "
|
1736 |
+
"Cron?</a>"
|
1737 |
|
1738 |
+
#: ../settings/settings-edit.php:387
|
1739 |
+
msgid ""
|
1740 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
1741 |
+
"schedule-cron-emails-in-cpanel/?"
|
1742 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
|
1743 |
+
"job in cPanel</a>"
|
1744 |
+
msgstr ""
|
1745 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
1746 |
+
"schedule-cron-emails-in-cpanel/?"
|
1747 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configureu "
|
1748 |
+
"el treball cron a cPanel</a>"
|
1749 |
|
1750 |
+
#: ../settings/settings-edit.php:388
|
1751 |
msgid ""
|
1752 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
1753 |
+
"schedule-cron-emails-in-parallels-plesk/?"
|
1754 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
|
1755 |
+
"job in Plesk</a>"
|
1756 |
msgstr ""
|
1757 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
1758 |
+
"schedule-cron-emails-in-parallels-plesk/?"
|
1759 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configurar "
|
1760 |
+
"el treball cron a Plesk</a>"
|
1761 |
|
1762 |
+
#: ../settings/settings-edit.php:389
|
1763 |
msgid ""
|
1764 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
|
1765 |
+
"if-hosting-doesnt-support-cron-jobs/?"
|
1766 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
|
1767 |
+
"does not support cron jobs?</a>"
|
1768 |
msgstr ""
|
1769 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
|
1770 |
+
"if-hosting-doesnt-support-cron-jobs/?"
|
1771 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">L'allotjame"
|
1772 |
+
"nt no és compatible amb els treballs de cron?</a>"
|
1773 |
|
1774 |
+
#: ../settings/settings-edit.php:504
|
1775 |
+
msgid "Please enter sender of notifications from name."
|
1776 |
+
msgstr "Si us plau, introdueixi el remitent de les notificacions des de nom."
|
1777 |
|
1778 |
+
#: ../settings/settings-edit.php:509
|
1779 |
+
msgid "Please enter sender of notifications from email."
|
1780 |
+
msgstr "Si us plau, introdueixi el remitent de les notificacions des del email"
|
1781 |
|
1782 |
+
#: ../settings/settings-edit.php:553
|
1783 |
+
msgid "Please enter valid mail count."
|
1784 |
+
msgstr "Si us plau, introdueix un compte de correu electrònic vàlid."
|
1785 |
|
1786 |
+
#: ../settings/settings-edit.php:566
|
1787 |
+
msgid "Settings Saved."
|
1788 |
+
msgstr "Configuració guardada"
|
1789 |
|
1790 |
+
#: ../settings/settings-edit.php:569
|
1791 |
+
msgid "Oops, unable to update."
|
1792 |
+
msgstr "Vaja, no es pot actualitzar."
|
1793 |
|
1794 |
+
#: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
|
1795 |
+
#: php:54
|
1796 |
+
msgid "Please enter subscriber email address."
|
1797 |
+
msgstr "Si us plau, introdueixi l'adreça de correu electrònic del subscriptor."
|
1798 |
|
1799 |
+
#: ../subscribers/view-subscriber-add.php:52
|
1800 |
+
msgid "Please select or create your group for this email."
|
1801 |
+
msgstr "Si us plau seleccioni o creu el seu grup per a aquest correu electrònic."
|
1802 |
|
1803 |
+
#: ../subscribers/view-subscriber-add.php:59
|
1804 |
+
msgid ""
|
1805 |
+
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1806 |
+
"the group name."
|
1807 |
msgstr ""
|
1808 |
+
"Error: Els caràcters especials (['^$%&*()}{@#~?><>,|=_+\\\"]) no estan "
|
1809 |
+
"permesos en el nom del grup."
|
1810 |
|
1811 |
+
#: ../subscribers/view-subscriber-add.php:69
|
1812 |
+
msgid "Subscriber has been saved."
|
1813 |
+
msgstr "El subscriptor s'ha guardat"
|
1814 |
|
1815 |
+
#: ../subscribers/view-subscriber-add.php:71
|
1816 |
+
msgid "Subscriber already exists."
|
1817 |
+
msgstr "Aquest subscriptor ja existeix"
|
1818 |
|
1819 |
+
#: ../subscribers/view-subscriber-add.php:74
|
1820 |
+
msgid "Invalid Email."
|
1821 |
+
msgstr "Email no vàlid"
|
1822 |
|
1823 |
+
#: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
|
1824 |
+
#: php:109 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
|
1825 |
+
#: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
|
1826 |
+
#: subscribers/view-subscriber-sync.php:89
|
1827 |
+
msgid "Add New Subscriber"
|
1828 |
+
msgstr "Afegir nou subscriptor"
|
1829 |
|
1830 |
+
#: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
|
1831 |
+
#: php:110 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
|
1832 |
+
#: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
|
1833 |
+
#: subscribers/view-subscriber-sync.php:90
|
1834 |
+
msgid "Import"
|
1835 |
+
msgstr "Importar"
|
1836 |
|
1837 |
+
#: ../subscribers/view-subscriber-add.php:116 ../subscribers/view-subscriber-edit.
|
1838 |
+
#: php:111 ../subscribers/view-subscriber-import.php:147 ../subscribers/view-
|
1839 |
+
#: subscriber-show.php:245 ../subscribers/view-subscriber-sync.php:91
|
1840 |
+
msgid "Export"
|
1841 |
+
msgstr "Exportar"
|
1842 |
|
1843 |
+
#: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
|
1844 |
+
#: php:112 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
|
1845 |
+
#: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
|
1846 |
+
#: subscribers/view-subscriber-sync.php:143
|
1847 |
+
msgid "Sync"
|
1848 |
+
msgstr "Sincronitzar"
|
|
|
|
|
|
|
1849 |
|
1850 |
+
#: ../subscribers/view-subscriber-add.php:127
|
1851 |
+
msgid "Enter Subscriber's Full name"
|
1852 |
+
msgstr "Entra el nom complet del subscriptor"
|
1853 |
|
1854 |
+
#: ../subscribers/view-subscriber-add.php:137
|
1855 |
+
msgid "Enter Subscriber's Email Address"
|
1856 |
+
msgstr "Entra l'adreça email del subscriptor"
|
1857 |
|
1858 |
+
#: ../subscribers/view-subscriber-add.php:147
|
1859 |
+
msgid "Select Subscriber's Status"
|
1860 |
+
msgstr "Selecciona l'estat del subscriptor"
|
1861 |
|
1862 |
+
#: ../subscribers/view-subscriber-add.php:152 ../subscribers/view-subscriber-edit.
|
1863 |
+
#: php:147 ../subscribers/view-subscriber-import.php:178 ../subscribers/view-
|
1864 |
+
#: subscriber-show.php:323 ../subscribers/view-subscriber-show.php:353
|
1865 |
+
msgid "Confirmed"
|
1866 |
+
msgstr "Confirmat"
|
1867 |
|
1868 |
+
#: ../subscribers/view-subscriber-add.php:153 ../subscribers/view-subscriber-edit.
|
1869 |
+
#: php:148 ../subscribers/view-subscriber-import.php:179 ../subscribers/view-
|
1870 |
+
#: subscriber-show.php:324 ../subscribers/view-subscriber-show.php:354
|
1871 |
+
msgid "Unconfirmed"
|
1872 |
+
msgstr "Per confirmar"
|
1873 |
+
|
1874 |
+
#: ../subscribers/view-subscriber-add.php:154 ../subscribers/view-subscriber-edit.
|
1875 |
+
#: php:149 ../subscribers/view-subscriber-import.php:180 ../subscribers/view-
|
1876 |
+
#: subscriber-show.php:325 ../subscribers/view-subscriber-show.php:355
|
1877 |
+
msgid "Unsubscribed"
|
1878 |
+
msgstr "No subscrit"
|
1879 |
+
|
1880 |
+
#: ../subscribers/view-subscriber-add.php:162
|
1881 |
+
msgid "Select (or) Create Group for Subscriber"
|
1882 |
+
msgstr "Seleccionar (o) Crear grup de subscriptors"
|
1883 |
+
|
1884 |
+
#: ../subscribers/view-subscriber-add.php:178 ../subscribers/view-subscriber-
|
1885 |
+
#: import.php:205
|
1886 |
+
msgid "(or)"
|
1887 |
+
msgstr "(o)"
|
1888 |
+
|
1889 |
+
#: ../subscribers/view-subscriber-add.php:187
|
1890 |
+
msgid "Add Subscriber"
|
1891 |
+
msgstr "Afegit subscriptor"
|
1892 |
|
1893 |
+
#: ../subscribers/view-subscriber-edit.php:64
|
1894 |
+
msgid "Error: Special characters are not allowed in the group name."
|
1895 |
+
msgstr "Error: Caràcters especials no estan permesos en el nom del grup."
|
1896 |
|
1897 |
+
#: ../subscribers/view-subscriber-edit.php:74
|
1898 |
+
msgid "Subscriber details updated."
|
1899 |
+
msgstr "Dades del subscriptor guardades"
|
1900 |
|
1901 |
+
#: ../subscribers/view-subscriber-edit.php:76
|
1902 |
+
msgid "Subscriber already exists for this group."
|
1903 |
+
msgstr "Aquest subscriptor ja existeix en aquest grup"
|
1904 |
|
1905 |
+
#: ../subscribers/view-subscriber-edit.php:108
|
1906 |
+
msgid "Edit Subscriber"
|
1907 |
+
msgstr "Edita subscriptor"
|
1908 |
|
1909 |
+
#: ../subscribers/view-subscriber-edit.php:122
|
1910 |
+
msgid "Subscriber's Full Name"
|
1911 |
+
msgstr "Nom complet del subscriptor"
|
1912 |
|
1913 |
+
#: ../subscribers/view-subscriber-edit.php:132
|
1914 |
+
msgid "Subscriber's Email Address"
|
1915 |
+
msgstr "Adreça email del subscriptor"
|
1916 |
|
1917 |
+
#: ../subscribers/view-subscriber-edit.php:142
|
1918 |
+
msgid "Update Subscriber's Status"
|
1919 |
+
msgstr "Actualitza l'estat del subscriptor"
|
1920 |
|
1921 |
+
#: ../subscribers/view-subscriber-edit.php:157
|
1922 |
+
msgid "Update Subscriber's Group"
|
1923 |
+
msgstr "Actualitza el grup del subscriptor "
|
1924 |
|
1925 |
+
#: ../subscribers/view-subscriber-export.php:47
|
1926 |
+
msgid "Export Email Addresses"
|
1927 |
+
msgstr "Exportar adreces d'email"
|
|
|
1928 |
|
1929 |
+
#: ../subscribers/view-subscriber-export.php:59 ../subscribers/view-subscriber-
|
1930 |
+
#: export.php:67
|
1931 |
+
msgid "Type of List to Export"
|
1932 |
+
msgstr "Tipus de llista per exportar"
|
1933 |
|
1934 |
+
#: ../subscribers/view-subscriber-export.php:60 ../subscribers/view-subscriber-
|
1935 |
+
#: export.php:68
|
1936 |
+
msgid "Total Emails Count"
|
1937 |
+
msgstr "Comptador de correus electrònics."
|
1938 |
|
1939 |
+
#: ../subscribers/view-subscriber-export.php:74
|
1940 |
+
msgid "1"
|
1941 |
+
msgstr "1"
|
1942 |
|
1943 |
+
#: ../subscribers/view-subscriber-export.php:75
|
1944 |
+
msgid "All Subscribers"
|
1945 |
+
msgstr "Tots els subscriptors"
|
|
|
1946 |
|
1947 |
+
#: ../subscribers/view-subscriber-export.php:77 ../subscribers/view-subscriber-
|
1948 |
+
#: export.php:83 ../subscribers/view-subscriber-export.php:89 ../subscribers/view-
|
1949 |
+
#: subscriber-export.php:95 ../subscribers/view-subscriber-export.php:101
|
1950 |
+
msgid "Click to Export in CSV"
|
1951 |
+
msgstr "Feu clic a Exportar a CSV"
|
1952 |
|
1953 |
+
#: ../subscribers/view-subscriber-export.php:80
|
1954 |
+
msgid "2"
|
1955 |
+
msgstr "2"
|
|
|
1956 |
|
1957 |
+
#: ../subscribers/view-subscriber-export.php:81
|
1958 |
+
msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
|
1959 |
+
msgstr "Subscriptors actius (Estat: confirmat i alta única)"
|
|
|
1960 |
|
1961 |
+
#: ../subscribers/view-subscriber-export.php:86
|
1962 |
+
msgid "3"
|
1963 |
+
msgstr "3"
|
|
|
1964 |
|
1965 |
+
#: ../subscribers/view-subscriber-export.php:87
|
1966 |
+
msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
|
1967 |
+
msgstr "Subscriptors inactius (Estat: no confirmat i no subscrit)"
|
|
|
1968 |
|
1969 |
+
#: ../subscribers/view-subscriber-export.php:92
|
1970 |
+
msgid "4"
|
1971 |
+
msgstr "4"
|
|
|
1972 |
|
1973 |
+
#: ../subscribers/view-subscriber-export.php:93
|
1974 |
+
msgid "WordPress Registered Users"
|
1975 |
+
msgstr "Usuaris registrats de WordPress"
|
|
|
1976 |
|
1977 |
+
#: ../subscribers/view-subscriber-export.php:98
|
1978 |
+
msgid "5"
|
1979 |
+
msgstr "5"
|
|
|
1980 |
|
1981 |
+
#: ../subscribers/view-subscriber-export.php:99
|
1982 |
+
msgid "Commented Authors"
|
1983 |
+
msgstr "Autors dels comentaris"
|
|
|
1984 |
|
1985 |
+
#: ../subscribers/view-subscriber-import.php:45
|
|
|
1986 |
msgid ""
|
1987 |
+
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1988 |
+
"the Group name."
|
1989 |
msgstr ""
|
1990 |
+
"Error: els caràcters especials (['^$%&*()}{@#~?><>,|=_+\\\"]) no es permeten "
|
1991 |
+
"en el nom del grup"
|
1992 |
|
1993 |
+
#: ../subscribers/view-subscriber-import.php:95
|
1994 |
+
msgid "email imported."
|
1995 |
+
msgstr "email importat"
|
|
|
1996 |
|
1997 |
+
#: ../subscribers/view-subscriber-import.php:96
|
1998 |
+
msgid "email already exists."
|
1999 |
+
msgstr "Aquest email ja existeix"
|
|
|
2000 |
|
2001 |
+
#: ../subscribers/view-subscriber-import.php:97
|
2002 |
+
msgid "email are invalid."
|
2003 |
+
msgstr "aquest email no és vàlid"
|
|
|
2004 |
|
2005 |
+
#: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
|
2006 |
+
#: import.php:129
|
2007 |
+
msgid "Click here"
|
2008 |
+
msgstr "Clica aquí"
|
2009 |
|
2010 |
+
#: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
|
2011 |
+
#: import.php:129
|
2012 |
+
msgid " to view details."
|
2013 |
+
msgstr "per veure els detalls."
|
2014 |
|
2015 |
+
#: ../subscribers/view-subscriber-import.php:108
|
2016 |
+
msgid "File Upload Failed."
|
2017 |
+
msgstr "Ha fallat la pujada del fitxer"
|
|
|
|
|
|
|
|
|
|
|
2018 |
|
2019 |
+
#: ../subscribers/view-subscriber-import.php:145
|
2020 |
+
msgid "Import Email Addresses"
|
2021 |
+
msgstr "Importar adreces d'email"
|
|
|
2022 |
|
2023 |
+
#: ../subscribers/view-subscriber-import.php:158
|
2024 |
+
msgid "Select CSV file"
|
2025 |
+
msgstr "Seleccionar fitxer CSV"
|
|
|
2026 |
|
2027 |
+
#: ../subscribers/view-subscriber-import.php:160
|
2028 |
+
msgid "Check CSV structure "
|
2029 |
+
msgstr "Comprovi estructura CSV"
|
|
|
|
|
|
|
2030 |
|
2031 |
+
#: ../subscribers/view-subscriber-import.php:161
|
2032 |
+
msgid "from here"
|
2033 |
+
msgstr "Des d'aquí"
|
|
|
2034 |
|
2035 |
+
#: ../subscribers/view-subscriber-import.php:172
|
2036 |
+
msgid "Select Subscribers Email Status"
|
2037 |
+
msgstr "Seleccioni l'estat dels emails dels subscriptors"
|
|
|
2038 |
|
2039 |
+
#: ../subscribers/view-subscriber-import.php:188
|
2040 |
+
msgid "Select (or) Create Group for Subscribers"
|
2041 |
+
msgstr "Selecciona o crea grup pels subscriptors"
|
|
|
2042 |
|
2043 |
+
#: ../subscribers/view-subscriber-show.php:45
|
2044 |
+
msgid "Selected details does not exists."
|
2045 |
+
msgstr "Les dades seleccionades no existeixen."
|
2046 |
+
|
2047 |
+
#: ../subscribers/view-subscriber-show.php:56 ../subscribers/view-subscriber-show.
|
2048 |
+
#: php:95
|
2049 |
+
msgid "Record deleted."
|
2050 |
+
msgstr "Registre eliminat."
|
2051 |
|
2052 |
+
#: ../subscribers/view-subscriber-show.php:67
|
2053 |
+
msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
|
2054 |
+
msgstr ""
|
2055 |
+
"Per enviar correu electrònic de confirmació, si us plau, canvieu l'opció de "
|
2056 |
+
"Opt-in a Double Opt In."
|
2057 |
|
2058 |
+
#: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
|
2059 |
+
#: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
|
2060 |
+
#: subscriber-show.php:217
|
2061 |
+
msgid "No record was selected."
|
2062 |
+
msgstr "No has seleccionat cap registre"
|
2063 |
|
2064 |
+
#: ../subscribers/view-subscriber-show.php:115
|
2065 |
+
msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
|
2066 |
+
msgstr ""
|
2067 |
+
"Per enviar el correu de confirmació, si us plau, canvieu l'opció de Opt-in a "
|
2068 |
+
"Double Opt In."
|
2069 |
|
2070 |
+
#: ../subscribers/view-subscriber-show.php:164
|
2071 |
+
msgid "Subscribers Group updated."
|
2072 |
+
msgstr "Grup de subscriptors actualitzat"
|
|
|
2073 |
|
2074 |
+
#: ../subscribers/view-subscriber-show.php:169
|
2075 |
+
msgid "Please select New group to update."
|
2076 |
+
msgstr "Selecciona nou grup per actualitzar."
|
|
|
2077 |
|
2078 |
+
#: ../subscribers/view-subscriber-show.php:203
|
2079 |
+
msgid "Subscribers Status updated."
|
2080 |
+
msgstr "Estat des subscriptors actualitzat."
|
|
|
2081 |
|
2082 |
+
#: ../subscribers/view-subscriber-show.php:208
|
2083 |
+
msgid "Please select New Status to update."
|
2084 |
+
msgstr "Selecciona nou estat per actualitzar"
|
|
|
2085 |
|
2086 |
+
#: ../subscribers/view-subscriber-show.php:258
|
2087 |
+
#, php-format
|
2088 |
+
msgid "Active Subscribers: %s"
|
2089 |
+
msgstr "Subscriptors actius: %s"
|
2090 |
|
2091 |
+
#: ../subscribers/view-subscriber-show.php:288
|
2092 |
+
msgid "Email Address"
|
2093 |
+
msgstr "Adreça del correu electrònic"
|
|
|
2094 |
|
2095 |
+
#: ../subscribers/view-subscriber-show.php:291
|
2096 |
+
msgid "Group"
|
2097 |
+
msgstr "Grup"
|
|
|
2098 |
|
2099 |
+
#: ../subscribers/view-subscriber-show.php:292
|
2100 |
+
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
2101 |
+
msgstr "Data i hora d'inscripció<br>(A-M-D H:M:S)"
|
|
|
2102 |
|
2103 |
+
#: ../subscribers/view-subscriber-show.php:300
|
2104 |
+
msgid "Bulk Actions"
|
2105 |
+
msgstr "Accions en bloc"
|
|
|
2106 |
|
2107 |
+
#: ../subscribers/view-subscriber-show.php:302 ../subscribers/view-subscriber-
|
2108 |
+
#: show.php:413
|
2109 |
+
msgid "Resend Confirmation"
|
2110 |
+
msgstr "Reenvia confirmació"
|
2111 |
|
2112 |
+
#: ../subscribers/view-subscriber-show.php:304
|
2113 |
+
msgid "Update Subscribers Status"
|
2114 |
+
msgstr "Actualitzar l'estat dels subscriptors"
|
|
|
2115 |
|
2116 |
+
#: ../subscribers/view-subscriber-show.php:307
|
2117 |
+
msgid "Select Group"
|
2118 |
+
msgstr "Selecciona un grup"
|
|
|
2119 |
|
2120 |
+
#: ../subscribers/view-subscriber-show.php:322
|
2121 |
+
msgid "Select Status"
|
2122 |
+
msgstr "Selecciona estat"
|
|
|
2123 |
|
2124 |
+
#: ../subscribers/view-subscriber-show.php:328
|
2125 |
+
msgid "Apply"
|
2126 |
+
msgstr "Aplicar"
|
|
|
2127 |
|
2128 |
+
#: ../subscribers/view-subscriber-show.php:335
|
2129 |
+
msgid "All Groups"
|
2130 |
+
msgstr "Tots els grups"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2131 |
|
2132 |
+
#: ../subscribers/view-subscriber-show.php:352
|
2133 |
+
msgid "All Status"
|
2134 |
+
msgstr "Tots els estats"
|
|
|
2135 |
|
2136 |
+
#: ../subscribers/view-subscriber-show.php:359
|
2137 |
+
msgid "1 to 500 emails"
|
2138 |
+
msgstr "1 a 500 emails"
|
2139 |
|
2140 |
+
#: ../subscribers/view-subscriber-show.php:360
|
2141 |
+
msgid "501 to 1000"
|
2142 |
+
msgstr "501 a 1000"
|
2143 |
|
2144 |
+
#: ../subscribers/view-subscriber-show.php:361
|
2145 |
+
msgid "1001 to 1500"
|
2146 |
+
msgstr "1001 a 1500"
|
2147 |
|
2148 |
+
#: ../subscribers/view-subscriber-show.php:362
|
2149 |
+
msgid "1501 to 2000"
|
2150 |
+
msgstr "1501 a 2000"
|
2151 |
|
2152 |
+
#: ../subscribers/view-subscriber-show.php:363
|
2153 |
+
msgid "2001 to 4000"
|
2154 |
+
msgstr "2001 a 4000"
|
2155 |
|
2156 |
+
#: ../subscribers/view-subscriber-show.php:364
|
2157 |
+
msgid "4001 to 6000"
|
2158 |
+
msgstr "4001 a 6000"
|
2159 |
|
2160 |
+
#: ../subscribers/view-subscriber-show.php:365
|
2161 |
+
msgid "6001 to 10000"
|
2162 |
+
msgstr "6001 a 10000"
|
2163 |
|
2164 |
+
#: ../subscribers/view-subscriber-show.php:366
|
2165 |
+
msgid "Display All"
|
2166 |
+
msgstr "Mostra-ho tot"
|
2167 |
|
2168 |
+
#: ../subscribers/view-subscriber-sync.php:36
|
2169 |
+
msgid "Please select default group to newly registered user."
|
2170 |
+
msgstr ""
|
2171 |
+
"Si us plau, seleccioneu el grup per defecte per l'usuari recentment "
|
2172 |
+
"registrat."
|
2173 |
|
2174 |
+
#: ../subscribers/view-subscriber-sync.php:50
|
2175 |
+
msgid "Emails Successfully Synced."
|
2176 |
+
msgstr "Els correus electrònics sincronitzats amb èxit ."
|
2177 |
|
2178 |
+
#: ../subscribers/view-subscriber-sync.php:88
|
2179 |
+
msgid "Sync Email"
|
2180 |
+
msgstr "sincronització del correu electrònic"
|
2181 |
|
2182 |
+
#: ../subscribers/view-subscriber-sync.php:101
|
2183 |
+
msgid "Sync newly registered users to subscribers list"
|
2184 |
+
msgstr "Sincronitzar els usuaris registrats recentment a la llista de subscriptors"
|
2185 |
|
2186 |
+
#: ../subscribers/view-subscriber-sync.php:114
|
2187 |
+
msgid "Select group to add newly registered users to"
|
2188 |
+
msgstr "Seleccionar grup per afegir-hi nous usuaris registrats"
|
2189 |
|
2190 |
+
#: ../templates/template-preview.php:31
|
2191 |
+
msgid "Template Preview"
|
2192 |
+
msgstr "Vista prèvia a la plantilla"
|
2193 |
|
2194 |
+
#: ../templates/template-preview.php:39
|
2195 |
+
msgid "This is how your email may look."
|
2196 |
+
msgstr "Així és com pot semblar el vostre correu electrònic."
|
2197 |
|
2198 |
+
#: ../templates/template-preview.php:41
|
|
|
2199 |
msgid ""
|
2200 |
+
"<br><br>This Post Notification preview has replaced keywords from your last "
|
2201 |
+
"published blog post."
|
|
|
2202 |
msgstr ""
|
2203 |
+
"<br><br>Aquesta vista prèvia de notificació de correu reemplaça les paraules "
|
2204 |
+
"clau de la vostra última publicació publicada al bloc."
|
|
|
|
|
|
|
|
|
|
|
2205 |
|
2206 |
+
#: ../templates/template-preview.php:43
|
2207 |
+
msgid ""
|
2208 |
+
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
2209 |
+
"content differently. So there could be a slight variation on how your "
|
2210 |
+
"customer will view the email content."
|
2211 |
+
msgstr ""
|
2212 |
+
"<br><br>Nota: els diferents serveis de correu electrònic (com ara Gmail, "
|
2213 |
+
"Yahoo, etc.) mostren contingut de correu electrònic de manera diferent. Per "
|
2214 |
+
"tant, podria haver-hi una lleugera variació sobre com el vostre client veurà "
|
2215 |
+
"el contingut del correu electrònic."
|
2216 |
|
2217 |
+
#. Plugin Name of the plugin/theme
|
2218 |
+
msgid "Email Subscribers & Newsletters"
|
2219 |
+
msgstr "Email Subscribers & Newsletters"
|
2220 |
|
2221 |
+
#. URI of the plugin
|
2222 |
+
msgid "https://www.icegram.com"
|
2223 |
+
msgstr "https://www.icegram.com"
|
2224 |
|
2225 |
+
#. Description of the plugin/theme
|
2226 |
+
msgid ""
|
2227 |
+
"Add subscription forms on website, send HTML newsletters & automatically "
|
2228 |
+
"notify subscribers about new blog posts once it is published."
|
2229 |
+
msgstr ""
|
2230 |
+
"Afegir formularis de subscripció a la pàgina web, enviar butlletins HTML i "
|
2231 |
+
"notificar als subscriptors automàticament sobre nous missatges al blog una "
|
2232 |
+
"vegada que es publiquen."
|
2233 |
|
2234 |
+
#: ../email-subscribers.php:95
|
2235 |
+
msgctxt "timezone date format"
|
2236 |
+
msgid "Y-m-d H:i:s"
|
2237 |
+
msgstr "A-m-d H:m:s"
|
languages/email-subscribers-cs_CZ.mo
CHANGED
Binary file
|
languages/email-subscribers-cs_CZ.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.4.
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Czech\n"
|
@@ -23,393 +23,229 @@ msgstr ""
|
|
23 |
"X-Loco-Target-Locale: cs_CZ\n"
|
24 |
"X-Poedit-SearchPath-0: .."
|
25 |
|
26 |
-
#: ../
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
31 |
-
#: 164
|
32 |
-
msgid "(Use templates menu to create new)"
|
33 |
-
msgstr ""
|
34 |
-
|
35 |
-
#. URI of the plugin
|
36 |
-
msgid "https://www.icegram.com"
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: ../
|
40 |
-
|
41 |
-
msgid "
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: ../
|
45 |
-
msgid "
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: ../
|
49 |
-
|
|
|
|
|
|
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: ../
|
53 |
-
|
|
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: ../
|
57 |
-
|
58 |
-
msgid "
|
|
|
|
|
|
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: ../
|
62 |
-
|
|
|
|
|
|
|
|
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: ../
|
66 |
msgid ""
|
67 |
-
"
|
68 |
-
"
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: ../
|
72 |
-
msgid "
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: ../
|
76 |
-
msgid ""
|
77 |
-
"Double Opt-In : In this type, the subscriber is sent an activation link as "
|
78 |
-
"soon as they subscribe to your list. They have to confirm their subscription "
|
79 |
-
"by clicking on the activation link.<br />Single Opt-In : In this type, the "
|
80 |
-
"subscriber is not asked to confirm their email address. They are subscribed "
|
81 |
-
"directly in the list."
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: ../
|
85 |
-
|
86 |
-
"
|
87 |
-
"Emails."
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: ../
|
91 |
-
msgid "
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: ../
|
95 |
-
msgid "
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: ../
|
99 |
-
msgid ""
|
100 |
-
"Subject for the admin email whenever a new subscriber signs up and is "
|
101 |
-
"confirmed."
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: ../
|
105 |
-
msgid "
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: ../
|
109 |
-
msgid ""
|
110 |
-
"Content for the admin email whenever a new subscriber signs up and is "
|
111 |
-
"confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: ../
|
115 |
-
msgid "
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: ../
|
119 |
-
msgid ""
|
120 |
-
"Content for the email report which will be sent to admin.<br />Available "
|
121 |
-
"Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: ../
|
125 |
-
msgid "
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: ../
|
129 |
-
msgid ""
|
130 |
-
"Subject for the confirmation email to be sent for Double Opt-In whenever a "
|
131 |
-
"subscriber signs up."
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: ../
|
135 |
-
msgid "
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: ../
|
139 |
-
msgid ""
|
140 |
-
"Content for the confirmation email to be sent for Double Opt-In whenever a "
|
141 |
-
"subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: ../
|
145 |
-
msgid "
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: ../
|
149 |
-
msgid ""
|
150 |
-
"Text to display after an email address is successfully subscribed from "
|
151 |
-
"Double Opt-In (Confirmation) Email"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: ../
|
155 |
-
|
|
|
|
|
|
|
|
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: ../
|
159 |
-
|
|
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: ../
|
163 |
-
msgid ""
|
164 |
-
"Subject for the subscriber welcome email. This will be sent whenever a "
|
165 |
-
"user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
|
166 |
-
"Opt-In) successfully."
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: ../
|
170 |
-
msgid "
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: ../
|
174 |
msgid ""
|
175 |
-
"
|
176 |
-
"
|
177 |
-
"<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: ../
|
181 |
msgid ""
|
182 |
-
"
|
183 |
-
"
|
184 |
-
"it."
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: ../
|
188 |
-
msgid ""
|
189 |
-
"The text for the unsubscribe link. This text is automatically added with "
|
190 |
-
"unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: ../
|
194 |
-
|
195 |
-
"
|
196 |
-
"email."
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: ../
|
200 |
-
msgid "
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: ../
|
204 |
-
msgid ""
|
205 |
-
"Default message to display if there is any issue while clicking on subscribe "
|
206 |
-
"/ confirmation link from the Double Opt-In (Confirmation) emails."
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: ../
|
|
|
210 |
msgid ""
|
211 |
-
"
|
212 |
-
"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: ../
|
216 |
-
msgid "
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: ../
|
220 |
-
msgid "
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: ../
|
224 |
-
msgid "
|
|
|
|
|
|
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: ../
|
228 |
-
msgid ""
|
229 |
-
"Email to admin whenever a cron URL is triggered from your server.<br "
|
230 |
-
"/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: ../
|
234 |
msgid ""
|
235 |
-
"
|
236 |
-
"
|
237 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
|
238 |
-
"Cron?</a>"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: ../
|
242 |
-
msgid ""
|
243 |
-
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
244 |
-
"schedule-cron-emails-in-cpanel/?"
|
245 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
|
246 |
-
"job in cPanel</a>"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: ../
|
250 |
-
msgid ""
|
251 |
-
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
252 |
-
"schedule-cron-emails-in-parallels-plesk/?"
|
253 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
|
254 |
-
"job in Plesk</a>"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: ../
|
258 |
msgid ""
|
259 |
-
"
|
260 |
-
"
|
261 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
|
262 |
-
"does not support cron jobs?</a>"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: ../
|
266 |
-
msgid "
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: ../
|
270 |
-
msgid ""
|
271 |
-
"This is how the email you sent may look. <br>Note: Different email services "
|
272 |
-
"(like gmail, yahoo etc) display email content differently. So there could be "
|
273 |
-
"a slight variation on how your customer will view the email content."
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: ../
|
277 |
-
|
278 |
-
msgid "Confirmation emails resent successfully."
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: ../
|
282 |
-
msgid "
|
283 |
-
msgstr ""
|
284 |
-
|
285 |
-
#: ../subscribers/view-subscriber-export.php:12
|
286 |
-
msgid ""
|
287 |
-
"Oops! Looks like you are not the site administrator.<br><br>Only the site "
|
288 |
-
"administrator can export subscriber list."
|
289 |
-
msgstr ""
|
290 |
-
|
291 |
-
#: ../subscribers/view-subscriber-export.php:14
|
292 |
-
msgid "Go back to Subscribers dashboard"
|
293 |
-
msgstr ""
|
294 |
-
|
295 |
-
#: ../export/export-email-address.php:50 ../export/export-email-address.php:54
|
296 |
-
msgid "Unexpected url submit has been detected!"
|
297 |
-
msgstr ""
|
298 |
-
|
299 |
-
#: ../templates/template-preview.php:31
|
300 |
-
msgid "Template Preview"
|
301 |
-
msgstr ""
|
302 |
-
|
303 |
-
#: ../templates/template-preview.php:39
|
304 |
-
msgid "This is how your email may look."
|
305 |
-
msgstr ""
|
306 |
-
|
307 |
-
#: ../templates/template-preview.php:41
|
308 |
-
msgid ""
|
309 |
-
"<br><br>This Post Notification preview has replaced keywords from your last "
|
310 |
-
"published blog post."
|
311 |
-
msgstr ""
|
312 |
-
|
313 |
-
#: ../templates/template-preview.php:43
|
314 |
-
msgid ""
|
315 |
-
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
316 |
-
"content differently. So there could be a slight variation on how your "
|
317 |
-
"customer will view the email content."
|
318 |
-
msgstr ""
|
319 |
-
|
320 |
-
#: ../help/help.php:185
|
321 |
-
msgid "Thanks for installing and we hope you will enjoy using this plugin."
|
322 |
-
msgstr ""
|
323 |
-
|
324 |
-
#: ../help/help.php:186
|
325 |
-
msgid ""
|
326 |
-
"By default, subscribers subscribed via Email Subscribers, will receive email "
|
327 |
-
"updates when you post a new blog. You can turn these updates off like this:"
|
328 |
-
msgstr ""
|
329 |
-
|
330 |
-
#: ../help/help.php:187
|
331 |
-
msgid ""
|
332 |
-
"Email Subscribers -> Post Notification -> Edit -> Select Notification Status "
|
333 |
-
"when a new post is published -> Disable -> Save."
|
334 |
-
msgstr ""
|
335 |
-
|
336 |
-
#: ../help/help.php:191
|
337 |
-
msgid "Get more help and tips..."
|
338 |
-
msgstr ""
|
339 |
-
|
340 |
-
#: ../help/help.php:205
|
341 |
-
#, php-format
|
342 |
-
msgid "Version: %s"
|
343 |
-
msgstr ""
|
344 |
-
|
345 |
-
#: ../help/help.php:208
|
346 |
-
msgid "Questions? Need Help?"
|
347 |
-
msgstr ""
|
348 |
-
|
349 |
-
#: ../help/help.php:209
|
350 |
-
msgid "Contact Us"
|
351 |
-
msgstr ""
|
352 |
-
|
353 |
-
#: ../help/help.php:214
|
354 |
-
#, php-format
|
355 |
-
msgid ""
|
356 |
-
"<b>Like Email Subscribers?</b> If yes, then consider %s to support further "
|
357 |
-
"developments."
|
358 |
-
msgstr ""
|
359 |
-
|
360 |
-
#: ../help/help.php:214
|
361 |
-
msgid "donating to us"
|
362 |
-
msgstr ""
|
363 |
-
|
364 |
-
#: ../help/help.php:249
|
365 |
-
msgid "Description"
|
366 |
-
msgstr ""
|
367 |
-
|
368 |
-
#: ../help/help.php:251
|
369 |
-
msgid ""
|
370 |
-
"Email Subscribers is a complete newsletter plugin which lets you collect "
|
371 |
-
"leads, send automated new blog post notification emails, create & send "
|
372 |
-
"newsletters and manage all this in one single place."
|
373 |
-
msgstr ""
|
374 |
-
|
375 |
-
#: ../help/help.php:253
|
376 |
-
msgid "Feature Overview"
|
377 |
-
msgstr ""
|
378 |
-
|
379 |
-
#: ../help/help.php:256
|
380 |
-
msgid ""
|
381 |
-
"Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
|
382 |
-
"Code)."
|
383 |
-
msgstr ""
|
384 |
-
|
385 |
-
#: ../help/help.php:259
|
386 |
-
msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
|
387 |
-
msgstr ""
|
388 |
-
|
389 |
-
#: ../help/help.php:262
|
390 |
-
msgid "Send automatic welcome email to subscribers."
|
391 |
-
msgstr ""
|
392 |
-
|
393 |
-
#: ../help/help.php:265
|
394 |
-
msgid ""
|
395 |
-
"Send new post notification emails to subscribers when new posts are "
|
396 |
-
"published on your website."
|
397 |
-
msgstr ""
|
398 |
-
|
399 |
-
#: ../help/help.php:268
|
400 |
-
msgid "Schedule email (Cron job) or send them manually."
|
401 |
-
msgstr ""
|
402 |
-
|
403 |
-
#: ../help/help.php:271
|
404 |
-
msgid "Send email notification to admin when a new user signs up."
|
405 |
-
msgstr ""
|
406 |
-
|
407 |
-
#: ../help/help.php:274
|
408 |
-
msgid "Automatically add Unsubscribe link in the email."
|
409 |
-
msgstr ""
|
410 |
-
|
411 |
-
#: ../help/help.php:277
|
412 |
-
msgid "Easily migrate subscribers from another app using Import & Export."
|
413 |
msgstr ""
|
414 |
|
415 |
#: ../help/help.php:280
|
@@ -479,802 +315,1084 @@ msgid ""
|
|
479 |
"Roles"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: ../help/help.php:
|
483 |
-
msgid "How
|
484 |
msgstr ""
|
485 |
|
486 |
#: ../help/help.php:333
|
|
|
|
|
|
|
|
|
487 |
msgid "How to change/update/translate any texts from the plugin?"
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: ../help/help.php:
|
491 |
msgid "How to check sent emails?"
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: ../help/help.php:
|
495 |
msgid "Create and Send Newsletter Emails"
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: ../help/help.php:
|
499 |
msgid "Keywords in the Newsletters"
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: ../help/help.php:
|
503 |
msgid "Create and Send Post Notification Emails when new posts are published"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: ../help/help.php:
|
507 |
msgid "Keywords in the Post Notifications"
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: ../help/help.php:
|
511 |
msgid "Send a test post notification email to myself/testgroup"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: ../help/help.php:
|
515 |
msgid "Cron Job Setup"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: ../help/help.php:
|
519 |
msgid "What is Cron and how to Schedule Cron Emails?"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: ../help/help.php:
|
523 |
msgid "Schedule Cron Emails in cPanel"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: ../help/help.php:
|
527 |
msgid "Schedule Cron Emails in Parallels Plesk"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: ../help/help.php:
|
531 |
msgid "Hosting doesn’t support Cron Jobs?"
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: ../help/help.php:
|
535 |
msgid "Troubleshooting Steps"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: ../help/help.php:
|
539 |
msgid "FAQ's"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: ../help/help.php:
|
543 |
msgid "Want to do more? Here's how.."
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: ../help/help.php:
|
547 |
msgid "Allow Subscribers to get subscribed to any group"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: ../help/help.php:
|
551 |
msgid "Using our <b>free</b> "
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: ../help/help.php:
|
555 |
msgid "Group Selector"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: ../help/help.php:
|
559 |
msgid ""
|
560 |
"plugin, you can extend Email Subscribers Form functionality by providing an "
|
561 |
"grouping option right next to the form."
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: ../help/help.php:
|
565 |
msgid "The user can then subscribe to whichever group most appeals to them."
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: ../help/help.php:
|
569 |
msgid "For example: Subscribe either to Updates or to Offers."
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: ../help/help.php:
|
573 |
msgid "Show your subscribe form inside attractive popups"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: ../help/help.php:
|
577 |
msgid ""
|
578 |
"Don't limit your subscriber form to a widget. Embed it within popups, hello "
|
579 |
"bars, slide-ins, sidebars, full screen popups etc."
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: ../help/help.php:
|
583 |
msgid ""
|
584 |
"Using Email Subscribers you can achieve this easily with our <b>free</b> "
|
585 |
"plugin "
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: ../help/help.php:
|
589 |
msgid ""
|
590 |
"Icegram's beautiful designs instantly capture user attention and help "
|
591 |
"increase sign-ups to your WordPress website."
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: ../help/help.php:
|
595 |
#, php-format
|
596 |
msgid "How to %s"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: ../help/help.php:
|
600 |
msgid "show subscribe form inside a popup"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: ../help/help.php:
|
604 |
msgid "Get beautiful and elegant form styles"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: ../help/help.php:
|
608 |
msgid "Email subscribers easily integrates with another <b>free</b> plugin "
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: ../help/help.php:
|
612 |
msgid "Rainmaker"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: ../help/help.php:
|
616 |
msgid ""
|
617 |
"Rainmaker extends the core features of Email Subscribers and provides "
|
618 |
"elegant form styles."
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: ../help/help.php:
|
622 |
msgid ""
|
623 |
"These styles are well designed and beautify your subscription form making it "
|
624 |
"more appealing."
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: ../help/help.php:
|
628 |
msgid "add Rainmaker’s form in Email Subscribers"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: ../
|
632 |
-
msgid "
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: ../
|
636 |
-
#:
|
637 |
-
msgid "
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: ../
|
641 |
-
msgid "
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: ../
|
645 |
-
|
646 |
-
msgid ""
|
647 |
-
"Do you want to resend confirmation email? Also please note, this will update "
|
648 |
-
"subscriber current status to 'Unconfirmed'."
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: ../
|
652 |
-
|
653 |
-
|
|
|
|
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: ../
|
657 |
-
|
658 |
-
msgid ""
|
659 |
-
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
660 |
-
"subscription. If you can't see the email within a few minutes, check the "
|
661 |
-
"spam folder."
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: ../
|
665 |
-
|
666 |
-
msgid ""
|
667 |
-
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
668 |
-
"subscription. If you can't see the email within a few minutes, check the "
|
669 |
-
"spam folder."
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: ../
|
673 |
-
msgid ""
|
674 |
-
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
675 |
-
"subscribers list?</b> Come check our Pro plan."
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: ../
|
679 |
-
msgid "
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: ../
|
683 |
-
msgid "
|
|
|
|
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: ../
|
687 |
-
|
688 |
-
msgid "Email Subscribers version: <strong>%s</strong>"
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: ../
|
692 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: ../
|
696 |
-
msgid "
|
|
|
|
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: ../
|
700 |
-
msgid "
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: ../
|
704 |
-
msgid "
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: ../
|
708 |
-
msgid "
|
|
|
|
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: ../
|
712 |
-
msgid "
|
713 |
msgstr ""
|
714 |
|
715 |
-
#: ../
|
716 |
-
msgid "
|
|
|
|
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: ../
|
720 |
-
msgid "
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: ../
|
724 |
-
msgid "
|
|
|
|
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: ../
|
728 |
-
msgid "
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: ../
|
732 |
-
msgid "
|
|
|
|
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: ../
|
736 |
-
msgid "
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: ../
|
740 |
-
msgid "
|
|
|
|
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: ../
|
744 |
-
|
|
|
|
|
|
|
745 |
msgid ""
|
746 |
-
"
|
747 |
-
"
|
748 |
-
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: ../
|
752 |
-
|
753 |
-
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: ../
|
757 |
-
msgid "
|
758 |
-
msgstr "
|
759 |
|
760 |
-
#: ../
|
761 |
-
msgid "
|
762 |
-
|
|
|
|
|
|
|
763 |
|
764 |
-
#: ../
|
765 |
-
msgid "
|
766 |
-
msgstr "
|
767 |
|
768 |
-
#: ../
|
769 |
-
msgid "
|
770 |
-
|
|
|
|
|
|
|
771 |
|
772 |
-
#: ../
|
773 |
-
msgid "
|
774 |
-
|
|
|
|
|
|
|
775 |
|
776 |
-
#: ../
|
777 |
-
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
#: export.php:51 ../subscribers/view-subscriber-add.php:118 ../subscribers/view-
|
782 |
-
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
783 |
-
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
784 |
-
msgid "Help"
|
785 |
-
msgstr "Nápověda"
|
786 |
|
787 |
-
#: ../
|
788 |
-
msgid "
|
789 |
-
|
|
|
|
|
790 |
|
791 |
-
#: ../
|
792 |
-
|
793 |
-
|
794 |
-
#: subscriber-add.php:166 ../subscribers/view-subscriber-edit.php:162 ..
|
795 |
-
#: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
|
796 |
-
#: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
|
797 |
-
msgid "Select"
|
798 |
-
msgstr "Vybrat"
|
799 |
|
800 |
-
#: ../
|
801 |
-
|
802 |
-
|
803 |
-
|
|
|
804 |
|
805 |
-
#: ../
|
806 |
-
|
807 |
-
|
808 |
-
|
|
|
809 |
|
810 |
-
#: ../
|
811 |
-
|
812 |
-
|
813 |
-
msgstr "Označit vše"
|
814 |
|
815 |
-
#: ../
|
816 |
-
|
817 |
-
|
818 |
-
msgstr "Odznačit vše"
|
819 |
|
820 |
-
#: ../
|
821 |
-
|
822 |
-
|
823 |
-
msgstr "Vyberte vlastní typ obsahu"
|
824 |
|
825 |
-
#: ../
|
826 |
-
|
827 |
-
|
828 |
-
|
|
|
829 |
|
830 |
-
#: ../
|
831 |
-
|
832 |
-
|
833 |
-
|
|
|
|
|
|
|
834 |
|
835 |
-
#: ../
|
836 |
-
|
837 |
-
|
838 |
-
|
|
|
|
|
|
|
839 |
|
840 |
-
#: ../
|
841 |
-
|
842 |
-
|
843 |
-
|
|
|
|
|
|
|
844 |
|
845 |
-
#: ../
|
846 |
-
|
847 |
-
|
848 |
-
|
|
|
|
|
|
|
849 |
|
850 |
-
#: ../
|
851 |
-
|
852 |
-
|
853 |
-
|
|
|
854 |
|
855 |
-
#: ../
|
856 |
-
|
857 |
-
|
858 |
-
msgstr "Uložit"
|
859 |
|
860 |
-
#: ../
|
861 |
-
#:
|
862 |
-
|
863 |
-
|
864 |
-
msgstr "Vybrané podrobnosti neexistují."
|
865 |
|
866 |
-
#: ../
|
867 |
-
msgid "
|
868 |
-
msgstr "
|
869 |
|
870 |
-
#: ../
|
871 |
-
|
872 |
-
|
873 |
-
msgstr "Oznámení o příspěvcích"
|
874 |
|
875 |
-
#: ../
|
876 |
-
|
877 |
-
|
878 |
-
msgstr "Vytvoit"
|
879 |
|
880 |
-
#: ../
|
881 |
msgid ""
|
882 |
-
"
|
883 |
-
"
|
884 |
msgstr ""
|
885 |
-
"Slouží k nastavení a odeslání oznamovacího emailu vašim odběratelům, když je "
|
886 |
-
"nový příspěvek publikován na vašem webu."
|
887 |
|
888 |
-
#: ../
|
889 |
-
|
890 |
-
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
-
#: 77
|
895 |
-
msgid "Subscribers Group"
|
896 |
-
msgstr "Skupina odběratelů"
|
897 |
|
898 |
-
|
899 |
-
|
900 |
-
|
901 |
-
msgstr "Kategorie příspěvků / Vlastní typy příspěvků"
|
902 |
|
903 |
-
#: ../
|
904 |
-
|
905 |
-
msgid "
|
906 |
-
msgstr "
|
907 |
|
908 |
-
#: ../
|
909 |
-
|
910 |
-
|
911 |
-
msgstr "Upravit"
|
912 |
|
913 |
-
#: ../
|
914 |
-
|
915 |
-
|
916 |
-
msgstr "Smazat"
|
917 |
|
918 |
-
#: ../
|
919 |
-
|
920 |
-
|
921 |
-
msgstr "Žádné záznamy nejsou k dispozici."
|
922 |
|
923 |
-
#: ../
|
924 |
-
msgid "
|
925 |
-
msgstr "
|
926 |
|
927 |
-
#: ../
|
928 |
-
msgid "
|
929 |
-
msgstr "
|
930 |
|
931 |
-
#: ../
|
932 |
-
msgid "
|
933 |
-
msgstr "
|
934 |
|
935 |
-
#: ../
|
936 |
-
msgid "
|
937 |
-
msgstr "
|
938 |
|
939 |
-
#: ../
|
940 |
-
|
941 |
-
|
942 |
-
msgstr "Upravit skupinu odběratelů"
|
943 |
|
944 |
-
|
945 |
-
msgid "
|
946 |
-
msgstr "
|
947 |
|
948 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
949 |
msgid ""
|
950 |
-
"
|
951 |
-
"
|
952 |
msgstr ""
|
953 |
-
"
|
954 |
-
"
|
955 |
-
"příspěvcích, jakmile budou zveřejněny."
|
956 |
|
957 |
-
|
958 |
-
|
959 |
-
|
|
|
960 |
|
961 |
-
#: ../
|
962 |
-
|
963 |
-
|
|
|
964 |
|
965 |
-
#: ../
|
966 |
-
|
967 |
-
|
|
|
968 |
|
969 |
-
#: ../
|
970 |
-
|
971 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
972 |
|
973 |
-
#: ../
|
974 |
-
msgid ""
|
975 |
-
"
|
976 |
-
"this plugin."
|
977 |
-
msgstr ""
|
978 |
-
"Vyberte jméno a emailovou adresu ODESÍLATELE pro všechny oznamovací emaily z "
|
979 |
-
"tohoto pluginu."
|
980 |
|
981 |
-
#: ../
|
982 |
-
msgid "
|
983 |
-
msgstr "
|
984 |
|
985 |
-
#: ../settings/settings-edit.php:
|
986 |
-
|
987 |
-
|
|
|
988 |
|
989 |
-
#: ../settings/settings-edit.php:
|
990 |
-
|
991 |
-
|
|
|
992 |
|
993 |
-
#: ../
|
994 |
-
msgid "
|
995 |
-
msgstr "
|
996 |
|
997 |
-
#: ../
|
998 |
-
msgid "
|
999 |
-
msgstr "
|
1000 |
|
1001 |
-
#: ../
|
1002 |
-
#:
|
1003 |
-
#:
|
1004 |
-
#:
|
1005 |
-
|
1006 |
-
|
|
|
|
|
|
|
1007 |
|
1008 |
-
#: ../
|
1009 |
-
msgid "
|
1010 |
-
msgstr "
|
1011 |
|
1012 |
-
#: ../
|
1013 |
-
msgid "
|
1014 |
-
msgstr "
|
1015 |
|
1016 |
-
#: ../
|
1017 |
-
msgid "
|
1018 |
-
msgstr "
|
1019 |
|
1020 |
-
#: ../
|
1021 |
-
msgid "
|
1022 |
-
msgstr "
|
1023 |
|
1024 |
-
#: ../
|
1025 |
-
msgid "
|
1026 |
-
msgstr "
|
1027 |
|
1028 |
-
|
1029 |
-
|
1030 |
-
|
1031 |
-
|
1032 |
-
msgstr ""
|
1033 |
-
"Zadejte emailové adresy administrátorů, kteří by měli přijímat oznámení "
|
1034 |
-
"(oddělené čárkou)."
|
1035 |
|
1036 |
-
#: ../
|
|
|
1037 |
msgid ""
|
1038 |
-
"
|
1039 |
-
"
|
1040 |
msgstr ""
|
1041 |
-
"
|
1042 |
-
"
|
1043 |
|
1044 |
-
#: ../
|
1045 |
-
|
1046 |
-
|
1047 |
-
msgstr "ANO"
|
1048 |
|
1049 |
-
#: ../
|
1050 |
-
|
1051 |
-
|
1052 |
-
msgstr "NE"
|
1053 |
|
1054 |
-
#: ../
|
1055 |
-
msgid "
|
1056 |
-
msgstr "
|
1057 |
|
1058 |
-
#: ../
|
1059 |
-
msgid "
|
1060 |
-
msgstr "
|
1061 |
|
1062 |
-
#: ../
|
1063 |
-
msgid "
|
1064 |
-
msgstr "
|
1065 |
|
1066 |
-
#: ../
|
1067 |
-
msgid ""
|
1068 |
-
"
|
1069 |
-
"the Double Opt In (confirmation) Email."
|
1070 |
-
msgstr ""
|
1071 |
-
"Tento text bude zobrazen po kliknutí na odkaz v potvrzovacím emailu při "
|
1072 |
-
"dvojitém potvrzení."
|
1073 |
|
1074 |
-
#: ../
|
1075 |
-
|
1076 |
-
|
1077 |
-
|
1078 |
-
|
1079 |
-
|
1080 |
-
|
|
|
|
|
|
|
1081 |
|
1082 |
-
#: ../
|
1083 |
-
msgid "
|
1084 |
-
msgstr "
|
1085 |
|
1086 |
-
#: ../
|
1087 |
-
|
1088 |
-
|
|
|
|
|
|
|
|
|
|
|
1089 |
|
1090 |
-
#: ../
|
1091 |
-
|
1092 |
-
|
|
|
1093 |
|
1094 |
-
#: ../
|
1095 |
-
|
1096 |
-
|
|
|
1097 |
|
1098 |
-
#: ../
|
1099 |
-
|
1100 |
-
|
1101 |
-
"
|
1102 |
-
"správce zde může provádět změny."
|
1103 |
|
1104 |
-
#: ../
|
1105 |
-
|
1106 |
-
|
|
|
1107 |
|
1108 |
-
#: ../
|
1109 |
-
#:
|
1110 |
-
|
1111 |
-
|
1112 |
-
msgstr "Pouze administrátor"
|
1113 |
|
1114 |
-
#: ../
|
1115 |
-
#:
|
1116 |
-
|
1117 |
-
|
1118 |
-
msgstr "Administrátor/Editor"
|
1119 |
|
1120 |
-
#: ../
|
1121 |
-
#:
|
1122 |
-
|
1123 |
-
|
1124 |
-
msgstr "Administrátor/Editor/Autor/Spolupracovník"
|
1125 |
|
1126 |
-
#: ../
|
1127 |
-
|
1128 |
-
|
|
|
1129 |
|
1130 |
-
#: ../
|
1131 |
-
#:
|
1132 |
-
msgid "
|
1133 |
-
msgstr "
|
1134 |
|
1135 |
-
#: ../
|
1136 |
-
|
1137 |
-
|
|
|
1138 |
|
1139 |
-
#: ../
|
1140 |
-
|
1141 |
-
|
|
|
1142 |
|
1143 |
-
#: ../
|
1144 |
-
|
1145 |
-
|
1146 |
-
|
1147 |
-
msgstr ""
|
1148 |
-
"Toto je URL vašeho cronu. Pole je pouze pro čtení, nedoporučujeme vám jej "
|
1149 |
-
"upravovat."
|
1150 |
|
1151 |
-
#: ../
|
1152 |
-
|
1153 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1154 |
|
1155 |
-
#: ../
|
1156 |
-
msgid "
|
1157 |
-
msgstr "
|
1158 |
|
1159 |
-
#: ../
|
1160 |
-
msgid "
|
1161 |
-
msgstr "
|
1162 |
|
1163 |
-
#: ../
|
1164 |
-
|
1165 |
-
|
|
|
1166 |
|
1167 |
-
#: ../
|
1168 |
-
|
1169 |
-
|
|
|
1170 |
|
1171 |
-
#: ../
|
1172 |
-
msgid "
|
1173 |
-
msgstr "
|
1174 |
|
1175 |
-
#: ../
|
1176 |
-
msgid "
|
1177 |
-
|
|
|
|
|
|
|
|
|
1178 |
|
1179 |
-
#: ../
|
1180 |
-
|
1181 |
-
|
|
|
1182 |
|
1183 |
-
#: ../
|
1184 |
-
|
1185 |
-
|
|
|
1186 |
|
1187 |
-
#: ../
|
1188 |
-
|
1189 |
-
|
|
|
1190 |
|
1191 |
-
#: ../
|
1192 |
-
|
1193 |
-
|
|
|
1194 |
|
1195 |
-
#: ../
|
1196 |
-
|
1197 |
-
|
|
|
1198 |
|
1199 |
-
#: ../
|
1200 |
-
|
1201 |
-
|
|
|
1202 |
|
1203 |
-
#: ../
|
1204 |
-
|
1205 |
-
|
|
|
|
|
1206 |
|
1207 |
-
#: ../
|
1208 |
-
msgid "
|
1209 |
-
msgstr "
|
1210 |
|
1211 |
-
#: ../
|
1212 |
-
|
1213 |
-
|
1214 |
-
msgstr "Přehledy"
|
1215 |
|
1216 |
-
#: ../
|
1217 |
-
msgid "
|
1218 |
-
msgstr "
|
1219 |
|
1220 |
-
#: ../
|
1221 |
-
msgid "
|
1222 |
-
msgstr "
|
1223 |
|
1224 |
-
#: ../
|
1225 |
-
|
1226 |
-
|
1227 |
-
msgstr "Náhled"
|
1228 |
|
1229 |
-
#: ../
|
1230 |
-
msgid "
|
1231 |
-
msgstr "
|
1232 |
|
1233 |
-
#: ../
|
1234 |
-
|
1235 |
-
|
1236 |
-
msgid "Status"
|
1237 |
-
msgstr "Stav"
|
1238 |
|
1239 |
-
#: ../
|
1240 |
-
|
1241 |
-
|
1242 |
-
msgstr "Odeslal"
|
1243 |
|
1244 |
-
#: ../
|
1245 |
-
msgid "
|
1246 |
-
msgstr "
|
1247 |
|
1248 |
-
#: ../
|
1249 |
-
msgid "
|
1250 |
-
msgstr "
|
1251 |
|
1252 |
-
#: ../
|
1253 |
-
msgid "
|
1254 |
-
msgstr "
|
1255 |
|
1256 |
-
#: ../
|
1257 |
-
|
1258 |
-
|
1259 |
-
msgid "Action"
|
1260 |
-
msgstr "Akce"
|
1261 |
|
1262 |
-
#: ../
|
1263 |
-
|
1264 |
-
|
|
|
1265 |
|
1266 |
-
#: ../
|
1267 |
msgid ""
|
1268 |
-
"
|
1269 |
-
"
|
|
|
1270 |
msgstr ""
|
1271 |
-
"
|
1272 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1273 |
|
1274 |
#: ../sentmail/deliverreport-show.php:14
|
1275 |
msgid "Oops.. Unexpected error occurred. Please try again."
|
1276 |
msgstr "Nastala neznámá chyba. Prosím opakujte akci."
|
1277 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1278 |
#: ../sentmail/deliverreport-show.php:60
|
1279 |
msgid "Delivery Report"
|
1280 |
msgstr "Hlášení o doručení"
|
@@ -1289,324 +1407,293 @@ msgstr "Číslo"
|
|
1289 |
msgid "Email"
|
1290 |
msgstr "Email"
|
1291 |
|
1292 |
-
#: ../sentmail/deliverreport-show.php:
|
1293 |
-
|
1294 |
-
|
1295 |
-
|
1296 |
-
|
1297 |
-
msgid "Viewed Status"
|
1298 |
-
msgstr "Stav zobrazení"
|
1299 |
-
|
1300 |
-
#: ../sentmail/deliverreport-show.php:78 ../sentmail/deliverreport-show.php:89
|
1301 |
-
msgid "Viewed Date"
|
1302 |
-
msgstr "Datum zobrazení"
|
1303 |
-
|
1304 |
-
#: ../subscribers/view-subscriber-import.php:45
|
1305 |
-
msgid ""
|
1306 |
-
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1307 |
-
"the Group name."
|
1308 |
-
msgstr ""
|
1309 |
-
"Chyba: Speciální znaky (['^$%&*()}{@#~?><>,|=_+\\\"]) v názvu skupiny nelze "
|
1310 |
-
"použít."
|
1311 |
-
|
1312 |
-
#: ../subscribers/view-subscriber-import.php:95
|
1313 |
-
msgid "email imported."
|
1314 |
-
msgstr "email byl importován."
|
1315 |
-
|
1316 |
-
#: ../subscribers/view-subscriber-import.php:96
|
1317 |
-
msgid "email already exists."
|
1318 |
-
msgstr "email již existuje."
|
1319 |
-
|
1320 |
-
#: ../subscribers/view-subscriber-import.php:97
|
1321 |
-
msgid "email are invalid."
|
1322 |
-
msgstr "emaily jsou neplatné."
|
1323 |
-
|
1324 |
-
#: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
|
1325 |
-
#: import.php:129
|
1326 |
-
msgid "Click here"
|
1327 |
-
msgstr "Klikněte zde"
|
1328 |
-
|
1329 |
-
#: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
|
1330 |
-
#: import.php:129
|
1331 |
-
msgid " to view details."
|
1332 |
-
msgstr " pro zobrazení podrobností."
|
1333 |
-
|
1334 |
-
#: ../subscribers/view-subscriber-import.php:108
|
1335 |
-
msgid "File Upload Failed."
|
1336 |
-
msgstr "Nahrávání souboru selhalo."
|
1337 |
-
|
1338 |
-
#: ../subscribers/view-subscriber-import.php:145
|
1339 |
-
msgid "Import Email Addresses"
|
1340 |
-
msgstr "Import emailových adres"
|
1341 |
-
|
1342 |
-
#: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
|
1343 |
-
#: show.php:243 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
|
1344 |
-
#: subscriber-add.php:114 ../subscribers/view-subscriber-edit.php:109 ..
|
1345 |
-
#: subscribers/view-subscriber-sync.php:89
|
1346 |
-
msgid "Add New Subscriber"
|
1347 |
-
msgstr "Přidat nového odběratele"
|
1348 |
-
|
1349 |
-
#: ../subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
|
1350 |
-
#: show.php:245 ../subscribers/view-subscriber-add.php:116 ../subscribers/view-
|
1351 |
-
#: subscriber-edit.php:111 ../subscribers/view-subscriber-sync.php:91
|
1352 |
-
msgid "Export"
|
1353 |
-
msgstr "Export"
|
1354 |
-
|
1355 |
-
#: ../subscribers/view-subscriber-import.php:148 ../subscribers/view-subscriber-
|
1356 |
-
#: show.php:246 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
|
1357 |
-
#: subscriber-add.php:117 ../subscribers/view-subscriber-edit.php:112 ..
|
1358 |
-
#: subscribers/view-subscriber-sync.php:143
|
1359 |
-
msgid "Sync"
|
1360 |
-
msgstr "Synchronizovat"
|
1361 |
|
1362 |
-
#: ../
|
1363 |
-
|
1364 |
-
|
|
|
1365 |
|
1366 |
-
#: ../
|
1367 |
-
msgid "
|
1368 |
-
msgstr "
|
1369 |
|
1370 |
-
#: ../
|
1371 |
-
msgid "
|
1372 |
-
msgstr "
|
1373 |
|
1374 |
-
#: ../
|
1375 |
-
msgid "
|
1376 |
-
msgstr "
|
1377 |
|
1378 |
-
#: ../
|
1379 |
-
|
1380 |
-
|
1381 |
-
msgid "Confirmed"
|
1382 |
-
msgstr "Potvrzeno"
|
1383 |
|
1384 |
-
#: ../
|
1385 |
-
|
1386 |
-
|
1387 |
-
msgid "Unconfirmed"
|
1388 |
-
msgstr "Nepotvrzeno"
|
1389 |
|
1390 |
-
#: ../
|
1391 |
-
|
1392 |
-
|
1393 |
-
msgid "Unsubscribed"
|
1394 |
-
msgstr "Zrušen odběr"
|
1395 |
|
1396 |
-
#: ../
|
1397 |
-
msgid "
|
1398 |
-
msgstr "
|
1399 |
|
1400 |
-
#: ../
|
1401 |
-
|
1402 |
-
|
1403 |
-
msgstr "(nebo)"
|
1404 |
|
1405 |
-
#: ../
|
1406 |
-
|
1407 |
-
|
1408 |
-
#: subscribers/view-subscriber-sync.php:90
|
1409 |
-
msgid "Import"
|
1410 |
-
msgstr "Import"
|
1411 |
|
1412 |
-
#: ../
|
1413 |
-
msgid "
|
1414 |
-
msgstr "
|
1415 |
|
1416 |
-
#: ../
|
1417 |
-
msgid "
|
1418 |
-
msgstr "
|
1419 |
|
1420 |
-
#: ../
|
1421 |
-
#: php:
|
1422 |
-
|
1423 |
-
|
|
|
1424 |
|
1425 |
-
#: ../
|
1426 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
1427 |
msgstr ""
|
1428 |
-
"
|
1429 |
-
"
|
1430 |
|
1431 |
-
#: ../
|
1432 |
-
|
1433 |
-
|
1434 |
-
msgid "No record was selected."
|
1435 |
-
msgstr "Není vybrán žádný záznam."
|
1436 |
|
1437 |
-
#: ../
|
1438 |
-
msgid "
|
1439 |
-
msgstr ""
|
1440 |
-
"Chcete-li odeslat potvrzovací zprávu, změňte možnost potvrzení na dvojité "
|
1441 |
-
"potvrzení."
|
1442 |
|
1443 |
-
#: ../
|
1444 |
-
msgid "
|
1445 |
-
msgstr "
|
1446 |
|
1447 |
-
#: ../
|
1448 |
-
msgid "
|
1449 |
-
msgstr "
|
1450 |
|
1451 |
-
#: ../
|
1452 |
-
msgid "
|
1453 |
-
msgstr "
|
1454 |
|
1455 |
-
#: ../
|
1456 |
-
msgid "
|
1457 |
-
msgstr "
|
1458 |
|
1459 |
-
#: ../
|
1460 |
-
|
1461 |
-
|
1462 |
-
|
|
|
|
|
|
|
1463 |
|
1464 |
-
#: ../
|
1465 |
-
|
1466 |
-
|
1467 |
-
msgstr "Aktivní odběratelé: %s"
|
1468 |
|
1469 |
-
#: ../
|
1470 |
-
msgid "
|
1471 |
-
msgstr "
|
1472 |
|
1473 |
-
#: ../
|
1474 |
-
|
1475 |
-
|
1476 |
-
msgstr "Jméno"
|
1477 |
|
1478 |
-
#: ../
|
1479 |
-
msgid "
|
1480 |
-
msgstr "
|
1481 |
|
1482 |
-
#: ../
|
1483 |
-
msgid "
|
1484 |
-
msgstr "
|
1485 |
|
1486 |
-
#: ../subscribers/view-subscriber-
|
1487 |
-
|
1488 |
-
|
|
|
|
|
|
|
1489 |
|
1490 |
-
#: ../
|
1491 |
-
|
1492 |
-
|
1493 |
-
msgstr "Znovu odeslat povtrzení"
|
1494 |
|
1495 |
-
#: ../
|
1496 |
-
msgid "
|
1497 |
-
msgstr "
|
1498 |
|
1499 |
-
#: ../
|
1500 |
-
msgid "
|
1501 |
-
msgstr "
|
1502 |
|
1503 |
-
#: ../
|
1504 |
-
msgid "
|
1505 |
-
msgstr "
|
1506 |
|
1507 |
-
#: ../
|
1508 |
-
msgid "
|
1509 |
-
|
|
|
|
|
|
|
|
|
1510 |
|
1511 |
-
#: ../
|
1512 |
-
msgid "
|
1513 |
-
|
|
|
|
|
|
|
|
|
1514 |
|
1515 |
-
#: ../
|
1516 |
-
msgid "
|
1517 |
-
msgstr "
|
1518 |
|
1519 |
-
#: ../
|
1520 |
-
msgid "
|
1521 |
-
msgstr "
|
1522 |
|
1523 |
-
#: ../
|
1524 |
-
msgid "
|
1525 |
-
msgstr "
|
1526 |
|
1527 |
-
#: ../
|
1528 |
-
msgid "
|
1529 |
-
|
|
|
|
|
|
|
|
|
1530 |
|
1531 |
-
#: ../
|
1532 |
-
msgid "
|
1533 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1534 |
|
1535 |
-
#: ../
|
1536 |
-
msgid "
|
1537 |
-
msgstr "
|
1538 |
|
1539 |
-
#: ../
|
1540 |
-
msgid "
|
1541 |
-
msgstr "
|
1542 |
|
1543 |
-
#: ../
|
1544 |
-
msgid "
|
1545 |
-
msgstr "
|
|
|
|
|
1546 |
|
1547 |
-
#: ../
|
1548 |
-
msgid "
|
1549 |
-
msgstr "
|
1550 |
|
1551 |
-
#: ../
|
1552 |
-
|
1553 |
-
|
|
|
|
|
1554 |
|
1555 |
-
#: ../
|
1556 |
-
#:
|
1557 |
-
|
1558 |
-
|
|
|
1559 |
|
1560 |
-
#: ../
|
1561 |
-
#:
|
1562 |
-
|
1563 |
-
|
|
|
1564 |
|
1565 |
-
#: ../
|
1566 |
-
msgid "
|
1567 |
-
msgstr "
|
1568 |
|
1569 |
-
#: ../
|
1570 |
-
msgid "
|
1571 |
-
msgstr "
|
1572 |
|
1573 |
-
#: ../
|
1574 |
-
|
1575 |
-
|
1576 |
-
msgid "Click to Export in CSV"
|
1577 |
-
msgstr "Klikněte pro export do CSV"
|
1578 |
|
1579 |
-
#: ../
|
1580 |
-
msgid "
|
1581 |
-
|
|
|
|
|
|
|
|
|
1582 |
|
1583 |
-
#: ../
|
1584 |
-
msgid "
|
1585 |
-
msgstr "
|
1586 |
|
1587 |
-
#: ../
|
1588 |
-
msgid "
|
1589 |
-
msgstr "
|
1590 |
|
1591 |
-
#: ../
|
1592 |
-
msgid "
|
1593 |
-
msgstr "
|
1594 |
|
1595 |
-
#: ../
|
1596 |
-
msgid "
|
1597 |
-
msgstr "
|
1598 |
|
1599 |
-
#: ../
|
1600 |
-
msgid "
|
1601 |
-
msgstr "
|
1602 |
|
1603 |
-
#: ../
|
1604 |
-
msgid "
|
1605 |
-
msgstr "
|
1606 |
|
1607 |
-
#: ../
|
1608 |
-
msgid "
|
1609 |
-
msgstr "
|
|
|
|
|
|
|
|
|
1610 |
|
1611 |
#: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
|
1612 |
#: php:54
|
@@ -1637,6 +1724,33 @@ msgstr "Odběratel již existuje."
|
|
1637 |
msgid "Invalid Email."
|
1638 |
msgstr "Neplatný email."
|
1639 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1640 |
#: ../subscribers/view-subscriber-add.php:127
|
1641 |
msgid "Enter Subscriber's Full name"
|
1642 |
msgstr "Zadejte celé jméno odběratele"
|
@@ -1645,493 +1759,345 @@ msgstr "Zadejte celé jméno odběratele"
|
|
1645 |
msgid "Enter Subscriber's Email Address"
|
1646 |
msgstr "Zadejte emailovou adresu odběratele"
|
1647 |
|
1648 |
-
#: ../subscribers/view-subscriber-add.php:147
|
1649 |
-
msgid "Select Subscriber's Status"
|
1650 |
-
msgstr "Vyberte stav odběratele"
|
1651 |
-
|
1652 |
-
#: ../subscribers/view-subscriber-add.php:162
|
1653 |
-
msgid "Select (or) Create Group for Subscriber"
|
1654 |
-
msgstr "Vyberte (nebo) vytvořte skupinu pro odběratele"
|
1655 |
-
|
1656 |
-
#: ../subscribers/view-subscriber-add.php:187
|
1657 |
-
msgid "Add Subscriber"
|
1658 |
-
msgstr "Přidat odběratele"
|
1659 |
-
|
1660 |
-
#: ../subscribers/view-subscriber-edit.php:64
|
1661 |
-
msgid "Error: Special characters are not allowed in the group name."
|
1662 |
-
msgstr "Chyba: Speciální znaky v názvu skupiny nelze použít."
|
1663 |
-
|
1664 |
-
#: ../subscribers/view-subscriber-edit.php:74
|
1665 |
-
msgid "Subscriber details updated."
|
1666 |
-
msgstr "Podrobnosti odběratele byly aktualizovány."
|
1667 |
-
|
1668 |
-
#: ../subscribers/view-subscriber-edit.php:76
|
1669 |
-
msgid "Subscriber already exists for this group."
|
1670 |
-
msgstr "Odběratel již v této skupině existuje."
|
1671 |
-
|
1672 |
-
#: ../subscribers/view-subscriber-edit.php:108
|
1673 |
-
msgid "Edit Subscriber"
|
1674 |
-
msgstr "Upravit odběratele"
|
1675 |
-
|
1676 |
-
#: ../subscribers/view-subscriber-edit.php:122
|
1677 |
-
msgid "Subscriber's Full Name"
|
1678 |
-
msgstr "Celé jména odběratele"
|
1679 |
-
|
1680 |
-
#: ../subscribers/view-subscriber-edit.php:132
|
1681 |
-
msgid "Subscriber's Email Address"
|
1682 |
-
msgstr "Emailová adresa odběratele"
|
1683 |
-
|
1684 |
-
#: ../subscribers/view-subscriber-edit.php:142
|
1685 |
-
msgid "Update Subscriber's Status"
|
1686 |
-
msgstr "Změna stavu odběratele"
|
1687 |
-
|
1688 |
-
#: ../subscribers/view-subscriber-edit.php:157
|
1689 |
-
msgid "Update Subscriber's Group"
|
1690 |
-
msgstr "Změna skupiny odběratele"
|
1691 |
-
|
1692 |
-
#: ../subscribers/view-subscriber-sync.php:36
|
1693 |
-
msgid "Please select default group to newly registered user."
|
1694 |
-
msgstr "Vyberte výchozí skupinu pro nově registrované uživatele."
|
1695 |
-
|
1696 |
-
#: ../subscribers/view-subscriber-sync.php:50
|
1697 |
-
msgid "Emails Successfully Synced."
|
1698 |
-
msgstr "Emaily byly úspěšně synchronizovány."
|
1699 |
-
|
1700 |
-
#: ../subscribers/view-subscriber-sync.php:88
|
1701 |
-
msgid "Sync Email"
|
1702 |
-
msgstr "Synchronizace emailu"
|
1703 |
-
|
1704 |
-
#: ../subscribers/view-subscriber-sync.php:101
|
1705 |
-
msgid "Sync newly registered users to subscribers list"
|
1706 |
-
msgstr "Synchronizovat nově registrované uživatele do seznamu"
|
1707 |
-
|
1708 |
-
#: ../subscribers/view-subscriber-sync.php:114
|
1709 |
-
msgid "Select group to add newly registered users to"
|
1710 |
-
msgstr "Vybert skupinu do které se mají přidávat nově registrovaní uživatelé"
|
1711 |
-
|
1712 |
-
#: ../job/es-unsubscribe.php:54 ../job/es-unsubscribe.php:61 ../job/es-optin.php:
|
1713 |
-
#: 58 ../job/es-optin.php:68
|
1714 |
-
msgid ""
|
1715 |
-
"Oops.. We are getting some technical error. Please try again or contact "
|
1716 |
-
"admin."
|
1717 |
-
msgstr ""
|
1718 |
-
"Nastala technická chyba. Zkuste to prosím znovu nebo se obraťte na "
|
1719 |
-
"administrátora."
|
1720 |
-
|
1721 |
-
#: ../job/es-optin.php:61
|
1722 |
-
msgid "This email address has already been confirmed."
|
1723 |
-
msgstr "Tato emailová adresa již byla potvrzena."
|
1724 |
-
|
1725 |
-
#: ../help/help.php:184
|
1726 |
-
msgid "Welcome to Email Subscribers!"
|
1727 |
-
msgstr "Vítá vás plugin Email Subscribers!"
|
1728 |
-
|
1729 |
-
#: ../help/help.php:196 ../classes/es-register.php:1071 ../classes/es-loadwidget.
|
1730 |
-
#: php:38
|
1731 |
-
msgid "Subscribe"
|
1732 |
-
msgstr "Odebírat"
|
1733 |
-
|
1734 |
-
#: ../help/help.php:301 ../help/help.php:312 ../help/help.php:315 ../help/help.
|
1735 |
-
#: php:327 ../help/help.php:330 ../help/help.php:333 ../help/help.php:336 ..
|
1736 |
-
#: help/help.php:339 ../help/help.php:351 ../help/help.php:354 ../help/help.php:
|
1737 |
-
#: 361 ../help/help.php:364 ../help/help.php:367 ../help/help.php:375 ..
|
1738 |
-
#: help/help.php:378 ../help/help.php:381 ../help/help.php:384 ../help/help.php:
|
1739 |
-
#: 390 ../help/help.php:393 ../help/help.php:395
|
1740 |
-
#, php-format
|
1741 |
-
msgid "%s"
|
1742 |
-
msgstr "%s"
|
1743 |
-
|
1744 |
-
#: ../help/help.php:301
|
1745 |
-
msgid "How to Add Subscription box to website?"
|
1746 |
-
msgstr "Jak na web přidat přihlašovací formulář?"
|
1747 |
-
|
1748 |
-
#: ../help/help.php:327
|
1749 |
-
msgid "How to Import or Export Email Addresses?"
|
1750 |
-
msgstr "Jak importovat nebo exportovat emailové adresy?"
|
1751 |
-
|
1752 |
-
#: ../help/help.php:336
|
1753 |
-
msgid "How to add Unsubscribe link in emails?"
|
1754 |
-
msgstr "Jak do emailů přidat odkaz pro odhlášení?"
|
1755 |
-
|
1756 |
-
#: ../help/help.php:390
|
1757 |
-
msgid "Subscribers are not receiving Emails?"
|
1758 |
-
msgstr "Odběratelé nepřijímají emaily?"
|
1759 |
-
|
1760 |
-
#: ../help/help.php:393
|
1761 |
-
msgid "CSS Help"
|
1762 |
-
msgstr "CSS Nápověda"
|
1763 |
-
|
1764 |
-
#: ../sendmail/sendmail.php:40
|
1765 |
-
msgid "Please select your mail subject."
|
1766 |
-
msgstr "Vyberte předmět zprávy."
|
1767 |
|
1768 |
-
#: ../
|
1769 |
-
|
1770 |
-
|
|
|
|
|
1771 |
|
1772 |
-
#: ../
|
1773 |
-
|
1774 |
-
|
|
|
|
|
1775 |
|
1776 |
-
#: ../
|
1777 |
-
|
1778 |
-
|
|
|
|
|
1779 |
|
1780 |
-
#: ../
|
1781 |
-
msgid "
|
1782 |
-
msgstr "
|
1783 |
|
1784 |
-
#: ../
|
1785 |
-
|
1786 |
-
|
|
|
1787 |
|
1788 |
-
#: ../
|
1789 |
-
msgid "
|
1790 |
-
msgstr "
|
1791 |
|
1792 |
-
#: ../
|
1793 |
-
msgid "
|
1794 |
-
msgstr "
|
1795 |
|
1796 |
-
#: ../
|
1797 |
-
msgid "
|
1798 |
-
msgstr "
|
1799 |
|
1800 |
-
#: ../
|
1801 |
-
msgid "
|
1802 |
-
msgstr "
|
1803 |
|
1804 |
-
#: ../
|
1805 |
-
msgid "
|
1806 |
-
msgstr "
|
1807 |
|
1808 |
-
#: ../
|
1809 |
-
|
1810 |
-
|
1811 |
-
msgstr "Příjemců: %s"
|
1812 |
|
1813 |
-
#: ../
|
1814 |
-
msgid ""
|
1815 |
-
"
|
1816 |
-
"that you change above Mail Type to Cron and Send Mail via Cron Job."
|
1817 |
-
"</strong><br>Click on Help for more information."
|
1818 |
-
msgstr ""
|
1819 |
-
"<br><br><strong>Váš počet příjemců je vyšší než 100.<br>Důrazně doporučujeme,"
|
1820 |
-
" abyste výše změnili typ emailu na cron a zprávy odeslali přes cron."
|
1821 |
-
"</strong><br>Pro více informací klikněte na nápovědu."
|
1822 |
|
1823 |
-
#: ../
|
1824 |
-
msgid "
|
1825 |
-
msgstr "
|
1826 |
|
1827 |
-
#: ../
|
1828 |
-
msgid "
|
1829 |
-
msgstr "
|
1830 |
|
1831 |
-
#: ../
|
1832 |
-
msgid "
|
1833 |
-
msgstr "
|
1834 |
|
1835 |
-
#: ../
|
1836 |
-
|
1837 |
-
|
|
|
1838 |
|
1839 |
-
#: ../
|
1840 |
-
|
1841 |
-
|
|
|
1842 |
|
1843 |
-
#: ../
|
1844 |
-
msgid "
|
1845 |
-
msgstr "
|
1846 |
|
1847 |
-
#: ../
|
1848 |
-
msgid "
|
1849 |
-
msgstr "
|
1850 |
|
1851 |
-
#: ../
|
1852 |
-
|
1853 |
-
|
|
|
|
|
1854 |
|
1855 |
-
#: ../
|
1856 |
-
msgid "
|
1857 |
-
msgstr "
|
1858 |
|
1859 |
-
#: ../
|
1860 |
-
msgid "
|
1861 |
-
msgstr "
|
1862 |
|
1863 |
-
#: ../
|
1864 |
-
msgid "
|
1865 |
-
msgstr "
|
1866 |
|
1867 |
-
#: ../
|
1868 |
-
msgid "
|
1869 |
-
msgstr "
|
1870 |
|
1871 |
-
#: ../
|
1872 |
-
msgid "
|
1873 |
-
msgstr "
|
1874 |
|
1875 |
-
#: ../
|
1876 |
-
|
1877 |
-
|
1878 |
-
msgstr "Email Subscribers"
|
1879 |
|
1880 |
-
#: ../
|
1881 |
-
msgid "
|
1882 |
-
msgstr "
|
1883 |
|
1884 |
-
#: ../
|
1885 |
-
|
1886 |
-
|
1887 |
-
msgstr "Zadejte emailovou adresu odběratele."
|
1888 |
|
1889 |
-
#: ../
|
1890 |
-
|
1891 |
-
|
1892 |
-
|
|
|
|
|
|
|
1893 |
|
1894 |
-
#: ../
|
1895 |
-
|
1896 |
-
|
1897 |
-
msgstr "Vyberte nebo vytvořte skupinu pro tohoto odběratele."
|
1898 |
|
1899 |
-
#: ../
|
1900 |
-
|
1901 |
-
|
1902 |
-
msgstr "Opravdu chcete smazat tento záznam?"
|
1903 |
|
1904 |
-
#: ../
|
1905 |
-
|
1906 |
-
|
1907 |
-
msgstr "Vyberte hromadnou akci."
|
1908 |
|
1909 |
-
#: ../
|
1910 |
-
|
1911 |
-
msgid "
|
1912 |
-
msgstr "
|
1913 |
|
1914 |
-
#: ../
|
1915 |
-
|
1916 |
-
msgid "
|
1917 |
-
msgstr "
|
1918 |
|
1919 |
-
#: ../
|
1920 |
-
|
1921 |
-
|
1922 |
-
msgstr "Vyberte nový stav odběratele"
|
1923 |
|
1924 |
-
#: ../
|
1925 |
-
|
1926 |
-
|
1927 |
-
msgstr "Chcete upravit skupinu odběratelů?"
|
1928 |
|
1929 |
-
#: ../
|
1930 |
-
|
1931 |
-
|
1932 |
-
msgstr "Chcete upravit stav odběratele?"
|
1933 |
|
1934 |
-
#: ../
|
1935 |
-
|
1936 |
-
|
1937 |
-
"Please select only csv file. Please check official website for csv structure."
|
1938 |
-
"."
|
1939 |
-
msgstr ""
|
1940 |
-
"Použijte výhradně soubor ve formátu CSV. Zkontrolujte strukturu csv souboru "
|
1941 |
-
"na oficiálních internetových stránkách..."
|
1942 |
|
1943 |
-
#: ../
|
1944 |
-
|
1945 |
-
|
1946 |
-
msgstr "Vyberte skupinu odběratelů."
|
1947 |
|
1948 |
-
#: ../
|
1949 |
-
|
1950 |
-
|
1951 |
-
msgstr "Vyberte stav oznámení."
|
1952 |
|
1953 |
-
#: ../
|
1954 |
-
|
1955 |
-
|
1956 |
-
msgstr "Chcete smazat tento záznam?"
|
1957 |
|
1958 |
-
#: ../
|
1959 |
-
|
1960 |
-
|
1961 |
-
msgstr "Vyberte předmět zprávy."
|
1962 |
|
1963 |
-
#: ../
|
1964 |
-
|
1965 |
-
msgid "
|
1966 |
-
msgstr "
|
1967 |
|
1968 |
-
#: ../
|
1969 |
-
|
1970 |
-
|
1971 |
-
"
|
1972 |
-
"
|
1973 |
-
msgstr "Zkontrolovali jste si vybranou skupinu? Jestli ano, formulář můžete odeslat."
|
1974 |
|
1975 |
-
#: ../
|
1976 |
-
|
1977 |
-
|
1978 |
-
|
|
|
1979 |
|
1980 |
-
#: ../
|
1981 |
-
|
1982 |
-
|
1983 |
-
|
|
|
1984 |
|
1985 |
-
#: ../
|
1986 |
-
|
1987 |
-
|
1988 |
-
msgstr "Vyberte počet emailů, které chcete odeslat za hodinu/spuštění."
|
1989 |
|
1990 |
-
#: ../
|
1991 |
-
|
1992 |
-
|
1993 |
-
msgstr "Zadejte počet emailů (pouze číslo)."
|
1994 |
|
1995 |
-
#: ../
|
1996 |
-
|
1997 |
-
|
1998 |
-
msgstr "Zadejte emailovou adresu"
|
1999 |
|
2000 |
-
#: ../
|
2001 |
-
|
2002 |
-
|
2003 |
-
msgstr "Zadejte platnou emailovou adresu"
|
2004 |
|
2005 |
-
#: ../
|
2006 |
-
|
2007 |
-
msgid "
|
2008 |
-
msgstr "
|
2009 |
|
2010 |
-
#: ../
|
2011 |
-
|
2012 |
-
|
2013 |
-
msgstr "Nelze vytvořit instanci XMLHTTP"
|
2014 |
|
2015 |
-
#: ../
|
2016 |
-
|
2017 |
-
|
2018 |
-
msgstr "Úspěšné přihlášení k odběru."
|
2019 |
|
2020 |
-
#: ../
|
2021 |
-
|
2022 |
-
|
2023 |
-
msgstr "Emailová adresa již existuje!"
|
2024 |
|
2025 |
-
#: ../
|
2026 |
-
|
2027 |
-
|
2028 |
-
msgstr "Nastala neočekávaná chyba."
|
2029 |
|
2030 |
-
#: ../
|
2031 |
-
|
2032 |
-
msgid "
|
2033 |
-
msgstr "
|
2034 |
|
2035 |
-
#: ../
|
2036 |
-
|
2037 |
-
|
2038 |
-
msgstr "Prosím, zkuste to později"
|
2039 |
|
2040 |
-
#: ../
|
2041 |
-
|
2042 |
-
|
2043 |
-
msgstr "Došlo k potížím s požadavkem"
|
2044 |
|
2045 |
-
#: ../
|
2046 |
-
|
2047 |
-
|
2048 |
-
msgstr "Zadejte emailovou adresu"
|
2049 |
|
2050 |
-
#: ../
|
2051 |
-
|
2052 |
-
|
2053 |
-
msgstr "Zadejte platnou emailovou adresu"
|
2054 |
|
2055 |
-
#: ../
|
2056 |
-
|
2057 |
-
|
2058 |
-
msgstr "načítání..."
|
2059 |
|
2060 |
-
#: ../
|
2061 |
-
|
2062 |
-
|
2063 |
-
msgstr "Nelze vytvořit instanci XMLHTTP"
|
2064 |
|
2065 |
-
#: ../
|
2066 |
-
|
2067 |
-
|
2068 |
-
msgstr "Úspěšné přihlášení k odběru."
|
2069 |
|
2070 |
-
#: ../
|
2071 |
-
|
2072 |
-
|
2073 |
-
msgstr "Emailová adresa již existuje!"
|
2074 |
|
2075 |
-
#: ../
|
2076 |
-
|
2077 |
-
|
2078 |
-
msgstr "Nastala neočekávaná chyba."
|
2079 |
|
2080 |
-
#: ../
|
2081 |
-
|
2082 |
-
|
2083 |
-
msgstr "Neplatná emailová adresa"
|
2084 |
|
2085 |
-
#: ../
|
2086 |
-
|
2087 |
-
|
2088 |
-
msgstr "Prosím, zkuste to později"
|
2089 |
|
2090 |
-
#: ../
|
2091 |
-
|
2092 |
-
|
2093 |
-
msgstr "Došlo k potížím s požadavkem"
|
2094 |
|
2095 |
-
#: ../
|
2096 |
-
msgid ""
|
2097 |
-
"
|
2098 |
-
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
2099 |
-
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
2100 |
-
"</a> rating. A huge thank you from Icegram in advance!"
|
2101 |
-
msgstr ""
|
2102 |
-
"Pokud se vám líbí <strong> Email Subscribers </strong>, zvažte, prosím, "
|
2103 |
-
"zanechání <a target=\"_blank\" href=\"https://wordpress."
|
2104 |
-
"org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">★"
|
2105 |
-
"★★★★</a> hodnocení. Icegram předem mnohokrát děkuje!"
|
2106 |
|
2107 |
-
#: ../
|
2108 |
-
msgid "
|
2109 |
-
msgstr "
|
2110 |
|
2111 |
-
#: ../
|
2112 |
-
msgid "
|
2113 |
-
msgstr "
|
2114 |
|
2115 |
-
#: ../
|
2116 |
-
msgid "
|
2117 |
-
msgstr "
|
2118 |
|
2119 |
-
#: ../
|
2120 |
-
msgid "Email
|
2121 |
-
msgstr "
|
2122 |
|
2123 |
-
#: ../
|
2124 |
-
msgid "
|
2125 |
-
msgstr "
|
2126 |
|
2127 |
-
#: ../
|
2128 |
-
msgid "
|
2129 |
-
msgstr "
|
2130 |
|
2131 |
-
|
2132 |
-
msgid "
|
2133 |
-
msgstr "
|
2134 |
|
2135 |
-
|
2136 |
-
msgid "
|
2137 |
-
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.12\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Tue Apr 17 2018 15:50:00 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Czech\n"
|
23 |
"X-Loco-Target-Locale: cs_CZ\n"
|
24 |
"X-Poedit-SearchPath-0: .."
|
25 |
|
26 |
+
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
27 |
+
#: register.php:789 ../classes/es-register.php:790 ../classes/es-register.php:795
|
28 |
+
msgid "Templates"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: ../classes/es-register.php:177 ../classes/es-register.php:178 ..
|
32 |
+
#: settings/settings-edit.php:42
|
33 |
+
msgid "Settings"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: ../classes/es-register.php:184
|
37 |
+
msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: ../classes/es-register.php:201
|
41 |
+
msgctxt "view-subscriber-enhanced-select"
|
42 |
+
msgid ""
|
43 |
+
"Do you want to resend confirmation email? Also please note, this will update "
|
44 |
+
"subscriber current status to 'Unconfirmed'."
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: ../classes/es-register.php:215
|
48 |
+
msgctxt "notification-enhanced-select"
|
49 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: ../classes/es-register.php:260
|
53 |
+
msgctxt "widget-enhanced-select"
|
54 |
+
msgid ""
|
55 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
56 |
+
"subscription. If you don't see the email within a few minutes, check the "
|
57 |
+
"spam/junk folder."
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: ../classes/es-register.php:274
|
61 |
+
msgctxt "widget-page-enhanced-select"
|
62 |
+
msgid ""
|
63 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
64 |
+
"subscription. If you don't see the email within a few minutes, check the "
|
65 |
+
"spam/junk folder."
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: ../classes/es-register.php:739
|
69 |
msgid ""
|
70 |
+
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
71 |
+
"subscribers list?</b> Come check our Pro plan."
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: ../classes/es-register.php:740
|
75 |
+
msgid "Check Pro plan "
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: ../classes/es-register.php:740
|
79 |
+
msgid "Not interested."
|
|
|
|
|
|
|
|
|
|
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: ../classes/es-register.php:780
|
83 |
+
#, php-format
|
84 |
+
msgid "Email Subscribers version: <strong>%s</strong>"
|
|
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: ../classes/es-register.php:791 ../classes/es-register.php:792
|
88 |
+
msgid "Add new Template"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: ../classes/es-register.php:793
|
92 |
+
msgid "Edit Templates"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: ../classes/es-register.php:794
|
96 |
+
msgid "New Templates"
|
|
|
|
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: ../classes/es-register.php:796
|
100 |
+
msgid "View Templates"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: ../classes/es-register.php:797
|
104 |
+
msgid "Search Templates"
|
|
|
|
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: ../classes/es-register.php:798
|
108 |
+
msgid "No Templates found"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: ../classes/es-register.php:799
|
112 |
+
msgid "No Templates found in Trash"
|
|
|
|
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: ../classes/es-register.php:802
|
116 |
+
msgid "Thumbnail (For Visual Representation only)"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: ../classes/es-register.php:803
|
120 |
+
msgid "Set thumbnail"
|
|
|
|
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: ../classes/es-register.php:840
|
124 |
+
msgid "Template Type"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: ../classes/es-register.php:906
|
128 |
+
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
|
|
|
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: ../classes/es-register.php:909
|
132 |
+
msgid "Select your Email Template Type"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: ../classes/es-register.php:959
|
136 |
+
msgid "Preview Template"
|
|
|
|
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: ../classes/es-register.php:973
|
140 |
+
#, php-format
|
141 |
+
msgid ""
|
142 |
+
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
143 |
+
"{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
|
144 |
+
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: ../classes/es-register.php:974
|
148 |
+
#, php-format
|
149 |
+
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: ../export/export-email-address.php:50 ../export/export-email-address.php:54
|
153 |
+
msgid "Unexpected url submit has been detected!"
|
|
|
|
|
|
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: ../help/help.php:185
|
157 |
+
msgid "Thanks for installing and we hope you will enjoy using this plugin."
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: ../help/help.php:186
|
161 |
msgid ""
|
162 |
+
"By default, subscribers subscribed via Email Subscribers, will receive email "
|
163 |
+
"updates when you post a new blog. You can turn these updates off like this:"
|
|
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: ../help/help.php:187
|
167 |
msgid ""
|
168 |
+
"Email Subscribers -> Post Notification -> Edit -> Select Notification Status "
|
169 |
+
"when a new post is published -> Disable -> Save."
|
|
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: ../help/help.php:191
|
173 |
+
msgid "Get more help and tips..."
|
|
|
|
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: ../help/help.php:205
|
177 |
+
#, php-format
|
178 |
+
msgid "Version: %s"
|
|
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: ../help/help.php:208
|
182 |
+
msgid "Questions? Need Help?"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: ../help/help.php:209
|
186 |
+
msgid "Contact Us"
|
|
|
|
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: ../help/help.php:214
|
190 |
+
#, php-format
|
191 |
msgid ""
|
192 |
+
"<b>Like Email Subscribers?</b> If yes, then consider %s to support further "
|
193 |
+
"developments."
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: ../help/help.php:214
|
197 |
+
msgid "donating to us"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: ../help/help.php:249
|
201 |
+
msgid "Description"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: ../help/help.php:251
|
205 |
+
msgid ""
|
206 |
+
"Email Subscribers is a complete newsletter plugin which lets you collect "
|
207 |
+
"leads, send automated new blog post notification emails, create & send "
|
208 |
+
"newsletters and manage all this in one single place."
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: ../help/help.php:253
|
212 |
+
msgid "Feature Overview"
|
|
|
|
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: ../help/help.php:256
|
216 |
msgid ""
|
217 |
+
"Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
|
218 |
+
"Code)."
|
|
|
|
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: ../help/help.php:259
|
222 |
+
msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
|
|
|
|
|
|
|
|
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: ../help/help.php:262
|
226 |
+
msgid "Send automatic welcome email to subscribers."
|
|
|
|
|
|
|
|
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: ../help/help.php:265
|
230 |
msgid ""
|
231 |
+
"Send new post notification emails to subscribers when new posts are "
|
232 |
+
"published on your website."
|
|
|
|
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: ../help/help.php:268
|
236 |
+
msgid "Schedule email (Cron job) or send them manually."
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: ../help/help.php:271
|
240 |
+
msgid "Send email notification to admin when a new user signs up."
|
|
|
|
|
|
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: ../help/help.php:274
|
244 |
+
msgid "Automatically add Unsubscribe link in the email."
|
|
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: ../help/help.php:277
|
248 |
+
msgid "Easily migrate subscribers from another app using Import & Export."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
249 |
msgstr ""
|
250 |
|
251 |
#: ../help/help.php:280
|
315 |
"Roles"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: ../help/help.php:327
|
319 |
+
msgid "How does Sync work?"
|
320 |
msgstr ""
|
321 |
|
322 |
#: ../help/help.php:333
|
323 |
+
msgid "How to Add/Update Existing Subscribers Group & Status?"
|
324 |
+
msgstr ""
|
325 |
+
|
326 |
+
#: ../help/help.php:336
|
327 |
msgid "How to change/update/translate any texts from the plugin?"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: ../help/help.php:342
|
331 |
msgid "How to check sent emails?"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: ../help/help.php:354
|
335 |
msgid "Create and Send Newsletter Emails"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: ../help/help.php:357
|
339 |
msgid "Keywords in the Newsletters"
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: ../help/help.php:364
|
343 |
msgid "Create and Send Post Notification Emails when new posts are published"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: ../help/help.php:367
|
347 |
msgid "Keywords in the Post Notifications"
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: ../help/help.php:370
|
351 |
msgid "Send a test post notification email to myself/testgroup"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: ../help/help.php:375
|
355 |
msgid "Cron Job Setup"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: ../help/help.php:378
|
359 |
msgid "What is Cron and how to Schedule Cron Emails?"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: ../help/help.php:381
|
363 |
msgid "Schedule Cron Emails in cPanel"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: ../help/help.php:384
|
367 |
msgid "Schedule Cron Emails in Parallels Plesk"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: ../help/help.php:387
|
371 |
msgid "Hosting doesn’t support Cron Jobs?"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: ../help/help.php:390
|
375 |
msgid "Troubleshooting Steps"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: ../help/help.php:398
|
379 |
msgid "FAQ's"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: ../help/help.php:404
|
383 |
msgid "Want to do more? Here's how.."
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: ../help/help.php:407
|
387 |
msgid "Allow Subscribers to get subscribed to any group"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: ../help/help.php:412
|
391 |
msgid "Using our <b>free</b> "
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: ../help/help.php:413
|
395 |
msgid "Group Selector"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: ../help/help.php:414
|
399 |
msgid ""
|
400 |
"plugin, you can extend Email Subscribers Form functionality by providing an "
|
401 |
"grouping option right next to the form."
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: ../help/help.php:417
|
405 |
msgid "The user can then subscribe to whichever group most appeals to them."
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: ../help/help.php:420
|
409 |
msgid "For example: Subscribe either to Updates or to Offers."
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: ../help/help.php:424
|
413 |
msgid "Show your subscribe form inside attractive popups"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: ../help/help.php:429
|
417 |
msgid ""
|
418 |
"Don't limit your subscriber form to a widget. Embed it within popups, hello "
|
419 |
"bars, slide-ins, sidebars, full screen popups etc."
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: ../help/help.php:432
|
423 |
msgid ""
|
424 |
"Using Email Subscribers you can achieve this easily with our <b>free</b> "
|
425 |
"plugin "
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: ../help/help.php:436
|
429 |
msgid ""
|
430 |
"Icegram's beautiful designs instantly capture user attention and help "
|
431 |
"increase sign-ups to your WordPress website."
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: ../help/help.php:439 ../help/help.php:459
|
435 |
#, php-format
|
436 |
msgid "How to %s"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: ../help/help.php:439
|
440 |
msgid "show subscribe form inside a popup"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: ../help/help.php:443
|
444 |
msgid "Get beautiful and elegant form styles"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: ../help/help.php:449
|
448 |
msgid "Email subscribers easily integrates with another <b>free</b> plugin "
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: ../help/help.php:450
|
452 |
msgid "Rainmaker"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: ../help/help.php:453
|
456 |
msgid ""
|
457 |
"Rainmaker extends the core features of Email Subscribers and provides "
|
458 |
"elegant form styles."
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: ../help/help.php:456
|
462 |
msgid ""
|
463 |
"These styles are well designed and beautify your subscription form making it "
|
464 |
"more appealing."
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: ../help/help.php:459
|
468 |
msgid "add Rainmaker’s form in Email Subscribers"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
|
472 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
476 |
+
#: 164
|
477 |
+
msgid "(Use templates menu to create new)"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: ../sendmail/sendmail.php:59
|
481 |
+
msgid "Email sent successfully. "
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: ../sentmail/sentmail-preview.php:27
|
485 |
+
msgid "Preview Email"
|
|
|
|
|
|
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: ../sentmail/sentmail-preview.php:31
|
489 |
+
msgid ""
|
490 |
+
"This is how the email you sent may look. <br>Note: Different email services "
|
491 |
+
"(like gmail, yahoo etc) display email content differently. So there could be "
|
492 |
+
"a slight variation on how your customer will view the email content."
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: ../settings/settings-edit.php:23
|
496 |
+
msgid "Admin"
|
|
|
|
|
|
|
|
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: ../settings/settings-edit.php:24
|
500 |
+
msgid "Signup Confirmation"
|
|
|
|
|
|
|
|
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: ../settings/settings-edit.php:25
|
504 |
+
msgid "Cron"
|
|
|
|
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: ../settings/settings-edit.php:89
|
508 |
+
msgid "Email Type"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: ../settings/settings-edit.php:90
|
512 |
+
msgid ""
|
513 |
+
"Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
|
514 |
+
"Option 3 & 4 is to send emails with PHP method mail()."
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: ../settings/settings-edit.php:104
|
518 |
+
msgid "Opt-In Type"
|
|
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: ../settings/settings-edit.php:105
|
522 |
+
msgid ""
|
523 |
+
"Double Opt-In : In this type, the subscriber is sent an activation link as "
|
524 |
+
"soon as they subscribe to your list. They have to confirm their subscription "
|
525 |
+
"by clicking on the activation link.<br />Single Opt-In : In this type, the "
|
526 |
+
"subscriber is not asked to confirm their email address. They are subscribed "
|
527 |
+
"directly in the list."
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: ../settings/settings-edit.php:117
|
531 |
+
msgid ""
|
532 |
+
"Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
|
533 |
+
"Emails."
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: ../settings/settings-edit.php:136
|
537 |
+
msgid "Notify Admin when a new subscriber signs up"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: ../settings/settings-edit.php:149
|
541 |
+
msgid "Admin Email Subject on new subscriber sign up"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: ../settings/settings-edit.php:150
|
545 |
+
msgid ""
|
546 |
+
"Subject for the admin email whenever a new subscriber signs up and is "
|
547 |
+
"confirmed."
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: ../settings/settings-edit.php:156
|
551 |
+
msgid "Admin Email Content on new subscriber signs up"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: ../settings/settings-edit.php:157
|
555 |
+
msgid ""
|
556 |
+
"Content for the admin email whenever a new subscriber signs up and is "
|
557 |
+
"confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: ../settings/settings-edit.php:165
|
561 |
+
msgid "Subject for the email report which will be sent to admin."
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: ../settings/settings-edit.php:172
|
565 |
+
msgid ""
|
566 |
+
"Content for the email report which will be sent to admin.<br />Available "
|
567 |
+
"Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: ../settings/settings-edit.php:183
|
571 |
+
msgid "Double Opt-In Email Subject (Confirmation Email)"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: ../settings/settings-edit.php:184
|
575 |
+
msgid ""
|
576 |
+
"Subject for the confirmation email to be sent for Double Opt-In whenever a "
|
577 |
+
"subscriber signs up."
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: ../settings/settings-edit.php:190
|
581 |
+
msgid "Double Opt-In Email Content (Confirmation Email)"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: ../settings/settings-edit.php:191
|
585 |
+
msgid ""
|
586 |
+
"Content for the confirmation email to be sent for Double Opt-In whenever a "
|
587 |
+
"subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: ../settings/settings-edit.php:197
|
591 |
+
msgid "Double Opt-In Confirmation Link"
|
592 |
+
msgstr ""
|
593 |
+
|
594 |
+
#: ../settings/settings-edit.php:204
|
595 |
msgid ""
|
596 |
+
"Text to display after an email address is successfully subscribed from "
|
597 |
+
"Double Opt-In (Confirmation) Email"
|
|
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: ../settings/settings-edit.php:212
|
601 |
+
msgid "Send Welcome Email to New Subscribers after Sign Up?"
|
|
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: ../settings/settings-edit.php:224
|
605 |
+
msgid "Subject for Welcome Email"
|
606 |
+
msgstr ""
|
607 |
|
608 |
+
#: ../settings/settings-edit.php:225
|
609 |
+
msgid ""
|
610 |
+
"Subject for the subscriber welcome email. This will be sent whenever a "
|
611 |
+
"user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
|
612 |
+
"Opt-In) successfully."
|
613 |
+
msgstr ""
|
614 |
|
615 |
+
#: ../settings/settings-edit.php:231
|
616 |
+
msgid "Email Content for Welcome Email"
|
617 |
+
msgstr ""
|
618 |
|
619 |
+
#: ../settings/settings-edit.php:232
|
620 |
+
msgid ""
|
621 |
+
"Content for the subscriber welcome email whenever a user's email is either "
|
622 |
+
"confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
|
623 |
+
"<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
|
624 |
+
msgstr ""
|
625 |
|
626 |
+
#: ../settings/settings-edit.php:241
|
627 |
+
msgid ""
|
628 |
+
"This unsubscribe link is automatically added to all the emails that are sent "
|
629 |
+
"from this plugin. It is a readonly field and you are advised not to modify "
|
630 |
+
"it."
|
631 |
+
msgstr ""
|
632 |
|
633 |
+
#: ../settings/settings-edit.php:248
|
634 |
+
msgid ""
|
635 |
+
"The text for the unsubscribe link. This text is automatically added with "
|
636 |
+
"unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
|
637 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
638 |
|
639 |
+
#: ../settings/settings-edit.php:255
|
640 |
+
msgid ""
|
641 |
+
"This text will be displayed once user clicks on unsubscribe link from the "
|
642 |
+
"email."
|
643 |
+
msgstr ""
|
644 |
|
645 |
+
#: ../settings/settings-edit.php:262
|
646 |
+
msgid "Error in the Subscribe / Confirmation Link"
|
647 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
648 |
|
649 |
+
#: ../settings/settings-edit.php:263
|
650 |
+
msgid ""
|
651 |
+
"Default message to display if there is any issue while clicking on subscribe "
|
652 |
+
"/ confirmation link from the Double Opt-In (Confirmation) emails."
|
653 |
+
msgstr ""
|
654 |
|
655 |
+
#: ../settings/settings-edit.php:270
|
656 |
+
msgid ""
|
657 |
+
"Default message to display if there is any issue while clicking on "
|
658 |
+
"unsubscribe link from the emails."
|
659 |
+
msgstr ""
|
660 |
|
661 |
+
#: ../settings/settings-edit.php:300
|
662 |
+
msgid "Templates Menu"
|
663 |
+
msgstr ""
|
|
|
664 |
|
665 |
+
#: ../settings/settings-edit.php:369
|
666 |
+
msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
|
667 |
+
msgstr ""
|
|
|
668 |
|
669 |
+
#: ../settings/settings-edit.php:374
|
670 |
+
msgid "Cron Report"
|
671 |
+
msgstr ""
|
|
|
672 |
|
673 |
+
#: ../settings/settings-edit.php:375
|
674 |
+
msgid ""
|
675 |
+
"Email to admin whenever a cron URL is triggered from your server.<br "
|
676 |
+
"/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
|
677 |
+
msgstr ""
|
678 |
|
679 |
+
#: ../settings/settings-edit.php:386
|
680 |
+
msgid ""
|
681 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
682 |
+
"schedule-cron-emails/?"
|
683 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
|
684 |
+
"Cron?</a>"
|
685 |
+
msgstr ""
|
686 |
|
687 |
+
#: ../settings/settings-edit.php:387
|
688 |
+
msgid ""
|
689 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
690 |
+
"schedule-cron-emails-in-cpanel/?"
|
691 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
|
692 |
+
"job in cPanel</a>"
|
693 |
+
msgstr ""
|
694 |
|
695 |
+
#: ../settings/settings-edit.php:388
|
696 |
+
msgid ""
|
697 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
698 |
+
"schedule-cron-emails-in-parallels-plesk/?"
|
699 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
|
700 |
+
"job in Plesk</a>"
|
701 |
+
msgstr ""
|
702 |
|
703 |
+
#: ../settings/settings-edit.php:389
|
704 |
+
msgid ""
|
705 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
|
706 |
+
"if-hosting-doesnt-support-cron-jobs/?"
|
707 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
|
708 |
+
"does not support cron jobs?</a>"
|
709 |
+
msgstr ""
|
710 |
|
711 |
+
#: ../subscribers/view-subscriber-export.php:12
|
712 |
+
msgid ""
|
713 |
+
"Oops! Looks like you are not the site administrator.<br><br>Only the site "
|
714 |
+
"administrator can export subscriber list."
|
715 |
+
msgstr ""
|
716 |
|
717 |
+
#: ../subscribers/view-subscriber-export.php:14
|
718 |
+
msgid "Go back to Subscribers dashboard"
|
719 |
+
msgstr ""
|
|
|
720 |
|
721 |
+
#: ../subscribers/view-subscriber-show.php:75 ../subscribers/view-subscriber-show.
|
722 |
+
#: php:134
|
723 |
+
msgid "Confirmation emails resent successfully."
|
724 |
+
msgstr ""
|
|
|
725 |
|
726 |
+
#: ../subscribers/view-subscriber-show.php:256
|
727 |
+
msgid "Total Subscribers: "
|
728 |
+
msgstr ""
|
729 |
|
730 |
+
#: ../templates/template-preview.php:31
|
731 |
+
msgid "Template Preview"
|
732 |
+
msgstr ""
|
|
|
733 |
|
734 |
+
#: ../templates/template-preview.php:39
|
735 |
+
msgid "This is how your email may look."
|
736 |
+
msgstr ""
|
|
|
737 |
|
738 |
+
#: ../templates/template-preview.php:41
|
739 |
msgid ""
|
740 |
+
"<br><br>This Post Notification preview has replaced keywords from your last "
|
741 |
+
"published blog post."
|
742 |
msgstr ""
|
|
|
|
|
743 |
|
744 |
+
#: ../templates/template-preview.php:43
|
745 |
+
msgid ""
|
746 |
+
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
747 |
+
"content differently. So there could be a slight variation on how your "
|
748 |
+
"customer will view the email content."
|
749 |
+
msgstr ""
|
|
|
|
|
|
|
750 |
|
751 |
+
#. URI of the plugin
|
752 |
+
msgid "https://www.icegram.com"
|
753 |
+
msgstr ""
|
|
|
754 |
|
755 |
+
#: ../email-subscribers.php:95
|
756 |
+
msgctxt "timezone date format"
|
757 |
+
msgid "Y-m-d H:i:s"
|
758 |
+
msgstr ""
|
759 |
|
760 |
+
#: ../classes/es-common.php:13
|
761 |
+
msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
|
762 |
+
msgstr "<span style=\"color:#006600;font-weight:bold;\">Potvrzeno</span>"
|
|
|
763 |
|
764 |
+
#: ../classes/es-common.php:16
|
765 |
+
msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
|
766 |
+
msgstr "<span style=\"color:#FF0000\">Nepotvrzeno</span>"
|
|
|
767 |
|
768 |
+
#: ../classes/es-common.php:19
|
769 |
+
msgid "<span style=\"color:#999900\">Unsubscribed</span>"
|
770 |
+
msgstr "<span style=\"color:#999900\">Odhlášen/a</span>"
|
|
|
771 |
|
772 |
+
#: ../classes/es-common.php:22
|
773 |
+
msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
|
774 |
+
msgstr "<span style=\"color:#0000FF\">Jednoduché potvrzení</span>"
|
775 |
|
776 |
+
#: ../classes/es-common.php:25
|
777 |
+
msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
|
778 |
+
msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Zobrazeno</span>"
|
779 |
|
780 |
+
#: ../classes/es-common.php:28
|
781 |
+
msgid "<span style=\"color:#999900;\">Nodata</span>"
|
782 |
+
msgstr "<span style=\"color:#999900;\">Neuvedeno</span>"
|
783 |
|
784 |
+
#: ../classes/es-common.php:31
|
785 |
+
msgid "<span style=\"color:#FF0000\">Disabled</span>"
|
786 |
+
msgstr "<span style=\"color:#FF0000\">Neaktivní</span>"
|
787 |
|
788 |
+
#: ../classes/es-common.php:34
|
789 |
+
msgid "<span style=\"color:#FF0000\">In Queue</span>"
|
790 |
+
msgstr "<span style=\"color:#FF0000\">Ve frontě</span>"
|
|
|
791 |
|
792 |
+
#: ../classes/es-common.php:37
|
793 |
+
msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
|
794 |
+
msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Odesláno</span>"
|
795 |
|
796 |
+
#: ../classes/es-common.php:40
|
797 |
+
msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
|
798 |
+
msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">Cron email</span>"
|
799 |
+
|
800 |
+
#: ../classes/es-common.php:43
|
801 |
+
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
802 |
+
msgstr "<span style=\"color:#993399;\">Okamžitý email</span>"
|
803 |
+
|
804 |
+
#: ../classes/es-loadwidget.php:28 ../classes/es-register.php:1053 ..
|
805 |
+
#: subscribers/view-subscriber-show.php:289
|
806 |
+
msgid "Name"
|
807 |
+
msgstr "Jméno"
|
808 |
+
|
809 |
+
#: ../classes/es-loadwidget.php:33 ../classes/es-register.php:1058
|
810 |
+
msgid "Email *"
|
811 |
+
msgstr "Email *"
|
812 |
+
|
813 |
+
#: ../classes/es-loadwidget.php:38 ../classes/es-register.php:1063 ../help/help.
|
814 |
+
#: php:196
|
815 |
+
msgid "Subscribe"
|
816 |
+
msgstr "Odebírat"
|
817 |
+
|
818 |
+
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
819 |
+
#: register.php:801
|
820 |
+
msgid "Email Subscribers"
|
821 |
+
msgstr "Email Subscribers"
|
822 |
+
|
823 |
+
#: ../classes/es-register.php:165 ../classes/es-register.php:166 ..
|
824 |
+
#: subscribers/view-subscriber-show.php:242
|
825 |
+
msgid "Subscribers"
|
826 |
+
msgstr "Odběratelé"
|
827 |
+
|
828 |
+
#: ../classes/es-register.php:171 ../classes/es-register.php:172 ../help/help.php:
|
829 |
+
#: 361 ../notification/notification-show.php:52
|
830 |
+
msgid "Post Notifications"
|
831 |
+
msgstr "Oznámení o příspěvcích"
|
832 |
+
|
833 |
+
#: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
|
834 |
+
#: 351 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:324
|
835 |
+
msgid "Newsletters"
|
836 |
+
msgstr "Zpravodaje"
|
837 |
+
|
838 |
+
#: ../classes/es-register.php:180 ../classes/es-register.php:181 ..
|
839 |
+
#: sentmail/sentmail-show.php:93
|
840 |
+
msgid "Reports"
|
841 |
+
msgstr "Přehledy"
|
842 |
+
|
843 |
+
#: ../classes/es-register.php:183
|
844 |
+
msgid "Help & Info"
|
845 |
+
msgstr "Nápověda"
|
846 |
+
|
847 |
+
#: ../classes/es-register.php:195
|
848 |
+
msgctxt "view-subscriber-enhanced-select"
|
849 |
+
msgid "Please enter subscriber email address."
|
850 |
+
msgstr "Zadejte emailovou adresu odběratele."
|
851 |
+
|
852 |
+
#: ../classes/es-register.php:196
|
853 |
+
msgctxt "view-subscriber-enhanced-select"
|
854 |
+
msgid "Please select subscriber email status."
|
855 |
+
msgstr "Vyberte stav emailu odběratele."
|
856 |
+
|
857 |
+
#: ../classes/es-register.php:197
|
858 |
+
msgctxt "view-subscriber-enhanced-select"
|
859 |
+
msgid "Please select or create group for this subscriber."
|
860 |
+
msgstr "Vyberte nebo vytvořte skupinu pro tohoto odběratele."
|
861 |
+
|
862 |
+
#: ../classes/es-register.php:198
|
863 |
+
msgctxt "view-subscriber-enhanced-select"
|
864 |
+
msgid "Do you want to delete this record?"
|
865 |
+
msgstr "Opravdu chcete smazat tento záznam?"
|
866 |
+
|
867 |
+
#: ../classes/es-register.php:199
|
868 |
+
msgctxt "view-subscriber-enhanced-select"
|
869 |
+
msgid "Please select the bulk action."
|
870 |
+
msgstr "Vyberte hromadnou akci."
|
871 |
+
|
872 |
+
#: ../classes/es-register.php:200
|
873 |
+
msgctxt "view-subscriber-enhanced-select"
|
874 |
+
msgid "Are you sure you want to delete selected records?"
|
875 |
+
msgstr "Skutečně chcete smazat vybrané záznamy?"
|
876 |
+
|
877 |
+
#: ../classes/es-register.php:202
|
878 |
+
msgctxt "view-subscriber-enhanced-select"
|
879 |
+
msgid "Please select new subscriber group."
|
880 |
+
msgstr "Vyberte novou skupinu odběratele."
|
881 |
+
|
882 |
+
#: ../classes/es-register.php:203
|
883 |
+
msgctxt "view-subscriber-enhanced-select"
|
884 |
+
msgid "Please select new status for subscribers"
|
885 |
+
msgstr "Vyberte nový stav odběratele"
|
886 |
+
|
887 |
+
#: ../classes/es-register.php:204
|
888 |
+
msgctxt "view-subscriber-enhanced-select"
|
889 |
+
msgid "Do you want to update subscribers group?"
|
890 |
+
msgstr "Chcete upravit skupinu odběratelů?"
|
891 |
+
|
892 |
+
#: ../classes/es-register.php:205
|
893 |
+
msgctxt "view-subscriber-enhanced-select"
|
894 |
+
msgid "Do you want to update subscribers status?"
|
895 |
+
msgstr "Chcete upravit stav odběratele?"
|
896 |
+
|
897 |
+
#: ../classes/es-register.php:206
|
898 |
+
msgctxt "view-subscriber-enhanced-select"
|
899 |
msgid ""
|
900 |
+
"Please select only csv file. Please check official website for csv structure."
|
901 |
+
"."
|
902 |
msgstr ""
|
903 |
+
"Použijte výhradně soubor ve formátu CSV. Zkontrolujte strukturu csv souboru "
|
904 |
+
"na oficiálních internetových stránkách..."
|
|
|
905 |
|
906 |
+
#: ../classes/es-register.php:214
|
907 |
+
msgctxt "notification-enhanced-select"
|
908 |
+
msgid "Please select subscribers group."
|
909 |
+
msgstr "Vyberte skupinu odběratelů."
|
910 |
|
911 |
+
#: ../classes/es-register.php:216
|
912 |
+
msgctxt "notification-enhanced-select"
|
913 |
+
msgid "Please select notification status."
|
914 |
+
msgstr "Vyberte stav oznámení."
|
915 |
|
916 |
+
#: ../classes/es-register.php:217
|
917 |
+
msgctxt "notification-enhanced-select"
|
918 |
+
msgid "Do you want to delete this record?"
|
919 |
+
msgstr "Chcete smazat tento záznam?"
|
920 |
|
921 |
+
#: ../classes/es-register.php:225
|
922 |
+
msgctxt "sendmail-enhanced-select"
|
923 |
+
msgid "Please select your mail subject."
|
924 |
+
msgstr "Vyberte předmět zprávy."
|
925 |
+
|
926 |
+
#: ../classes/es-register.php:226
|
927 |
+
msgctxt "sendmail-enhanced-select"
|
928 |
+
msgid "Please select your mail type."
|
929 |
+
msgstr "Vyberte typ zprávy."
|
930 |
+
|
931 |
+
#: ../classes/es-register.php:227
|
932 |
+
msgctxt "sendmail-enhanced-select"
|
933 |
+
msgid ""
|
934 |
+
"Have you double checked your selected group? If so, let's go ahead and send "
|
935 |
+
"this."
|
936 |
+
msgstr "Zkontrolovali jste si vybranou skupinu? Jestli ano, formulář můžete odeslat."
|
937 |
+
|
938 |
+
#: ../classes/es-register.php:235
|
939 |
+
msgctxt "sentmail-enhanced-select"
|
940 |
+
msgid "Do you want to delete this record?"
|
941 |
+
msgstr "Chcete smazat tento záznam?"
|
942 |
+
|
943 |
+
#: ../classes/es-register.php:236
|
944 |
+
msgctxt "sentmail-enhanced-select"
|
945 |
+
msgid "Do you want to delete all records except latest 10?"
|
946 |
+
msgstr "Chcete smazat všechny záznamy kromě posledních 10?"
|
947 |
+
|
948 |
+
#: ../classes/es-register.php:244
|
949 |
+
msgctxt "cron-enhanced-select"
|
950 |
+
msgid "Please select enter number of mails you want to send per hour/trigger."
|
951 |
+
msgstr "Vyberte počet emailů, které chcete odeslat za hodinu/spuštění."
|
952 |
+
|
953 |
+
#: ../classes/es-register.php:245
|
954 |
+
msgctxt "cron-enhanced-select"
|
955 |
+
msgid "Please enter the mail count, only number."
|
956 |
+
msgstr "Zadejte počet emailů (pouze číslo)."
|
957 |
+
|
958 |
+
#: ../classes/es-register.php:258
|
959 |
+
msgctxt "widget-enhanced-select"
|
960 |
+
msgid "Please enter email address"
|
961 |
+
msgstr "Zadejte emailovou adresu"
|
962 |
+
|
963 |
+
#: ../classes/es-register.php:259
|
964 |
+
msgctxt "widget-enhanced-select"
|
965 |
+
msgid "Successfully Subscribed."
|
966 |
+
msgstr "Úspěšné přihlášení k odběru."
|
967 |
+
|
968 |
+
#: ../classes/es-register.php:261
|
969 |
+
msgctxt "widget-enhanced-select"
|
970 |
+
msgid "Email Address already exists!"
|
971 |
+
msgstr "Emailová adresa již existuje!"
|
972 |
+
|
973 |
+
#: ../classes/es-register.php:262
|
974 |
+
msgctxt "widget-enhanced-select"
|
975 |
+
msgid "Oops.. Unexpected error occurred."
|
976 |
+
msgstr "Nastala neočekávaná chyba."
|
977 |
+
|
978 |
+
#: ../classes/es-register.php:263
|
979 |
+
msgctxt "widget-enhanced-select"
|
980 |
+
msgid "Invalid email address"
|
981 |
+
msgstr "Neplatná emailová adresa"
|
982 |
+
|
983 |
+
#: ../classes/es-register.php:264
|
984 |
+
msgctxt "widget-enhanced-select"
|
985 |
+
msgid "Please try after some time"
|
986 |
+
msgstr "Prosím, zkuste to později"
|
987 |
+
|
988 |
+
#: ../classes/es-register.php:272
|
989 |
+
msgctxt "widget-page-enhanced-select"
|
990 |
+
msgid "Please enter email address"
|
991 |
+
msgstr "Zadejte emailovou adresu"
|
992 |
+
|
993 |
+
#: ../classes/es-register.php:273
|
994 |
+
msgctxt "widget-page-enhanced-select"
|
995 |
+
msgid "Successfully Subscribed."
|
996 |
+
msgstr "Úspěšné přihlášení k odběru."
|
997 |
+
|
998 |
+
#: ../classes/es-register.php:275
|
999 |
+
msgctxt "widget-page-enhanced-select"
|
1000 |
+
msgid "Email Address already exists!"
|
1001 |
+
msgstr "Emailová adresa již existuje!"
|
1002 |
+
|
1003 |
+
#: ../classes/es-register.php:276
|
1004 |
+
msgctxt "widget-page-enhanced-select"
|
1005 |
+
msgid "Oops.. Unexpected error occurred."
|
1006 |
+
msgstr "Nastala neočekávaná chyba."
|
1007 |
+
|
1008 |
+
#: ../classes/es-register.php:277
|
1009 |
+
msgctxt "widget-page-enhanced-select"
|
1010 |
+
msgid "Invalid email address"
|
1011 |
+
msgstr "Neplatná emailová adresa"
|
1012 |
+
|
1013 |
+
#: ../classes/es-register.php:278
|
1014 |
+
msgctxt "widget-page-enhanced-select"
|
1015 |
+
msgid "Please try after some time"
|
1016 |
+
msgstr "Prosím, zkuste to později"
|
1017 |
+
|
1018 |
+
#: ../classes/es-register.php:766
|
1019 |
+
msgid ""
|
1020 |
+
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
1021 |
+
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
1022 |
+
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
1023 |
+
"</a> rating. A huge thank you from Icegram in advance!"
|
1024 |
+
msgstr ""
|
1025 |
+
"Pokud se vám líbí <strong> Email Subscribers </strong>, zvažte, prosím, "
|
1026 |
+
"zanechání <a target=\"_blank\" href=\"https://wordpress."
|
1027 |
+
"org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">★"
|
1028 |
+
"★★★★</a> hodnocení. Icegram předem mnohokrát děkuje!"
|
1029 |
+
|
1030 |
+
#: ../classes/es-register.php:841 ../settings/settings-edit.php:123
|
1031 |
+
msgid "Thumbnail"
|
1032 |
+
msgstr "Náhled"
|
1033 |
+
|
1034 |
+
#: ../classes/es-register.php:889 ../sentmail/sentmail-show.php:108 ..
|
1035 |
+
#: sentmail/sentmail-show.php:121
|
1036 |
+
msgid "Preview"
|
1037 |
+
msgstr "Náhled"
|
1038 |
+
|
1039 |
+
#: ../classes/es-register.php:911
|
1040 |
+
msgid "Newsletter"
|
1041 |
+
msgstr "Zpravodaj"
|
1042 |
+
|
1043 |
+
#: ../classes/es-register.php:912
|
1044 |
+
msgid "Post Notification"
|
1045 |
+
msgstr "Potvrzení příspěvku"
|
1046 |
+
|
1047 |
+
#: ../classes/es-register.php:973 ../classes/es-register.php:974
|
1048 |
+
msgid "Available Keywords"
|
1049 |
+
msgstr "Dostupná klíčová slova"
|
1050 |
+
|
1051 |
+
#: ../classes/es-register.php:1103
|
1052 |
+
msgid "Widget Title"
|
1053 |
+
msgstr "Nadpis widgetu"
|
1054 |
|
1055 |
+
#: ../classes/es-register.php:1107
|
1056 |
+
msgid "Short description about subscription form"
|
1057 |
+
msgstr "Krátký popis k vašemu přihlašovacímu formuláři"
|
|
|
|
|
|
|
|
|
1058 |
|
1059 |
+
#: ../classes/es-register.php:1111
|
1060 |
+
msgid "Display Name Field"
|
1061 |
+
msgstr "Zobrazit pole „Jméno“"
|
1062 |
|
1063 |
+
#: ../classes/es-register.php:1113 ../settings/settings-edit.php:142 ..
|
1064 |
+
#: settings/settings-edit.php:217 ../subscribers/view-subscriber-sync.php:107
|
1065 |
+
msgid "YES"
|
1066 |
+
msgstr "ANO"
|
1067 |
|
1068 |
+
#: ../classes/es-register.php:1114 ../settings/settings-edit.php:143 ..
|
1069 |
+
#: settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:106
|
1070 |
+
msgid "NO"
|
1071 |
+
msgstr "NE"
|
1072 |
|
1073 |
+
#: ../classes/es-register.php:1118
|
1074 |
+
msgid "Subscriber Group"
|
1075 |
+
msgstr "Skupina odběratelů"
|
1076 |
|
1077 |
+
#: ../help/help.php:184
|
1078 |
+
msgid "Welcome to Email Subscribers!"
|
1079 |
+
msgstr "Vítá vás plugin Email Subscribers!"
|
1080 |
|
1081 |
+
#: ../help/help.php:301 ../help/help.php:312 ../help/help.php:315 ../help/help.
|
1082 |
+
#: php:327 ../help/help.php:330 ../help/help.php:333 ../help/help.php:336 ..
|
1083 |
+
#: help/help.php:339 ../help/help.php:342 ../help/help.php:354 ../help/help.php:
|
1084 |
+
#: 357 ../help/help.php:364 ../help/help.php:367 ../help/help.php:370 ..
|
1085 |
+
#: help/help.php:378 ../help/help.php:381 ../help/help.php:384 ../help/help.php:
|
1086 |
+
#: 387 ../help/help.php:393 ../help/help.php:396 ../help/help.php:398
|
1087 |
+
#, php-format
|
1088 |
+
msgid "%s"
|
1089 |
+
msgstr "%s"
|
1090 |
|
1091 |
+
#: ../help/help.php:301
|
1092 |
+
msgid "How to Add Subscription box to website?"
|
1093 |
+
msgstr "Jak na web přidat přihlašovací formulář?"
|
1094 |
|
1095 |
+
#: ../help/help.php:330
|
1096 |
+
msgid "How to Import or Export Email Addresses?"
|
1097 |
+
msgstr "Jak importovat nebo exportovat emailové adresy?"
|
1098 |
|
1099 |
+
#: ../help/help.php:339
|
1100 |
+
msgid "How to add Unsubscribe link in emails?"
|
1101 |
+
msgstr "Jak do emailů přidat odkaz pro odhlášení?"
|
1102 |
|
1103 |
+
#: ../help/help.php:393
|
1104 |
+
msgid "Subscribers are not receiving Emails?"
|
1105 |
+
msgstr "Odběratelé nepřijímají emaily?"
|
1106 |
|
1107 |
+
#: ../help/help.php:396
|
1108 |
+
msgid "CSS Help"
|
1109 |
+
msgstr "CSS Nápověda"
|
1110 |
|
1111 |
+
#. Author of the plugin/theme
|
1112 |
+
#: ../help/help.php:433
|
1113 |
+
msgid "Icegram"
|
1114 |
+
msgstr "Icegram"
|
|
|
|
|
|
|
1115 |
|
1116 |
+
#: ../job/es-optin.php:58 ../job/es-optin.php:68 ../job/es-unsubscribe.php:54 ..
|
1117 |
+
#: job/es-unsubscribe.php:61
|
1118 |
msgid ""
|
1119 |
+
"Oops.. We are getting some technical error. Please try again or contact "
|
1120 |
+
"admin."
|
1121 |
msgstr ""
|
1122 |
+
"Nastala technická chyba. Zkuste to prosím znovu nebo se obraťte na "
|
1123 |
+
"administrátora."
|
1124 |
|
1125 |
+
#: ../job/es-optin.php:61
|
1126 |
+
msgid "This email address has already been confirmed."
|
1127 |
+
msgstr "Tato emailová adresa již byla potvrzena."
|
|
|
1128 |
|
1129 |
+
#: ../notification/notification-add.php:33
|
1130 |
+
msgid "Please select subscribers group."
|
1131 |
+
msgstr "Vyberte skupinu odběratelů."
|
|
|
1132 |
|
1133 |
+
#: ../notification/notification-add.php:39
|
1134 |
+
msgid "Please select notification status."
|
1135 |
+
msgstr "Vyberte stav oznámení."
|
1136 |
|
1137 |
+
#: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
|
1138 |
+
msgid "Please select post categories."
|
1139 |
+
msgstr "Vyberte rubriky příspěvků."
|
1140 |
|
1141 |
+
#: ../notification/notification-add.php:71
|
1142 |
+
msgid "Notification successfully created. "
|
1143 |
+
msgstr "Oznámení bylo úspěšně vytvořeno. "
|
1144 |
|
1145 |
+
#: ../notification/notification-add.php:112
|
1146 |
+
msgid "Add Notification"
|
1147 |
+
msgstr "Přidat oznámení"
|
|
|
|
|
|
|
|
|
1148 |
|
1149 |
+
#: ../notification/notification-add.php:113 ../notification/notification-edit.php:
|
1150 |
+
#: 124 ../notification/notification-show.php:54 ../sendmail/sendmail.php:94 ..
|
1151 |
+
#: sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
|
1152 |
+
#: sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
|
1153 |
+
#: subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
|
1154 |
+
#: php:113 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
|
1155 |
+
#: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
|
1156 |
+
#: subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:32
|
1157 |
+
msgid "Help"
|
1158 |
+
msgstr "Nápověda"
|
1159 |
|
1160 |
+
#: ../notification/notification-add.php:121
|
1161 |
+
msgid "Select Subscribers Group"
|
1162 |
+
msgstr "Vyberte skupinu odběratelů"
|
1163 |
|
1164 |
+
#: ../notification/notification-add.php:125 ../notification/notification-add.php:
|
1165 |
+
#: 149 ../notification/notification-edit.php:136 ../notification/notification-
|
1166 |
+
#: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
|
1167 |
+
#: sendmail/sendmail.php:152 ../subscribers/view-subscriber-add.php:166 ..
|
1168 |
+
#: subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
|
1169 |
+
#: import.php:193 ../subscribers/view-subscriber-sync.php:119
|
1170 |
+
msgid "Select"
|
1171 |
+
msgstr "Vybrat"
|
1172 |
|
1173 |
+
#: ../notification/notification-add.php:143 ../notification/notification-edit.php:
|
1174 |
+
#: 163
|
1175 |
+
msgid "Select Notification Email Subject"
|
1176 |
+
msgstr "Vyberte předmět oznamovacího emailu"
|
1177 |
|
1178 |
+
#: ../notification/notification-add.php:168 ../notification/notification-edit.php:
|
1179 |
+
#: 191
|
1180 |
+
msgid "Select Post Categories"
|
1181 |
+
msgstr "Vyberte rubriky příspěvků"
|
1182 |
|
1183 |
+
#: ../notification/notification-add.php:196 ../notification/notification-edit.php:
|
1184 |
+
#: 226
|
1185 |
+
msgid "Check All"
|
1186 |
+
msgstr "Označit vše"
|
|
|
1187 |
|
1188 |
+
#: ../notification/notification-add.php:197 ../notification/notification-edit.php:
|
1189 |
+
#: 227
|
1190 |
+
msgid "Uncheck All"
|
1191 |
+
msgstr "Odznačit vše"
|
1192 |
|
1193 |
+
#: ../notification/notification-add.php:203 ../notification/notification-edit.php:
|
1194 |
+
#: 234
|
1195 |
+
msgid "Select your Custom Post Type"
|
1196 |
+
msgstr "Vyberte vlastní typ obsahu"
|
|
|
1197 |
|
1198 |
+
#: ../notification/notification-add.php:204 ../notification/notification-edit.php:
|
1199 |
+
#: 235
|
1200 |
+
msgid "(Optional)"
|
1201 |
+
msgstr "(nepovinné)"
|
|
|
1202 |
|
1203 |
+
#: ../notification/notification-add.php:233 ../notification/notification-edit.php:
|
1204 |
+
#: 269
|
1205 |
+
msgid "No Custom Post Types Available"
|
1206 |
+
msgstr "Vlastní typ obsahu není dostupný"
|
|
|
1207 |
|
1208 |
+
#: ../notification/notification-add.php:240 ../notification/notification-edit.php:
|
1209 |
+
#: 276
|
1210 |
+
msgid "Select Notification Status when a new post is published"
|
1211 |
+
msgstr "Vybrat stav potvrzení pro nově publikovaný příspěvek"
|
1212 |
|
1213 |
+
#: ../notification/notification-add.php:244 ../notification/notification-edit.php:
|
1214 |
+
#: 280 ../notification/notification-show.php:130 ../sendmail/sendmail.php:139
|
1215 |
+
msgid "Send email immediately"
|
1216 |
+
msgstr "Odeslat email okamžitě"
|
1217 |
|
1218 |
+
#: ../notification/notification-add.php:245 ../notification/notification-edit.php:
|
1219 |
+
#: 281 ../notification/notification-show.php:132
|
1220 |
+
msgid "Add to cron and send email via cron job"
|
1221 |
+
msgstr "Přidat do cronu a odeslat cronem"
|
1222 |
|
1223 |
+
#: ../notification/notification-add.php:246 ../notification/notification-edit.php:
|
1224 |
+
#: 282
|
1225 |
+
msgid "Disable email notification"
|
1226 |
+
msgstr "Zakázat oznamovací email"
|
1227 |
|
1228 |
+
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
1229 |
+
#: 291 ../subscribers/view-subscriber-edit.php:191
|
1230 |
+
msgid "Save"
|
1231 |
+
msgstr "Uložit"
|
|
|
|
|
|
|
1232 |
|
1233 |
+
#: ../notification/notification-edit.php:20 ../notification/notification-show.php:
|
1234 |
+
#: 21 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
|
1235 |
+
#: subscribers/view-subscriber-edit.php:22
|
1236 |
+
msgid "Oops, selected details does not exists."
|
1237 |
+
msgstr "Vybrané podrobnosti neexistují."
|
1238 |
+
|
1239 |
+
#: ../notification/notification-edit.php:49
|
1240 |
+
msgid "Please select subscribers group"
|
1241 |
+
msgstr "Vyberte skupinu odběratelů"
|
1242 |
+
|
1243 |
+
#: ../notification/notification-edit.php:55
|
1244 |
+
msgid "Please select notification status"
|
1245 |
+
msgstr "Vyberte stav oznámení"
|
1246 |
|
1247 |
+
#: ../notification/notification-edit.php:89
|
1248 |
+
msgid "Notification successfully updated. "
|
1249 |
+
msgstr "Oznámení bylo úspěšně upraveno. "
|
1250 |
|
1251 |
+
#: ../notification/notification-edit.php:122
|
1252 |
+
msgid "Edit Notification"
|
1253 |
+
msgstr "Upravit oznámení"
|
1254 |
|
1255 |
+
#: ../notification/notification-edit.php:123 ../notification/notification-show.
|
1256 |
+
#: php:53
|
1257 |
+
msgid "Add New"
|
1258 |
+
msgstr "Vytvoit"
|
1259 |
|
1260 |
+
#: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
|
1261 |
+
#: php:303
|
1262 |
+
msgid "Update Subscribers Group"
|
1263 |
+
msgstr "Upravit skupinu odběratelů"
|
1264 |
|
1265 |
+
#: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
|
1266 |
+
msgid "Selected record deleted."
|
1267 |
+
msgstr "Vybraný záznam byl smazán."
|
1268 |
|
1269 |
+
#: ../notification/notification-show.php:57
|
1270 |
+
msgid ""
|
1271 |
+
"Use this to setup and send notification emails to your subscribers when a "
|
1272 |
+
"new post is published in your blog."
|
1273 |
+
msgstr ""
|
1274 |
+
"Slouží k nastavení a odeslání oznamovacího emailu vašim odběratelům, když je "
|
1275 |
+
"nový příspěvek publikován na vašem webu."
|
1276 |
|
1277 |
+
#: ../notification/notification-show.php:68 ../notification/notification-show.php:
|
1278 |
+
#: 76
|
1279 |
+
msgid "Email Subject"
|
1280 |
+
msgstr "Předmět emailu"
|
1281 |
|
1282 |
+
#: ../notification/notification-show.php:69 ../notification/notification-show.php:
|
1283 |
+
#: 77
|
1284 |
+
msgid "Subscribers Group"
|
1285 |
+
msgstr "Skupina odběratelů"
|
1286 |
|
1287 |
+
#: ../notification/notification-show.php:70 ../notification/notification-show.php:
|
1288 |
+
#: 78
|
1289 |
+
msgid "Post Categories / Custom Post Types"
|
1290 |
+
msgstr "Kategorie příspěvků / Vlastní typy příspěvků"
|
1291 |
|
1292 |
+
#: ../notification/notification-show.php:71 ../notification/notification-show.php:
|
1293 |
+
#: 79
|
1294 |
+
msgid "Notification Status"
|
1295 |
+
msgstr "Stav oznámení"
|
1296 |
|
1297 |
+
#: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
|
1298 |
+
#: php:417 ../templates/template-preview.php:35
|
1299 |
+
msgid "Edit"
|
1300 |
+
msgstr "Upravit"
|
1301 |
|
1302 |
+
#: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
|
1303 |
+
#: php:301 ../subscribers/view-subscriber-show.php:422
|
1304 |
+
msgid "Delete"
|
1305 |
+
msgstr "Smazat"
|
1306 |
|
1307 |
+
#: ../notification/notification-show.php:143 ../sentmail/deliverreport-show.php:
|
1308 |
+
#: 128 ../sentmail/sentmail-show.php:180 ../subscribers/view-subscriber-show.php:
|
1309 |
+
#: 456
|
1310 |
+
msgid "No records available."
|
1311 |
+
msgstr "Žádné záznamy nejsou k dispozici."
|
1312 |
|
1313 |
+
#: ../sendmail/sendmail.php:18 ../subscribers/view-subscriber-show.php:17
|
1314 |
+
msgid "Click Here"
|
1315 |
+
msgstr "Klikněte zde"
|
1316 |
|
1317 |
+
#: ../sendmail/sendmail.php:40
|
1318 |
+
msgid "Please select your mail subject."
|
1319 |
+
msgstr "Vyberte předmět zprávy."
|
|
|
1320 |
|
1321 |
+
#: ../sendmail/sendmail.php:46
|
1322 |
+
msgid "Please select your mail type."
|
1323 |
+
msgstr "Vyberte typ zprávy."
|
1324 |
|
1325 |
+
#: ../sendmail/sendmail.php:52
|
1326 |
+
msgid "Please select your group."
|
1327 |
+
msgstr "Vyberte skupinu."
|
1328 |
|
1329 |
+
#: ../sendmail/sendmail.php:63
|
1330 |
+
msgid "Click here to check Statistics"
|
1331 |
+
msgstr "Klikněte zde pro kontrolu statistik"
|
|
|
1332 |
|
1333 |
+
#: ../sendmail/sendmail.php:69
|
1334 |
+
msgid "Oops.. We are getting some error. mail not sending."
|
1335 |
+
msgstr "Nastala chyba. Zprávy se neodesílají."
|
1336 |
|
1337 |
+
#: ../sendmail/sendmail.php:97
|
1338 |
+
msgid "Use this to send newsletter emails to your subscribers."
|
1339 |
+
msgstr "Použijete při odeslání emailů svým odběratelům."
|
|
|
|
|
1340 |
|
1341 |
+
#: ../sendmail/sendmail.php:106
|
1342 |
+
msgid "Select Email Subject from available list"
|
1343 |
+
msgstr "Vyberte předmět emailu ze seznamu"
|
|
|
1344 |
|
1345 |
+
#: ../sendmail/sendmail.php:133
|
1346 |
+
msgid "Select Email Type"
|
1347 |
+
msgstr "Vyberte typ emailu"
|
1348 |
|
1349 |
+
#: ../sendmail/sendmail.php:140
|
1350 |
+
msgid "Send email via cron job"
|
1351 |
+
msgstr "Odeslat email cronem"
|
1352 |
|
1353 |
+
#: ../sendmail/sendmail.php:147
|
1354 |
+
msgid "Select Subscribers group to Send Email"
|
1355 |
+
msgstr "Vyberte skupinu odběratelů pro odesílání emailů"
|
1356 |
|
1357 |
+
#: ../sendmail/sendmail.php:179
|
1358 |
+
msgid "Recipients : 0 "
|
1359 |
+
msgstr "Příjemců: 0 "
|
|
|
|
|
1360 |
|
1361 |
+
#: ../sendmail/sendmail.php:181
|
1362 |
+
#, php-format
|
1363 |
+
msgid "Recipients : %s"
|
1364 |
+
msgstr "Příjemců: %s"
|
1365 |
|
1366 |
+
#: ../sendmail/sendmail.php:184
|
1367 |
msgid ""
|
1368 |
+
"<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
|
1369 |
+
"that you change above Mail Type to Cron and Send Mail via Cron Job."
|
1370 |
+
"</strong><br>Click on Help for more information."
|
1371 |
msgstr ""
|
1372 |
+
"<br><br><strong>Váš počet příjemců je vyšší než 100.<br>Důrazně doporučujeme,"
|
1373 |
+
" abyste výše změnili typ emailu na cron a zprávy odeslali přes cron."
|
1374 |
+
"</strong><br>Pro více informací klikněte na nápovědu."
|
1375 |
+
|
1376 |
+
#: ../sendmail/sendmail.php:196 ../sendmail/sendmail.php:198
|
1377 |
+
msgid "Send Email"
|
1378 |
+
msgstr "Odeslat email"
|
1379 |
+
|
1380 |
+
#: ../sendmail/sendmail.php:201
|
1381 |
+
msgid "Reset"
|
1382 |
+
msgstr "Reset"
|
1383 |
|
1384 |
#: ../sentmail/deliverreport-show.php:14
|
1385 |
msgid "Oops.. Unexpected error occurred. Please try again."
|
1386 |
msgstr "Nastala neznámá chyba. Prosím opakujte akci."
|
1387 |
|
1388 |
+
#: ../sentmail/deliverreport-show.php:47 ../sentmail/sentmail-show.php:83
|
1389 |
+
msgid " << "
|
1390 |
+
msgstr " << "
|
1391 |
+
|
1392 |
+
#: ../sentmail/deliverreport-show.php:48 ../sentmail/sentmail-show.php:84
|
1393 |
+
msgid " >> "
|
1394 |
+
msgstr " >> "
|
1395 |
+
|
1396 |
#: ../sentmail/deliverreport-show.php:60
|
1397 |
msgid "Delivery Report"
|
1398 |
msgstr "Hlášení o doručení"
|
1407 |
msgid "Email"
|
1408 |
msgstr "Email"
|
1409 |
|
1410 |
+
#: ../sentmail/deliverreport-show.php:74 ../sentmail/deliverreport-show.php:85 ..
|
1411 |
+
#: sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
|
1412 |
+
#: subscribers/view-subscriber-show.php:290
|
1413 |
+
msgid "Status"
|
1414 |
+
msgstr "Stav"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1415 |
|
1416 |
+
#: ../sentmail/deliverreport-show.php:75 ../sentmail/deliverreport-show.php:86 ..
|
1417 |
+
#: sentmail/sentmail-show.php:111 ../sentmail/sentmail-show.php:124
|
1418 |
+
msgid "Sent"
|
1419 |
+
msgstr "Odeslal"
|
1420 |
|
1421 |
+
#: ../sentmail/deliverreport-show.php:76 ../sentmail/deliverreport-show.php:87
|
1422 |
+
msgid "Sent Date"
|
1423 |
+
msgstr "Datum odeslání"
|
1424 |
|
1425 |
+
#: ../sentmail/deliverreport-show.php:77 ../sentmail/deliverreport-show.php:88
|
1426 |
+
msgid "Viewed Status"
|
1427 |
+
msgstr "Stav zobrazení"
|
1428 |
|
1429 |
+
#: ../sentmail/deliverreport-show.php:78 ../sentmail/deliverreport-show.php:89
|
1430 |
+
msgid "Viewed Date"
|
1431 |
+
msgstr "Datum zobrazení"
|
1432 |
|
1433 |
+
#: ../sentmail/sentmail-preview.php:53
|
1434 |
+
msgid "Back"
|
1435 |
+
msgstr "Zpět"
|
|
|
|
|
1436 |
|
1437 |
+
#: ../sentmail/sentmail-show.php:43
|
1438 |
+
msgid "Successfully deleted all reports except latest 10."
|
1439 |
+
msgstr "Úspěšně smazány všechny sestavy kromě posledních 10."
|
|
|
|
|
1440 |
|
1441 |
+
#: ../sentmail/sentmail-show.php:97
|
1442 |
+
msgid "It will show reports for all Newsletters & Post Notification emails sent."
|
1443 |
+
msgstr "Zobrazí přehledy všech odeslaných zpravodajů a oznámení o příspěvcích."
|
|
|
|
|
1444 |
|
1445 |
+
#: ../sentmail/sentmail-show.php:107 ../sentmail/sentmail-show.php:120
|
1446 |
+
msgid "View Reports"
|
1447 |
+
msgstr "Zobrazit hlášení"
|
1448 |
|
1449 |
+
#: ../sentmail/sentmail-show.php:109 ../sentmail/sentmail-show.php:122
|
1450 |
+
msgid "Type"
|
1451 |
+
msgstr "Typ"
|
|
|
1452 |
|
1453 |
+
#: ../sentmail/sentmail-show.php:112 ../sentmail/sentmail-show.php:125
|
1454 |
+
msgid "Start Date"
|
1455 |
+
msgstr "Počáteční datum"
|
|
|
|
|
|
|
1456 |
|
1457 |
+
#: ../sentmail/sentmail-show.php:113 ../sentmail/sentmail-show.php:126
|
1458 |
+
msgid "End Date"
|
1459 |
+
msgstr "Datum ukončení"
|
1460 |
|
1461 |
+
#: ../sentmail/sentmail-show.php:114 ../sentmail/sentmail-show.php:127
|
1462 |
+
msgid "Total"
|
1463 |
+
msgstr "Celkem"
|
1464 |
|
1465 |
+
#: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
|
1466 |
+
#: subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
|
1467 |
+
#: export.php:69 ../subscribers/view-subscriber-show.php:293
|
1468 |
+
msgid "Action"
|
1469 |
+
msgstr "Akce"
|
1470 |
|
1471 |
+
#: ../sentmail/sentmail-show.php:190
|
1472 |
+
msgid "Optimize Table & Delete Records"
|
1473 |
+
msgstr "Optimalizovat tabulku a smazat záznamy"
|
1474 |
+
|
1475 |
+
#: ../sentmail/sentmail-show.php:199
|
1476 |
+
msgid ""
|
1477 |
+
"Note: Please click on <strong>Optimize Table & Delete Records</strong> "
|
1478 |
+
"button to delete all reports except latest 10."
|
1479 |
msgstr ""
|
1480 |
+
"Poznámka: Klikněte na tlačítko <strong>Optimalizace tabulek a Smazání "
|
1481 |
+
"záznamů</strong> pro vymazání všech zpráv kromě posledních 10."
|
1482 |
|
1483 |
+
#: ../settings/setting-sync.php:16
|
1484 |
+
msgid "Table sync completed successfully."
|
1485 |
+
msgstr "Synchronizace tabulek byla úspěšná."
|
|
|
|
|
1486 |
|
1487 |
+
#: ../settings/setting-sync.php:29
|
1488 |
+
msgid "Sync plugin tables"
|
1489 |
+
msgstr "Synchronizace tabulek pluginu"
|
|
|
|
|
1490 |
|
1491 |
+
#: ../settings/setting-sync.php:33
|
1492 |
+
msgid "Click to sync tables"
|
1493 |
+
msgstr "Klikněte pro synchronizaci tabulek"
|
1494 |
|
1495 |
+
#: ../settings/settings-edit.php:26
|
1496 |
+
msgid "User Roles"
|
1497 |
+
msgstr "Uživatelské úrovně"
|
1498 |
|
1499 |
+
#: ../settings/settings-edit.php:67
|
1500 |
+
msgid "Save Settings"
|
1501 |
+
msgstr "Uložit nastavení"
|
1502 |
|
1503 |
+
#: ../settings/settings-edit.php:78
|
1504 |
+
msgid "Sender of Notifications"
|
1505 |
+
msgstr "Odesílatel oznámení"
|
1506 |
|
1507 |
+
#: ../settings/settings-edit.php:79
|
1508 |
+
msgid ""
|
1509 |
+
"Choose a FROM name and FROM email address for all the emails to be sent from "
|
1510 |
+
"this plugin."
|
1511 |
+
msgstr ""
|
1512 |
+
"Vyberte jméno a emailovou adresu ODESÍLATELE pro všechny oznamovací emaily z "
|
1513 |
+
"tohoto pluginu."
|
1514 |
|
1515 |
+
#: ../settings/settings-edit.php:94
|
1516 |
+
msgid "1. WP HTML MAIL"
|
1517 |
+
msgstr "1. WP HTML ZPRÁVA"
|
|
|
1518 |
|
1519 |
+
#: ../settings/settings-edit.php:95
|
1520 |
+
msgid "2. WP PLAINTEXT MAIL"
|
1521 |
+
msgstr "2. WP PROSTÝ TEXT"
|
1522 |
|
1523 |
+
#: ../settings/settings-edit.php:96
|
1524 |
+
msgid "3. PHP HTML MAIL"
|
1525 |
+
msgstr "3. PHP HTML ZPRÁVA"
|
|
|
1526 |
|
1527 |
+
#: ../settings/settings-edit.php:97
|
1528 |
+
msgid "4. PHP PLAINTEXT MAIL"
|
1529 |
+
msgstr "4. PHP PROSTÝ TEXT"
|
1530 |
|
1531 |
+
#: ../settings/settings-edit.php:109
|
1532 |
+
msgid "Double Opt In"
|
1533 |
+
msgstr "Dvojí potvrzení"
|
1534 |
|
1535 |
+
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-add.php:155 ..
|
1536 |
+
#: subscribers/view-subscriber-edit.php:150 ../subscribers/view-subscriber-
|
1537 |
+
#: import.php:181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-
|
1538 |
+
#: subscriber-show.php:356
|
1539 |
+
msgid "Single Opt In"
|
1540 |
+
msgstr "Jednoduché potvrzení"
|
1541 |
|
1542 |
+
#: ../settings/settings-edit.php:116
|
1543 |
+
msgid "Image Size"
|
1544 |
+
msgstr "Velikost obrázku"
|
|
|
1545 |
|
1546 |
+
#: ../settings/settings-edit.php:121
|
1547 |
+
msgid "Full Size"
|
1548 |
+
msgstr "Plná velikost"
|
1549 |
|
1550 |
+
#: ../settings/settings-edit.php:122
|
1551 |
+
msgid "Medium Size"
|
1552 |
+
msgstr "Střední velikost"
|
1553 |
|
1554 |
+
#: ../settings/settings-edit.php:129
|
1555 |
+
msgid "Admin Email Addresses"
|
1556 |
+
msgstr "Emailová adresa administrátora"
|
1557 |
|
1558 |
+
#: ../settings/settings-edit.php:130
|
1559 |
+
msgid ""
|
1560 |
+
"Enter the admin email addresses that should receive notifications (separated "
|
1561 |
+
"by comma)."
|
1562 |
+
msgstr ""
|
1563 |
+
"Zadejte emailové adresy administrátorů, kteří by měli přijímat oznámení "
|
1564 |
+
"(oddělené čárkou)."
|
1565 |
|
1566 |
+
#: ../settings/settings-edit.php:137
|
1567 |
+
msgid ""
|
1568 |
+
"To send admin email notifications for the new subscriber. This option must "
|
1569 |
+
"be set to YES."
|
1570 |
+
msgstr ""
|
1571 |
+
"Pro odeslání oznámení administrátorovi o novém odběrateli, je nutné volbu "
|
1572 |
+
"nastavit na ANO."
|
1573 |
|
1574 |
+
#: ../settings/settings-edit.php:164
|
1575 |
+
msgid "Sent Report Subject"
|
1576 |
+
msgstr "Předmět emailu pro hlášení o odeslání"
|
1577 |
|
1578 |
+
#: ../settings/settings-edit.php:171
|
1579 |
+
msgid "Sent Report Content"
|
1580 |
+
msgstr "Obsah hlášení o odeslání"
|
1581 |
|
1582 |
+
#: ../settings/settings-edit.php:198
|
1583 |
+
msgid "It is a readonly field and you are advised not to modify it."
|
1584 |
+
msgstr "Toto je pole pouze pro čtení a doporučujeme hodnotu neupravovat."
|
1585 |
|
1586 |
+
#: ../settings/settings-edit.php:205
|
1587 |
+
msgid ""
|
1588 |
+
"This text will be displayed once user clicks on email confirmation link from "
|
1589 |
+
"the Double Opt In (confirmation) Email."
|
1590 |
+
msgstr ""
|
1591 |
+
"Tento text bude zobrazen po kliknutí na odkaz v potvrzovacím emailu při "
|
1592 |
+
"dvojitém potvrzení."
|
1593 |
|
1594 |
+
#: ../settings/settings-edit.php:213
|
1595 |
+
msgid ""
|
1596 |
+
"To send welcome email to subscriber after successful signup. This option "
|
1597 |
+
"must be set to YES."
|
1598 |
+
msgstr ""
|
1599 |
+
"Chcete-li odeslat uvítací email odběrateli po úspěšné registraci musí být "
|
1600 |
+
"tato volba nastavena na hodnotu ANO."
|
1601 |
+
|
1602 |
+
#: ../settings/settings-edit.php:240
|
1603 |
+
msgid "Unsubscribe Link"
|
1604 |
+
msgstr "Odhlašovací odkaz"
|
1605 |
+
|
1606 |
+
#: ../settings/settings-edit.php:247
|
1607 |
+
msgid "Unsubscribe Text in Email"
|
1608 |
+
msgstr "Text emailu pro odhlášení"
|
1609 |
|
1610 |
+
#: ../settings/settings-edit.php:254
|
1611 |
+
msgid "Text to display after an email address is unsubscribed"
|
1612 |
+
msgstr "Text bude zobrazen po odhlášení emailu"
|
1613 |
|
1614 |
+
#: ../settings/settings-edit.php:269
|
1615 |
+
msgid "Error in the Unsubscribe Link"
|
1616 |
+
msgstr "Chybové hlášení odhlašovacího odkazu"
|
1617 |
|
1618 |
+
#: ../settings/settings-edit.php:282
|
1619 |
+
msgid "Select user roles who can access following menus. Only Admin can change this."
|
1620 |
+
msgstr ""
|
1621 |
+
"Vyberte uživatelské role, které mají mít přístup k následujícím menu. Pouze "
|
1622 |
+
"správce zde může provádět změny."
|
1623 |
|
1624 |
+
#: ../settings/settings-edit.php:288
|
1625 |
+
msgid "Subscribers Menu"
|
1626 |
+
msgstr "Menu odběratelé"
|
1627 |
|
1628 |
+
#: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
|
1629 |
+
#: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
|
1630 |
+
#: settings/settings-edit.php:340
|
1631 |
+
msgid "Administrator Only"
|
1632 |
+
msgstr "Pouze administrátor"
|
1633 |
|
1634 |
+
#: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
|
1635 |
+
#: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
|
1636 |
+
#: settings/settings-edit.php:341
|
1637 |
+
msgid "Administrator/Editor"
|
1638 |
+
msgstr "Administrátor/Editor"
|
1639 |
|
1640 |
+
#: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
|
1641 |
+
#: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
|
1642 |
+
#: settings/settings-edit.php:342
|
1643 |
+
msgid "Administrator/Editor/Author/Contributor"
|
1644 |
+
msgstr "Administrátor/Editor/Autor/Spolupracovník"
|
1645 |
|
1646 |
+
#: ../settings/settings-edit.php:312
|
1647 |
+
msgid "Post Notifications Menu"
|
1648 |
+
msgstr "Oznámení o příspěvcích"
|
1649 |
|
1650 |
+
#: ../settings/settings-edit.php:336
|
1651 |
+
msgid "Reports Menu"
|
1652 |
+
msgstr "Menu přehledů"
|
1653 |
|
1654 |
+
#: ../settings/settings-edit.php:353
|
1655 |
+
msgid "Cron job URL"
|
1656 |
+
msgstr "URL cronu"
|
|
|
|
|
1657 |
|
1658 |
+
#: ../settings/settings-edit.php:354
|
1659 |
+
msgid ""
|
1660 |
+
"This is your Cron Job URL. It is a readonly field and you are advised not to "
|
1661 |
+
"modify it."
|
1662 |
+
msgstr ""
|
1663 |
+
"Toto je URL vašeho cronu. Pole je pouze pro čtení, nedoporučujeme vám jej "
|
1664 |
+
"upravovat."
|
1665 |
|
1666 |
+
#: ../settings/settings-edit.php:363
|
1667 |
+
msgid "Email Count"
|
1668 |
+
msgstr "Počet emailů"
|
1669 |
|
1670 |
+
#: ../settings/settings-edit.php:364
|
1671 |
+
msgid "Number of emails that you want to trigger per hour."
|
1672 |
+
msgstr "Zadejte počet emailů, které chcete poslat za hodinu pomocí trigeru."
|
1673 |
|
1674 |
+
#: ../settings/settings-edit.php:385
|
1675 |
+
msgid "What is Cron (auto emails) and how to setup Cron Job?"
|
1676 |
+
msgstr "Co je to cron (automatický e-mail) a jak nastavit cron?"
|
1677 |
|
1678 |
+
#: ../settings/settings-edit.php:504
|
1679 |
+
msgid "Please enter sender of notifications from name."
|
1680 |
+
msgstr "Zadejte jméno odesílatele oznámení."
|
1681 |
|
1682 |
+
#: ../settings/settings-edit.php:509
|
1683 |
+
msgid "Please enter sender of notifications from email."
|
1684 |
+
msgstr "Zadejte email odesílatele oznámení."
|
1685 |
|
1686 |
+
#: ../settings/settings-edit.php:553
|
1687 |
+
msgid "Please enter valid mail count."
|
1688 |
+
msgstr "Zadejte platný počet emailů."
|
1689 |
|
1690 |
+
#: ../settings/settings-edit.php:566
|
1691 |
+
msgid "Settings Saved."
|
1692 |
+
msgstr "Nastavení bylo uloženo."
|
1693 |
+
|
1694 |
+
#: ../settings/settings-edit.php:569
|
1695 |
+
msgid "Oops, unable to update."
|
1696 |
+
msgstr "Nelze aktualizovat."
|
1697 |
|
1698 |
#: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
|
1699 |
#: php:54
|
1724 |
msgid "Invalid Email."
|
1725 |
msgstr "Neplatný email."
|
1726 |
|
1727 |
+
#: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
|
1728 |
+
#: php:109 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
|
1729 |
+
#: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
|
1730 |
+
#: subscribers/view-subscriber-sync.php:89
|
1731 |
+
msgid "Add New Subscriber"
|
1732 |
+
msgstr "Přidat nového odběratele"
|
1733 |
+
|
1734 |
+
#: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
|
1735 |
+
#: php:110 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
|
1736 |
+
#: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
|
1737 |
+
#: subscribers/view-subscriber-sync.php:90
|
1738 |
+
msgid "Import"
|
1739 |
+
msgstr "Import"
|
1740 |
+
|
1741 |
+
#: ../subscribers/view-subscriber-add.php:116 ../subscribers/view-subscriber-edit.
|
1742 |
+
#: php:111 ../subscribers/view-subscriber-import.php:147 ../subscribers/view-
|
1743 |
+
#: subscriber-show.php:245 ../subscribers/view-subscriber-sync.php:91
|
1744 |
+
msgid "Export"
|
1745 |
+
msgstr "Export"
|
1746 |
+
|
1747 |
+
#: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
|
1748 |
+
#: php:112 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
|
1749 |
+
#: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
|
1750 |
+
#: subscribers/view-subscriber-sync.php:143
|
1751 |
+
msgid "Sync"
|
1752 |
+
msgstr "Synchronizovat"
|
1753 |
+
|
1754 |
#: ../subscribers/view-subscriber-add.php:127
|
1755 |
msgid "Enter Subscriber's Full name"
|
1756 |
msgstr "Zadejte celé jméno odběratele"
|
1759 |
msgid "Enter Subscriber's Email Address"
|
1760 |
msgstr "Zadejte emailovou adresu odběratele"
|
1761 |
|
1762 |
+
#: ../subscribers/view-subscriber-add.php:147
|
1763 |
+
msgid "Select Subscriber's Status"
|
1764 |
+
msgstr "Vyberte stav odběratele"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1765 |
|
1766 |
+
#: ../subscribers/view-subscriber-add.php:152 ../subscribers/view-subscriber-edit.
|
1767 |
+
#: php:147 ../subscribers/view-subscriber-import.php:178 ../subscribers/view-
|
1768 |
+
#: subscriber-show.php:323 ../subscribers/view-subscriber-show.php:353
|
1769 |
+
msgid "Confirmed"
|
1770 |
+
msgstr "Potvrzeno"
|
1771 |
|
1772 |
+
#: ../subscribers/view-subscriber-add.php:153 ../subscribers/view-subscriber-edit.
|
1773 |
+
#: php:148 ../subscribers/view-subscriber-import.php:179 ../subscribers/view-
|
1774 |
+
#: subscriber-show.php:324 ../subscribers/view-subscriber-show.php:354
|
1775 |
+
msgid "Unconfirmed"
|
1776 |
+
msgstr "Nepotvrzeno"
|
1777 |
|
1778 |
+
#: ../subscribers/view-subscriber-add.php:154 ../subscribers/view-subscriber-edit.
|
1779 |
+
#: php:149 ../subscribers/view-subscriber-import.php:180 ../subscribers/view-
|
1780 |
+
#: subscriber-show.php:325 ../subscribers/view-subscriber-show.php:355
|
1781 |
+
msgid "Unsubscribed"
|
1782 |
+
msgstr "Zrušen odběr"
|
1783 |
|
1784 |
+
#: ../subscribers/view-subscriber-add.php:162
|
1785 |
+
msgid "Select (or) Create Group for Subscriber"
|
1786 |
+
msgstr "Vyberte (nebo) vytvořte skupinu pro odběratele"
|
1787 |
|
1788 |
+
#: ../subscribers/view-subscriber-add.php:178 ../subscribers/view-subscriber-
|
1789 |
+
#: import.php:205
|
1790 |
+
msgid "(or)"
|
1791 |
+
msgstr "(nebo)"
|
1792 |
|
1793 |
+
#: ../subscribers/view-subscriber-add.php:187
|
1794 |
+
msgid "Add Subscriber"
|
1795 |
+
msgstr "Přidat odběratele"
|
1796 |
|
1797 |
+
#: ../subscribers/view-subscriber-edit.php:64
|
1798 |
+
msgid "Error: Special characters are not allowed in the group name."
|
1799 |
+
msgstr "Chyba: Speciální znaky v názvu skupiny nelze použít."
|
1800 |
|
1801 |
+
#: ../subscribers/view-subscriber-edit.php:74
|
1802 |
+
msgid "Subscriber details updated."
|
1803 |
+
msgstr "Podrobnosti odběratele byly aktualizovány."
|
1804 |
|
1805 |
+
#: ../subscribers/view-subscriber-edit.php:76
|
1806 |
+
msgid "Subscriber already exists for this group."
|
1807 |
+
msgstr "Odběratel již v této skupině existuje."
|
1808 |
|
1809 |
+
#: ../subscribers/view-subscriber-edit.php:108
|
1810 |
+
msgid "Edit Subscriber"
|
1811 |
+
msgstr "Upravit odběratele"
|
1812 |
|
1813 |
+
#: ../subscribers/view-subscriber-edit.php:122
|
1814 |
+
msgid "Subscriber's Full Name"
|
1815 |
+
msgstr "Celé jména odběratele"
|
|
|
1816 |
|
1817 |
+
#: ../subscribers/view-subscriber-edit.php:132
|
1818 |
+
msgid "Subscriber's Email Address"
|
1819 |
+
msgstr "Emailová adresa odběratele"
|
|
|
|
|
|
|
|
|
|
|
|
|
1820 |
|
1821 |
+
#: ../subscribers/view-subscriber-edit.php:142
|
1822 |
+
msgid "Update Subscriber's Status"
|
1823 |
+
msgstr "Změna stavu odběratele"
|
1824 |
|
1825 |
+
#: ../subscribers/view-subscriber-edit.php:157
|
1826 |
+
msgid "Update Subscriber's Group"
|
1827 |
+
msgstr "Změna skupiny odběratele"
|
1828 |
|
1829 |
+
#: ../subscribers/view-subscriber-export.php:47
|
1830 |
+
msgid "Export Email Addresses"
|
1831 |
+
msgstr "Exportovat emailové adresy"
|
1832 |
|
1833 |
+
#: ../subscribers/view-subscriber-export.php:59 ../subscribers/view-subscriber-
|
1834 |
+
#: export.php:67
|
1835 |
+
msgid "Type of List to Export"
|
1836 |
+
msgstr "Typ seznamu pro export"
|
1837 |
|
1838 |
+
#: ../subscribers/view-subscriber-export.php:60 ../subscribers/view-subscriber-
|
1839 |
+
#: export.php:68
|
1840 |
+
msgid "Total Emails Count"
|
1841 |
+
msgstr "Počet emailů celkem"
|
1842 |
|
1843 |
+
#: ../subscribers/view-subscriber-export.php:74
|
1844 |
+
msgid "1"
|
1845 |
+
msgstr "1"
|
1846 |
|
1847 |
+
#: ../subscribers/view-subscriber-export.php:75
|
1848 |
+
msgid "All Subscribers"
|
1849 |
+
msgstr "Všichni odběratelé"
|
1850 |
|
1851 |
+
#: ../subscribers/view-subscriber-export.php:77 ../subscribers/view-subscriber-
|
1852 |
+
#: export.php:83 ../subscribers/view-subscriber-export.php:89 ../subscribers/view-
|
1853 |
+
#: subscriber-export.php:95 ../subscribers/view-subscriber-export.php:101
|
1854 |
+
msgid "Click to Export in CSV"
|
1855 |
+
msgstr "Klikněte pro export do CSV"
|
1856 |
|
1857 |
+
#: ../subscribers/view-subscriber-export.php:80
|
1858 |
+
msgid "2"
|
1859 |
+
msgstr "2"
|
1860 |
|
1861 |
+
#: ../subscribers/view-subscriber-export.php:81
|
1862 |
+
msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
|
1863 |
+
msgstr "Aktivní odběratelé (Status: Potvrzen & Přihlášen)"
|
1864 |
|
1865 |
+
#: ../subscribers/view-subscriber-export.php:86
|
1866 |
+
msgid "3"
|
1867 |
+
msgstr "3"
|
1868 |
|
1869 |
+
#: ../subscribers/view-subscriber-export.php:87
|
1870 |
+
msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
|
1871 |
+
msgstr "Neaktivní odběratelé (Status: Nepotvrzen & Odhlášen)"
|
1872 |
|
1873 |
+
#: ../subscribers/view-subscriber-export.php:92
|
1874 |
+
msgid "4"
|
1875 |
+
msgstr "4"
|
1876 |
|
1877 |
+
#: ../subscribers/view-subscriber-export.php:93
|
1878 |
+
msgid "WordPress Registered Users"
|
1879 |
+
msgstr "WordPress registrovaní uživatelé"
|
|
|
1880 |
|
1881 |
+
#: ../subscribers/view-subscriber-export.php:98
|
1882 |
+
msgid "5"
|
1883 |
+
msgstr "5"
|
1884 |
|
1885 |
+
#: ../subscribers/view-subscriber-export.php:99
|
1886 |
+
msgid "Commented Authors"
|
1887 |
+
msgstr "Autoři komentářů"
|
|
|
1888 |
|
1889 |
+
#: ../subscribers/view-subscriber-import.php:45
|
1890 |
+
msgid ""
|
1891 |
+
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1892 |
+
"the Group name."
|
1893 |
+
msgstr ""
|
1894 |
+
"Chyba: Speciální znaky (['^$%&*()}{@#~?><>,|=_+\\\"]) v názvu skupiny nelze "
|
1895 |
+
"použít."
|
1896 |
|
1897 |
+
#: ../subscribers/view-subscriber-import.php:95
|
1898 |
+
msgid "email imported."
|
1899 |
+
msgstr "email byl importován."
|
|
|
1900 |
|
1901 |
+
#: ../subscribers/view-subscriber-import.php:96
|
1902 |
+
msgid "email already exists."
|
1903 |
+
msgstr "email již existuje."
|
|
|
1904 |
|
1905 |
+
#: ../subscribers/view-subscriber-import.php:97
|
1906 |
+
msgid "email are invalid."
|
1907 |
+
msgstr "emaily jsou neplatné."
|
|
|
1908 |
|
1909 |
+
#: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
|
1910 |
+
#: import.php:129
|
1911 |
+
msgid "Click here"
|
1912 |
+
msgstr "Klikněte zde"
|
1913 |
|
1914 |
+
#: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
|
1915 |
+
#: import.php:129
|
1916 |
+
msgid " to view details."
|
1917 |
+
msgstr " pro zobrazení podrobností."
|
1918 |
|
1919 |
+
#: ../subscribers/view-subscriber-import.php:108
|
1920 |
+
msgid "File Upload Failed."
|
1921 |
+
msgstr "Nahrávání souboru selhalo."
|
|
|
1922 |
|
1923 |
+
#: ../subscribers/view-subscriber-import.php:145
|
1924 |
+
msgid "Import Email Addresses"
|
1925 |
+
msgstr "Import emailových adres"
|
|
|
1926 |
|
1927 |
+
#: ../subscribers/view-subscriber-import.php:158
|
1928 |
+
msgid "Select CSV file"
|
1929 |
+
msgstr "Vyberte soubor CSV"
|
|
|
1930 |
|
1931 |
+
#: ../subscribers/view-subscriber-import.php:160
|
1932 |
+
msgid "Check CSV structure "
|
1933 |
+
msgstr "Zkontrolujte CSV strukturu "
|
|
|
|
|
|
|
|
|
|
|
1934 |
|
1935 |
+
#: ../subscribers/view-subscriber-import.php:161
|
1936 |
+
msgid "from here"
|
1937 |
+
msgstr "zde"
|
|
|
1938 |
|
1939 |
+
#: ../subscribers/view-subscriber-import.php:172
|
1940 |
+
msgid "Select Subscribers Email Status"
|
1941 |
+
msgstr "Vybrat stav emailů odběratelů"
|
|
|
1942 |
|
1943 |
+
#: ../subscribers/view-subscriber-import.php:188
|
1944 |
+
msgid "Select (or) Create Group for Subscribers"
|
1945 |
+
msgstr "Vyberte (nebo) vytvořte skupinu pro odběratele"
|
|
|
1946 |
|
1947 |
+
#: ../subscribers/view-subscriber-show.php:45
|
1948 |
+
msgid "Selected details does not exists."
|
1949 |
+
msgstr "Vybrané detaily neexistují."
|
|
|
1950 |
|
1951 |
+
#: ../subscribers/view-subscriber-show.php:56 ../subscribers/view-subscriber-show.
|
1952 |
+
#: php:95
|
1953 |
+
msgid "Record deleted."
|
1954 |
+
msgstr "Záznam byl smazán."
|
1955 |
|
1956 |
+
#: ../subscribers/view-subscriber-show.php:67
|
1957 |
+
msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
|
1958 |
+
msgstr ""
|
1959 |
+
"Chcete-li odeslat potvrzovací email, změňte možnost potvrzení na dvojité "
|
1960 |
+
"potvrzení."
|
|
|
1961 |
|
1962 |
+
#: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
|
1963 |
+
#: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
|
1964 |
+
#: subscriber-show.php:217
|
1965 |
+
msgid "No record was selected."
|
1966 |
+
msgstr "Není vybrán žádný záznam."
|
1967 |
|
1968 |
+
#: ../subscribers/view-subscriber-show.php:115
|
1969 |
+
msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
|
1970 |
+
msgstr ""
|
1971 |
+
"Chcete-li odeslat potvrzovací zprávu, změňte možnost potvrzení na dvojité "
|
1972 |
+
"potvrzení."
|
1973 |
|
1974 |
+
#: ../subscribers/view-subscriber-show.php:164
|
1975 |
+
msgid "Subscribers Group updated."
|
1976 |
+
msgstr "Skupina odběratelů je upravena."
|
|
|
1977 |
|
1978 |
+
#: ../subscribers/view-subscriber-show.php:169
|
1979 |
+
msgid "Please select New group to update."
|
1980 |
+
msgstr "Vyberte novou skupinu k úpravě."
|
|
|
1981 |
|
1982 |
+
#: ../subscribers/view-subscriber-show.php:203
|
1983 |
+
msgid "Subscribers Status updated."
|
1984 |
+
msgstr "Stav odběratele upraven."
|
|
|
1985 |
|
1986 |
+
#: ../subscribers/view-subscriber-show.php:208
|
1987 |
+
msgid "Please select New Status to update."
|
1988 |
+
msgstr "Vyberte nový stav ke změně."
|
|
|
1989 |
|
1990 |
+
#: ../subscribers/view-subscriber-show.php:258
|
1991 |
+
#, php-format
|
1992 |
+
msgid "Active Subscribers: %s"
|
1993 |
+
msgstr "Aktivní odběratelé: %s"
|
1994 |
|
1995 |
+
#: ../subscribers/view-subscriber-show.php:288
|
1996 |
+
msgid "Email Address"
|
1997 |
+
msgstr "Emailová adresa"
|
|
|
1998 |
|
1999 |
+
#: ../subscribers/view-subscriber-show.php:291
|
2000 |
+
msgid "Group"
|
2001 |
+
msgstr "Skupina"
|
|
|
2002 |
|
2003 |
+
#: ../subscribers/view-subscriber-show.php:292
|
2004 |
+
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
2005 |
+
msgstr "Datum a čas přihlášení<br>(Y-M-D H:I:S)"
|
|
|
2006 |
|
2007 |
+
#: ../subscribers/view-subscriber-show.php:300
|
2008 |
+
msgid "Bulk Actions"
|
2009 |
+
msgstr "Hromadné úpravy"
|
|
|
2010 |
|
2011 |
+
#: ../subscribers/view-subscriber-show.php:302 ../subscribers/view-subscriber-
|
2012 |
+
#: show.php:413
|
2013 |
+
msgid "Resend Confirmation"
|
2014 |
+
msgstr "Znovu odeslat povtrzení"
|
2015 |
|
2016 |
+
#: ../subscribers/view-subscriber-show.php:304
|
2017 |
+
msgid "Update Subscribers Status"
|
2018 |
+
msgstr "Změna stavu odběratele"
|
|
|
2019 |
|
2020 |
+
#: ../subscribers/view-subscriber-show.php:307
|
2021 |
+
msgid "Select Group"
|
2022 |
+
msgstr "Vyberte skupinu"
|
|
|
2023 |
|
2024 |
+
#: ../subscribers/view-subscriber-show.php:322
|
2025 |
+
msgid "Select Status"
|
2026 |
+
msgstr "Vybrat status"
|
|
|
2027 |
|
2028 |
+
#: ../subscribers/view-subscriber-show.php:328
|
2029 |
+
msgid "Apply"
|
2030 |
+
msgstr "Použít"
|
|
|
2031 |
|
2032 |
+
#: ../subscribers/view-subscriber-show.php:335
|
2033 |
+
msgid "All Groups"
|
2034 |
+
msgstr "Všechny skupiny"
|
|
|
2035 |
|
2036 |
+
#: ../subscribers/view-subscriber-show.php:352
|
2037 |
+
msgid "All Status"
|
2038 |
+
msgstr "Všechny stavy"
|
|
|
2039 |
|
2040 |
+
#: ../subscribers/view-subscriber-show.php:359
|
2041 |
+
msgid "1 to 500 emails"
|
2042 |
+
msgstr "1 až 500 emailů"
|
|
|
2043 |
|
2044 |
+
#: ../subscribers/view-subscriber-show.php:360
|
2045 |
+
msgid "501 to 1000"
|
2046 |
+
msgstr "501 až 1000"
|
|
|
2047 |
|
2048 |
+
#: ../subscribers/view-subscriber-show.php:361
|
2049 |
+
msgid "1001 to 1500"
|
2050 |
+
msgstr "1001 až 1500"
|
|
|
2051 |
|
2052 |
+
#: ../subscribers/view-subscriber-show.php:362
|
2053 |
+
msgid "1501 to 2000"
|
2054 |
+
msgstr "1501 až 2000"
|
|
|
2055 |
|
2056 |
+
#: ../subscribers/view-subscriber-show.php:363
|
2057 |
+
msgid "2001 to 4000"
|
2058 |
+
msgstr "2001 až 4000"
|
|
|
2059 |
|
2060 |
+
#: ../subscribers/view-subscriber-show.php:364
|
2061 |
+
msgid "4001 to 6000"
|
2062 |
+
msgstr "4001 až 6000"
|
|
|
2063 |
|
2064 |
+
#: ../subscribers/view-subscriber-show.php:365
|
2065 |
+
msgid "6001 to 10000"
|
2066 |
+
msgstr "6001 až 10000"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2067 |
|
2068 |
+
#: ../subscribers/view-subscriber-show.php:366
|
2069 |
+
msgid "Display All"
|
2070 |
+
msgstr "Zobrazit vše"
|
2071 |
|
2072 |
+
#: ../subscribers/view-subscriber-sync.php:36
|
2073 |
+
msgid "Please select default group to newly registered user."
|
2074 |
+
msgstr "Vyberte výchozí skupinu pro nově registrované uživatele."
|
2075 |
|
2076 |
+
#: ../subscribers/view-subscriber-sync.php:50
|
2077 |
+
msgid "Emails Successfully Synced."
|
2078 |
+
msgstr "Emaily byly úspěšně synchronizovány."
|
2079 |
|
2080 |
+
#: ../subscribers/view-subscriber-sync.php:88
|
2081 |
+
msgid "Sync Email"
|
2082 |
+
msgstr "Synchronizace emailu"
|
2083 |
|
2084 |
+
#: ../subscribers/view-subscriber-sync.php:101
|
2085 |
+
msgid "Sync newly registered users to subscribers list"
|
2086 |
+
msgstr "Synchronizovat nově registrované uživatele do seznamu"
|
2087 |
|
2088 |
+
#: ../subscribers/view-subscriber-sync.php:114
|
2089 |
+
msgid "Select group to add newly registered users to"
|
2090 |
+
msgstr "Vybert skupinu do které se mají přidávat nově registrovaní uživatelé"
|
2091 |
|
2092 |
+
#. Plugin Name of the plugin/theme
|
2093 |
+
msgid "Email Subscribers & Newsletters"
|
2094 |
+
msgstr "Email Subscribers & Newsletters"
|
2095 |
|
2096 |
+
#. Description of the plugin/theme
|
2097 |
+
msgid ""
|
2098 |
+
"Add subscription forms on website, send HTML newsletters & automatically "
|
2099 |
+
"notify subscribers about new blog posts once it is published."
|
2100 |
+
msgstr ""
|
2101 |
+
"Přidejte formulář přihlášení k zasílání zpravodajů na internetové stránky, "
|
2102 |
+
"posílejte HTML zpravodaje a automaticky informujte objednatele o nových "
|
2103 |
+
"příspěvcích, jakmile budou zveřejněny."
|
languages/email-subscribers-de_DE.mo
CHANGED
Binary file
|
languages/email-subscribers-de_DE.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.4.
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: German\n"
|
@@ -22,2234 +22,2212 @@ msgstr ""
|
|
22 |
"X-Loco-Target-Locale: de_DE\n"
|
23 |
"X-Poedit-SearchPath-0: .."
|
24 |
|
25 |
-
#: ../
|
26 |
-
|
27 |
-
msgstr ""
|
28 |
-
|
29 |
-
#: ../help/help.php:186
|
30 |
-
msgid ""
|
31 |
-
"By default, subscribers subscribed via Email Subscribers, will receive email "
|
32 |
-
"updates when you post a new blog. You can turn these updates off like this:"
|
33 |
-
msgstr ""
|
34 |
-
|
35 |
-
#: ../help/help.php:187
|
36 |
msgid ""
|
37 |
-
"
|
38 |
-
"
|
|
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: ../
|
42 |
-
|
43 |
msgid ""
|
44 |
-
"
|
45 |
-
"
|
46 |
-
|
47 |
-
|
48 |
-
#: ../help/help.php:409
|
49 |
-
msgid "Using our <b>free</b> "
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: ../help/help.php:
|
53 |
-
msgid ""
|
54 |
-
"Using Email Subscribers you can achieve this easily with our <b>free</b> "
|
55 |
-
"plugin "
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: ../
|
59 |
-
msgid "
|
60 |
-
msgstr ""
|
61 |
|
62 |
-
#: ../classes/es-
|
63 |
-
|
64 |
-
|
65 |
-
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
66 |
-
"subscription. If you can't see the email within a few minutes, check the "
|
67 |
-
"spam folder."
|
68 |
-
msgstr ""
|
69 |
|
70 |
-
#: ../classes/es-
|
71 |
-
|
72 |
-
|
73 |
-
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
74 |
-
"subscription. If you can't see the email within a few minutes, check the "
|
75 |
-
"spam folder."
|
76 |
-
msgstr ""
|
77 |
|
78 |
-
#: ../
|
79 |
-
msgid "
|
80 |
-
msgstr "
|
81 |
|
82 |
-
#: ../
|
83 |
-
msgid "
|
84 |
-
msgstr "
|
85 |
|
86 |
-
#: ../
|
87 |
-
msgid "
|
88 |
-
msgstr ""
|
89 |
-
"Bitte wähle das Subjekt für die Benachrichtigung. Verwende das Menü Vorlagen "
|
90 |
-
"um ein neues zu erstellen."
|
91 |
|
92 |
-
#: ../
|
93 |
-
msgid "
|
94 |
-
msgstr "
|
95 |
|
96 |
-
#: ../
|
97 |
-
msgid "
|
98 |
-
msgstr "
|
99 |
|
100 |
-
#: ../
|
101 |
-
msgid "
|
102 |
-
msgstr "
|
103 |
|
104 |
-
#: ../
|
105 |
-
|
106 |
-
|
107 |
-
#: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
|
108 |
-
#: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
109 |
-
#: export.php:51 ../subscribers/view-subscriber-add.php:118 ../subscribers/view-
|
110 |
-
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
111 |
-
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
112 |
-
msgid "Help"
|
113 |
-
msgstr "Hilfe"
|
114 |
|
115 |
-
#: ../
|
116 |
-
msgid "
|
117 |
-
msgstr "
|
118 |
|
119 |
-
#: ../
|
120 |
-
#:
|
121 |
-
|
122 |
-
|
123 |
-
#: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
|
124 |
-
#: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
|
125 |
-
msgid "Select"
|
126 |
-
msgstr "Wähle"
|
127 |
|
128 |
-
#: ../
|
129 |
-
|
130 |
-
|
131 |
-
msgstr "Wähle das Subjekt der Benachrichtigungsmail"
|
132 |
|
133 |
-
#: ../
|
134 |
-
#:
|
135 |
-
msgid "
|
136 |
-
msgstr "
|
137 |
|
138 |
-
#: ../
|
139 |
-
#:
|
140 |
-
msgid "
|
141 |
-
msgstr "
|
142 |
|
143 |
-
#: ../
|
144 |
-
#:
|
145 |
-
msgid "
|
146 |
-
msgstr "
|
147 |
|
148 |
-
#: ../
|
149 |
-
#:
|
150 |
-
msgid "
|
151 |
-
msgstr "
|
152 |
|
153 |
-
#: ../
|
154 |
-
#:
|
155 |
-
msgid "
|
156 |
-
msgstr "
|
157 |
|
158 |
-
#: ../
|
159 |
-
#:
|
160 |
-
msgid "
|
161 |
-
msgstr "
|
162 |
|
163 |
-
#: ../
|
164 |
-
#:
|
165 |
-
msgid "
|
166 |
-
msgstr "
|
167 |
|
168 |
-
#: ../
|
169 |
-
#:
|
170 |
-
msgid "
|
171 |
-
msgstr "
|
172 |
|
173 |
-
#: ../
|
174 |
-
|
175 |
-
|
176 |
-
msgstr "Sende Email sofort"
|
177 |
|
178 |
-
#: ../
|
179 |
-
|
180 |
-
|
181 |
-
msgstr "Zu Cron hinzufügen und Email via Cron Job verschicken"
|
182 |
|
183 |
-
#: ../
|
184 |
-
|
185 |
-
msgid "
|
186 |
-
msgstr "
|
187 |
|
188 |
-
#: ../
|
189 |
-
|
190 |
-
msgid "
|
191 |
-
msgstr "
|
192 |
|
193 |
-
#: ../
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
msgstr "Oops, die gewählten Details existieren nicht."
|
198 |
|
199 |
-
#: ../
|
200 |
-
|
201 |
-
|
|
|
202 |
|
203 |
-
#: ../
|
204 |
-
|
205 |
-
msgid "
|
206 |
-
msgstr "
|
207 |
|
208 |
-
#: ../
|
209 |
-
|
210 |
-
msgid "
|
211 |
-
msgstr "
|
212 |
|
213 |
-
#: ../
|
|
|
214 |
msgid ""
|
215 |
-
"
|
216 |
-
"
|
217 |
msgstr ""
|
218 |
-
"
|
219 |
-
"
|
220 |
|
221 |
-
#: ../
|
222 |
-
|
223 |
-
msgid "
|
224 |
-
msgstr "
|
225 |
|
226 |
-
#: ../
|
227 |
-
|
228 |
-
msgid "
|
229 |
-
msgstr "
|
230 |
|
231 |
-
#: ../
|
232 |
-
|
233 |
-
msgid "
|
234 |
-
msgstr "
|
235 |
|
236 |
-
#: ../
|
237 |
-
|
238 |
-
msgid "
|
239 |
-
msgstr "
|
240 |
|
241 |
-
#: ../
|
242 |
-
|
243 |
-
msgid "
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
#: php:301 ../subscribers/view-subscriber-show.php:422
|
248 |
-
msgid "Delete"
|
249 |
-
msgstr "Löschen"
|
250 |
-
|
251 |
-
#: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
|
252 |
-
#: sentmail/deliverreport-show.php:128 ../subscribers/view-subscriber-show.php:456
|
253 |
-
msgid "No records available."
|
254 |
-
msgstr "Keine Einträge verfügbar."
|
255 |
-
|
256 |
-
#: ../notification/notification-edit.php:49
|
257 |
-
msgid "Please select subscribers group"
|
258 |
-
msgstr "Bitte wähle die Abonnentengruppe"
|
259 |
|
260 |
-
#: ../
|
261 |
-
|
262 |
-
|
|
|
263 |
|
264 |
-
#: ../
|
265 |
-
|
266 |
-
|
|
|
|
|
|
|
267 |
|
268 |
-
#: ../
|
269 |
-
|
270 |
-
|
|
|
271 |
|
272 |
-
#: ../
|
273 |
-
|
274 |
-
msgid "
|
275 |
-
msgstr "
|
276 |
|
277 |
-
|
278 |
-
|
279 |
-
|
|
|
280 |
|
281 |
-
|
282 |
-
|
283 |
-
|
|
|
284 |
|
285 |
-
|
|
|
286 |
msgid ""
|
287 |
-
"
|
288 |
-
"
|
289 |
msgstr ""
|
290 |
-
"
|
291 |
-
"
|
292 |
-
"veröffentlicht werden."
|
293 |
-
|
294 |
-
#. Author of the plugin/theme
|
295 |
-
msgid "Icegram"
|
296 |
-
msgstr "Icegram"
|
297 |
|
298 |
-
#: ../
|
299 |
-
msgctxt "
|
300 |
-
msgid "
|
301 |
-
msgstr "
|
302 |
|
303 |
-
#: ../
|
304 |
-
|
305 |
-
|
|
|
306 |
|
307 |
-
#: ../
|
308 |
-
|
309 |
-
|
|
|
310 |
|
311 |
-
#: ../
|
312 |
-
|
313 |
-
|
|
|
314 |
|
315 |
-
#: ../
|
316 |
-
|
317 |
-
|
|
|
318 |
|
319 |
-
#: ../
|
320 |
-
|
321 |
-
msgid "
|
322 |
-
msgstr "
|
323 |
|
324 |
-
#: ../
|
325 |
-
|
326 |
-
|
|
|
327 |
|
328 |
-
#: ../
|
329 |
-
|
330 |
-
|
|
|
331 |
|
332 |
-
#: ../
|
333 |
-
|
334 |
-
"
|
335 |
-
"
|
336 |
-
msgstr ""
|
337 |
-
"Gib einen Absendernamen und eine Absenderemail ein für alle Emails die von "
|
338 |
-
"diesem Plugin verschickt werden."
|
339 |
|
340 |
-
#: ../
|
341 |
-
|
342 |
-
|
|
|
343 |
|
344 |
-
#: ../
|
345 |
-
|
346 |
-
"
|
347 |
-
"
|
348 |
-
msgstr ""
|
349 |
-
"Optionen 1 & 2 um Emails über die Standart-Wordpress-Methode wp_mail() zu "
|
350 |
-
"senden, Optionen 3 & 4 um Emails über die PHP-Methode mail() zu senden."
|
351 |
|
352 |
-
#: ../
|
353 |
-
|
354 |
-
|
|
|
355 |
|
356 |
-
#: ../
|
357 |
-
|
358 |
-
|
|
|
359 |
|
360 |
-
#: ../
|
361 |
-
|
362 |
-
|
|
|
363 |
|
364 |
-
#: ../
|
365 |
-
|
366 |
-
|
|
|
367 |
|
368 |
-
#: ../
|
369 |
-
|
370 |
-
|
|
|
371 |
|
372 |
-
#: ../
|
373 |
msgid ""
|
374 |
-
"
|
375 |
-
"
|
376 |
-
"by clicking on the activation link.<br />Single Opt-In : In this type, the "
|
377 |
-
"subscriber is not asked to confirm their email address. They are subscribed "
|
378 |
-
"directly in the list."
|
379 |
msgstr ""
|
380 |
-
"
|
381 |
-
"
|
382 |
-
"seine Midgliedschaft duch Klicken auf den Link bestätigen.<br/>Einfaches Opt-"
|
383 |
-
"In : Bei diesem Typ muss der Abonnent die Mitgliedschaft nicht bestätigen. "
|
384 |
-
"Er ist direkt an der Liste angemeldet."
|
385 |
-
|
386 |
-
#: ../settings/settings-edit.php:109
|
387 |
-
msgid "Double Opt In"
|
388 |
-
msgstr "Doppeltes Opt In"
|
389 |
|
390 |
-
#: ../
|
391 |
-
|
392 |
-
|
393 |
-
#: subscriber-edit.php:150
|
394 |
-
msgid "Single Opt In"
|
395 |
-
msgstr "Einfaches Opt In"
|
396 |
|
397 |
-
#: ../
|
398 |
-
msgid "
|
399 |
-
msgstr "
|
400 |
|
401 |
-
#: ../
|
402 |
msgid ""
|
403 |
-
"
|
404 |
-
"
|
|
|
|
|
405 |
msgstr ""
|
406 |
-
"
|
407 |
-
"
|
|
|
|
|
|
|
408 |
|
409 |
-
#: ../
|
410 |
-
|
411 |
-
|
|
|
412 |
|
413 |
-
#: ../
|
414 |
-
msgid "
|
415 |
-
msgstr "
|
416 |
|
417 |
-
#: ../
|
418 |
-
msgid "
|
419 |
-
msgstr "
|
420 |
|
421 |
-
#: ../
|
422 |
-
msgid "
|
423 |
-
msgstr "
|
424 |
|
425 |
-
#: ../
|
426 |
-
msgid ""
|
427 |
-
"
|
428 |
-
"by comma)."
|
429 |
-
msgstr ""
|
430 |
-
"Gib die Emailadressen der Admins ein die Benachrichtigungen bekommen sollen "
|
431 |
-
"(durch Kommas getrennt)."
|
432 |
|
433 |
-
#: ../
|
434 |
-
msgid "
|
435 |
-
msgstr "
|
436 |
|
437 |
-
#: ../
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
438 |
msgid ""
|
439 |
-
"
|
440 |
-
"
|
|
|
441 |
msgstr ""
|
442 |
-
"
|
443 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
444 |
|
445 |
-
#: ../
|
446 |
-
#:
|
447 |
msgid "YES"
|
448 |
msgstr "Ja"
|
449 |
|
450 |
-
#: ../
|
451 |
-
#:
|
452 |
msgid "NO"
|
453 |
msgstr "Nein"
|
454 |
|
455 |
-
#: ../
|
456 |
-
msgid "
|
457 |
-
msgstr "
|
458 |
|
459 |
-
#: ../
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
460 |
msgid ""
|
461 |
-
"
|
462 |
-
"
|
463 |
msgstr ""
|
464 |
-
"
|
465 |
-
"
|
466 |
-
|
467 |
-
#: ../settings/settings-edit.php:156
|
468 |
-
msgid "Admin Email Content on new subscriber signs up"
|
469 |
-
msgstr "Inhalt der Nachricht an den Admin wenn ein neuer Abonnent sich anmeldet"
|
470 |
|
471 |
-
#: ../
|
472 |
msgid ""
|
473 |
-
"
|
474 |
-
"
|
475 |
msgstr ""
|
476 |
-
"
|
477 |
-
"
|
|
|
478 |
|
479 |
-
#: ../
|
480 |
-
msgid "
|
481 |
-
msgstr "
|
482 |
|
483 |
-
#: ../
|
484 |
-
|
485 |
-
|
|
|
486 |
|
487 |
-
#: ../
|
488 |
-
msgid "
|
489 |
-
msgstr "
|
490 |
|
491 |
-
#: ../
|
|
|
|
|
|
|
|
|
|
|
492 |
msgid ""
|
493 |
-
"
|
494 |
-
"
|
495 |
msgstr ""
|
496 |
-
"
|
497 |
-
"
|
498 |
|
499 |
-
#: ../
|
500 |
-
msgid "
|
501 |
-
msgstr "
|
502 |
|
503 |
-
#: ../
|
|
|
|
|
|
|
|
|
504 |
msgid ""
|
505 |
-
"
|
506 |
-
"
|
|
|
507 |
msgstr ""
|
508 |
-
"
|
509 |
-
"
|
|
|
|
|
510 |
|
511 |
-
#: ../
|
512 |
-
msgid "
|
513 |
-
msgstr "
|
514 |
|
515 |
-
#: ../
|
516 |
msgid ""
|
517 |
-
"
|
518 |
-
"
|
519 |
msgstr ""
|
520 |
-
"
|
521 |
-
"
|
522 |
-
|
523 |
-
#: ../settings/settings-edit.php:197
|
524 |
-
msgid "Double Opt-In Confirmation Link"
|
525 |
-
msgstr "Bestätigungslink bei doppeltem Opt-In"
|
526 |
|
527 |
-
#: ../
|
528 |
-
msgid "
|
529 |
-
msgstr "
|
530 |
|
531 |
-
#: ../
|
532 |
-
msgid ""
|
533 |
-
"
|
534 |
-
"Double Opt-In (Confirmation) Email"
|
535 |
-
msgstr ""
|
536 |
-
"Angezeigter Text nachdem eine Emailadresse erfolgreich durch Doppeltes Opt-"
|
537 |
-
"In eingetragen wurde"
|
538 |
|
539 |
-
#: ../
|
540 |
msgid ""
|
541 |
-
"
|
542 |
-
"
|
543 |
msgstr ""
|
544 |
-
"
|
545 |
-
"
|
546 |
|
547 |
-
#: ../
|
548 |
-
msgid "
|
549 |
-
msgstr "
|
550 |
|
551 |
-
#: ../
|
552 |
-
msgid ""
|
553 |
-
"
|
554 |
-
"must be set to YES."
|
555 |
-
msgstr ""
|
556 |
-
"Sende eine Willkommensmail an den Abonnenten nachdem er efolgreich "
|
557 |
-
"registriert ist. Diese Option muss auf JA stehen."
|
558 |
|
559 |
-
#: ../
|
560 |
-
msgid "
|
561 |
-
msgstr "
|
562 |
|
563 |
-
#: ../
|
564 |
-
msgid ""
|
565 |
-
"Subject for the subscriber welcome email. This will be sent whenever a "
|
566 |
-
"user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
|
567 |
-
"Opt-In) successfully."
|
568 |
msgstr ""
|
569 |
-
"
|
570 |
-
"
|
571 |
-
"In) oder erfolgreich eingetragen (bei einfachem Opt-In) wurde."
|
572 |
|
573 |
-
#: ../
|
574 |
-
msgid "
|
575 |
-
msgstr "Inhalt der Willkommensemail"
|
576 |
-
|
577 |
-
#: ../settings/settings-edit.php:232
|
578 |
-
msgid ""
|
579 |
-
"Content for the subscriber welcome email whenever a user's email is either "
|
580 |
-
"confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
|
581 |
-
"<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
|
582 |
msgstr ""
|
583 |
-
"
|
584 |
-
"
|
585 |
-
"/>Verfügbare Schlüsselworte: {{NAME}}, {{GROUP}}, {{LINK}}"
|
586 |
|
587 |
-
#: ../
|
588 |
-
msgid "
|
589 |
-
msgstr "
|
590 |
|
591 |
-
#: ../
|
592 |
-
msgid ""
|
593 |
-
"
|
594 |
-
"from this plugin. It is a readonly field and you are advised not to modify "
|
595 |
-
"it."
|
596 |
-
msgstr ""
|
597 |
-
"Der Abmeldelink wird automatisch allen Emails angehängt die über dieses "
|
598 |
-
"Plugin verschickt werden. Es ist ein \"Nur-Lesen\"-Feld und es wird empfohlen "
|
599 |
-
"es nicht zu ändern."
|
600 |
|
601 |
-
#: ../
|
602 |
-
msgid "
|
603 |
-
msgstr "
|
604 |
|
605 |
-
#: ../
|
606 |
-
msgid ""
|
607 |
-
"
|
608 |
-
"unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
|
609 |
-
msgstr ""
|
610 |
-
"Der Text für den Abmeldelink. Dieser Text wird automatisch mit dem "
|
611 |
-
"Abmeldelink zu den Emails hinzugefügt.<br />Verfügbare Schlüsselworte: "
|
612 |
-
"{{LINK}}"
|
613 |
|
614 |
-
#: ../
|
615 |
-
msgid "
|
616 |
-
msgstr "
|
617 |
|
618 |
-
#: ../
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
|
|
|
|
625 |
|
626 |
-
#: ../
|
627 |
-
msgid "
|
628 |
-
msgstr "
|
629 |
|
630 |
-
#: ../
|
|
|
631 |
msgid ""
|
632 |
-
"
|
633 |
-
"
|
|
|
|
|
|
|
|
|
|
|
634 |
msgstr ""
|
635 |
-
"
|
636 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
637 |
|
638 |
-
#: ../
|
639 |
-
msgid "
|
640 |
-
msgstr "
|
641 |
|
642 |
-
#: ../
|
643 |
-
msgid ""
|
644 |
-
"Default message to display if there is any issue while clicking on "
|
645 |
-
"unsubscribe link from the emails."
|
646 |
msgstr ""
|
647 |
-
"
|
648 |
-
"
|
649 |
|
650 |
-
#: ../
|
651 |
-
msgid "
|
652 |
msgstr ""
|
653 |
-
"
|
654 |
-
"
|
655 |
-
|
656 |
-
#: ../settings/settings-edit.php:288
|
657 |
-
msgid "Subscribers Menu"
|
658 |
-
msgstr "Menü Abonnenten"
|
659 |
|
660 |
-
#: ../
|
661 |
-
|
662 |
-
|
663 |
-
msgid "Administrator Only"
|
664 |
-
msgstr "Nur für Administratoren"
|
665 |
|
666 |
-
#: ../
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
msgstr "Für Administratoren / Editoren"
|
671 |
|
672 |
-
#: ../
|
673 |
-
|
674 |
-
|
675 |
-
msgid "Administrator/Editor/Author/Contributor"
|
676 |
-
msgstr "Für Administratoren / Editoren / Autoren / Mitarbeiter"
|
677 |
|
678 |
-
#: ../
|
679 |
-
msgid "
|
680 |
-
|
|
|
|
|
|
|
|
|
681 |
|
682 |
-
#: ../
|
683 |
-
msgid "
|
684 |
-
msgstr "
|
685 |
|
686 |
-
#: ../
|
687 |
-
|
688 |
-
|
689 |
-
msgstr "Newsletter"
|
690 |
|
691 |
-
#: ../
|
692 |
-
msgid "
|
693 |
-
msgstr "
|
694 |
|
695 |
-
#: ../
|
696 |
-
msgid "
|
697 |
-
msgstr "
|
698 |
|
699 |
-
#: ../
|
700 |
-
msgid ""
|
701 |
-
"
|
702 |
-
"modify it."
|
703 |
-
msgstr "Das ist Deine Cron Job URL. Es wird empfohlen diese nicht zu ändern."
|
704 |
|
705 |
-
#: ../
|
706 |
-
msgid "
|
707 |
-
msgstr "
|
708 |
|
709 |
-
#: ../
|
710 |
-
msgid "
|
711 |
-
msgstr "
|
712 |
|
713 |
-
#: ../
|
714 |
-
msgid "
|
715 |
msgstr ""
|
716 |
-
"
|
717 |
-
"
|
718 |
|
719 |
-
#: ../
|
720 |
-
msgid "
|
721 |
-
msgstr "
|
722 |
|
723 |
-
#: ../
|
724 |
-
msgid ""
|
725 |
-
"
|
726 |
-
"/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
|
727 |
-
msgstr ""
|
728 |
-
"Email an den Admin wenn eine CRON-URL auf dem Server ausgelöst wurde.<br "
|
729 |
-
"/>Verfügbare Schlüsselworte: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
|
730 |
|
731 |
-
#: ../
|
732 |
-
msgid "
|
733 |
-
msgstr "
|
734 |
|
735 |
-
#: ../
|
736 |
-
msgid ""
|
737 |
-
|
738 |
-
"schedule-cron-emails/?"
|
739 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
|
740 |
-
"Cron?</a>"
|
741 |
-
msgstr ""
|
742 |
-
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
743 |
-
"schedule-cron-emails/?"
|
744 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Was ist "
|
745 |
-
"Cron?</a>"
|
746 |
|
747 |
-
#: ../
|
748 |
-
msgid ""
|
749 |
-
|
750 |
-
"schedule-cron-emails-in-cpanel/?"
|
751 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
|
752 |
-
"job in cPanel</a>"
|
753 |
-
msgstr ""
|
754 |
-
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
755 |
-
"schedule-cron-emails-in-cpanel/?"
|
756 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Cron Jobs "
|
757 |
-
"in cPanel konfigurieren</a>"
|
758 |
|
759 |
-
#: ../
|
760 |
-
msgid ""
|
761 |
-
|
762 |
-
"schedule-cron-emails-in-parallels-plesk/?"
|
763 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
|
764 |
-
"job in Plesk</a>"
|
765 |
-
msgstr ""
|
766 |
-
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
767 |
-
"schedule-cron-emails-in-parallels-plesk/?"
|
768 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Cron Jobs "
|
769 |
-
"in Plesk konfigurieren</a>"
|
770 |
-
|
771 |
-
#: ../settings/settings-edit.php:389
|
772 |
-
msgid ""
|
773 |
-
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
|
774 |
-
"if-hosting-doesnt-support-cron-jobs/?"
|
775 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
|
776 |
-
"does not support cron jobs?</a>"
|
777 |
-
msgstr ""
|
778 |
-
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
|
779 |
-
"if-hosting-doesnt-support-cron-jobs/?"
|
780 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Dein "
|
781 |
-
"Hoster unterstützt keine Cron Jobs?</a>"
|
782 |
|
783 |
-
#: ../
|
784 |
-
msgid "
|
785 |
-
msgstr "
|
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 |
-
msgid "
|
809 |
-
msgstr "
|
810 |
|
811 |
-
#: ../
|
812 |
-
msgid "
|
813 |
-
msgstr "
|
814 |
|
815 |
-
#: ../
|
816 |
-
msgid "
|
817 |
-
msgstr "
|
818 |
|
819 |
-
#: ../
|
820 |
msgid ""
|
821 |
-
"
|
822 |
-
"
|
823 |
-
"a slight variation on how your customer will view the email content."
|
824 |
msgstr ""
|
825 |
-
"
|
826 |
-
"
|
827 |
-
"unterschiedlich dargestellt werden. Es kann also zu leichten Unterschieden "
|
828 |
-
"darin kommen wie der Kunde den Inhalt der Email sieht."
|
829 |
-
|
830 |
-
#: ../sentmail/sentmail-preview.php:53
|
831 |
-
msgid "Back"
|
832 |
-
msgstr "Zurück"
|
833 |
|
834 |
-
#: ../
|
835 |
-
msgid "
|
836 |
-
msgstr "
|
837 |
|
838 |
-
#: ../
|
839 |
-
msgid "
|
840 |
-
msgstr "
|
841 |
|
842 |
-
#: ../
|
843 |
-
msgid "
|
844 |
-
msgstr "
|
845 |
|
846 |
-
#: ../
|
847 |
-
|
848 |
-
|
849 |
-
|
|
|
|
|
|
|
850 |
|
851 |
-
#: ../
|
852 |
-
msgid "
|
853 |
-
|
|
|
|
|
|
|
|
|
854 |
|
855 |
-
|
856 |
-
|
857 |
-
|
|
|
858 |
|
859 |
-
#: ../
|
860 |
-
|
861 |
-
|
862 |
-
|
|
|
|
|
|
|
|
|
863 |
|
864 |
-
#: ../
|
865 |
-
|
866 |
-
|
|
|
867 |
|
868 |
-
#: ../
|
869 |
-
|
870 |
-
|
871 |
-
msgid "Status"
|
872 |
-
msgstr "Status"
|
873 |
|
874 |
-
#: ../
|
875 |
-
|
876 |
-
|
877 |
-
msgstr "Gesendet"
|
878 |
|
879 |
-
#: ../
|
880 |
-
msgid "
|
881 |
-
msgstr "
|
|
|
|
|
882 |
|
883 |
-
#: ../
|
884 |
-
msgid "
|
885 |
-
msgstr "
|
886 |
|
887 |
-
#: ../
|
888 |
-
msgid "
|
889 |
-
|
|
|
|
|
|
|
|
|
890 |
|
891 |
-
#: ../
|
892 |
-
|
893 |
-
|
894 |
-
|
895 |
-
msgstr "
|
|
|
|
|
896 |
|
897 |
-
#: ../
|
898 |
-
msgid "
|
899 |
-
msgstr "
|
900 |
|
901 |
-
#: ../
|
|
|
902 |
msgid ""
|
903 |
-
"
|
904 |
-
"
|
905 |
msgstr ""
|
906 |
-
"
|
907 |
-
"
|
908 |
|
909 |
-
#: ../
|
910 |
-
msgid "
|
911 |
-
msgstr "
|
912 |
|
913 |
-
#: ../
|
914 |
-
msgid "
|
915 |
-
msgstr "
|
916 |
|
917 |
-
#: ../
|
918 |
-
|
919 |
-
|
920 |
-
msgid "Sno"
|
921 |
-
msgstr "Alle"
|
922 |
|
923 |
-
#: ../
|
924 |
-
msgid "
|
925 |
-
msgstr "
|
|
|
|
|
926 |
|
927 |
-
#: ../
|
928 |
-
msgid "
|
929 |
-
msgstr "
|
930 |
|
931 |
-
#: ../
|
932 |
-
msgid "
|
933 |
-
msgstr "
|
934 |
|
935 |
-
#: ../
|
936 |
-
msgid "
|
937 |
-
msgstr "
|
938 |
|
939 |
-
#: ../
|
940 |
-
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
|
|
|
|
|
|
|
946 |
|
947 |
-
#: ../
|
948 |
-
msgid "
|
949 |
-
msgstr "
|
950 |
|
951 |
-
#: ../
|
952 |
-
|
953 |
-
|
|
|
|
|
|
|
|
|
|
|
954 |
|
955 |
-
#: ../
|
956 |
-
|
957 |
-
|
|
|
958 |
|
959 |
-
#: ../
|
960 |
-
#:
|
961 |
-
msgid "
|
962 |
-
msgstr "
|
963 |
|
964 |
-
#: ../
|
965 |
-
#:
|
966 |
-
msgid "
|
967 |
-
msgstr "
|
968 |
|
969 |
-
#: ../
|
970 |
-
|
971 |
-
|
|
|
972 |
|
973 |
-
#: ../
|
974 |
-
|
975 |
-
|
|
|
976 |
|
977 |
-
#: ../
|
978 |
-
#:
|
979 |
-
|
980 |
-
|
981 |
-
msgid "Add New Subscriber"
|
982 |
-
msgstr "Neu hinzufügen"
|
983 |
|
984 |
-
#: ../
|
985 |
-
#:
|
986 |
-
|
987 |
-
|
988 |
-
msgstr "Export"
|
989 |
|
990 |
-
#: ../
|
991 |
-
#:
|
992 |
-
|
993 |
-
|
994 |
-
msgid "Sync"
|
995 |
-
msgstr "Synchronisieren"
|
996 |
|
997 |
-
#: ../
|
998 |
-
|
999 |
-
|
|
|
1000 |
|
1001 |
-
#: ../
|
1002 |
-
|
1003 |
-
|
|
|
1004 |
|
1005 |
-
#: ../
|
1006 |
-
|
1007 |
-
|
|
|
1008 |
|
1009 |
-
#: ../
|
1010 |
-
|
1011 |
-
|
|
|
1012 |
|
1013 |
-
#: ../
|
1014 |
-
#:
|
1015 |
-
|
1016 |
-
|
1017 |
-
msgstr "Bestätigt"
|
1018 |
|
1019 |
-
#: ../
|
1020 |
-
#:
|
1021 |
-
#:
|
1022 |
-
msgid "
|
1023 |
-
msgstr "
|
1024 |
|
1025 |
-
#: ../
|
1026 |
-
|
1027 |
-
|
1028 |
-
msgid "Unsubscribed"
|
1029 |
-
msgstr "Abgemeldet"
|
1030 |
|
1031 |
-
#: ../
|
1032 |
-
msgid "
|
1033 |
-
msgstr "
|
1034 |
|
1035 |
-
#: ../
|
1036 |
-
|
1037 |
-
|
1038 |
-
msgstr "(oder)"
|
1039 |
|
1040 |
-
#: ../
|
1041 |
-
|
1042 |
-
|
1043 |
-
#: subscribers/view-subscriber-sync.php:90
|
1044 |
-
msgid "Import"
|
1045 |
-
msgstr "Import"
|
1046 |
|
1047 |
-
#: ../
|
1048 |
-
|
1049 |
-
|
|
|
1050 |
|
1051 |
-
#: ../subscribers/view-subscriber-show.
|
1052 |
-
|
1053 |
-
|
|
|
1054 |
|
1055 |
-
#: ../
|
1056 |
-
|
1057 |
-
|
1058 |
-
msgstr "Eintrag gelöscht."
|
1059 |
|
1060 |
-
#: ../
|
1061 |
-
msgid "
|
|
|
|
|
1062 |
msgstr ""
|
1063 |
-
"
|
1064 |
-
"
|
1065 |
-
|
1066 |
-
#: ../subscribers/view-subscriber-show.php:75 ../subscribers/view-subscriber-show.
|
1067 |
-
#: php:134
|
1068 |
-
msgid "Confirmation emails resent successfully."
|
1069 |
-
msgstr "Die Bestätigungsmails wurden erfolgreich erneut verschickt."
|
1070 |
|
1071 |
-
#: ../
|
1072 |
-
#:
|
1073 |
-
|
1074 |
-
|
1075 |
-
msgstr "Kein Eintrag ausgewählt."
|
1076 |
|
1077 |
-
#: ../
|
1078 |
-
|
1079 |
-
|
1080 |
-
|
1081 |
-
"geändert werden."
|
1082 |
|
1083 |
-
#: ../
|
1084 |
-
|
1085 |
-
|
|
|
1086 |
|
1087 |
-
#: ../
|
1088 |
-
|
1089 |
-
|
|
|
1090 |
|
1091 |
-
#: ../subscribers/view-subscriber-show.
|
1092 |
-
|
1093 |
-
|
|
|
1094 |
|
1095 |
-
#: ../subscribers/view-subscriber-show.
|
1096 |
-
|
1097 |
-
|
|
|
1098 |
|
1099 |
-
#: ../
|
1100 |
-
#:
|
1101 |
-
|
1102 |
-
|
|
|
1103 |
|
1104 |
-
#: ../subscribers/view-subscriber-show.php:
|
1105 |
-
msgid "
|
1106 |
-
msgstr "
|
1107 |
|
1108 |
-
#: ../
|
1109 |
-
|
1110 |
-
|
1111 |
-
msgstr "Abonnenten aktiv: %s"
|
1112 |
|
1113 |
-
#: ../
|
1114 |
-
msgid "
|
1115 |
-
msgstr "
|
1116 |
|
1117 |
-
#: ../
|
1118 |
-
|
1119 |
-
|
1120 |
-
msgstr "Name"
|
1121 |
|
1122 |
-
#: ../
|
1123 |
-
msgid "
|
1124 |
-
msgstr "
|
1125 |
|
1126 |
-
#: ../
|
1127 |
-
msgid "
|
1128 |
-
msgstr "
|
1129 |
|
1130 |
-
#: ../
|
1131 |
-
msgid "
|
1132 |
-
msgstr "
|
1133 |
|
1134 |
-
#: ../
|
1135 |
-
|
1136 |
-
|
1137 |
-
msgstr "Benachrichtigung erneut versenden"
|
1138 |
|
1139 |
-
#: ../
|
1140 |
-
msgid "
|
1141 |
-
msgstr "
|
1142 |
|
1143 |
-
#: ../
|
1144 |
-
msgid "Select
|
1145 |
-
msgstr "Wähle
|
1146 |
|
1147 |
-
#: ../
|
1148 |
-
msgid "
|
1149 |
-
msgstr "
|
1150 |
|
1151 |
-
#: ../
|
1152 |
-
msgid "
|
1153 |
-
msgstr "
|
1154 |
|
1155 |
-
#: ../
|
1156 |
-
msgid "
|
1157 |
-
msgstr "
|
1158 |
|
1159 |
-
#: ../
|
1160 |
-
|
1161 |
-
|
|
|
1162 |
|
1163 |
-
#: ../
|
1164 |
-
msgid "
|
1165 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1166 |
|
1167 |
-
#: ../
|
1168 |
-
msgid "
|
1169 |
-
msgstr "
|
1170 |
|
1171 |
-
#: ../
|
1172 |
-
msgid "
|
1173 |
-
msgstr "
|
1174 |
|
1175 |
-
#: ../
|
1176 |
-
msgid "
|
1177 |
-
msgstr "
|
1178 |
|
1179 |
-
#: ../
|
1180 |
-
msgid "
|
1181 |
-
msgstr "
|
1182 |
|
1183 |
-
#: ../
|
1184 |
-
msgid "
|
1185 |
-
msgstr "
|
1186 |
|
1187 |
-
#: ../
|
1188 |
-
msgid "
|
1189 |
-
msgstr "
|
1190 |
|
1191 |
-
#: ../
|
1192 |
-
|
1193 |
-
|
|
|
|
|
1194 |
|
1195 |
-
#: ../
|
1196 |
-
msgid ""
|
1197 |
-
|
1198 |
-
"administrator can export subscriber list."
|
1199 |
-
msgstr ""
|
1200 |
-
"Oh. Es sieht aus als ob Du nicht der Administrator dieser Seite bist."
|
1201 |
-
"<br><br>Nur der Administrator kann die Abonnentenliste exportieren."
|
1202 |
|
1203 |
-
#: ../
|
1204 |
-
|
1205 |
-
|
|
|
|
|
1206 |
|
1207 |
-
#: ../
|
1208 |
-
|
1209 |
-
|
|
|
1210 |
|
1211 |
-
#: ../
|
1212 |
-
|
1213 |
-
|
1214 |
-
msgstr "Listentyp für den Export"
|
1215 |
|
1216 |
-
#: ../
|
1217 |
-
|
1218 |
-
|
1219 |
-
msgstr "Gesamte Anzahl Emails"
|
1220 |
|
1221 |
-
#: ../
|
1222 |
-
msgid "
|
1223 |
-
msgstr "
|
1224 |
|
1225 |
-
#: ../
|
1226 |
-
msgid "
|
1227 |
-
msgstr "
|
1228 |
|
1229 |
-
#: ../
|
1230 |
-
|
1231 |
-
|
1232 |
-
|
1233 |
-
|
|
|
|
|
|
|
|
|
|
|
1234 |
|
1235 |
-
#: ../
|
1236 |
-
msgid "
|
1237 |
-
msgstr "
|
1238 |
|
1239 |
-
#: ../
|
1240 |
-
msgid "
|
1241 |
-
msgstr "
|
1242 |
|
1243 |
-
#: ../
|
1244 |
-
msgid "
|
1245 |
-
msgstr "
|
1246 |
|
1247 |
-
#: ../
|
1248 |
-
msgid "
|
1249 |
-
msgstr "
|
1250 |
|
1251 |
-
#: ../
|
1252 |
-
msgid "
|
1253 |
-
msgstr "
|
1254 |
|
1255 |
-
#: ../
|
1256 |
-
msgid "
|
1257 |
-
msgstr "
|
1258 |
|
1259 |
-
#: ../
|
1260 |
-
msgid "
|
1261 |
-
msgstr "
|
1262 |
|
1263 |
-
#: ../
|
1264 |
-
msgid "
|
1265 |
-
msgstr "
|
1266 |
|
1267 |
-
#: ../
|
1268 |
-
#: php:
|
1269 |
-
|
1270 |
-
|
|
|
1271 |
|
1272 |
-
#: ../
|
1273 |
-
msgid "
|
1274 |
-
msgstr "
|
1275 |
|
1276 |
-
#: ../
|
1277 |
msgid ""
|
1278 |
-
"
|
1279 |
-
"
|
1280 |
msgstr ""
|
1281 |
-
"
|
1282 |
-
"
|
1283 |
|
1284 |
-
#: ../
|
1285 |
-
msgid "
|
1286 |
-
msgstr "
|
1287 |
|
1288 |
-
#: ../
|
1289 |
-
msgid "
|
1290 |
-
msgstr "
|
1291 |
|
1292 |
-
#: ../
|
1293 |
-
msgid "
|
1294 |
-
msgstr "
|
1295 |
|
1296 |
-
#: ../
|
1297 |
-
msgid "
|
1298 |
-
msgstr "
|
1299 |
|
1300 |
-
#: ../
|
1301 |
-
msgid "
|
1302 |
-
msgstr "
|
1303 |
|
1304 |
-
#: ../
|
1305 |
-
msgid "
|
1306 |
-
msgstr "
|
1307 |
|
1308 |
-
#: ../
|
1309 |
-
msgid "
|
1310 |
-
msgstr "
|
1311 |
|
1312 |
-
#: ../
|
1313 |
-
msgid "
|
1314 |
-
msgstr "
|
1315 |
|
1316 |
-
#: ../
|
1317 |
-
msgid "
|
1318 |
-
msgstr "
|
1319 |
|
1320 |
-
#: ../
|
1321 |
-
msgid "
|
1322 |
-
|
|
|
|
|
|
|
|
|
1323 |
|
1324 |
-
#: ../
|
1325 |
-
msgid "
|
1326 |
-
msgstr "
|
1327 |
|
1328 |
-
#: ../
|
1329 |
-
msgid "
|
1330 |
-
|
|
|
|
|
|
|
|
|
1331 |
|
1332 |
-
#: ../
|
1333 |
-
msgid "
|
1334 |
-
msgstr "
|
1335 |
|
1336 |
-
#: ../
|
1337 |
-
msgid "
|
1338 |
-
msgstr "
|
1339 |
|
1340 |
-
#: ../
|
1341 |
-
msgid "
|
1342 |
-
msgstr "
|
1343 |
|
1344 |
-
#: ../
|
1345 |
-
msgid "
|
1346 |
-
msgstr "
|
1347 |
|
1348 |
-
#: ../
|
1349 |
-
msgid "
|
1350 |
-
msgstr "
|
1351 |
|
1352 |
-
#: ../
|
1353 |
-
msgid "
|
1354 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1355 |
|
1356 |
-
#: ../
|
1357 |
-
msgid "
|
1358 |
-
msgstr "
|
1359 |
|
1360 |
-
#: ../subscribers/view-subscriber-
|
1361 |
-
|
1362 |
-
|
|
|
|
|
|
|
1363 |
|
1364 |
-
#: ../
|
1365 |
-
msgid "
|
1366 |
-
msgstr "
|
1367 |
|
1368 |
-
#: ../
|
1369 |
-
msgid "
|
1370 |
-
|
|
|
|
|
|
|
|
|
1371 |
|
1372 |
-
#: ../
|
1373 |
-
msgid "
|
1374 |
-
msgstr "
|
1375 |
|
1376 |
-
#: ../
|
1377 |
-
msgid "
|
1378 |
-
msgstr "
|
1379 |
|
1380 |
-
#: ../
|
1381 |
-
msgid ""
|
1382 |
-
"
|
1383 |
-
"published blog post."
|
1384 |
-
msgstr ""
|
1385 |
-
"<br><br>Diese Beitragsbenachrichtigung hat mittlerweile ersetzte "
|
1386 |
-
"Schlüsselworte deines letzten veröffentlichten Blogbeitrags."
|
1387 |
|
1388 |
-
#: ../
|
1389 |
msgid ""
|
1390 |
-
"
|
1391 |
-
"
|
1392 |
-
"customer will view the email content."
|
1393 |
msgstr ""
|
1394 |
-
"
|
1395 |
-
"
|
1396 |
-
"Abweichungen kommen wie die Abonnenten den Inhalt der Email sehen."
|
1397 |
|
1398 |
-
#: ../
|
1399 |
-
|
|
|
|
|
|
|
1400 |
msgid ""
|
1401 |
-
"
|
1402 |
-
"
|
1403 |
msgstr ""
|
1404 |
-
"
|
1405 |
-
"
|
1406 |
|
1407 |
-
#: ../
|
1408 |
-
msgid "
|
1409 |
-
msgstr "
|
1410 |
|
1411 |
-
#: ../
|
1412 |
-
msgid "
|
1413 |
-
|
|
|
|
|
|
|
|
|
1414 |
|
1415 |
-
#: ../
|
1416 |
-
msgid "
|
1417 |
-
msgstr "
|
1418 |
|
1419 |
-
#: ../
|
1420 |
-
|
1421 |
-
|
1422 |
-
|
|
|
|
|
|
|
1423 |
|
1424 |
-
#: ../
|
1425 |
-
|
1426 |
-
|
1427 |
-
msgstr "Version: %s"
|
1428 |
|
1429 |
-
#: ../
|
1430 |
-
msgid "
|
1431 |
-
msgstr "
|
1432 |
|
1433 |
-
#: ../
|
1434 |
-
msgid "
|
1435 |
-
msgstr "
|
1436 |
|
1437 |
-
#: ../
|
1438 |
-
msgid "
|
1439 |
-
|
|
|
|
|
|
|
|
|
1440 |
|
1441 |
-
#: ../
|
1442 |
-
msgid "
|
1443 |
-
msgstr "
|
1444 |
|
1445 |
-
#: ../
|
1446 |
msgid ""
|
1447 |
-
"
|
1448 |
-
"
|
1449 |
-
"newsletters and manage all this in one single place."
|
1450 |
msgstr ""
|
1451 |
-
"
|
1452 |
-
"
|
1453 |
-
"zu versenden, Newsletter zu erstellen, zu versenden und all dies an einer "
|
1454 |
-
"einzigen Stelle zu verwalten."
|
1455 |
|
1456 |
-
#: ../
|
1457 |
-
msgid "
|
1458 |
-
msgstr "
|
1459 |
|
1460 |
-
#: ../
|
1461 |
msgid ""
|
1462 |
-
"
|
1463 |
-
"
|
1464 |
msgstr ""
|
1465 |
-
"
|
1466 |
-
"
|
1467 |
|
1468 |
-
#: ../
|
1469 |
-
msgid "
|
1470 |
-
msgstr "
|
1471 |
|
1472 |
-
#: ../
|
1473 |
-
msgid "
|
1474 |
-
msgstr "
|
1475 |
|
1476 |
-
#: ../
|
1477 |
msgid ""
|
1478 |
-
"
|
1479 |
-
"
|
1480 |
-
msgstr ""
|
1481 |
-
"Versand von Benachrichtigungsemails an Abonnenten wenn neue Beiträge auf der "
|
1482 |
-
"Webseite veröffentlicht werden."
|
1483 |
-
|
1484 |
-
#: ../help/help.php:268
|
1485 |
-
msgid "Schedule email (Cron job) or send them manually."
|
1486 |
-
msgstr "Geplanter Versand von Emails (Cron Jobs) oder manueller Versand."
|
1487 |
-
|
1488 |
-
#: ../help/help.php:271
|
1489 |
-
msgid "Send email notification to admin when a new user signs up."
|
1490 |
-
msgstr "Benachrichtigungsemail an den Admin wenn ein neuer Benutzer sich anmeldet."
|
1491 |
-
|
1492 |
-
#: ../help/help.php:274
|
1493 |
-
msgid "Automatically add Unsubscribe link in the email."
|
1494 |
-
msgstr "Automatisches Hinzufügen des Abmeldelinks in den Emails."
|
1495 |
-
|
1496 |
-
#: ../help/help.php:277
|
1497 |
-
msgid "Easily migrate subscribers from another app using Import & Export."
|
1498 |
msgstr ""
|
1499 |
-
"
|
1500 |
-
"
|
1501 |
|
1502 |
-
#: ../
|
1503 |
-
msgid "
|
|
|
|
|
1504 |
msgstr ""
|
1505 |
-
"
|
1506 |
-
"
|
1507 |
|
1508 |
-
#: ../
|
1509 |
-
msgid "Send
|
1510 |
-
msgstr "
|
1511 |
|
1512 |
-
#: ../
|
1513 |
-
msgid "
|
1514 |
-
|
|
|
|
|
|
|
|
|
1515 |
|
1516 |
-
#: ../
|
1517 |
-
msgid "
|
1518 |
-
msgstr "
|
1519 |
|
1520 |
-
#: ../
|
1521 |
-
msgid "
|
1522 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1523 |
|
1524 |
-
#: ../
|
1525 |
-
msgid "
|
1526 |
-
msgstr "
|
1527 |
|
1528 |
-
#: ../
|
1529 |
-
|
1530 |
-
|
1531 |
-
|
1532 |
-
|
1533 |
-
|
1534 |
-
|
1535 |
-
|
1536 |
-
|
1537 |
|
1538 |
-
#: ../
|
1539 |
-
msgid "
|
1540 |
-
msgstr "
|
1541 |
|
1542 |
-
#: ../
|
1543 |
-
#, php-format
|
1544 |
msgid ""
|
1545 |
-
"
|
1546 |
-
"
|
1547 |
-
"
|
1548 |
-
" b) Go to Appearance -> Widgets. Click on widget Email subscribers "
|
1549 |
-
"and drag it to the sidebar on the right <i>Or</i><br>\n"
|
1550 |
-
" c) Copy and past this php code to your desired template location : "
|
1551 |
-
"<strong>%s</strong>"
|
1552 |
msgstr ""
|
1553 |
-
"
|
1554 |
-
"
|
1555 |
-
"
|
1556 |
-
" b) Im Bereich Appearance -> Widgets. Füge das Widget für Email "
|
1557 |
-
"Subscribers duch klicken und ziehen auf die rechte Sidebar hinzu "
|
1558 |
-
"<i>Oder</i><br>\n"
|
1559 |
-
" c) Kopiere diesen PHP-Code und füge ihn an der gewünschten Stelle im "
|
1560 |
-
"Template ein: <strong>%s</strong>"
|
1561 |
|
1562 |
-
#: ../
|
1563 |
-
msgid "
|
1564 |
-
msgstr "
|
1565 |
|
1566 |
-
#: ../
|
1567 |
-
msgid "
|
|
|
|
|
1568 |
msgstr ""
|
1569 |
-
"
|
1570 |
-
"
|
|
|
1571 |
|
1572 |
-
#: ../
|
1573 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
1574 |
msgstr ""
|
1575 |
-
"
|
1576 |
-
"
|
1577 |
|
1578 |
-
#: ../
|
1579 |
-
msgid "
|
1580 |
-
msgstr "
|
1581 |
|
1582 |
-
#: ../
|
1583 |
-
|
1584 |
-
|
1585 |
-
|
|
|
|
|
|
|
1586 |
|
1587 |
-
#: ../
|
1588 |
-
msgid "
|
1589 |
-
msgstr "
|
1590 |
|
1591 |
-
#: ../
|
1592 |
msgid ""
|
1593 |
-
"
|
1594 |
-
"
|
1595 |
msgstr ""
|
1596 |
-
"
|
1597 |
-
"
|
1598 |
|
1599 |
-
#: ../
|
1600 |
-
msgid "
|
1601 |
-
msgstr "
|
|
|
|
|
1602 |
|
1603 |
-
#: ../
|
1604 |
-
msgid "
|
1605 |
-
msgstr "
|
1606 |
|
1607 |
-
#: ../
|
1608 |
-
|
1609 |
-
|
|
|
|
|
1610 |
|
1611 |
-
#: ../
|
1612 |
-
|
1613 |
-
|
|
|
|
|
1614 |
|
1615 |
-
#: ../
|
1616 |
-
|
1617 |
-
|
|
|
|
|
1618 |
|
1619 |
-
#: ../
|
1620 |
-
msgid "
|
1621 |
-
msgstr "
|
1622 |
|
1623 |
-
#: ../
|
1624 |
-
msgid "
|
1625 |
-
msgstr "
|
1626 |
|
1627 |
-
#: ../
|
1628 |
-
msgid "
|
1629 |
-
msgstr ""
|
1630 |
-
"Erstelle und versende Benachrichtigungsemails wenn neue Beiträge "
|
1631 |
-
"veröffentlicht werden"
|
1632 |
|
1633 |
-
#: ../
|
1634 |
-
msgid "
|
1635 |
-
msgstr "
|
1636 |
-
|
1637 |
-
#: ../help/help.php:367
|
1638 |
-
msgid "Send a test post notification email to myself/testgroup"
|
1639 |
-
msgstr "Senden einer Testbenachrichtigung an sich selbst oder an eine Testgruppe"
|
1640 |
-
|
1641 |
-
#: ../help/help.php:372
|
1642 |
-
msgid "Cron Job Setup"
|
1643 |
-
msgstr "Konfiguration Cron Job"
|
1644 |
-
|
1645 |
-
#: ../help/help.php:375
|
1646 |
-
msgid "What is Cron and how to Schedule Cron Emails?"
|
1647 |
-
msgstr "Was ist Cron und wie plane ich Cron Emailversand?"
|
1648 |
-
|
1649 |
-
#: ../help/help.php:378
|
1650 |
-
msgid "Schedule Cron Emails in cPanel"
|
1651 |
-
msgstr "Planen von Cron Emails in cPanel"
|
1652 |
-
|
1653 |
-
#: ../help/help.php:381
|
1654 |
-
msgid "Schedule Cron Emails in Parallels Plesk"
|
1655 |
-
msgstr "Planen von Cron Emails in Paralles Plesk"
|
1656 |
-
|
1657 |
-
#: ../help/help.php:384
|
1658 |
-
msgid "Hosting doesn’t support Cron Jobs?"
|
1659 |
-
msgstr "Dein Hoster unterstützt keine Cron Jobs?"
|
1660 |
-
|
1661 |
-
#: ../help/help.php:387
|
1662 |
-
msgid "Troubleshooting Steps"
|
1663 |
-
msgstr "Schritte bei der Fehlersuche"
|
1664 |
-
|
1665 |
-
#: ../help/help.php:390
|
1666 |
-
msgid "Subscribers are not receiving Emails?"
|
1667 |
-
msgstr "Abonnenten erhalten keine Emails?"
|
1668 |
|
1669 |
-
#: ../
|
1670 |
-
msgid "
|
1671 |
-
|
|
|
|
|
1672 |
|
1673 |
-
#: ../
|
1674 |
-
msgid "
|
1675 |
-
msgstr "
|
1676 |
|
1677 |
-
#: ../
|
1678 |
-
msgid "
|
1679 |
-
msgstr "
|
1680 |
|
1681 |
-
#: ../
|
1682 |
-
msgid "
|
1683 |
-
msgstr "
|
|
|
|
|
1684 |
|
1685 |
-
#: ../
|
1686 |
-
msgid "
|
1687 |
-
msgstr "
|
1688 |
|
1689 |
-
#: ../
|
1690 |
msgid ""
|
1691 |
-
"
|
1692 |
-
"
|
1693 |
msgstr ""
|
1694 |
-
"
|
1695 |
-
"
|
1696 |
|
1697 |
-
#: ../
|
1698 |
-
msgid "
|
1699 |
-
msgstr "
|
1700 |
|
1701 |
-
#: ../
|
1702 |
-
msgid "
|
1703 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1704 |
|
1705 |
-
#: ../
|
1706 |
-
msgid "
|
1707 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1708 |
|
1709 |
-
#: ../
|
1710 |
msgid ""
|
1711 |
-
"
|
1712 |
-
"
|
|
|
|
|
1713 |
msgstr ""
|
1714 |
-
"
|
1715 |
-
"
|
|
|
|
|
1716 |
|
1717 |
-
#: ../
|
1718 |
msgid ""
|
1719 |
-
"
|
1720 |
-
"
|
|
|
|
|
1721 |
msgstr ""
|
1722 |
-
"
|
1723 |
-
"
|
1724 |
-
"
|
|
|
1725 |
|
1726 |
-
#: ../
|
1727 |
-
|
1728 |
-
|
1729 |
-
msgstr "Wie kann ich %s"
|
1730 |
|
1731 |
-
#: ../
|
1732 |
-
msgid "
|
1733 |
-
msgstr "
|
1734 |
|
1735 |
-
#: ../
|
1736 |
-
msgid "
|
1737 |
-
msgstr "
|
1738 |
|
1739 |
-
#: ../
|
1740 |
-
msgid "
|
1741 |
-
msgstr "
|
1742 |
|
1743 |
-
#: ../
|
1744 |
-
msgid ""
|
1745 |
-
"
|
1746 |
-
"elegant form styles."
|
1747 |
-
msgstr ""
|
1748 |
-
"Rainmaker erweitert die Kernfeatures von Email Subscribers und bietet "
|
1749 |
-
"elegante Stile für die Formulare."
|
1750 |
|
1751 |
-
#: ../
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1752 |
msgid ""
|
1753 |
-
"
|
1754 |
-
"
|
1755 |
msgstr ""
|
1756 |
-
"
|
1757 |
-
"
|
1758 |
|
1759 |
-
#: ../
|
1760 |
-
msgid "
|
1761 |
-
msgstr "
|
1762 |
|
1763 |
-
#: ../
|
1764 |
-
msgid "
|
1765 |
-
msgstr "
|
1766 |
|
1767 |
-
#: ../
|
1768 |
-
msgid "
|
1769 |
-
msgstr "
|
1770 |
|
1771 |
-
#: ../
|
1772 |
-
|
1773 |
-
|
|
|
|
|
|
|
1774 |
|
1775 |
-
#: ../
|
1776 |
-
|
1777 |
-
|
|
|
|
|
|
|
1778 |
|
1779 |
-
#: ../
|
1780 |
-
|
1781 |
-
|
|
|
|
|
1782 |
|
1783 |
-
#: ../
|
1784 |
-
|
1785 |
-
|
|
|
|
|
|
|
1786 |
|
1787 |
-
#: ../
|
1788 |
-
msgid "
|
1789 |
-
msgstr "
|
1790 |
|
1791 |
-
#: ../
|
1792 |
-
msgid "
|
1793 |
-
msgstr "
|
1794 |
|
1795 |
-
#: ../
|
1796 |
-
msgid "Select
|
1797 |
-
msgstr "Wähle den
|
1798 |
|
1799 |
-
#: ../
|
1800 |
-
|
1801 |
-
|
|
|
|
|
1802 |
|
1803 |
-
#: ../
|
1804 |
-
|
1805 |
-
|
1806 |
-
|
1807 |
-
|
1808 |
-
msgid "Recipients : 0 "
|
1809 |
-
msgstr "Empfänger : 0 "
|
1810 |
-
|
1811 |
-
#: ../sendmail/sendmail.php:181
|
1812 |
-
#, php-format
|
1813 |
-
msgid "Recipients : %s"
|
1814 |
-
msgstr "Empfänger : %s"
|
1815 |
-
|
1816 |
-
#: ../sendmail/sendmail.php:184
|
1817 |
-
msgid ""
|
1818 |
-
"<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
|
1819 |
-
"that you change above Mail Type to Cron and Send Mail via Cron Job."
|
1820 |
-
"</strong><br>Click on Help for more information."
|
1821 |
-
msgstr ""
|
1822 |
-
"<br><br><strong>Die Anzahl der Empfänger ist über 100.<br>Wir empfehlen den "
|
1823 |
-
"Email-Typ in Cron zu ändern und mit Cron Job zu verschicken."
|
1824 |
-
"</strong><br>Klicke auf Hilfe für weitere Informationen."
|
1825 |
|
1826 |
-
#: ../
|
1827 |
-
|
1828 |
-
|
|
|
|
|
1829 |
|
1830 |
-
#: ../
|
1831 |
-
msgid "
|
1832 |
-
msgstr "
|
1833 |
|
1834 |
-
#: ../
|
1835 |
-
|
1836 |
-
|
|
|
1837 |
|
1838 |
-
#: ../
|
1839 |
-
msgid "
|
1840 |
-
msgstr "
|
1841 |
|
1842 |
-
#: ../
|
1843 |
-
msgid "
|
1844 |
-
msgstr "
|
1845 |
|
1846 |
-
#: ../
|
1847 |
-
msgid "
|
1848 |
-
msgstr "
|
1849 |
|
1850 |
-
#: ../
|
1851 |
-
msgid "
|
1852 |
-
msgstr "
|
1853 |
|
1854 |
-
#: ../
|
1855 |
-
msgid "
|
1856 |
-
msgstr "
|
1857 |
|
1858 |
-
#: ../
|
1859 |
-
msgid "
|
1860 |
-
msgstr "
|
1861 |
|
1862 |
-
#: ../
|
1863 |
-
msgid "
|
1864 |
-
msgstr "
|
1865 |
|
1866 |
-
#: ../
|
1867 |
-
msgid "
|
1868 |
-
msgstr "
|
1869 |
|
1870 |
-
#: ../
|
1871 |
-
msgid "
|
1872 |
-
msgstr "
|
1873 |
|
1874 |
-
#: ../
|
1875 |
-
msgid "
|
1876 |
-
|
|
|
|
|
|
|
|
|
1877 |
|
1878 |
-
#: ../
|
1879 |
-
|
1880 |
-
|
1881 |
-
msgstr "Email Subscribers"
|
1882 |
|
1883 |
-
#: ../
|
1884 |
-
|
1885 |
-
|
1886 |
-
msgstr "Vorlagen"
|
1887 |
|
1888 |
-
#: ../
|
1889 |
-
|
1890 |
-
|
|
|
1891 |
|
1892 |
-
#: ../
|
1893 |
-
|
1894 |
-
|
|
|
1895 |
|
1896 |
-
#: ../
|
1897 |
-
|
1898 |
-
|
1899 |
-
msgstr "Bitte Emailadresse des Abonnenten eingeben."
|
1900 |
|
1901 |
-
#: ../
|
1902 |
-
|
1903 |
-
|
1904 |
-
msgstr "Wähle den Emailstatus des Abonnenten."
|
1905 |
|
1906 |
-
#: ../
|
1907 |
-
|
1908 |
-
|
1909 |
-
|
|
|
1910 |
|
1911 |
-
#: ../
|
1912 |
-
|
1913 |
-
|
1914 |
-
msgstr "Möchtest Du diesen Eintrag löschen?"
|
1915 |
|
1916 |
-
#: ../
|
1917 |
-
|
1918 |
-
|
1919 |
-
msgstr "Bitte wähle die Mehrfachaktion."
|
1920 |
|
1921 |
-
#: ../
|
1922 |
-
|
1923 |
-
|
1924 |
-
msgstr "Bist Du sicher, dass die selektierten Einträge gelöscht werden sollen?"
|
1925 |
|
1926 |
-
#: ../
|
1927 |
-
|
1928 |
-
|
1929 |
-
"Do you want to resend confirmation email? Also please note, this will update "
|
1930 |
-
"subscriber current status to 'Unconfirmed'."
|
1931 |
-
msgstr ""
|
1932 |
-
"Möchtest Du die Bestätigungsemail erneut versenden? Beachte, dies wird den "
|
1933 |
-
"Status des Abonnenten auf 'unbestätigt' setzen."
|
1934 |
|
1935 |
-
#: ../
|
1936 |
-
|
1937 |
-
|
1938 |
-
msgstr "Bitte wähle die neue Abonnentengruppe."
|
1939 |
|
1940 |
-
#: ../
|
1941 |
-
|
1942 |
-
|
1943 |
-
msgstr "Bitte wähle den neuen Status für Abonnenten"
|
1944 |
|
1945 |
-
#: ../
|
1946 |
-
|
1947 |
-
|
1948 |
-
msgstr "Abonnentengruppe aktualisieren?"
|
1949 |
|
1950 |
-
#: ../
|
1951 |
-
|
1952 |
-
|
1953 |
-
msgstr "Abonnentenstatus aktualisieren?"
|
1954 |
|
1955 |
-
#: ../
|
1956 |
-
msgctxt "view-subscriber-enhanced-select"
|
1957 |
msgid ""
|
1958 |
-
"
|
1959 |
-
"."
|
1960 |
-
msgstr "Bitte nur CSV wählen. Details dazu auf der offiziellen Webseite."
|
1961 |
-
|
1962 |
-
#: ../classes/es-register.php:214
|
1963 |
-
msgctxt "notification-enhanced-select"
|
1964 |
-
msgid "Please select subscribers group."
|
1965 |
-
msgstr "Abonnentengruppe wählen."
|
1966 |
-
|
1967 |
-
#: ../classes/es-register.php:215
|
1968 |
-
msgctxt "notification-enhanced-select"
|
1969 |
-
msgid "Please select notification mail subject. Use templates menu to create new."
|
1970 |
msgstr ""
|
1971 |
-
"
|
1972 |
-
"
|
1973 |
|
1974 |
-
#: ../
|
1975 |
-
|
1976 |
-
|
1977 |
-
msgstr "Wähle den Benachrichtigungsstatus."
|
1978 |
|
1979 |
-
#: ../
|
1980 |
-
|
1981 |
-
|
1982 |
-
msgstr "Eintrag löschen?"
|
1983 |
|
1984 |
-
#: ../
|
1985 |
-
|
1986 |
-
|
1987 |
-
msgstr "Bitte wähle das Emailsubjekt."
|
1988 |
|
1989 |
-
#: ../
|
1990 |
-
|
1991 |
-
msgid "
|
1992 |
-
msgstr "
|
1993 |
|
1994 |
-
#: ../
|
1995 |
-
|
1996 |
-
msgid ""
|
1997 |
-
"
|
1998 |
-
"this."
|
1999 |
-
msgstr ""
|
2000 |
-
"Hast Du die gewählte Gruppe nochmals geprüft? Ja? Dann lass uns das jetzt "
|
2001 |
-
"verschicken."
|
2002 |
|
2003 |
-
#: ../
|
2004 |
-
|
2005 |
-
|
2006 |
-
msgstr "Eintrag löschen?"
|
2007 |
|
2008 |
-
#: ../
|
2009 |
-
|
2010 |
-
|
2011 |
-
msgstr "Alle Einträge mit Ausnahme der letzten 10 löschen?"
|
2012 |
|
2013 |
-
#: ../
|
2014 |
-
|
2015 |
-
|
2016 |
-
msgstr "Bitte wähle die Anzahl Mails die pro Stunde/Trigger versendet werden sollen."
|
2017 |
|
2018 |
-
#: ../
|
2019 |
-
|
2020 |
-
|
2021 |
-
msgstr "Bitte gib die Anzahl Mails ein, nur Ziffern."
|
2022 |
|
2023 |
-
#: ../
|
2024 |
-
|
2025 |
-
|
2026 |
-
msgstr "Bitte gib die Emailadresse ein"
|
2027 |
|
2028 |
-
#: ../
|
2029 |
-
|
2030 |
-
|
2031 |
-
msgstr "Bitte gib eine gültige Emailadresse ein"
|
2032 |
|
2033 |
-
#: ../
|
2034 |
-
|
2035 |
-
|
2036 |
-
msgstr "lädt..."
|
2037 |
|
2038 |
-
#: ../
|
2039 |
-
|
2040 |
-
|
2041 |
-
msgstr "Die XMLHTTP-Instanz kann nicht erstellt werden"
|
2042 |
|
2043 |
-
#: ../
|
2044 |
-
|
2045 |
-
msgid "
|
2046 |
-
msgstr "
|
2047 |
|
2048 |
-
#: ../
|
2049 |
-
|
2050 |
-
|
2051 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
2052 |
|
2053 |
-
#: ../
|
2054 |
-
|
2055 |
-
|
2056 |
-
|
|
|
2057 |
|
2058 |
-
#: ../
|
2059 |
-
|
2060 |
-
|
2061 |
-
|
|
|
2062 |
|
2063 |
-
#: ../
|
2064 |
-
|
2065 |
-
|
2066 |
-
msgstr "Versuche es in Kürze nochmal"
|
2067 |
|
2068 |
-
#: ../
|
2069 |
-
|
2070 |
-
|
2071 |
-
msgstr "Es gab ein Problem mit der Anforderung"
|
2072 |
|
2073 |
-
#: ../
|
2074 |
-
|
2075 |
-
|
2076 |
-
msgstr "Bitte gib die Emailadresse ein"
|
2077 |
|
2078 |
-
#: ../
|
2079 |
-
|
2080 |
-
|
2081 |
-
msgstr "Bitte gib eine gültige Emailadresse ein"
|
2082 |
|
2083 |
-
#: ../
|
2084 |
-
|
2085 |
-
|
2086 |
-
msgstr "lädt..."
|
2087 |
|
2088 |
-
#: ../
|
2089 |
-
|
2090 |
-
msgid "
|
2091 |
-
msgstr "
|
2092 |
|
2093 |
-
#: ../
|
2094 |
-
|
2095 |
-
|
2096 |
-
msgstr "Erfolgreich angemeldet."
|
2097 |
|
2098 |
-
#: ../
|
2099 |
-
|
2100 |
-
|
2101 |
-
msgstr "Diese Adresse existiert bereits!"
|
2102 |
|
2103 |
-
#: ../
|
2104 |
-
|
2105 |
-
|
2106 |
-
msgstr "Oops.. Ein unerwarteter Fehler ist aufgetreten."
|
2107 |
|
2108 |
-
#: ../
|
2109 |
-
|
2110 |
-
|
2111 |
-
msgstr "Ungültige Emailadresse"
|
2112 |
|
2113 |
-
#: ../
|
2114 |
-
|
2115 |
-
msgid "
|
2116 |
-
msgstr "
|
2117 |
|
2118 |
-
#: ../
|
2119 |
-
|
2120 |
-
|
2121 |
-
msgstr "Es gab ein Problem mit der Anforderung"
|
2122 |
|
2123 |
-
#: ../
|
2124 |
-
msgid ""
|
2125 |
-
"
|
2126 |
-
"subscribers list?</b> Come check our Pro plan."
|
2127 |
-
msgstr ""
|
2128 |
-
"<b>Du möchtest vorgefertigte Emailvorlagen?</b> Und Du möchtest <b>die "
|
2129 |
-
"Abonnentenliste bereinigen?</b> Teste unseren Pro plan."
|
2130 |
|
2131 |
-
#: ../
|
2132 |
-
msgid "
|
2133 |
-
msgstr "
|
2134 |
|
2135 |
-
#: ../
|
2136 |
-
msgid "
|
2137 |
-
msgstr "
|
2138 |
|
2139 |
-
#: ../
|
2140 |
-
msgid ""
|
2141 |
-
"
|
2142 |
-
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
2143 |
-
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
2144 |
-
"</a> rating. A huge thank you from Icegram in advance!"
|
2145 |
-
msgstr ""
|
2146 |
-
"Wenn Ihnen <strong>Email Subscribers</strong> gefällt, hinterlassen Sie uns "
|
2147 |
-
"bitte eine <a href=\"https://wordpress.org/support/view/plugin-reviews/redux-"
|
2148 |
-
"framework?filter=5#postform\" target=\"_blank\" class=\"redux-rating-link\" data-"
|
2149 |
-
"rated=\"Thanks :)\">★★★★★</a> Bewertung. Ein "
|
2150 |
-
"riesiges Dankeschön von Icegram im Voraus!"
|
2151 |
|
2152 |
-
#: ../
|
2153 |
-
|
2154 |
-
|
2155 |
-
msgstr "Email Subscribers Version: <strong>%s</strong>"
|
2156 |
|
2157 |
-
#: ../
|
2158 |
-
msgid "
|
2159 |
-
msgstr "
|
2160 |
|
2161 |
-
#: ../
|
2162 |
-
msgid "
|
2163 |
-
msgstr "
|
2164 |
|
2165 |
-
#: ../
|
2166 |
-
msgid "
|
2167 |
-
msgstr "
|
2168 |
|
2169 |
-
#: ../
|
2170 |
-
msgid "
|
2171 |
-
msgstr "
|
2172 |
|
2173 |
-
#: ../
|
2174 |
-
msgid "
|
2175 |
-
msgstr "
|
2176 |
|
2177 |
-
#: ../
|
2178 |
-
msgid "
|
2179 |
-
msgstr "
|
2180 |
|
2181 |
-
#: ../
|
2182 |
-
msgid "
|
2183 |
-
msgstr "
|
2184 |
|
2185 |
-
#: ../
|
2186 |
-
msgid "
|
2187 |
-
msgstr "
|
2188 |
|
2189 |
-
#: ../
|
2190 |
-
msgid "
|
2191 |
-
msgstr "
|
2192 |
|
2193 |
-
#: ../
|
2194 |
-
msgid "
|
2195 |
-
msgstr "
|
2196 |
|
2197 |
-
#: ../
|
2198 |
-
msgid "
|
2199 |
-
msgstr "
|
2200 |
|
2201 |
-
#: ../
|
2202 |
-
msgid "
|
2203 |
-
msgstr "
|
2204 |
|
2205 |
-
#: ../
|
2206 |
-
msgid "
|
2207 |
-
msgstr "
|
2208 |
|
2209 |
-
#: ../
|
2210 |
-
msgid "
|
2211 |
-
msgstr "
|
2212 |
|
2213 |
-
#: ../
|
2214 |
-
msgid "
|
2215 |
-
msgstr "
|
2216 |
|
2217 |
-
#: ../
|
2218 |
-
#, php-format
|
2219 |
msgid ""
|
2220 |
-
"
|
2221 |
-
"
|
2222 |
-
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
2223 |
msgstr ""
|
2224 |
-
"
|
2225 |
-
"
|
2226 |
-
"{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
2227 |
-
|
2228 |
-
#: ../classes/es-register.php:981 ../classes/es-register.php:982
|
2229 |
-
msgid "Available Keywords"
|
2230 |
-
msgstr "Verfügbare Schlüsselworte"
|
2231 |
-
|
2232 |
-
#: ../classes/es-register.php:982
|
2233 |
-
#, php-format
|
2234 |
-
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
2235 |
-
msgstr "<br/><br/>%s für Newsletter: {{NAME}}, {{EMAIL}}"
|
2236 |
|
2237 |
-
#: ../
|
2238 |
-
msgid "
|
2239 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
2240 |
|
2241 |
-
|
2242 |
-
msgid "
|
2243 |
-
msgstr "
|
2244 |
|
2245 |
-
|
2246 |
-
msgid "
|
2247 |
-
msgstr "
|
2248 |
|
2249 |
-
|
2250 |
-
msgid "
|
2251 |
-
|
|
|
|
|
|
|
|
|
|
|
2252 |
|
2253 |
-
#: ../
|
2254 |
-
|
2255 |
-
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.12\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Tue Apr 17 2018 15:27:42 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: German\n"
|
22 |
"X-Loco-Target-Locale: de_DE\n"
|
23 |
"X-Poedit-SearchPath-0: .."
|
24 |
|
25 |
+
#: ../classes/es-register.php:260
|
26 |
+
msgctxt "widget-enhanced-select"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
msgid ""
|
28 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
29 |
+
"subscription. If you don't see the email within a few minutes, check the "
|
30 |
+
"spam/junk folder."
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: ../classes/es-register.php:274
|
34 |
+
msgctxt "widget-page-enhanced-select"
|
35 |
msgid ""
|
36 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
37 |
+
"subscription. If you don't see the email within a few minutes, check the "
|
38 |
+
"spam/junk folder."
|
|
|
|
|
|
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: ../help/help.php:327
|
42 |
+
msgid "How does Sync work?"
|
|
|
|
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: ../classes/es-common.php:13
|
46 |
+
msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
|
47 |
+
msgstr "<span style=\"color:#006600;font-weight:bold;\">Bestätigt</span>"
|
48 |
|
49 |
+
#: ../classes/es-common.php:16
|
50 |
+
msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
|
51 |
+
msgstr "<span style=\"color:#FF0000\">Unbestätigt</span>"
|
|
|
|
|
|
|
|
|
52 |
|
53 |
+
#: ../classes/es-common.php:19
|
54 |
+
msgid "<span style=\"color:#999900\">Unsubscribed</span>"
|
55 |
+
msgstr "<span style=\"color:#999900\">Abgemeldet</span>"
|
|
|
|
|
|
|
|
|
56 |
|
57 |
+
#: ../classes/es-common.php:22
|
58 |
+
msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
|
59 |
+
msgstr "<span style=\"color:#0000FF\">Einfaches Opt In</span>"
|
60 |
|
61 |
+
#: ../classes/es-common.php:25
|
62 |
+
msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
|
63 |
+
msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Gelesen</span>"
|
64 |
|
65 |
+
#: ../classes/es-common.php:28
|
66 |
+
msgid "<span style=\"color:#999900;\">Nodata</span>"
|
67 |
+
msgstr "<span style=\"color:#999900;\">Keine Daten</span>"
|
|
|
|
|
68 |
|
69 |
+
#: ../classes/es-common.php:31
|
70 |
+
msgid "<span style=\"color:#FF0000\">Disabled</span>"
|
71 |
+
msgstr "<span style=\"color:#FF0000\">Deaktiviert</span>"
|
72 |
|
73 |
+
#: ../classes/es-common.php:34
|
74 |
+
msgid "<span style=\"color:#FF0000\">In Queue</span>"
|
75 |
+
msgstr "<span style=\"color:#FF0000\">In Warteschlange</span>"
|
76 |
|
77 |
+
#: ../classes/es-common.php:37
|
78 |
+
msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
|
79 |
+
msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Gesendet</span>"
|
80 |
|
81 |
+
#: ../classes/es-common.php:40
|
82 |
+
msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
|
83 |
+
msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">über Cron</span>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84 |
|
85 |
+
#: ../classes/es-common.php:43
|
86 |
+
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
87 |
+
msgstr "<span style=\"color:#993399;\">Sofort</span>"
|
88 |
|
89 |
+
#: ../classes/es-loadwidget.php:28 ../classes/es-register.php:1053 ..
|
90 |
+
#: subscribers/view-subscriber-show.php:289
|
91 |
+
msgid "Name"
|
92 |
+
msgstr "Name"
|
|
|
|
|
|
|
|
|
93 |
|
94 |
+
#: ../classes/es-loadwidget.php:33 ../classes/es-register.php:1058
|
95 |
+
msgid "Email *"
|
96 |
+
msgstr "Email *"
|
|
|
97 |
|
98 |
+
#: ../classes/es-loadwidget.php:38 ../classes/es-register.php:1063 ../help/help.
|
99 |
+
#: php:196
|
100 |
+
msgid "Subscribe"
|
101 |
+
msgstr "Anmelden"
|
102 |
|
103 |
+
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
104 |
+
#: register.php:801
|
105 |
+
msgid "Email Subscribers"
|
106 |
+
msgstr "Email Subscribers"
|
107 |
|
108 |
+
#: ../classes/es-register.php:165 ../classes/es-register.php:166 ..
|
109 |
+
#: subscribers/view-subscriber-show.php:242
|
110 |
+
msgid "Subscribers"
|
111 |
+
msgstr "Abonnenten"
|
112 |
|
113 |
+
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
114 |
+
#: register.php:789 ../classes/es-register.php:790 ../classes/es-register.php:795
|
115 |
+
msgid "Templates"
|
116 |
+
msgstr "Vorlagen"
|
117 |
|
118 |
+
#: ../classes/es-register.php:171 ../classes/es-register.php:172 ../help/help.php:
|
119 |
+
#: 361 ../notification/notification-show.php:52
|
120 |
+
msgid "Post Notifications"
|
121 |
+
msgstr "Benachrichtigungen"
|
122 |
|
123 |
+
#: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
|
124 |
+
#: 351 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:324
|
125 |
+
msgid "Newsletters"
|
126 |
+
msgstr "Newsletter"
|
127 |
|
128 |
+
#: ../classes/es-register.php:177 ../classes/es-register.php:178 ..
|
129 |
+
#: settings/settings-edit.php:42
|
130 |
+
msgid "Settings"
|
131 |
+
msgstr "Einstellungen"
|
132 |
|
133 |
+
#: ../classes/es-register.php:180 ../classes/es-register.php:181 ..
|
134 |
+
#: sentmail/sentmail-show.php:93
|
135 |
+
msgid "Reports"
|
136 |
+
msgstr "Berichte"
|
137 |
|
138 |
+
#: ../classes/es-register.php:183
|
139 |
+
msgid "Help & Info"
|
140 |
+
msgstr "Hilfe & Info"
|
|
|
141 |
|
142 |
+
#: ../classes/es-register.php:184
|
143 |
+
msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
|
144 |
+
msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Hilfe & Info</span>"
|
|
|
145 |
|
146 |
+
#: ../classes/es-register.php:195
|
147 |
+
msgctxt "view-subscriber-enhanced-select"
|
148 |
+
msgid "Please enter subscriber email address."
|
149 |
+
msgstr "Bitte Emailadresse des Abonnenten eingeben."
|
150 |
|
151 |
+
#: ../classes/es-register.php:196
|
152 |
+
msgctxt "view-subscriber-enhanced-select"
|
153 |
+
msgid "Please select subscriber email status."
|
154 |
+
msgstr "Wähle den Emailstatus des Abonnenten."
|
155 |
|
156 |
+
#: ../classes/es-register.php:197
|
157 |
+
msgctxt "view-subscriber-enhanced-select"
|
158 |
+
msgid "Please select or create group for this subscriber."
|
159 |
+
msgstr "Bitte wähle oder erstelle ein Gruppe für diesen Abonnenten."
|
|
|
160 |
|
161 |
+
#: ../classes/es-register.php:198
|
162 |
+
msgctxt "view-subscriber-enhanced-select"
|
163 |
+
msgid "Do you want to delete this record?"
|
164 |
+
msgstr "Möchtest Du diesen Eintrag löschen?"
|
165 |
|
166 |
+
#: ../classes/es-register.php:199
|
167 |
+
msgctxt "view-subscriber-enhanced-select"
|
168 |
+
msgid "Please select the bulk action."
|
169 |
+
msgstr "Bitte wähle die Mehrfachaktion."
|
170 |
|
171 |
+
#: ../classes/es-register.php:200
|
172 |
+
msgctxt "view-subscriber-enhanced-select"
|
173 |
+
msgid "Are you sure you want to delete selected records?"
|
174 |
+
msgstr "Bist Du sicher, dass die selektierten Einträge gelöscht werden sollen?"
|
175 |
|
176 |
+
#: ../classes/es-register.php:201
|
177 |
+
msgctxt "view-subscriber-enhanced-select"
|
178 |
msgid ""
|
179 |
+
"Do you want to resend confirmation email? Also please note, this will update "
|
180 |
+
"subscriber current status to 'Unconfirmed'."
|
181 |
msgstr ""
|
182 |
+
"Möchtest Du die Bestätigungsemail erneut versenden? Beachte, dies wird den "
|
183 |
+
"Status des Abonnenten auf 'unbestätigt' setzen."
|
184 |
|
185 |
+
#: ../classes/es-register.php:202
|
186 |
+
msgctxt "view-subscriber-enhanced-select"
|
187 |
+
msgid "Please select new subscriber group."
|
188 |
+
msgstr "Bitte wähle die neue Abonnentengruppe."
|
189 |
|
190 |
+
#: ../classes/es-register.php:203
|
191 |
+
msgctxt "view-subscriber-enhanced-select"
|
192 |
+
msgid "Please select new status for subscribers"
|
193 |
+
msgstr "Bitte wähle den neuen Status für Abonnenten"
|
194 |
|
195 |
+
#: ../classes/es-register.php:204
|
196 |
+
msgctxt "view-subscriber-enhanced-select"
|
197 |
+
msgid "Do you want to update subscribers group?"
|
198 |
+
msgstr "Abonnentengruppe aktualisieren?"
|
199 |
|
200 |
+
#: ../classes/es-register.php:205
|
201 |
+
msgctxt "view-subscriber-enhanced-select"
|
202 |
+
msgid "Do you want to update subscribers status?"
|
203 |
+
msgstr "Abonnentenstatus aktualisieren?"
|
204 |
|
205 |
+
#: ../classes/es-register.php:206
|
206 |
+
msgctxt "view-subscriber-enhanced-select"
|
207 |
+
msgid ""
|
208 |
+
"Please select only csv file. Please check official website for csv structure."
|
209 |
+
"."
|
210 |
+
msgstr "Bitte nur CSV wählen. Details dazu auf der offiziellen Webseite."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
211 |
|
212 |
+
#: ../classes/es-register.php:214
|
213 |
+
msgctxt "notification-enhanced-select"
|
214 |
+
msgid "Please select subscribers group."
|
215 |
+
msgstr "Abonnentengruppe wählen."
|
216 |
|
217 |
+
#: ../classes/es-register.php:215
|
218 |
+
msgctxt "notification-enhanced-select"
|
219 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
220 |
+
msgstr ""
|
221 |
+
"Bitte wähle das Subjekt für die Benachrichtigung. Verwende das Menü Vorlagen "
|
222 |
+
"um ein neues zu erstellen."
|
223 |
|
224 |
+
#: ../classes/es-register.php:216
|
225 |
+
msgctxt "notification-enhanced-select"
|
226 |
+
msgid "Please select notification status."
|
227 |
+
msgstr "Wähle den Benachrichtigungsstatus."
|
228 |
|
229 |
+
#: ../classes/es-register.php:217
|
230 |
+
msgctxt "notification-enhanced-select"
|
231 |
+
msgid "Do you want to delete this record?"
|
232 |
+
msgstr "Eintrag löschen?"
|
233 |
|
234 |
+
#: ../classes/es-register.php:225
|
235 |
+
msgctxt "sendmail-enhanced-select"
|
236 |
+
msgid "Please select your mail subject."
|
237 |
+
msgstr "Bitte wähle das Emailsubjekt."
|
238 |
|
239 |
+
#: ../classes/es-register.php:226
|
240 |
+
msgctxt "sendmail-enhanced-select"
|
241 |
+
msgid "Please select your mail type."
|
242 |
+
msgstr "Bitte wähle den Emailtyp."
|
243 |
|
244 |
+
#: ../classes/es-register.php:227
|
245 |
+
msgctxt "sendmail-enhanced-select"
|
246 |
msgid ""
|
247 |
+
"Have you double checked your selected group? If so, let's go ahead and send "
|
248 |
+
"this."
|
249 |
msgstr ""
|
250 |
+
"Hast Du die gewählte Gruppe nochmals geprüft? Ja? Dann lass uns das jetzt "
|
251 |
+
"verschicken."
|
|
|
|
|
|
|
|
|
|
|
252 |
|
253 |
+
#: ../classes/es-register.php:235
|
254 |
+
msgctxt "sentmail-enhanced-select"
|
255 |
+
msgid "Do you want to delete this record?"
|
256 |
+
msgstr "Eintrag löschen?"
|
257 |
|
258 |
+
#: ../classes/es-register.php:236
|
259 |
+
msgctxt "sentmail-enhanced-select"
|
260 |
+
msgid "Do you want to delete all records except latest 10?"
|
261 |
+
msgstr "Alle Einträge mit Ausnahme der letzten 10 löschen?"
|
262 |
|
263 |
+
#: ../classes/es-register.php:244
|
264 |
+
msgctxt "cron-enhanced-select"
|
265 |
+
msgid "Please select enter number of mails you want to send per hour/trigger."
|
266 |
+
msgstr "Bitte wähle die Anzahl Mails die pro Stunde/Trigger versendet werden sollen."
|
267 |
|
268 |
+
#: ../classes/es-register.php:245
|
269 |
+
msgctxt "cron-enhanced-select"
|
270 |
+
msgid "Please enter the mail count, only number."
|
271 |
+
msgstr "Bitte gib die Anzahl Mails ein, nur Ziffern."
|
272 |
|
273 |
+
#: ../classes/es-register.php:258
|
274 |
+
msgctxt "widget-enhanced-select"
|
275 |
+
msgid "Please enter email address"
|
276 |
+
msgstr "Bitte gib die Emailadresse ein"
|
277 |
|
278 |
+
#: ../classes/es-register.php:259
|
279 |
+
msgctxt "widget-enhanced-select"
|
280 |
+
msgid "Successfully Subscribed."
|
281 |
+
msgstr "Erfolgreich angemeldet."
|
282 |
|
283 |
+
#: ../classes/es-register.php:261
|
284 |
+
msgctxt "widget-enhanced-select"
|
285 |
+
msgid "Email Address already exists!"
|
286 |
+
msgstr "Diese Adresse existiert bereits!"
|
287 |
|
288 |
+
#: ../classes/es-register.php:262
|
289 |
+
msgctxt "widget-enhanced-select"
|
290 |
+
msgid "Oops.. Unexpected error occurred."
|
291 |
+
msgstr "Oops.. Ein unerwarteter Fehler ist aufgetreten."
|
292 |
|
293 |
+
#: ../classes/es-register.php:263
|
294 |
+
msgctxt "widget-enhanced-select"
|
295 |
+
msgid "Invalid email address"
|
296 |
+
msgstr "Ungültige Emailadresse"
|
|
|
|
|
|
|
297 |
|
298 |
+
#: ../classes/es-register.php:264
|
299 |
+
msgctxt "widget-enhanced-select"
|
300 |
+
msgid "Please try after some time"
|
301 |
+
msgstr "Versuche es in Kürze nochmal"
|
302 |
|
303 |
+
#: ../classes/es-register.php:272
|
304 |
+
msgctxt "widget-page-enhanced-select"
|
305 |
+
msgid "Please enter email address"
|
306 |
+
msgstr "Bitte gib die Emailadresse ein"
|
|
|
|
|
|
|
307 |
|
308 |
+
#: ../classes/es-register.php:273
|
309 |
+
msgctxt "widget-page-enhanced-select"
|
310 |
+
msgid "Successfully Subscribed."
|
311 |
+
msgstr "Erfolgreich angemeldet."
|
312 |
|
313 |
+
#: ../classes/es-register.php:275
|
314 |
+
msgctxt "widget-page-enhanced-select"
|
315 |
+
msgid "Email Address already exists!"
|
316 |
+
msgstr "Diese Adresse existiert bereits!"
|
317 |
|
318 |
+
#: ../classes/es-register.php:276
|
319 |
+
msgctxt "widget-page-enhanced-select"
|
320 |
+
msgid "Oops.. Unexpected error occurred."
|
321 |
+
msgstr "Oops.. Ein unerwarteter Fehler ist aufgetreten."
|
322 |
|
323 |
+
#: ../classes/es-register.php:277
|
324 |
+
msgctxt "widget-page-enhanced-select"
|
325 |
+
msgid "Invalid email address"
|
326 |
+
msgstr "Ungültige Emailadresse"
|
327 |
|
328 |
+
#: ../classes/es-register.php:278
|
329 |
+
msgctxt "widget-page-enhanced-select"
|
330 |
+
msgid "Please try after some time"
|
331 |
+
msgstr "Versuche es in Kürze nochmal"
|
332 |
|
333 |
+
#: ../classes/es-register.php:739
|
334 |
msgid ""
|
335 |
+
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
336 |
+
"subscribers list?</b> Come check our Pro plan."
|
|
|
|
|
|
|
337 |
msgstr ""
|
338 |
+
"<b>Du möchtest vorgefertigte Emailvorlagen?</b> Und Du möchtest <b>die "
|
339 |
+
"Abonnentenliste bereinigen?</b> Teste unseren Pro plan."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
340 |
|
341 |
+
#: ../classes/es-register.php:740
|
342 |
+
msgid "Check Pro plan "
|
343 |
+
msgstr "Teste den Pro Plan "
|
|
|
|
|
|
|
344 |
|
345 |
+
#: ../classes/es-register.php:740
|
346 |
+
msgid "Not interested."
|
347 |
+
msgstr "Nicht interessiert."
|
348 |
|
349 |
+
#: ../classes/es-register.php:766
|
350 |
msgid ""
|
351 |
+
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
352 |
+
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
353 |
+
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
354 |
+
"</a> rating. A huge thank you from Icegram in advance!"
|
355 |
msgstr ""
|
356 |
+
"Wenn Ihnen <strong>Email Subscribers</strong> gefällt, hinterlassen Sie uns "
|
357 |
+
"bitte eine <a href=\"https://wordpress.org/support/view/plugin-reviews/redux-"
|
358 |
+
"framework?filter=5#postform\" target=\"_blank\" class=\"redux-rating-link\" data-"
|
359 |
+
"rated=\"Thanks :)\">★★★★★</a> Bewertung. Ein "
|
360 |
+
"riesiges Dankeschön von Icegram im Voraus!"
|
361 |
|
362 |
+
#: ../classes/es-register.php:780
|
363 |
+
#, php-format
|
364 |
+
msgid "Email Subscribers version: <strong>%s</strong>"
|
365 |
+
msgstr "Email Subscribers Version: <strong>%s</strong>"
|
366 |
|
367 |
+
#: ../classes/es-register.php:791 ../classes/es-register.php:792
|
368 |
+
msgid "Add new Template"
|
369 |
+
msgstr "Neue Vorlage hinzufügen"
|
370 |
|
371 |
+
#: ../classes/es-register.php:793
|
372 |
+
msgid "Edit Templates"
|
373 |
+
msgstr "Vorlagen bearbeiten"
|
374 |
|
375 |
+
#: ../classes/es-register.php:794
|
376 |
+
msgid "New Templates"
|
377 |
+
msgstr "Neue Vorlagen"
|
378 |
|
379 |
+
#: ../classes/es-register.php:796
|
380 |
+
msgid "View Templates"
|
381 |
+
msgstr "Vorlagen ansehen"
|
|
|
|
|
|
|
|
|
382 |
|
383 |
+
#: ../classes/es-register.php:797
|
384 |
+
msgid "Search Templates"
|
385 |
+
msgstr "Vorlagen suchen"
|
386 |
|
387 |
+
#: ../classes/es-register.php:798
|
388 |
+
msgid "No Templates found"
|
389 |
+
msgstr "Keine Vorlagen gefunden"
|
390 |
+
|
391 |
+
#: ../classes/es-register.php:799
|
392 |
+
msgid "No Templates found in Trash"
|
393 |
+
msgstr "Keine Vorlagen im Papierkorb gefunden"
|
394 |
+
|
395 |
+
#: ../classes/es-register.php:802
|
396 |
+
msgid "Thumbnail (For Visual Representation only)"
|
397 |
+
msgstr "Vorschaubild (nur zur visuellen Darstellung)"
|
398 |
+
|
399 |
+
#: ../classes/es-register.php:803
|
400 |
+
msgid "Set thumbnail"
|
401 |
+
msgstr "Vorschaubild auswählen"
|
402 |
+
|
403 |
+
#: ../classes/es-register.php:840
|
404 |
+
msgid "Template Type"
|
405 |
+
msgstr "Vorlagentyp"
|
406 |
+
|
407 |
+
#: ../classes/es-register.php:841 ../settings/settings-edit.php:123
|
408 |
+
msgid "Thumbnail"
|
409 |
+
msgstr "Vorschau"
|
410 |
+
|
411 |
+
#: ../classes/es-register.php:889 ../sentmail/sentmail-show.php:108 ..
|
412 |
+
#: sentmail/sentmail-show.php:121
|
413 |
+
msgid "Preview"
|
414 |
+
msgstr "Vorschau"
|
415 |
+
|
416 |
+
#: ../classes/es-register.php:906
|
417 |
+
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
418 |
+
msgstr "Verfügbares Schlüsselwort für Beitragsbenachrichtigung: {{POSTTITLE}}"
|
419 |
+
|
420 |
+
#: ../classes/es-register.php:909
|
421 |
+
msgid "Select your Email Template Type"
|
422 |
+
msgstr "Wähle den Typ der Emailvorlage"
|
423 |
+
|
424 |
+
#: ../classes/es-register.php:911
|
425 |
+
msgid "Newsletter"
|
426 |
+
msgstr "Newsletter"
|
427 |
+
|
428 |
+
#: ../classes/es-register.php:912
|
429 |
+
msgid "Post Notification"
|
430 |
+
msgstr "Benachrichtigung über Beitrag"
|
431 |
+
|
432 |
+
#: ../classes/es-register.php:959
|
433 |
+
msgid "Preview Template"
|
434 |
+
msgstr "Voransicht Vorlage"
|
435 |
+
|
436 |
+
#: ../classes/es-register.php:973
|
437 |
+
#, php-format
|
438 |
msgid ""
|
439 |
+
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
440 |
+
"{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
|
441 |
+
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
442 |
msgstr ""
|
443 |
+
"%s für Beitragsbenachrichtigung: {{NAME}}, {{EMAIL}}, {{DATE}}, "
|
444 |
+
"{{POSTTITLE}}, {{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, "
|
445 |
+
"{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
446 |
+
|
447 |
+
#: ../classes/es-register.php:973 ../classes/es-register.php:974
|
448 |
+
msgid "Available Keywords"
|
449 |
+
msgstr "Verfügbare Schlüsselworte"
|
450 |
+
|
451 |
+
#: ../classes/es-register.php:974
|
452 |
+
#, php-format
|
453 |
+
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
454 |
+
msgstr "<br/><br/>%s für Newsletter: {{NAME}}, {{EMAIL}}"
|
455 |
+
|
456 |
+
#: ../classes/es-register.php:1103
|
457 |
+
msgid "Widget Title"
|
458 |
+
msgstr "Widget Titel"
|
459 |
+
|
460 |
+
#: ../classes/es-register.php:1107
|
461 |
+
msgid "Short description about subscription form"
|
462 |
+
msgstr "Kurze Beschreibung des Anmeldeformulars"
|
463 |
+
|
464 |
+
#: ../classes/es-register.php:1111
|
465 |
+
msgid "Display Name Field"
|
466 |
+
msgstr "Namensfeld anzeigen"
|
467 |
|
468 |
+
#: ../classes/es-register.php:1113 ../settings/settings-edit.php:142 ..
|
469 |
+
#: settings/settings-edit.php:217 ../subscribers/view-subscriber-sync.php:107
|
470 |
msgid "YES"
|
471 |
msgstr "Ja"
|
472 |
|
473 |
+
#: ../classes/es-register.php:1114 ../settings/settings-edit.php:143 ..
|
474 |
+
#: settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:106
|
475 |
msgid "NO"
|
476 |
msgstr "Nein"
|
477 |
|
478 |
+
#: ../classes/es-register.php:1118
|
479 |
+
msgid "Subscriber Group"
|
480 |
+
msgstr "Abonnentengruppe"
|
481 |
|
482 |
+
#: ../export/export-email-address.php:50 ../export/export-email-address.php:54
|
483 |
+
msgid "Unexpected url submit has been detected!"
|
484 |
+
msgstr "Die Übertragung einer unerwarteten URL wurde erkannt!"
|
485 |
+
|
486 |
+
#: ../help/help.php:184
|
487 |
+
msgid "Welcome to Email Subscribers!"
|
488 |
+
msgstr "Willkommen bei Email Subscribers!"
|
489 |
+
|
490 |
+
#: ../help/help.php:185
|
491 |
+
msgid "Thanks for installing and we hope you will enjoy using this plugin."
|
492 |
+
msgstr "Danke für die Installation. Wir hoffen, dass Dir dieses Plugin gefällt."
|
493 |
+
|
494 |
+
#: ../help/help.php:186
|
495 |
msgid ""
|
496 |
+
"By default, subscribers subscribed via Email Subscribers, will receive email "
|
497 |
+
"updates when you post a new blog. You can turn these updates off like this:"
|
498 |
msgstr ""
|
499 |
+
"Als Standard bekommen Abonnenten, die sich über Email Subscribers angemeldet "
|
500 |
+
"haben, Updates per Email wenn Du einen neuen Beitrag postest. Du kannst "
|
501 |
+
"diese Updates so ausschalten:"
|
|
|
|
|
|
|
502 |
|
503 |
+
#: ../help/help.php:187
|
504 |
msgid ""
|
505 |
+
"Email Subscribers -> Post Notification -> Edit -> Select Notification Status "
|
506 |
+
"when a new post is published -> Disable -> Save."
|
507 |
msgstr ""
|
508 |
+
"Email Subscribers -> Benachrichtigungen -> Bearbeiten -> Wähle den "
|
509 |
+
"Benachrichtigungsstatus wenn ein neuer Beitrag veröffentlicht wird -> "
|
510 |
+
"Emailbenachrichtigungen deaktivieren -> Sichern."
|
511 |
|
512 |
+
#: ../help/help.php:191
|
513 |
+
msgid "Get more help and tips..."
|
514 |
+
msgstr "Mehr Hilfe und Tipps..."
|
515 |
|
516 |
+
#: ../help/help.php:205
|
517 |
+
#, php-format
|
518 |
+
msgid "Version: %s"
|
519 |
+
msgstr "Version: %s"
|
520 |
|
521 |
+
#: ../help/help.php:208
|
522 |
+
msgid "Questions? Need Help?"
|
523 |
+
msgstr "Fragen? Du brauchst Hilfe?"
|
524 |
|
525 |
+
#: ../help/help.php:209
|
526 |
+
msgid "Contact Us"
|
527 |
+
msgstr "Kontaktiere uns"
|
528 |
+
|
529 |
+
#: ../help/help.php:214
|
530 |
+
#, php-format
|
531 |
msgid ""
|
532 |
+
"<b>Like Email Subscribers?</b> If yes, then consider %s to support further "
|
533 |
+
"developments."
|
534 |
msgstr ""
|
535 |
+
"<b>Du magst Email Subscribers?</b> Dann erwäge %s um die weitere Entwicklung "
|
536 |
+
"zu unterstützen."
|
537 |
|
538 |
+
#: ../help/help.php:214
|
539 |
+
msgid "donating to us"
|
540 |
+
msgstr "eine Spende an uns"
|
541 |
|
542 |
+
#: ../help/help.php:249
|
543 |
+
msgid "Description"
|
544 |
+
msgstr "Beschreibung"
|
545 |
+
|
546 |
+
#: ../help/help.php:251
|
547 |
msgid ""
|
548 |
+
"Email Subscribers is a complete newsletter plugin which lets you collect "
|
549 |
+
"leads, send automated new blog post notification emails, create & send "
|
550 |
+
"newsletters and manage all this in one single place."
|
551 |
msgstr ""
|
552 |
+
"Email Subscribers ist ein komplettes Newsletter-Plugin welches es Dir "
|
553 |
+
"erlaubt Beiträge zu sammeln, automatisch Benachrichtigungen über neue Posts "
|
554 |
+
"zu versenden, Newsletter zu erstellen, zu versenden und all dies an einer "
|
555 |
+
"einzigen Stelle zu verwalten."
|
556 |
|
557 |
+
#: ../help/help.php:253
|
558 |
+
msgid "Feature Overview"
|
559 |
+
msgstr "Übersicht der Features"
|
560 |
|
561 |
+
#: ../help/help.php:256
|
562 |
msgid ""
|
563 |
+
"Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
|
564 |
+
"Code)."
|
565 |
msgstr ""
|
566 |
+
"Sammeln von Kundenemailadressen durch hinzufügen einer Anmeldebox "
|
567 |
+
"(Widget/Shortcode/PHP Code)."
|
|
|
|
|
|
|
|
|
568 |
|
569 |
+
#: ../help/help.php:259
|
570 |
+
msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
|
571 |
+
msgstr "Wählen zwischen doppeltem Opt-In und einfachem Opt-In für Abonnenten."
|
572 |
|
573 |
+
#: ../help/help.php:262
|
574 |
+
msgid "Send automatic welcome email to subscribers."
|
575 |
+
msgstr "Automatischer Versand von Willkommensemails an Abonnenten."
|
|
|
|
|
|
|
|
|
576 |
|
577 |
+
#: ../help/help.php:265
|
578 |
msgid ""
|
579 |
+
"Send new post notification emails to subscribers when new posts are "
|
580 |
+
"published on your website."
|
581 |
msgstr ""
|
582 |
+
"Versand von Benachrichtigungsemails an Abonnenten wenn neue Beiträge auf der "
|
583 |
+
"Webseite veröffentlicht werden."
|
584 |
|
585 |
+
#: ../help/help.php:268
|
586 |
+
msgid "Schedule email (Cron job) or send them manually."
|
587 |
+
msgstr "Geplanter Versand von Emails (Cron Jobs) oder manueller Versand."
|
588 |
|
589 |
+
#: ../help/help.php:271
|
590 |
+
msgid "Send email notification to admin when a new user signs up."
|
591 |
+
msgstr "Benachrichtigungsemail an den Admin wenn ein neuer Benutzer sich anmeldet."
|
|
|
|
|
|
|
|
|
592 |
|
593 |
+
#: ../help/help.php:274
|
594 |
+
msgid "Automatically add Unsubscribe link in the email."
|
595 |
+
msgstr "Automatisches Hinzufügen des Abmeldelinks in den Emails."
|
596 |
|
597 |
+
#: ../help/help.php:277
|
598 |
+
msgid "Easily migrate subscribers from another app using Import & Export."
|
|
|
|
|
|
|
599 |
msgstr ""
|
600 |
+
"Einfache Migration von Benutzern von anderen Applikationen durch Import & "
|
601 |
+
"Export."
|
|
|
602 |
|
603 |
+
#: ../help/help.php:280
|
604 |
+
msgid "Use HTML editor to create newsletters and post notifications."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
605 |
msgstr ""
|
606 |
+
"Verwende den HTML Editor um Newsletter und Beitragsbenachrichtigungen zu "
|
607 |
+
"erstellen."
|
|
|
608 |
|
609 |
+
#: ../help/help.php:283
|
610 |
+
msgid "Send newsletters to different groups."
|
611 |
+
msgstr "Versenden von Newslettern an unterschiedliche Gruppen."
|
612 |
|
613 |
+
#: ../help/help.php:286
|
614 |
+
msgid "Get detailed sent email reports."
|
615 |
+
msgstr "Erhalte detaillierte Berichte über gesendete Emails."
|
|
|
|
|
|
|
|
|
|
|
|
|
616 |
|
617 |
+
#: ../help/help.php:289
|
618 |
+
msgid "Control user access (User Roles and Capabilities)."
|
619 |
+
msgstr "Verwalten von Benutzerrechten (Rollen und Berechtigungen)."
|
620 |
|
621 |
+
#: ../help/help.php:292
|
622 |
+
msgid "Supports localization and internationalization."
|
623 |
+
msgstr "Unterstützt Lokalisierung und Internationalisierung."
|
|
|
|
|
|
|
|
|
|
|
624 |
|
625 |
+
#: ../help/help.php:299
|
626 |
+
msgid "Add Subscribe form"
|
627 |
+
msgstr "Anmeldeformular hinzufügen"
|
628 |
|
629 |
+
#: ../help/help.php:301 ../help/help.php:312 ../help/help.php:315 ../help/help.
|
630 |
+
#: php:327 ../help/help.php:330 ../help/help.php:333 ../help/help.php:336 ..
|
631 |
+
#: help/help.php:339 ../help/help.php:342 ../help/help.php:354 ../help/help.php:
|
632 |
+
#: 357 ../help/help.php:364 ../help/help.php:367 ../help/help.php:370 ..
|
633 |
+
#: help/help.php:378 ../help/help.php:381 ../help/help.php:384 ../help/help.php:
|
634 |
+
#: 387 ../help/help.php:393 ../help/help.php:396 ../help/help.php:398
|
635 |
+
#, php-format
|
636 |
+
msgid "%s"
|
637 |
+
msgstr "%s"
|
638 |
|
639 |
+
#: ../help/help.php:301
|
640 |
+
msgid "How to Add Subscription box to website?"
|
641 |
+
msgstr "Wie füge ich die Anmeldebox zu einer Webseite hinzu?"
|
642 |
|
643 |
+
#: ../help/help.php:304
|
644 |
+
#, php-format
|
645 |
msgid ""
|
646 |
+
"Use any of the following 3 methods :<br>\n"
|
647 |
+
" a) Shortcode in any page/post : <strong>[email-subscribers "
|
648 |
+
"namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
|
649 |
+
" b) Go to Appearance -> Widgets. Click on widget Email subscribers "
|
650 |
+
"and drag it to the sidebar on the right <i>Or</i><br>\n"
|
651 |
+
" c) Copy and past this php code to your desired template location : "
|
652 |
+
"<strong>%s</strong>"
|
653 |
msgstr ""
|
654 |
+
"Verwende eine der drei Methoden :<br>\n"
|
655 |
+
" a) Shortcode auf einer Seite oder im Beitrag : <strong>[email-"
|
656 |
+
"subscribers namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Oder</i><br>\n"
|
657 |
+
" b) Im Bereich Appearance -> Widgets. Füge das Widget für Email "
|
658 |
+
"Subscribers duch klicken und ziehen auf die rechte Sidebar hinzu "
|
659 |
+
"<i>Oder</i><br>\n"
|
660 |
+
" c) Kopiere diesen PHP-Code und füge ihn an der gewünschten Stelle im "
|
661 |
+
"Template ein: <strong>%s</strong>"
|
662 |
|
663 |
+
#: ../help/help.php:309
|
664 |
+
msgid "Additional form settings"
|
665 |
+
msgstr "Zusätzliche Einstellungen für das Formular"
|
666 |
|
667 |
+
#: ../help/help.php:312
|
668 |
+
msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
|
|
|
|
|
669 |
msgstr ""
|
670 |
+
"Wie kann ich Abonnenten nach erfolgreicher Anmeldung auf eine neue Seite / "
|
671 |
+
"URL umleiten?"
|
672 |
|
673 |
+
#: ../help/help.php:315
|
674 |
+
msgid "How to add captcha in Subscribe form of Email Subscribers?"
|
675 |
msgstr ""
|
676 |
+
"Wie kann ich ein Captcha zum Anmeldeformular von Email Subscribers "
|
677 |
+
"hinzufügen?"
|
|
|
|
|
|
|
|
|
678 |
|
679 |
+
#: ../help/help.php:321
|
680 |
+
msgid "General Plugin Configuration"
|
681 |
+
msgstr "Allgemeine Plugin Konfiguration"
|
|
|
|
|
682 |
|
683 |
+
#: ../help/help.php:324
|
684 |
+
#, php-format
|
685 |
+
msgid "Modify %s"
|
686 |
+
msgstr "Bearbeite %s"
|
|
|
687 |
|
688 |
+
#: ../help/help.php:324
|
689 |
+
msgid "default text, email contents"
|
690 |
+
msgstr "Standardtext, Emailinhalt"
|
|
|
|
|
691 |
|
692 |
+
#: ../help/help.php:324
|
693 |
+
msgid ""
|
694 |
+
" (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User "
|
695 |
+
"Roles"
|
696 |
+
msgstr ""
|
697 |
+
" (wie Bestätigungs-, Willkommens-, Adminemails), Cron Einstellungen und "
|
698 |
+
"zuweisen von Benutzerrollen"
|
699 |
|
700 |
+
#: ../help/help.php:330
|
701 |
+
msgid "How to Import or Export Email Addresses?"
|
702 |
+
msgstr "Wie importiere oder exportiere ich Emailadressen?"
|
703 |
|
704 |
+
#: ../help/help.php:333
|
705 |
+
msgid "How to Add/Update Existing Subscribers Group & Status?"
|
706 |
+
msgstr "Wie aktualisiere ich Abonnentengruppen oder füge neue hinzu?"
|
|
|
707 |
|
708 |
+
#: ../help/help.php:336
|
709 |
+
msgid "How to change/update/translate any texts from the plugin?"
|
710 |
+
msgstr "Wie kann ich Texte im Plugin ändern/aktualisieren/übersetzen?"
|
711 |
|
712 |
+
#: ../help/help.php:339
|
713 |
+
msgid "How to add Unsubscribe link in emails?"
|
714 |
+
msgstr "Wie füge ich meinen Emails einen Abmeldelink hinzu?"
|
715 |
|
716 |
+
#: ../help/help.php:342
|
717 |
+
msgid "How to check sent emails?"
|
718 |
+
msgstr "Wie überprüfe ich gesendete Emails?"
|
|
|
|
|
719 |
|
720 |
+
#: ../help/help.php:354
|
721 |
+
msgid "Create and Send Newsletter Emails"
|
722 |
+
msgstr "Erstelle und versende Newsletteremails"
|
723 |
|
724 |
+
#: ../help/help.php:357
|
725 |
+
msgid "Keywords in the Newsletters"
|
726 |
+
msgstr "Schlüsselworte in den Newslettern"
|
727 |
|
728 |
+
#: ../help/help.php:364
|
729 |
+
msgid "Create and Send Post Notification Emails when new posts are published"
|
730 |
msgstr ""
|
731 |
+
"Erstelle und versende Benachrichtigungsemails wenn neue Beiträge "
|
732 |
+
"veröffentlicht werden"
|
733 |
|
734 |
+
#: ../help/help.php:367
|
735 |
+
msgid "Keywords in the Post Notifications"
|
736 |
+
msgstr "Schlüsselworte in den Beitragsbenachrichtigungen"
|
737 |
|
738 |
+
#: ../help/help.php:370
|
739 |
+
msgid "Send a test post notification email to myself/testgroup"
|
740 |
+
msgstr "Senden einer Testbenachrichtigung an sich selbst oder an eine Testgruppe"
|
|
|
|
|
|
|
|
|
741 |
|
742 |
+
#: ../help/help.php:375
|
743 |
+
msgid "Cron Job Setup"
|
744 |
+
msgstr "Konfiguration Cron Job"
|
745 |
|
746 |
+
#: ../help/help.php:378
|
747 |
+
msgid "What is Cron and how to Schedule Cron Emails?"
|
748 |
+
msgstr "Was ist Cron und wie plane ich Cron Emailversand?"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
749 |
|
750 |
+
#: ../help/help.php:381
|
751 |
+
msgid "Schedule Cron Emails in cPanel"
|
752 |
+
msgstr "Planen von Cron Emails in cPanel"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
753 |
|
754 |
+
#: ../help/help.php:384
|
755 |
+
msgid "Schedule Cron Emails in Parallels Plesk"
|
756 |
+
msgstr "Planen von Cron Emails in Paralles Plesk"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
757 |
|
758 |
+
#: ../help/help.php:387
|
759 |
+
msgid "Hosting doesn’t support Cron Jobs?"
|
760 |
+
msgstr "Dein Hoster unterstützt keine Cron Jobs?"
|
761 |
|
762 |
+
#: ../help/help.php:390
|
763 |
+
msgid "Troubleshooting Steps"
|
764 |
+
msgstr "Schritte bei der Fehlersuche"
|
765 |
|
766 |
+
#: ../help/help.php:393
|
767 |
+
msgid "Subscribers are not receiving Emails?"
|
768 |
+
msgstr "Abonnenten erhalten keine Emails?"
|
769 |
|
770 |
+
#: ../help/help.php:396
|
771 |
+
msgid "CSS Help"
|
772 |
+
msgstr "CSS Hilfe"
|
773 |
|
774 |
+
#: ../help/help.php:398
|
775 |
+
msgid "FAQ's"
|
776 |
+
msgstr "FAQ's"
|
777 |
|
778 |
+
#: ../help/help.php:404
|
779 |
+
msgid "Want to do more? Here's how.."
|
780 |
+
msgstr "Du möchtest mehr machen? Hier steht wie..."
|
781 |
|
782 |
+
#: ../help/help.php:407
|
783 |
+
msgid "Allow Subscribers to get subscribed to any group"
|
784 |
+
msgstr "Erlaube den Abnonnenten sich an jeder Gruppe anzumelden"
|
785 |
|
786 |
+
#: ../help/help.php:412
|
787 |
+
msgid "Using our <b>free</b> "
|
788 |
+
msgstr "Durch die Verwendung unseres <b>kostenlosen</b>"
|
789 |
|
790 |
+
#: ../help/help.php:413
|
791 |
+
msgid "Group Selector"
|
792 |
+
msgstr "Group Selector"
|
793 |
|
794 |
+
#: ../help/help.php:414
|
795 |
msgid ""
|
796 |
+
"plugin, you can extend Email Subscribers Form functionality by providing an "
|
797 |
+
"grouping option right next to the form."
|
|
|
798 |
msgstr ""
|
799 |
+
"Plugins kannst Du die Funktionalität des Email Subscribers Anmeldeformulars "
|
800 |
+
"durch hinzufügen einer Gruppenauswahl rechts im Formular erweitern."
|
|
|
|
|
|
|
|
|
|
|
|
|
801 |
|
802 |
+
#: ../help/help.php:417
|
803 |
+
msgid "The user can then subscribe to whichever group most appeals to them."
|
804 |
+
msgstr "Der Benutzer kann sich dann an der Gruppe anmelden die ihm am meisten zusagt."
|
805 |
|
806 |
+
#: ../help/help.php:420
|
807 |
+
msgid "For example: Subscribe either to Updates or to Offers."
|
808 |
+
msgstr "Zum Beispiel Anmeldung entweder an Updates oder an Angeboten."
|
809 |
|
810 |
+
#: ../help/help.php:424
|
811 |
+
msgid "Show your subscribe form inside attractive popups"
|
812 |
+
msgstr "Zeige die Anmeldeformulare in schönen Popups"
|
813 |
|
814 |
+
#: ../help/help.php:429
|
815 |
+
msgid ""
|
816 |
+
"Don't limit your subscriber form to a widget. Embed it within popups, hello "
|
817 |
+
"bars, slide-ins, sidebars, full screen popups etc."
|
818 |
+
msgstr ""
|
819 |
+
"Beschränke das Anmeldeformular nicht auf ein Widget, binde es ein in Popups, "
|
820 |
+
"Hello Bars, Sidebars, bildschirmfüllenden Popups, usw."
|
821 |
|
822 |
+
#: ../help/help.php:432
|
823 |
+
msgid ""
|
824 |
+
"Using Email Subscribers you can achieve this easily with our <b>free</b> "
|
825 |
+
"plugin "
|
826 |
+
msgstr ""
|
827 |
+
"Durch die Verwendung von Email Subscribers kannst Du dies einfach mit "
|
828 |
+
"unserem kostenlosen Plugin erreichen"
|
829 |
|
830 |
+
#. Author of the plugin/theme
|
831 |
+
#: ../help/help.php:433
|
832 |
+
msgid "Icegram"
|
833 |
+
msgstr "Icegram"
|
834 |
|
835 |
+
#: ../help/help.php:436
|
836 |
+
msgid ""
|
837 |
+
"Icegram's beautiful designs instantly capture user attention and help "
|
838 |
+
"increase sign-ups to your WordPress website."
|
839 |
+
msgstr ""
|
840 |
+
"Icegrams wunderschöne Designs ziehen sofort die Aufmerksamkeit der Benutzer "
|
841 |
+
"auf sich und helfen dabei die Anzahl der Anmeldungen auf Deiner WordPress-"
|
842 |
+
"Seite zu erhöhen."
|
843 |
|
844 |
+
#: ../help/help.php:439 ../help/help.php:459
|
845 |
+
#, php-format
|
846 |
+
msgid "How to %s"
|
847 |
+
msgstr "Wie kann ich %s"
|
848 |
|
849 |
+
#: ../help/help.php:439
|
850 |
+
msgid "show subscribe form inside a popup"
|
851 |
+
msgstr " das Anmeldeformular in einem Popup zeigen"
|
|
|
|
|
852 |
|
853 |
+
#: ../help/help.php:443
|
854 |
+
msgid "Get beautiful and elegant form styles"
|
855 |
+
msgstr "Bekomme schöne und elegante Stile für das Anmeldeformular"
|
|
|
856 |
|
857 |
+
#: ../help/help.php:449
|
858 |
+
msgid "Email subscribers easily integrates with another <b>free</b> plugin "
|
859 |
+
msgstr ""
|
860 |
+
"Email Subscribers integriert sich sehr einfach in ein anderes "
|
861 |
+
"<b>kostenloses</b> Plugin "
|
862 |
|
863 |
+
#: ../help/help.php:450
|
864 |
+
msgid "Rainmaker"
|
865 |
+
msgstr "Rainmaker"
|
866 |
|
867 |
+
#: ../help/help.php:453
|
868 |
+
msgid ""
|
869 |
+
"Rainmaker extends the core features of Email Subscribers and provides "
|
870 |
+
"elegant form styles."
|
871 |
+
msgstr ""
|
872 |
+
"Rainmaker erweitert die Kernfeatures von Email Subscribers und bietet "
|
873 |
+
"elegante Stile für die Formulare."
|
874 |
|
875 |
+
#: ../help/help.php:456
|
876 |
+
msgid ""
|
877 |
+
"These styles are well designed and beautify your subscription form making it "
|
878 |
+
"more appealing."
|
879 |
+
msgstr ""
|
880 |
+
"Diese Stile sind gut designed und verschönern Dein Anmeldeformular indem sie "
|
881 |
+
"es ansprechender machen."
|
882 |
|
883 |
+
#: ../help/help.php:459
|
884 |
+
msgid "add Rainmaker’s form in Email Subscribers"
|
885 |
+
msgstr "Rainmakers Formulare in Email Subscribers einfügen"
|
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 ""
|
890 |
+
"Oops.. We are getting some technical error. Please try again or contact "
|
891 |
+
"admin."
|
892 |
msgstr ""
|
893 |
+
"Oops.. Es gibt ein technisches Problem. Versuche es nochmal oder kontaktiere "
|
894 |
+
"den Admin."
|
895 |
|
896 |
+
#: ../job/es-optin.php:61
|
897 |
+
msgid "This email address has already been confirmed."
|
898 |
+
msgstr "Diese Emailadresse wurde schon bestätigt."
|
899 |
|
900 |
+
#: ../notification/notification-add.php:33
|
901 |
+
msgid "Please select subscribers group."
|
902 |
+
msgstr "Bitte wähle die Abonnentengruppe."
|
903 |
|
904 |
+
#: ../notification/notification-add.php:39
|
905 |
+
msgid "Please select notification status."
|
906 |
+
msgstr "Bitte wähle den Benachrichtigungsstatus."
|
|
|
|
|
907 |
|
908 |
+
#: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
|
909 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
910 |
+
msgstr ""
|
911 |
+
"Bitte wähle das Subjekt für die Benachrichtigung. Verwende das Menü Vorlagen "
|
912 |
+
"um ein neues zu erstellen."
|
913 |
|
914 |
+
#: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
|
915 |
+
msgid "Please select post categories."
|
916 |
+
msgstr "Bitte wähle die Kategorie der Beiträge."
|
917 |
|
918 |
+
#: ../notification/notification-add.php:71
|
919 |
+
msgid "Notification successfully created. "
|
920 |
+
msgstr "Benachrichtigung erfolgreich erstellt. "
|
921 |
|
922 |
+
#: ../notification/notification-add.php:112
|
923 |
+
msgid "Add Notification"
|
924 |
+
msgstr "Benachrichtigung hinzufügen"
|
925 |
|
926 |
+
#: ../notification/notification-add.php:113 ../notification/notification-edit.php:
|
927 |
+
#: 124 ../notification/notification-show.php:54 ../sendmail/sendmail.php:94 ..
|
928 |
+
#: sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
|
929 |
+
#: sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
|
930 |
+
#: subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
|
931 |
+
#: php:113 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
|
932 |
+
#: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
|
933 |
+
#: subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:32
|
934 |
+
msgid "Help"
|
935 |
+
msgstr "Hilfe"
|
936 |
|
937 |
+
#: ../notification/notification-add.php:121
|
938 |
+
msgid "Select Subscribers Group"
|
939 |
+
msgstr "Wähle Abonnentengruppe"
|
940 |
|
941 |
+
#: ../notification/notification-add.php:125 ../notification/notification-add.php:
|
942 |
+
#: 149 ../notification/notification-edit.php:136 ../notification/notification-
|
943 |
+
#: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
|
944 |
+
#: sendmail/sendmail.php:152 ../subscribers/view-subscriber-add.php:166 ..
|
945 |
+
#: subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
|
946 |
+
#: import.php:193 ../subscribers/view-subscriber-sync.php:119
|
947 |
+
msgid "Select"
|
948 |
+
msgstr "Wähle"
|
949 |
|
950 |
+
#: ../notification/notification-add.php:143 ../notification/notification-edit.php:
|
951 |
+
#: 163
|
952 |
+
msgid "Select Notification Email Subject"
|
953 |
+
msgstr "Wähle das Subjekt der Benachrichtigungsmail"
|
954 |
|
955 |
+
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
956 |
+
#: 164
|
957 |
+
msgid "(Use templates menu to create new)"
|
958 |
+
msgstr "(Verwende das Menü Vorlagen um ein neues zu erstellen)"
|
959 |
|
960 |
+
#: ../notification/notification-add.php:168 ../notification/notification-edit.php:
|
961 |
+
#: 191
|
962 |
+
msgid "Select Post Categories"
|
963 |
+
msgstr "Wähle Beitragskategorie"
|
964 |
|
965 |
+
#: ../notification/notification-add.php:196 ../notification/notification-edit.php:
|
966 |
+
#: 226
|
967 |
+
msgid "Check All"
|
968 |
+
msgstr "Alle auswählen"
|
969 |
|
970 |
+
#: ../notification/notification-add.php:197 ../notification/notification-edit.php:
|
971 |
+
#: 227
|
972 |
+
msgid "Uncheck All"
|
973 |
+
msgstr "Alle abwählen"
|
974 |
|
975 |
+
#: ../notification/notification-add.php:203 ../notification/notification-edit.php:
|
976 |
+
#: 234
|
977 |
+
msgid "Select your Custom Post Type"
|
978 |
+
msgstr "Wähle Deinen individuellen Beitragstyp"
|
|
|
|
|
979 |
|
980 |
+
#: ../notification/notification-add.php:204 ../notification/notification-edit.php:
|
981 |
+
#: 235
|
982 |
+
msgid "(Optional)"
|
983 |
+
msgstr "(Optional)"
|
|
|
984 |
|
985 |
+
#: ../notification/notification-add.php:233 ../notification/notification-edit.php:
|
986 |
+
#: 269
|
987 |
+
msgid "No Custom Post Types Available"
|
988 |
+
msgstr "Keine individuellen Beitragstypen vorhanden"
|
|
|
|
|
989 |
|
990 |
+
#: ../notification/notification-add.php:240 ../notification/notification-edit.php:
|
991 |
+
#: 276
|
992 |
+
msgid "Select Notification Status when a new post is published"
|
993 |
+
msgstr "Wähle den Benachrichtigungsstatus wenn ein neuer Beitrag veröffentlicht wird"
|
994 |
|
995 |
+
#: ../notification/notification-add.php:244 ../notification/notification-edit.php:
|
996 |
+
#: 280 ../notification/notification-show.php:130 ../sendmail/sendmail.php:139
|
997 |
+
msgid "Send email immediately"
|
998 |
+
msgstr "Sende Email sofort"
|
999 |
|
1000 |
+
#: ../notification/notification-add.php:245 ../notification/notification-edit.php:
|
1001 |
+
#: 281 ../notification/notification-show.php:132
|
1002 |
+
msgid "Add to cron and send email via cron job"
|
1003 |
+
msgstr "Zu Cron hinzufügen und Email via Cron Job verschicken"
|
1004 |
|
1005 |
+
#: ../notification/notification-add.php:246 ../notification/notification-edit.php:
|
1006 |
+
#: 282
|
1007 |
+
msgid "Disable email notification"
|
1008 |
+
msgstr "Emailbenachrichtigungen deaktivieren"
|
1009 |
|
1010 |
+
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
1011 |
+
#: 291 ../subscribers/view-subscriber-edit.php:191
|
1012 |
+
msgid "Save"
|
1013 |
+
msgstr "Sichern"
|
|
|
1014 |
|
1015 |
+
#: ../notification/notification-edit.php:20 ../notification/notification-show.php:
|
1016 |
+
#: 21 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
|
1017 |
+
#: subscribers/view-subscriber-edit.php:22
|
1018 |
+
msgid "Oops, selected details does not exists."
|
1019 |
+
msgstr "Oops, die gewählten Details existieren nicht."
|
1020 |
|
1021 |
+
#: ../notification/notification-edit.php:49
|
1022 |
+
msgid "Please select subscribers group"
|
1023 |
+
msgstr "Bitte wähle die Abonnentengruppe"
|
|
|
|
|
1024 |
|
1025 |
+
#: ../notification/notification-edit.php:55
|
1026 |
+
msgid "Please select notification status"
|
1027 |
+
msgstr "Bitte wähle den Benachrichtigungsstatus"
|
1028 |
|
1029 |
+
#: ../notification/notification-edit.php:89
|
1030 |
+
msgid "Notification successfully updated. "
|
1031 |
+
msgstr "Benachrichtigung erfolgreich aktualisiert. "
|
|
|
1032 |
|
1033 |
+
#: ../notification/notification-edit.php:122
|
1034 |
+
msgid "Edit Notification"
|
1035 |
+
msgstr "Benachrichtigung bearbeiten"
|
|
|
|
|
|
|
1036 |
|
1037 |
+
#: ../notification/notification-edit.php:123 ../notification/notification-show.
|
1038 |
+
#: php:53
|
1039 |
+
msgid "Add New"
|
1040 |
+
msgstr "Neu hinzufügen"
|
1041 |
|
1042 |
+
#: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
|
1043 |
+
#: php:303
|
1044 |
+
msgid "Update Subscribers Group"
|
1045 |
+
msgstr "Aktualisiere die Abonnentengruppe"
|
1046 |
|
1047 |
+
#: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
|
1048 |
+
msgid "Selected record deleted."
|
1049 |
+
msgstr "Ausgewählte Einträge gelöscht."
|
|
|
1050 |
|
1051 |
+
#: ../notification/notification-show.php:57
|
1052 |
+
msgid ""
|
1053 |
+
"Use this to setup and send notification emails to your subscribers when a "
|
1054 |
+
"new post is published in your blog."
|
1055 |
msgstr ""
|
1056 |
+
"Stelle hier ein ob und wie Abonnenten über neue Beiträge im Blog informiert "
|
1057 |
+
"werden."
|
|
|
|
|
|
|
|
|
|
|
1058 |
|
1059 |
+
#: ../notification/notification-show.php:68 ../notification/notification-show.php:
|
1060 |
+
#: 76
|
1061 |
+
msgid "Email Subject"
|
1062 |
+
msgstr "Emailsubjekt"
|
|
|
1063 |
|
1064 |
+
#: ../notification/notification-show.php:69 ../notification/notification-show.php:
|
1065 |
+
#: 77
|
1066 |
+
msgid "Subscribers Group"
|
1067 |
+
msgstr "Abonnentengruppe"
|
|
|
1068 |
|
1069 |
+
#: ../notification/notification-show.php:70 ../notification/notification-show.php:
|
1070 |
+
#: 78
|
1071 |
+
msgid "Post Categories / Custom Post Types"
|
1072 |
+
msgstr "Beitragskategorien / Individuelle Beitragstypen"
|
1073 |
|
1074 |
+
#: ../notification/notification-show.php:71 ../notification/notification-show.php:
|
1075 |
+
#: 79
|
1076 |
+
msgid "Notification Status"
|
1077 |
+
msgstr "Benachrichtigungsstatus"
|
1078 |
|
1079 |
+
#: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
|
1080 |
+
#: php:417 ../templates/template-preview.php:35
|
1081 |
+
msgid "Edit"
|
1082 |
+
msgstr "Bearbeiten"
|
1083 |
|
1084 |
+
#: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
|
1085 |
+
#: php:301 ../subscribers/view-subscriber-show.php:422
|
1086 |
+
msgid "Delete"
|
1087 |
+
msgstr "Löschen"
|
1088 |
|
1089 |
+
#: ../notification/notification-show.php:143 ../sentmail/deliverreport-show.php:
|
1090 |
+
#: 128 ../sentmail/sentmail-show.php:180 ../subscribers/view-subscriber-show.php:
|
1091 |
+
#: 456
|
1092 |
+
msgid "No records available."
|
1093 |
+
msgstr "Keine Einträge verfügbar."
|
1094 |
|
1095 |
+
#: ../sendmail/sendmail.php:18 ../subscribers/view-subscriber-show.php:17
|
1096 |
+
msgid "Click Here"
|
1097 |
+
msgstr "Hier klicken"
|
1098 |
|
1099 |
+
#: ../sendmail/sendmail.php:40
|
1100 |
+
msgid "Please select your mail subject."
|
1101 |
+
msgstr "Bitte wähle das Subjekt der Mail."
|
|
|
1102 |
|
1103 |
+
#: ../sendmail/sendmail.php:46
|
1104 |
+
msgid "Please select your mail type."
|
1105 |
+
msgstr "Bitte wähle den Typ der Mail."
|
1106 |
|
1107 |
+
#: ../sendmail/sendmail.php:52
|
1108 |
+
msgid "Please select your group."
|
1109 |
+
msgstr "Bitte wähle die Gruppe."
|
|
|
1110 |
|
1111 |
+
#: ../sendmail/sendmail.php:59
|
1112 |
+
msgid "Email sent successfully. "
|
1113 |
+
msgstr "Email erfolgreich gesendet. "
|
1114 |
|
1115 |
+
#: ../sendmail/sendmail.php:63
|
1116 |
+
msgid "Click here to check Statistics"
|
1117 |
+
msgstr "Klicke hier um die Statistik zu sehen"
|
1118 |
|
1119 |
+
#: ../sendmail/sendmail.php:69
|
1120 |
+
msgid "Oops.. We are getting some error. mail not sending."
|
1121 |
+
msgstr "Oops.. Es gibt ein Problem. Mails können nicht verschickt werden."
|
1122 |
|
1123 |
+
#: ../sendmail/sendmail.php:97
|
1124 |
+
msgid "Use this to send newsletter emails to your subscribers."
|
1125 |
+
msgstr "Hiermit kannst Du Newsletter an die Abonnenten verschicken."
|
|
|
1126 |
|
1127 |
+
#: ../sendmail/sendmail.php:106
|
1128 |
+
msgid "Select Email Subject from available list"
|
1129 |
+
msgstr "Wähle das Subjekt der Email aus"
|
1130 |
|
1131 |
+
#: ../sendmail/sendmail.php:133
|
1132 |
+
msgid "Select Email Type"
|
1133 |
+
msgstr "Wähle den Emailtyp"
|
1134 |
|
1135 |
+
#: ../sendmail/sendmail.php:140
|
1136 |
+
msgid "Send email via cron job"
|
1137 |
+
msgstr "Sende Email via Cron Job"
|
1138 |
|
1139 |
+
#: ../sendmail/sendmail.php:147
|
1140 |
+
msgid "Select Subscribers group to Send Email"
|
1141 |
+
msgstr "Wähle die Abonnentengruppe aus die diese Mail erhalten soll"
|
1142 |
|
1143 |
+
#: ../sendmail/sendmail.php:179
|
1144 |
+
msgid "Recipients : 0 "
|
1145 |
+
msgstr "Empfänger : 0 "
|
1146 |
|
1147 |
+
#: ../sendmail/sendmail.php:181
|
1148 |
+
#, php-format
|
1149 |
+
msgid "Recipients : %s"
|
1150 |
+
msgstr "Empfänger : %s"
|
1151 |
|
1152 |
+
#: ../sendmail/sendmail.php:184
|
1153 |
+
msgid ""
|
1154 |
+
"<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
|
1155 |
+
"that you change above Mail Type to Cron and Send Mail via Cron Job."
|
1156 |
+
"</strong><br>Click on Help for more information."
|
1157 |
+
msgstr ""
|
1158 |
+
"<br><br><strong>Die Anzahl der Empfänger ist über 100.<br>Wir empfehlen den "
|
1159 |
+
"Email-Typ in Cron zu ändern und mit Cron Job zu verschicken."
|
1160 |
+
"</strong><br>Klicke auf Hilfe für weitere Informationen."
|
1161 |
|
1162 |
+
#: ../sendmail/sendmail.php:196 ../sendmail/sendmail.php:198
|
1163 |
+
msgid "Send Email"
|
1164 |
+
msgstr "Email senden"
|
1165 |
|
1166 |
+
#: ../sendmail/sendmail.php:201
|
1167 |
+
msgid "Reset"
|
1168 |
+
msgstr "Zurücksetzen"
|
1169 |
|
1170 |
+
#: ../sentmail/deliverreport-show.php:14
|
1171 |
+
msgid "Oops.. Unexpected error occurred. Please try again."
|
1172 |
+
msgstr "Oops.. Ein unerwarteter Fehler ist aufgetreten. Bitte versuche es nochmal."
|
1173 |
|
1174 |
+
#: ../sentmail/deliverreport-show.php:47 ../sentmail/sentmail-show.php:83
|
1175 |
+
msgid " << "
|
1176 |
+
msgstr " << "
|
1177 |
|
1178 |
+
#: ../sentmail/deliverreport-show.php:48 ../sentmail/sentmail-show.php:84
|
1179 |
+
msgid " >> "
|
1180 |
+
msgstr " >> "
|
1181 |
|
1182 |
+
#: ../sentmail/deliverreport-show.php:60
|
1183 |
+
msgid "Delivery Report"
|
1184 |
+
msgstr "Sendebericht"
|
1185 |
|
1186 |
+
#: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
|
1187 |
+
#: subscribers/view-subscriber-export.php:58 ../subscribers/view-subscriber-
|
1188 |
+
#: export.php:66
|
1189 |
+
msgid "Sno"
|
1190 |
+
msgstr "Alle"
|
1191 |
|
1192 |
+
#: ../sentmail/deliverreport-show.php:73 ../sentmail/deliverreport-show.php:84
|
1193 |
+
msgid "Email"
|
1194 |
+
msgstr "Email"
|
|
|
|
|
|
|
|
|
1195 |
|
1196 |
+
#: ../sentmail/deliverreport-show.php:74 ../sentmail/deliverreport-show.php:85 ..
|
1197 |
+
#: sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
|
1198 |
+
#: subscribers/view-subscriber-show.php:290
|
1199 |
+
msgid "Status"
|
1200 |
+
msgstr "Status"
|
1201 |
|
1202 |
+
#: ../sentmail/deliverreport-show.php:75 ../sentmail/deliverreport-show.php:86 ..
|
1203 |
+
#: sentmail/sentmail-show.php:111 ../sentmail/sentmail-show.php:124
|
1204 |
+
msgid "Sent"
|
1205 |
+
msgstr "Gesendet"
|
1206 |
|
1207 |
+
#: ../sentmail/deliverreport-show.php:76 ../sentmail/deliverreport-show.php:87
|
1208 |
+
msgid "Sent Date"
|
1209 |
+
msgstr "Sendedatum"
|
|
|
1210 |
|
1211 |
+
#: ../sentmail/deliverreport-show.php:77 ../sentmail/deliverreport-show.php:88
|
1212 |
+
msgid "Viewed Status"
|
1213 |
+
msgstr "Lesestatus"
|
|
|
1214 |
|
1215 |
+
#: ../sentmail/deliverreport-show.php:78 ../sentmail/deliverreport-show.php:89
|
1216 |
+
msgid "Viewed Date"
|
1217 |
+
msgstr "Gelesen am"
|
1218 |
|
1219 |
+
#: ../sentmail/sentmail-preview.php:27
|
1220 |
+
msgid "Preview Email"
|
1221 |
+
msgstr "Email Vorschau"
|
1222 |
|
1223 |
+
#: ../sentmail/sentmail-preview.php:31
|
1224 |
+
msgid ""
|
1225 |
+
"This is how the email you sent may look. <br>Note: Different email services "
|
1226 |
+
"(like gmail, yahoo etc) display email content differently. So there could be "
|
1227 |
+
"a slight variation on how your customer will view the email content."
|
1228 |
+
msgstr ""
|
1229 |
+
"So könnte die Email ausehen die Du gesendet hast. <br>Hinweis: Die Email "
|
1230 |
+
"kann bei unterschiedlichen Emailanbietern (z. Bsp. GMail, Yahoo, usw.) "
|
1231 |
+
"unterschiedlich dargestellt werden. Es kann also zu leichten Unterschieden "
|
1232 |
+
"darin kommen wie der Kunde den Inhalt der Email sieht."
|
1233 |
|
1234 |
+
#: ../sentmail/sentmail-preview.php:53
|
1235 |
+
msgid "Back"
|
1236 |
+
msgstr "Zurück"
|
1237 |
|
1238 |
+
#: ../sentmail/sentmail-show.php:43
|
1239 |
+
msgid "Successfully deleted all reports except latest 10."
|
1240 |
+
msgstr "Alle Berichte (bis auf die letzten 10) wurden erfolgreich gelöscht."
|
1241 |
|
1242 |
+
#: ../sentmail/sentmail-show.php:97
|
1243 |
+
msgid "It will show reports for all Newsletters & Post Notification emails sent."
|
1244 |
+
msgstr "Berichte für alle verschickten Newsletter & Benachrichtigungen ."
|
1245 |
|
1246 |
+
#: ../sentmail/sentmail-show.php:107 ../sentmail/sentmail-show.php:120
|
1247 |
+
msgid "View Reports"
|
1248 |
+
msgstr "Berichte anzeigen"
|
1249 |
|
1250 |
+
#: ../sentmail/sentmail-show.php:109 ../sentmail/sentmail-show.php:122
|
1251 |
+
msgid "Type"
|
1252 |
+
msgstr "Typ"
|
1253 |
|
1254 |
+
#: ../sentmail/sentmail-show.php:112 ../sentmail/sentmail-show.php:125
|
1255 |
+
msgid "Start Date"
|
1256 |
+
msgstr "Startdatum"
|
1257 |
|
1258 |
+
#: ../sentmail/sentmail-show.php:113 ../sentmail/sentmail-show.php:126
|
1259 |
+
msgid "End Date"
|
1260 |
+
msgstr "Enddatum"
|
1261 |
|
1262 |
+
#: ../sentmail/sentmail-show.php:114 ../sentmail/sentmail-show.php:127
|
1263 |
+
msgid "Total"
|
1264 |
+
msgstr "Gesamt"
|
1265 |
|
1266 |
+
#: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
|
1267 |
+
#: subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
|
1268 |
+
#: export.php:69 ../subscribers/view-subscriber-show.php:293
|
1269 |
+
msgid "Action"
|
1270 |
+
msgstr "Aktion"
|
1271 |
|
1272 |
+
#: ../sentmail/sentmail-show.php:190
|
1273 |
+
msgid "Optimize Table & Delete Records"
|
1274 |
+
msgstr "Tabelle optimieren und Einträge löschen"
|
1275 |
|
1276 |
+
#: ../sentmail/sentmail-show.php:199
|
1277 |
msgid ""
|
1278 |
+
"Note: Please click on <strong>Optimize Table & Delete Records</strong> "
|
1279 |
+
"button to delete all reports except latest 10."
|
1280 |
msgstr ""
|
1281 |
+
"Hinweis: Bitte klicke auf <strong>Tabelle optimieren und Einträge "
|
1282 |
+
"löschen</strong> um alle Berichte mit Ausnahme der letzten 10 zu löschen."
|
1283 |
|
1284 |
+
#: ../settings/setting-sync.php:16
|
1285 |
+
msgid "Table sync completed successfully."
|
1286 |
+
msgstr "Tabelle erfolgreich synchronisiert."
|
1287 |
|
1288 |
+
#: ../settings/setting-sync.php:29
|
1289 |
+
msgid "Sync plugin tables"
|
1290 |
+
msgstr "Plugintabellen synchronisieren"
|
1291 |
|
1292 |
+
#: ../settings/setting-sync.php:33
|
1293 |
+
msgid "Click to sync tables"
|
1294 |
+
msgstr "Klicken um die Plugintabellen zu synchronisieren"
|
1295 |
|
1296 |
+
#: ../settings/settings-edit.php:23
|
1297 |
+
msgid "Admin"
|
1298 |
+
msgstr "Admin"
|
1299 |
|
1300 |
+
#: ../settings/settings-edit.php:24
|
1301 |
+
msgid "Signup Confirmation"
|
1302 |
+
msgstr "Anmeldebestätigung"
|
1303 |
|
1304 |
+
#: ../settings/settings-edit.php:25
|
1305 |
+
msgid "Cron"
|
1306 |
+
msgstr "Cron"
|
1307 |
|
1308 |
+
#: ../settings/settings-edit.php:26
|
1309 |
+
msgid "User Roles"
|
1310 |
+
msgstr "Benutzerrollen"
|
1311 |
|
1312 |
+
#: ../settings/settings-edit.php:67
|
1313 |
+
msgid "Save Settings"
|
1314 |
+
msgstr "Einstellungen speichern"
|
1315 |
|
1316 |
+
#: ../settings/settings-edit.php:78
|
1317 |
+
msgid "Sender of Notifications"
|
1318 |
+
msgstr "Absender von Benachrichtigungen"
|
1319 |
|
1320 |
+
#: ../settings/settings-edit.php:79
|
1321 |
+
msgid ""
|
1322 |
+
"Choose a FROM name and FROM email address for all the emails to be sent from "
|
1323 |
+
"this plugin."
|
1324 |
+
msgstr ""
|
1325 |
+
"Gib einen Absendernamen und eine Absenderemail ein für alle Emails die von "
|
1326 |
+
"diesem Plugin verschickt werden."
|
1327 |
|
1328 |
+
#: ../settings/settings-edit.php:89
|
1329 |
+
msgid "Email Type"
|
1330 |
+
msgstr "Emailtyp"
|
1331 |
|
1332 |
+
#: ../settings/settings-edit.php:90
|
1333 |
+
msgid ""
|
1334 |
+
"Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
|
1335 |
+
"Option 3 & 4 is to send emails with PHP method mail()."
|
1336 |
+
msgstr ""
|
1337 |
+
"Optionen 1 & 2 um Emails über die Standard-Wordpress-Methode wp_mail() zu "
|
1338 |
+
"senden, Optionen 3 & 4 um Emails über die PHP-Methode mail() zu senden."
|
1339 |
|
1340 |
+
#: ../settings/settings-edit.php:94
|
1341 |
+
msgid "1. WP HTML MAIL"
|
1342 |
+
msgstr "1. WP HTML MAIL"
|
1343 |
|
1344 |
+
#: ../settings/settings-edit.php:95
|
1345 |
+
msgid "2. WP PLAINTEXT MAIL"
|
1346 |
+
msgstr "2. WP PLAINTEXT MAIL"
|
1347 |
|
1348 |
+
#: ../settings/settings-edit.php:96
|
1349 |
+
msgid "3. PHP HTML MAIL"
|
1350 |
+
msgstr "3. PHP HTML MAIL"
|
1351 |
|
1352 |
+
#: ../settings/settings-edit.php:97
|
1353 |
+
msgid "4. PHP PLAINTEXT MAIL"
|
1354 |
+
msgstr "4. PHP PLAINTEXT MAIL"
|
1355 |
|
1356 |
+
#: ../settings/settings-edit.php:104
|
1357 |
+
msgid "Opt-In Type"
|
1358 |
+
msgstr "Opt-In Typ"
|
1359 |
|
1360 |
+
#: ../settings/settings-edit.php:105
|
1361 |
+
msgid ""
|
1362 |
+
"Double Opt-In : In this type, the subscriber is sent an activation link as "
|
1363 |
+
"soon as they subscribe to your list. They have to confirm their subscription "
|
1364 |
+
"by clicking on the activation link.<br />Single Opt-In : In this type, the "
|
1365 |
+
"subscriber is not asked to confirm their email address. They are subscribed "
|
1366 |
+
"directly in the list."
|
1367 |
+
msgstr ""
|
1368 |
+
"Doppeltes Opt-In : Bei diesem Typ wird dem Abonnenten ein Aktivierungslink "
|
1369 |
+
"zugeschickt nachdem er sich für die Liste angemeldet hat. Der Abonnent muss "
|
1370 |
+
"seine Midgliedschaft duch Klicken auf den Link bestätigen.<br/>Einfaches Opt-"
|
1371 |
+
"In : Bei diesem Typ muss der Abonnent die Mitgliedschaft nicht bestätigen. "
|
1372 |
+
"Er ist direkt an der Liste angemeldet."
|
1373 |
|
1374 |
+
#: ../settings/settings-edit.php:109
|
1375 |
+
msgid "Double Opt In"
|
1376 |
+
msgstr "Doppeltes Opt In"
|
1377 |
|
1378 |
+
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-add.php:155 ..
|
1379 |
+
#: subscribers/view-subscriber-edit.php:150 ../subscribers/view-subscriber-
|
1380 |
+
#: import.php:181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-
|
1381 |
+
#: subscriber-show.php:356
|
1382 |
+
msgid "Single Opt In"
|
1383 |
+
msgstr "Einfaches Opt In"
|
1384 |
|
1385 |
+
#: ../settings/settings-edit.php:116
|
1386 |
+
msgid "Image Size"
|
1387 |
+
msgstr "Bildgröße"
|
1388 |
|
1389 |
+
#: ../settings/settings-edit.php:117
|
1390 |
+
msgid ""
|
1391 |
+
"Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
|
1392 |
+
"Emails."
|
1393 |
+
msgstr ""
|
1394 |
+
"Wähle die Bildgröße für {{POSTIMAGE}} die in den Benachrichtigungsmails "
|
1395 |
+
"angezeigt wird."
|
1396 |
|
1397 |
+
#: ../settings/settings-edit.php:121
|
1398 |
+
msgid "Full Size"
|
1399 |
+
msgstr "Volle Größe"
|
1400 |
|
1401 |
+
#: ../settings/settings-edit.php:122
|
1402 |
+
msgid "Medium Size"
|
1403 |
+
msgstr "Mittlere Größe"
|
1404 |
|
1405 |
+
#: ../settings/settings-edit.php:129
|
1406 |
+
msgid "Admin Email Addresses"
|
1407 |
+
msgstr "Admin Emailadresse"
|
|
|
|
|
|
|
|
|
1408 |
|
1409 |
+
#: ../settings/settings-edit.php:130
|
1410 |
msgid ""
|
1411 |
+
"Enter the admin email addresses that should receive notifications (separated "
|
1412 |
+
"by comma)."
|
|
|
1413 |
msgstr ""
|
1414 |
+
"Gib die Emailadressen der Admins ein die Benachrichtigungen bekommen sollen "
|
1415 |
+
"(durch Kommas getrennt)."
|
|
|
1416 |
|
1417 |
+
#: ../settings/settings-edit.php:136
|
1418 |
+
msgid "Notify Admin when a new subscriber signs up"
|
1419 |
+
msgstr "Nachricht an den Admin wenn ein neuer Abonnent sich anmeldet"
|
1420 |
+
|
1421 |
+
#: ../settings/settings-edit.php:137
|
1422 |
msgid ""
|
1423 |
+
"To send admin email notifications for the new subscriber. This option must "
|
1424 |
+
"be set to YES."
|
1425 |
msgstr ""
|
1426 |
+
"Sende eine Benachrichtigungsmail an den Admin wenn ein neuer Abonnent "
|
1427 |
+
"dazugekommen ist. Diese Option muss auf JA stehen."
|
1428 |
|
1429 |
+
#: ../settings/settings-edit.php:149
|
1430 |
+
msgid "Admin Email Subject on new subscriber sign up"
|
1431 |
+
msgstr "Subjekt der Nachricht an den Admin wenn ein neuer Abonnent sich anmeldet"
|
1432 |
|
1433 |
+
#: ../settings/settings-edit.php:150
|
1434 |
+
msgid ""
|
1435 |
+
"Subject for the admin email whenever a new subscriber signs up and is "
|
1436 |
+
"confirmed."
|
1437 |
+
msgstr ""
|
1438 |
+
"Subjekt der Nachricht an den Admin wenn ein neuer Abonnent sich anmeldet und "
|
1439 |
+
"bestätigt ist."
|
1440 |
|
1441 |
+
#: ../settings/settings-edit.php:156
|
1442 |
+
msgid "Admin Email Content on new subscriber signs up"
|
1443 |
+
msgstr "Inhalt der Nachricht an den Admin wenn ein neuer Abonnent sich anmeldet"
|
1444 |
|
1445 |
+
#: ../settings/settings-edit.php:157
|
1446 |
+
msgid ""
|
1447 |
+
"Content for the admin email whenever a new subscriber signs up and is "
|
1448 |
+
"confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
|
1449 |
+
msgstr ""
|
1450 |
+
"Inhalt der Email an den Admin wenn ein neuer Abonnent angemeldet und "
|
1451 |
+
"bestätigt ist.<br />Verfügbare Schlüsselworte: {{NAME}}, {{EMAIL}}, {{GROUP}}"
|
1452 |
|
1453 |
+
#: ../settings/settings-edit.php:164
|
1454 |
+
msgid "Sent Report Subject"
|
1455 |
+
msgstr "Subjekt des Sendeberichts"
|
|
|
1456 |
|
1457 |
+
#: ../settings/settings-edit.php:165
|
1458 |
+
msgid "Subject for the email report which will be sent to admin."
|
1459 |
+
msgstr "Subjekt des Emailberichtes der an den Admin geschickt wird."
|
1460 |
|
1461 |
+
#: ../settings/settings-edit.php:171
|
1462 |
+
msgid "Sent Report Content"
|
1463 |
+
msgstr "Inhalt des Sendeberichts"
|
1464 |
|
1465 |
+
#: ../settings/settings-edit.php:172
|
1466 |
+
msgid ""
|
1467 |
+
"Content for the email report which will be sent to admin.<br />Available "
|
1468 |
+
"Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
|
1469 |
+
msgstr ""
|
1470 |
+
"Inhalt des Emailreports der an den Admin geschickt wird.<br />Verfügbare "
|
1471 |
+
"Schlüsselworte: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
|
1472 |
|
1473 |
+
#: ../settings/settings-edit.php:183
|
1474 |
+
msgid "Double Opt-In Email Subject (Confirmation Email)"
|
1475 |
+
msgstr "Subjekt der Bestätigungsmail (Doppeltes Opt-In)"
|
1476 |
|
1477 |
+
#: ../settings/settings-edit.php:184
|
1478 |
msgid ""
|
1479 |
+
"Subject for the confirmation email to be sent for Double Opt-In whenever a "
|
1480 |
+
"subscriber signs up."
|
|
|
1481 |
msgstr ""
|
1482 |
+
"Subjekt der Bestätigungsmail bei doppeltem Opt-In wenn ein Abonnent sich "
|
1483 |
+
"einträgt."
|
|
|
|
|
1484 |
|
1485 |
+
#: ../settings/settings-edit.php:190
|
1486 |
+
msgid "Double Opt-In Email Content (Confirmation Email)"
|
1487 |
+
msgstr "Inhalt der Bestätigungsmail bei doppeltem Opt-In"
|
1488 |
|
1489 |
+
#: ../settings/settings-edit.php:191
|
1490 |
msgid ""
|
1491 |
+
"Content for the confirmation email to be sent for Double Opt-In whenever a "
|
1492 |
+
"subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
|
1493 |
msgstr ""
|
1494 |
+
"Inhalt der Bestätigungsmail bei Doppeltem Opt-In wenn ein neuer Benutzer "
|
1495 |
+
"sich angemeldet hat.<br />Verfügbare Schlüsselworte: {{NAME}}, {{LINK}}"
|
1496 |
|
1497 |
+
#: ../settings/settings-edit.php:197
|
1498 |
+
msgid "Double Opt-In Confirmation Link"
|
1499 |
+
msgstr "Bestätigungslink bei doppeltem Opt-In"
|
1500 |
|
1501 |
+
#: ../settings/settings-edit.php:198
|
1502 |
+
msgid "It is a readonly field and you are advised not to modify it."
|
1503 |
+
msgstr "Das ist ein\"Nur-Lesen\"-Feld und es wird empfohlen dieses nicht zu verändern."
|
1504 |
|
1505 |
+
#: ../settings/settings-edit.php:204
|
1506 |
msgid ""
|
1507 |
+
"Text to display after an email address is successfully subscribed from "
|
1508 |
+
"Double Opt-In (Confirmation) Email"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1509 |
msgstr ""
|
1510 |
+
"Angezeigter Text nachdem eine Emailadresse erfolgreich durch Doppeltes Opt-"
|
1511 |
+
"In eingetragen wurde"
|
1512 |
|
1513 |
+
#: ../settings/settings-edit.php:205
|
1514 |
+
msgid ""
|
1515 |
+
"This text will be displayed once user clicks on email confirmation link from "
|
1516 |
+
"the Double Opt In (confirmation) Email."
|
1517 |
msgstr ""
|
1518 |
+
"Dieser Text wird angezeigt nachdem der Benutzer auf den Bestätigungslink in "
|
1519 |
+
"der Double Opt In Bestätigungsmail klickt."
|
1520 |
|
1521 |
+
#: ../settings/settings-edit.php:212
|
1522 |
+
msgid "Send Welcome Email to New Subscribers after Sign Up?"
|
1523 |
+
msgstr "Nach der Anmeldung Willkommensemail an neue Abonnenten schicken?"
|
1524 |
|
1525 |
+
#: ../settings/settings-edit.php:213
|
1526 |
+
msgid ""
|
1527 |
+
"To send welcome email to subscriber after successful signup. This option "
|
1528 |
+
"must be set to YES."
|
1529 |
+
msgstr ""
|
1530 |
+
"Sende eine Willkommensmail an den Abonnenten nachdem er efolgreich "
|
1531 |
+
"registriert ist. Diese Option muss auf JA stehen."
|
1532 |
|
1533 |
+
#: ../settings/settings-edit.php:224
|
1534 |
+
msgid "Subject for Welcome Email"
|
1535 |
+
msgstr "Subjekt der Willkommensemail"
|
1536 |
|
1537 |
+
#: ../settings/settings-edit.php:225
|
1538 |
+
msgid ""
|
1539 |
+
"Subject for the subscriber welcome email. This will be sent whenever a "
|
1540 |
+
"user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
|
1541 |
+
"Opt-In) successfully."
|
1542 |
+
msgstr ""
|
1543 |
+
"Subjekt der Willkommensemail für den Abonnenten. Diese Mail wird gesendet "
|
1544 |
+
"sobald eine Emailadresse entweder erfolgreich bestätigt (bei doppeltem Opt-"
|
1545 |
+
"In) oder erfolgreich eingetragen (bei einfachem Opt-In) wurde."
|
1546 |
|
1547 |
+
#: ../settings/settings-edit.php:231
|
1548 |
+
msgid "Email Content for Welcome Email"
|
1549 |
+
msgstr "Inhalt der Willkommensemail"
|
1550 |
|
1551 |
+
#: ../settings/settings-edit.php:232
|
1552 |
+
msgid ""
|
1553 |
+
"Content for the subscriber welcome email whenever a user's email is either "
|
1554 |
+
"confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
|
1555 |
+
"<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
|
1556 |
+
msgstr ""
|
1557 |
+
"Inhalt der Willkommensmail wenn ein Benutzer entweder erfolgreich bestätigt "
|
1558 |
+
"(bei doppeltem Opt-In) oder eingetragen (bei einfachem Opt-In) wurde.<br "
|
1559 |
+
"/>Verfügbare Schlüsselworte: {{NAME}}, {{GROUP}}, {{LINK}}"
|
1560 |
|
1561 |
+
#: ../settings/settings-edit.php:240
|
1562 |
+
msgid "Unsubscribe Link"
|
1563 |
+
msgstr "Link zum Abmelden"
|
1564 |
|
1565 |
+
#: ../settings/settings-edit.php:241
|
|
|
1566 |
msgid ""
|
1567 |
+
"This unsubscribe link is automatically added to all the emails that are sent "
|
1568 |
+
"from this plugin. It is a readonly field and you are advised not to modify "
|
1569 |
+
"it."
|
|
|
|
|
|
|
|
|
1570 |
msgstr ""
|
1571 |
+
"Der Abmeldelink wird automatisch allen Emails angehängt die über dieses "
|
1572 |
+
"Plugin verschickt werden. Es ist ein \"Nur-Lesen\"-Feld und es wird empfohlen "
|
1573 |
+
"es nicht zu ändern."
|
|
|
|
|
|
|
|
|
|
|
1574 |
|
1575 |
+
#: ../settings/settings-edit.php:247
|
1576 |
+
msgid "Unsubscribe Text in Email"
|
1577 |
+
msgstr "Inhalt der Abmeldeemail"
|
1578 |
|
1579 |
+
#: ../settings/settings-edit.php:248
|
1580 |
+
msgid ""
|
1581 |
+
"The text for the unsubscribe link. This text is automatically added with "
|
1582 |
+
"unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
|
1583 |
msgstr ""
|
1584 |
+
"Der Text für den Abmeldelink. Dieser Text wird automatisch mit dem "
|
1585 |
+
"Abmeldelink zu den Emails hinzugefügt.<br />Verfügbare Schlüsselworte: "
|
1586 |
+
"{{LINK}}"
|
1587 |
|
1588 |
+
#: ../settings/settings-edit.php:254
|
1589 |
+
msgid "Text to display after an email address is unsubscribed"
|
1590 |
+
msgstr "Dieser Text wird nach der Abmeldung angezeigt"
|
1591 |
+
|
1592 |
+
#: ../settings/settings-edit.php:255
|
1593 |
+
msgid ""
|
1594 |
+
"This text will be displayed once user clicks on unsubscribe link from the "
|
1595 |
+
"email."
|
1596 |
msgstr ""
|
1597 |
+
"Dieser Text wird angezeigt nachdem ein Benutzer auf den Abmeldelink geklickt "
|
1598 |
+
"hat."
|
1599 |
|
1600 |
+
#: ../settings/settings-edit.php:262
|
1601 |
+
msgid "Error in the Subscribe / Confirmation Link"
|
1602 |
+
msgstr "Fehler im Anmelde- / Abmeldelink"
|
1603 |
|
1604 |
+
#: ../settings/settings-edit.php:263
|
1605 |
+
msgid ""
|
1606 |
+
"Default message to display if there is any issue while clicking on subscribe "
|
1607 |
+
"/ confirmation link from the Double Opt-In (Confirmation) emails."
|
1608 |
+
msgstr ""
|
1609 |
+
"Standardnachricht bei Fehlern bei der Verwendung des Anmelde- / "
|
1610 |
+
"Bestätigungslinks der Bestätigungsemail bei doppeltem Opt-In."
|
1611 |
|
1612 |
+
#: ../settings/settings-edit.php:269
|
1613 |
+
msgid "Error in the Unsubscribe Link"
|
1614 |
+
msgstr "Fehler im Abmeldelink"
|
1615 |
|
1616 |
+
#: ../settings/settings-edit.php:270
|
1617 |
msgid ""
|
1618 |
+
"Default message to display if there is any issue while clicking on "
|
1619 |
+
"unsubscribe link from the emails."
|
1620 |
msgstr ""
|
1621 |
+
"Standardnachricht bei Fehlern bei der Verwendung des Abmeldelinks aus den "
|
1622 |
+
"Emails."
|
1623 |
|
1624 |
+
#: ../settings/settings-edit.php:282
|
1625 |
+
msgid "Select user roles who can access following menus. Only Admin can change this."
|
1626 |
+
msgstr ""
|
1627 |
+
"Wähle die Benutzerrollen die auf die folgenden Menüs zugreifen dürfen. Nur "
|
1628 |
+
"ein Admin kann das ändern."
|
1629 |
|
1630 |
+
#: ../settings/settings-edit.php:288
|
1631 |
+
msgid "Subscribers Menu"
|
1632 |
+
msgstr "Menü Abonnenten"
|
1633 |
|
1634 |
+
#: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
|
1635 |
+
#: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
|
1636 |
+
#: settings/settings-edit.php:340
|
1637 |
+
msgid "Administrator Only"
|
1638 |
+
msgstr "Nur für Administratoren"
|
1639 |
|
1640 |
+
#: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
|
1641 |
+
#: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
|
1642 |
+
#: settings/settings-edit.php:341
|
1643 |
+
msgid "Administrator/Editor"
|
1644 |
+
msgstr "Für Administratoren / Editoren"
|
1645 |
|
1646 |
+
#: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
|
1647 |
+
#: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
|
1648 |
+
#: settings/settings-edit.php:342
|
1649 |
+
msgid "Administrator/Editor/Author/Contributor"
|
1650 |
+
msgstr "Für Administratoren / Editoren / Autoren / Mitarbeiter"
|
1651 |
|
1652 |
+
#: ../settings/settings-edit.php:300
|
1653 |
+
msgid "Templates Menu"
|
1654 |
+
msgstr "Vorlagen Menü"
|
1655 |
|
1656 |
+
#: ../settings/settings-edit.php:312
|
1657 |
+
msgid "Post Notifications Menu"
|
1658 |
+
msgstr "Menü Benachrichtigungen"
|
1659 |
|
1660 |
+
#: ../settings/settings-edit.php:336
|
1661 |
+
msgid "Reports Menu"
|
1662 |
+
msgstr "Menü Berichte"
|
|
|
|
|
1663 |
|
1664 |
+
#: ../settings/settings-edit.php:353
|
1665 |
+
msgid "Cron job URL"
|
1666 |
+
msgstr "Cron Job URL"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1667 |
|
1668 |
+
#: ../settings/settings-edit.php:354
|
1669 |
+
msgid ""
|
1670 |
+
"This is your Cron Job URL. It is a readonly field and you are advised not to "
|
1671 |
+
"modify it."
|
1672 |
+
msgstr "Das ist Deine Cron Job URL. Es wird empfohlen diese nicht zu ändern."
|
1673 |
|
1674 |
+
#: ../settings/settings-edit.php:363
|
1675 |
+
msgid "Email Count"
|
1676 |
+
msgstr "Anzahl Emails"
|
1677 |
|
1678 |
+
#: ../settings/settings-edit.php:364
|
1679 |
+
msgid "Number of emails that you want to trigger per hour."
|
1680 |
+
msgstr "Anzahl der Emails die pro Stunde verschickt werden sollen."
|
1681 |
|
1682 |
+
#: ../settings/settings-edit.php:369
|
1683 |
+
msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
|
1684 |
+
msgstr ""
|
1685 |
+
"(Dein Hoster hat Limitierungen. Wir empfehlen 50 Emails pro Stunde um auf "
|
1686 |
+
"der sicheren Seite zu sein.)"
|
1687 |
|
1688 |
+
#: ../settings/settings-edit.php:374
|
1689 |
+
msgid "Cron Report"
|
1690 |
+
msgstr "Cron Bericht"
|
1691 |
|
1692 |
+
#: ../settings/settings-edit.php:375
|
1693 |
msgid ""
|
1694 |
+
"Email to admin whenever a cron URL is triggered from your server.<br "
|
1695 |
+
"/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
|
1696 |
msgstr ""
|
1697 |
+
"Email an den Admin wenn eine CRON-URL auf dem Server ausgelöst wurde.<br "
|
1698 |
+
"/>Verfügbare Schlüsselworte: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
|
1699 |
|
1700 |
+
#: ../settings/settings-edit.php:385
|
1701 |
+
msgid "What is Cron (auto emails) and how to setup Cron Job?"
|
1702 |
+
msgstr "Was ist Cron (Auto-Mailversand) und wie konfiguriere ich einen Cron Job?"
|
1703 |
|
1704 |
+
#: ../settings/settings-edit.php:386
|
1705 |
+
msgid ""
|
1706 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
1707 |
+
"schedule-cron-emails/?"
|
1708 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
|
1709 |
+
"Cron?</a>"
|
1710 |
+
msgstr ""
|
1711 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
1712 |
+
"schedule-cron-emails/?"
|
1713 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Was ist "
|
1714 |
+
"Cron?</a>"
|
1715 |
|
1716 |
+
#: ../settings/settings-edit.php:387
|
1717 |
+
msgid ""
|
1718 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
1719 |
+
"schedule-cron-emails-in-cpanel/?"
|
1720 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
|
1721 |
+
"job in cPanel</a>"
|
1722 |
+
msgstr ""
|
1723 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
1724 |
+
"schedule-cron-emails-in-cpanel/?"
|
1725 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Cron Jobs "
|
1726 |
+
"in cPanel konfigurieren</a>"
|
1727 |
|
1728 |
+
#: ../settings/settings-edit.php:388
|
1729 |
msgid ""
|
1730 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
1731 |
+
"schedule-cron-emails-in-parallels-plesk/?"
|
1732 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
|
1733 |
+
"job in Plesk</a>"
|
1734 |
msgstr ""
|
1735 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
1736 |
+
"schedule-cron-emails-in-parallels-plesk/?"
|
1737 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Cron Jobs "
|
1738 |
+
"in Plesk konfigurieren</a>"
|
1739 |
|
1740 |
+
#: ../settings/settings-edit.php:389
|
1741 |
msgid ""
|
1742 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
|
1743 |
+
"if-hosting-doesnt-support-cron-jobs/?"
|
1744 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
|
1745 |
+
"does not support cron jobs?</a>"
|
1746 |
msgstr ""
|
1747 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
|
1748 |
+
"if-hosting-doesnt-support-cron-jobs/?"
|
1749 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Dein "
|
1750 |
+
"Hoster unterstützt keine Cron Jobs?</a>"
|
1751 |
|
1752 |
+
#: ../settings/settings-edit.php:504
|
1753 |
+
msgid "Please enter sender of notifications from name."
|
1754 |
+
msgstr "Bitte wähle den Absender der Benachrichtigung über den Namen."
|
|
|
1755 |
|
1756 |
+
#: ../settings/settings-edit.php:509
|
1757 |
+
msgid "Please enter sender of notifications from email."
|
1758 |
+
msgstr "Bitte wähle den Absender der Benachrichtigung über die Emailadresse."
|
1759 |
|
1760 |
+
#: ../settings/settings-edit.php:553
|
1761 |
+
msgid "Please enter valid mail count."
|
1762 |
+
msgstr "Bitte gib eine gültige Mailanzahl ein."
|
1763 |
|
1764 |
+
#: ../settings/settings-edit.php:566
|
1765 |
+
msgid "Settings Saved."
|
1766 |
+
msgstr "Einstellungen gesichert."
|
1767 |
|
1768 |
+
#: ../settings/settings-edit.php:569
|
1769 |
+
msgid "Oops, unable to update."
|
1770 |
+
msgstr "Oops.. Update nicht möglich."
|
|
|
|
|
|
|
|
|
1771 |
|
1772 |
+
#: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
|
1773 |
+
#: php:54
|
1774 |
+
msgid "Please enter subscriber email address."
|
1775 |
+
msgstr "Bitte gib die Emailadresse des Abonnenten ein."
|
1776 |
+
|
1777 |
+
#: ../subscribers/view-subscriber-add.php:52
|
1778 |
+
msgid "Please select or create your group for this email."
|
1779 |
+
msgstr "Bitte wähle oder erstelle ein Gruppe für diesen Abonnenten."
|
1780 |
+
|
1781 |
+
#: ../subscribers/view-subscriber-add.php:59
|
1782 |
msgid ""
|
1783 |
+
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1784 |
+
"the group name."
|
1785 |
msgstr ""
|
1786 |
+
"Fehler: Sonderzeichen (['^$%&*()}{@#~?><>,|=_+\\\"]) sind in Gruppennamen "
|
1787 |
+
"nicht zugelassen."
|
1788 |
|
1789 |
+
#: ../subscribers/view-subscriber-add.php:69
|
1790 |
+
msgid "Subscriber has been saved."
|
1791 |
+
msgstr "Abonnent wurde gespeichert."
|
1792 |
|
1793 |
+
#: ../subscribers/view-subscriber-add.php:71
|
1794 |
+
msgid "Subscriber already exists."
|
1795 |
+
msgstr "Abonnent existiert bereits."
|
1796 |
|
1797 |
+
#: ../subscribers/view-subscriber-add.php:74
|
1798 |
+
msgid "Invalid Email."
|
1799 |
+
msgstr "Ungültige Emailadresse."
|
1800 |
|
1801 |
+
#: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
|
1802 |
+
#: php:109 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
|
1803 |
+
#: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
|
1804 |
+
#: subscribers/view-subscriber-sync.php:89
|
1805 |
+
msgid "Add New Subscriber"
|
1806 |
+
msgstr "Neu hinzufügen"
|
1807 |
|
1808 |
+
#: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
|
1809 |
+
#: php:110 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
|
1810 |
+
#: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
|
1811 |
+
#: subscribers/view-subscriber-sync.php:90
|
1812 |
+
msgid "Import"
|
1813 |
+
msgstr "Import"
|
1814 |
|
1815 |
+
#: ../subscribers/view-subscriber-add.php:116 ../subscribers/view-subscriber-edit.
|
1816 |
+
#: php:111 ../subscribers/view-subscriber-import.php:147 ../subscribers/view-
|
1817 |
+
#: subscriber-show.php:245 ../subscribers/view-subscriber-sync.php:91
|
1818 |
+
msgid "Export"
|
1819 |
+
msgstr "Export"
|
1820 |
|
1821 |
+
#: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
|
1822 |
+
#: php:112 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
|
1823 |
+
#: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
|
1824 |
+
#: subscribers/view-subscriber-sync.php:143
|
1825 |
+
msgid "Sync"
|
1826 |
+
msgstr "Synchronisieren"
|
1827 |
|
1828 |
+
#: ../subscribers/view-subscriber-add.php:127
|
1829 |
+
msgid "Enter Subscriber's Full name"
|
1830 |
+
msgstr "Gib den Namen des Abonnenten ein"
|
1831 |
|
1832 |
+
#: ../subscribers/view-subscriber-add.php:137
|
1833 |
+
msgid "Enter Subscriber's Email Address"
|
1834 |
+
msgstr "Gib die Emailadresse des Abonnenten ein"
|
1835 |
|
1836 |
+
#: ../subscribers/view-subscriber-add.php:147
|
1837 |
+
msgid "Select Subscriber's Status"
|
1838 |
+
msgstr "Wähle den Status des Abonnenten"
|
1839 |
|
1840 |
+
#: ../subscribers/view-subscriber-add.php:152 ../subscribers/view-subscriber-edit.
|
1841 |
+
#: php:147 ../subscribers/view-subscriber-import.php:178 ../subscribers/view-
|
1842 |
+
#: subscriber-show.php:323 ../subscribers/view-subscriber-show.php:353
|
1843 |
+
msgid "Confirmed"
|
1844 |
+
msgstr "Bestätigt"
|
1845 |
|
1846 |
+
#: ../subscribers/view-subscriber-add.php:153 ../subscribers/view-subscriber-edit.
|
1847 |
+
#: php:148 ../subscribers/view-subscriber-import.php:179 ../subscribers/view-
|
1848 |
+
#: subscriber-show.php:324 ../subscribers/view-subscriber-show.php:354
|
1849 |
+
msgid "Unconfirmed"
|
1850 |
+
msgstr "Unbestätigt"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1851 |
|
1852 |
+
#: ../subscribers/view-subscriber-add.php:154 ../subscribers/view-subscriber-edit.
|
1853 |
+
#: php:149 ../subscribers/view-subscriber-import.php:180 ../subscribers/view-
|
1854 |
+
#: subscriber-show.php:325 ../subscribers/view-subscriber-show.php:355
|
1855 |
+
msgid "Unsubscribed"
|
1856 |
+
msgstr "Abgemeldet"
|
1857 |
|
1858 |
+
#: ../subscribers/view-subscriber-add.php:162
|
1859 |
+
msgid "Select (or) Create Group for Subscriber"
|
1860 |
+
msgstr "Wähle oder erstelle die Gruppe für den Abonnenten"
|
1861 |
|
1862 |
+
#: ../subscribers/view-subscriber-add.php:178 ../subscribers/view-subscriber-
|
1863 |
+
#: import.php:205
|
1864 |
+
msgid "(or)"
|
1865 |
+
msgstr "(oder)"
|
1866 |
|
1867 |
+
#: ../subscribers/view-subscriber-add.php:187
|
1868 |
+
msgid "Add Subscriber"
|
1869 |
+
msgstr "Abonnent hinzufügen"
|
1870 |
|
1871 |
+
#: ../subscribers/view-subscriber-edit.php:64
|
1872 |
+
msgid "Error: Special characters are not allowed in the group name."
|
1873 |
+
msgstr "Fehler: Sonderzeichen sind in Gruppennamen nicht erlaubt."
|
1874 |
|
1875 |
+
#: ../subscribers/view-subscriber-edit.php:74
|
1876 |
+
msgid "Subscriber details updated."
|
1877 |
+
msgstr "Details des Abonnenten aktualisiert."
|
1878 |
|
1879 |
+
#: ../subscribers/view-subscriber-edit.php:76
|
1880 |
+
msgid "Subscriber already exists for this group."
|
1881 |
+
msgstr "Diesen Abonnenten gibt es in dieser Gruppe schon."
|
1882 |
|
1883 |
+
#: ../subscribers/view-subscriber-edit.php:108
|
1884 |
+
msgid "Edit Subscriber"
|
1885 |
+
msgstr "Abonnent bearbeiten"
|
1886 |
|
1887 |
+
#: ../subscribers/view-subscriber-edit.php:122
|
1888 |
+
msgid "Subscriber's Full Name"
|
1889 |
+
msgstr "Name des Abonnenten"
|
1890 |
|
1891 |
+
#: ../subscribers/view-subscriber-edit.php:132
|
1892 |
+
msgid "Subscriber's Email Address"
|
1893 |
+
msgstr "Email des Abonnenten"
|
1894 |
|
1895 |
+
#: ../subscribers/view-subscriber-edit.php:142
|
1896 |
+
msgid "Update Subscriber's Status"
|
1897 |
+
msgstr "Status des Abonnenten aktualisieren"
|
1898 |
|
1899 |
+
#: ../subscribers/view-subscriber-edit.php:157
|
1900 |
+
msgid "Update Subscriber's Group"
|
1901 |
+
msgstr "Gruppe des Abonnenten aktualisieren"
|
1902 |
|
1903 |
+
#: ../subscribers/view-subscriber-export.php:12
|
1904 |
+
msgid ""
|
1905 |
+
"Oops! Looks like you are not the site administrator.<br><br>Only the site "
|
1906 |
+
"administrator can export subscriber list."
|
1907 |
+
msgstr ""
|
1908 |
+
"Oh. Es sieht aus als ob Du nicht der Administrator dieser Seite bist."
|
1909 |
+
"<br><br>Nur der Administrator kann die Abonnentenliste exportieren."
|
1910 |
|
1911 |
+
#: ../subscribers/view-subscriber-export.php:14
|
1912 |
+
msgid "Go back to Subscribers dashboard"
|
1913 |
+
msgstr "Zurück zum Dashboard der Abonnenten"
|
|
|
1914 |
|
1915 |
+
#: ../subscribers/view-subscriber-export.php:47
|
1916 |
+
msgid "Export Email Addresses"
|
1917 |
+
msgstr "Emailadressen exportieren"
|
|
|
1918 |
|
1919 |
+
#: ../subscribers/view-subscriber-export.php:59 ../subscribers/view-subscriber-
|
1920 |
+
#: export.php:67
|
1921 |
+
msgid "Type of List to Export"
|
1922 |
+
msgstr "Listentyp für den Export"
|
1923 |
|
1924 |
+
#: ../subscribers/view-subscriber-export.php:60 ../subscribers/view-subscriber-
|
1925 |
+
#: export.php:68
|
1926 |
+
msgid "Total Emails Count"
|
1927 |
+
msgstr "Gesamte Anzahl Emails"
|
1928 |
|
1929 |
+
#: ../subscribers/view-subscriber-export.php:74
|
1930 |
+
msgid "1"
|
1931 |
+
msgstr "1"
|
|
|
1932 |
|
1933 |
+
#: ../subscribers/view-subscriber-export.php:75
|
1934 |
+
msgid "All Subscribers"
|
1935 |
+
msgstr "Alle Abonnenten"
|
|
|
1936 |
|
1937 |
+
#: ../subscribers/view-subscriber-export.php:77 ../subscribers/view-subscriber-
|
1938 |
+
#: export.php:83 ../subscribers/view-subscriber-export.php:89 ../subscribers/view-
|
1939 |
+
#: subscriber-export.php:95 ../subscribers/view-subscriber-export.php:101
|
1940 |
+
msgid "Click to Export in CSV"
|
1941 |
+
msgstr "Klicken um nach CSV zu exportieren"
|
1942 |
|
1943 |
+
#: ../subscribers/view-subscriber-export.php:80
|
1944 |
+
msgid "2"
|
1945 |
+
msgstr "2"
|
|
|
1946 |
|
1947 |
+
#: ../subscribers/view-subscriber-export.php:81
|
1948 |
+
msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
|
1949 |
+
msgstr "Aktive Abonnenten (Status Bestätigt & Einfaches Opt In)"
|
|
|
1950 |
|
1951 |
+
#: ../subscribers/view-subscriber-export.php:86
|
1952 |
+
msgid "3"
|
1953 |
+
msgstr "3"
|
|
|
1954 |
|
1955 |
+
#: ../subscribers/view-subscriber-export.php:87
|
1956 |
+
msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
|
1957 |
+
msgstr "Inaktive Abonnenten (Status: Unbestätigt & Abgemeldet)"
|
|
|
|
|
|
|
|
|
|
|
1958 |
|
1959 |
+
#: ../subscribers/view-subscriber-export.php:92
|
1960 |
+
msgid "4"
|
1961 |
+
msgstr "4"
|
|
|
1962 |
|
1963 |
+
#: ../subscribers/view-subscriber-export.php:93
|
1964 |
+
msgid "WordPress Registered Users"
|
1965 |
+
msgstr "Registrierte WordPress Benutzer"
|
|
|
1966 |
|
1967 |
+
#: ../subscribers/view-subscriber-export.php:98
|
1968 |
+
msgid "5"
|
1969 |
+
msgstr "5"
|
|
|
1970 |
|
1971 |
+
#: ../subscribers/view-subscriber-export.php:99
|
1972 |
+
msgid "Commented Authors"
|
1973 |
+
msgstr "Kommentierte Autoren"
|
|
|
1974 |
|
1975 |
+
#: ../subscribers/view-subscriber-import.php:45
|
|
|
1976 |
msgid ""
|
1977 |
+
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1978 |
+
"the Group name."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1979 |
msgstr ""
|
1980 |
+
"Fehler: Sonderzeichen (['^$%&*()}{@#~?><>,|=_+\\\"]) sind in Gruppennamen "
|
1981 |
+
"nicht zugelassen."
|
1982 |
|
1983 |
+
#: ../subscribers/view-subscriber-import.php:95
|
1984 |
+
msgid "email imported."
|
1985 |
+
msgstr "Email(s) importiert."
|
|
|
1986 |
|
1987 |
+
#: ../subscribers/view-subscriber-import.php:96
|
1988 |
+
msgid "email already exists."
|
1989 |
+
msgstr "Email existiert bereits."
|
|
|
1990 |
|
1991 |
+
#: ../subscribers/view-subscriber-import.php:97
|
1992 |
+
msgid "email are invalid."
|
1993 |
+
msgstr "Email(s) sind ungültig."
|
|
|
1994 |
|
1995 |
+
#: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
|
1996 |
+
#: import.php:129
|
1997 |
+
msgid "Click here"
|
1998 |
+
msgstr "Klicke hier"
|
1999 |
|
2000 |
+
#: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
|
2001 |
+
#: import.php:129
|
2002 |
+
msgid " to view details."
|
2003 |
+
msgstr " um Details zu sehen."
|
|
|
|
|
|
|
|
|
2004 |
|
2005 |
+
#: ../subscribers/view-subscriber-import.php:108
|
2006 |
+
msgid "File Upload Failed."
|
2007 |
+
msgstr "Dateiupload fehlgeschlagen."
|
|
|
2008 |
|
2009 |
+
#: ../subscribers/view-subscriber-import.php:145
|
2010 |
+
msgid "Import Email Addresses"
|
2011 |
+
msgstr "Emailadressen importieren"
|
|
|
2012 |
|
2013 |
+
#: ../subscribers/view-subscriber-import.php:158
|
2014 |
+
msgid "Select CSV file"
|
2015 |
+
msgstr "CSV-Datei auswählen"
|
|
|
2016 |
|
2017 |
+
#: ../subscribers/view-subscriber-import.php:160
|
2018 |
+
msgid "Check CSV structure "
|
2019 |
+
msgstr "Überprüfe die CSV-Struktur "
|
|
|
2020 |
|
2021 |
+
#: ../subscribers/view-subscriber-import.php:161
|
2022 |
+
msgid "from here"
|
2023 |
+
msgstr "hier"
|
|
|
2024 |
|
2025 |
+
#: ../subscribers/view-subscriber-import.php:172
|
2026 |
+
msgid "Select Subscribers Email Status"
|
2027 |
+
msgstr "Wähle den Emailstatus des Abonnenten"
|
|
|
2028 |
|
2029 |
+
#: ../subscribers/view-subscriber-import.php:188
|
2030 |
+
msgid "Select (or) Create Group for Subscribers"
|
2031 |
+
msgstr "Wähle oder erstelle die Gruppe für die Abonnenten"
|
|
|
2032 |
|
2033 |
+
#: ../subscribers/view-subscriber-show.php:45
|
2034 |
+
msgid "Selected details does not exists."
|
2035 |
+
msgstr "Die gewählten Details existieren nicht."
|
|
|
2036 |
|
2037 |
+
#: ../subscribers/view-subscriber-show.php:56 ../subscribers/view-subscriber-show.
|
2038 |
+
#: php:95
|
2039 |
+
msgid "Record deleted."
|
2040 |
+
msgstr "Eintrag gelöscht."
|
2041 |
|
2042 |
+
#: ../subscribers/view-subscriber-show.php:67
|
2043 |
+
msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
|
2044 |
+
msgstr ""
|
2045 |
+
"Um eine Bestätigungsmail zu verschicken muss Opt In in Double Opt In "
|
2046 |
+
"geändert werden."
|
2047 |
+
|
2048 |
+
#: ../subscribers/view-subscriber-show.php:75 ../subscribers/view-subscriber-show.
|
2049 |
+
#: php:134
|
2050 |
+
msgid "Confirmation emails resent successfully."
|
2051 |
+
msgstr "Die Bestätigungsmails wurden erfolgreich erneut verschickt."
|
2052 |
|
2053 |
+
#: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
|
2054 |
+
#: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
|
2055 |
+
#: subscriber-show.php:217
|
2056 |
+
msgid "No record was selected."
|
2057 |
+
msgstr "Kein Eintrag ausgewählt."
|
2058 |
|
2059 |
+
#: ../subscribers/view-subscriber-show.php:115
|
2060 |
+
msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
|
2061 |
+
msgstr ""
|
2062 |
+
"Um eine Bestätigungsmail zu verschicken muss Opt In in Double Opt In "
|
2063 |
+
"geändert werden."
|
2064 |
|
2065 |
+
#: ../subscribers/view-subscriber-show.php:164
|
2066 |
+
msgid "Subscribers Group updated."
|
2067 |
+
msgstr "Abonnentengruppe aktualisiert."
|
|
|
2068 |
|
2069 |
+
#: ../subscribers/view-subscriber-show.php:169
|
2070 |
+
msgid "Please select New group to update."
|
2071 |
+
msgstr "Bitte wähle die neue Gruppe aus."
|
|
|
2072 |
|
2073 |
+
#: ../subscribers/view-subscriber-show.php:203
|
2074 |
+
msgid "Subscribers Status updated."
|
2075 |
+
msgstr "Abonnentenstatus aktualisiert."
|
|
|
2076 |
|
2077 |
+
#: ../subscribers/view-subscriber-show.php:208
|
2078 |
+
msgid "Please select New Status to update."
|
2079 |
+
msgstr "Bitte wähle den neuen Status aus."
|
|
|
2080 |
|
2081 |
+
#: ../subscribers/view-subscriber-show.php:256
|
2082 |
+
msgid "Total Subscribers: "
|
2083 |
+
msgstr "Abonnenten gesamt: "
|
|
|
2084 |
|
2085 |
+
#: ../subscribers/view-subscriber-show.php:258
|
2086 |
+
#, php-format
|
2087 |
+
msgid "Active Subscribers: %s"
|
2088 |
+
msgstr "Abonnenten aktiv: %s"
|
2089 |
|
2090 |
+
#: ../subscribers/view-subscriber-show.php:288
|
2091 |
+
msgid "Email Address"
|
2092 |
+
msgstr "Emailadresse"
|
|
|
2093 |
|
2094 |
+
#: ../subscribers/view-subscriber-show.php:291
|
2095 |
+
msgid "Group"
|
2096 |
+
msgstr "Gruppe"
|
|
|
2097 |
|
2098 |
+
#: ../subscribers/view-subscriber-show.php:292
|
2099 |
+
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
2100 |
+
msgstr "Anmeldedatum und -Zeit<br>(J-M-T S:M:S)"
|
|
|
2101 |
|
2102 |
+
#: ../subscribers/view-subscriber-show.php:300
|
2103 |
+
msgid "Bulk Actions"
|
2104 |
+
msgstr "Mehrfachaktionen"
|
|
|
2105 |
|
2106 |
+
#: ../subscribers/view-subscriber-show.php:302 ../subscribers/view-subscriber-
|
2107 |
+
#: show.php:413
|
2108 |
+
msgid "Resend Confirmation"
|
2109 |
+
msgstr "Benachrichtigung erneut versenden"
|
2110 |
|
2111 |
+
#: ../subscribers/view-subscriber-show.php:304
|
2112 |
+
msgid "Update Subscribers Status"
|
2113 |
+
msgstr "Abonnentenstatus aktualisieren"
|
|
|
2114 |
|
2115 |
+
#: ../subscribers/view-subscriber-show.php:307
|
2116 |
+
msgid "Select Group"
|
2117 |
+
msgstr "Wähle Gruppe"
|
|
|
|
|
|
|
|
|
2118 |
|
2119 |
+
#: ../subscribers/view-subscriber-show.php:322
|
2120 |
+
msgid "Select Status"
|
2121 |
+
msgstr "Status wählen"
|
2122 |
|
2123 |
+
#: ../subscribers/view-subscriber-show.php:328
|
2124 |
+
msgid "Apply"
|
2125 |
+
msgstr "Anwenden"
|
2126 |
|
2127 |
+
#: ../subscribers/view-subscriber-show.php:335
|
2128 |
+
msgid "All Groups"
|
2129 |
+
msgstr "Alle Gruppen"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2130 |
|
2131 |
+
#: ../subscribers/view-subscriber-show.php:352
|
2132 |
+
msgid "All Status"
|
2133 |
+
msgstr "Alle Stati"
|
|
|
2134 |
|
2135 |
+
#: ../subscribers/view-subscriber-show.php:359
|
2136 |
+
msgid "1 to 500 emails"
|
2137 |
+
msgstr "1 bis 500 Emails"
|
2138 |
|
2139 |
+
#: ../subscribers/view-subscriber-show.php:360
|
2140 |
+
msgid "501 to 1000"
|
2141 |
+
msgstr "501 bis 1000"
|
2142 |
|
2143 |
+
#: ../subscribers/view-subscriber-show.php:361
|
2144 |
+
msgid "1001 to 1500"
|
2145 |
+
msgstr "1001 bis 1500"
|
2146 |
|
2147 |
+
#: ../subscribers/view-subscriber-show.php:362
|
2148 |
+
msgid "1501 to 2000"
|
2149 |
+
msgstr "1501 bis 2000"
|
2150 |
|
2151 |
+
#: ../subscribers/view-subscriber-show.php:363
|
2152 |
+
msgid "2001 to 4000"
|
2153 |
+
msgstr "2001 bis 4000"
|
2154 |
|
2155 |
+
#: ../subscribers/view-subscriber-show.php:364
|
2156 |
+
msgid "4001 to 6000"
|
2157 |
+
msgstr "4001 bis 6000"
|
2158 |
|
2159 |
+
#: ../subscribers/view-subscriber-show.php:365
|
2160 |
+
msgid "6001 to 10000"
|
2161 |
+
msgstr "6001 bis 10000"
|
2162 |
|
2163 |
+
#: ../subscribers/view-subscriber-show.php:366
|
2164 |
+
msgid "Display All"
|
2165 |
+
msgstr "Alle anzeigen"
|
2166 |
|
2167 |
+
#: ../subscribers/view-subscriber-sync.php:36
|
2168 |
+
msgid "Please select default group to newly registered user."
|
2169 |
+
msgstr "Bitte wähle die Standardgruppe für neu registrierte Benutzer."
|
2170 |
|
2171 |
+
#: ../subscribers/view-subscriber-sync.php:50
|
2172 |
+
msgid "Emails Successfully Synced."
|
2173 |
+
msgstr "Emails erfolgreich synchronisiert."
|
2174 |
|
2175 |
+
#: ../subscribers/view-subscriber-sync.php:88
|
2176 |
+
msgid "Sync Email"
|
2177 |
+
msgstr "Email synchronisieren"
|
2178 |
|
2179 |
+
#: ../subscribers/view-subscriber-sync.php:101
|
2180 |
+
msgid "Sync newly registered users to subscribers list"
|
2181 |
+
msgstr "Synchronisiere neu registrierte Benutzer zur Liste der Abonnenten"
|
2182 |
|
2183 |
+
#: ../subscribers/view-subscriber-sync.php:114
|
2184 |
+
msgid "Select group to add newly registered users to"
|
2185 |
+
msgstr "Wähle die Gruppe zu der neu registrierte Benutzer hinzugefügt werden"
|
2186 |
|
2187 |
+
#: ../templates/template-preview.php:31
|
2188 |
+
msgid "Template Preview"
|
2189 |
+
msgstr "Vorlage Vorschau"
|
2190 |
|
2191 |
+
#: ../templates/template-preview.php:39
|
2192 |
+
msgid "This is how your email may look."
|
2193 |
+
msgstr "So könnte die Email aussehen."
|
2194 |
|
2195 |
+
#: ../templates/template-preview.php:41
|
|
|
2196 |
msgid ""
|
2197 |
+
"<br><br>This Post Notification preview has replaced keywords from your last "
|
2198 |
+
"published blog post."
|
|
|
2199 |
msgstr ""
|
2200 |
+
"<br><br>Diese Beitragsbenachrichtigung hat mittlerweile ersetzte "
|
2201 |
+
"Schlüsselworte deines letzten veröffentlichten Blogbeitrags."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2202 |
|
2203 |
+
#: ../templates/template-preview.php:43
|
2204 |
+
msgid ""
|
2205 |
+
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
2206 |
+
"content differently. So there could be a slight variation on how your "
|
2207 |
+
"customer will view the email content."
|
2208 |
+
msgstr ""
|
2209 |
+
"<br><br>Hinweis: Diverse Emailanbieter (wie GMail, Yahoo, usw.) zeigen den "
|
2210 |
+
"Inhalt von Emails unterschiedlich an. Von daher kann es zu kleineren "
|
2211 |
+
"Abweichungen kommen wie die Abonnenten den Inhalt der Email sehen."
|
2212 |
|
2213 |
+
#. Plugin Name of the plugin/theme
|
2214 |
+
msgid "Email Subscribers & Newsletters"
|
2215 |
+
msgstr "Email Subscribers & Newsletters"
|
2216 |
|
2217 |
+
#. URI of the plugin
|
2218 |
+
msgid "https://www.icegram.com"
|
2219 |
+
msgstr "https://www.icegram.com"
|
2220 |
|
2221 |
+
#. Description of the plugin/theme
|
2222 |
+
msgid ""
|
2223 |
+
"Add subscription forms on website, send HTML newsletters & automatically "
|
2224 |
+
"notify subscribers about new blog posts once it is published."
|
2225 |
+
msgstr ""
|
2226 |
+
"Füge das Anmeldeformular zur Webseite hinzu, sende HTML Newsletter & "
|
2227 |
+
"automatische Benachrichtigungen an die Abonnenten sobald neue Beiträge "
|
2228 |
+
"veröffentlicht werden."
|
2229 |
|
2230 |
+
#: ../email-subscribers.php:95
|
2231 |
+
msgctxt "timezone date format"
|
2232 |
+
msgid "Y-m-d H:i:s"
|
2233 |
+
msgstr "J-M-T S:M:S"
|
languages/email-subscribers-es_ES.mo
CHANGED
Binary file
|
languages/email-subscribers-es_ES.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.4.
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Spanish (Spain)\n"
|
@@ -23,104 +23,125 @@ msgstr ""
|
|
23 |
"X-Poedit-SearchPath-0: .\n"
|
24 |
"X-Poedit-SearchPathExcluded-0: *.js"
|
25 |
|
26 |
-
#: ../
|
27 |
-
|
|
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: ../
|
31 |
-
|
32 |
-
msgid "
|
|
|
|
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: ../
|
36 |
-
|
37 |
-
"
|
38 |
-
"Emails."
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: ../
|
|
|
42 |
msgid ""
|
43 |
-
"
|
44 |
-
"
|
|
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: ../
|
|
|
48 |
msgid ""
|
49 |
-
"
|
50 |
-
"
|
|
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: ../
|
54 |
msgid ""
|
55 |
-
"
|
56 |
-
"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: ../
|
60 |
-
msgid ""
|
61 |
-
"Content for the subscriber welcome email whenever a user's email is either "
|
62 |
-
"confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
|
63 |
-
"<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: ../
|
67 |
-
msgid ""
|
68 |
-
"The text for the unsubscribe link. This text is automatically added with "
|
69 |
-
"unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: ../
|
73 |
-
|
|
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: ../
|
77 |
-
msgid ""
|
78 |
-
"Email to admin whenever a cron URL is triggered from your server.<br "
|
79 |
-
"/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: ../
|
83 |
-
|
84 |
-
msgid "Confirmation emails resent successfully."
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: ../
|
88 |
-
msgid "
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: ../
|
92 |
-
msgid ""
|
93 |
-
"Oops! Looks like you are not the site administrator.<br><br>Only the site "
|
94 |
-
"administrator can export subscriber list."
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: ../
|
98 |
-
msgid "
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: ../
|
102 |
-
msgid "
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: ../
|
106 |
-
msgid "
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: ../
|
110 |
-
msgid "
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: ../
|
114 |
-
msgid ""
|
115 |
-
"<br><br>This Post Notification preview has replaced keywords from your last "
|
116 |
-
"published blog post."
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: ../
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
120 |
msgid ""
|
121 |
-
"
|
122 |
-
"
|
123 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
msgstr ""
|
125 |
|
126 |
#: ../help/help.php:185
|
@@ -154,2097 +175,2042 @@ msgstr ""
|
|
154 |
msgid "General Plugin Configuration"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: ../help/help.php:
|
|
|
|
|
|
|
|
|
158 |
msgid "How to check sent emails?"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: ../help/help.php:
|
162 |
msgid "Create and Send Newsletter Emails"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: ../help/help.php:
|
166 |
msgid "Keywords in the Newsletters"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: ../help/help.php:
|
170 |
msgid "Create and Send Post Notification Emails when new posts are published"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: ../help/help.php:
|
174 |
msgid "What is Cron and how to Schedule Cron Emails?"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: ../help/help.php:
|
178 |
msgid "Using our <b>free</b> "
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: ../help/help.php:
|
182 |
msgid ""
|
183 |
"Using Email Subscribers you can achieve this easily with our <b>free</b> "
|
184 |
"plugin "
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: ../help/help.php:
|
188 |
msgid "Email subscribers easily integrates with another <b>free</b> plugin "
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: ../
|
192 |
-
|
193 |
-
msgid "Templates"
|
194 |
-
msgstr ""
|
195 |
-
|
196 |
-
#: ../classes/es-register.php:201
|
197 |
-
msgctxt "view-subscriber-enhanced-select"
|
198 |
-
msgid ""
|
199 |
-
"Do you want to resend confirmation email? Also please note, this will update "
|
200 |
-
"subscriber current status to 'Unconfirmed'."
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: ../
|
204 |
-
|
205 |
-
msgid "
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: ../
|
209 |
-
msgctxt "widget-enhanced-select"
|
210 |
msgid ""
|
211 |
-
"
|
212 |
-
"
|
213 |
-
"spam folder."
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: ../
|
217 |
-
msgctxt "widget-page-enhanced-select"
|
218 |
msgid ""
|
219 |
-
"
|
220 |
-
"
|
221 |
-
"spam folder."
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: ../
|
225 |
msgid ""
|
226 |
-
"
|
227 |
-
"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: ../
|
231 |
-
msgid "
|
|
|
|
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: ../
|
235 |
-
msgid "
|
|
|
|
|
|
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: ../
|
239 |
-
|
240 |
-
|
|
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: ../
|
244 |
-
msgid "
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: ../
|
248 |
-
msgid "
|
|
|
|
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: ../
|
252 |
-
msgid "
|
|
|
|
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: ../
|
256 |
-
msgid "
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: ../
|
260 |
-
|
|
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: ../
|
264 |
-
msgid "
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: ../
|
268 |
-
msgid "
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: ../
|
272 |
-
msgid "
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: ../
|
276 |
-
msgid "
|
|
|
|
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: ../
|
280 |
-
msgid "
|
|
|
|
|
|
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: ../classes/es-
|
284 |
-
msgid "
|
285 |
-
msgstr ""
|
286 |
|
287 |
-
#: ../classes/es-
|
288 |
-
msgid "
|
289 |
-
msgstr ""
|
290 |
|
291 |
-
#: ../classes/es-
|
292 |
-
msgid "
|
293 |
-
msgstr ""
|
294 |
|
295 |
-
#: ../classes/es-
|
296 |
-
|
297 |
-
|
298 |
-
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
299 |
-
"{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
|
300 |
-
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
301 |
-
msgstr ""
|
302 |
|
303 |
-
#: ../classes/es-
|
304 |
-
|
305 |
-
|
306 |
-
msgstr ""
|
307 |
|
308 |
-
#: ../
|
309 |
-
msgid "
|
310 |
-
msgstr "
|
311 |
|
312 |
-
#: ../
|
313 |
-
msgid "
|
314 |
-
msgstr "
|
315 |
|
316 |
-
#: ../
|
317 |
-
msgid "
|
318 |
-
msgstr "
|
319 |
-
|
320 |
-
#: ../notification/notification-add.php:71
|
321 |
-
msgid "Notification successfully created. "
|
322 |
-
msgstr "La notificación se ha creado con éxito. "
|
323 |
-
|
324 |
-
#: ../notification/notification-add.php:112
|
325 |
-
msgid "Add Notification"
|
326 |
-
msgstr "Añadir Notificación"
|
327 |
-
|
328 |
-
#: ../notification/notification-add.php:113 ../notification/notification-show.php:
|
329 |
-
#: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
|
330 |
-
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
331 |
-
#: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
|
332 |
-
#: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
333 |
-
#: export.php:51 ../subscribers/view-subscriber-add.php:118 ../subscribers/view-
|
334 |
-
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
335 |
-
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
336 |
-
msgid "Help"
|
337 |
-
msgstr "Ayuda"
|
338 |
-
|
339 |
-
#: ../notification/notification-add.php:121
|
340 |
-
msgid "Select Subscribers Group"
|
341 |
-
msgstr "Selecciona grupo de suscriptores"
|
342 |
-
|
343 |
-
#: ../notification/notification-add.php:125 ../notification/notification-add.php:
|
344 |
-
#: 149 ../notification/notification-edit.php:136 ../notification/notification-
|
345 |
-
#: edit.php:169 ../subscribers/view-subscriber-import.php:193 ../subscribers/view-
|
346 |
-
#: subscriber-add.php:166 ../subscribers/view-subscriber-edit.php:162 ..
|
347 |
-
#: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
|
348 |
-
#: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
|
349 |
-
msgid "Select"
|
350 |
-
msgstr "Seleccionar"
|
351 |
-
|
352 |
-
#: ../notification/notification-add.php:143 ../notification/notification-edit.php:
|
353 |
-
#: 163
|
354 |
-
msgid "Select Notification Email Subject"
|
355 |
-
msgstr "NOTIFICACIÓN a enviar:"
|
356 |
-
|
357 |
-
#: ../notification/notification-add.php:168 ../notification/notification-edit.php:
|
358 |
-
#: 191
|
359 |
-
msgid "Select Post Categories"
|
360 |
-
msgstr "CATEGORÍA de las entradas que se notificarán:"
|
361 |
-
|
362 |
-
#: ../notification/notification-add.php:196 ../notification/notification-edit.php:
|
363 |
-
#: 226
|
364 |
-
msgid "Check All"
|
365 |
-
msgstr "Todas"
|
366 |
-
|
367 |
-
#: ../notification/notification-add.php:197 ../notification/notification-edit.php:
|
368 |
-
#: 227
|
369 |
-
msgid "Uncheck All"
|
370 |
-
msgstr "Ninguna"
|
371 |
-
|
372 |
-
#: ../notification/notification-add.php:203 ../notification/notification-edit.php:
|
373 |
-
#: 234
|
374 |
-
msgid "Select your Custom Post Type"
|
375 |
-
msgstr "Entrada personalizada:"
|
376 |
-
|
377 |
-
#: ../notification/notification-add.php:204 ../notification/notification-edit.php:
|
378 |
-
#: 235
|
379 |
-
msgid "(Optional)"
|
380 |
-
msgstr "(Opcional)"
|
381 |
|
382 |
-
#: ../
|
383 |
-
|
384 |
-
|
385 |
-
msgstr "Actualmente no hay ninguna disponible"
|
386 |
|
387 |
-
#: ../
|
388 |
-
|
389 |
-
|
390 |
-
msgstr "Forma de ENVÍO:"
|
391 |
|
392 |
-
#: ../
|
393 |
-
|
394 |
-
|
395 |
-
msgstr "Enviar correo inmediatamente"
|
396 |
|
397 |
-
#: ../
|
398 |
-
#:
|
399 |
-
msgid "
|
400 |
-
msgstr "
|
401 |
|
402 |
-
#: ../
|
403 |
-
|
404 |
-
|
405 |
-
msgstr "Deshabilitar notificación por correo"
|
406 |
|
407 |
-
#: ../
|
408 |
-
#:
|
409 |
-
msgid "
|
410 |
-
msgstr "
|
411 |
|
412 |
-
#: ../
|
413 |
-
#:
|
414 |
-
|
415 |
-
|
416 |
-
msgstr "Ups, los detalles seleccionados no existen."
|
417 |
|
418 |
-
#: ../
|
419 |
-
|
420 |
-
|
|
|
421 |
|
422 |
-
#: ../
|
423 |
-
#:
|
424 |
msgid "Post Notifications"
|
425 |
msgstr "Notificar Entrada"
|
426 |
|
427 |
-
#: ../
|
428 |
-
#:
|
429 |
-
msgid "
|
430 |
-
msgstr "
|
431 |
-
|
432 |
-
#: ../notification/notification-show.php:57
|
433 |
-
msgid ""
|
434 |
-
"Use this to setup and send notification emails to your subscribers when a "
|
435 |
-
"new post is published in your blog."
|
436 |
-
msgstr ""
|
437 |
-
"Personaliza el correo de NOTIFICACIÓN que se enviará a tus suscriptores "
|
438 |
-
"cuando publiques una nueva Entrada en tu Blog."
|
439 |
-
|
440 |
-
#: ../notification/notification-show.php:68 ../notification/notification-show.php:
|
441 |
-
#: 76
|
442 |
-
msgid "Email Subject"
|
443 |
-
msgstr "Nombre"
|
444 |
-
|
445 |
-
#: ../notification/notification-show.php:69 ../notification/notification-show.php:
|
446 |
-
#: 77
|
447 |
-
msgid "Subscribers Group"
|
448 |
-
msgstr "Grupo"
|
449 |
-
|
450 |
-
#: ../notification/notification-show.php:70 ../notification/notification-show.php:
|
451 |
-
#: 78
|
452 |
-
msgid "Post Categories / Custom Post Types"
|
453 |
-
msgstr "Categorías"
|
454 |
-
|
455 |
-
#: ../notification/notification-show.php:71 ../notification/notification-show.php:
|
456 |
-
#: 79
|
457 |
-
msgid "Notification Status"
|
458 |
-
msgstr "Forma de envío"
|
459 |
-
|
460 |
-
#: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
|
461 |
-
#: php:417 ../templates/template-preview.php:35
|
462 |
-
msgid "Edit"
|
463 |
-
msgstr "Editar"
|
464 |
-
|
465 |
-
#: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
|
466 |
-
#: php:301 ../subscribers/view-subscriber-show.php:422
|
467 |
-
msgid "Delete"
|
468 |
-
msgstr "Eliminar"
|
469 |
-
|
470 |
-
#: ../notification/notification-show.php:143 ../sentmail/sentmail-show.php:180 ..
|
471 |
-
#: sentmail/deliverreport-show.php:128 ../subscribers/view-subscriber-show.php:456
|
472 |
-
msgid "No records available."
|
473 |
-
msgstr "No hay registros disponibles."
|
474 |
-
|
475 |
-
#: ../notification/notification-edit.php:49
|
476 |
-
msgid "Please select subscribers group"
|
477 |
-
msgstr "Por favor, selecciona el grupo de suscriptores"
|
478 |
-
|
479 |
-
#: ../notification/notification-edit.php:55
|
480 |
-
msgid "Please select notification status"
|
481 |
-
msgstr "Por favor, selecciona el modo de envío"
|
482 |
-
|
483 |
-
#: ../notification/notification-edit.php:89
|
484 |
-
msgid "Notification successfully updated. "
|
485 |
-
msgstr "Notificación actualizada con éxito. "
|
486 |
-
|
487 |
-
#: ../notification/notification-edit.php:122
|
488 |
-
msgid "Edit Notification"
|
489 |
-
msgstr "Editar Notificación"
|
490 |
-
|
491 |
-
#: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
|
492 |
-
#: php:303
|
493 |
-
msgid "Update Subscribers Group"
|
494 |
-
msgstr "Modificar su GRUPO"
|
495 |
-
|
496 |
-
#. Name of the plugin
|
497 |
-
msgid "Email Subscribers & Newsletters"
|
498 |
-
msgstr "Email Subscribers & Newsletters"
|
499 |
-
|
500 |
-
#. URI of the plugin
|
501 |
-
msgid "https://www.icegram.com"
|
502 |
-
msgstr "https://www.icegram.com"
|
503 |
-
|
504 |
-
#. Description of the plugin/theme
|
505 |
-
msgid ""
|
506 |
-
"Add subscription forms on website, send HTML newsletters & automatically "
|
507 |
-
"notify subscribers about new blog posts once it is published."
|
508 |
-
msgstr ""
|
509 |
-
"Añade formularios de suscripción al sitio web, envía newsletters HTML y "
|
510 |
-
"notifica automáticamente a suscriptores cuando se publiquen nuevas entradas "
|
511 |
-
"en el blog."
|
512 |
-
|
513 |
-
#. Author of the plugin
|
514 |
-
msgid "Icegram"
|
515 |
-
msgstr "Icegram"
|
516 |
-
|
517 |
-
#: ../email-subscribers.php:95
|
518 |
-
msgctxt "timezone date format"
|
519 |
-
msgid "Y-m-d H:i:s"
|
520 |
-
msgstr "AAAA-mm-dd HH:mm:ss"
|
521 |
-
|
522 |
-
#: ../settings/settings-edit.php:23
|
523 |
-
msgid "Admin"
|
524 |
-
msgstr "Administrador"
|
525 |
-
|
526 |
-
#: ../settings/settings-edit.php:24
|
527 |
-
msgid "Signup Confirmation"
|
528 |
-
msgstr "Confirmación registro"
|
529 |
-
|
530 |
-
#: ../settings/settings-edit.php:25
|
531 |
-
msgid "Cron"
|
532 |
-
msgstr "Tareas"
|
533 |
-
|
534 |
-
#: ../settings/settings-edit.php:26
|
535 |
-
msgid "User Roles"
|
536 |
-
msgstr "Gestores"
|
537 |
|
538 |
-
#: ../
|
539 |
-
#:
|
540 |
msgid "Settings"
|
541 |
msgstr "Configuración"
|
542 |
|
543 |
-
#: ../
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
#: ../settings/settings-edit.php:78
|
548 |
-
msgid "Sender of Notifications"
|
549 |
-
msgstr "Remitente de Notificaciones"
|
550 |
|
551 |
-
#: ../
|
552 |
-
msgid ""
|
553 |
-
"
|
554 |
-
"this plugin."
|
555 |
-
msgstr ""
|
556 |
-
"Nombre y dirección de correo que aparecerá en el campo <strong>DE:</strong> "
|
557 |
-
"en los correos que se enviarán a tus suscriptores."
|
558 |
|
559 |
-
#: ../
|
560 |
-
msgid "
|
561 |
-
msgstr "
|
562 |
|
563 |
-
#: ../
|
564 |
-
|
565 |
-
"
|
566 |
-
"
|
567 |
-
msgstr ""
|
568 |
-
"Las opciones 1 y 2 envían el correo mediante el sistema estándar de WP "
|
569 |
-
"wp_mail().<br>Las opciones 3 y 4 envían el correo por el sistema mail() de "
|
570 |
-
"PHP. "
|
571 |
|
572 |
-
#: ../
|
573 |
-
|
574 |
-
|
|
|
575 |
|
576 |
-
#: ../
|
577 |
-
|
578 |
-
|
|
|
579 |
|
580 |
-
#: ../
|
581 |
-
|
582 |
-
|
|
|
583 |
|
584 |
-
#: ../
|
585 |
-
|
586 |
-
|
|
|
587 |
|
588 |
-
#: ../
|
589 |
-
|
590 |
-
|
|
|
591 |
|
592 |
-
#: ../
|
593 |
-
|
594 |
-
"
|
595 |
-
"soon as they subscribe to your list. They have to confirm their subscription "
|
596 |
-
"by clicking on the activation link.<br />Single Opt-In : In this type, the "
|
597 |
-
"subscriber is not asked to confirm their email address. They are subscribed "
|
598 |
-
"directly in the list."
|
599 |
msgstr ""
|
600 |
-
"
|
601 |
-
"
|
602 |
-
"suscripción haciendo clic en dicho enlace. <br />SIN VERIFICACIÓN: No se "
|
603 |
-
"pide al solicitante que confirme su dirección de correo electrónico, se le "
|
604 |
-
"añade automáticamente a nuestra Lista."
|
605 |
-
|
606 |
-
#: ../settings/settings-edit.php:109
|
607 |
-
msgid "Double Opt In"
|
608 |
-
msgstr "Verificación doble"
|
609 |
-
|
610 |
-
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-import.php:
|
611 |
-
#: 181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-
|
612 |
-
#: show.php:356 ../subscribers/view-subscriber-add.php:155 ../subscribers/view-
|
613 |
-
#: subscriber-edit.php:150
|
614 |
-
msgid "Single Opt In"
|
615 |
-
msgstr "Sin verificación"
|
616 |
-
|
617 |
-
#: ../settings/settings-edit.php:116
|
618 |
-
msgid "Image Size"
|
619 |
-
msgstr "Tamaño de imagen"
|
620 |
-
|
621 |
-
#: ../settings/settings-edit.php:121
|
622 |
-
msgid "Full Size"
|
623 |
-
msgstr "Grande"
|
624 |
|
625 |
-
#: ../
|
626 |
-
|
627 |
-
|
|
|
628 |
|
629 |
-
#: ../
|
630 |
-
|
631 |
-
|
|
|
632 |
|
633 |
-
#: ../
|
634 |
-
|
635 |
-
|
|
|
636 |
|
637 |
-
#: ../
|
|
|
638 |
msgid ""
|
639 |
-
"
|
640 |
-
"
|
641 |
msgstr ""
|
642 |
-
"
|
643 |
-
"
|
644 |
|
645 |
-
#: ../
|
646 |
-
|
647 |
-
|
|
|
648 |
|
649 |
-
#: ../
|
650 |
-
|
651 |
-
"
|
652 |
-
"
|
653 |
-
msgstr ""
|
654 |
-
"Si deseas que el Administrador reciba un correo al producirse cada nueva "
|
655 |
-
"suscripción, esta opción debe estar en SÍ."
|
656 |
|
657 |
-
#: ../
|
658 |
-
|
659 |
-
msgid "
|
660 |
-
msgstr "
|
661 |
|
662 |
-
#: ../
|
663 |
-
|
664 |
-
msgid "
|
665 |
-
msgstr "
|
666 |
|
667 |
-
#: ../
|
668 |
-
|
669 |
-
|
|
|
670 |
|
671 |
-
#: ../
|
|
|
672 |
msgid ""
|
673 |
-
"
|
674 |
-
"
|
675 |
msgstr ""
|
676 |
-
"
|
677 |
-
"
|
678 |
-
|
679 |
-
#: ../settings/settings-edit.php:156
|
680 |
-
msgid "Admin Email Content on new subscriber signs up"
|
681 |
-
msgstr "TEXTO: alta suscriptor"
|
682 |
|
683 |
-
#: ../
|
684 |
-
|
685 |
-
|
|
|
686 |
|
687 |
-
#: ../
|
688 |
-
|
689 |
-
|
|
|
690 |
|
691 |
-
#: ../
|
692 |
-
|
693 |
-
|
|
|
|
|
|
|
694 |
|
695 |
-
#: ../
|
696 |
-
|
697 |
-
|
|
|
698 |
|
699 |
-
#: ../
|
700 |
-
|
701 |
-
"
|
702 |
-
"
|
703 |
-
msgstr ""
|
704 |
-
"Asunto del correo que se enviará a cada nuevo suscriptor para que pulse en "
|
705 |
-
"el enlace de confirmación de su cuenta de correo. Solo lo recibirá si tienes "
|
706 |
-
"activada la opcíon [Verificación doble]."
|
707 |
|
708 |
-
#: ../
|
709 |
-
|
710 |
-
|
|
|
711 |
|
712 |
-
#: ../
|
713 |
-
|
714 |
-
|
|
|
715 |
|
716 |
-
#: ../
|
717 |
-
|
718 |
-
|
|
|
719 |
|
720 |
-
#: ../
|
721 |
-
|
722 |
-
"
|
723 |
-
"
|
724 |
-
msgstr "MENSAJE: Cuenta correo confirmada"
|
725 |
|
726 |
-
#: ../
|
727 |
-
|
728 |
-
"
|
729 |
-
"
|
730 |
-
msgstr ""
|
731 |
-
"Mensaje que aparecerá en la pantalla del nuevo suscriptor cuando confirme su "
|
732 |
-
"cuenta de correo y esta sea correcta.<br>Opción [Verificación doble] "
|
733 |
-
"activada."
|
734 |
|
735 |
-
#: ../
|
736 |
-
|
737 |
-
|
|
|
738 |
|
739 |
-
#: ../
|
740 |
-
|
741 |
-
"
|
742 |
-
"
|
743 |
-
msgstr ""
|
744 |
-
"El nuevo suscriptor recibirá un correo comunicandole que se ha completado su "
|
745 |
-
"ALTA.<br>Si tienes la opción de verificación en [Sin verificación] lo "
|
746 |
-
"recibirá inmediatamente.<br>Si está en [Verificación doble] lo recibirá "
|
747 |
-
"despues de completar satisfactoriamente la comprobación de válidez de la "
|
748 |
-
"cuenta de correo que ha proporcionado."
|
749 |
|
750 |
-
#: ../
|
751 |
-
|
752 |
-
|
|
|
753 |
|
754 |
-
#: ../
|
755 |
-
|
756 |
-
"
|
757 |
-
"
|
758 |
-
"Opt-In) successfully."
|
759 |
-
msgstr ""
|
760 |
-
"Asunto del correo que se enviará a cada nuevo suscriptor una vez haya sido "
|
761 |
-
"dado de ALTA.<br>Debes tener en [SÍ] la opción anterior."
|
762 |
|
763 |
-
#: ../
|
764 |
-
|
765 |
-
|
|
|
766 |
|
767 |
-
#: ../
|
768 |
-
|
769 |
-
|
|
|
770 |
|
771 |
-
#: ../
|
772 |
msgid ""
|
773 |
-
"
|
774 |
-
"
|
775 |
-
"
|
|
|
776 |
msgstr ""
|
777 |
-
"
|
778 |
-
"
|
779 |
-
"
|
|
|
|
|
780 |
|
781 |
-
#: ../settings/settings-edit.php:
|
782 |
-
msgid "
|
783 |
-
msgstr "
|
784 |
|
785 |
-
#: ../
|
786 |
-
|
787 |
-
|
|
|
788 |
|
789 |
-
#: ../
|
790 |
-
msgid ""
|
791 |
-
"
|
792 |
-
"email."
|
793 |
-
msgstr ""
|
794 |
-
"Mensaje que aparecerá en la pantalla del suscriptor despues de que este haya "
|
795 |
-
"pulsado en el enlace para darse de baja que figura en todos los correos que "
|
796 |
-
"le enviamos."
|
797 |
|
798 |
-
#: ../
|
799 |
-
msgid "
|
800 |
-
msgstr "
|
801 |
|
802 |
-
#: ../
|
803 |
-
msgid ""
|
804 |
-
"
|
805 |
-
"/ confirmation link from the Double Opt-In (Confirmation) emails."
|
806 |
-
msgstr ""
|
807 |
-
"Mensaje predeterminado para mostrar si hay algún problema al hacer clic en "
|
808 |
-
"el enlace de suscripción / confirmación de los correos electrónicos de doble "
|
809 |
-
"verificación."
|
810 |
|
811 |
-
#: ../
|
812 |
-
msgid "
|
813 |
-
msgstr "
|
814 |
|
815 |
-
#: ../
|
816 |
-
msgid ""
|
817 |
-
"
|
818 |
-
"unsubscribe link from the emails."
|
819 |
-
msgstr ""
|
820 |
-
"Mensaje predeterminado para mostrar si hay algún problema al hacer clic en "
|
821 |
-
"el enlace de cancelación de suscripción que aparece en nuestros correos "
|
822 |
-
"electrónicos."
|
823 |
|
824 |
-
#: ../
|
825 |
-
msgid "
|
826 |
-
msgstr ""
|
827 |
-
"Define el tipo de usuario de tu sitio WordPress que podrán acceder a los "
|
828 |
-
"menús.<br>Sólo podrás utilizar esta opción si entras como Administrador."
|
829 |
|
830 |
-
#: ../settings/settings-edit.php:
|
831 |
-
|
832 |
-
|
|
|
833 |
|
834 |
-
#: ../
|
835 |
-
#: settings/settings-edit.php:
|
836 |
-
|
837 |
-
|
838 |
-
msgstr "Sólo Administradores"
|
839 |
|
840 |
-
#: ../
|
841 |
-
|
842 |
-
|
843 |
-
msgid "Administrator/Editor"
|
844 |
-
msgstr "Administrador/Editor"
|
845 |
|
846 |
-
#: ../
|
847 |
-
|
848 |
-
|
849 |
-
msgid "Administrator/Editor/Author/Contributor"
|
850 |
-
msgstr "Administrador/Editor/Autor/Colaborador"
|
851 |
|
852 |
-
#: ../
|
853 |
-
msgid "
|
854 |
-
msgstr "
|
855 |
|
856 |
-
#: ../
|
857 |
-
|
858 |
-
msgid "
|
859 |
-
msgstr "
|
860 |
|
861 |
-
#: ../
|
862 |
-
msgid "
|
863 |
-
msgstr "
|
864 |
|
865 |
-
#: ../
|
866 |
-
msgid "
|
867 |
-
msgstr "
|
868 |
|
869 |
-
#: ../
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
870 |
msgid ""
|
871 |
-
"
|
872 |
-
"
|
873 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
874 |
|
875 |
-
#: ../
|
876 |
-
msgid "
|
877 |
-
msgstr "
|
878 |
|
879 |
-
#: ../
|
880 |
-
msgid "
|
881 |
-
|
|
|
|
|
|
|
|
|
882 |
|
883 |
-
#: ../
|
884 |
-
msgid "
|
885 |
msgstr ""
|
886 |
-
"
|
887 |
-
"
|
|
|
888 |
|
889 |
-
#: ../
|
890 |
-
msgid "
|
891 |
-
msgstr "
|
892 |
|
893 |
-
#: ../
|
894 |
-
msgid "
|
|
|
|
|
895 |
msgstr ""
|
896 |
-
"
|
897 |
-
"
|
898 |
|
899 |
-
#: ../
|
900 |
-
msgid ""
|
901 |
-
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
902 |
-
"schedule-cron-emails/?"
|
903 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
|
904 |
-
"Cron?</a>"
|
905 |
msgstr ""
|
906 |
-
"
|
907 |
-
"
|
908 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">¿Que es "
|
909 |
-
"CRON?</a>"
|
910 |
|
911 |
-
#: ../
|
912 |
-
msgid ""
|
913 |
-
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
914 |
-
"schedule-cron-emails-in-cpanel/?"
|
915 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
|
916 |
-
"job in cPanel</a>"
|
917 |
msgstr ""
|
918 |
-
"
|
919 |
-
"
|
920 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Modificar "
|
921 |
-
"tareas CRON desde cPanel</a>"
|
922 |
|
923 |
-
#: ../
|
924 |
-
msgid ""
|
925 |
-
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
926 |
-
"schedule-cron-emails-in-parallels-plesk/?"
|
927 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
|
928 |
-
"job in Plesk</a>"
|
929 |
msgstr ""
|
930 |
-
"
|
931 |
-
"
|
932 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Modificar "
|
933 |
-
"tareas CRON desde Plesk</a>"
|
934 |
|
935 |
-
#: ../
|
936 |
-
msgid ""
|
937 |
-
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
|
938 |
-
"if-hosting-doesnt-support-cron-jobs/?"
|
939 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
|
940 |
-
"does not support cron jobs?</a>"
|
941 |
msgstr ""
|
942 |
-
"
|
943 |
-
"
|
944 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">¿Tu "
|
945 |
-
"Hosting no soporta tareas de CRON?</a>"
|
946 |
|
947 |
-
#: ../
|
948 |
-
msgid "
|
949 |
-
msgstr "
|
950 |
|
951 |
-
#: ../
|
952 |
-
msgid "
|
953 |
-
msgstr "
|
954 |
|
955 |
-
#: ../
|
956 |
-
msgid "
|
957 |
-
msgstr "
|
958 |
|
959 |
-
#: ../
|
960 |
-
msgid "
|
961 |
-
msgstr "
|
962 |
|
963 |
-
#: ../
|
964 |
-
msgid "
|
965 |
-
msgstr "
|
966 |
|
967 |
-
#: ../
|
968 |
-
|
969 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
970 |
|
971 |
-
#: ../
|
972 |
-
msgid "
|
973 |
-
msgstr "
|
974 |
|
975 |
-
#: ../
|
976 |
-
|
977 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
978 |
|
979 |
-
#: ../
|
980 |
-
msgid "
|
981 |
-
msgstr "
|
982 |
|
983 |
-
#: ../
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
984 |
msgid ""
|
985 |
-
"
|
986 |
-
"
|
987 |
-
"a slight variation on how your customer will view the email content."
|
988 |
msgstr ""
|
989 |
-
"
|
990 |
-
"
|
991 |
-
"contenido de los correos de manera diferente.<br>Podría haber, por tanto, "
|
992 |
-
"una ligera variación en cómo su cliente verá realmente el contenido del "
|
993 |
-
"correo."
|
994 |
|
995 |
-
#: ../
|
996 |
-
msgid "
|
997 |
-
msgstr "
|
998 |
|
999 |
-
#: ../
|
1000 |
-
msgid "
|
1001 |
-
msgstr "
|
|
|
|
|
1002 |
|
1003 |
-
#: ../
|
1004 |
-
msgid "
|
1005 |
-
msgstr "
|
1006 |
|
1007 |
-
#: ../
|
1008 |
-
msgid "
|
1009 |
-
msgstr "
|
1010 |
|
1011 |
-
#: ../
|
1012 |
-
|
1013 |
-
|
1014 |
-
msgstr "Informes"
|
1015 |
|
1016 |
-
#: ../
|
1017 |
-
msgid "
|
1018 |
-
msgstr "
|
|
|
|
|
1019 |
|
1020 |
-
#: ../
|
1021 |
-
msgid "
|
1022 |
-
msgstr "
|
1023 |
|
1024 |
-
#: ../
|
1025 |
-
|
1026 |
-
|
1027 |
-
msgstr "Vista previa"
|
1028 |
|
1029 |
-
#: ../
|
1030 |
-
msgid "
|
1031 |
-
msgstr "
|
1032 |
|
1033 |
-
#: ../
|
1034 |
-
|
1035 |
-
|
1036 |
-
msgid "Status"
|
1037 |
-
msgstr "Estado"
|
1038 |
|
1039 |
-
#: ../
|
1040 |
-
|
1041 |
-
|
1042 |
-
msgstr "Enviado"
|
1043 |
|
1044 |
-
#: ../
|
1045 |
-
msgid "
|
1046 |
-
msgstr "
|
1047 |
|
1048 |
-
#: ../
|
1049 |
-
msgid "
|
1050 |
-
msgstr "
|
1051 |
|
1052 |
-
#: ../
|
1053 |
-
msgid "
|
1054 |
-
msgstr "
|
1055 |
|
1056 |
-
#: ../
|
1057 |
-
|
1058 |
-
|
1059 |
-
msgid "Action"
|
1060 |
-
msgstr "Acción"
|
1061 |
|
1062 |
-
#: ../
|
1063 |
-
msgid "
|
1064 |
-
msgstr "
|
1065 |
|
1066 |
-
#: ../
|
|
|
|
|
|
|
|
|
1067 |
msgid ""
|
1068 |
-
"
|
1069 |
-
"
|
1070 |
msgstr ""
|
1071 |
-
"
|
1072 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1073 |
|
1074 |
-
#: ../
|
1075 |
-
msgid "
|
1076 |
-
|
|
|
|
|
|
|
|
|
|
|
1077 |
|
1078 |
-
|
1079 |
-
|
1080 |
-
|
|
|
1081 |
|
1082 |
-
#: ../
|
1083 |
-
|
1084 |
-
|
1085 |
-
|
1086 |
-
msgstr "
|
|
|
|
|
1087 |
|
1088 |
-
#: ../
|
1089 |
-
|
1090 |
-
|
|
|
1091 |
|
1092 |
-
#: ../
|
1093 |
-
msgid "
|
1094 |
-
msgstr "
|
1095 |
|
1096 |
-
#: ../
|
1097 |
-
msgid "
|
1098 |
-
msgstr "
|
1099 |
|
1100 |
-
#: ../
|
1101 |
-
msgid "
|
1102 |
-
msgstr "
|
1103 |
|
1104 |
-
#: ../
|
1105 |
msgid ""
|
1106 |
-
"
|
1107 |
-
"
|
1108 |
msgstr ""
|
1109 |
-
"
|
1110 |
-
"
|
1111 |
-
|
1112 |
-
#: ../subscribers/view-subscriber-import.php:95
|
1113 |
-
msgid "email imported."
|
1114 |
-
msgstr "Importados los correos."
|
1115 |
|
1116 |
-
#: ../
|
1117 |
-
msgid "
|
1118 |
-
|
|
|
|
|
|
|
|
|
1119 |
|
1120 |
-
#: ../
|
1121 |
-
msgid "
|
1122 |
-
msgstr "
|
1123 |
|
1124 |
-
#: ../
|
1125 |
-
#:
|
1126 |
-
msgid "
|
1127 |
-
|
|
|
|
|
|
|
|
|
1128 |
|
1129 |
-
#: ../
|
1130 |
-
|
1131 |
-
|
1132 |
-
msgstr " para ver los detalles."
|
1133 |
|
1134 |
-
#: ../
|
1135 |
-
msgid "
|
1136 |
-
msgstr "
|
1137 |
|
1138 |
-
#: ../
|
1139 |
-
msgid "
|
1140 |
-
msgstr "
|
1141 |
|
1142 |
-
#: ../
|
1143 |
-
|
1144 |
-
|
1145 |
-
#: subscribers/view-subscriber-sync.php:89
|
1146 |
-
msgid "Add New Subscriber"
|
1147 |
-
msgstr "Añadir"
|
1148 |
|
1149 |
-
#: ../
|
1150 |
-
|
1151 |
-
|
1152 |
-
msgid "Export"
|
1153 |
-
msgstr "Exportar"
|
1154 |
|
1155 |
-
#: ../
|
1156 |
-
|
1157 |
-
|
1158 |
-
#: subscribers/view-subscriber-sync.php:143
|
1159 |
-
msgid "Sync"
|
1160 |
-
msgstr "Sincronizar"
|
1161 |
|
1162 |
-
#: ../
|
1163 |
-
|
1164 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1165 |
|
1166 |
-
#: ../
|
1167 |
-
msgid "
|
1168 |
-
msgstr "
|
1169 |
|
1170 |
-
#: ../
|
1171 |
-
|
1172 |
-
|
|
|
|
|
|
|
|
|
|
|
1173 |
|
1174 |
-
#: ../
|
1175 |
-
|
1176 |
-
|
|
|
1177 |
|
1178 |
-
#: ../
|
1179 |
-
#:
|
1180 |
-
|
1181 |
-
|
1182 |
-
msgstr "Confirmado"
|
1183 |
|
1184 |
-
#: ../
|
1185 |
-
#:
|
1186 |
-
|
1187 |
-
|
1188 |
-
msgstr "Sin confirmar"
|
1189 |
|
1190 |
-
#: ../
|
1191 |
-
#:
|
1192 |
-
|
1193 |
-
|
1194 |
-
msgstr "Suscripción cancelada"
|
1195 |
|
1196 |
-
#: ../
|
1197 |
-
|
1198 |
-
|
|
|
1199 |
|
1200 |
-
#: ../
|
1201 |
-
#:
|
1202 |
-
msgid "(
|
1203 |
-
msgstr "(
|
1204 |
|
1205 |
-
#: ../
|
1206 |
-
#:
|
1207 |
-
|
1208 |
-
|
1209 |
-
msgid "Import"
|
1210 |
-
msgstr "Importar"
|
1211 |
|
1212 |
-
#: ../
|
1213 |
-
|
1214 |
-
|
|
|
1215 |
|
1216 |
-
#: ../
|
1217 |
-
|
1218 |
-
|
|
|
1219 |
|
1220 |
-
#: ../
|
1221 |
-
#: php:
|
1222 |
-
msgid "
|
1223 |
-
msgstr "
|
1224 |
|
1225 |
-
#: ../
|
1226 |
-
|
1227 |
-
|
1228 |
-
"
|
1229 |
-
"verificación."
|
1230 |
|
1231 |
-
#: ../
|
1232 |
-
#:
|
1233 |
-
|
1234 |
-
|
1235 |
-
msgstr "No se han seleccionado registros."
|
1236 |
|
1237 |
-
#: ../
|
1238 |
-
|
1239 |
-
|
1240 |
-
"
|
1241 |
-
"
|
1242 |
|
1243 |
-
#: ../
|
1244 |
-
msgid "
|
1245 |
-
msgstr "
|
1246 |
|
1247 |
-
#: ../
|
1248 |
-
msgid "Please select
|
1249 |
-
msgstr "
|
1250 |
|
1251 |
-
#: ../
|
1252 |
-
msgid "
|
1253 |
-
msgstr "
|
1254 |
|
1255 |
-
#: ../
|
1256 |
-
msgid "
|
1257 |
-
msgstr "
|
1258 |
|
1259 |
-
#: ../
|
1260 |
-
#:
|
1261 |
-
msgid "
|
1262 |
-
msgstr "
|
1263 |
|
1264 |
-
#: ../subscribers/view-subscriber-show.
|
1265 |
-
|
1266 |
-
msgid "
|
1267 |
-
msgstr "
|
1268 |
|
1269 |
-
#: ../
|
1270 |
-
msgid "
|
1271 |
-
msgstr "
|
1272 |
|
1273 |
-
#: ../
|
1274 |
-
|
1275 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1276 |
msgstr "Nombre"
|
1277 |
|
1278 |
-
#: ../
|
1279 |
-
|
|
|
1280 |
msgstr "Grupo"
|
1281 |
|
1282 |
-
#: ../
|
1283 |
-
|
1284 |
-
|
|
|
1285 |
|
1286 |
-
#: ../
|
1287 |
-
|
1288 |
-
|
|
|
1289 |
|
1290 |
-
#: ../
|
1291 |
-
#:
|
1292 |
-
msgid "
|
1293 |
-
msgstr "
|
1294 |
|
1295 |
-
#: ../subscribers/view-subscriber-show.
|
1296 |
-
|
1297 |
-
|
|
|
1298 |
|
1299 |
-
#: ../
|
1300 |
-
|
1301 |
-
|
|
|
|
|
1302 |
|
1303 |
-
#: ../subscribers/view-subscriber-show.php:
|
1304 |
-
msgid "
|
1305 |
-
msgstr "
|
1306 |
|
1307 |
-
#: ../
|
1308 |
-
msgid "
|
1309 |
-
msgstr "
|
1310 |
|
1311 |
-
#: ../
|
1312 |
-
msgid "
|
1313 |
-
msgstr "
|
1314 |
|
1315 |
-
#: ../
|
1316 |
-
msgid "
|
1317 |
-
msgstr "
|
1318 |
|
1319 |
-
#: ../
|
1320 |
-
msgid "
|
1321 |
-
msgstr "
|
1322 |
|
1323 |
-
#: ../
|
1324 |
-
msgid "
|
1325 |
-
msgstr "
|
1326 |
|
1327 |
-
#: ../
|
1328 |
-
msgid "
|
1329 |
-
msgstr "
|
1330 |
|
1331 |
-
#: ../
|
1332 |
-
msgid "
|
1333 |
-
msgstr "
|
|
|
|
|
1334 |
|
1335 |
-
#: ../
|
1336 |
-
msgid "
|
1337 |
-
msgstr "
|
1338 |
|
1339 |
-
#: ../
|
1340 |
-
msgid "
|
1341 |
-
msgstr "
|
1342 |
|
1343 |
-
#: ../
|
1344 |
-
msgid "
|
1345 |
-
msgstr "
|
1346 |
|
1347 |
-
#: ../
|
1348 |
-
msgid "
|
1349 |
-
msgstr "
|
1350 |
|
1351 |
-
#: ../
|
1352 |
-
msgid "
|
1353 |
-
msgstr "
|
1354 |
|
1355 |
-
#: ../
|
1356 |
-
|
1357 |
-
msgid "
|
1358 |
-
msgstr "
|
1359 |
|
1360 |
-
#: ../
|
1361 |
-
|
1362 |
-
|
1363 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1364 |
|
1365 |
-
#: ../
|
1366 |
-
msgid "
|
1367 |
-
msgstr "
|
1368 |
|
1369 |
-
#: ../
|
1370 |
-
msgid "
|
1371 |
-
msgstr "
|
1372 |
|
1373 |
-
#: ../
|
1374 |
-
|
1375 |
-
|
1376 |
-
msgid "Click to Export in CSV"
|
1377 |
-
msgstr "Clic para exportar fichero .CSV"
|
1378 |
|
1379 |
-
#: ../
|
1380 |
-
msgid "
|
1381 |
-
msgstr "
|
1382 |
|
1383 |
-
#: ../
|
1384 |
-
msgid "
|
1385 |
-
msgstr "
|
1386 |
|
1387 |
-
#: ../
|
1388 |
-
msgid "
|
1389 |
-
msgstr "
|
1390 |
|
1391 |
-
#: ../
|
1392 |
-
|
1393 |
-
|
|
|
|
|
1394 |
|
1395 |
-
#: ../
|
1396 |
-
msgid "
|
1397 |
-
msgstr "
|
1398 |
|
1399 |
-
#: ../
|
1400 |
-
|
1401 |
-
|
|
|
|
|
1402 |
|
1403 |
-
#: ../
|
1404 |
-
|
1405 |
-
|
|
|
1406 |
|
1407 |
-
#: ../
|
1408 |
-
msgid "
|
1409 |
-
msgstr "
|
1410 |
|
1411 |
-
#: ../
|
1412 |
-
|
1413 |
-
|
1414 |
-
msgstr "Por favor, introduce su dirección de correo como suscriptor."
|
1415 |
|
1416 |
-
#: ../
|
1417 |
-
msgid "
|
1418 |
-
msgstr "
|
1419 |
|
1420 |
-
#: ../
|
|
|
|
|
|
|
|
|
1421 |
msgid ""
|
1422 |
-
"
|
1423 |
-
"
|
|
|
1424 |
msgstr ""
|
1425 |
-
"
|
1426 |
-
"como
|
|
|
|
|
|
|
1427 |
|
1428 |
-
#: ../
|
1429 |
-
msgid "
|
1430 |
-
msgstr "
|
1431 |
|
1432 |
-
#: ../
|
1433 |
-
msgid "
|
1434 |
-
msgstr "
|
1435 |
|
1436 |
-
#: ../
|
1437 |
-
msgid "
|
1438 |
-
msgstr "
|
1439 |
|
1440 |
-
#: ../
|
1441 |
-
msgid "
|
1442 |
-
msgstr "Nombre"
|
1443 |
|
1444 |
-
#: ../
|
1445 |
-
msgid "
|
1446 |
-
msgstr "
|
1447 |
|
1448 |
-
#: ../
|
1449 |
-
msgid "
|
1450 |
-
msgstr "
|
1451 |
|
1452 |
-
#: ../
|
1453 |
-
msgid "
|
1454 |
-
msgstr "
|
1455 |
|
1456 |
-
#: ../
|
1457 |
-
msgid "
|
1458 |
-
msgstr "
|
1459 |
|
1460 |
-
#: ../
|
1461 |
-
|
1462 |
-
|
|
|
|
|
1463 |
|
1464 |
-
#: ../
|
1465 |
-
msgid "
|
1466 |
-
msgstr "
|
1467 |
|
1468 |
-
#: ../
|
1469 |
-
msgid "
|
1470 |
-
|
|
|
|
|
|
|
|
|
1471 |
|
1472 |
-
#: ../
|
1473 |
-
msgid "
|
1474 |
-
msgstr "
|
1475 |
|
1476 |
-
#: ../
|
1477 |
-
msgid "
|
1478 |
-
msgstr "
|
1479 |
|
1480 |
-
#: ../
|
1481 |
-
msgid "
|
1482 |
-
msgstr "
|
1483 |
|
1484 |
-
#: ../
|
1485 |
-
msgid "
|
1486 |
-
msgstr "
|
1487 |
|
1488 |
-
#: ../
|
1489 |
-
msgid "
|
1490 |
-
msgstr "
|
1491 |
|
1492 |
-
#: ../
|
1493 |
-
msgid "
|
1494 |
-
msgstr "
|
1495 |
|
1496 |
-
#: ../
|
1497 |
-
msgid "
|
1498 |
-
msgstr "
|
1499 |
|
1500 |
-
#: ../
|
1501 |
-
msgid "
|
1502 |
-
msgstr "
|
1503 |
|
1504 |
-
#: ../
|
1505 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
1506 |
msgstr ""
|
1507 |
-
"
|
1508 |
-
"
|
1509 |
|
1510 |
-
#: ../
|
1511 |
-
msgid "
|
1512 |
-
msgstr "
|
1513 |
|
1514 |
-
#: ../
|
1515 |
-
#: 58 ../job/es-optin.php:68
|
1516 |
msgid ""
|
1517 |
-
"
|
1518 |
-
"
|
1519 |
msgstr ""
|
1520 |
-
"
|
1521 |
-
"
|
|
|
1522 |
|
1523 |
-
#: ../
|
1524 |
-
msgid "
|
1525 |
-
msgstr "
|
1526 |
|
1527 |
-
#: ../
|
1528 |
-
msgid "
|
1529 |
-
msgstr "
|
1530 |
|
1531 |
-
#: ../
|
1532 |
-
msgid "
|
1533 |
-
msgstr "
|
1534 |
|
1535 |
-
#: ../
|
1536 |
-
|
1537 |
-
|
1538 |
-
msgstr "Suscribirse"
|
1539 |
|
1540 |
-
#: ../
|
1541 |
-
|
1542 |
-
|
1543 |
-
msgstr "Versión: %s"
|
1544 |
|
1545 |
-
#: ../
|
1546 |
-
msgid "
|
1547 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1548 |
|
1549 |
-
#: ../
|
1550 |
-
msgid "
|
1551 |
-
msgstr "
|
1552 |
|
1553 |
-
#: ../
|
1554 |
-
|
1555 |
-
|
|
|
|
|
|
|
1556 |
|
1557 |
-
#: ../
|
1558 |
-
msgid "
|
1559 |
-
msgstr "
|
1560 |
|
1561 |
-
#: ../
|
1562 |
-
msgid ""
|
1563 |
-
|
1564 |
-
"leads, send automated new blog post notification emails, create & send "
|
1565 |
-
"newsletters and manage all this in one single place."
|
1566 |
-
msgstr ""
|
1567 |
-
"Email Subscriber es un plugin muy completo para gestionar las suscripciones "
|
1568 |
-
"a tus Boletines informativos. Permite su redacción y su envío por correo a "
|
1569 |
-
"tus suscriptores, así como informarles automáticamente mediante un correo de "
|
1570 |
-
"notificación cuando publicas una nueva entrada en tu Blog. Todo ello "
|
1571 |
-
"controlado desde el mismo sitio."
|
1572 |
|
1573 |
-
#: ../
|
1574 |
-
msgid "
|
1575 |
-
msgstr "
|
1576 |
|
1577 |
-
#: ../
|
1578 |
-
msgid ""
|
1579 |
-
"
|
1580 |
-
"Code)."
|
1581 |
-
msgstr ""
|
1582 |
-
"Obtener la dirección de correo de tus suscriptores simplemente añadiendo un "
|
1583 |
-
"formulario en tus páginas Web (mediante Widget, Shortcode o código PHP)."
|
1584 |
|
1585 |
-
#: ../
|
1586 |
-
msgid "
|
|
|
|
|
1587 |
msgstr ""
|
1588 |
-
"
|
1589 |
-
"
|
1590 |
-
"comprobación."
|
1591 |
|
1592 |
-
#: ../
|
1593 |
-
msgid "
|
1594 |
-
msgstr "
|
1595 |
|
1596 |
-
#: ../
|
1597 |
msgid ""
|
1598 |
-
"
|
1599 |
-
"
|
1600 |
msgstr ""
|
1601 |
-
"
|
1602 |
-
"
|
1603 |
|
1604 |
-
#: ../
|
1605 |
-
msgid "
|
1606 |
-
msgstr ""
|
1607 |
-
"Programar el envío de los correos mediante un temporizador (tarea de CRON) o "
|
1608 |
-
"realizarlo manualmente."
|
1609 |
|
1610 |
-
#: ../
|
1611 |
-
msgid "
|
|
|
|
|
1612 |
msgstr ""
|
1613 |
-
"
|
1614 |
-
"
|
1615 |
|
1616 |
-
#: ../
|
1617 |
-
msgid "
|
1618 |
-
msgstr ""
|
1619 |
-
"Adjuntar de forma automatica en los correos un enlace para que los "
|
1620 |
-
"suscriptores puedan darse de baja."
|
1621 |
|
1622 |
-
#: ../
|
1623 |
-
msgid "
|
1624 |
-
msgstr ""
|
1625 |
-
"Importar/exportar facilmente tus suscriptores desde/hacia otra aplicación "
|
1626 |
-
"mediante ficheros."
|
1627 |
|
1628 |
-
#: ../
|
1629 |
-
msgid "
|
1630 |
-
msgstr "
|
1631 |
|
1632 |
-
#: ../
|
1633 |
-
msgid "
|
1634 |
-
msgstr "
|
1635 |
|
1636 |
-
#: ../
|
1637 |
-
msgid "
|
1638 |
-
msgstr "
|
1639 |
|
1640 |
-
#: ../
|
1641 |
-
msgid "
|
1642 |
-
|
|
|
|
|
|
|
|
|
|
|
1643 |
|
1644 |
-
#: ../
|
1645 |
-
msgid "
|
1646 |
-
msgstr "
|
1647 |
|
1648 |
-
#: ../
|
1649 |
-
|
1650 |
-
|
1651 |
-
#: 361 ../help/help.php:364 ../help/help.php:367 ../help/help.php:375 ..
|
1652 |
-
#: help/help.php:378 ../help/help.php:381 ../help/help.php:384 ../help/help.php:
|
1653 |
-
#: 390 ../help/help.php:393 ../help/help.php:395
|
1654 |
-
#, php-format
|
1655 |
-
msgid "%s"
|
1656 |
-
msgstr "%s"
|
1657 |
|
1658 |
-
#: ../
|
1659 |
-
msgid "
|
1660 |
-
msgstr "
|
1661 |
|
1662 |
-
#: ../
|
1663 |
-
#, php-format
|
1664 |
msgid ""
|
1665 |
-
"
|
1666 |
-
"
|
1667 |
-
|
1668 |
-
|
1669 |
-
|
1670 |
-
|
1671 |
-
"
|
|
|
1672 |
msgstr ""
|
1673 |
-
"
|
1674 |
-
"
|
1675 |
-
"
|
1676 |
-
"clic en el widget Email Subscribers y arrastralo/sueltalo en la barra "
|
1677 |
-
"lateral derecha<br><br>c) Copia y pega este código PHP en el sitio que "
|
1678 |
-
"desees de tu plantilla: <strong>%s</strong>"
|
1679 |
|
1680 |
-
#: ../
|
1681 |
-
msgid "
|
1682 |
-
msgstr "
|
1683 |
|
1684 |
-
#: ../
|
1685 |
-
msgid "
|
|
|
|
|
1686 |
msgstr ""
|
1687 |
-
"
|
1688 |
-
"
|
|
|
|
|
|
|
1689 |
|
1690 |
-
#: ../
|
1691 |
-
msgid "
|
1692 |
-
msgstr "
|
1693 |
|
1694 |
-
#: ../
|
1695 |
-
|
1696 |
-
|
1697 |
-
|
|
|
|
|
|
|
|
|
1698 |
|
1699 |
-
#: ../
|
1700 |
-
msgid "
|
1701 |
-
msgstr "
|
1702 |
|
1703 |
-
#: ../
|
|
|
|
|
|
|
|
|
1704 |
msgid ""
|
1705 |
-
"
|
1706 |
-
"
|
|
|
1707 |
msgstr ""
|
1708 |
-
"
|
1709 |
-
"
|
|
|
1710 |
|
1711 |
-
#: ../
|
1712 |
-
msgid "
|
1713 |
-
msgstr "
|
1714 |
|
1715 |
-
#: ../
|
1716 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
1717 |
msgstr ""
|
1718 |
-
"
|
1719 |
-
"
|
|
|
1720 |
|
1721 |
-
#: ../
|
1722 |
-
msgid "
|
1723 |
-
msgstr "
|
1724 |
|
1725 |
-
#: ../
|
1726 |
-
msgid "
|
1727 |
-
|
|
|
|
|
|
|
|
|
|
|
1728 |
|
1729 |
-
#: ../
|
1730 |
-
msgid "
|
1731 |
-
msgstr "
|
1732 |
|
1733 |
-
#: ../
|
1734 |
-
msgid "
|
|
|
|
|
1735 |
msgstr ""
|
1736 |
-
"
|
1737 |
-
"
|
|
|
1738 |
|
1739 |
-
#: ../
|
1740 |
-
msgid "
|
1741 |
-
msgstr "
|
|
|
|
|
1742 |
|
1743 |
-
#: ../
|
1744 |
-
msgid "
|
1745 |
-
msgstr "
|
1746 |
|
1747 |
-
#: ../
|
1748 |
-
|
1749 |
-
|
|
|
|
|
1750 |
|
1751 |
-
#: ../
|
1752 |
-
|
1753 |
-
|
|
|
|
|
1754 |
|
1755 |
-
#: ../
|
1756 |
-
|
1757 |
-
|
|
|
|
|
1758 |
|
1759 |
-
#: ../
|
1760 |
-
msgid "
|
1761 |
-
msgstr "
|
1762 |
|
1763 |
-
#: ../
|
1764 |
-
msgid "
|
1765 |
-
msgstr "
|
1766 |
|
1767 |
-
#: ../
|
1768 |
-
msgid "
|
1769 |
-
msgstr "
|
1770 |
|
1771 |
-
#: ../
|
1772 |
-
msgid "
|
1773 |
-
|
|
|
|
|
1774 |
|
1775 |
-
#: ../
|
1776 |
-
msgid "
|
1777 |
-
msgstr "
|
1778 |
|
1779 |
-
#: ../
|
1780 |
-
msgid "
|
1781 |
-
msgstr "
|
1782 |
|
1783 |
-
#: ../
|
1784 |
-
msgid ""
|
1785 |
-
"plugin, you can extend Email Subscribers Form functionality by providing an "
|
1786 |
-
"grouping option right next to the form."
|
1787 |
msgstr ""
|
1788 |
-
"
|
1789 |
-
"
|
1790 |
|
1791 |
-
#: ../
|
1792 |
-
msgid "
|
1793 |
-
msgstr "
|
1794 |
|
1795 |
-
#: ../
|
1796 |
-
msgid "
|
1797 |
-
msgstr "
|
|
|
|
|
1798 |
|
1799 |
-
#: ../
|
1800 |
-
msgid "
|
|
|
|
|
|
|
|
|
1801 |
msgstr ""
|
1802 |
-
"
|
1803 |
-
"
|
|
|
|
|
1804 |
|
1805 |
-
#: ../
|
1806 |
msgid ""
|
1807 |
-
"
|
1808 |
-
"
|
|
|
|
|
1809 |
msgstr ""
|
1810 |
-
"
|
1811 |
-
"
|
1812 |
-
"
|
|
|
1813 |
|
1814 |
-
#: ../
|
1815 |
msgid ""
|
1816 |
-
"
|
1817 |
-
"
|
|
|
|
|
1818 |
msgstr ""
|
1819 |
-
"
|
1820 |
-
"
|
|
|
|
|
1821 |
|
1822 |
-
#: ../
|
1823 |
-
|
1824 |
-
|
1825 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1826 |
|
1827 |
-
#: ../
|
1828 |
-
msgid "
|
1829 |
-
msgstr "
|
1830 |
|
1831 |
-
#: ../
|
1832 |
-
msgid "
|
1833 |
-
msgstr "
|
1834 |
|
1835 |
-
#: ../
|
1836 |
-
msgid "
|
1837 |
-
msgstr "
|
1838 |
|
1839 |
-
#: ../
|
1840 |
-
msgid ""
|
1841 |
-
"
|
1842 |
-
"elegant form styles."
|
1843 |
-
msgstr ""
|
1844 |
-
"Rainmaker amplía las funciones principales de Email Subscriber y ofrece "
|
1845 |
-
"elegantes estilos de formularios."
|
1846 |
|
1847 |
-
#: ../
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1848 |
msgid ""
|
1849 |
-
"
|
1850 |
-
"
|
1851 |
msgstr ""
|
1852 |
-
"
|
1853 |
-
"
|
1854 |
|
1855 |
-
#: ../
|
1856 |
-
msgid "
|
1857 |
-
msgstr "
|
1858 |
|
1859 |
-
#: ../
|
1860 |
-
msgid "
|
1861 |
-
msgstr "
|
1862 |
|
1863 |
-
#: ../
|
1864 |
-
msgid "
|
1865 |
-
msgstr "
|
1866 |
|
1867 |
-
#: ../
|
1868 |
-
|
1869 |
-
|
|
|
|
|
|
|
1870 |
|
1871 |
-
#: ../
|
1872 |
-
|
1873 |
-
|
|
|
|
|
|
|
1874 |
|
1875 |
-
#: ../
|
1876 |
-
|
1877 |
-
|
|
|
|
|
1878 |
|
1879 |
-
#: ../
|
1880 |
-
|
1881 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1882 |
|
1883 |
-
#: ../
|
1884 |
-
|
1885 |
-
|
1886 |
-
|
1887 |
-
"suscriptores a los que se enviarán."
|
1888 |
|
1889 |
-
#: ../
|
1890 |
-
msgid "
|
1891 |
-
msgstr "
|
1892 |
|
1893 |
-
#: ../
|
1894 |
-
msgid "
|
1895 |
-
msgstr "
|
1896 |
|
1897 |
-
#: ../
|
1898 |
-
msgid "
|
1899 |
-
msgstr "
|
1900 |
|
1901 |
-
#: ../
|
1902 |
-
msgid "
|
1903 |
-
msgstr "
|
1904 |
|
1905 |
-
#: ../
|
1906 |
-
msgid "
|
1907 |
-
msgstr "
|
1908 |
|
1909 |
-
#: ../
|
1910 |
-
|
1911 |
-
|
1912 |
-
msgstr "Destinatarios: %s"
|
1913 |
|
1914 |
-
#: ../
|
1915 |
-
msgid ""
|
1916 |
-
"
|
1917 |
-
"that you change above Mail Type to Cron and Send Mail via Cron Job."
|
1918 |
-
"</strong><br>Click on Help for more information."
|
1919 |
-
msgstr ""
|
1920 |
-
"<br><br><strong>¡El número de destinatarios es superior a 100!<br>Te "
|
1921 |
-
"recomendamos encarecidamente que cambies el tipo de correo a CRON y enviar "
|
1922 |
-
"correo mediante tarea CRON.</strong><br>Haz clic en Ayuda para más "
|
1923 |
-
"información."
|
1924 |
|
1925 |
-
#: ../
|
1926 |
-
msgid "
|
1927 |
-
msgstr "
|
1928 |
|
1929 |
-
#: ../
|
1930 |
-
msgid "
|
1931 |
-
msgstr "
|
1932 |
|
1933 |
-
#: ../
|
1934 |
-
msgid "
|
1935 |
-
msgstr "
|
1936 |
|
1937 |
-
#: ../
|
1938 |
-
|
1939 |
-
|
|
|
1940 |
|
1941 |
-
#: ../
|
1942 |
-
|
1943 |
-
|
|
|
1944 |
|
1945 |
-
#: ../
|
1946 |
-
msgid "
|
1947 |
-
msgstr "
|
1948 |
|
1949 |
-
#: ../
|
1950 |
-
msgid "
|
1951 |
-
msgstr "
|
1952 |
|
1953 |
-
#: ../
|
1954 |
-
|
1955 |
-
|
|
|
|
|
1956 |
|
1957 |
-
#: ../
|
1958 |
-
msgid "
|
1959 |
-
msgstr "
|
1960 |
|
1961 |
-
#: ../
|
1962 |
-
msgid "
|
1963 |
-
msgstr "
|
1964 |
|
1965 |
-
#: ../
|
1966 |
-
msgid "
|
1967 |
-
msgstr "
|
1968 |
|
1969 |
-
#: ../
|
1970 |
-
msgid "
|
1971 |
-
msgstr "
|
1972 |
|
1973 |
-
#: ../
|
1974 |
-
msgid "
|
1975 |
-
msgstr "
|
1976 |
|
1977 |
-
#: ../
|
1978 |
-
|
1979 |
-
|
1980 |
-
msgstr "Email Subscribers"
|
1981 |
|
1982 |
-
#: ../
|
1983 |
-
msgid "
|
1984 |
-
msgstr "
|
1985 |
|
1986 |
-
#: ../
|
1987 |
-
msgid "
|
1988 |
-
msgstr "
|
1989 |
|
1990 |
-
#: ../
|
1991 |
-
|
1992 |
-
|
1993 |
-
|
|
|
|
|
|
|
1994 |
|
1995 |
-
#: ../
|
1996 |
-
|
1997 |
-
|
1998 |
-
msgstr "Por favor selecciona el estado de correo de suscriptor."
|
1999 |
|
2000 |
-
#: ../
|
2001 |
-
|
2002 |
-
|
2003 |
-
msgstr "Selecciona o crea un grupo para este suscriptor"
|
2004 |
|
2005 |
-
#: ../
|
2006 |
-
|
2007 |
-
|
2008 |
-
msgstr "¿Quieres eliminar a este suscriptor?"
|
2009 |
|
2010 |
-
#: ../
|
2011 |
-
|
2012 |
-
msgid "
|
2013 |
-
msgstr "
|
2014 |
|
2015 |
-
#: ../
|
2016 |
-
|
2017 |
-
msgid "
|
2018 |
-
msgstr "
|
2019 |
|
2020 |
-
#: ../
|
2021 |
-
|
2022 |
-
|
2023 |
-
msgstr ""
|
2024 |
-
"Debes seleccionar el nuevo grupo al que pertenecerán los suscriptores "
|
2025 |
-
"seleccionados."
|
2026 |
|
2027 |
-
#: ../
|
2028 |
-
|
2029 |
-
|
2030 |
-
msgstr "Por favor, selecciona un nuevo estado para los suscriptores"
|
2031 |
|
2032 |
-
#: ../
|
2033 |
-
|
2034 |
-
|
2035 |
-
msgstr "¿Quieres modificar el grupo de los suscriptores seleccionados?"
|
2036 |
|
2037 |
-
#: ../
|
2038 |
-
|
2039 |
-
|
2040 |
-
msgstr "¿Quieres modificar el estado de los suscriptores seleccionados?"
|
2041 |
|
2042 |
-
#: ../
|
2043 |
-
|
2044 |
-
|
2045 |
-
"Please select only csv file. Please check official website for csv structure."
|
2046 |
-
"."
|
2047 |
-
msgstr ""
|
2048 |
-
"Selecciona el fichero de entrada en formato CSV.\n"
|
2049 |
-
"En el enlace de abajo puedes ver que estructura debe tener."
|
2050 |
|
2051 |
-
#: ../
|
2052 |
-
|
2053 |
-
|
2054 |
-
msgstr "Por favor selecciona el grupo de suscriptores."
|
2055 |
|
2056 |
-
#: ../
|
2057 |
-
|
2058 |
-
|
2059 |
-
msgstr "Por favor selecciona el modo de envío."
|
2060 |
|
2061 |
-
#: ../
|
2062 |
-
|
2063 |
-
|
2064 |
-
msgstr "¿Quieres borrar este registro?"
|
2065 |
|
2066 |
-
#: ../
|
2067 |
-
|
2068 |
-
msgid "
|
2069 |
-
msgstr "
|
2070 |
|
2071 |
-
#: ../
|
2072 |
-
|
2073 |
-
|
2074 |
-
|
|
|
2075 |
|
2076 |
-
#: ../
|
2077 |
-
|
2078 |
-
|
2079 |
-
"
|
2080 |
-
"
|
|
|
|
|
|
|
2081 |
msgstr ""
|
2082 |
-
"
|
2083 |
-
"
|
2084 |
|
2085 |
-
#: ../
|
2086 |
-
|
2087 |
-
|
2088 |
-
msgstr "¿Quieres borrar este registro?"
|
2089 |
|
2090 |
-
#: ../
|
2091 |
-
|
2092 |
-
|
2093 |
-
msgstr "¿Quieres borrar todos los registros excepto los 10 últimos?"
|
2094 |
|
2095 |
-
#: ../
|
2096 |
-
|
2097 |
-
|
2098 |
-
msgstr ""
|
2099 |
-
"Por favor, introduce el número de correos que quieres enviar por "
|
2100 |
-
"hora/disparador."
|
2101 |
|
2102 |
-
#: ../
|
2103 |
-
|
2104 |
-
|
2105 |
-
msgstr "Por favor, introduce el máximo de correos, sólo numérico."
|
2106 |
|
2107 |
-
#: ../
|
2108 |
-
|
2109 |
-
msgid "
|
2110 |
-
msgstr "
|
2111 |
|
2112 |
-
#: ../
|
2113 |
-
|
2114 |
-
|
2115 |
-
msgstr "Por favor escribe una dirección de correo válida"
|
2116 |
|
2117 |
-
#: ../
|
2118 |
-
|
2119 |
-
|
2120 |
-
msgstr "cargando..."
|
2121 |
|
2122 |
-
#: ../
|
2123 |
-
|
2124 |
-
|
2125 |
-
msgstr "No se puede crear la instancia XMLHTTP"
|
2126 |
|
2127 |
-
#: ../
|
2128 |
-
|
2129 |
-
|
2130 |
-
msgstr "Suscripción correcta."
|
2131 |
|
2132 |
-
#: ../
|
2133 |
-
|
2134 |
-
msgid "
|
2135 |
-
msgstr "
|
2136 |
|
2137 |
-
#: ../
|
2138 |
-
|
2139 |
-
|
2140 |
-
msgstr "Ups. Ha sucedido un error inesperado."
|
2141 |
|
2142 |
-
#: ../
|
2143 |
-
|
2144 |
-
|
2145 |
-
msgstr "Dirección de correo electrónico no válida"
|
2146 |
|
2147 |
-
#: ../
|
2148 |
-
|
2149 |
-
|
2150 |
-
msgstr "Por favor, inténtalo transcurridos unos minutos"
|
2151 |
|
2152 |
-
#: ../
|
2153 |
-
|
2154 |
-
|
2155 |
-
msgstr "Ha habido un problema con la solicitud"
|
2156 |
|
2157 |
-
#: ../
|
2158 |
-
|
2159 |
-
|
2160 |
-
msgstr "Por favor introduce dirección de correo electrónico"
|
2161 |
|
2162 |
-
#: ../
|
2163 |
-
|
2164 |
-
|
2165 |
-
msgstr "Por favor, inserta una dirección de correo electrónica válida"
|
2166 |
|
2167 |
-
#: ../
|
2168 |
-
|
2169 |
-
|
2170 |
-
msgstr "cargando..."
|
2171 |
|
2172 |
-
#: ../
|
2173 |
-
|
2174 |
-
|
2175 |
-
msgstr "No se puede crear la instancia XMLHTTP"
|
2176 |
|
2177 |
-
#: ../
|
2178 |
-
|
2179 |
-
|
2180 |
-
msgstr "Suscripción correcta."
|
2181 |
|
2182 |
-
#: ../
|
2183 |
-
|
2184 |
-
|
2185 |
-
msgstr "¡Esa dirección de correo electrónico ya existe!"
|
2186 |
|
2187 |
-
#: ../
|
2188 |
-
|
2189 |
-
|
2190 |
-
msgstr "Ups. Ha sucedido un error inesperado."
|
2191 |
|
2192 |
-
#: ../
|
2193 |
-
|
2194 |
-
|
2195 |
-
msgstr "Dirección de correo electrónico no válida"
|
2196 |
|
2197 |
-
#: ../
|
2198 |
-
|
2199 |
-
|
2200 |
-
msgstr "Por favor, inténtalo transcurridos unos minutos"
|
2201 |
|
2202 |
-
#: ../
|
2203 |
-
|
2204 |
-
|
2205 |
-
msgstr "Ha habido un problema con la solicitud"
|
2206 |
|
2207 |
-
#: ../
|
2208 |
-
msgid ""
|
2209 |
-
"
|
2210 |
-
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
2211 |
-
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
2212 |
-
"</a> rating. A huge thank you from Icegram in advance!"
|
2213 |
-
msgstr ""
|
2214 |
-
"Si te gusta <strong>Email Subscribers</strong>, por favor considera dejarnos "
|
2215 |
-
"una calificación <a target=\"_blank\" href=\"https://wordpress."
|
2216 |
-
"org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">★"
|
2217 |
-
"★★★★</a>. ¡Te lo agradecemos enormemente desde "
|
2218 |
-
"Icegram!"
|
2219 |
|
2220 |
-
#: ../
|
2221 |
-
msgid "
|
2222 |
-
msgstr "
|
2223 |
|
2224 |
-
#: ../
|
2225 |
-
msgid "
|
2226 |
-
msgstr "
|
2227 |
|
2228 |
-
#: ../
|
2229 |
-
msgid "
|
2230 |
-
msgstr "
|
|
|
|
|
2231 |
|
2232 |
-
#: ../
|
2233 |
-
msgid "
|
2234 |
-
msgstr "
|
2235 |
|
2236 |
-
|
2237 |
-
msgid "
|
2238 |
-
msgstr "
|
2239 |
|
2240 |
-
|
2241 |
-
msgid "
|
2242 |
-
msgstr "
|
2243 |
|
2244 |
-
|
2245 |
-
msgid "
|
2246 |
-
|
|
|
|
|
|
|
|
|
|
|
2247 |
|
2248 |
-
#: ../
|
2249 |
-
|
2250 |
-
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.12\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Tue Apr 17 2018 15:49:56 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Spanish (Spain)\n"
|
23 |
"X-Poedit-SearchPath-0: .\n"
|
24 |
"X-Poedit-SearchPathExcluded-0: *.js"
|
25 |
|
26 |
+
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
27 |
+
#: register.php:789 ../classes/es-register.php:790 ../classes/es-register.php:795
|
28 |
+
msgid "Templates"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: ../classes/es-register.php:201
|
32 |
+
msgctxt "view-subscriber-enhanced-select"
|
33 |
+
msgid ""
|
34 |
+
"Do you want to resend confirmation email? Also please note, this will update "
|
35 |
+
"subscriber current status to 'Unconfirmed'."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: ../classes/es-register.php:215
|
39 |
+
msgctxt "notification-enhanced-select"
|
40 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
|
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: ../classes/es-register.php:260
|
44 |
+
msgctxt "widget-enhanced-select"
|
45 |
msgid ""
|
46 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
47 |
+
"subscription. If you don't see the email within a few minutes, check the "
|
48 |
+
"spam/junk folder."
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: ../classes/es-register.php:274
|
52 |
+
msgctxt "widget-page-enhanced-select"
|
53 |
msgid ""
|
54 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
55 |
+
"subscription. If you don't see the email within a few minutes, check the "
|
56 |
+
"spam/junk folder."
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: ../classes/es-register.php:739
|
60 |
msgid ""
|
61 |
+
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
62 |
+
"subscribers list?</b> Come check our Pro plan."
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: ../classes/es-register.php:740
|
66 |
+
msgid "Check Pro plan "
|
|
|
|
|
|
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: ../classes/es-register.php:740
|
70 |
+
msgid "Not interested."
|
|
|
|
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: ../classes/es-register.php:780
|
74 |
+
#, php-format
|
75 |
+
msgid "Email Subscribers version: <strong>%s</strong>"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: ../classes/es-register.php:791 ../classes/es-register.php:792
|
79 |
+
msgid "Add new Template"
|
|
|
|
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: ../classes/es-register.php:793
|
83 |
+
msgid "Edit Templates"
|
|
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: ../classes/es-register.php:794
|
87 |
+
msgid "New Templates"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: ../classes/es-register.php:796
|
91 |
+
msgid "View Templates"
|
|
|
|
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: ../classes/es-register.php:797
|
95 |
+
msgid "Search Templates"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: ../classes/es-register.php:798
|
99 |
+
msgid "No Templates found"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: ../classes/es-register.php:799
|
103 |
+
msgid "No Templates found in Trash"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: ../classes/es-register.php:802
|
107 |
+
msgid "Thumbnail (For Visual Representation only)"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: ../classes/es-register.php:803
|
111 |
+
msgid "Set thumbnail"
|
|
|
|
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: ../classes/es-register.php:840
|
115 |
+
msgid "Template Type"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: ../classes/es-register.php:906
|
119 |
+
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: ../classes/es-register.php:909
|
123 |
+
msgid "Select your Email Template Type"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: ../classes/es-register.php:959
|
127 |
+
msgid "Preview Template"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: ../classes/es-register.php:973
|
131 |
+
#, php-format
|
132 |
msgid ""
|
133 |
+
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
134 |
+
"{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
|
135 |
+
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: ../classes/es-register.php:974
|
139 |
+
#, php-format
|
140 |
+
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: ../export/export-email-address.php:50 ../export/export-email-address.php:54
|
144 |
+
msgid "Unexpected url submit has been detected!"
|
145 |
msgstr ""
|
146 |
|
147 |
#: ../help/help.php:185
|
175 |
msgid "General Plugin Configuration"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: ../help/help.php:327
|
179 |
+
msgid "How does Sync work?"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: ../help/help.php:342
|
183 |
msgid "How to check sent emails?"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: ../help/help.php:354
|
187 |
msgid "Create and Send Newsletter Emails"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: ../help/help.php:357
|
191 |
msgid "Keywords in the Newsletters"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: ../help/help.php:364
|
195 |
msgid "Create and Send Post Notification Emails when new posts are published"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: ../help/help.php:378
|
199 |
msgid "What is Cron and how to Schedule Cron Emails?"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: ../help/help.php:412
|
203 |
msgid "Using our <b>free</b> "
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: ../help/help.php:432
|
207 |
msgid ""
|
208 |
"Using Email Subscribers you can achieve this easily with our <b>free</b> "
|
209 |
"plugin "
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: ../help/help.php:449
|
213 |
msgid "Email subscribers easily integrates with another <b>free</b> plugin "
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
|
217 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
221 |
+
#: 164
|
222 |
+
msgid "(Use templates menu to create new)"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: ../settings/settings-edit.php:117
|
|
|
226 |
msgid ""
|
227 |
+
"Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
|
228 |
+
"Emails."
|
|
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: ../settings/settings-edit.php:157
|
|
|
232 |
msgid ""
|
233 |
+
"Content for the admin email whenever a new subscriber signs up and is "
|
234 |
+
"confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
|
|
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: ../settings/settings-edit.php:172
|
238 |
msgid ""
|
239 |
+
"Content for the email report which will be sent to admin.<br />Available "
|
240 |
+
"Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: ../settings/settings-edit.php:191
|
244 |
+
msgid ""
|
245 |
+
"Content for the confirmation email to be sent for Double Opt-In whenever a "
|
246 |
+
"subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: ../settings/settings-edit.php:232
|
250 |
+
msgid ""
|
251 |
+
"Content for the subscriber welcome email whenever a user's email is either "
|
252 |
+
"confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
|
253 |
+
"<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: ../settings/settings-edit.php:248
|
257 |
+
msgid ""
|
258 |
+
"The text for the unsubscribe link. This text is automatically added with "
|
259 |
+
"unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: ../settings/settings-edit.php:300
|
263 |
+
msgid "Templates Menu"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: ../settings/settings-edit.php:375
|
267 |
+
msgid ""
|
268 |
+
"Email to admin whenever a cron URL is triggered from your server.<br "
|
269 |
+
"/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: ../subscribers/view-subscriber-export.php:12
|
273 |
+
msgid ""
|
274 |
+
"Oops! Looks like you are not the site administrator.<br><br>Only the site "
|
275 |
+
"administrator can export subscriber list."
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: ../subscribers/view-subscriber-export.php:14
|
279 |
+
msgid "Go back to Subscribers dashboard"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: ../subscribers/view-subscriber-show.php:75 ../subscribers/view-subscriber-show.
|
283 |
+
#: php:134
|
284 |
+
msgid "Confirmation emails resent successfully."
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: ../subscribers/view-subscriber-show.php:256
|
288 |
+
msgid "Total Subscribers: "
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: ../templates/template-preview.php:31
|
292 |
+
msgid "Template Preview"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: ../templates/template-preview.php:39
|
296 |
+
msgid "This is how your email may look."
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: ../templates/template-preview.php:41
|
300 |
+
msgid ""
|
301 |
+
"<br><br>This Post Notification preview has replaced keywords from your last "
|
302 |
+
"published blog post."
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: ../templates/template-preview.php:43
|
306 |
+
msgid ""
|
307 |
+
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
308 |
+
"content differently. So there could be a slight variation on how your "
|
309 |
+
"customer will view the email content."
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: ../classes/es-common.php:13
|
313 |
+
msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
|
314 |
+
msgstr "<span style=\"color:#006600;font-weight:bold;\">Confirmado</span>"
|
315 |
|
316 |
+
#: ../classes/es-common.php:16
|
317 |
+
msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
|
318 |
+
msgstr "<span style=\"color:#FF0000\">Sin confirmar</span>"
|
319 |
|
320 |
+
#: ../classes/es-common.php:19
|
321 |
+
msgid "<span style=\"color:#999900\">Unsubscribed</span>"
|
322 |
+
msgstr "<span style=\"color:#999900\">Suscripción cancelada</span>"
|
323 |
|
324 |
+
#: ../classes/es-common.php:22
|
325 |
+
msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
|
326 |
+
msgstr "<span style=\"color:#0000FF\">Aceptación individual</span>"
|
|
|
|
|
|
|
|
|
327 |
|
328 |
+
#: ../classes/es-common.php:25
|
329 |
+
msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
|
330 |
+
msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Visto</span>"
|
|
|
331 |
|
332 |
+
#: ../classes/es-common.php:28
|
333 |
+
msgid "<span style=\"color:#999900;\">Nodata</span>"
|
334 |
+
msgstr "<span style=\"color:#999900;\">Sin Datos</span>"
|
335 |
|
336 |
+
#: ../classes/es-common.php:31
|
337 |
+
msgid "<span style=\"color:#FF0000\">Disabled</span>"
|
338 |
+
msgstr "<span style=\"color:#FF0000\">Desactivado</span>"
|
339 |
|
340 |
+
#: ../classes/es-common.php:34
|
341 |
+
msgid "<span style=\"color:#FF0000\">In Queue</span>"
|
342 |
+
msgstr "<span style=\"color:#FF0000\">En cola</span>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
343 |
|
344 |
+
#: ../classes/es-common.php:37
|
345 |
+
msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
|
346 |
+
msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Enviado</span>"
|
|
|
347 |
|
348 |
+
#: ../classes/es-common.php:40
|
349 |
+
msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
|
350 |
+
msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">por tarea CRON</span>"
|
|
|
351 |
|
352 |
+
#: ../classes/es-common.php:43
|
353 |
+
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
354 |
+
msgstr "<span style=\"color:#993399;\">Inmediatamente</span>"
|
|
|
355 |
|
356 |
+
#: ../classes/es-loadwidget.php:28 ../classes/es-register.php:1053 ..
|
357 |
+
#: subscribers/view-subscriber-show.php:289
|
358 |
+
msgid "Name"
|
359 |
+
msgstr "Nombre"
|
360 |
|
361 |
+
#: ../classes/es-loadwidget.php:33 ../classes/es-register.php:1058
|
362 |
+
msgid "Email *"
|
363 |
+
msgstr "Email *"
|
|
|
364 |
|
365 |
+
#: ../classes/es-loadwidget.php:38 ../classes/es-register.php:1063 ../help/help.
|
366 |
+
#: php:196
|
367 |
+
msgid "Subscribe"
|
368 |
+
msgstr "Suscribirse"
|
369 |
|
370 |
+
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
371 |
+
#: register.php:801
|
372 |
+
msgid "Email Subscribers"
|
373 |
+
msgstr "Email Subscribers"
|
|
|
374 |
|
375 |
+
#: ../classes/es-register.php:165 ../classes/es-register.php:166 ..
|
376 |
+
#: subscribers/view-subscriber-show.php:242
|
377 |
+
msgid "Subscribers"
|
378 |
+
msgstr "Suscriptores"
|
379 |
|
380 |
+
#: ../classes/es-register.php:171 ../classes/es-register.php:172 ../help/help.php:
|
381 |
+
#: 361 ../notification/notification-show.php:52
|
382 |
msgid "Post Notifications"
|
383 |
msgstr "Notificar Entrada"
|
384 |
|
385 |
+
#: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
|
386 |
+
#: 351 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:324
|
387 |
+
msgid "Newsletters"
|
388 |
+
msgstr "Boletín Informativo"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
389 |
|
390 |
+
#: ../classes/es-register.php:177 ../classes/es-register.php:178 ..
|
391 |
+
#: settings/settings-edit.php:42
|
392 |
msgid "Settings"
|
393 |
msgstr "Configuración"
|
394 |
|
395 |
+
#: ../classes/es-register.php:180 ../classes/es-register.php:181 ..
|
396 |
+
#: sentmail/sentmail-show.php:93
|
397 |
+
msgid "Reports"
|
398 |
+
msgstr "Informes"
|
|
|
|
|
|
|
399 |
|
400 |
+
#: ../classes/es-register.php:183
|
401 |
+
msgid "Help & Info"
|
402 |
+
msgstr "Ayuda e Información"
|
|
|
|
|
|
|
|
|
403 |
|
404 |
+
#: ../classes/es-register.php:184
|
405 |
+
msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
|
406 |
+
msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Ayuda e información</span>"
|
407 |
|
408 |
+
#: ../classes/es-register.php:195
|
409 |
+
msgctxt "view-subscriber-enhanced-select"
|
410 |
+
msgid "Please enter subscriber email address."
|
411 |
+
msgstr "Por favor introduce la dirección de correo del suscriptor."
|
|
|
|
|
|
|
|
|
412 |
|
413 |
+
#: ../classes/es-register.php:196
|
414 |
+
msgctxt "view-subscriber-enhanced-select"
|
415 |
+
msgid "Please select subscriber email status."
|
416 |
+
msgstr "Por favor selecciona el estado de correo de suscriptor."
|
417 |
|
418 |
+
#: ../classes/es-register.php:197
|
419 |
+
msgctxt "view-subscriber-enhanced-select"
|
420 |
+
msgid "Please select or create group for this subscriber."
|
421 |
+
msgstr "Selecciona o crea un grupo para este suscriptor"
|
422 |
|
423 |
+
#: ../classes/es-register.php:198
|
424 |
+
msgctxt "view-subscriber-enhanced-select"
|
425 |
+
msgid "Do you want to delete this record?"
|
426 |
+
msgstr "¿Quieres eliminar a este suscriptor?"
|
427 |
|
428 |
+
#: ../classes/es-register.php:199
|
429 |
+
msgctxt "view-subscriber-enhanced-select"
|
430 |
+
msgid "Please select the bulk action."
|
431 |
+
msgstr "Por favor selecciona la acción en bloque."
|
432 |
|
433 |
+
#: ../classes/es-register.php:200
|
434 |
+
msgctxt "view-subscriber-enhanced-select"
|
435 |
+
msgid "Are you sure you want to delete selected records?"
|
436 |
+
msgstr "¿Confirmas la eliminación de los suscriptores seleccionados?"
|
437 |
|
438 |
+
#: ../classes/es-register.php:202
|
439 |
+
msgctxt "view-subscriber-enhanced-select"
|
440 |
+
msgid "Please select new subscriber group."
|
|
|
|
|
|
|
|
|
441 |
msgstr ""
|
442 |
+
"Debes seleccionar el nuevo grupo al que pertenecerán los suscriptores "
|
443 |
+
"seleccionados."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
444 |
|
445 |
+
#: ../classes/es-register.php:203
|
446 |
+
msgctxt "view-subscriber-enhanced-select"
|
447 |
+
msgid "Please select new status for subscribers"
|
448 |
+
msgstr "Por favor, selecciona un nuevo estado para los suscriptores"
|
449 |
|
450 |
+
#: ../classes/es-register.php:204
|
451 |
+
msgctxt "view-subscriber-enhanced-select"
|
452 |
+
msgid "Do you want to update subscribers group?"
|
453 |
+
msgstr "¿Quieres modificar el grupo de los suscriptores seleccionados?"
|
454 |
|
455 |
+
#: ../classes/es-register.php:205
|
456 |
+
msgctxt "view-subscriber-enhanced-select"
|
457 |
+
msgid "Do you want to update subscribers status?"
|
458 |
+
msgstr "¿Quieres modificar el estado de los suscriptores seleccionados?"
|
459 |
|
460 |
+
#: ../classes/es-register.php:206
|
461 |
+
msgctxt "view-subscriber-enhanced-select"
|
462 |
msgid ""
|
463 |
+
"Please select only csv file. Please check official website for csv structure."
|
464 |
+
"."
|
465 |
msgstr ""
|
466 |
+
"Selecciona el fichero de entrada en formato CSV.\n"
|
467 |
+
"En el enlace de abajo puedes ver que estructura debe tener."
|
468 |
|
469 |
+
#: ../classes/es-register.php:214
|
470 |
+
msgctxt "notification-enhanced-select"
|
471 |
+
msgid "Please select subscribers group."
|
472 |
+
msgstr "Por favor selecciona el grupo de suscriptores."
|
473 |
|
474 |
+
#: ../classes/es-register.php:216
|
475 |
+
msgctxt "notification-enhanced-select"
|
476 |
+
msgid "Please select notification status."
|
477 |
+
msgstr "Por favor selecciona el modo de envío."
|
|
|
|
|
|
|
478 |
|
479 |
+
#: ../classes/es-register.php:217
|
480 |
+
msgctxt "notification-enhanced-select"
|
481 |
+
msgid "Do you want to delete this record?"
|
482 |
+
msgstr "¿Quieres borrar este registro?"
|
483 |
|
484 |
+
#: ../classes/es-register.php:225
|
485 |
+
msgctxt "sendmail-enhanced-select"
|
486 |
+
msgid "Please select your mail subject."
|
487 |
+
msgstr "Por favor selecciona el asunto de tu correo."
|
488 |
|
489 |
+
#: ../classes/es-register.php:226
|
490 |
+
msgctxt "sendmail-enhanced-select"
|
491 |
+
msgid "Please select your mail type."
|
492 |
+
msgstr "Por favor selecciona tu tipo de correo."
|
493 |
|
494 |
+
#: ../classes/es-register.php:227
|
495 |
+
msgctxt "sendmail-enhanced-select"
|
496 |
msgid ""
|
497 |
+
"Have you double checked your selected group? If so, let's go ahead and send "
|
498 |
+
"this."
|
499 |
msgstr ""
|
500 |
+
"¿Has comprobado dos veces tu grupo seleccionado? Si es así, continuemos y "
|
501 |
+
"enviemos esto."
|
|
|
|
|
|
|
|
|
502 |
|
503 |
+
#: ../classes/es-register.php:235
|
504 |
+
msgctxt "sentmail-enhanced-select"
|
505 |
+
msgid "Do you want to delete this record?"
|
506 |
+
msgstr "¿Quieres borrar este registro?"
|
507 |
|
508 |
+
#: ../classes/es-register.php:236
|
509 |
+
msgctxt "sentmail-enhanced-select"
|
510 |
+
msgid "Do you want to delete all records except latest 10?"
|
511 |
+
msgstr "¿Quieres borrar todos los registros excepto los 10 últimos?"
|
512 |
|
513 |
+
#: ../classes/es-register.php:244
|
514 |
+
msgctxt "cron-enhanced-select"
|
515 |
+
msgid "Please select enter number of mails you want to send per hour/trigger."
|
516 |
+
msgstr ""
|
517 |
+
"Por favor, introduce el número de correos que quieres enviar por "
|
518 |
+
"hora/disparador."
|
519 |
|
520 |
+
#: ../classes/es-register.php:245
|
521 |
+
msgctxt "cron-enhanced-select"
|
522 |
+
msgid "Please enter the mail count, only number."
|
523 |
+
msgstr "Por favor, introduce el máximo de correos, sólo numérico."
|
524 |
|
525 |
+
#: ../classes/es-register.php:258
|
526 |
+
msgctxt "widget-enhanced-select"
|
527 |
+
msgid "Please enter email address"
|
528 |
+
msgstr "Por favor inserta dirección de correo"
|
|
|
|
|
|
|
|
|
529 |
|
530 |
+
#: ../classes/es-register.php:259
|
531 |
+
msgctxt "widget-enhanced-select"
|
532 |
+
msgid "Successfully Subscribed."
|
533 |
+
msgstr "Suscripción correcta."
|
534 |
|
535 |
+
#: ../classes/es-register.php:261
|
536 |
+
msgctxt "widget-enhanced-select"
|
537 |
+
msgid "Email Address already exists!"
|
538 |
+
msgstr "¡Esa dirección de Correo ya existe!"
|
539 |
|
540 |
+
#: ../classes/es-register.php:262
|
541 |
+
msgctxt "widget-enhanced-select"
|
542 |
+
msgid "Oops.. Unexpected error occurred."
|
543 |
+
msgstr "Ups. Ha sucedido un error inesperado."
|
544 |
|
545 |
+
#: ../classes/es-register.php:263
|
546 |
+
msgctxt "widget-enhanced-select"
|
547 |
+
msgid "Invalid email address"
|
548 |
+
msgstr "Dirección de correo electrónico no válida"
|
|
|
549 |
|
550 |
+
#: ../classes/es-register.php:264
|
551 |
+
msgctxt "widget-enhanced-select"
|
552 |
+
msgid "Please try after some time"
|
553 |
+
msgstr "Por favor, inténtalo transcurridos unos minutos"
|
|
|
|
|
|
|
|
|
554 |
|
555 |
+
#: ../classes/es-register.php:272
|
556 |
+
msgctxt "widget-page-enhanced-select"
|
557 |
+
msgid "Please enter email address"
|
558 |
+
msgstr "Por favor introduce dirección de correo electrónico"
|
559 |
|
560 |
+
#: ../classes/es-register.php:273
|
561 |
+
msgctxt "widget-page-enhanced-select"
|
562 |
+
msgid "Successfully Subscribed."
|
563 |
+
msgstr "Suscripción correcta."
|
|
|
|
|
|
|
|
|
|
|
|
|
564 |
|
565 |
+
#: ../classes/es-register.php:275
|
566 |
+
msgctxt "widget-page-enhanced-select"
|
567 |
+
msgid "Email Address already exists!"
|
568 |
+
msgstr "¡Esa dirección de correo electrónico ya existe!"
|
569 |
|
570 |
+
#: ../classes/es-register.php:276
|
571 |
+
msgctxt "widget-page-enhanced-select"
|
572 |
+
msgid "Oops.. Unexpected error occurred."
|
573 |
+
msgstr "Ups. Ha sucedido un error inesperado."
|
|
|
|
|
|
|
|
|
574 |
|
575 |
+
#: ../classes/es-register.php:277
|
576 |
+
msgctxt "widget-page-enhanced-select"
|
577 |
+
msgid "Invalid email address"
|
578 |
+
msgstr "Dirección de correo electrónico no válida"
|
579 |
|
580 |
+
#: ../classes/es-register.php:278
|
581 |
+
msgctxt "widget-page-enhanced-select"
|
582 |
+
msgid "Please try after some time"
|
583 |
+
msgstr "Por favor, inténtalo transcurridos unos minutos"
|
584 |
|
585 |
+
#: ../classes/es-register.php:766
|
586 |
msgid ""
|
587 |
+
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
588 |
+
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
589 |
+
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
590 |
+
"</a> rating. A huge thank you from Icegram in advance!"
|
591 |
msgstr ""
|
592 |
+
"Si te gusta <strong>Email Subscribers</strong>, por favor considera dejarnos "
|
593 |
+
"una calificación <a target=\"_blank\" href=\"https://wordpress."
|
594 |
+
"org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">★"
|
595 |
+
"★★★★</a>. ¡Te lo agradecemos enormemente desde "
|
596 |
+
"Icegram!"
|
597 |
|
598 |
+
#: ../classes/es-register.php:841 ../settings/settings-edit.php:123
|
599 |
+
msgid "Thumbnail"
|
600 |
+
msgstr "Pequeña"
|
601 |
|
602 |
+
#: ../classes/es-register.php:889 ../sentmail/sentmail-show.php:108 ..
|
603 |
+
#: sentmail/sentmail-show.php:121
|
604 |
+
msgid "Preview"
|
605 |
+
msgstr "Vista previa"
|
606 |
|
607 |
+
#: ../classes/es-register.php:911
|
608 |
+
msgid "Newsletter"
|
609 |
+
msgstr "Boletín informativo"
|
|
|
|
|
|
|
|
|
|
|
610 |
|
611 |
+
#: ../classes/es-register.php:912
|
612 |
+
msgid "Post Notification"
|
613 |
+
msgstr "Notificación de nueva Entrada"
|
614 |
|
615 |
+
#: ../classes/es-register.php:973 ../classes/es-register.php:974
|
616 |
+
msgid "Available Keywords"
|
617 |
+
msgstr "Campos disponibles"
|
|
|
|
|
|
|
|
|
|
|
618 |
|
619 |
+
#: ../classes/es-register.php:1103
|
620 |
+
msgid "Widget Title"
|
621 |
+
msgstr "Título Widget"
|
622 |
|
623 |
+
#: ../classes/es-register.php:1107
|
624 |
+
msgid "Short description about subscription form"
|
625 |
+
msgstr "Descripción corta sobre el formulario de suscripción"
|
|
|
|
|
|
|
|
|
|
|
626 |
|
627 |
+
#: ../classes/es-register.php:1111
|
628 |
+
msgid "Display Name Field"
|
629 |
+
msgstr "Mostrar el campo Nombre"
|
|
|
|
|
630 |
|
631 |
+
#: ../classes/es-register.php:1113 ../settings/settings-edit.php:142 ..
|
632 |
+
#: settings/settings-edit.php:217 ../subscribers/view-subscriber-sync.php:107
|
633 |
+
msgid "YES"
|
634 |
+
msgstr "SÍ"
|
635 |
|
636 |
+
#: ../classes/es-register.php:1114 ../settings/settings-edit.php:143 ..
|
637 |
+
#: settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:106
|
638 |
+
msgid "NO"
|
639 |
+
msgstr "NO"
|
|
|
640 |
|
641 |
+
#: ../classes/es-register.php:1118
|
642 |
+
msgid "Subscriber Group"
|
643 |
+
msgstr "Grupos de suscriptores"
|
|
|
|
|
644 |
|
645 |
+
#: ../help/help.php:184
|
646 |
+
msgid "Welcome to Email Subscribers!"
|
647 |
+
msgstr "¡Bienvenido a Email Subscribers!"
|
|
|
|
|
648 |
|
649 |
+
#: ../help/help.php:191
|
650 |
+
msgid "Get more help and tips..."
|
651 |
+
msgstr "Obtén más ayuda y consejos"
|
652 |
|
653 |
+
#: ../help/help.php:205
|
654 |
+
#, php-format
|
655 |
+
msgid "Version: %s"
|
656 |
+
msgstr "Versión: %s"
|
657 |
|
658 |
+
#: ../help/help.php:208
|
659 |
+
msgid "Questions? Need Help?"
|
660 |
+
msgstr "<br><br>¿Dudas? ¿Quieres ayuda?"
|
661 |
|
662 |
+
#: ../help/help.php:209
|
663 |
+
msgid "Contact Us"
|
664 |
+
msgstr "Contactar"
|
665 |
|
666 |
+
#: ../help/help.php:214
|
667 |
+
msgid "donating to us"
|
668 |
+
msgstr "donación"
|
669 |
+
|
670 |
+
#: ../help/help.php:249
|
671 |
+
msgid "Description"
|
672 |
+
msgstr "Descripción"
|
673 |
+
|
674 |
+
#: ../help/help.php:251
|
675 |
msgid ""
|
676 |
+
"Email Subscribers is a complete newsletter plugin which lets you collect "
|
677 |
+
"leads, send automated new blog post notification emails, create & send "
|
678 |
+
"newsletters and manage all this in one single place."
|
679 |
+
msgstr ""
|
680 |
+
"Email Subscriber es un plugin muy completo para gestionar las suscripciones "
|
681 |
+
"a tus Boletines informativos. Permite su redacción y su envío por correo a "
|
682 |
+
"tus suscriptores, así como informarles automáticamente mediante un correo de "
|
683 |
+
"notificación cuando publicas una nueva entrada en tu Blog. Todo ello "
|
684 |
+
"controlado desde el mismo sitio."
|
685 |
|
686 |
+
#: ../help/help.php:253
|
687 |
+
msgid "Feature Overview"
|
688 |
+
msgstr "Características principales:"
|
689 |
|
690 |
+
#: ../help/help.php:256
|
691 |
+
msgid ""
|
692 |
+
"Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
|
693 |
+
"Code)."
|
694 |
+
msgstr ""
|
695 |
+
"Obtener la dirección de correo de tus suscriptores simplemente añadiendo un "
|
696 |
+
"formulario en tus páginas Web (mediante Widget, Shortcode o código PHP)."
|
697 |
|
698 |
+
#: ../help/help.php:259
|
699 |
+
msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
|
700 |
msgstr ""
|
701 |
+
"Posibilidad de establecer una doble verificación de su dirección de correo "
|
702 |
+
"electrónico antes de su alta o bien permitirle el acceso directamente, sin "
|
703 |
+
"comprobación."
|
704 |
|
705 |
+
#: ../help/help.php:262
|
706 |
+
msgid "Send automatic welcome email to subscribers."
|
707 |
+
msgstr "Enviar automaticamente un correo de Bienvenida a los nuevos suscriptores."
|
708 |
|
709 |
+
#: ../help/help.php:265
|
710 |
+
msgid ""
|
711 |
+
"Send new post notification emails to subscribers when new posts are "
|
712 |
+
"published on your website."
|
713 |
msgstr ""
|
714 |
+
"Enviar automaticamente un correo de notificación a tus suscriptores cuando "
|
715 |
+
"publiques una nueva entrada en tu blog."
|
716 |
|
717 |
+
#: ../help/help.php:268
|
718 |
+
msgid "Schedule email (Cron job) or send them manually."
|
|
|
|
|
|
|
|
|
719 |
msgstr ""
|
720 |
+
"Programar el envío de los correos mediante un temporizador (tarea de CRON) o "
|
721 |
+
"realizarlo manualmente."
|
|
|
|
|
722 |
|
723 |
+
#: ../help/help.php:271
|
724 |
+
msgid "Send email notification to admin when a new user signs up."
|
|
|
|
|
|
|
|
|
725 |
msgstr ""
|
726 |
+
"Enviar un correo de notificación al administrador cuando un suscriptor se dé "
|
727 |
+
"de alta."
|
|
|
|
|
728 |
|
729 |
+
#: ../help/help.php:274
|
730 |
+
msgid "Automatically add Unsubscribe link in the email."
|
|
|
|
|
|
|
|
|
731 |
msgstr ""
|
732 |
+
"Adjuntar de forma automatica en los correos un enlace para que los "
|
733 |
+
"suscriptores puedan darse de baja."
|
|
|
|
|
734 |
|
735 |
+
#: ../help/help.php:277
|
736 |
+
msgid "Easily migrate subscribers from another app using Import & Export."
|
|
|
|
|
|
|
|
|
737 |
msgstr ""
|
738 |
+
"Importar/exportar facilmente tus suscriptores desde/hacia otra aplicación "
|
739 |
+
"mediante ficheros."
|
|
|
|
|
740 |
|
741 |
+
#: ../help/help.php:283
|
742 |
+
msgid "Send newsletters to different groups."
|
743 |
+
msgstr "Enviar Boletines informativos diferenciando por grupos de suscriptores."
|
744 |
|
745 |
+
#: ../help/help.php:286
|
746 |
+
msgid "Get detailed sent email reports."
|
747 |
+
msgstr "Obtener informes detallados de los correos enviados."
|
748 |
|
749 |
+
#: ../help/help.php:289
|
750 |
+
msgid "Control user access (User Roles and Capabilities)."
|
751 |
+
msgstr "Controlar el acceso del usuario (sus funciones y capacidades) "
|
752 |
|
753 |
+
#: ../help/help.php:292
|
754 |
+
msgid "Supports localization and internationalization."
|
755 |
+
msgstr "Soporte para traducción e internacionalización."
|
756 |
|
757 |
+
#: ../help/help.php:299
|
758 |
+
msgid "Add Subscribe form"
|
759 |
+
msgstr "Añadir formulario de suscripción"
|
760 |
|
761 |
+
#: ../help/help.php:301 ../help/help.php:312 ../help/help.php:315 ../help/help.
|
762 |
+
#: php:327 ../help/help.php:330 ../help/help.php:333 ../help/help.php:336 ..
|
763 |
+
#: help/help.php:339 ../help/help.php:342 ../help/help.php:354 ../help/help.php:
|
764 |
+
#: 357 ../help/help.php:364 ../help/help.php:367 ../help/help.php:370 ..
|
765 |
+
#: help/help.php:378 ../help/help.php:381 ../help/help.php:384 ../help/help.php:
|
766 |
+
#: 387 ../help/help.php:393 ../help/help.php:396 ../help/help.php:398
|
767 |
+
#, php-format
|
768 |
+
msgid "%s"
|
769 |
+
msgstr "%s"
|
770 |
|
771 |
+
#: ../help/help.php:301
|
772 |
+
msgid "How to Add Subscription box to website?"
|
773 |
+
msgstr "¿Cómo insertar un formulario de suscripción en una página de tu Web?"
|
774 |
|
775 |
+
#: ../help/help.php:304
|
776 |
+
#, php-format
|
777 |
+
msgid ""
|
778 |
+
"Use any of the following 3 methods :<br>\n"
|
779 |
+
" a) Shortcode in any page/post : <strong>[email-subscribers "
|
780 |
+
"namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
|
781 |
+
" b) Go to Appearance -> Widgets. Click on widget Email subscribers "
|
782 |
+
"and drag it to the sidebar on the right <i>Or</i><br>\n"
|
783 |
+
" c) Copy and past this php code to your desired template location : "
|
784 |
+
"<strong>%s</strong>"
|
785 |
+
msgstr ""
|
786 |
+
"Usa uno cualquiera de estos tres métodos:<br>a) Incluye este código en "
|
787 |
+
"cualquier Página o Entrada:<strong>[email-subscribers namefield=\"YES\" "
|
788 |
+
"desc=\"\" group=\"Public\"]</strong><br><br>b) Ve a Apariencia -> Widgets, haz "
|
789 |
+
"clic en el widget Email Subscribers y arrastralo/sueltalo en la barra "
|
790 |
+
"lateral derecha<br><br>c) Copia y pega este código PHP en el sitio que "
|
791 |
+
"desees de tu plantilla: <strong>%s</strong>"
|
792 |
|
793 |
+
#: ../help/help.php:309
|
794 |
+
msgid "Additional form settings"
|
795 |
+
msgstr "Ajustes adicionales del formulario"
|
796 |
|
797 |
+
#: ../help/help.php:312
|
798 |
+
msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
|
799 |
+
msgstr ""
|
800 |
+
"¿Cómo redirigir a los suscriptores a una nueva página/url tras haberse "
|
801 |
+
"identificado con éxito?"
|
802 |
+
|
803 |
+
#: ../help/help.php:315
|
804 |
+
msgid "How to add captcha in Subscribe form of Email Subscribers?"
|
805 |
+
msgstr "¿Cómo añadir un captcha al formulario de suscripción?"
|
806 |
+
|
807 |
+
#: ../help/help.php:324
|
808 |
+
#, php-format
|
809 |
+
msgid "Modify %s"
|
810 |
+
msgstr "Modificar el %s"
|
811 |
+
|
812 |
+
#: ../help/help.php:324
|
813 |
+
msgid "default text, email contents"
|
814 |
+
msgstr "texto prefijado o contenido"
|
815 |
+
|
816 |
+
#: ../help/help.php:324
|
817 |
msgid ""
|
818 |
+
" (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User "
|
819 |
+
"Roles"
|
|
|
820 |
msgstr ""
|
821 |
+
" del correo de confirmación, de Bienvenida y correos al administrador, "
|
822 |
+
"tareas del CRON y como asignar el tipo de suscriptor"
|
|
|
|
|
|
|
823 |
|
824 |
+
#: ../help/help.php:330
|
825 |
+
msgid "How to Import or Export Email Addresses?"
|
826 |
+
msgstr "¿Cómo importar y exportar direcciones de correo?"
|
827 |
|
828 |
+
#: ../help/help.php:333
|
829 |
+
msgid "How to Add/Update Existing Subscribers Group & Status?"
|
830 |
+
msgstr ""
|
831 |
+
"¿Cómo añadir o actualizar grupos de suscriptores y situación de la "
|
832 |
+
"suscripción?"
|
833 |
|
834 |
+
#: ../help/help.php:336
|
835 |
+
msgid "How to change/update/translate any texts from the plugin?"
|
836 |
+
msgstr "¿Como modificar o traducir cualquier texto de este plugin?"
|
837 |
|
838 |
+
#: ../help/help.php:339
|
839 |
+
msgid "How to add Unsubscribe link in emails?"
|
840 |
+
msgstr "¿Cómo añadir en los correos un enlace de cancelación de suscripción?"
|
841 |
|
842 |
+
#: ../help/help.php:367
|
843 |
+
msgid "Keywords in the Post Notifications"
|
844 |
+
msgstr "Campos disponibles para el correo de notificación"
|
|
|
845 |
|
846 |
+
#: ../help/help.php:370
|
847 |
+
msgid "Send a test post notification email to myself/testgroup"
|
848 |
+
msgstr ""
|
849 |
+
"Enviarme un correo de notificación a mí o a mí grupo para comprobar "
|
850 |
+
"funcionamiento"
|
851 |
|
852 |
+
#: ../help/help.php:375
|
853 |
+
msgid "Cron Job Setup"
|
854 |
+
msgstr "Tareas de CRON"
|
855 |
|
856 |
+
#: ../help/help.php:381
|
857 |
+
msgid "Schedule Cron Emails in cPanel"
|
858 |
+
msgstr "Modificar tareas de CRON desde cPanel"
|
|
|
859 |
|
860 |
+
#: ../help/help.php:384
|
861 |
+
msgid "Schedule Cron Emails in Parallels Plesk"
|
862 |
+
msgstr "Modificar tareas de CRON desde Parallels Plesk"
|
863 |
|
864 |
+
#: ../help/help.php:387
|
865 |
+
msgid "Hosting doesn’t support Cron Jobs?"
|
866 |
+
msgstr "¿Tu Hosting no soporta tareas de CRON?"
|
|
|
|
|
867 |
|
868 |
+
#: ../help/help.php:390
|
869 |
+
msgid "Troubleshooting Steps"
|
870 |
+
msgstr "Problemas y soluciones"
|
|
|
871 |
|
872 |
+
#: ../help/help.php:393
|
873 |
+
msgid "Subscribers are not receiving Emails?"
|
874 |
+
msgstr "¿Los suscriptores no están recibiendo tus correos?"
|
875 |
|
876 |
+
#: ../help/help.php:396
|
877 |
+
msgid "CSS Help"
|
878 |
+
msgstr "Ayuda con el diseño CSS"
|
879 |
|
880 |
+
#: ../help/help.php:398
|
881 |
+
msgid "FAQ's"
|
882 |
+
msgstr "Preguntas frecuentes"
|
883 |
|
884 |
+
#: ../help/help.php:404
|
885 |
+
msgid "Want to do more? Here's how.."
|
886 |
+
msgstr "¿Quieres más? Así es cómo puedes..."
|
|
|
|
|
887 |
|
888 |
+
#: ../help/help.php:407
|
889 |
+
msgid "Allow Subscribers to get subscribed to any group"
|
890 |
+
msgstr "Permitir que los Suscriptores se suscriban a cualquier grupo"
|
891 |
|
892 |
+
#: ../help/help.php:413
|
893 |
+
msgid "Group Selector"
|
894 |
+
msgstr "Group Selector"
|
895 |
+
|
896 |
+
#: ../help/help.php:414
|
897 |
msgid ""
|
898 |
+
"plugin, you can extend Email Subscribers Form functionality by providing an "
|
899 |
+
"grouping option right next to the form."
|
900 |
msgstr ""
|
901 |
+
", puedes ampliar la funcionalidad del formulario Email Subscribers añadiendo "
|
902 |
+
"una opción de elegir Grupo en el mismo formulario."
|
903 |
+
|
904 |
+
#: ../help/help.php:417
|
905 |
+
msgid "The user can then subscribe to whichever group most appeals to them."
|
906 |
+
msgstr "El usuario puede suscribirse al grupo que más le interese."
|
907 |
+
|
908 |
+
#: ../help/help.php:420
|
909 |
+
msgid "For example: Subscribe either to Updates or to Offers."
|
910 |
+
msgstr "Por ejemplo: Suscribirse a Ofertas o a Actualizaciones.<br />"
|
911 |
+
|
912 |
+
#: ../help/help.php:424
|
913 |
+
msgid "Show your subscribe form inside attractive popups"
|
914 |
+
msgstr ""
|
915 |
+
"Mostrar tu formulario de suscripción por medio de atractivas ventanas "
|
916 |
+
"emergentes"
|
917 |
|
918 |
+
#: ../help/help.php:429
|
919 |
+
msgid ""
|
920 |
+
"Don't limit your subscriber form to a widget. Embed it within popups, hello "
|
921 |
+
"bars, slide-ins, sidebars, full screen popups etc."
|
922 |
+
msgstr ""
|
923 |
+
"No tienes porque limitar tu formulario de suscriptor a un simple widget. "
|
924 |
+
"Puedes incrustarlo en ventanas emergentes sencillas o a pantalla completa, "
|
925 |
+
"barras de saludo, diapositivas, barras laterales, etc."
|
926 |
|
927 |
+
#. Author of the plugin
|
928 |
+
#: ../help/help.php:433
|
929 |
+
msgid "Icegram"
|
930 |
+
msgstr "Icegram"
|
931 |
|
932 |
+
#: ../help/help.php:436
|
933 |
+
msgid ""
|
934 |
+
"Icegram's beautiful designs instantly capture user attention and help "
|
935 |
+
"increase sign-ups to your WordPress website."
|
936 |
+
msgstr ""
|
937 |
+
"Los bellos diseños de Icegram capturan instantáneamente la atención del "
|
938 |
+
"usuario y ayudan a aumentar las inscripciones a tu sitio Web de WordPress."
|
939 |
|
940 |
+
#: ../help/help.php:439 ../help/help.php:459
|
941 |
+
#, php-format
|
942 |
+
msgid "How to %s"
|
943 |
+
msgstr "Como %s"
|
944 |
|
945 |
+
#: ../help/help.php:439
|
946 |
+
msgid "show subscribe form inside a popup"
|
947 |
+
msgstr "Mostrar el formulario de suscripción dentro de una ventana emergente"
|
948 |
|
949 |
+
#: ../help/help.php:443
|
950 |
+
msgid "Get beautiful and elegant form styles"
|
951 |
+
msgstr "Obtener formularios de bello y elegante diseño"
|
952 |
|
953 |
+
#: ../help/help.php:450
|
954 |
+
msgid "Rainmaker"
|
955 |
+
msgstr "Rainmaker"
|
956 |
|
957 |
+
#: ../help/help.php:453
|
958 |
msgid ""
|
959 |
+
"Rainmaker extends the core features of Email Subscribers and provides "
|
960 |
+
"elegant form styles."
|
961 |
msgstr ""
|
962 |
+
"Rainmaker amplía las funciones principales de Email Subscriber y ofrece "
|
963 |
+
"elegantes estilos de formularios."
|
|
|
|
|
|
|
|
|
964 |
|
965 |
+
#: ../help/help.php:456
|
966 |
+
msgid ""
|
967 |
+
"These styles are well designed and beautify your subscription form making it "
|
968 |
+
"more appealing."
|
969 |
+
msgstr ""
|
970 |
+
"Estos estilos están perfectamente diseñados y embellecen tu formulario de "
|
971 |
+
"suscripción, consiguiendo un mayor atractivo."
|
972 |
|
973 |
+
#: ../help/help.php:459
|
974 |
+
msgid "add Rainmaker’s form in Email Subscribers"
|
975 |
+
msgstr "añadir los formularios de Rainmaker a tu Email Subscriber"
|
976 |
|
977 |
+
#: ../job/es-optin.php:58 ../job/es-optin.php:68 ../job/es-unsubscribe.php:54 ..
|
978 |
+
#: job/es-unsubscribe.php:61
|
979 |
+
msgid ""
|
980 |
+
"Oops.. We are getting some technical error. Please try again or contact "
|
981 |
+
"admin."
|
982 |
+
msgstr ""
|
983 |
+
"Vaya, estamos teniendo algún problema técnico. Por favor inténtalo otra vez "
|
984 |
+
"o contacta con el administrador."
|
985 |
|
986 |
+
#: ../job/es-optin.php:61
|
987 |
+
msgid "This email address has already been confirmed."
|
988 |
+
msgstr "Esta dirección de correo ya fue confirmada."
|
|
|
989 |
|
990 |
+
#: ../notification/notification-add.php:33
|
991 |
+
msgid "Please select subscribers group."
|
992 |
+
msgstr "Por favor selecciona el grupo de suscriptores."
|
993 |
|
994 |
+
#: ../notification/notification-add.php:39
|
995 |
+
msgid "Please select notification status."
|
996 |
+
msgstr "Por favor selecciona el modo de envío"
|
997 |
|
998 |
+
#: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
|
999 |
+
msgid "Please select post categories."
|
1000 |
+
msgstr "Por favor selecciona categorías de entrada."
|
|
|
|
|
|
|
1001 |
|
1002 |
+
#: ../notification/notification-add.php:71
|
1003 |
+
msgid "Notification successfully created. "
|
1004 |
+
msgstr "La notificación se ha creado con éxito. "
|
|
|
|
|
1005 |
|
1006 |
+
#: ../notification/notification-add.php:112
|
1007 |
+
msgid "Add Notification"
|
1008 |
+
msgstr "Añadir Notificación"
|
|
|
|
|
|
|
1009 |
|
1010 |
+
#: ../notification/notification-add.php:113 ../notification/notification-edit.php:
|
1011 |
+
#: 124 ../notification/notification-show.php:54 ../sendmail/sendmail.php:94 ..
|
1012 |
+
#: sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
|
1013 |
+
#: sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
|
1014 |
+
#: subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
|
1015 |
+
#: php:113 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
|
1016 |
+
#: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
|
1017 |
+
#: subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:32
|
1018 |
+
msgid "Help"
|
1019 |
+
msgstr "Ayuda"
|
1020 |
|
1021 |
+
#: ../notification/notification-add.php:121
|
1022 |
+
msgid "Select Subscribers Group"
|
1023 |
+
msgstr "Selecciona grupo de suscriptores"
|
1024 |
|
1025 |
+
#: ../notification/notification-add.php:125 ../notification/notification-add.php:
|
1026 |
+
#: 149 ../notification/notification-edit.php:136 ../notification/notification-
|
1027 |
+
#: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
|
1028 |
+
#: sendmail/sendmail.php:152 ../subscribers/view-subscriber-add.php:166 ..
|
1029 |
+
#: subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
|
1030 |
+
#: import.php:193 ../subscribers/view-subscriber-sync.php:119
|
1031 |
+
msgid "Select"
|
1032 |
+
msgstr "Seleccionar"
|
1033 |
|
1034 |
+
#: ../notification/notification-add.php:143 ../notification/notification-edit.php:
|
1035 |
+
#: 163
|
1036 |
+
msgid "Select Notification Email Subject"
|
1037 |
+
msgstr "NOTIFICACIÓN a enviar:"
|
1038 |
|
1039 |
+
#: ../notification/notification-add.php:168 ../notification/notification-edit.php:
|
1040 |
+
#: 191
|
1041 |
+
msgid "Select Post Categories"
|
1042 |
+
msgstr "CATEGORÍA de las entradas que se notificarán:"
|
|
|
1043 |
|
1044 |
+
#: ../notification/notification-add.php:196 ../notification/notification-edit.php:
|
1045 |
+
#: 226
|
1046 |
+
msgid "Check All"
|
1047 |
+
msgstr "Todas"
|
|
|
1048 |
|
1049 |
+
#: ../notification/notification-add.php:197 ../notification/notification-edit.php:
|
1050 |
+
#: 227
|
1051 |
+
msgid "Uncheck All"
|
1052 |
+
msgstr "Ninguna"
|
|
|
1053 |
|
1054 |
+
#: ../notification/notification-add.php:203 ../notification/notification-edit.php:
|
1055 |
+
#: 234
|
1056 |
+
msgid "Select your Custom Post Type"
|
1057 |
+
msgstr "Entrada personalizada:"
|
1058 |
|
1059 |
+
#: ../notification/notification-add.php:204 ../notification/notification-edit.php:
|
1060 |
+
#: 235
|
1061 |
+
msgid "(Optional)"
|
1062 |
+
msgstr "(Opcional)"
|
1063 |
|
1064 |
+
#: ../notification/notification-add.php:233 ../notification/notification-edit.php:
|
1065 |
+
#: 269
|
1066 |
+
msgid "No Custom Post Types Available"
|
1067 |
+
msgstr "Actualmente no hay ninguna disponible"
|
|
|
|
|
1068 |
|
1069 |
+
#: ../notification/notification-add.php:240 ../notification/notification-edit.php:
|
1070 |
+
#: 276
|
1071 |
+
msgid "Select Notification Status when a new post is published"
|
1072 |
+
msgstr "Forma de ENVÍO:"
|
1073 |
|
1074 |
+
#: ../notification/notification-add.php:244 ../notification/notification-edit.php:
|
1075 |
+
#: 280 ../notification/notification-show.php:130 ../sendmail/sendmail.php:139
|
1076 |
+
msgid "Send email immediately"
|
1077 |
+
msgstr "Enviar correo inmediatamente"
|
1078 |
|
1079 |
+
#: ../notification/notification-add.php:245 ../notification/notification-edit.php:
|
1080 |
+
#: 281 ../notification/notification-show.php:132
|
1081 |
+
msgid "Add to cron and send email via cron job"
|
1082 |
+
msgstr "Añadir al programador de tareas (CRON)"
|
1083 |
|
1084 |
+
#: ../notification/notification-add.php:246 ../notification/notification-edit.php:
|
1085 |
+
#: 282
|
1086 |
+
msgid "Disable email notification"
|
1087 |
+
msgstr "Deshabilitar notificación por correo"
|
|
|
1088 |
|
1089 |
+
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
1090 |
+
#: 291 ../subscribers/view-subscriber-edit.php:191
|
1091 |
+
msgid "Save"
|
1092 |
+
msgstr "Guardar"
|
|
|
1093 |
|
1094 |
+
#: ../notification/notification-edit.php:20 ../notification/notification-show.php:
|
1095 |
+
#: 21 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
|
1096 |
+
#: subscribers/view-subscriber-edit.php:22
|
1097 |
+
msgid "Oops, selected details does not exists."
|
1098 |
+
msgstr "Ups, los detalles seleccionados no existen."
|
1099 |
|
1100 |
+
#: ../notification/notification-edit.php:49
|
1101 |
+
msgid "Please select subscribers group"
|
1102 |
+
msgstr "Por favor, selecciona el grupo de suscriptores"
|
1103 |
|
1104 |
+
#: ../notification/notification-edit.php:55
|
1105 |
+
msgid "Please select notification status"
|
1106 |
+
msgstr "Por favor, selecciona el modo de envío"
|
1107 |
|
1108 |
+
#: ../notification/notification-edit.php:89
|
1109 |
+
msgid "Notification successfully updated. "
|
1110 |
+
msgstr "Notificación actualizada con éxito. "
|
1111 |
|
1112 |
+
#: ../notification/notification-edit.php:122
|
1113 |
+
msgid "Edit Notification"
|
1114 |
+
msgstr "Editar Notificación"
|
1115 |
|
1116 |
+
#: ../notification/notification-edit.php:123 ../notification/notification-show.
|
1117 |
+
#: php:53
|
1118 |
+
msgid "Add New"
|
1119 |
+
msgstr "Añadir"
|
1120 |
|
1121 |
+
#: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
|
1122 |
+
#: php:303
|
1123 |
+
msgid "Update Subscribers Group"
|
1124 |
+
msgstr "Modificar su GRUPO"
|
1125 |
|
1126 |
+
#: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
|
1127 |
+
msgid "Selected record deleted."
|
1128 |
+
msgstr "Registro seleccionado borrado."
|
1129 |
|
1130 |
+
#: ../notification/notification-show.php:57
|
1131 |
+
msgid ""
|
1132 |
+
"Use this to setup and send notification emails to your subscribers when a "
|
1133 |
+
"new post is published in your blog."
|
1134 |
+
msgstr ""
|
1135 |
+
"Personaliza el correo de NOTIFICACIÓN que se enviará a tus suscriptores "
|
1136 |
+
"cuando publiques una nueva Entrada en tu Blog."
|
1137 |
+
|
1138 |
+
#: ../notification/notification-show.php:68 ../notification/notification-show.php:
|
1139 |
+
#: 76
|
1140 |
+
msgid "Email Subject"
|
1141 |
msgstr "Nombre"
|
1142 |
|
1143 |
+
#: ../notification/notification-show.php:69 ../notification/notification-show.php:
|
1144 |
+
#: 77
|
1145 |
+
msgid "Subscribers Group"
|
1146 |
msgstr "Grupo"
|
1147 |
|
1148 |
+
#: ../notification/notification-show.php:70 ../notification/notification-show.php:
|
1149 |
+
#: 78
|
1150 |
+
msgid "Post Categories / Custom Post Types"
|
1151 |
+
msgstr "Categorías"
|
1152 |
|
1153 |
+
#: ../notification/notification-show.php:71 ../notification/notification-show.php:
|
1154 |
+
#: 79
|
1155 |
+
msgid "Notification Status"
|
1156 |
+
msgstr "Forma de envío"
|
1157 |
|
1158 |
+
#: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
|
1159 |
+
#: php:417 ../templates/template-preview.php:35
|
1160 |
+
msgid "Edit"
|
1161 |
+
msgstr "Editar"
|
1162 |
|
1163 |
+
#: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
|
1164 |
+
#: php:301 ../subscribers/view-subscriber-show.php:422
|
1165 |
+
msgid "Delete"
|
1166 |
+
msgstr "Eliminar"
|
1167 |
|
1168 |
+
#: ../notification/notification-show.php:143 ../sentmail/deliverreport-show.php:
|
1169 |
+
#: 128 ../sentmail/sentmail-show.php:180 ../subscribers/view-subscriber-show.php:
|
1170 |
+
#: 456
|
1171 |
+
msgid "No records available."
|
1172 |
+
msgstr "No hay registros disponibles."
|
1173 |
|
1174 |
+
#: ../sendmail/sendmail.php:18 ../subscribers/view-subscriber-show.php:17
|
1175 |
+
msgid "Click Here"
|
1176 |
+
msgstr "Haz clic aquí"
|
1177 |
|
1178 |
+
#: ../sendmail/sendmail.php:40
|
1179 |
+
msgid "Please select your mail subject."
|
1180 |
+
msgstr "Por favor selecciona el asunto de tu correo."
|
1181 |
|
1182 |
+
#: ../sendmail/sendmail.php:46
|
1183 |
+
msgid "Please select your mail type."
|
1184 |
+
msgstr "Por favor selecciona tu tipo de correo."
|
1185 |
|
1186 |
+
#: ../sendmail/sendmail.php:52
|
1187 |
+
msgid "Please select your group."
|
1188 |
+
msgstr "Por favor selecciona tu grupo."
|
1189 |
|
1190 |
+
#: ../sendmail/sendmail.php:59
|
1191 |
+
msgid "Email sent successfully. "
|
1192 |
+
msgstr "Correo electrónico enviado correctamente."
|
1193 |
|
1194 |
+
#: ../sendmail/sendmail.php:63
|
1195 |
+
msgid "Click here to check Statistics"
|
1196 |
+
msgstr "Haz clic aquí para comprobar Estadísticas"
|
1197 |
|
1198 |
+
#: ../sendmail/sendmail.php:69
|
1199 |
+
msgid "Oops.. We are getting some error. mail not sending."
|
1200 |
+
msgstr "Ups. Estamos obteniendo algún error. No se envía correo."
|
1201 |
|
1202 |
+
#: ../sendmail/sendmail.php:97
|
1203 |
+
msgid "Use this to send newsletter emails to your subscribers."
|
1204 |
+
msgstr ""
|
1205 |
+
"Personaliza tus BOLETINES informativos, la forma de ENVÍO y el GRUPO de "
|
1206 |
+
"suscriptores a los que se enviarán."
|
1207 |
|
1208 |
+
#: ../sendmail/sendmail.php:106
|
1209 |
+
msgid "Select Email Subject from available list"
|
1210 |
+
msgstr "Boletín a envíar:"
|
1211 |
|
1212 |
+
#: ../sendmail/sendmail.php:133
|
1213 |
+
msgid "Select Email Type"
|
1214 |
+
msgstr "Modo de envío:"
|
1215 |
|
1216 |
+
#: ../sendmail/sendmail.php:140
|
1217 |
+
msgid "Send email via cron job"
|
1218 |
+
msgstr "Envío diferido (programador de tareas CRON)"
|
1219 |
|
1220 |
+
#: ../sendmail/sendmail.php:147
|
1221 |
+
msgid "Select Subscribers group to Send Email"
|
1222 |
+
msgstr "Grupo de suscriptores:"
|
1223 |
|
1224 |
+
#: ../sendmail/sendmail.php:179
|
1225 |
+
msgid "Recipients : 0 "
|
1226 |
+
msgstr "Destinatarios: 0 "
|
1227 |
|
1228 |
+
#: ../sendmail/sendmail.php:181
|
1229 |
+
#, php-format
|
1230 |
+
msgid "Recipients : %s"
|
1231 |
+
msgstr "Destinatarios: %s"
|
1232 |
|
1233 |
+
#: ../sendmail/sendmail.php:184
|
1234 |
+
msgid ""
|
1235 |
+
"<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
|
1236 |
+
"that you change above Mail Type to Cron and Send Mail via Cron Job."
|
1237 |
+
"</strong><br>Click on Help for more information."
|
1238 |
+
msgstr ""
|
1239 |
+
"<br><br><strong>¡El número de destinatarios es superior a 100!<br>Te "
|
1240 |
+
"recomendamos encarecidamente que cambies el tipo de correo a CRON y enviar "
|
1241 |
+
"correo mediante tarea CRON.</strong><br>Haz clic en Ayuda para más "
|
1242 |
+
"información."
|
1243 |
|
1244 |
+
#: ../sendmail/sendmail.php:196 ../sendmail/sendmail.php:198
|
1245 |
+
msgid "Send Email"
|
1246 |
+
msgstr "Enviar Boletín"
|
1247 |
|
1248 |
+
#: ../sendmail/sendmail.php:201
|
1249 |
+
msgid "Reset"
|
1250 |
+
msgstr "Reiniciar"
|
1251 |
|
1252 |
+
#: ../sentmail/deliverreport-show.php:14
|
1253 |
+
msgid "Oops.. Unexpected error occurred. Please try again."
|
1254 |
+
msgstr "Vaya, ha sucedido un error inesperado. Por favor, inténtelo de nuevo."
|
|
|
|
|
1255 |
|
1256 |
+
#: ../sentmail/deliverreport-show.php:47 ../sentmail/sentmail-show.php:83
|
1257 |
+
msgid " << "
|
1258 |
+
msgstr " << "
|
1259 |
|
1260 |
+
#: ../sentmail/deliverreport-show.php:48 ../sentmail/sentmail-show.php:84
|
1261 |
+
msgid " >> "
|
1262 |
+
msgstr " >> "
|
1263 |
|
1264 |
+
#: ../sentmail/deliverreport-show.php:60
|
1265 |
+
msgid "Delivery Report"
|
1266 |
+
msgstr "Informe de envíos"
|
1267 |
|
1268 |
+
#: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
|
1269 |
+
#: subscribers/view-subscriber-export.php:58 ../subscribers/view-subscriber-
|
1270 |
+
#: export.php:66
|
1271 |
+
msgid "Sno"
|
1272 |
+
msgstr "Tipo"
|
1273 |
|
1274 |
+
#: ../sentmail/deliverreport-show.php:73 ../sentmail/deliverreport-show.php:84
|
1275 |
+
msgid "Email"
|
1276 |
+
msgstr "Correo"
|
1277 |
|
1278 |
+
#: ../sentmail/deliverreport-show.php:74 ../sentmail/deliverreport-show.php:85 ..
|
1279 |
+
#: sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
|
1280 |
+
#: subscribers/view-subscriber-show.php:290
|
1281 |
+
msgid "Status"
|
1282 |
+
msgstr "Estado"
|
1283 |
|
1284 |
+
#: ../sentmail/deliverreport-show.php:75 ../sentmail/deliverreport-show.php:86 ..
|
1285 |
+
#: sentmail/sentmail-show.php:111 ../sentmail/sentmail-show.php:124
|
1286 |
+
msgid "Sent"
|
1287 |
+
msgstr "Enviado"
|
1288 |
|
1289 |
+
#: ../sentmail/deliverreport-show.php:76 ../sentmail/deliverreport-show.php:87
|
1290 |
+
msgid "Sent Date"
|
1291 |
+
msgstr "Fecha de envío"
|
1292 |
|
1293 |
+
#: ../sentmail/deliverreport-show.php:77 ../sentmail/deliverreport-show.php:88
|
1294 |
+
msgid "Viewed Status"
|
1295 |
+
msgstr "Ver estado"
|
|
|
1296 |
|
1297 |
+
#: ../sentmail/deliverreport-show.php:78 ../sentmail/deliverreport-show.php:89
|
1298 |
+
msgid "Viewed Date"
|
1299 |
+
msgstr "Ver fecha"
|
1300 |
|
1301 |
+
#: ../sentmail/sentmail-preview.php:27
|
1302 |
+
msgid "Preview Email"
|
1303 |
+
msgstr "Vista Previa"
|
1304 |
+
|
1305 |
+
#: ../sentmail/sentmail-preview.php:31
|
1306 |
msgid ""
|
1307 |
+
"This is how the email you sent may look. <br>Note: Different email services "
|
1308 |
+
"(like gmail, yahoo etc) display email content differently. So there could be "
|
1309 |
+
"a slight variation on how your customer will view the email content."
|
1310 |
msgstr ""
|
1311 |
+
"Así es como se verá el correo electrónico enviado.<br>Nota: Lo distintos "
|
1312 |
+
"servicios de correo electrónico (como gmail, yahoo, etc.) muestran el "
|
1313 |
+
"contenido de los correos de manera diferente.<br>Podría haber, por tanto, "
|
1314 |
+
"una ligera variación en cómo su cliente verá realmente el contenido del "
|
1315 |
+
"correo."
|
1316 |
|
1317 |
+
#: ../sentmail/sentmail-preview.php:53
|
1318 |
+
msgid "Back"
|
1319 |
+
msgstr "Volver"
|
1320 |
|
1321 |
+
#: ../sentmail/sentmail-show.php:43
|
1322 |
+
msgid "Successfully deleted all reports except latest 10."
|
1323 |
+
msgstr "Se han borrado todos los informes excepto los 10 últimos."
|
1324 |
|
1325 |
+
#: ../sentmail/sentmail-show.php:97
|
1326 |
+
msgid "It will show reports for all Newsletters & Post Notification emails sent."
|
1327 |
+
msgstr "Correos enviados con BOLETINES informativos y NOTIFICACIONES de nueva Entrada"
|
1328 |
|
1329 |
+
#: ../sentmail/sentmail-show.php:107 ../sentmail/sentmail-show.php:120
|
1330 |
+
msgid "View Reports"
|
1331 |
+
msgstr "Nombre del informe"
|
1332 |
|
1333 |
+
#: ../sentmail/sentmail-show.php:109 ../sentmail/sentmail-show.php:122
|
1334 |
+
msgid "Type"
|
1335 |
+
msgstr "Tipo"
|
1336 |
|
1337 |
+
#: ../sentmail/sentmail-show.php:112 ../sentmail/sentmail-show.php:125
|
1338 |
+
msgid "Start Date"
|
1339 |
+
msgstr "Comienzo"
|
1340 |
|
1341 |
+
#: ../sentmail/sentmail-show.php:113 ../sentmail/sentmail-show.php:126
|
1342 |
+
msgid "End Date"
|
1343 |
+
msgstr "Final"
|
1344 |
|
1345 |
+
#: ../sentmail/sentmail-show.php:114 ../sentmail/sentmail-show.php:127
|
1346 |
+
msgid "Total"
|
1347 |
+
msgstr "Total"
|
1348 |
|
1349 |
+
#: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
|
1350 |
+
#: subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
|
1351 |
+
#: export.php:69 ../subscribers/view-subscriber-show.php:293
|
1352 |
+
msgid "Action"
|
1353 |
+
msgstr "Acción"
|
1354 |
|
1355 |
+
#: ../sentmail/sentmail-show.php:190
|
1356 |
+
msgid "Optimize Table & Delete Records"
|
1357 |
+
msgstr "Optimizar tablas y borrar registros"
|
1358 |
|
1359 |
+
#: ../sentmail/sentmail-show.php:199
|
1360 |
+
msgid ""
|
1361 |
+
"Note: Please click on <strong>Optimize Table & Delete Records</strong> "
|
1362 |
+
"button to delete all reports except latest 10."
|
1363 |
+
msgstr ""
|
1364 |
+
"Nota: Por favor, haz clic en el botón <strong>Optimizar tablas y borrar "
|
1365 |
+
"registros</strong> para borrar todos los informes excepto los 10 últimos."
|
1366 |
|
1367 |
+
#: ../settings/setting-sync.php:16
|
1368 |
+
msgid "Table sync completed successfully."
|
1369 |
+
msgstr "Se ha sincronizado correctamente la base de datos."
|
1370 |
|
1371 |
+
#: ../settings/setting-sync.php:29
|
1372 |
+
msgid "Sync plugin tables"
|
1373 |
+
msgstr "Sincronizar base de datos"
|
1374 |
|
1375 |
+
#: ../settings/setting-sync.php:33
|
1376 |
+
msgid "Click to sync tables"
|
1377 |
+
msgstr "Haz clic para sincronizar la base de datos"
|
1378 |
|
1379 |
+
#: ../settings/settings-edit.php:23
|
1380 |
+
msgid "Admin"
|
1381 |
+
msgstr "Administrador"
|
1382 |
|
1383 |
+
#: ../settings/settings-edit.php:24
|
1384 |
+
msgid "Signup Confirmation"
|
1385 |
+
msgstr "Confirmación registro"
|
1386 |
|
1387 |
+
#: ../settings/settings-edit.php:25
|
1388 |
+
msgid "Cron"
|
1389 |
+
msgstr "Tareas"
|
1390 |
|
1391 |
+
#: ../settings/settings-edit.php:26
|
1392 |
+
msgid "User Roles"
|
1393 |
+
msgstr "Gestores"
|
1394 |
|
1395 |
+
#: ../settings/settings-edit.php:67
|
1396 |
+
msgid "Save Settings"
|
1397 |
+
msgstr "Guardar configuración"
|
1398 |
|
1399 |
+
#: ../settings/settings-edit.php:78
|
1400 |
+
msgid "Sender of Notifications"
|
1401 |
+
msgstr "Remitente de Notificaciones"
|
1402 |
+
|
1403 |
+
#: ../settings/settings-edit.php:79
|
1404 |
+
msgid ""
|
1405 |
+
"Choose a FROM name and FROM email address for all the emails to be sent from "
|
1406 |
+
"this plugin."
|
1407 |
msgstr ""
|
1408 |
+
"Nombre y dirección de correo que aparecerá en el campo <strong>DE:</strong> "
|
1409 |
+
"en los correos que se enviarán a tus suscriptores."
|
1410 |
|
1411 |
+
#: ../settings/settings-edit.php:89
|
1412 |
+
msgid "Email Type"
|
1413 |
+
msgstr "Tipo de correo"
|
1414 |
|
1415 |
+
#: ../settings/settings-edit.php:90
|
|
|
1416 |
msgid ""
|
1417 |
+
"Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
|
1418 |
+
"Option 3 & 4 is to send emails with PHP method mail()."
|
1419 |
msgstr ""
|
1420 |
+
"Las opciones 1 y 2 envían el correo mediante el sistema estándar de WP "
|
1421 |
+
"wp_mail().<br>Las opciones 3 y 4 envían el correo por el sistema mail() de "
|
1422 |
+
"PHP. "
|
1423 |
|
1424 |
+
#: ../settings/settings-edit.php:94
|
1425 |
+
msgid "1. WP HTML MAIL"
|
1426 |
+
msgstr "1. WP CORREO HTML"
|
1427 |
|
1428 |
+
#: ../settings/settings-edit.php:95
|
1429 |
+
msgid "2. WP PLAINTEXT MAIL"
|
1430 |
+
msgstr "2. WP CORREO TEXTO PLANO"
|
1431 |
|
1432 |
+
#: ../settings/settings-edit.php:96
|
1433 |
+
msgid "3. PHP HTML MAIL"
|
1434 |
+
msgstr "3. PHP CORREO PHP"
|
1435 |
|
1436 |
+
#: ../settings/settings-edit.php:97
|
1437 |
+
msgid "4. PHP PLAINTEXT MAIL"
|
1438 |
+
msgstr "4. PHP CORREO TEXTO PLANO"
|
|
|
1439 |
|
1440 |
+
#: ../settings/settings-edit.php:104
|
1441 |
+
msgid "Opt-In Type"
|
1442 |
+
msgstr "Verificación:"
|
|
|
1443 |
|
1444 |
+
#: ../settings/settings-edit.php:105
|
1445 |
+
msgid ""
|
1446 |
+
"Double Opt-In : In this type, the subscriber is sent an activation link as "
|
1447 |
+
"soon as they subscribe to your list. They have to confirm their subscription "
|
1448 |
+
"by clicking on the activation link.<br />Single Opt-In : In this type, the "
|
1449 |
+
"subscriber is not asked to confirm their email address. They are subscribed "
|
1450 |
+
"directly in the list."
|
1451 |
+
msgstr ""
|
1452 |
+
"DOBLE: Inmediatamente a la solicitud de suscripción a tu Lista, se envía al "
|
1453 |
+
"solicitante un correo con el enlace de activación. Tiene que confirmar su "
|
1454 |
+
"suscripción haciendo clic en dicho enlace. <br />SIN VERIFICACIÓN: No se "
|
1455 |
+
"pide al solicitante que confirme su dirección de correo electrónico, se le "
|
1456 |
+
"añade automáticamente a nuestra Lista."
|
1457 |
|
1458 |
+
#: ../settings/settings-edit.php:109
|
1459 |
+
msgid "Double Opt In"
|
1460 |
+
msgstr "Verificación doble"
|
1461 |
|
1462 |
+
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-add.php:155 ..
|
1463 |
+
#: subscribers/view-subscriber-edit.php:150 ../subscribers/view-subscriber-
|
1464 |
+
#: import.php:181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-
|
1465 |
+
#: subscriber-show.php:356
|
1466 |
+
msgid "Single Opt In"
|
1467 |
+
msgstr "Sin verificación"
|
1468 |
|
1469 |
+
#: ../settings/settings-edit.php:116
|
1470 |
+
msgid "Image Size"
|
1471 |
+
msgstr "Tamaño de imagen"
|
1472 |
|
1473 |
+
#: ../settings/settings-edit.php:121
|
1474 |
+
msgid "Full Size"
|
1475 |
+
msgstr "Grande"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1476 |
|
1477 |
+
#: ../settings/settings-edit.php:122
|
1478 |
+
msgid "Medium Size"
|
1479 |
+
msgstr "Mediana"
|
1480 |
|
1481 |
+
#: ../settings/settings-edit.php:129
|
1482 |
+
msgid "Admin Email Addresses"
|
1483 |
+
msgstr "Direcciones de Correo del Administrador"
|
|
|
|
|
|
|
|
|
1484 |
|
1485 |
+
#: ../settings/settings-edit.php:130
|
1486 |
+
msgid ""
|
1487 |
+
"Enter the admin email addresses that should receive notifications (separated "
|
1488 |
+
"by comma)."
|
1489 |
msgstr ""
|
1490 |
+
"Introduce la dirección de correo del administrador que recibirá las "
|
1491 |
+
"notificaciones del sistema. Si necesitas más de una, sepáralas con comas."
|
|
|
1492 |
|
1493 |
+
#: ../settings/settings-edit.php:136
|
1494 |
+
msgid "Notify Admin when a new subscriber signs up"
|
1495 |
+
msgstr "Notificar al administrador alta de suscriptor"
|
1496 |
|
1497 |
+
#: ../settings/settings-edit.php:137
|
1498 |
msgid ""
|
1499 |
+
"To send admin email notifications for the new subscriber. This option must "
|
1500 |
+
"be set to YES."
|
1501 |
msgstr ""
|
1502 |
+
"Si deseas que el Administrador reciba un correo al producirse cada nueva "
|
1503 |
+
"suscripción, esta opción debe estar en SÍ."
|
1504 |
|
1505 |
+
#: ../settings/settings-edit.php:149
|
1506 |
+
msgid "Admin Email Subject on new subscriber sign up"
|
1507 |
+
msgstr "ASUNTO: alta suscriptor"
|
|
|
|
|
1508 |
|
1509 |
+
#: ../settings/settings-edit.php:150
|
1510 |
+
msgid ""
|
1511 |
+
"Subject for the admin email whenever a new subscriber signs up and is "
|
1512 |
+
"confirmed."
|
1513 |
msgstr ""
|
1514 |
+
"Asunto del correo que se enviará al Administrador cuando un nuevo suscriptor "
|
1515 |
+
"confirme su correo."
|
1516 |
|
1517 |
+
#: ../settings/settings-edit.php:156
|
1518 |
+
msgid "Admin Email Content on new subscriber signs up"
|
1519 |
+
msgstr "TEXTO: alta suscriptor"
|
|
|
|
|
1520 |
|
1521 |
+
#: ../settings/settings-edit.php:164
|
1522 |
+
msgid "Sent Report Subject"
|
1523 |
+
msgstr "ASUNTO: Informes"
|
|
|
|
|
1524 |
|
1525 |
+
#: ../settings/settings-edit.php:165
|
1526 |
+
msgid "Subject for the email report which will be sent to admin."
|
1527 |
+
msgstr "Asunto del correo que se enviará al administrador con los informes"
|
1528 |
|
1529 |
+
#: ../settings/settings-edit.php:171
|
1530 |
+
msgid "Sent Report Content"
|
1531 |
+
msgstr "TEXTO: Informes"
|
1532 |
|
1533 |
+
#: ../settings/settings-edit.php:183
|
1534 |
+
msgid "Double Opt-In Email Subject (Confirmation Email)"
|
1535 |
+
msgstr "ASUNTO: Confirmar cuenta correo"
|
1536 |
|
1537 |
+
#: ../settings/settings-edit.php:184
|
1538 |
+
msgid ""
|
1539 |
+
"Subject for the confirmation email to be sent for Double Opt-In whenever a "
|
1540 |
+
"subscriber signs up."
|
1541 |
+
msgstr ""
|
1542 |
+
"Asunto del correo que se enviará a cada nuevo suscriptor para que pulse en "
|
1543 |
+
"el enlace de confirmación de su cuenta de correo. Solo lo recibirá si tienes "
|
1544 |
+
"activada la opcíon [Verificación doble]."
|
1545 |
|
1546 |
+
#: ../settings/settings-edit.php:190
|
1547 |
+
msgid "Double Opt-In Email Content (Confirmation Email)"
|
1548 |
+
msgstr "TEXTO: Confirmar cuenta correo"
|
1549 |
|
1550 |
+
#: ../settings/settings-edit.php:197
|
1551 |
+
msgid "Double Opt-In Confirmation Link"
|
1552 |
+
msgstr "Enlace para confirmar correo [Verificación doble]"
|
|
|
|
|
|
|
|
|
|
|
|
|
1553 |
|
1554 |
+
#: ../settings/settings-edit.php:198
|
1555 |
+
msgid "It is a readonly field and you are advised not to modify it."
|
1556 |
+
msgstr "Este es un campo de sólo lectura. Te aconsejo no lo modifiques."
|
1557 |
|
1558 |
+
#: ../settings/settings-edit.php:204
|
|
|
1559 |
msgid ""
|
1560 |
+
"Text to display after an email address is successfully subscribed from "
|
1561 |
+
"Double Opt-In (Confirmation) Email"
|
1562 |
+
msgstr "MENSAJE: Cuenta correo confirmada"
|
1563 |
+
|
1564 |
+
#: ../settings/settings-edit.php:205
|
1565 |
+
msgid ""
|
1566 |
+
"This text will be displayed once user clicks on email confirmation link from "
|
1567 |
+
"the Double Opt In (confirmation) Email."
|
1568 |
msgstr ""
|
1569 |
+
"Mensaje que aparecerá en la pantalla del nuevo suscriptor cuando confirme su "
|
1570 |
+
"cuenta de correo y esta sea correcta.<br>Opción [Verificación doble] "
|
1571 |
+
"activada."
|
|
|
|
|
|
|
1572 |
|
1573 |
+
#: ../settings/settings-edit.php:212
|
1574 |
+
msgid "Send Welcome Email to New Subscribers after Sign Up?"
|
1575 |
+
msgstr "Comunicar ALTA al suscriptor"
|
1576 |
|
1577 |
+
#: ../settings/settings-edit.php:213
|
1578 |
+
msgid ""
|
1579 |
+
"To send welcome email to subscriber after successful signup. This option "
|
1580 |
+
"must be set to YES."
|
1581 |
msgstr ""
|
1582 |
+
"El nuevo suscriptor recibirá un correo comunicandole que se ha completado su "
|
1583 |
+
"ALTA.<br>Si tienes la opción de verificación en [Sin verificación] lo "
|
1584 |
+
"recibirá inmediatamente.<br>Si está en [Verificación doble] lo recibirá "
|
1585 |
+
"despues de completar satisfactoriamente la comprobación de válidez de la "
|
1586 |
+
"cuenta de correo que ha proporcionado."
|
1587 |
|
1588 |
+
#: ../settings/settings-edit.php:224
|
1589 |
+
msgid "Subject for Welcome Email"
|
1590 |
+
msgstr "ASUNTO: correo de Bienvenida"
|
1591 |
|
1592 |
+
#: ../settings/settings-edit.php:225
|
1593 |
+
msgid ""
|
1594 |
+
"Subject for the subscriber welcome email. This will be sent whenever a "
|
1595 |
+
"user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
|
1596 |
+
"Opt-In) successfully."
|
1597 |
+
msgstr ""
|
1598 |
+
"Asunto del correo que se enviará a cada nuevo suscriptor una vez haya sido "
|
1599 |
+
"dado de ALTA.<br>Debes tener en [SÍ] la opción anterior."
|
1600 |
|
1601 |
+
#: ../settings/settings-edit.php:231
|
1602 |
+
msgid "Email Content for Welcome Email"
|
1603 |
+
msgstr "TEXTO: correo de Bienvenida"
|
1604 |
|
1605 |
+
#: ../settings/settings-edit.php:240
|
1606 |
+
msgid "Unsubscribe Link"
|
1607 |
+
msgstr "Enlace para cancelar la suscripción"
|
1608 |
+
|
1609 |
+
#: ../settings/settings-edit.php:241
|
1610 |
msgid ""
|
1611 |
+
"This unsubscribe link is automatically added to all the emails that are sent "
|
1612 |
+
"from this plugin. It is a readonly field and you are advised not to modify "
|
1613 |
+
"it."
|
1614 |
msgstr ""
|
1615 |
+
"Este enlace para darse de baja se añade automáticamente a todos los correos "
|
1616 |
+
"electrónicos que se envían desde este plugin. Es un campo de sólo lectura y "
|
1617 |
+
"se recomienda no modificarlo."
|
1618 |
|
1619 |
+
#: ../settings/settings-edit.php:247
|
1620 |
+
msgid "Unsubscribe Text in Email"
|
1621 |
+
msgstr "TEXTO: enlace cancelación"
|
1622 |
|
1623 |
+
#: ../settings/settings-edit.php:254
|
1624 |
+
msgid "Text to display after an email address is unsubscribed"
|
1625 |
+
msgstr "MENSAJE: suscripción cancelada"
|
1626 |
+
|
1627 |
+
#: ../settings/settings-edit.php:255
|
1628 |
+
msgid ""
|
1629 |
+
"This text will be displayed once user clicks on unsubscribe link from the "
|
1630 |
+
"email."
|
1631 |
msgstr ""
|
1632 |
+
"Mensaje que aparecerá en la pantalla del suscriptor despues de que este haya "
|
1633 |
+
"pulsado en el enlace para darse de baja que figura en todos los correos que "
|
1634 |
+
"le enviamos."
|
1635 |
|
1636 |
+
#: ../settings/settings-edit.php:262
|
1637 |
+
msgid "Error in the Subscribe / Confirmation Link"
|
1638 |
+
msgstr "Error en la suscripción o en lace de confirmación"
|
1639 |
|
1640 |
+
#: ../settings/settings-edit.php:263
|
1641 |
+
msgid ""
|
1642 |
+
"Default message to display if there is any issue while clicking on subscribe "
|
1643 |
+
"/ confirmation link from the Double Opt-In (Confirmation) emails."
|
1644 |
+
msgstr ""
|
1645 |
+
"Mensaje predeterminado para mostrar si hay algún problema al hacer clic en "
|
1646 |
+
"el enlace de suscripción / confirmación de los correos electrónicos de doble "
|
1647 |
+
"verificación."
|
1648 |
|
1649 |
+
#: ../settings/settings-edit.php:269
|
1650 |
+
msgid "Error in the Unsubscribe Link"
|
1651 |
+
msgstr "Error en el enlace de Cancelación de suscripción"
|
1652 |
|
1653 |
+
#: ../settings/settings-edit.php:270
|
1654 |
+
msgid ""
|
1655 |
+
"Default message to display if there is any issue while clicking on "
|
1656 |
+
"unsubscribe link from the emails."
|
1657 |
msgstr ""
|
1658 |
+
"Mensaje predeterminado para mostrar si hay algún problema al hacer clic en "
|
1659 |
+
"el enlace de cancelación de suscripción que aparece en nuestros correos "
|
1660 |
+
"electrónicos."
|
1661 |
|
1662 |
+
#: ../settings/settings-edit.php:282
|
1663 |
+
msgid "Select user roles who can access following menus. Only Admin can change this."
|
1664 |
+
msgstr ""
|
1665 |
+
"Define el tipo de usuario de tu sitio WordPress que podrán acceder a los "
|
1666 |
+
"menús.<br>Sólo podrás utilizar esta opción si entras como Administrador."
|
1667 |
|
1668 |
+
#: ../settings/settings-edit.php:288
|
1669 |
+
msgid "Subscribers Menu"
|
1670 |
+
msgstr "Menú Suscriptores"
|
1671 |
|
1672 |
+
#: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
|
1673 |
+
#: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
|
1674 |
+
#: settings/settings-edit.php:340
|
1675 |
+
msgid "Administrator Only"
|
1676 |
+
msgstr "Sólo Administradores"
|
1677 |
|
1678 |
+
#: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
|
1679 |
+
#: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
|
1680 |
+
#: settings/settings-edit.php:341
|
1681 |
+
msgid "Administrator/Editor"
|
1682 |
+
msgstr "Administrador/Editor"
|
1683 |
|
1684 |
+
#: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
|
1685 |
+
#: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
|
1686 |
+
#: settings/settings-edit.php:342
|
1687 |
+
msgid "Administrator/Editor/Author/Contributor"
|
1688 |
+
msgstr "Administrador/Editor/Autor/Colaborador"
|
1689 |
|
1690 |
+
#: ../settings/settings-edit.php:312
|
1691 |
+
msgid "Post Notifications Menu"
|
1692 |
+
msgstr "Menú Notificar Entrada"
|
1693 |
|
1694 |
+
#: ../settings/settings-edit.php:336
|
1695 |
+
msgid "Reports Menu"
|
1696 |
+
msgstr "Menú Informes"
|
1697 |
|
1698 |
+
#: ../settings/settings-edit.php:353
|
1699 |
+
msgid "Cron job URL"
|
1700 |
+
msgstr "URL de las tareas CRON programadas"
|
1701 |
|
1702 |
+
#: ../settings/settings-edit.php:354
|
1703 |
+
msgid ""
|
1704 |
+
"This is your Cron Job URL. It is a readonly field and you are advised not to "
|
1705 |
+
"modify it."
|
1706 |
+
msgstr "Esta es la URL de tus tareas CRON. Te recomendamos que no lo modifiques."
|
1707 |
|
1708 |
+
#: ../settings/settings-edit.php:363
|
1709 |
+
msgid "Email Count"
|
1710 |
+
msgstr "Correos por hora"
|
1711 |
|
1712 |
+
#: ../settings/settings-edit.php:364
|
1713 |
+
msgid "Number of emails that you want to trigger per hour."
|
1714 |
+
msgstr "Número de correos que se enviarán en una hora."
|
1715 |
|
1716 |
+
#: ../settings/settings-edit.php:369
|
1717 |
+
msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
|
|
|
|
|
1718 |
msgstr ""
|
1719 |
+
"(Tu Hosting puede tener límites. Te sugiero solo 50 correos electrónicos por "
|
1720 |
+
"hora para mayor seguridad)"
|
1721 |
|
1722 |
+
#: ../settings/settings-edit.php:374
|
1723 |
+
msgid "Cron Report"
|
1724 |
+
msgstr "Informes de CRON"
|
1725 |
|
1726 |
+
#: ../settings/settings-edit.php:385
|
1727 |
+
msgid "What is Cron (auto emails) and how to setup Cron Job?"
|
1728 |
+
msgstr ""
|
1729 |
+
"¿Cómo puedes utilizar un programador de tareas Cron para enviar los correos "
|
1730 |
+
"automáticamente? ¿Y cómo se configura una tarea Cron?"
|
1731 |
|
1732 |
+
#: ../settings/settings-edit.php:386
|
1733 |
+
msgid ""
|
1734 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
1735 |
+
"schedule-cron-emails/?"
|
1736 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
|
1737 |
+
"Cron?</a>"
|
1738 |
msgstr ""
|
1739 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
1740 |
+
"schedule-cron-emails/?"
|
1741 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">¿Que es "
|
1742 |
+
"CRON?</a>"
|
1743 |
|
1744 |
+
#: ../settings/settings-edit.php:387
|
1745 |
msgid ""
|
1746 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
1747 |
+
"schedule-cron-emails-in-cpanel/?"
|
1748 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
|
1749 |
+
"job in cPanel</a>"
|
1750 |
msgstr ""
|
1751 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
1752 |
+
"schedule-cron-emails-in-cpanel/?"
|
1753 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Modificar "
|
1754 |
+
"tareas CRON desde cPanel</a>"
|
1755 |
|
1756 |
+
#: ../settings/settings-edit.php:388
|
1757 |
msgid ""
|
1758 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
1759 |
+
"schedule-cron-emails-in-parallels-plesk/?"
|
1760 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
|
1761 |
+
"job in Plesk</a>"
|
1762 |
msgstr ""
|
1763 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
1764 |
+
"schedule-cron-emails-in-parallels-plesk/?"
|
1765 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Modificar "
|
1766 |
+
"tareas CRON desde Plesk</a>"
|
1767 |
|
1768 |
+
#: ../settings/settings-edit.php:389
|
1769 |
+
msgid ""
|
1770 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
|
1771 |
+
"if-hosting-doesnt-support-cron-jobs/?"
|
1772 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
|
1773 |
+
"does not support cron jobs?</a>"
|
1774 |
+
msgstr ""
|
1775 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
|
1776 |
+
"if-hosting-doesnt-support-cron-jobs/?"
|
1777 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">¿Tu "
|
1778 |
+
"Hosting no soporta tareas de CRON?</a>"
|
1779 |
|
1780 |
+
#: ../settings/settings-edit.php:504
|
1781 |
+
msgid "Please enter sender of notifications from name."
|
1782 |
+
msgstr "Introduce el nombre que aparecerá en el campo DE: al enviar notificaciones."
|
1783 |
|
1784 |
+
#: ../settings/settings-edit.php:509
|
1785 |
+
msgid "Please enter sender of notifications from email."
|
1786 |
+
msgstr "Dirección de correo que aparecerá en el campo DE: al enviar notificaciones."
|
1787 |
|
1788 |
+
#: ../settings/settings-edit.php:553
|
1789 |
+
msgid "Please enter valid mail count."
|
1790 |
+
msgstr "Por favor, introduzca una cuenta de correo válida."
|
1791 |
|
1792 |
+
#: ../settings/settings-edit.php:566
|
1793 |
+
msgid "Settings Saved."
|
1794 |
+
msgstr "Configuración guardada."
|
|
|
|
|
|
|
|
|
1795 |
|
1796 |
+
#: ../settings/settings-edit.php:569
|
1797 |
+
msgid "Oops, unable to update."
|
1798 |
+
msgstr "Vaya, no se ha podido actualizar."
|
1799 |
+
|
1800 |
+
#: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
|
1801 |
+
#: php:54
|
1802 |
+
msgid "Please enter subscriber email address."
|
1803 |
+
msgstr "Por favor, introduce su dirección de correo como suscriptor."
|
1804 |
+
|
1805 |
+
#: ../subscribers/view-subscriber-add.php:52
|
1806 |
+
msgid "Please select or create your group for this email."
|
1807 |
+
msgstr "Selecciona o crea un grupo para este correo"
|
1808 |
+
|
1809 |
+
#: ../subscribers/view-subscriber-add.php:59
|
1810 |
msgid ""
|
1811 |
+
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1812 |
+
"the group name."
|
1813 |
msgstr ""
|
1814 |
+
"Error: los caracteres especiales (['^$%&*()}{@#~?><>,|=_+\\\"]) no se permiten "
|
1815 |
+
"como nombre de grupo."
|
1816 |
|
1817 |
+
#: ../subscribers/view-subscriber-add.php:69
|
1818 |
+
msgid "Subscriber has been saved."
|
1819 |
+
msgstr "Suscriptor registrado correctamente."
|
1820 |
|
1821 |
+
#: ../subscribers/view-subscriber-add.php:71
|
1822 |
+
msgid "Subscriber already exists."
|
1823 |
+
msgstr "Ese suscriptor ya existe."
|
1824 |
|
1825 |
+
#: ../subscribers/view-subscriber-add.php:74
|
1826 |
+
msgid "Invalid Email."
|
1827 |
+
msgstr "Dirección de correo no válida."
|
1828 |
|
1829 |
+
#: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
|
1830 |
+
#: php:109 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
|
1831 |
+
#: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
|
1832 |
+
#: subscribers/view-subscriber-sync.php:89
|
1833 |
+
msgid "Add New Subscriber"
|
1834 |
+
msgstr "Añadir"
|
1835 |
|
1836 |
+
#: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
|
1837 |
+
#: php:110 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
|
1838 |
+
#: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
|
1839 |
+
#: subscribers/view-subscriber-sync.php:90
|
1840 |
+
msgid "Import"
|
1841 |
+
msgstr "Importar"
|
1842 |
|
1843 |
+
#: ../subscribers/view-subscriber-add.php:116 ../subscribers/view-subscriber-edit.
|
1844 |
+
#: php:111 ../subscribers/view-subscriber-import.php:147 ../subscribers/view-
|
1845 |
+
#: subscriber-show.php:245 ../subscribers/view-subscriber-sync.php:91
|
1846 |
+
msgid "Export"
|
1847 |
+
msgstr "Exportar"
|
1848 |
|
1849 |
+
#: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
|
1850 |
+
#: php:112 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
|
1851 |
+
#: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
|
1852 |
+
#: subscribers/view-subscriber-sync.php:143
|
1853 |
+
msgid "Sync"
|
1854 |
+
msgstr "Sincronizar"
|
1855 |
+
|
1856 |
+
#: ../subscribers/view-subscriber-add.php:127
|
1857 |
+
msgid "Enter Subscriber's Full name"
|
1858 |
+
msgstr "Nombre"
|
1859 |
+
|
1860 |
+
#: ../subscribers/view-subscriber-add.php:137
|
1861 |
+
msgid "Enter Subscriber's Email Address"
|
1862 |
+
msgstr "Dirección de correo"
|
1863 |
+
|
1864 |
+
#: ../subscribers/view-subscriber-add.php:147
|
1865 |
+
msgid "Select Subscriber's Status"
|
1866 |
+
msgstr "¿Situación del suscriptor?"
|
1867 |
+
|
1868 |
+
#: ../subscribers/view-subscriber-add.php:152 ../subscribers/view-subscriber-edit.
|
1869 |
+
#: php:147 ../subscribers/view-subscriber-import.php:178 ../subscribers/view-
|
1870 |
+
#: subscriber-show.php:323 ../subscribers/view-subscriber-show.php:353
|
1871 |
+
msgid "Confirmed"
|
1872 |
+
msgstr "Confirmado"
|
1873 |
+
|
1874 |
+
#: ../subscribers/view-subscriber-add.php:153 ../subscribers/view-subscriber-edit.
|
1875 |
+
#: php:148 ../subscribers/view-subscriber-import.php:179 ../subscribers/view-
|
1876 |
+
#: subscriber-show.php:324 ../subscribers/view-subscriber-show.php:354
|
1877 |
+
msgid "Unconfirmed"
|
1878 |
+
msgstr "Sin confirmar"
|
1879 |
+
|
1880 |
+
#: ../subscribers/view-subscriber-add.php:154 ../subscribers/view-subscriber-edit.
|
1881 |
+
#: php:149 ../subscribers/view-subscriber-import.php:180 ../subscribers/view-
|
1882 |
+
#: subscriber-show.php:325 ../subscribers/view-subscriber-show.php:355
|
1883 |
+
msgid "Unsubscribed"
|
1884 |
+
msgstr "Suscripción cancelada"
|
1885 |
+
|
1886 |
+
#: ../subscribers/view-subscriber-add.php:162
|
1887 |
+
msgid "Select (or) Create Group for Subscriber"
|
1888 |
+
msgstr "Selecciona o crea un grupo"
|
1889 |
|
1890 |
+
#: ../subscribers/view-subscriber-add.php:178 ../subscribers/view-subscriber-
|
1891 |
+
#: import.php:205
|
1892 |
+
msgid "(or)"
|
1893 |
+
msgstr "(o)"
|
|
|
1894 |
|
1895 |
+
#: ../subscribers/view-subscriber-add.php:187
|
1896 |
+
msgid "Add Subscriber"
|
1897 |
+
msgstr "Añadir un suscriptor"
|
1898 |
|
1899 |
+
#: ../subscribers/view-subscriber-edit.php:64
|
1900 |
+
msgid "Error: Special characters are not allowed in the group name."
|
1901 |
+
msgstr "Error: No se permiten caracteres especiales en el nombre de grupo."
|
1902 |
|
1903 |
+
#: ../subscribers/view-subscriber-edit.php:74
|
1904 |
+
msgid "Subscriber details updated."
|
1905 |
+
msgstr "Actualizados correctamente los detalles del suscriptor."
|
1906 |
|
1907 |
+
#: ../subscribers/view-subscriber-edit.php:76
|
1908 |
+
msgid "Subscriber already exists for this group."
|
1909 |
+
msgstr "El suscriptor ya existe en este grupo."
|
1910 |
|
1911 |
+
#: ../subscribers/view-subscriber-edit.php:108
|
1912 |
+
msgid "Edit Subscriber"
|
1913 |
+
msgstr "Editar Suscriptor"
|
1914 |
|
1915 |
+
#: ../subscribers/view-subscriber-edit.php:122
|
1916 |
+
msgid "Subscriber's Full Name"
|
1917 |
+
msgstr "Nombre completo del suscriptor"
|
|
|
1918 |
|
1919 |
+
#: ../subscribers/view-subscriber-edit.php:132
|
1920 |
+
msgid "Subscriber's Email Address"
|
1921 |
+
msgstr "Dirección de correo electrónico del suscriptor"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1922 |
|
1923 |
+
#: ../subscribers/view-subscriber-edit.php:142
|
1924 |
+
msgid "Update Subscriber's Status"
|
1925 |
+
msgstr "Actualizar estado del suscriptor"
|
1926 |
|
1927 |
+
#: ../subscribers/view-subscriber-edit.php:157
|
1928 |
+
msgid "Update Subscriber's Group"
|
1929 |
+
msgstr "Actualizar el grupo de suscriptores"
|
1930 |
|
1931 |
+
#: ../subscribers/view-subscriber-export.php:47
|
1932 |
+
msgid "Export Email Addresses"
|
1933 |
+
msgstr "Exportar suscriptores"
|
1934 |
|
1935 |
+
#: ../subscribers/view-subscriber-export.php:59 ../subscribers/view-subscriber-
|
1936 |
+
#: export.php:67
|
1937 |
+
msgid "Type of List to Export"
|
1938 |
+
msgstr "Exportar"
|
1939 |
|
1940 |
+
#: ../subscribers/view-subscriber-export.php:60 ../subscribers/view-subscriber-
|
1941 |
+
#: export.php:68
|
1942 |
+
msgid "Total Emails Count"
|
1943 |
+
msgstr "Suscriptores"
|
1944 |
|
1945 |
+
#: ../subscribers/view-subscriber-export.php:74
|
1946 |
+
msgid "1"
|
1947 |
+
msgstr "1"
|
1948 |
|
1949 |
+
#: ../subscribers/view-subscriber-export.php:75
|
1950 |
+
msgid "All Subscribers"
|
1951 |
+
msgstr "Todos los suscriptores"
|
1952 |
|
1953 |
+
#: ../subscribers/view-subscriber-export.php:77 ../subscribers/view-subscriber-
|
1954 |
+
#: export.php:83 ../subscribers/view-subscriber-export.php:89 ../subscribers/view-
|
1955 |
+
#: subscriber-export.php:95 ../subscribers/view-subscriber-export.php:101
|
1956 |
+
msgid "Click to Export in CSV"
|
1957 |
+
msgstr "Clic para exportar fichero .CSV"
|
1958 |
|
1959 |
+
#: ../subscribers/view-subscriber-export.php:80
|
1960 |
+
msgid "2"
|
1961 |
+
msgstr "2"
|
1962 |
|
1963 |
+
#: ../subscribers/view-subscriber-export.php:81
|
1964 |
+
msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
|
1965 |
+
msgstr "Solo en activo (de verificación doble o sin verificación)"
|
1966 |
|
1967 |
+
#: ../subscribers/view-subscriber-export.php:86
|
1968 |
+
msgid "3"
|
1969 |
+
msgstr "3"
|
1970 |
|
1971 |
+
#: ../subscribers/view-subscriber-export.php:87
|
1972 |
+
msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
|
1973 |
+
msgstr "Solo inactivos (sin confirmar o dados de baja)"
|
1974 |
|
1975 |
+
#: ../subscribers/view-subscriber-export.php:92
|
1976 |
+
msgid "4"
|
1977 |
+
msgstr "4"
|
1978 |
|
1979 |
+
#: ../subscribers/view-subscriber-export.php:93
|
1980 |
+
msgid "WordPress Registered Users"
|
1981 |
+
msgstr "Usuarios registrados en WordPress"
|
|
|
1982 |
|
1983 |
+
#: ../subscribers/view-subscriber-export.php:98
|
1984 |
+
msgid "5"
|
1985 |
+
msgstr "5"
|
1986 |
|
1987 |
+
#: ../subscribers/view-subscriber-export.php:99
|
1988 |
+
msgid "Commented Authors"
|
1989 |
+
msgstr "Que han dejado comentarios"
|
1990 |
|
1991 |
+
#: ../subscribers/view-subscriber-import.php:45
|
1992 |
+
msgid ""
|
1993 |
+
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1994 |
+
"the Group name."
|
1995 |
+
msgstr ""
|
1996 |
+
"Error: Los caracteres especiales (['^$%&*()}{@#~?><>,|=_+\\\"]) no están "
|
1997 |
+
"permitidos como nombre de Grupo."
|
1998 |
|
1999 |
+
#: ../subscribers/view-subscriber-import.php:95
|
2000 |
+
msgid "email imported."
|
2001 |
+
msgstr "Importados los correos."
|
|
|
2002 |
|
2003 |
+
#: ../subscribers/view-subscriber-import.php:96
|
2004 |
+
msgid "email already exists."
|
2005 |
+
msgstr "Ese correo electrónico ya existe."
|
|
|
2006 |
|
2007 |
+
#: ../subscribers/view-subscriber-import.php:97
|
2008 |
+
msgid "email are invalid."
|
2009 |
+
msgstr "Dirección de correo no válida."
|
|
|
2010 |
|
2011 |
+
#: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
|
2012 |
+
#: import.php:129
|
2013 |
+
msgid "Click here"
|
2014 |
+
msgstr "Haz clic aquí"
|
2015 |
|
2016 |
+
#: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
|
2017 |
+
#: import.php:129
|
2018 |
+
msgid " to view details."
|
2019 |
+
msgstr " para ver los detalles."
|
2020 |
|
2021 |
+
#: ../subscribers/view-subscriber-import.php:108
|
2022 |
+
msgid "File Upload Failed."
|
2023 |
+
msgstr "Fallo al subir fichero."
|
|
|
|
|
|
|
2024 |
|
2025 |
+
#: ../subscribers/view-subscriber-import.php:145
|
2026 |
+
msgid "Import Email Addresses"
|
2027 |
+
msgstr "Importar suscriptores"
|
|
|
2028 |
|
2029 |
+
#: ../subscribers/view-subscriber-import.php:158
|
2030 |
+
msgid "Select CSV file"
|
2031 |
+
msgstr "Fichero .CSV para la importación"
|
|
|
2032 |
|
2033 |
+
#: ../subscribers/view-subscriber-import.php:160
|
2034 |
+
msgid "Check CSV structure "
|
2035 |
+
msgstr "¿Estructura? Consulta "
|
|
|
2036 |
|
2037 |
+
#: ../subscribers/view-subscriber-import.php:161
|
2038 |
+
msgid "from here"
|
2039 |
+
msgstr "este enlace"
|
|
|
|
|
|
|
|
|
|
|
2040 |
|
2041 |
+
#: ../subscribers/view-subscriber-import.php:172
|
2042 |
+
msgid "Select Subscribers Email Status"
|
2043 |
+
msgstr "¿ Situación del suscriptor?"
|
|
|
2044 |
|
2045 |
+
#: ../subscribers/view-subscriber-import.php:188
|
2046 |
+
msgid "Select (or) Create Group for Subscribers"
|
2047 |
+
msgstr "Selecciona o crea un grupo"
|
|
|
2048 |
|
2049 |
+
#: ../subscribers/view-subscriber-show.php:45
|
2050 |
+
msgid "Selected details does not exists."
|
2051 |
+
msgstr "Los detalles seleccionados no existen."
|
|
|
2052 |
|
2053 |
+
#: ../subscribers/view-subscriber-show.php:56 ../subscribers/view-subscriber-show.
|
2054 |
+
#: php:95
|
2055 |
+
msgid "Record deleted."
|
2056 |
+
msgstr "Registro borrado."
|
2057 |
|
2058 |
+
#: ../subscribers/view-subscriber-show.php:67
|
2059 |
+
msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
|
2060 |
+
msgstr ""
|
2061 |
+
"Si quieres enviar un correo de confirmación debes cambiar la opción a doble "
|
2062 |
+
"verificación."
|
2063 |
|
2064 |
+
#: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
|
2065 |
+
#: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
|
2066 |
+
#: subscriber-show.php:217
|
2067 |
+
msgid "No record was selected."
|
2068 |
+
msgstr "No se han seleccionado registros."
|
2069 |
+
|
2070 |
+
#: ../subscribers/view-subscriber-show.php:115
|
2071 |
+
msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
|
2072 |
msgstr ""
|
2073 |
+
"Si quieres enviar un correo de confirmación debes cambiar la opción a doble "
|
2074 |
+
"verificación."
|
2075 |
|
2076 |
+
#: ../subscribers/view-subscriber-show.php:164
|
2077 |
+
msgid "Subscribers Group updated."
|
2078 |
+
msgstr "Actualizado el grupo de suscriptores."
|
|
|
2079 |
|
2080 |
+
#: ../subscribers/view-subscriber-show.php:169
|
2081 |
+
msgid "Please select New group to update."
|
2082 |
+
msgstr "Selecciona un nuevo grupo para actualizar."
|
|
|
2083 |
|
2084 |
+
#: ../subscribers/view-subscriber-show.php:203
|
2085 |
+
msgid "Subscribers Status updated."
|
2086 |
+
msgstr "Actualizado el estado de los suscriptores."
|
|
|
|
|
|
|
2087 |
|
2088 |
+
#: ../subscribers/view-subscriber-show.php:208
|
2089 |
+
msgid "Please select New Status to update."
|
2090 |
+
msgstr "Selecciona el nuevo estado a actualizar."
|
|
|
2091 |
|
2092 |
+
#: ../subscribers/view-subscriber-show.php:258
|
2093 |
+
#, php-format
|
2094 |
+
msgid "Active Subscribers: %s"
|
2095 |
+
msgstr "Suscriptores activos: %s"
|
2096 |
|
2097 |
+
#: ../subscribers/view-subscriber-show.php:288
|
2098 |
+
msgid "Email Address"
|
2099 |
+
msgstr "Dirección de correo"
|
|
|
2100 |
|
2101 |
+
#: ../subscribers/view-subscriber-show.php:291
|
2102 |
+
msgid "Group"
|
2103 |
+
msgstr "Grupo"
|
|
|
2104 |
|
2105 |
+
#: ../subscribers/view-subscriber-show.php:292
|
2106 |
+
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
2107 |
+
msgstr "Fecha y hora"
|
|
|
2108 |
|
2109 |
+
#: ../subscribers/view-subscriber-show.php:300
|
2110 |
+
msgid "Bulk Actions"
|
2111 |
+
msgstr "Acciones en bloque"
|
|
|
2112 |
|
2113 |
+
#: ../subscribers/view-subscriber-show.php:302 ../subscribers/view-subscriber-
|
2114 |
+
#: show.php:413
|
2115 |
+
msgid "Resend Confirmation"
|
2116 |
+
msgstr "Pedir otra vez confirmación"
|
2117 |
|
2118 |
+
#: ../subscribers/view-subscriber-show.php:304
|
2119 |
+
msgid "Update Subscribers Status"
|
2120 |
+
msgstr "Modificar su ESTADO"
|
|
|
2121 |
|
2122 |
+
#: ../subscribers/view-subscriber-show.php:307
|
2123 |
+
msgid "Select Group"
|
2124 |
+
msgstr "Selecciona Grupo"
|
|
|
2125 |
|
2126 |
+
#: ../subscribers/view-subscriber-show.php:322
|
2127 |
+
msgid "Select Status"
|
2128 |
+
msgstr "Selecciona Estado"
|
|
|
2129 |
|
2130 |
+
#: ../subscribers/view-subscriber-show.php:328
|
2131 |
+
msgid "Apply"
|
2132 |
+
msgstr "Aplicar"
|
|
|
2133 |
|
2134 |
+
#: ../subscribers/view-subscriber-show.php:335
|
2135 |
+
msgid "All Groups"
|
2136 |
+
msgstr "Todos los Grupos"
|
|
|
2137 |
|
2138 |
+
#: ../subscribers/view-subscriber-show.php:352
|
2139 |
+
msgid "All Status"
|
2140 |
+
msgstr "Todos los Estados"
|
|
|
2141 |
|
2142 |
+
#: ../subscribers/view-subscriber-show.php:359
|
2143 |
+
msgid "1 to 500 emails"
|
2144 |
+
msgstr "1 a 500 correos"
|
|
|
2145 |
|
2146 |
+
#: ../subscribers/view-subscriber-show.php:360
|
2147 |
+
msgid "501 to 1000"
|
2148 |
+
msgstr "501 a 1.000"
|
|
|
2149 |
|
2150 |
+
#: ../subscribers/view-subscriber-show.php:361
|
2151 |
+
msgid "1001 to 1500"
|
2152 |
+
msgstr "1.001 a 1.500"
|
|
|
2153 |
|
2154 |
+
#: ../subscribers/view-subscriber-show.php:362
|
2155 |
+
msgid "1501 to 2000"
|
2156 |
+
msgstr "1.501 a 2.000"
|
|
|
2157 |
|
2158 |
+
#: ../subscribers/view-subscriber-show.php:363
|
2159 |
+
msgid "2001 to 4000"
|
2160 |
+
msgstr "2.001 a 4.000"
|
|
|
2161 |
|
2162 |
+
#: ../subscribers/view-subscriber-show.php:364
|
2163 |
+
msgid "4001 to 6000"
|
2164 |
+
msgstr "4.001 a 6.000"
|
|
|
2165 |
|
2166 |
+
#: ../subscribers/view-subscriber-show.php:365
|
2167 |
+
msgid "6001 to 10000"
|
2168 |
+
msgstr "6.001 a 10.000"
|
|
|
2169 |
|
2170 |
+
#: ../subscribers/view-subscriber-show.php:366
|
2171 |
+
msgid "Display All"
|
2172 |
+
msgstr "Ver todo"
|
|
|
2173 |
|
2174 |
+
#: ../subscribers/view-subscriber-sync.php:36
|
2175 |
+
msgid "Please select default group to newly registered user."
|
2176 |
+
msgstr "Grupo por omisión para los nuevos suscriptores."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2177 |
|
2178 |
+
#: ../subscribers/view-subscriber-sync.php:50
|
2179 |
+
msgid "Emails Successfully Synced."
|
2180 |
+
msgstr "Correos sincronizados correctamente."
|
2181 |
|
2182 |
+
#: ../subscribers/view-subscriber-sync.php:88
|
2183 |
+
msgid "Sync Email"
|
2184 |
+
msgstr "Sincronizar con usuarios de WP"
|
2185 |
|
2186 |
+
#: ../subscribers/view-subscriber-sync.php:101
|
2187 |
+
msgid "Sync newly registered users to subscribers list"
|
2188 |
+
msgstr ""
|
2189 |
+
"Incluir a los usuarios de WordPress registrados recientemente a tu lista de "
|
2190 |
+
"suscriptores de Email Subscribers."
|
2191 |
|
2192 |
+
#: ../subscribers/view-subscriber-sync.php:114
|
2193 |
+
msgid "Select group to add newly registered users to"
|
2194 |
+
msgstr "Selecciona el grupo al que pertenecerán los nuevos suscriptores"
|
2195 |
|
2196 |
+
#. Name of the plugin
|
2197 |
+
msgid "Email Subscribers & Newsletters"
|
2198 |
+
msgstr "Email Subscribers & Newsletters"
|
2199 |
|
2200 |
+
#. URI of the plugin
|
2201 |
+
msgid "https://www.icegram.com"
|
2202 |
+
msgstr "https://www.icegram.com"
|
2203 |
|
2204 |
+
#. Description of the plugin/theme
|
2205 |
+
msgid ""
|
2206 |
+
"Add subscription forms on website, send HTML newsletters & automatically "
|
2207 |
+
"notify subscribers about new blog posts once it is published."
|
2208 |
+
msgstr ""
|
2209 |
+
"Añade formularios de suscripción al sitio web, envía newsletters HTML y "
|
2210 |
+
"notifica automáticamente a suscriptores cuando se publiquen nuevas entradas "
|
2211 |
+
"en el blog."
|
2212 |
|
2213 |
+
#: ../email-subscribers.php:95
|
2214 |
+
msgctxt "timezone date format"
|
2215 |
+
msgid "Y-m-d H:i:s"
|
2216 |
+
msgstr "AAAA-mm-dd HH:mm:ss"
|
languages/email-subscribers-fr_FR.mo
CHANGED
Binary file
|
languages/email-subscribers-fr_FR.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.4.
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: French (France)\n"
|
@@ -22,115 +22,125 @@ msgstr ""
|
|
22 |
"X-Loco-Target-Locale: fr_FR\n"
|
23 |
"X-Poedit-SearchPath-0: .."
|
24 |
|
25 |
-
#: ../
|
26 |
-
|
|
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: ../
|
30 |
-
|
31 |
-
msgid "
|
|
|
|
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: ../
|
35 |
-
|
36 |
-
"
|
37 |
-
"Emails."
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: ../
|
|
|
41 |
msgid ""
|
42 |
-
"
|
43 |
-
"
|
|
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: ../
|
|
|
47 |
msgid ""
|
48 |
-
"
|
49 |
-
"
|
|
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: ../
|
53 |
msgid ""
|
54 |
-
"
|
55 |
-
"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: ../
|
59 |
-
msgid ""
|
60 |
-
"Content for the subscriber welcome email whenever a user's email is either "
|
61 |
-
"confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
|
62 |
-
"<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: ../
|
66 |
-
msgid ""
|
67 |
-
"The text for the unsubscribe link. This text is automatically added with "
|
68 |
-
"unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: ../
|
72 |
-
|
|
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: ../
|
76 |
-
msgid ""
|
77 |
-
"Email to admin whenever a cron URL is triggered from your server.<br "
|
78 |
-
"/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: ../
|
82 |
-
msgid "
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: ../
|
86 |
-
msgid ""
|
87 |
-
"This is how the email you sent may look. <br>Note: Different email services "
|
88 |
-
"(like gmail, yahoo etc) display email content differently. So there could be "
|
89 |
-
"a slight variation on how your customer will view the email content."
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: ../
|
93 |
-
|
94 |
-
msgid "Confirmation emails resent successfully."
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: ../
|
98 |
-
msgid "
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: ../
|
102 |
-
msgid ""
|
103 |
-
"Oops! Looks like you are not the site administrator.<br><br>Only the site "
|
104 |
-
"administrator can export subscriber list."
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: ../
|
108 |
-
msgid "
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: ../
|
112 |
-
msgid "
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: ../
|
116 |
-
msgid "
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: ../
|
120 |
-
msgid "
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: ../
|
124 |
-
msgid ""
|
125 |
-
"<br><br>This Post Notification preview has replaced keywords from your last "
|
126 |
-
"published blog post."
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: ../
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
130 |
msgid ""
|
131 |
-
"
|
132 |
-
"
|
133 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
134 |
msgstr ""
|
135 |
|
136 |
#: ../help/help.php:185
|
@@ -164,2044 +174,2000 @@ msgstr ""
|
|
164 |
msgid "General Plugin Configuration"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: ../help/help.php:
|
|
|
|
|
|
|
|
|
168 |
msgid "How to check sent emails?"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: ../help/help.php:
|
172 |
msgid "Create and Send Newsletter Emails"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: ../help/help.php:
|
176 |
msgid "Keywords in the Newsletters"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: ../help/help.php:
|
180 |
msgid "Create and Send Post Notification Emails when new posts are published"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: ../help/help.php:
|
184 |
msgid "What is Cron and how to Schedule Cron Emails?"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: ../help/help.php:
|
188 |
msgid "Using our <b>free</b> "
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: ../help/help.php:
|
192 |
msgid ""
|
193 |
"Using Email Subscribers you can achieve this easily with our <b>free</b> "
|
194 |
"plugin "
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: ../help/help.php:
|
198 |
msgid "Email subscribers easily integrates with another <b>free</b> plugin "
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: ../
|
202 |
-
|
203 |
-
msgid "Templates"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: ../
|
207 |
-
|
208 |
-
msgid ""
|
209 |
-
"Do you want to resend confirmation email? Also please note, this will update "
|
210 |
-
"subscriber current status to 'Unconfirmed'."
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: ../
|
214 |
-
|
215 |
-
msgid "Please select notification mail subject. Use templates menu to create new."
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: ../
|
219 |
-
msgctxt "widget-enhanced-select"
|
220 |
msgid ""
|
221 |
-
"
|
222 |
-
"
|
223 |
-
"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: ../
|
227 |
-
msgctxt "widget-page-enhanced-select"
|
228 |
msgid ""
|
229 |
-
"
|
230 |
-
"
|
231 |
-
"spam folder."
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: ../
|
235 |
msgid ""
|
236 |
-
"
|
237 |
-
"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: ../
|
241 |
-
msgid "
|
|
|
|
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: ../
|
245 |
-
msgid "
|
|
|
|
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: ../
|
249 |
-
|
250 |
-
|
|
|
|
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: ../
|
254 |
-
msgid "
|
|
|
|
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: ../
|
258 |
-
msgid "
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: ../
|
262 |
-
msgid "
|
|
|
|
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: ../
|
266 |
-
msgid "
|
|
|
|
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: ../
|
270 |
-
msgid "
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: ../
|
274 |
-
|
|
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: ../
|
278 |
-
msgid "
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: ../
|
282 |
-
msgid "
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: ../
|
286 |
-
msgid "
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: ../
|
290 |
-
msgid "
|
|
|
|
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: ../
|
294 |
-
msgid "
|
|
|
|
|
|
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: ../classes/es-
|
298 |
-
msgid "
|
299 |
-
msgstr ""
|
300 |
|
301 |
-
#: ../classes/es-
|
302 |
-
msgid "
|
303 |
-
msgstr ""
|
304 |
|
305 |
-
#: ../classes/es-
|
306 |
-
|
307 |
-
|
308 |
-
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
309 |
-
"{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
|
310 |
-
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
311 |
-
msgstr ""
|
312 |
|
313 |
-
#: ../classes/es-
|
314 |
-
|
315 |
-
|
316 |
-
msgstr ""
|
317 |
|
318 |
-
#: ../
|
319 |
-
msgid "
|
320 |
-
msgstr "
|
321 |
|
322 |
-
#: ../
|
323 |
-
msgid "
|
324 |
-
msgstr "
|
325 |
-
|
326 |
-
#: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
|
327 |
-
msgid "Please select post categories."
|
328 |
-
msgstr "Veuillez sélectionner une catégorie."
|
329 |
-
|
330 |
-
#: ../notification/notification-add.php:71
|
331 |
-
msgid "Notification successfully created. "
|
332 |
-
msgstr "Notification correctement créée."
|
333 |
-
|
334 |
-
#: ../notification/notification-add.php:112
|
335 |
-
msgid "Add Notification"
|
336 |
-
msgstr "Nouvelle notification"
|
337 |
-
|
338 |
-
#: ../notification/notification-add.php:113 ../notification/notification-show.php:
|
339 |
-
#: 54 ../notification/notification-edit.php:124 ../settings/settings-edit.php:43 .
|
340 |
-
#: ./sentmail/sentmail-preview.php:28 ../sentmail/sentmail-show.php:94 ..
|
341 |
-
#: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
|
342 |
-
#: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
343 |
-
#: export.php:51 ../subscribers/view-subscriber-add.php:118 ../subscribers/view-
|
344 |
-
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
345 |
-
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
346 |
-
msgid "Help"
|
347 |
-
msgstr "Aide"
|
348 |
-
|
349 |
-
#: ../notification/notification-add.php:121
|
350 |
-
msgid "Select Subscribers Group"
|
351 |
-
msgstr "Groupe d'abonnés"
|
352 |
-
|
353 |
-
#: ../notification/notification-add.php:125 ../notification/notification-add.php:
|
354 |
-
#: 149 ../notification/notification-edit.php:136 ../notification/notification-
|
355 |
-
#: edit.php:169 ../subscribers/view-subscriber-import.php:193 ../subscribers/view-
|
356 |
-
#: subscriber-add.php:166 ../subscribers/view-subscriber-edit.php:162 ..
|
357 |
-
#: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
|
358 |
-
#: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
|
359 |
-
msgid "Select"
|
360 |
-
msgstr "Sélectionner"
|
361 |
-
|
362 |
-
#: ../notification/notification-add.php:143 ../notification/notification-edit.php:
|
363 |
-
#: 163
|
364 |
-
msgid "Select Notification Email Subject"
|
365 |
-
msgstr "Sélectionner le sujet du courriel"
|
366 |
-
|
367 |
-
#: ../notification/notification-add.php:168 ../notification/notification-edit.php:
|
368 |
-
#: 191
|
369 |
-
msgid "Select Post Categories"
|
370 |
-
msgstr "Catégories"
|
371 |
-
|
372 |
-
#: ../notification/notification-add.php:196 ../notification/notification-edit.php:
|
373 |
-
#: 226
|
374 |
-
msgid "Check All"
|
375 |
-
msgstr "Sélectionner tout"
|
376 |
-
|
377 |
-
#: ../notification/notification-add.php:197 ../notification/notification-edit.php:
|
378 |
-
#: 227
|
379 |
-
msgid "Uncheck All"
|
380 |
-
msgstr "Désélectionner tout"
|
381 |
|
382 |
-
#: ../
|
383 |
-
|
384 |
-
|
385 |
-
msgstr "Type de contenu"
|
386 |
|
387 |
-
#: ../
|
388 |
-
|
389 |
-
|
390 |
-
msgstr "(Optionnel)"
|
391 |
|
392 |
-
#: ../
|
393 |
-
|
394 |
-
|
395 |
-
msgstr "Aucun type de contenu personnalisé n'est disponible"
|
396 |
|
397 |
-
#: ../
|
398 |
-
|
399 |
-
|
400 |
-
msgstr "Sélectionner le type d'envoi lorsqu'un nouvel article est publié"
|
401 |
|
402 |
-
#: ../
|
403 |
-
|
404 |
-
|
405 |
-
msgstr "Envoyer les courriels immédiatement"
|
406 |
|
407 |
-
#: ../
|
408 |
-
#:
|
409 |
-
msgid "
|
410 |
-
msgstr "
|
411 |
|
412 |
-
#: ../
|
413 |
-
|
414 |
-
|
415 |
-
msgstr "Ne pas envoyer"
|
416 |
|
417 |
-
#: ../
|
418 |
-
#:
|
419 |
-
msgid "
|
420 |
-
msgstr "
|
421 |
|
422 |
-
#: ../
|
423 |
-
#:
|
424 |
-
|
425 |
-
|
426 |
-
msgstr "Oups, ces données n'existent pas."
|
427 |
|
428 |
-
#: ../
|
429 |
-
|
430 |
-
|
|
|
431 |
|
432 |
-
#: ../
|
433 |
-
#:
|
434 |
msgid "Post Notifications"
|
435 |
msgstr "Notifications d'article"
|
436 |
|
437 |
-
#: ../
|
438 |
-
#:
|
439 |
-
msgid "
|
440 |
-
msgstr "
|
441 |
-
|
442 |
-
#: ../notification/notification-show.php:57
|
443 |
-
msgid ""
|
444 |
-
"Use this to setup and send notification emails to your subscribers when a "
|
445 |
-
"new post is published in your blog."
|
446 |
-
msgstr ""
|
447 |
-
"Permet de configurer et envoyer des notifications aux abonnés lorsque de "
|
448 |
-
"nouveaux articles sont publiés."
|
449 |
|
450 |
-
#: ../
|
451 |
-
#:
|
452 |
-
msgid "
|
453 |
-
msgstr "
|
454 |
|
455 |
-
#: ../
|
456 |
-
#:
|
457 |
-
msgid "
|
458 |
-
msgstr "
|
459 |
|
460 |
-
#: ../
|
461 |
-
|
462 |
-
|
463 |
-
msgstr "Catégories / Types de contenu"
|
464 |
|
465 |
-
#: ../
|
466 |
-
|
467 |
-
|
468 |
-
msgstr "Mode d'envoi"
|
469 |
|
470 |
-
#: ../
|
471 |
-
|
472 |
-
msgid "
|
473 |
-
msgstr "
|
474 |
|
475 |
-
#: ../
|
476 |
-
|
477 |
-
msgid "
|
478 |
-
msgstr "
|
479 |
|
480 |
-
#: ../
|
481 |
-
|
482 |
-
msgid "
|
483 |
-
msgstr "
|
484 |
|
485 |
-
#: ../
|
486 |
-
|
487 |
-
|
|
|
488 |
|
489 |
-
#: ../
|
490 |
-
|
491 |
-
|
|
|
492 |
|
493 |
-
#: ../
|
494 |
-
|
495 |
-
|
|
|
496 |
|
497 |
-
#: ../
|
498 |
-
|
499 |
-
|
|
|
500 |
|
501 |
-
#: ../
|
502 |
-
|
503 |
-
msgid "
|
504 |
-
msgstr "
|
505 |
|
506 |
-
|
507 |
-
|
508 |
-
|
|
|
509 |
|
510 |
-
|
511 |
-
|
512 |
-
|
|
|
513 |
|
514 |
-
|
|
|
515 |
msgid ""
|
516 |
-
"
|
517 |
-
"
|
518 |
msgstr ""
|
519 |
-
"
|
520 |
-
"
|
521 |
-
"nouvelles publications."
|
522 |
-
|
523 |
-
#. Author of the plugin/theme
|
524 |
-
msgid "Icegram"
|
525 |
-
msgstr "Icegram"
|
526 |
|
527 |
-
#: ../
|
528 |
-
msgctxt "
|
529 |
-
msgid "
|
530 |
-
msgstr "
|
531 |
|
532 |
-
#: ../
|
533 |
-
|
534 |
-
|
|
|
535 |
|
536 |
-
#: ../
|
537 |
-
|
538 |
-
|
|
|
539 |
|
540 |
-
#: ../
|
541 |
-
|
542 |
-
|
|
|
543 |
|
544 |
-
#: ../
|
545 |
-
|
546 |
-
|
|
|
547 |
|
548 |
-
#: ../
|
549 |
-
|
550 |
-
msgid "
|
551 |
-
|
|
|
|
|
|
|
|
|
552 |
|
553 |
-
#: ../
|
554 |
-
|
555 |
-
|
|
|
556 |
|
557 |
-
#: ../
|
558 |
-
|
559 |
-
|
|
|
560 |
|
561 |
-
#: ../
|
562 |
-
|
563 |
-
"
|
564 |
-
"this plugin."
|
565 |
msgstr ""
|
566 |
-
"
|
567 |
-
"
|
568 |
|
569 |
-
#: ../
|
570 |
-
|
571 |
-
|
|
|
572 |
|
573 |
-
#: ../
|
574 |
-
|
575 |
-
"
|
576 |
-
"
|
577 |
-
msgstr ""
|
578 |
-
"Les options 1 et 2 envoient les e-mails par la fonction de WordPress "
|
579 |
-
"wp_mail(). Les options 3 et 4 envoient les e-mails avec la fonction PHP "
|
580 |
-
"mail()."
|
581 |
|
582 |
-
#: ../
|
583 |
-
|
584 |
-
|
|
|
585 |
|
586 |
-
#: ../
|
587 |
-
|
588 |
-
|
|
|
589 |
|
590 |
-
#: ../
|
591 |
-
|
592 |
-
|
|
|
593 |
|
594 |
-
#: ../
|
595 |
-
|
596 |
-
|
|
|
597 |
|
598 |
-
#: ../
|
599 |
-
|
600 |
-
|
|
|
601 |
|
602 |
-
#: ../
|
603 |
-
|
604 |
-
"
|
605 |
-
"
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
"
|
611 |
-
"lorsqu'il s'abonne. Il doit cliquer sur ce lien pour confirmer son "
|
612 |
-
"abonnement.<br />Simple validation : l'utilisateur n'a pas à confirmer son "
|
613 |
-
"adresse e-mail. Il est directement inscrit dans la liste d'abonnés."
|
614 |
|
615 |
-
#: ../
|
616 |
-
|
617 |
-
|
|
|
618 |
|
619 |
-
#: ../
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
msgid "Single Opt In"
|
624 |
-
msgstr "Simple validation"
|
625 |
|
626 |
-
#: ../
|
627 |
-
|
628 |
-
|
|
|
629 |
|
630 |
-
#: ../
|
631 |
-
|
632 |
-
|
|
|
633 |
|
634 |
-
#: ../
|
635 |
-
msgid "
|
636 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
637 |
|
638 |
-
#: ../
|
639 |
msgid "Thumbnail"
|
640 |
msgstr "Miniature"
|
641 |
|
642 |
-
#: ../
|
643 |
-
|
644 |
-
|
|
|
645 |
|
646 |
-
#: ../
|
647 |
-
msgid ""
|
648 |
-
|
649 |
-
"by comma)."
|
650 |
-
msgstr ""
|
651 |
-
"Entrer les adresses des administrateurs qui recevront les notifications "
|
652 |
-
"(séparés par une virgule)."
|
653 |
|
654 |
-
#: ../
|
655 |
-
msgid "
|
656 |
-
msgstr "
|
657 |
|
658 |
-
#: ../
|
659 |
-
msgid ""
|
660 |
-
"
|
661 |
-
|
662 |
-
|
663 |
-
"
|
664 |
-
"
|
665 |
|
666 |
-
#: ../
|
667 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
668 |
msgid "YES"
|
669 |
msgstr "OUI"
|
670 |
|
671 |
-
#: ../
|
672 |
-
#:
|
673 |
msgid "NO"
|
674 |
msgstr "NON"
|
675 |
|
676 |
-
#: ../
|
677 |
-
msgid "
|
678 |
-
msgstr "
|
679 |
|
680 |
-
#: ../
|
681 |
-
msgid ""
|
682 |
-
"
|
683 |
-
"confirmed."
|
684 |
-
msgstr ""
|
685 |
-
"C'est le sujet de l'e-mail envoyé à l'administrateur lorsqu'un abonné "
|
686 |
-
"s'inscrit et confirme son abonnement."
|
687 |
|
688 |
-
#: ../
|
689 |
-
msgid "
|
690 |
-
msgstr "
|
691 |
|
692 |
-
#: ../
|
693 |
-
|
694 |
-
|
|
|
695 |
|
696 |
-
#: ../
|
697 |
-
msgid "
|
698 |
-
msgstr "
|
699 |
|
700 |
-
#: ../
|
701 |
-
msgid "
|
702 |
-
msgstr "
|
703 |
|
704 |
-
#: ../
|
705 |
-
msgid "
|
706 |
-
msgstr "
|
707 |
|
708 |
-
#: ../
|
|
|
|
|
|
|
|
|
709 |
msgid ""
|
710 |
-
"
|
711 |
-
"
|
|
|
712 |
msgstr ""
|
713 |
-
"
|
714 |
-
"
|
|
|
|
|
715 |
|
716 |
-
#: ../
|
717 |
-
msgid "
|
718 |
-
msgstr "
|
719 |
|
720 |
-
#: ../
|
721 |
-
msgid "
|
722 |
-
|
|
|
|
|
|
|
|
|
723 |
|
724 |
-
#: ../
|
725 |
-
msgid "
|
726 |
-
msgstr "
|
727 |
|
728 |
-
#: ../
|
729 |
-
msgid ""
|
730 |
-
"
|
731 |
-
"Double Opt-In (Confirmation) Email"
|
732 |
-
msgstr "Texte affiché après confirmation"
|
733 |
|
734 |
-
#: ../
|
735 |
msgid ""
|
736 |
-
"
|
737 |
-
"
|
738 |
msgstr ""
|
739 |
-
"
|
740 |
-
"
|
741 |
|
742 |
-
#: ../
|
743 |
-
msgid "
|
744 |
-
msgstr "
|
745 |
|
746 |
-
#: ../
|
747 |
-
msgid ""
|
748 |
-
"
|
749 |
-
"must be set to YES."
|
750 |
-
msgstr ""
|
751 |
-
"Pour envoyer un courriel de bienvenue suite à une inscription réussie, cette "
|
752 |
-
"option doit être sur OUI."
|
753 |
|
754 |
-
#: ../
|
755 |
-
msgid "
|
756 |
-
msgstr "
|
757 |
|
758 |
-
#: ../
|
759 |
-
msgid ""
|
760 |
-
"
|
761 |
-
"user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
|
762 |
-
"Opt-In) successfully."
|
763 |
-
msgstr ""
|
764 |
-
"C'est le sujet de l'e-mail de bienvenue. Cet e-mail sera envoyé à "
|
765 |
-
"l'utilisateur lorsqu'il confirme son abonnement (double validation) ou "
|
766 |
-
"lorsqu'il s'inscrit (simple validation)."
|
767 |
|
768 |
-
#: ../
|
769 |
-
msgid "
|
770 |
-
msgstr "
|
771 |
|
772 |
-
#: ../
|
773 |
-
msgid "
|
774 |
-
msgstr "
|
775 |
|
776 |
-
#: ../
|
777 |
-
msgid ""
|
778 |
-
"
|
779 |
-
"from this plugin. It is a readonly field and you are advised not to modify "
|
780 |
-
"it."
|
781 |
-
msgstr ""
|
782 |
-
"Ce lien de désabonnement est automatiquement ajouté dans les e-mails envoyés "
|
783 |
-
"par cette extension. C'est un champ non modifiable."
|
784 |
|
785 |
-
#: ../
|
786 |
-
msgid "
|
787 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
788 |
|
789 |
-
#: ../
|
790 |
-
msgid "
|
791 |
-
msgstr "
|
792 |
|
793 |
-
#: ../
|
|
|
794 |
msgid ""
|
795 |
-
"
|
796 |
-
"email
|
|
|
|
|
|
|
|
|
|
|
797 |
msgstr ""
|
798 |
-
"
|
799 |
-
"dans un
|
|
|
|
|
|
|
|
|
|
|
800 |
|
801 |
-
#: ../
|
802 |
-
msgid "
|
803 |
-
msgstr "
|
804 |
|
805 |
-
#: ../
|
806 |
-
msgid ""
|
807 |
-
"Default message to display if there is any issue while clicking on subscribe "
|
808 |
-
"/ confirmation link from the Double Opt-In (Confirmation) emails."
|
809 |
msgstr ""
|
810 |
-
"
|
811 |
-
"
|
812 |
|
813 |
-
#: ../
|
814 |
-
msgid "
|
815 |
-
msgstr "
|
816 |
|
817 |
-
#: ../
|
818 |
-
|
819 |
-
"
|
820 |
-
"
|
821 |
-
msgstr "Message à afficher si une erreur se produit lors d'un désabonnement."
|
822 |
|
823 |
-
#: ../
|
824 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
825 |
msgstr ""
|
826 |
-
"
|
827 |
-
"
|
|
|
828 |
|
829 |
-
#: ../
|
830 |
-
msgid "
|
831 |
-
msgstr "
|
832 |
|
833 |
-
#: ../
|
834 |
-
|
835 |
-
|
836 |
-
msgid "Administrator Only"
|
837 |
-
msgstr "Que les administrateurs"
|
838 |
|
839 |
-
#: ../
|
840 |
-
|
841 |
-
|
842 |
-
msgid "Administrator/Editor"
|
843 |
-
msgstr "Administrateur/Editeur"
|
844 |
|
845 |
-
#: ../
|
846 |
-
|
847 |
-
|
848 |
-
msgid "Administrator/Editor/Author/Contributor"
|
849 |
-
msgstr "Administrateur/Editeur/Auteur/Contributeur"
|
850 |
|
851 |
-
#: ../
|
852 |
-
msgid "Post Notifications
|
853 |
-
msgstr "
|
854 |
|
855 |
-
#: ../
|
856 |
-
|
857 |
-
|
858 |
-
|
|
|
859 |
|
860 |
-
#: ../
|
861 |
-
msgid "
|
862 |
-
msgstr "
|
863 |
|
864 |
-
#: ../
|
865 |
-
msgid "Cron
|
866 |
-
msgstr "
|
867 |
|
868 |
-
#: ../
|
869 |
-
msgid ""
|
870 |
-
"
|
871 |
-
"modify it."
|
872 |
-
msgstr "URL à utiliser pour paramétrer la tâche CRON sur votre serveur."
|
873 |
|
874 |
-
#: ../
|
875 |
-
msgid "
|
876 |
-
msgstr "
|
877 |
|
878 |
-
#: ../
|
879 |
-
msgid "
|
880 |
-
msgstr "
|
881 |
|
882 |
-
#: ../
|
883 |
-
msgid "
|
884 |
-
msgstr "
|
885 |
|
886 |
-
#: ../
|
887 |
-
msgid "
|
888 |
-
msgstr "
|
889 |
|
890 |
-
#: ../
|
891 |
-
msgid "
|
892 |
-
msgstr "
|
893 |
|
894 |
-
#: ../
|
895 |
-
msgid ""
|
896 |
-
|
897 |
-
"schedule-cron-emails/?"
|
898 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
|
899 |
-
"Cron?</a>"
|
900 |
-
msgstr ""
|
901 |
-
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
902 |
-
"schedule-cron-emails/?"
|
903 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Qu'est-ce "
|
904 |
-
"qu'une tâche Cron?</a>"
|
905 |
|
906 |
-
#: ../
|
907 |
-
msgid ""
|
908 |
-
|
909 |
-
"schedule-cron-emails-in-cpanel/?"
|
910 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
|
911 |
-
"job in cPanel</a>"
|
912 |
-
msgstr ""
|
913 |
-
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
914 |
-
"schedule-cron-emails-in-cpanel/?"
|
915 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Paramétrer "
|
916 |
-
"une tâche Cron dans cPanel</a>"
|
917 |
|
918 |
-
#: ../
|
919 |
-
msgid ""
|
920 |
-
|
921 |
-
"schedule-cron-emails-in-parallels-plesk/?"
|
922 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
|
923 |
-
"job in Plesk</a>"
|
924 |
-
msgstr ""
|
925 |
-
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
926 |
-
"schedule-cron-emails-in-parallels-plesk/?"
|
927 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Paramétrer "
|
928 |
-
"une tâche Cron dans Plesk</a>"
|
929 |
|
930 |
-
#: ../
|
931 |
msgid ""
|
932 |
-
"
|
933 |
-
"
|
934 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
|
935 |
-
"does not support cron jobs?</a>"
|
936 |
msgstr ""
|
937 |
-
"
|
938 |
-
"
|
939 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Votre "
|
940 |
-
"hébergeur ne gère pas les tâches Cron?</a>"
|
941 |
-
|
942 |
-
#: ../settings/settings-edit.php:504
|
943 |
-
msgid "Please enter sender of notifications from name."
|
944 |
-
msgstr "Veuillez saisir le nom de l'expéditeur"
|
945 |
-
|
946 |
-
#: ../settings/settings-edit.php:509
|
947 |
-
msgid "Please enter sender of notifications from email."
|
948 |
-
msgstr "Veuillez saisir l'e-mail de l'expéditeur"
|
949 |
|
950 |
-
#: ../
|
951 |
-
msgid "
|
952 |
-
msgstr "
|
953 |
|
954 |
-
#: ../
|
955 |
-
msgid "
|
956 |
-
msgstr "
|
957 |
|
958 |
-
#: ../
|
959 |
-
msgid "
|
960 |
-
msgstr "
|
961 |
|
962 |
-
#: ../
|
963 |
-
msgid "
|
964 |
-
|
|
|
|
|
|
|
|
|
|
|
965 |
|
966 |
-
|
967 |
-
|
968 |
-
|
|
|
969 |
|
970 |
-
#: ../
|
971 |
-
msgid "
|
972 |
-
|
|
|
|
|
|
|
|
|
973 |
|
974 |
-
#: ../
|
975 |
-
|
976 |
-
|
|
|
977 |
|
978 |
-
#: ../
|
979 |
-
msgid "
|
980 |
-
msgstr "
|
981 |
|
982 |
-
#: ../
|
983 |
-
msgid "
|
984 |
-
msgstr "
|
985 |
|
986 |
-
#: ../
|
987 |
-
msgid "
|
988 |
-
msgstr "
|
989 |
|
990 |
-
#: ../
|
991 |
-
|
992 |
-
|
993 |
-
|
|
|
|
|
|
|
994 |
|
995 |
-
#: ../
|
996 |
-
msgid "
|
|
|
|
|
997 |
msgstr ""
|
998 |
-
"
|
999 |
-
"
|
1000 |
|
1001 |
-
#: ../
|
1002 |
-
msgid "
|
1003 |
-
msgstr "
|
1004 |
|
1005 |
-
#: ../
|
1006 |
-
#:
|
1007 |
-
msgid "
|
1008 |
-
|
|
|
|
|
|
|
|
|
1009 |
|
1010 |
-
#: ../
|
1011 |
-
msgid "
|
1012 |
-
msgstr "
|
1013 |
|
1014 |
-
#: ../
|
1015 |
-
|
1016 |
-
|
1017 |
-
msgid "Status"
|
1018 |
-
msgstr "Statut"
|
1019 |
|
1020 |
-
#: ../
|
1021 |
-
|
1022 |
-
|
1023 |
-
msgstr "Type d'envoi"
|
1024 |
|
1025 |
-
#: ../
|
1026 |
-
msgid "
|
1027 |
-
msgstr "
|
1028 |
|
1029 |
-
#: ../
|
1030 |
-
msgid "
|
1031 |
-
msgstr "
|
1032 |
|
1033 |
-
#: ../
|
1034 |
-
msgid "
|
1035 |
-
msgstr "
|
1036 |
|
1037 |
-
#: ../
|
1038 |
-
#:
|
1039 |
-
#:
|
1040 |
-
|
1041 |
-
|
|
|
|
|
|
|
|
|
|
|
1042 |
|
1043 |
-
#: ../
|
1044 |
-
msgid "
|
1045 |
-
msgstr "
|
1046 |
|
1047 |
-
#: ../
|
1048 |
-
|
1049 |
-
|
1050 |
-
|
1051 |
-
|
1052 |
-
|
1053 |
-
|
|
|
1054 |
|
1055 |
-
#: ../
|
1056 |
-
|
1057 |
-
|
|
|
1058 |
|
1059 |
-
#: ../
|
1060 |
-
|
1061 |
-
|
|
|
1062 |
|
1063 |
-
#: ../
|
1064 |
-
#:
|
1065 |
-
|
1066 |
-
|
1067 |
-
msgstr "n°"
|
1068 |
|
1069 |
-
#: ../
|
1070 |
-
|
1071 |
-
|
|
|
1072 |
|
1073 |
-
#: ../
|
1074 |
-
|
1075 |
-
|
|
|
1076 |
|
1077 |
-
#: ../
|
1078 |
-
|
1079 |
-
|
|
|
1080 |
|
1081 |
-
#: ../
|
1082 |
-
|
1083 |
-
|
|
|
1084 |
|
1085 |
-
#: ../
|
1086 |
-
|
1087 |
-
"
|
1088 |
-
"
|
1089 |
-
msgstr ""
|
1090 |
-
"Erreurr: Les caractères spéciaux (['^$%&*()}{@#~?><>,|=_+\\\"]) ne sont pas "
|
1091 |
-
"autorisés pour le nom du groupe."
|
1092 |
|
1093 |
-
#: ../
|
1094 |
-
|
1095 |
-
|
|
|
1096 |
|
1097 |
-
#: ../
|
1098 |
-
|
1099 |
-
|
|
|
1100 |
|
1101 |
-
#: ../
|
1102 |
-
|
1103 |
-
|
|
|
1104 |
|
1105 |
-
#: ../
|
1106 |
-
#:
|
1107 |
-
msgid "
|
1108 |
-
msgstr "
|
1109 |
|
1110 |
-
#: ../
|
1111 |
-
#:
|
1112 |
-
|
1113 |
-
|
|
|
1114 |
|
1115 |
-
#: ../
|
1116 |
-
msgid "
|
1117 |
-
msgstr "
|
1118 |
|
1119 |
-
#: ../
|
1120 |
-
msgid "
|
1121 |
-
msgstr "
|
1122 |
|
1123 |
-
#: ../
|
1124 |
-
|
1125 |
-
|
1126 |
-
#: subscribers/view-subscriber-sync.php:89
|
1127 |
-
msgid "Add New Subscriber"
|
1128 |
-
msgstr "Ajouter un abonné"
|
1129 |
|
1130 |
-
#: ../
|
1131 |
-
|
1132 |
-
|
1133 |
-
msgid "Export"
|
1134 |
-
msgstr "Exporter"
|
1135 |
|
1136 |
-
#: ../
|
1137 |
-
#:
|
1138 |
-
|
1139 |
-
|
1140 |
-
msgid "Sync"
|
1141 |
-
msgstr "Synchroniser"
|
1142 |
|
1143 |
-
#: ../subscribers/view-subscriber-
|
1144 |
-
|
1145 |
-
|
|
|
1146 |
|
1147 |
-
#: ../
|
1148 |
-
msgid "
|
1149 |
-
msgstr "
|
1150 |
|
1151 |
-
#: ../
|
1152 |
-
msgid "
|
1153 |
-
|
|
|
|
|
|
|
|
|
1154 |
|
1155 |
-
#: ../
|
1156 |
-
|
1157 |
-
|
|
|
1158 |
|
1159 |
-
#: ../
|
1160 |
-
#:
|
1161 |
-
|
1162 |
-
|
1163 |
-
msgstr "Confirmé"
|
1164 |
|
1165 |
-
#: ../
|
1166 |
-
#:
|
1167 |
-
|
1168 |
-
|
1169 |
-
msgstr "Non confirmé"
|
1170 |
|
1171 |
-
#: ../
|
1172 |
-
#:
|
1173 |
-
|
1174 |
-
|
1175 |
-
msgstr "Désabonné"
|
1176 |
|
1177 |
-
#: ../subscribers/view-subscriber-
|
1178 |
-
|
1179 |
-
|
|
|
1180 |
|
1181 |
-
#: ../
|
1182 |
-
#:
|
1183 |
-
msgid "
|
1184 |
-
msgstr "
|
1185 |
|
1186 |
-
#: ../
|
1187 |
-
#: show.php:
|
1188 |
-
#:
|
1189 |
-
|
1190 |
-
|
1191 |
-
msgstr "Importer"
|
1192 |
|
1193 |
-
#: ../subscribers/view-subscriber-show.php:17
|
1194 |
msgid "Click Here"
|
1195 |
msgstr "Cliquez ici"
|
1196 |
|
1197 |
-
#: ../
|
1198 |
-
msgid "
|
1199 |
-
msgstr "
|
1200 |
|
1201 |
-
#: ../
|
1202 |
-
|
1203 |
-
|
1204 |
-
msgstr "Enregistrement supprimé."
|
1205 |
|
1206 |
-
#: ../
|
1207 |
-
msgid "
|
1208 |
-
msgstr "
|
1209 |
|
1210 |
-
#: ../
|
1211 |
-
|
1212 |
-
|
1213 |
-
msgid "No record was selected."
|
1214 |
-
msgstr "Aucun élément n'est sélectionné."
|
1215 |
|
1216 |
-
#: ../
|
1217 |
-
msgid "
|
1218 |
-
msgstr "
|
1219 |
|
1220 |
-
#: ../
|
1221 |
-
msgid "
|
1222 |
-
msgstr "
|
1223 |
|
1224 |
-
#: ../
|
1225 |
-
msgid "
|
1226 |
-
msgstr "
|
1227 |
|
1228 |
-
#: ../
|
1229 |
-
msgid "
|
1230 |
-
msgstr "
|
1231 |
|
1232 |
-
#: ../
|
1233 |
-
msgid "
|
1234 |
-
msgstr "
|
1235 |
|
1236 |
-
#: ../
|
1237 |
-
|
1238 |
-
|
1239 |
-
msgstr "Abonnés"
|
1240 |
|
1241 |
-
#: ../
|
1242 |
-
|
1243 |
-
|
1244 |
-
msgstr "Abonnés activés : %s"
|
1245 |
|
1246 |
-
#: ../
|
1247 |
-
msgid "
|
1248 |
-
msgstr "
|
1249 |
|
1250 |
-
#: ../
|
1251 |
-
|
1252 |
-
msgid "
|
1253 |
-
msgstr "
|
1254 |
|
1255 |
-
#: ../
|
1256 |
-
msgid "
|
1257 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1258 |
|
1259 |
-
#: ../
|
1260 |
-
msgid "
|
1261 |
-
msgstr "
|
1262 |
|
1263 |
-
#: ../
|
1264 |
-
msgid "
|
1265 |
-
msgstr "
|
1266 |
|
1267 |
-
#: ../
|
1268 |
-
|
1269 |
-
|
1270 |
-
msgstr "Renvoyer la confirmation"
|
1271 |
|
1272 |
-
#: ../
|
1273 |
-
msgid "
|
1274 |
-
msgstr "
|
1275 |
|
1276 |
-
#: ../
|
1277 |
-
msgid "
|
1278 |
-
msgstr "
|
1279 |
|
1280 |
-
#: ../
|
1281 |
-
msgid "
|
1282 |
-
msgstr "
|
1283 |
|
1284 |
-
#: ../
|
1285 |
-
|
1286 |
-
|
|
|
|
|
1287 |
|
1288 |
-
#: ../
|
1289 |
-
msgid "
|
1290 |
-
msgstr "
|
1291 |
|
1292 |
-
#: ../
|
1293 |
-
|
1294 |
-
|
|
|
|
|
1295 |
|
1296 |
-
#: ../
|
1297 |
-
|
1298 |
-
|
|
|
1299 |
|
1300 |
-
#: ../
|
1301 |
-
msgid "
|
1302 |
-
msgstr "
|
1303 |
|
1304 |
-
#: ../
|
1305 |
-
msgid "
|
1306 |
-
msgstr "
|
1307 |
|
1308 |
-
#: ../
|
1309 |
-
msgid "
|
1310 |
-
msgstr "
|
1311 |
|
1312 |
-
#: ../
|
1313 |
-
msgid "
|
1314 |
-
msgstr "
|
1315 |
|
1316 |
-
#: ../
|
1317 |
-
msgid "
|
1318 |
-
msgstr "
|
1319 |
|
1320 |
-
#: ../
|
1321 |
-
msgid "
|
1322 |
-
msgstr "
|
|
|
|
|
1323 |
|
1324 |
-
#: ../
|
1325 |
-
msgid "
|
1326 |
-
msgstr "
|
1327 |
|
1328 |
-
#: ../
|
1329 |
-
msgid "
|
1330 |
-
msgstr "
|
1331 |
|
1332 |
-
#: ../
|
1333 |
-
|
1334 |
-
|
1335 |
-
msgstr "Type de liste à exporter"
|
1336 |
|
1337 |
-
#: ../
|
1338 |
-
|
1339 |
-
|
1340 |
-
msgstr "Nombre d'e-mails"
|
1341 |
|
1342 |
-
#: ../
|
1343 |
-
msgid "
|
1344 |
-
msgstr "
|
1345 |
|
1346 |
-
#: ../
|
1347 |
-
|
1348 |
-
|
|
|
|
|
1349 |
|
1350 |
-
#: ../
|
1351 |
-
|
1352 |
-
|
1353 |
-
msgid "Click to Export in CSV"
|
1354 |
-
msgstr "Exporter en CSV"
|
1355 |
|
1356 |
-
#: ../
|
1357 |
-
msgid "
|
1358 |
-
|
|
|
|
|
|
|
|
|
1359 |
|
1360 |
-
#: ../
|
1361 |
-
msgid "
|
1362 |
-
msgstr "
|
1363 |
|
1364 |
-
#: ../
|
1365 |
-
msgid "
|
1366 |
-
msgstr "
|
1367 |
|
1368 |
-
#: ../
|
1369 |
-
msgid "
|
1370 |
-
msgstr "
|
1371 |
|
1372 |
-
#: ../
|
1373 |
-
msgid "
|
1374 |
-
msgstr "
|
1375 |
|
1376 |
-
#: ../
|
1377 |
-
msgid "
|
1378 |
-
msgstr "
|
1379 |
|
1380 |
-
#: ../
|
1381 |
-
msgid "
|
1382 |
-
msgstr "
|
1383 |
|
1384 |
-
#: ../
|
1385 |
-
msgid "
|
1386 |
-
msgstr "
|
1387 |
|
1388 |
-
#: ../
|
1389 |
-
|
1390 |
-
|
1391 |
-
msgstr "Veuillez saisir l'e-mail de l'abonné."
|
1392 |
|
1393 |
-
#: ../
|
1394 |
-
msgid "
|
1395 |
-
msgstr "
|
1396 |
|
1397 |
-
#: ../
|
1398 |
msgid ""
|
1399 |
-
"
|
1400 |
-
"
|
1401 |
msgstr ""
|
1402 |
-
"
|
1403 |
-
"
|
1404 |
-
|
1405 |
-
#: ../subscribers/view-subscriber-add.php:69
|
1406 |
-
msgid "Subscriber has been saved."
|
1407 |
-
msgstr "Abonné enregistré."
|
1408 |
-
|
1409 |
-
#: ../subscribers/view-subscriber-add.php:71
|
1410 |
-
msgid "Subscriber already exists."
|
1411 |
-
msgstr "Cet abonné existe déjà."
|
1412 |
|
1413 |
-
#: ../
|
1414 |
-
msgid "
|
1415 |
-
msgstr "
|
1416 |
|
1417 |
-
#: ../
|
1418 |
-
msgid "
|
1419 |
-
|
|
|
|
|
|
|
|
|
|
|
1420 |
|
1421 |
-
#: ../
|
1422 |
-
msgid "
|
1423 |
-
msgstr "
|
1424 |
|
1425 |
-
#: ../
|
1426 |
-
msgid "
|
1427 |
-
msgstr "
|
1428 |
|
1429 |
-
#: ../
|
1430 |
-
msgid "
|
1431 |
-
msgstr "
|
1432 |
|
1433 |
-
#: ../
|
1434 |
-
msgid "
|
1435 |
-
msgstr "
|
1436 |
|
1437 |
-
#: ../
|
1438 |
-
msgid "
|
1439 |
-
msgstr "
|
1440 |
|
1441 |
-
#: ../
|
1442 |
-
msgid "
|
1443 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1444 |
|
1445 |
-
#: ../
|
1446 |
-
msgid "
|
1447 |
-
msgstr "
|
1448 |
|
1449 |
-
#: ../subscribers/view-subscriber-
|
1450 |
-
|
1451 |
-
|
|
|
|
|
|
|
1452 |
|
1453 |
-
#: ../
|
1454 |
-
msgid "
|
1455 |
-
msgstr "
|
1456 |
|
1457 |
-
#: ../
|
1458 |
-
msgid "
|
1459 |
-
msgstr "
|
1460 |
|
1461 |
-
#: ../
|
1462 |
-
msgid "
|
1463 |
-
msgstr "
|
1464 |
|
1465 |
-
#: ../
|
1466 |
-
msgid "
|
1467 |
-
msgstr "
|
1468 |
|
1469 |
-
#: ../
|
1470 |
-
msgid "
|
|
|
|
|
1471 |
msgstr ""
|
1472 |
-
"
|
1473 |
-
"
|
1474 |
-
|
1475 |
-
#: ../subscribers/view-subscriber-sync.php:50
|
1476 |
-
msgid "Emails Successfully Synced."
|
1477 |
-
msgstr "E-mails synchronisés."
|
1478 |
|
1479 |
-
#: ../
|
1480 |
-
msgid "
|
1481 |
-
msgstr "
|
1482 |
|
1483 |
-
#: ../
|
1484 |
-
msgid "
|
1485 |
-
|
|
|
|
|
|
|
|
|
1486 |
|
1487 |
-
#: ../
|
1488 |
-
msgid "
|
1489 |
-
msgstr "
|
1490 |
|
1491 |
-
#: ../
|
1492 |
-
#: 58 ../job/es-optin.php:68
|
1493 |
msgid ""
|
1494 |
-
"
|
1495 |
-
"
|
1496 |
msgstr ""
|
1497 |
-
"
|
1498 |
-
"
|
1499 |
|
1500 |
-
#: ../
|
1501 |
-
msgid "
|
1502 |
-
msgstr "
|
1503 |
|
1504 |
-
#: ../
|
1505 |
-
msgid "
|
1506 |
-
msgstr "
|
1507 |
|
1508 |
-
#: ../
|
1509 |
-
msgid "
|
1510 |
-
msgstr "
|
1511 |
|
1512 |
-
#: ../
|
1513 |
-
|
1514 |
-
|
1515 |
-
msgstr "S'abonner"
|
1516 |
|
1517 |
-
#: ../
|
1518 |
-
|
1519 |
-
|
1520 |
-
msgstr "Version: %s"
|
1521 |
|
1522 |
-
#: ../
|
1523 |
-
msgid "
|
1524 |
-
|
|
|
|
|
|
|
|
|
1525 |
|
1526 |
-
#: ../
|
1527 |
-
msgid "
|
1528 |
-
msgstr "
|
1529 |
|
1530 |
-
#: ../
|
1531 |
-
msgid "
|
1532 |
-
msgstr "
|
1533 |
|
1534 |
-
#: ../
|
1535 |
-
msgid "
|
1536 |
-
msgstr "
|
1537 |
|
1538 |
-
#: ../
|
1539 |
msgid ""
|
1540 |
-
"
|
1541 |
-
"
|
1542 |
-
"
|
1543 |
-
msgstr ""
|
1544 |
-
"Email subscribers est une extension complète de newsletter qui vous permet "
|
1545 |
-
"de collecter des prospects, d'envoyer automatiquement des courriels de "
|
1546 |
-
"notification de nouvel article de blog, de créer et d'envoyer des "
|
1547 |
-
"newsletters et de gérer tout cela en un seul endroit."
|
1548 |
-
|
1549 |
-
#: ../help/help.php:253
|
1550 |
-
msgid "Feature Overview"
|
1551 |
-
msgstr "Vue d'ensemble des fonctionnalités"
|
1552 |
|
1553 |
-
#: ../
|
1554 |
msgid ""
|
1555 |
-
"
|
1556 |
-
"
|
1557 |
msgstr ""
|
1558 |
-
"
|
1559 |
-
"
|
1560 |
-
|
1561 |
-
#: ../help/help.php:259
|
1562 |
-
msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
|
1563 |
-
msgstr "Configuration du type de validation des abonnements."
|
1564 |
|
1565 |
-
#: ../
|
1566 |
-
msgid "Send
|
1567 |
-
msgstr "
|
1568 |
|
1569 |
-
#: ../
|
1570 |
msgid ""
|
1571 |
-
"
|
1572 |
-
"
|
1573 |
msgstr ""
|
1574 |
-
"
|
1575 |
-
"
|
1576 |
|
1577 |
-
#: ../
|
1578 |
-
msgid "
|
1579 |
-
msgstr "
|
1580 |
|
1581 |
-
#: ../
|
1582 |
-
msgid "
|
1583 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1584 |
|
1585 |
-
#: ../
|
1586 |
-
msgid "
|
1587 |
-
msgstr "
|
1588 |
|
1589 |
-
#: ../
|
1590 |
-
msgid "
|
1591 |
-
msgstr "
|
1592 |
|
1593 |
-
#: ../
|
1594 |
-
msgid "
|
1595 |
-
|
|
|
|
|
|
|
|
|
|
|
1596 |
|
1597 |
-
#: ../
|
1598 |
-
msgid "
|
1599 |
-
msgstr "
|
1600 |
|
1601 |
-
#: ../
|
1602 |
-
msgid "
|
1603 |
-
msgstr "
|
1604 |
|
1605 |
-
#: ../
|
1606 |
-
msgid "
|
1607 |
-
|
|
|
|
|
|
|
|
|
1608 |
|
1609 |
-
#: ../
|
1610 |
-
msgid "
|
1611 |
-
msgstr "
|
1612 |
|
1613 |
-
#: ../
|
1614 |
-
|
1615 |
-
|
1616 |
-
|
1617 |
-
|
1618 |
-
|
1619 |
-
|
1620 |
-
msgid "%s"
|
1621 |
-
msgstr "%s"
|
1622 |
|
1623 |
-
#: ../
|
1624 |
-
msgid "
|
1625 |
-
msgstr "
|
1626 |
|
1627 |
-
#: ../
|
1628 |
-
#, php-format
|
1629 |
msgid ""
|
1630 |
-
"
|
1631 |
-
"
|
1632 |
-
|
1633 |
-
|
1634 |
-
|
1635 |
-
"
|
1636 |
-
"<strong>%s</strong>"
|
1637 |
msgstr ""
|
1638 |
-
"
|
1639 |
-
"
|
1640 |
-
"namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>ou</i><br>\n"
|
1641 |
-
" b) Allez dans Apparence -> Widgets. Cliquez sur le widget Email "
|
1642 |
-
"subscribers et faites le glisser dans un groupe de widgets<i>ou</i><br>\n"
|
1643 |
-
" c) Copiez et collez ce code php dans un fichier de votre thème : "
|
1644 |
-
"<strong>%s</strong>"
|
1645 |
|
1646 |
-
#: ../
|
1647 |
-
msgid "
|
1648 |
-
msgstr "
|
1649 |
|
1650 |
-
#: ../
|
1651 |
-
|
1652 |
-
|
1653 |
-
"
|
1654 |
-
"
|
1655 |
|
1656 |
-
#: ../
|
1657 |
-
|
1658 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1659 |
|
1660 |
-
#: ../
|
1661 |
-
|
1662 |
-
|
1663 |
-
msgstr "Modifier %s"
|
1664 |
|
1665 |
-
#: ../
|
1666 |
-
msgid "
|
1667 |
-
msgstr "
|
1668 |
|
1669 |
-
#: ../
|
1670 |
msgid ""
|
1671 |
-
"
|
1672 |
-
"
|
1673 |
-
msgstr ""
|
1674 |
-
" (comme les courriels de confirmation, de bienvenue, de notification à "
|
1675 |
-
"l'administrateur), les réglages des tâches Cron et les droits des "
|
1676 |
-
"utilisateurs"
|
1677 |
|
1678 |
-
#: ../
|
1679 |
-
msgid "
|
1680 |
-
msgstr "
|
1681 |
|
1682 |
-
#: ../
|
1683 |
-
msgid "
|
1684 |
-
msgstr "
|
1685 |
|
1686 |
-
#: ../
|
1687 |
-
msgid "
|
1688 |
-
msgstr "
|
1689 |
|
1690 |
-
#: ../
|
1691 |
-
msgid "
|
1692 |
-
msgstr "
|
1693 |
|
1694 |
-
#: ../
|
1695 |
-
msgid "
|
1696 |
-
msgstr "
|
1697 |
|
1698 |
-
#: ../
|
1699 |
-
msgid "
|
|
|
|
|
|
|
|
|
1700 |
msgstr ""
|
1701 |
-
"
|
1702 |
-
"
|
1703 |
-
|
1704 |
-
|
1705 |
-
msgid "Cron Job Setup"
|
1706 |
-
msgstr "Réglage des tâches Cron"
|
1707 |
|
1708 |
-
#: ../
|
1709 |
-
msgid "
|
1710 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1711 |
|
1712 |
-
#: ../
|
1713 |
-
msgid "
|
1714 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1715 |
|
1716 |
-
#: ../
|
1717 |
-
msgid "
|
1718 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1719 |
|
1720 |
-
#: ../
|
1721 |
-
msgid "
|
1722 |
-
msgstr "
|
1723 |
|
1724 |
-
#: ../
|
1725 |
-
msgid "
|
1726 |
-
msgstr "
|
1727 |
|
1728 |
-
#: ../
|
1729 |
-
msgid "
|
1730 |
-
msgstr "
|
1731 |
|
1732 |
-
#: ../
|
1733 |
-
msgid "
|
1734 |
-
msgstr "
|
1735 |
|
1736 |
-
#: ../
|
1737 |
-
msgid "
|
1738 |
-
msgstr "
|
1739 |
|
1740 |
-
#: ../
|
1741 |
-
|
1742 |
-
|
|
|
1743 |
|
1744 |
-
#: ../
|
1745 |
-
msgid "
|
1746 |
-
msgstr "
|
1747 |
|
1748 |
-
#: ../
|
1749 |
msgid ""
|
1750 |
-
"
|
1751 |
-
"
|
1752 |
msgstr ""
|
1753 |
-
"
|
1754 |
-
"d'
|
1755 |
-
|
1756 |
-
#: ../help/help.php:414
|
1757 |
-
msgid "The user can then subscribe to whichever group most appeals to them."
|
1758 |
-
msgstr "L'utilisateur peut alors s'abonner au groupe qui lui convient le mieux."
|
1759 |
-
|
1760 |
-
#: ../help/help.php:417
|
1761 |
-
msgid "For example: Subscribe either to Updates or to Offers."
|
1762 |
-
msgstr "Par exemple: S'abonner aux mises à jour ou aux offres."
|
1763 |
-
|
1764 |
-
#: ../help/help.php:421
|
1765 |
-
msgid "Show your subscribe form inside attractive popups"
|
1766 |
-
msgstr "Afficher votre formulaire d'abonnement dans une popup attractive"
|
1767 |
|
1768 |
-
#: ../
|
1769 |
-
msgid ""
|
1770 |
-
"
|
1771 |
-
"bars, slide-ins, sidebars, full screen popups etc."
|
1772 |
-
msgstr ""
|
1773 |
-
"Ne limiter pas votre formulaire d'inscription à un shortcode. Intégrez-le "
|
1774 |
-
"dans une fenêtre pop-up, une barre de bienvenue, vos colonnes latérales, une "
|
1775 |
-
"pop-up en plein écran, etc."
|
1776 |
|
1777 |
-
#: ../
|
1778 |
-
msgid ""
|
1779 |
-
"
|
1780 |
-
"increase sign-ups to your WordPress website."
|
1781 |
-
msgstr ""
|
1782 |
-
"Les magnifiques designs d'Icegram captent instantanément l'attention de "
|
1783 |
-
"l'utilisateur et aident à augmenter les inscriptions à votre site WordPress."
|
1784 |
|
1785 |
-
#: ../
|
1786 |
-
|
1787 |
-
|
1788 |
-
msgstr "Comment %s"
|
1789 |
|
1790 |
-
#: ../
|
1791 |
-
|
1792 |
-
|
|
|
|
|
|
|
1793 |
|
1794 |
-
#: ../
|
1795 |
-
|
1796 |
-
|
|
|
|
|
|
|
1797 |
|
1798 |
-
#: ../
|
1799 |
-
|
1800 |
-
|
|
|
|
|
1801 |
|
1802 |
-
#: ../
|
1803 |
-
|
1804 |
-
|
1805 |
-
|
1806 |
-
|
1807 |
-
|
1808 |
-
"propose des styles de formulaire élégants."
|
1809 |
|
1810 |
-
#: ../
|
1811 |
-
msgid ""
|
1812 |
-
"
|
1813 |
-
"more appealing."
|
1814 |
-
msgstr ""
|
1815 |
-
"Ces styles sont bien conçus et embellissent votre formulaire d'abonnement, "
|
1816 |
-
"ce qui le rend plus attrayant."
|
1817 |
|
1818 |
-
#: ../
|
1819 |
-
msgid "
|
1820 |
-
msgstr "
|
1821 |
|
1822 |
-
#: ../
|
1823 |
-
msgid "
|
1824 |
-
msgstr "
|
1825 |
|
1826 |
-
#: ../
|
1827 |
-
|
1828 |
-
|
|
|
|
|
1829 |
|
1830 |
-
#: ../
|
1831 |
-
|
1832 |
-
|
|
|
|
|
1833 |
|
1834 |
-
#: ../
|
1835 |
-
|
1836 |
-
|
|
|
|
|
1837 |
|
1838 |
-
#: ../
|
1839 |
-
msgid "
|
1840 |
-
msgstr "
|
1841 |
|
1842 |
-
#: ../
|
1843 |
-
|
1844 |
-
|
|
|
1845 |
|
1846 |
-
#: ../
|
1847 |
-
msgid "
|
1848 |
-
msgstr "
|
1849 |
|
1850 |
-
#: ../
|
1851 |
-
msgid "
|
1852 |
-
msgstr "
|
1853 |
|
1854 |
-
#: ../
|
1855 |
-
msgid "
|
1856 |
-
msgstr "
|
1857 |
|
1858 |
-
#: ../
|
1859 |
-
msgid "
|
1860 |
-
msgstr "
|
1861 |
|
1862 |
-
#: ../
|
1863 |
-
msgid "
|
1864 |
-
msgstr "
|
1865 |
|
1866 |
-
#: ../
|
1867 |
-
msgid "
|
1868 |
-
msgstr "
|
1869 |
|
1870 |
-
#: ../
|
1871 |
-
|
1872 |
-
|
1873 |
-
msgstr "Destinataires : %s"
|
1874 |
|
1875 |
-
#: ../
|
1876 |
-
msgid ""
|
1877 |
-
|
1878 |
-
"that you change above Mail Type to Cron and Send Mail via Cron Job."
|
1879 |
-
"</strong><br>Click on Help for more information."
|
1880 |
-
msgstr ""
|
1881 |
-
"<br><br><strong>Il ya plus de 100 destinataires.<br>Nous vous recommandons "
|
1882 |
-
"de modifier le mode d'envoi et d'utiliser la tâche CRON pour envoyer les "
|
1883 |
-
"courriels.</strong><br>Cliquez sur l'aide pour plus d'information."
|
1884 |
|
1885 |
-
#: ../
|
1886 |
-
msgid "
|
1887 |
-
msgstr "
|
1888 |
|
1889 |
-
#: ../
|
1890 |
-
msgid "
|
1891 |
-
msgstr "
|
1892 |
|
1893 |
-
#: ../
|
1894 |
-
|
1895 |
-
|
|
|
1896 |
|
1897 |
-
#: ../
|
1898 |
-
|
1899 |
-
|
|
|
1900 |
|
1901 |
-
#: ../
|
1902 |
-
msgid "
|
1903 |
-
msgstr "
|
1904 |
|
1905 |
-
#: ../
|
1906 |
-
msgid "
|
1907 |
-
msgstr "
|
1908 |
|
1909 |
-
#: ../
|
1910 |
-
|
1911 |
-
|
|
|
|
|
1912 |
|
1913 |
-
#: ../
|
1914 |
-
msgid "
|
1915 |
-
msgstr "
|
1916 |
|
1917 |
-
#: ../
|
1918 |
-
msgid "
|
1919 |
-
msgstr "
|
1920 |
|
1921 |
-
#: ../
|
1922 |
-
msgid "
|
1923 |
-
msgstr "
|
1924 |
|
1925 |
-
#: ../
|
1926 |
-
msgid "
|
1927 |
-
msgstr "
|
1928 |
|
1929 |
-
#: ../
|
1930 |
-
msgid "
|
1931 |
-
msgstr "
|
1932 |
|
1933 |
-
#: ../
|
1934 |
-
msgid "
|
1935 |
-
msgstr "
|
1936 |
|
1937 |
-
#: ../
|
1938 |
-
|
1939 |
-
|
1940 |
-
msgstr "Email Subscribers & Newsletters"
|
1941 |
|
1942 |
-
#: ../
|
1943 |
-
msgid "
|
1944 |
-
msgstr "
|
1945 |
|
1946 |
-
#: ../
|
1947 |
-
msgid "
|
1948 |
-
|
|
|
|
|
|
|
|
|
1949 |
|
1950 |
-
#: ../
|
1951 |
-
|
1952 |
-
|
1953 |
-
msgstr "Entrer l'adresse e-mail de l'abonné."
|
1954 |
|
1955 |
-
#: ../
|
1956 |
-
|
1957 |
-
|
1958 |
-
msgstr "Sélectionner le type d'envoi pour cet abonné."
|
1959 |
|
1960 |
-
#: ../
|
1961 |
-
|
1962 |
-
|
1963 |
-
msgstr "Sélectionner ou créer un groupe pour cet abonné."
|
1964 |
|
1965 |
-
#: ../
|
1966 |
-
|
1967 |
-
msgid "
|
1968 |
-
msgstr "
|
1969 |
|
1970 |
-
#: ../
|
1971 |
-
|
1972 |
-
msgid "
|
1973 |
-
msgstr "
|
1974 |
|
1975 |
-
#: ../
|
1976 |
-
|
1977 |
-
|
1978 |
-
msgstr "Voulez-vous supprimer les lignes sélectionnées?"
|
1979 |
|
1980 |
-
#: ../
|
1981 |
-
|
1982 |
-
|
1983 |
-
msgstr "Veuillez choisir un groupe d'abonnés."
|
1984 |
|
1985 |
-
#: ../
|
1986 |
-
|
1987 |
-
|
1988 |
-
msgstr "Veuillez choisir un nouveau statut pour ces abonnés"
|
1989 |
|
1990 |
-
#: ../
|
1991 |
-
|
1992 |
-
|
1993 |
-
msgstr "Voulez-vous mettre à jour ce groupe?"
|
1994 |
|
1995 |
-
#: ../
|
1996 |
-
|
1997 |
-
|
1998 |
-
msgstr "Voulez vous modifier le statut de ces abonnés?"
|
1999 |
|
2000 |
-
#: ../
|
2001 |
-
|
2002 |
-
|
2003 |
-
"Please select only csv file. Please check official website for csv structure."
|
2004 |
-
"."
|
2005 |
-
msgstr ""
|
2006 |
-
"Veuillez choisir uniquement un fichier csv. Consultez la documentation pour "
|
2007 |
-
"la structure du fichier csv."
|
2008 |
|
2009 |
-
#: ../
|
2010 |
-
|
2011 |
-
|
2012 |
-
msgstr "Veuillez choisir un groupe."
|
2013 |
|
2014 |
-
#: ../
|
2015 |
-
|
2016 |
-
|
2017 |
-
msgstr "Veuillez sélectionner le statut de la notification."
|
2018 |
|
2019 |
-
#: ../
|
2020 |
-
|
2021 |
-
msgid "
|
2022 |
-
msgstr "
|
2023 |
|
2024 |
-
#: ../
|
2025 |
-
|
2026 |
-
|
2027 |
-
msgstr "Veuillez choisir le sujet du courriel."
|
2028 |
|
2029 |
-
#: ../
|
2030 |
-
|
2031 |
-
|
2032 |
-
|
|
|
2033 |
|
2034 |
-
#: ../
|
2035 |
-
|
2036 |
-
|
2037 |
-
"Have you double checked your selected group? If so, let's go ahead and send "
|
2038 |
-
"this."
|
2039 |
-
msgstr ""
|
2040 |
-
"Avez-vous vérifié les groupes sélectionnés? Si c'est bon, allons-y, on peut "
|
2041 |
-
"envoyer."
|
2042 |
|
2043 |
-
#: ../
|
2044 |
-
|
2045 |
-
|
2046 |
-
msgstr "Voulez-vous supprimer cet enregistrement?"
|
2047 |
|
2048 |
-
#: ../
|
2049 |
-
|
2050 |
-
|
2051 |
-
msgstr "Voulez-vous supprimer tous les enregistrements sauf les 10 derniers?"
|
2052 |
|
2053 |
-
#: ../
|
2054 |
-
|
2055 |
-
|
2056 |
-
msgstr ""
|
2057 |
-
"Veuillez saisir le nombre de courriels que vous voulez envoyer par "
|
2058 |
-
"heure/envoi."
|
2059 |
|
2060 |
-
#: ../
|
2061 |
-
|
2062 |
-
|
2063 |
-
msgstr "Veuillez saisir le nombre de courriel. Que des chiffres."
|
2064 |
|
2065 |
-
#: ../
|
2066 |
-
|
2067 |
-
msgid "
|
2068 |
-
msgstr "
|
2069 |
|
2070 |
-
#: ../
|
2071 |
-
|
2072 |
-
|
2073 |
-
msgstr "Veuillez saisir une adresse e-mail valide"
|
2074 |
|
2075 |
-
#: ../
|
2076 |
-
|
2077 |
-
|
2078 |
-
msgstr "envoi..."
|
2079 |
|
2080 |
-
#: ../
|
2081 |
-
|
2082 |
-
|
2083 |
-
msgstr "Impossible de créer l'instance XMLHTTP"
|
2084 |
|
2085 |
-
#: ../
|
2086 |
-
|
2087 |
-
|
2088 |
-
msgstr "Mise à jour réussie."
|
2089 |
|
2090 |
-
#: ../
|
2091 |
-
|
2092 |
-
msgid "
|
2093 |
-
msgstr "
|
2094 |
|
2095 |
-
#: ../
|
2096 |
-
|
2097 |
-
|
2098 |
-
msgstr "Oups.. une erreur inattendue s'est produite."
|
2099 |
|
2100 |
-
#: ../
|
2101 |
-
|
2102 |
-
|
2103 |
-
msgstr "Adresse e-mail non valide"
|
2104 |
|
2105 |
-
#: ../
|
2106 |
-
|
2107 |
-
|
2108 |
-
msgstr "Veuillez réessayer dans quelques instants"
|
2109 |
|
2110 |
-
#: ../
|
2111 |
-
|
2112 |
-
|
2113 |
-
msgstr "Il y a eu un problème avec la requête"
|
2114 |
|
2115 |
-
#: ../
|
2116 |
-
|
2117 |
-
|
2118 |
-
msgstr "Veuillez saisir une adresse e-mail"
|
2119 |
|
2120 |
-
#: ../
|
2121 |
-
|
2122 |
-
|
2123 |
-
msgstr "Veuillez saisir une adresse e-mail valide"
|
2124 |
|
2125 |
-
#: ../
|
2126 |
-
|
2127 |
-
|
2128 |
-
msgstr "chargement..."
|
2129 |
|
2130 |
-
#: ../
|
2131 |
-
|
2132 |
-
|
2133 |
-
msgstr "Impossible de créer l'instance XMLHTTP"
|
2134 |
|
2135 |
-
#: ../
|
2136 |
-
|
2137 |
-
|
2138 |
-
msgstr "Abonnement réussi."
|
2139 |
|
2140 |
-
#: ../
|
2141 |
-
|
2142 |
-
|
2143 |
-
msgstr "Cette adresse existe déjà !"
|
2144 |
|
2145 |
-
#: ../
|
2146 |
-
|
2147 |
-
|
2148 |
-
msgstr "Oups... Une erreur inattendue s'est produite."
|
2149 |
|
2150 |
-
#: ../
|
2151 |
-
|
2152 |
-
|
2153 |
-
msgstr "Adresse e-mail non valide"
|
2154 |
|
2155 |
-
#: ../
|
2156 |
-
|
2157 |
-
|
2158 |
-
msgstr "Veuillez réessayer plus tard"
|
2159 |
|
2160 |
-
#: ../
|
2161 |
-
|
2162 |
-
|
2163 |
-
msgstr "Il y a eu un problème avec la requête"
|
2164 |
|
2165 |
-
#: ../
|
2166 |
-
msgid ""
|
2167 |
-
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
2168 |
-
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
2169 |
-
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
2170 |
-
"</a> rating. A huge thank you from Icegram in advance!"
|
2171 |
msgstr ""
|
2172 |
-
"
|
2173 |
-
"
|
2174 |
-
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
2175 |
-
"</a>. Un grand merci d'Icegram d'avance!"
|
2176 |
|
2177 |
-
#: ../
|
2178 |
-
msgid "
|
2179 |
-
msgstr "
|
2180 |
|
2181 |
-
#: ../
|
2182 |
-
msgid "
|
2183 |
-
msgstr "
|
2184 |
|
2185 |
-
#: ../
|
2186 |
-
msgid "
|
2187 |
-
msgstr "
|
2188 |
|
2189 |
-
#: ../
|
2190 |
-
msgid "
|
2191 |
-
msgstr "
|
2192 |
|
2193 |
-
|
2194 |
-
msgid "
|
2195 |
-
msgstr "
|
2196 |
|
2197 |
-
|
2198 |
-
msgid "
|
2199 |
-
msgstr "
|
2200 |
|
2201 |
-
|
2202 |
-
msgid "
|
2203 |
-
|
|
|
|
|
|
|
|
|
|
|
2204 |
|
2205 |
-
#: ../
|
2206 |
-
|
2207 |
-
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.12\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Tue Apr 17 2018 15:49:51 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: French (France)\n"
|
22 |
"X-Loco-Target-Locale: fr_FR\n"
|
23 |
"X-Poedit-SearchPath-0: .."
|
24 |
|
25 |
+
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
26 |
+
#: register.php:789 ../classes/es-register.php:790 ../classes/es-register.php:795
|
27 |
+
msgid "Templates"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: ../classes/es-register.php:201
|
31 |
+
msgctxt "view-subscriber-enhanced-select"
|
32 |
+
msgid ""
|
33 |
+
"Do you want to resend confirmation email? Also please note, this will update "
|
34 |
+
"subscriber current status to 'Unconfirmed'."
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: ../classes/es-register.php:215
|
38 |
+
msgctxt "notification-enhanced-select"
|
39 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
|
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: ../classes/es-register.php:260
|
43 |
+
msgctxt "widget-enhanced-select"
|
44 |
msgid ""
|
45 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
46 |
+
"subscription. If you don't see the email within a few minutes, check the "
|
47 |
+
"spam/junk folder."
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: ../classes/es-register.php:274
|
51 |
+
msgctxt "widget-page-enhanced-select"
|
52 |
msgid ""
|
53 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
54 |
+
"subscription. If you don't see the email within a few minutes, check the "
|
55 |
+
"spam/junk folder."
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: ../classes/es-register.php:739
|
59 |
msgid ""
|
60 |
+
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
61 |
+
"subscribers list?</b> Come check our Pro plan."
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: ../classes/es-register.php:740
|
65 |
+
msgid "Check Pro plan "
|
|
|
|
|
|
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: ../classes/es-register.php:740
|
69 |
+
msgid "Not interested."
|
|
|
|
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: ../classes/es-register.php:780
|
73 |
+
#, php-format
|
74 |
+
msgid "Email Subscribers version: <strong>%s</strong>"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: ../classes/es-register.php:791 ../classes/es-register.php:792
|
78 |
+
msgid "Add new Template"
|
|
|
|
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: ../classes/es-register.php:793
|
82 |
+
msgid "Edit Templates"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: ../classes/es-register.php:794
|
86 |
+
msgid "New Templates"
|
|
|
|
|
|
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: ../classes/es-register.php:796
|
90 |
+
msgid "View Templates"
|
|
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: ../classes/es-register.php:797
|
94 |
+
msgid "Search Templates"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: ../classes/es-register.php:798
|
98 |
+
msgid "No Templates found"
|
|
|
|
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: ../classes/es-register.php:799
|
102 |
+
msgid "No Templates found in Trash"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: ../classes/es-register.php:802
|
106 |
+
msgid "Thumbnail (For Visual Representation only)"
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: ../classes/es-register.php:803
|
110 |
+
msgid "Set thumbnail"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: ../classes/es-register.php:840
|
114 |
+
msgid "Template Type"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: ../classes/es-register.php:906
|
118 |
+
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
|
|
|
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: ../classes/es-register.php:909
|
122 |
+
msgid "Select your Email Template Type"
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: ../classes/es-register.php:959
|
126 |
+
msgid "Preview Template"
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: ../classes/es-register.php:973
|
130 |
+
#, php-format
|
131 |
msgid ""
|
132 |
+
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
133 |
+
"{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
|
134 |
+
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: ../classes/es-register.php:974
|
138 |
+
#, php-format
|
139 |
+
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: ../export/export-email-address.php:50 ../export/export-email-address.php:54
|
143 |
+
msgid "Unexpected url submit has been detected!"
|
144 |
msgstr ""
|
145 |
|
146 |
#: ../help/help.php:185
|
174 |
msgid "General Plugin Configuration"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: ../help/help.php:327
|
178 |
+
msgid "How does Sync work?"
|
179 |
+
msgstr ""
|
180 |
+
|
181 |
+
#: ../help/help.php:342
|
182 |
msgid "How to check sent emails?"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: ../help/help.php:354
|
186 |
msgid "Create and Send Newsletter Emails"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: ../help/help.php:357
|
190 |
msgid "Keywords in the Newsletters"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: ../help/help.php:364
|
194 |
msgid "Create and Send Post Notification Emails when new posts are published"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: ../help/help.php:378
|
198 |
msgid "What is Cron and how to Schedule Cron Emails?"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: ../help/help.php:412
|
202 |
msgid "Using our <b>free</b> "
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: ../help/help.php:432
|
206 |
msgid ""
|
207 |
"Using Email Subscribers you can achieve this easily with our <b>free</b> "
|
208 |
"plugin "
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: ../help/help.php:449
|
212 |
msgid "Email subscribers easily integrates with another <b>free</b> plugin "
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
|
216 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
|
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
220 |
+
#: 164
|
221 |
+
msgid "(Use templates menu to create new)"
|
|
|
|
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: ../sentmail/sentmail-preview.php:27
|
225 |
+
msgid "Preview Email"
|
|
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: ../sentmail/sentmail-preview.php:31
|
|
|
229 |
msgid ""
|
230 |
+
"This is how the email you sent may look. <br>Note: Different email services "
|
231 |
+
"(like gmail, yahoo etc) display email content differently. So there could be "
|
232 |
+
"a slight variation on how your customer will view the email content."
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: ../settings/settings-edit.php:117
|
|
|
236 |
msgid ""
|
237 |
+
"Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
|
238 |
+
"Emails."
|
|
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: ../settings/settings-edit.php:157
|
242 |
msgid ""
|
243 |
+
"Content for the admin email whenever a new subscriber signs up and is "
|
244 |
+
"confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: ../settings/settings-edit.php:172
|
248 |
+
msgid ""
|
249 |
+
"Content for the email report which will be sent to admin.<br />Available "
|
250 |
+
"Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: ../settings/settings-edit.php:191
|
254 |
+
msgid ""
|
255 |
+
"Content for the confirmation email to be sent for Double Opt-In whenever a "
|
256 |
+
"subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: ../settings/settings-edit.php:232
|
260 |
+
msgid ""
|
261 |
+
"Content for the subscriber welcome email whenever a user's email is either "
|
262 |
+
"confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
|
263 |
+
"<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: ../settings/settings-edit.php:248
|
267 |
+
msgid ""
|
268 |
+
"The text for the unsubscribe link. This text is automatically added with "
|
269 |
+
"unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: ../settings/settings-edit.php:300
|
273 |
+
msgid "Templates Menu"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: ../settings/settings-edit.php:375
|
277 |
+
msgid ""
|
278 |
+
"Email to admin whenever a cron URL is triggered from your server.<br "
|
279 |
+
"/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: ../subscribers/view-subscriber-export.php:12
|
283 |
+
msgid ""
|
284 |
+
"Oops! Looks like you are not the site administrator.<br><br>Only the site "
|
285 |
+
"administrator can export subscriber list."
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: ../subscribers/view-subscriber-export.php:14
|
289 |
+
msgid "Go back to Subscribers dashboard"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: ../subscribers/view-subscriber-show.php:75 ../subscribers/view-subscriber-show.
|
293 |
+
#: php:134
|
294 |
+
msgid "Confirmation emails resent successfully."
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: ../subscribers/view-subscriber-show.php:256
|
298 |
+
msgid "Total Subscribers: "
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: ../templates/template-preview.php:31
|
302 |
+
msgid "Template Preview"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: ../templates/template-preview.php:39
|
306 |
+
msgid "This is how your email may look."
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: ../templates/template-preview.php:41
|
310 |
+
msgid ""
|
311 |
+
"<br><br>This Post Notification preview has replaced keywords from your last "
|
312 |
+
"published blog post."
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: ../templates/template-preview.php:43
|
316 |
+
msgid ""
|
317 |
+
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
318 |
+
"content differently. So there could be a slight variation on how your "
|
319 |
+
"customer will view the email content."
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: ../classes/es-common.php:13
|
323 |
+
msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
|
324 |
+
msgstr "<span style=\"color:#006600;font-weight:bold;\">Confirmé</span>"
|
325 |
|
326 |
+
#: ../classes/es-common.php:16
|
327 |
+
msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
|
328 |
+
msgstr "<span style=\"color:#FF0000\">Non confirmé</span>"
|
329 |
|
330 |
+
#: ../classes/es-common.php:19
|
331 |
+
msgid "<span style=\"color:#999900\">Unsubscribed</span>"
|
332 |
+
msgstr "<span style=\"color:#999900\">Désabonné</span>"
|
|
|
|
|
|
|
|
|
333 |
|
334 |
+
#: ../classes/es-common.php:22
|
335 |
+
msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
|
336 |
+
msgstr "<span style=\"color:#0000FF\">Simple vérification</span>"
|
|
|
337 |
|
338 |
+
#: ../classes/es-common.php:25
|
339 |
+
msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
|
340 |
+
msgstr "<span style=\"color:#00CC00;font-weight:bold\">Vu</span>"
|
341 |
|
342 |
+
#: ../classes/es-common.php:28
|
343 |
+
msgid "<span style=\"color:#999900;\">Nodata</span>"
|
344 |
+
msgstr "<span style=\"color:#999900;\">Aucune donnée</span>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
345 |
|
346 |
+
#: ../classes/es-common.php:31
|
347 |
+
msgid "<span style=\"color:#FF0000\">Disabled</span>"
|
348 |
+
msgstr "<span style=\"color:#FF0000\">Désactivé</span>"
|
|
|
349 |
|
350 |
+
#: ../classes/es-common.php:34
|
351 |
+
msgid "<span style=\"color:#FF0000\">In Queue</span>"
|
352 |
+
msgstr "<span style=\"color:#FF0000\">En file d'attente</span>"
|
|
|
353 |
|
354 |
+
#: ../classes/es-common.php:37
|
355 |
+
msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
|
356 |
+
msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Envoyé</span>"
|
|
|
357 |
|
358 |
+
#: ../classes/es-common.php:40
|
359 |
+
msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
|
360 |
+
msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
|
|
|
361 |
|
362 |
+
#: ../classes/es-common.php:43
|
363 |
+
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
364 |
+
msgstr "<span style=\"color:#993399;\">Courriel instantané</span>"
|
|
|
365 |
|
366 |
+
#: ../classes/es-loadwidget.php:28 ../classes/es-register.php:1053 ..
|
367 |
+
#: subscribers/view-subscriber-show.php:289
|
368 |
+
msgid "Name"
|
369 |
+
msgstr "Nom"
|
370 |
|
371 |
+
#: ../classes/es-loadwidget.php:33 ../classes/es-register.php:1058
|
372 |
+
msgid "Email *"
|
373 |
+
msgstr "E-mail *"
|
|
|
374 |
|
375 |
+
#: ../classes/es-loadwidget.php:38 ../classes/es-register.php:1063 ../help/help.
|
376 |
+
#: php:196
|
377 |
+
msgid "Subscribe"
|
378 |
+
msgstr "S'abonner"
|
379 |
|
380 |
+
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
381 |
+
#: register.php:801
|
382 |
+
msgid "Email Subscribers"
|
383 |
+
msgstr "Email Subscribers & Newsletters"
|
|
|
384 |
|
385 |
+
#: ../classes/es-register.php:165 ../classes/es-register.php:166 ..
|
386 |
+
#: subscribers/view-subscriber-show.php:242
|
387 |
+
msgid "Subscribers"
|
388 |
+
msgstr "Abonnés"
|
389 |
|
390 |
+
#: ../classes/es-register.php:171 ../classes/es-register.php:172 ../help/help.php:
|
391 |
+
#: 361 ../notification/notification-show.php:52
|
392 |
msgid "Post Notifications"
|
393 |
msgstr "Notifications d'article"
|
394 |
|
395 |
+
#: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
|
396 |
+
#: 351 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:324
|
397 |
+
msgid "Newsletters"
|
398 |
+
msgstr "Newsletters"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
399 |
|
400 |
+
#: ../classes/es-register.php:177 ../classes/es-register.php:178 ..
|
401 |
+
#: settings/settings-edit.php:42
|
402 |
+
msgid "Settings"
|
403 |
+
msgstr "Paramètres"
|
404 |
|
405 |
+
#: ../classes/es-register.php:180 ../classes/es-register.php:181 ..
|
406 |
+
#: sentmail/sentmail-show.php:93
|
407 |
+
msgid "Reports"
|
408 |
+
msgstr "Rapports"
|
409 |
|
410 |
+
#: ../classes/es-register.php:183
|
411 |
+
msgid "Help & Info"
|
412 |
+
msgstr "Aide & Infos"
|
|
|
413 |
|
414 |
+
#: ../classes/es-register.php:184
|
415 |
+
msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
|
416 |
+
msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Aide & Info</span>"
|
|
|
417 |
|
418 |
+
#: ../classes/es-register.php:195
|
419 |
+
msgctxt "view-subscriber-enhanced-select"
|
420 |
+
msgid "Please enter subscriber email address."
|
421 |
+
msgstr "Entrer l'adresse e-mail de l'abonné."
|
422 |
|
423 |
+
#: ../classes/es-register.php:196
|
424 |
+
msgctxt "view-subscriber-enhanced-select"
|
425 |
+
msgid "Please select subscriber email status."
|
426 |
+
msgstr "Sélectionner le type d'envoi pour cet abonné."
|
427 |
|
428 |
+
#: ../classes/es-register.php:197
|
429 |
+
msgctxt "view-subscriber-enhanced-select"
|
430 |
+
msgid "Please select or create group for this subscriber."
|
431 |
+
msgstr "Sélectionner ou créer un groupe pour cet abonné."
|
432 |
|
433 |
+
#: ../classes/es-register.php:198
|
434 |
+
msgctxt "view-subscriber-enhanced-select"
|
435 |
+
msgid "Do you want to delete this record?"
|
436 |
+
msgstr "Voulez-vous supprimer cette ligne?"
|
437 |
|
438 |
+
#: ../classes/es-register.php:199
|
439 |
+
msgctxt "view-subscriber-enhanced-select"
|
440 |
+
msgid "Please select the bulk action."
|
441 |
+
msgstr "Veuillez sélectionner une action."
|
442 |
|
443 |
+
#: ../classes/es-register.php:200
|
444 |
+
msgctxt "view-subscriber-enhanced-select"
|
445 |
+
msgid "Are you sure you want to delete selected records?"
|
446 |
+
msgstr "Voulez-vous supprimer les lignes sélectionnées?"
|
447 |
|
448 |
+
#: ../classes/es-register.php:202
|
449 |
+
msgctxt "view-subscriber-enhanced-select"
|
450 |
+
msgid "Please select new subscriber group."
|
451 |
+
msgstr "Veuillez choisir un groupe d'abonnés."
|
452 |
|
453 |
+
#: ../classes/es-register.php:203
|
454 |
+
msgctxt "view-subscriber-enhanced-select"
|
455 |
+
msgid "Please select new status for subscribers"
|
456 |
+
msgstr "Veuillez choisir un nouveau statut pour ces abonnés"
|
457 |
|
458 |
+
#: ../classes/es-register.php:204
|
459 |
+
msgctxt "view-subscriber-enhanced-select"
|
460 |
+
msgid "Do you want to update subscribers group?"
|
461 |
+
msgstr "Voulez-vous mettre à jour ce groupe?"
|
462 |
|
463 |
+
#: ../classes/es-register.php:205
|
464 |
+
msgctxt "view-subscriber-enhanced-select"
|
465 |
+
msgid "Do you want to update subscribers status?"
|
466 |
+
msgstr "Voulez vous modifier le statut de ces abonnés?"
|
467 |
|
468 |
+
#: ../classes/es-register.php:206
|
469 |
+
msgctxt "view-subscriber-enhanced-select"
|
470 |
msgid ""
|
471 |
+
"Please select only csv file. Please check official website for csv structure."
|
472 |
+
"."
|
473 |
msgstr ""
|
474 |
+
"Veuillez choisir uniquement un fichier csv. Consultez la documentation pour "
|
475 |
+
"la structure du fichier csv."
|
|
|
|
|
|
|
|
|
|
|
476 |
|
477 |
+
#: ../classes/es-register.php:214
|
478 |
+
msgctxt "notification-enhanced-select"
|
479 |
+
msgid "Please select subscribers group."
|
480 |
+
msgstr "Veuillez choisir un groupe."
|
481 |
|
482 |
+
#: ../classes/es-register.php:216
|
483 |
+
msgctxt "notification-enhanced-select"
|
484 |
+
msgid "Please select notification status."
|
485 |
+
msgstr "Veuillez sélectionner le statut de la notification."
|
486 |
|
487 |
+
#: ../classes/es-register.php:217
|
488 |
+
msgctxt "notification-enhanced-select"
|
489 |
+
msgid "Do you want to delete this record?"
|
490 |
+
msgstr "Voulez-vous supprimer cet enregistrement?"
|
491 |
|
492 |
+
#: ../classes/es-register.php:225
|
493 |
+
msgctxt "sendmail-enhanced-select"
|
494 |
+
msgid "Please select your mail subject."
|
495 |
+
msgstr "Veuillez choisir le sujet du courriel."
|
496 |
|
497 |
+
#: ../classes/es-register.php:226
|
498 |
+
msgctxt "sendmail-enhanced-select"
|
499 |
+
msgid "Please select your mail type."
|
500 |
+
msgstr "Veuillez choisir le type d'envoi."
|
501 |
|
502 |
+
#: ../classes/es-register.php:227
|
503 |
+
msgctxt "sendmail-enhanced-select"
|
504 |
+
msgid ""
|
505 |
+
"Have you double checked your selected group? If so, let's go ahead and send "
|
506 |
+
"this."
|
507 |
+
msgstr ""
|
508 |
+
"Avez-vous vérifié les groupes sélectionnés? Si c'est bon, allons-y, on peut "
|
509 |
+
"envoyer."
|
510 |
|
511 |
+
#: ../classes/es-register.php:235
|
512 |
+
msgctxt "sentmail-enhanced-select"
|
513 |
+
msgid "Do you want to delete this record?"
|
514 |
+
msgstr "Voulez-vous supprimer cet enregistrement?"
|
515 |
|
516 |
+
#: ../classes/es-register.php:236
|
517 |
+
msgctxt "sentmail-enhanced-select"
|
518 |
+
msgid "Do you want to delete all records except latest 10?"
|
519 |
+
msgstr "Voulez-vous supprimer tous les enregistrements sauf les 10 derniers?"
|
520 |
|
521 |
+
#: ../classes/es-register.php:244
|
522 |
+
msgctxt "cron-enhanced-select"
|
523 |
+
msgid "Please select enter number of mails you want to send per hour/trigger."
|
|
|
524 |
msgstr ""
|
525 |
+
"Veuillez saisir le nombre de courriels que vous voulez envoyer par "
|
526 |
+
"heure/envoi."
|
527 |
|
528 |
+
#: ../classes/es-register.php:245
|
529 |
+
msgctxt "cron-enhanced-select"
|
530 |
+
msgid "Please enter the mail count, only number."
|
531 |
+
msgstr "Veuillez saisir le nombre de courriel. Que des chiffres."
|
532 |
|
533 |
+
#: ../classes/es-register.php:258
|
534 |
+
msgctxt "widget-enhanced-select"
|
535 |
+
msgid "Please enter email address"
|
536 |
+
msgstr "Veuillez saisir une adresse e-mail"
|
|
|
|
|
|
|
|
|
537 |
|
538 |
+
#: ../classes/es-register.php:259
|
539 |
+
msgctxt "widget-enhanced-select"
|
540 |
+
msgid "Successfully Subscribed."
|
541 |
+
msgstr "Mise à jour réussie."
|
542 |
|
543 |
+
#: ../classes/es-register.php:261
|
544 |
+
msgctxt "widget-enhanced-select"
|
545 |
+
msgid "Email Address already exists!"
|
546 |
+
msgstr "Cet adresse e-mail existe déjà !"
|
547 |
|
548 |
+
#: ../classes/es-register.php:262
|
549 |
+
msgctxt "widget-enhanced-select"
|
550 |
+
msgid "Oops.. Unexpected error occurred."
|
551 |
+
msgstr "Oups.. une erreur inattendue s'est produite."
|
552 |
|
553 |
+
#: ../classes/es-register.php:263
|
554 |
+
msgctxt "widget-enhanced-select"
|
555 |
+
msgid "Invalid email address"
|
556 |
+
msgstr "Adresse e-mail non valide"
|
557 |
|
558 |
+
#: ../classes/es-register.php:264
|
559 |
+
msgctxt "widget-enhanced-select"
|
560 |
+
msgid "Please try after some time"
|
561 |
+
msgstr "Veuillez réessayer dans quelques instants"
|
562 |
|
563 |
+
#: ../classes/es-register.php:272
|
564 |
+
msgctxt "widget-page-enhanced-select"
|
565 |
+
msgid "Please enter email address"
|
566 |
+
msgstr "Veuillez saisir une adresse e-mail"
|
567 |
+
|
568 |
+
#: ../classes/es-register.php:273
|
569 |
+
msgctxt "widget-page-enhanced-select"
|
570 |
+
msgid "Successfully Subscribed."
|
571 |
+
msgstr "Abonnement réussi."
|
|
|
|
|
|
|
572 |
|
573 |
+
#: ../classes/es-register.php:275
|
574 |
+
msgctxt "widget-page-enhanced-select"
|
575 |
+
msgid "Email Address already exists!"
|
576 |
+
msgstr "Cette adresse existe déjà !"
|
577 |
|
578 |
+
#: ../classes/es-register.php:276
|
579 |
+
msgctxt "widget-page-enhanced-select"
|
580 |
+
msgid "Oops.. Unexpected error occurred."
|
581 |
+
msgstr "Oups... Une erreur inattendue s'est produite."
|
|
|
|
|
582 |
|
583 |
+
#: ../classes/es-register.php:277
|
584 |
+
msgctxt "widget-page-enhanced-select"
|
585 |
+
msgid "Invalid email address"
|
586 |
+
msgstr "Adresse e-mail non valide"
|
587 |
|
588 |
+
#: ../classes/es-register.php:278
|
589 |
+
msgctxt "widget-page-enhanced-select"
|
590 |
+
msgid "Please try after some time"
|
591 |
+
msgstr "Veuillez réessayer plus tard"
|
592 |
|
593 |
+
#: ../classes/es-register.php:766
|
594 |
+
msgid ""
|
595 |
+
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
596 |
+
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
597 |
+
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
598 |
+
"</a> rating. A huge thank you from Icegram in advance!"
|
599 |
+
msgstr ""
|
600 |
+
"Si vous aimez <strong>Email Subscribers</strong>, attribuez-lui <a "
|
601 |
+
"target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
602 |
+
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
603 |
+
"</a>. Un grand merci d'Icegram d'avance!"
|
604 |
|
605 |
+
#: ../classes/es-register.php:841 ../settings/settings-edit.php:123
|
606 |
msgid "Thumbnail"
|
607 |
msgstr "Miniature"
|
608 |
|
609 |
+
#: ../classes/es-register.php:889 ../sentmail/sentmail-show.php:108 ..
|
610 |
+
#: sentmail/sentmail-show.php:121
|
611 |
+
msgid "Preview"
|
612 |
+
msgstr "Aperçu"
|
613 |
|
614 |
+
#: ../classes/es-register.php:911
|
615 |
+
msgid "Newsletter"
|
616 |
+
msgstr "Newsletters"
|
|
|
|
|
|
|
|
|
617 |
|
618 |
+
#: ../classes/es-register.php:912
|
619 |
+
msgid "Post Notification"
|
620 |
+
msgstr "Notification d'article"
|
621 |
|
622 |
+
#: ../classes/es-register.php:973 ../classes/es-register.php:974
|
623 |
+
msgid "Available Keywords"
|
624 |
+
msgstr "Mots clés autorisés"
|
625 |
+
|
626 |
+
#: ../classes/es-register.php:1103
|
627 |
+
msgid "Widget Title"
|
628 |
+
msgstr "Titre du widget"
|
629 |
|
630 |
+
#: ../classes/es-register.php:1107
|
631 |
+
msgid "Short description about subscription form"
|
632 |
+
msgstr "Courte description de votre formulaire d'abonnement"
|
633 |
+
|
634 |
+
#: ../classes/es-register.php:1111
|
635 |
+
msgid "Display Name Field"
|
636 |
+
msgstr "Afficher le champ Nom"
|
637 |
+
|
638 |
+
#: ../classes/es-register.php:1113 ../settings/settings-edit.php:142 ..
|
639 |
+
#: settings/settings-edit.php:217 ../subscribers/view-subscriber-sync.php:107
|
640 |
msgid "YES"
|
641 |
msgstr "OUI"
|
642 |
|
643 |
+
#: ../classes/es-register.php:1114 ../settings/settings-edit.php:143 ..
|
644 |
+
#: settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:106
|
645 |
msgid "NO"
|
646 |
msgstr "NON"
|
647 |
|
648 |
+
#: ../classes/es-register.php:1118
|
649 |
+
msgid "Subscriber Group"
|
650 |
+
msgstr "Groupe d'abonnés"
|
651 |
|
652 |
+
#: ../help/help.php:184
|
653 |
+
msgid "Welcome to Email Subscribers!"
|
654 |
+
msgstr "Bienvenue sur Email Subscribers & Newsletters!"
|
|
|
|
|
|
|
|
|
655 |
|
656 |
+
#: ../help/help.php:191
|
657 |
+
msgid "Get more help and tips..."
|
658 |
+
msgstr "Obtener plus d'aide et d'astuces..."
|
659 |
|
660 |
+
#: ../help/help.php:205
|
661 |
+
#, php-format
|
662 |
+
msgid "Version: %s"
|
663 |
+
msgstr "Version: %s"
|
664 |
|
665 |
+
#: ../help/help.php:208
|
666 |
+
msgid "Questions? Need Help?"
|
667 |
+
msgstr "Des questions? Besoin d'aide?"
|
668 |
|
669 |
+
#: ../help/help.php:209
|
670 |
+
msgid "Contact Us"
|
671 |
+
msgstr "Contactez-nous"
|
672 |
|
673 |
+
#: ../help/help.php:214
|
674 |
+
msgid "donating to us"
|
675 |
+
msgstr "en nous versant une contribution"
|
676 |
|
677 |
+
#: ../help/help.php:249
|
678 |
+
msgid "Description"
|
679 |
+
msgstr "Description"
|
680 |
+
|
681 |
+
#: ../help/help.php:251
|
682 |
msgid ""
|
683 |
+
"Email Subscribers is a complete newsletter plugin which lets you collect "
|
684 |
+
"leads, send automated new blog post notification emails, create & send "
|
685 |
+
"newsletters and manage all this in one single place."
|
686 |
msgstr ""
|
687 |
+
"Email subscribers est une extension complète de newsletter qui vous permet "
|
688 |
+
"de collecter des prospects, d'envoyer automatiquement des courriels de "
|
689 |
+
"notification de nouvel article de blog, de créer et d'envoyer des "
|
690 |
+
"newsletters et de gérer tout cela en un seul endroit."
|
691 |
|
692 |
+
#: ../help/help.php:253
|
693 |
+
msgid "Feature Overview"
|
694 |
+
msgstr "Vue d'ensemble des fonctionnalités"
|
695 |
|
696 |
+
#: ../help/help.php:256
|
697 |
+
msgid ""
|
698 |
+
"Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
|
699 |
+
"Code)."
|
700 |
+
msgstr ""
|
701 |
+
"Collecte des courriels des utilisateurs en ajoutant une boîte d'inscription "
|
702 |
+
"(Widget/Shortcode/Code PHP)."
|
703 |
|
704 |
+
#: ../help/help.php:259
|
705 |
+
msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
|
706 |
+
msgstr "Configuration du type de validation des abonnements."
|
707 |
|
708 |
+
#: ../help/help.php:262
|
709 |
+
msgid "Send automatic welcome email to subscribers."
|
710 |
+
msgstr "Envoi automatique de courriel de bienvenue aux nouveaux abonnés."
|
|
|
|
|
711 |
|
712 |
+
#: ../help/help.php:265
|
713 |
msgid ""
|
714 |
+
"Send new post notification emails to subscribers when new posts are "
|
715 |
+
"published on your website."
|
716 |
msgstr ""
|
717 |
+
"Envoi d'un courriel de notification aux abonnés lorsqu'un nouvel article est "
|
718 |
+
"publié."
|
719 |
|
720 |
+
#: ../help/help.php:268
|
721 |
+
msgid "Schedule email (Cron job) or send them manually."
|
722 |
+
msgstr "Planification des envois (tâche Cron) ou envoi manuel."
|
723 |
|
724 |
+
#: ../help/help.php:271
|
725 |
+
msgid "Send email notification to admin when a new user signs up."
|
726 |
+
msgstr "Envoi de notification à l'administrateur à chaque nouvel abonnement."
|
|
|
|
|
|
|
|
|
727 |
|
728 |
+
#: ../help/help.php:274
|
729 |
+
msgid "Automatically add Unsubscribe link in the email."
|
730 |
+
msgstr "Ajout automatique d'un lien de désabonnement dans les courriels envoyés."
|
731 |
|
732 |
+
#: ../help/help.php:277
|
733 |
+
msgid "Easily migrate subscribers from another app using Import & Export."
|
734 |
+
msgstr "Importation et exportation des abonnés depuis une autre application."
|
|
|
|
|
|
|
|
|
|
|
|
|
735 |
|
736 |
+
#: ../help/help.php:283
|
737 |
+
msgid "Send newsletters to different groups."
|
738 |
+
msgstr "Envoi de newsletters à différents groupes."
|
739 |
|
740 |
+
#: ../help/help.php:286
|
741 |
+
msgid "Get detailed sent email reports."
|
742 |
+
msgstr "Rapport détaillé des envois de courriels."
|
743 |
|
744 |
+
#: ../help/help.php:289
|
745 |
+
msgid "Control user access (User Roles and Capabilities)."
|
746 |
+
msgstr "Contrôle des droits d'accès ( Rôles et capacités )."
|
|
|
|
|
|
|
|
|
|
|
747 |
|
748 |
+
#: ../help/help.php:292
|
749 |
+
msgid "Supports localization and internationalization."
|
750 |
+
msgstr "Support de la localisation et de l'internationalisation."
|
751 |
+
|
752 |
+
#: ../help/help.php:299
|
753 |
+
msgid "Add Subscribe form"
|
754 |
+
msgstr "Ajout d'un formulaire d'abonnement"
|
755 |
+
|
756 |
+
#: ../help/help.php:301 ../help/help.php:312 ../help/help.php:315 ../help/help.
|
757 |
+
#: php:327 ../help/help.php:330 ../help/help.php:333 ../help/help.php:336 ..
|
758 |
+
#: help/help.php:339 ../help/help.php:342 ../help/help.php:354 ../help/help.php:
|
759 |
+
#: 357 ../help/help.php:364 ../help/help.php:367 ../help/help.php:370 ..
|
760 |
+
#: help/help.php:378 ../help/help.php:381 ../help/help.php:384 ../help/help.php:
|
761 |
+
#: 387 ../help/help.php:393 ../help/help.php:396 ../help/help.php:398
|
762 |
+
#, php-format
|
763 |
+
msgid "%s"
|
764 |
+
msgstr "%s"
|
765 |
|
766 |
+
#: ../help/help.php:301
|
767 |
+
msgid "How to Add Subscription box to website?"
|
768 |
+
msgstr "Comment ajouter un formulaire d'abonnement sur votre site?"
|
769 |
|
770 |
+
#: ../help/help.php:304
|
771 |
+
#, php-format
|
772 |
msgid ""
|
773 |
+
"Use any of the following 3 methods :<br>\n"
|
774 |
+
" a) Shortcode in any page/post : <strong>[email-subscribers "
|
775 |
+
"namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
|
776 |
+
" b) Go to Appearance -> Widgets. Click on widget Email subscribers "
|
777 |
+
"and drag it to the sidebar on the right <i>Or</i><br>\n"
|
778 |
+
" c) Copy and past this php code to your desired template location : "
|
779 |
+
"<strong>%s</strong>"
|
780 |
msgstr ""
|
781 |
+
"Utilisez l'une de ces 3 méthides :<br>\n"
|
782 |
+
" a) Shortcode dans un article/une page: <strong>[email-subscribers "
|
783 |
+
"namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>ou</i><br>\n"
|
784 |
+
" b) Allez dans Apparence -> Widgets. Cliquez sur le widget Email "
|
785 |
+
"subscribers et faites le glisser dans un groupe de widgets<i>ou</i><br>\n"
|
786 |
+
" c) Copiez et collez ce code php dans un fichier de votre thème : "
|
787 |
+
"<strong>%s</strong>"
|
788 |
|
789 |
+
#: ../help/help.php:309
|
790 |
+
msgid "Additional form settings"
|
791 |
+
msgstr "Autres options du formulaire"
|
792 |
|
793 |
+
#: ../help/help.php:312
|
794 |
+
msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
|
|
|
|
|
795 |
msgstr ""
|
796 |
+
"Comment rediriger les abonnés vers une nouvelle page/url après une "
|
797 |
+
"inscription réussie?"
|
798 |
|
799 |
+
#: ../help/help.php:315
|
800 |
+
msgid "How to add captcha in Subscribe form of Email Subscribers?"
|
801 |
+
msgstr "Comment ajouter un captcha au formulaire d'abonnement?"
|
802 |
|
803 |
+
#: ../help/help.php:324
|
804 |
+
#, php-format
|
805 |
+
msgid "Modify %s"
|
806 |
+
msgstr "Modifier %s"
|
|
|
807 |
|
808 |
+
#: ../help/help.php:324
|
809 |
+
msgid "default text, email contents"
|
810 |
+
msgstr "les textes affichés, le contenus des courriels"
|
811 |
+
|
812 |
+
#: ../help/help.php:324
|
813 |
+
msgid ""
|
814 |
+
" (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User "
|
815 |
+
"Roles"
|
816 |
msgstr ""
|
817 |
+
" (comme les courriels de confirmation, de bienvenue, de notification à "
|
818 |
+
"l'administrateur), les réglages des tâches Cron et les droits des "
|
819 |
+
"utilisateurs"
|
820 |
|
821 |
+
#: ../help/help.php:330
|
822 |
+
msgid "How to Import or Export Email Addresses?"
|
823 |
+
msgstr "Comment importer ou exporter des adresses e-mail?"
|
824 |
|
825 |
+
#: ../help/help.php:333
|
826 |
+
msgid "How to Add/Update Existing Subscribers Group & Status?"
|
827 |
+
msgstr "Comment ajouter/mettre à jour un groupe d'abonnés?"
|
|
|
|
|
828 |
|
829 |
+
#: ../help/help.php:336
|
830 |
+
msgid "How to change/update/translate any texts from the plugin?"
|
831 |
+
msgstr "Comment changer/mettre à jour/traduire les textes de l'extension?"
|
|
|
|
|
832 |
|
833 |
+
#: ../help/help.php:339
|
834 |
+
msgid "How to add Unsubscribe link in emails?"
|
835 |
+
msgstr "Comment ajouter un lien pour se désabonner dans les courriels envoyés?"
|
|
|
|
|
836 |
|
837 |
+
#: ../help/help.php:367
|
838 |
+
msgid "Keywords in the Post Notifications"
|
839 |
+
msgstr "Mots clés pour les notifications de nouvel article"
|
840 |
|
841 |
+
#: ../help/help.php:370
|
842 |
+
msgid "Send a test post notification email to myself/testgroup"
|
843 |
+
msgstr ""
|
844 |
+
"Envoi d'un courriel test de notification d'article à moi-même ou un groupe "
|
845 |
+
"test"
|
846 |
|
847 |
+
#: ../help/help.php:375
|
848 |
+
msgid "Cron Job Setup"
|
849 |
+
msgstr "Réglage des tâches Cron"
|
850 |
|
851 |
+
#: ../help/help.php:381
|
852 |
+
msgid "Schedule Cron Emails in cPanel"
|
853 |
+
msgstr "Planifier une tâche Cron dans cPanel"
|
854 |
|
855 |
+
#: ../help/help.php:384
|
856 |
+
msgid "Schedule Cron Emails in Parallels Plesk"
|
857 |
+
msgstr "Planifier une tâche Cron dans Plesk"
|
|
|
|
|
858 |
|
859 |
+
#: ../help/help.php:387
|
860 |
+
msgid "Hosting doesn’t support Cron Jobs?"
|
861 |
+
msgstr "Votre hébergeur de gère pas les tâches Cron?"
|
862 |
|
863 |
+
#: ../help/help.php:390
|
864 |
+
msgid "Troubleshooting Steps"
|
865 |
+
msgstr "Étapes de dépannage"
|
866 |
|
867 |
+
#: ../help/help.php:393
|
868 |
+
msgid "Subscribers are not receiving Emails?"
|
869 |
+
msgstr "Les abonnés ne reçoivent pas les courriels ?"
|
870 |
|
871 |
+
#: ../help/help.php:396
|
872 |
+
msgid "CSS Help"
|
873 |
+
msgstr "Aide CSS"
|
874 |
|
875 |
+
#: ../help/help.php:398
|
876 |
+
msgid "FAQ's"
|
877 |
+
msgstr "FAQ"
|
878 |
|
879 |
+
#: ../help/help.php:404
|
880 |
+
msgid "Want to do more? Here's how.."
|
881 |
+
msgstr "Vous voulez en faire plus? Voici comment..."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
882 |
|
883 |
+
#: ../help/help.php:407
|
884 |
+
msgid "Allow Subscribers to get subscribed to any group"
|
885 |
+
msgstr "Autoriser les abonnés à s'inscrire à n'importe quel groupe"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
886 |
|
887 |
+
#: ../help/help.php:413
|
888 |
+
msgid "Group Selector"
|
889 |
+
msgstr "Group Selector"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
890 |
|
891 |
+
#: ../help/help.php:414
|
892 |
msgid ""
|
893 |
+
"plugin, you can extend Email Subscribers Form functionality by providing an "
|
894 |
+
"grouping option right next to the form."
|
|
|
|
|
895 |
msgstr ""
|
896 |
+
", vous pourrez ajouter une option de choix de groupe dans le formulaire "
|
897 |
+
"d'abonnement."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
898 |
|
899 |
+
#: ../help/help.php:417
|
900 |
+
msgid "The user can then subscribe to whichever group most appeals to them."
|
901 |
+
msgstr "L'utilisateur peut alors s'abonner au groupe qui lui convient le mieux."
|
902 |
|
903 |
+
#: ../help/help.php:420
|
904 |
+
msgid "For example: Subscribe either to Updates or to Offers."
|
905 |
+
msgstr "Par exemple: S'abonner aux mises à jour ou aux offres."
|
906 |
|
907 |
+
#: ../help/help.php:424
|
908 |
+
msgid "Show your subscribe form inside attractive popups"
|
909 |
+
msgstr "Afficher votre formulaire d'abonnement dans une popup attractive"
|
910 |
|
911 |
+
#: ../help/help.php:429
|
912 |
+
msgid ""
|
913 |
+
"Don't limit your subscriber form to a widget. Embed it within popups, hello "
|
914 |
+
"bars, slide-ins, sidebars, full screen popups etc."
|
915 |
+
msgstr ""
|
916 |
+
"Ne limiter pas votre formulaire d'inscription à un shortcode. Intégrez-le "
|
917 |
+
"dans une fenêtre pop-up, une barre de bienvenue, vos colonnes latérales, une "
|
918 |
+
"pop-up en plein écran, etc."
|
919 |
|
920 |
+
#. Author of the plugin/theme
|
921 |
+
#: ../help/help.php:433
|
922 |
+
msgid "Icegram"
|
923 |
+
msgstr "Icegram"
|
924 |
|
925 |
+
#: ../help/help.php:436
|
926 |
+
msgid ""
|
927 |
+
"Icegram's beautiful designs instantly capture user attention and help "
|
928 |
+
"increase sign-ups to your WordPress website."
|
929 |
+
msgstr ""
|
930 |
+
"Les magnifiques designs d'Icegram captent instantanément l'attention de "
|
931 |
+
"l'utilisateur et aident à augmenter les inscriptions à votre site WordPress."
|
932 |
|
933 |
+
#: ../help/help.php:439 ../help/help.php:459
|
934 |
+
#, php-format
|
935 |
+
msgid "How to %s"
|
936 |
+
msgstr "Comment %s"
|
937 |
|
938 |
+
#: ../help/help.php:439
|
939 |
+
msgid "show subscribe form inside a popup"
|
940 |
+
msgstr "afficher une formulaire d'abonnement dans une pop-up"
|
941 |
|
942 |
+
#: ../help/help.php:443
|
943 |
+
msgid "Get beautiful and elegant form styles"
|
944 |
+
msgstr "Styler élégamment vos formulaires "
|
945 |
|
946 |
+
#: ../help/help.php:450
|
947 |
+
msgid "Rainmaker"
|
948 |
+
msgstr "Rainmaker"
|
949 |
|
950 |
+
#: ../help/help.php:453
|
951 |
+
msgid ""
|
952 |
+
"Rainmaker extends the core features of Email Subscribers and provides "
|
953 |
+
"elegant form styles."
|
954 |
+
msgstr ""
|
955 |
+
"Rainmaker étend les fonctionnalités principales d'Email Subscribers et "
|
956 |
+
"propose des styles de formulaire élégants."
|
957 |
|
958 |
+
#: ../help/help.php:456
|
959 |
+
msgid ""
|
960 |
+
"These styles are well designed and beautify your subscription form making it "
|
961 |
+
"more appealing."
|
962 |
msgstr ""
|
963 |
+
"Ces styles sont bien conçus et embellissent votre formulaire d'abonnement, "
|
964 |
+
"ce qui le rend plus attrayant."
|
965 |
|
966 |
+
#: ../help/help.php:459
|
967 |
+
msgid "add Rainmaker’s form in Email Subscribers"
|
968 |
+
msgstr "ajouter un formulaire Rainmaker dans Email Subscribers"
|
969 |
|
970 |
+
#: ../job/es-optin.php:58 ../job/es-optin.php:68 ../job/es-unsubscribe.php:54 ..
|
971 |
+
#: job/es-unsubscribe.php:61
|
972 |
+
msgid ""
|
973 |
+
"Oops.. We are getting some technical error. Please try again or contact "
|
974 |
+
"admin."
|
975 |
+
msgstr ""
|
976 |
+
"Oups... Nous avons des erreurs techniques. Veuillez réessayer ou contactez "
|
977 |
+
"l'administrateur du site."
|
978 |
|
979 |
+
#: ../job/es-optin.php:61
|
980 |
+
msgid "This email address has already been confirmed."
|
981 |
+
msgstr "Cette adresse a déjà été confirmée."
|
982 |
|
983 |
+
#: ../notification/notification-add.php:33
|
984 |
+
msgid "Please select subscribers group."
|
985 |
+
msgstr "Veuillez sélectionner un groupe d'abonnés."
|
|
|
|
|
986 |
|
987 |
+
#: ../notification/notification-add.php:39
|
988 |
+
msgid "Please select notification status."
|
989 |
+
msgstr "Veuillez sélectionner le mode d'envoi de la notification"
|
|
|
990 |
|
991 |
+
#: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
|
992 |
+
msgid "Please select post categories."
|
993 |
+
msgstr "Veuillez sélectionner une catégorie."
|
994 |
|
995 |
+
#: ../notification/notification-add.php:71
|
996 |
+
msgid "Notification successfully created. "
|
997 |
+
msgstr "Notification correctement créée."
|
998 |
|
999 |
+
#: ../notification/notification-add.php:112
|
1000 |
+
msgid "Add Notification"
|
1001 |
+
msgstr "Nouvelle notification"
|
1002 |
|
1003 |
+
#: ../notification/notification-add.php:113 ../notification/notification-edit.php:
|
1004 |
+
#: 124 ../notification/notification-show.php:54 ../sendmail/sendmail.php:94 ..
|
1005 |
+
#: sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
|
1006 |
+
#: sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
|
1007 |
+
#: subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
|
1008 |
+
#: php:113 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
|
1009 |
+
#: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
|
1010 |
+
#: subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:32
|
1011 |
+
msgid "Help"
|
1012 |
+
msgstr "Aide"
|
1013 |
|
1014 |
+
#: ../notification/notification-add.php:121
|
1015 |
+
msgid "Select Subscribers Group"
|
1016 |
+
msgstr "Groupe d'abonnés"
|
1017 |
|
1018 |
+
#: ../notification/notification-add.php:125 ../notification/notification-add.php:
|
1019 |
+
#: 149 ../notification/notification-edit.php:136 ../notification/notification-
|
1020 |
+
#: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
|
1021 |
+
#: sendmail/sendmail.php:152 ../subscribers/view-subscriber-add.php:166 ..
|
1022 |
+
#: subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
|
1023 |
+
#: import.php:193 ../subscribers/view-subscriber-sync.php:119
|
1024 |
+
msgid "Select"
|
1025 |
+
msgstr "Sélectionner"
|
1026 |
|
1027 |
+
#: ../notification/notification-add.php:143 ../notification/notification-edit.php:
|
1028 |
+
#: 163
|
1029 |
+
msgid "Select Notification Email Subject"
|
1030 |
+
msgstr "Sélectionner le sujet du courriel"
|
1031 |
|
1032 |
+
#: ../notification/notification-add.php:168 ../notification/notification-edit.php:
|
1033 |
+
#: 191
|
1034 |
+
msgid "Select Post Categories"
|
1035 |
+
msgstr "Catégories"
|
1036 |
|
1037 |
+
#: ../notification/notification-add.php:196 ../notification/notification-edit.php:
|
1038 |
+
#: 226
|
1039 |
+
msgid "Check All"
|
1040 |
+
msgstr "Sélectionner tout"
|
|
|
1041 |
|
1042 |
+
#: ../notification/notification-add.php:197 ../notification/notification-edit.php:
|
1043 |
+
#: 227
|
1044 |
+
msgid "Uncheck All"
|
1045 |
+
msgstr "Désélectionner tout"
|
1046 |
|
1047 |
+
#: ../notification/notification-add.php:203 ../notification/notification-edit.php:
|
1048 |
+
#: 234
|
1049 |
+
msgid "Select your Custom Post Type"
|
1050 |
+
msgstr "Type de contenu"
|
1051 |
|
1052 |
+
#: ../notification/notification-add.php:204 ../notification/notification-edit.php:
|
1053 |
+
#: 235
|
1054 |
+
msgid "(Optional)"
|
1055 |
+
msgstr "(Optionnel)"
|
1056 |
|
1057 |
+
#: ../notification/notification-add.php:233 ../notification/notification-edit.php:
|
1058 |
+
#: 269
|
1059 |
+
msgid "No Custom Post Types Available"
|
1060 |
+
msgstr "Aucun type de contenu personnalisé n'est disponible"
|
1061 |
|
1062 |
+
#: ../notification/notification-add.php:240 ../notification/notification-edit.php:
|
1063 |
+
#: 276
|
1064 |
+
msgid "Select Notification Status when a new post is published"
|
1065 |
+
msgstr "Sélectionner le type d'envoi lorsqu'un nouvel article est publié"
|
|
|
|
|
|
|
1066 |
|
1067 |
+
#: ../notification/notification-add.php:244 ../notification/notification-edit.php:
|
1068 |
+
#: 280 ../notification/notification-show.php:130 ../sendmail/sendmail.php:139
|
1069 |
+
msgid "Send email immediately"
|
1070 |
+
msgstr "Envoyer les courriels immédiatement"
|
1071 |
|
1072 |
+
#: ../notification/notification-add.php:245 ../notification/notification-edit.php:
|
1073 |
+
#: 281 ../notification/notification-show.php:132
|
1074 |
+
msgid "Add to cron and send email via cron job"
|
1075 |
+
msgstr "Ajouter à la file d'attente et envoyer via la tâche CRON"
|
1076 |
|
1077 |
+
#: ../notification/notification-add.php:246 ../notification/notification-edit.php:
|
1078 |
+
#: 282
|
1079 |
+
msgid "Disable email notification"
|
1080 |
+
msgstr "Ne pas envoyer"
|
1081 |
|
1082 |
+
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
1083 |
+
#: 291 ../subscribers/view-subscriber-edit.php:191
|
1084 |
+
msgid "Save"
|
1085 |
+
msgstr "Enregistrer"
|
1086 |
|
1087 |
+
#: ../notification/notification-edit.php:20 ../notification/notification-show.php:
|
1088 |
+
#: 21 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
|
1089 |
+
#: subscribers/view-subscriber-edit.php:22
|
1090 |
+
msgid "Oops, selected details does not exists."
|
1091 |
+
msgstr "Oups, ces données n'existent pas."
|
1092 |
|
1093 |
+
#: ../notification/notification-edit.php:49
|
1094 |
+
msgid "Please select subscribers group"
|
1095 |
+
msgstr "Veuillez sélectionner le groupe d'abonnés"
|
1096 |
|
1097 |
+
#: ../notification/notification-edit.php:55
|
1098 |
+
msgid "Please select notification status"
|
1099 |
+
msgstr "Veuillez sélectionner le mode d'envoi"
|
1100 |
|
1101 |
+
#: ../notification/notification-edit.php:89
|
1102 |
+
msgid "Notification successfully updated. "
|
1103 |
+
msgstr "Mise à jour de la notification réussie. "
|
|
|
|
|
|
|
1104 |
|
1105 |
+
#: ../notification/notification-edit.php:122
|
1106 |
+
msgid "Edit Notification"
|
1107 |
+
msgstr "Modifier la notification"
|
|
|
|
|
1108 |
|
1109 |
+
#: ../notification/notification-edit.php:123 ../notification/notification-show.
|
1110 |
+
#: php:53
|
1111 |
+
msgid "Add New"
|
1112 |
+
msgstr "Ajouter"
|
|
|
|
|
1113 |
|
1114 |
+
#: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
|
1115 |
+
#: php:303
|
1116 |
+
msgid "Update Subscribers Group"
|
1117 |
+
msgstr "Mettre à jour le groupe"
|
1118 |
|
1119 |
+
#: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
|
1120 |
+
msgid "Selected record deleted."
|
1121 |
+
msgstr "La sélection a été supprimée."
|
1122 |
|
1123 |
+
#: ../notification/notification-show.php:57
|
1124 |
+
msgid ""
|
1125 |
+
"Use this to setup and send notification emails to your subscribers when a "
|
1126 |
+
"new post is published in your blog."
|
1127 |
+
msgstr ""
|
1128 |
+
"Permet de configurer et envoyer des notifications aux abonnés lorsque de "
|
1129 |
+
"nouveaux articles sont publiés."
|
1130 |
|
1131 |
+
#: ../notification/notification-show.php:68 ../notification/notification-show.php:
|
1132 |
+
#: 76
|
1133 |
+
msgid "Email Subject"
|
1134 |
+
msgstr "Sujet"
|
1135 |
|
1136 |
+
#: ../notification/notification-show.php:69 ../notification/notification-show.php:
|
1137 |
+
#: 77
|
1138 |
+
msgid "Subscribers Group"
|
1139 |
+
msgstr "Groupe d'abonnés"
|
|
|
1140 |
|
1141 |
+
#: ../notification/notification-show.php:70 ../notification/notification-show.php:
|
1142 |
+
#: 78
|
1143 |
+
msgid "Post Categories / Custom Post Types"
|
1144 |
+
msgstr "Catégories / Types de contenu"
|
|
|
1145 |
|
1146 |
+
#: ../notification/notification-show.php:71 ../notification/notification-show.php:
|
1147 |
+
#: 79
|
1148 |
+
msgid "Notification Status"
|
1149 |
+
msgstr "Mode d'envoi"
|
|
|
1150 |
|
1151 |
+
#: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
|
1152 |
+
#: php:417 ../templates/template-preview.php:35
|
1153 |
+
msgid "Edit"
|
1154 |
+
msgstr "Modifier"
|
1155 |
|
1156 |
+
#: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
|
1157 |
+
#: php:301 ../subscribers/view-subscriber-show.php:422
|
1158 |
+
msgid "Delete"
|
1159 |
+
msgstr "Supprimer"
|
1160 |
|
1161 |
+
#: ../notification/notification-show.php:143 ../sentmail/deliverreport-show.php:
|
1162 |
+
#: 128 ../sentmail/sentmail-show.php:180 ../subscribers/view-subscriber-show.php:
|
1163 |
+
#: 456
|
1164 |
+
msgid "No records available."
|
1165 |
+
msgstr "Aucun enregistrement."
|
|
|
1166 |
|
1167 |
+
#: ../sendmail/sendmail.php:18 ../subscribers/view-subscriber-show.php:17
|
1168 |
msgid "Click Here"
|
1169 |
msgstr "Cliquez ici"
|
1170 |
|
1171 |
+
#: ../sendmail/sendmail.php:40
|
1172 |
+
msgid "Please select your mail subject."
|
1173 |
+
msgstr "Veuillez choisir le sujet de votre courriel."
|
1174 |
|
1175 |
+
#: ../sendmail/sendmail.php:46
|
1176 |
+
msgid "Please select your mail type."
|
1177 |
+
msgstr "Veuillez sélectionner le type de courriel."
|
|
|
1178 |
|
1179 |
+
#: ../sendmail/sendmail.php:52
|
1180 |
+
msgid "Please select your group."
|
1181 |
+
msgstr "Veuillez sélectionner le groupe."
|
1182 |
|
1183 |
+
#: ../sendmail/sendmail.php:59
|
1184 |
+
msgid "Email sent successfully. "
|
1185 |
+
msgstr "Courriel envoyé. "
|
|
|
|
|
1186 |
|
1187 |
+
#: ../sendmail/sendmail.php:63
|
1188 |
+
msgid "Click here to check Statistics"
|
1189 |
+
msgstr "Cliquez ici pour voir les statistiques"
|
1190 |
|
1191 |
+
#: ../sendmail/sendmail.php:69
|
1192 |
+
msgid "Oops.. We are getting some error. mail not sending."
|
1193 |
+
msgstr "Oups... Problème détecté. Le courriel n'a pas été envoyé."
|
1194 |
|
1195 |
+
#: ../sendmail/sendmail.php:97
|
1196 |
+
msgid "Use this to send newsletter emails to your subscribers."
|
1197 |
+
msgstr "A utiliser pour envoyer des courriels à vos abonnés."
|
1198 |
|
1199 |
+
#: ../sendmail/sendmail.php:106
|
1200 |
+
msgid "Select Email Subject from available list"
|
1201 |
+
msgstr "Sélectionnez le sujet du courriel dans la liste"
|
1202 |
|
1203 |
+
#: ../sendmail/sendmail.php:133
|
1204 |
+
msgid "Select Email Type"
|
1205 |
+
msgstr "Type d'envoi"
|
1206 |
|
1207 |
+
#: ../sendmail/sendmail.php:140
|
1208 |
+
msgid "Send email via cron job"
|
1209 |
+
msgstr "Envoyer les courriels via la tâche CRON"
|
|
|
1210 |
|
1211 |
+
#: ../sendmail/sendmail.php:147
|
1212 |
+
msgid "Select Subscribers group to Send Email"
|
1213 |
+
msgstr "Groupe d'abonnés"
|
|
|
1214 |
|
1215 |
+
#: ../sendmail/sendmail.php:179
|
1216 |
+
msgid "Recipients : 0 "
|
1217 |
+
msgstr "Destinataires : 0 "
|
1218 |
|
1219 |
+
#: ../sendmail/sendmail.php:181
|
1220 |
+
#, php-format
|
1221 |
+
msgid "Recipients : %s"
|
1222 |
+
msgstr "Destinataires : %s"
|
1223 |
|
1224 |
+
#: ../sendmail/sendmail.php:184
|
1225 |
+
msgid ""
|
1226 |
+
"<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
|
1227 |
+
"that you change above Mail Type to Cron and Send Mail via Cron Job."
|
1228 |
+
"</strong><br>Click on Help for more information."
|
1229 |
+
msgstr ""
|
1230 |
+
"<br><br><strong>Il ya plus de 100 destinataires.<br>Nous vous recommandons "
|
1231 |
+
"de modifier le mode d'envoi et d'utiliser la tâche CRON pour envoyer les "
|
1232 |
+
"courriels.</strong><br>Cliquez sur l'aide pour plus d'information."
|
1233 |
|
1234 |
+
#: ../sendmail/sendmail.php:196 ../sendmail/sendmail.php:198
|
1235 |
+
msgid "Send Email"
|
1236 |
+
msgstr "Envoyer"
|
1237 |
|
1238 |
+
#: ../sendmail/sendmail.php:201
|
1239 |
+
msgid "Reset"
|
1240 |
+
msgstr "Réinitialiser"
|
1241 |
|
1242 |
+
#: ../sentmail/deliverreport-show.php:14
|
1243 |
+
msgid "Oops.. Unexpected error occurred. Please try again."
|
1244 |
+
msgstr "Oups... Erreur inattendue. Merci de réessayer."
|
|
|
1245 |
|
1246 |
+
#: ../sentmail/deliverreport-show.php:47 ../sentmail/sentmail-show.php:83
|
1247 |
+
msgid " << "
|
1248 |
+
msgstr " << "
|
1249 |
|
1250 |
+
#: ../sentmail/deliverreport-show.php:48 ../sentmail/sentmail-show.php:84
|
1251 |
+
msgid " >> "
|
1252 |
+
msgstr " >> "
|
1253 |
|
1254 |
+
#: ../sentmail/deliverreport-show.php:60
|
1255 |
+
msgid "Delivery Report"
|
1256 |
+
msgstr "Rapport d'envoi"
|
1257 |
|
1258 |
+
#: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
|
1259 |
+
#: subscribers/view-subscriber-export.php:58 ../subscribers/view-subscriber-
|
1260 |
+
#: export.php:66
|
1261 |
+
msgid "Sno"
|
1262 |
+
msgstr "n°"
|
1263 |
|
1264 |
+
#: ../sentmail/deliverreport-show.php:73 ../sentmail/deliverreport-show.php:84
|
1265 |
+
msgid "Email"
|
1266 |
+
msgstr "E-mail"
|
1267 |
|
1268 |
+
#: ../sentmail/deliverreport-show.php:74 ../sentmail/deliverreport-show.php:85 ..
|
1269 |
+
#: sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
|
1270 |
+
#: subscribers/view-subscriber-show.php:290
|
1271 |
+
msgid "Status"
|
1272 |
+
msgstr "Statut"
|
1273 |
|
1274 |
+
#: ../sentmail/deliverreport-show.php:75 ../sentmail/deliverreport-show.php:86 ..
|
1275 |
+
#: sentmail/sentmail-show.php:111 ../sentmail/sentmail-show.php:124
|
1276 |
+
msgid "Sent"
|
1277 |
+
msgstr "Type d'envoi"
|
1278 |
|
1279 |
+
#: ../sentmail/deliverreport-show.php:76 ../sentmail/deliverreport-show.php:87
|
1280 |
+
msgid "Sent Date"
|
1281 |
+
msgstr "Envoyé le"
|
1282 |
|
1283 |
+
#: ../sentmail/deliverreport-show.php:77 ../sentmail/deliverreport-show.php:88
|
1284 |
+
msgid "Viewed Status"
|
1285 |
+
msgstr "Statut"
|
1286 |
|
1287 |
+
#: ../sentmail/deliverreport-show.php:78 ../sentmail/deliverreport-show.php:89
|
1288 |
+
msgid "Viewed Date"
|
1289 |
+
msgstr "Ouvert le"
|
1290 |
|
1291 |
+
#: ../sentmail/sentmail-preview.php:53
|
1292 |
+
msgid "Back"
|
1293 |
+
msgstr "Retour"
|
1294 |
|
1295 |
+
#: ../sentmail/sentmail-show.php:43
|
1296 |
+
msgid "Successfully deleted all reports except latest 10."
|
1297 |
+
msgstr "Les rapports ont été supprimés sauf les 10 derniers."
|
1298 |
|
1299 |
+
#: ../sentmail/sentmail-show.php:97
|
1300 |
+
msgid "It will show reports for all Newsletters & Post Notification emails sent."
|
1301 |
+
msgstr ""
|
1302 |
+
"Affiche les rapports pour toutes les newsletters et les courriels de "
|
1303 |
+
"notification envoyés."
|
1304 |
|
1305 |
+
#: ../sentmail/sentmail-show.php:107 ../sentmail/sentmail-show.php:120
|
1306 |
+
msgid "View Reports"
|
1307 |
+
msgstr "Afficher les rapports"
|
1308 |
|
1309 |
+
#: ../sentmail/sentmail-show.php:109 ../sentmail/sentmail-show.php:122
|
1310 |
+
msgid "Type"
|
1311 |
+
msgstr "Type"
|
1312 |
|
1313 |
+
#: ../sentmail/sentmail-show.php:112 ../sentmail/sentmail-show.php:125
|
1314 |
+
msgid "Start Date"
|
1315 |
+
msgstr "Date de début"
|
|
|
1316 |
|
1317 |
+
#: ../sentmail/sentmail-show.php:113 ../sentmail/sentmail-show.php:126
|
1318 |
+
msgid "End Date"
|
1319 |
+
msgstr "Date de fin"
|
|
|
1320 |
|
1321 |
+
#: ../sentmail/sentmail-show.php:114 ../sentmail/sentmail-show.php:127
|
1322 |
+
msgid "Total"
|
1323 |
+
msgstr "Total"
|
1324 |
|
1325 |
+
#: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
|
1326 |
+
#: subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
|
1327 |
+
#: export.php:69 ../subscribers/view-subscriber-show.php:293
|
1328 |
+
msgid "Action"
|
1329 |
+
msgstr "Action"
|
1330 |
|
1331 |
+
#: ../sentmail/sentmail-show.php:190
|
1332 |
+
msgid "Optimize Table & Delete Records"
|
1333 |
+
msgstr "Optimiser la table"
|
|
|
|
|
1334 |
|
1335 |
+
#: ../sentmail/sentmail-show.php:199
|
1336 |
+
msgid ""
|
1337 |
+
"Note: Please click on <strong>Optimize Table & Delete Records</strong> "
|
1338 |
+
"button to delete all reports except latest 10."
|
1339 |
+
msgstr ""
|
1340 |
+
"Note: cliquez sur le bouton <strong>Optimiser la table</strong> pour "
|
1341 |
+
"supprimer tous les enregistrements sauf les 10 derniers."
|
1342 |
|
1343 |
+
#: ../settings/setting-sync.php:16
|
1344 |
+
msgid "Table sync completed successfully."
|
1345 |
+
msgstr "Synchronisation de la table effectuée."
|
1346 |
|
1347 |
+
#: ../settings/setting-sync.php:29
|
1348 |
+
msgid "Sync plugin tables"
|
1349 |
+
msgstr "Synchronisation des tables"
|
1350 |
|
1351 |
+
#: ../settings/setting-sync.php:33
|
1352 |
+
msgid "Click to sync tables"
|
1353 |
+
msgstr "Cliquez pour synchroniser les tables"
|
1354 |
|
1355 |
+
#: ../settings/settings-edit.php:23
|
1356 |
+
msgid "Admin"
|
1357 |
+
msgstr "Administration"
|
1358 |
|
1359 |
+
#: ../settings/settings-edit.php:24
|
1360 |
+
msgid "Signup Confirmation"
|
1361 |
+
msgstr "Confirmation d'abonnement"
|
1362 |
|
1363 |
+
#: ../settings/settings-edit.php:25
|
1364 |
+
msgid "Cron"
|
1365 |
+
msgstr "Tâche CRON"
|
1366 |
|
1367 |
+
#: ../settings/settings-edit.php:26
|
1368 |
+
msgid "User Roles"
|
1369 |
+
msgstr "Rôles utilisateur"
|
1370 |
|
1371 |
+
#: ../settings/settings-edit.php:67
|
1372 |
+
msgid "Save Settings"
|
1373 |
+
msgstr "Enregistrer les paramètres"
|
|
|
1374 |
|
1375 |
+
#: ../settings/settings-edit.php:78
|
1376 |
+
msgid "Sender of Notifications"
|
1377 |
+
msgstr "Expéditeur des courriels"
|
1378 |
|
1379 |
+
#: ../settings/settings-edit.php:79
|
1380 |
msgid ""
|
1381 |
+
"Choose a FROM name and FROM email address for all the emails to be sent from "
|
1382 |
+
"this plugin."
|
1383 |
msgstr ""
|
1384 |
+
"Choisissez le nom et l'e-mail de l'expéditeur pour tous les courriels "
|
1385 |
+
"envoyés via cette extension."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1386 |
|
1387 |
+
#: ../settings/settings-edit.php:89
|
1388 |
+
msgid "Email Type"
|
1389 |
+
msgstr "Type d'email"
|
1390 |
|
1391 |
+
#: ../settings/settings-edit.php:90
|
1392 |
+
msgid ""
|
1393 |
+
"Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
|
1394 |
+
"Option 3 & 4 is to send emails with PHP method mail()."
|
1395 |
+
msgstr ""
|
1396 |
+
"Les options 1 et 2 envoient les e-mails par la fonction de WordPress "
|
1397 |
+
"wp_mail(). Les options 3 et 4 envoient les e-mails avec la fonction PHP "
|
1398 |
+
"mail()."
|
1399 |
|
1400 |
+
#: ../settings/settings-edit.php:94
|
1401 |
+
msgid "1. WP HTML MAIL"
|
1402 |
+
msgstr "1. WP HTML MAIL"
|
1403 |
|
1404 |
+
#: ../settings/settings-edit.php:95
|
1405 |
+
msgid "2. WP PLAINTEXT MAIL"
|
1406 |
+
msgstr "2. WP PLAINTEXT MAIL"
|
1407 |
|
1408 |
+
#: ../settings/settings-edit.php:96
|
1409 |
+
msgid "3. PHP HTML MAIL"
|
1410 |
+
msgstr "3. PHP HTML MAIL"
|
1411 |
|
1412 |
+
#: ../settings/settings-edit.php:97
|
1413 |
+
msgid "4. PHP PLAINTEXT MAIL"
|
1414 |
+
msgstr "4. PHP PLAINTEXT MAIL"
|
1415 |
|
1416 |
+
#: ../settings/settings-edit.php:104
|
1417 |
+
msgid "Opt-In Type"
|
1418 |
+
msgstr "Type de validation"
|
1419 |
|
1420 |
+
#: ../settings/settings-edit.php:105
|
1421 |
+
msgid ""
|
1422 |
+
"Double Opt-In : In this type, the subscriber is sent an activation link as "
|
1423 |
+
"soon as they subscribe to your list. They have to confirm their subscription "
|
1424 |
+
"by clicking on the activation link.<br />Single Opt-In : In this type, the "
|
1425 |
+
"subscriber is not asked to confirm their email address. They are subscribed "
|
1426 |
+
"directly in the list."
|
1427 |
+
msgstr ""
|
1428 |
+
"Double validation : l'utilisateur reçoit un lien d'activation par e-mail "
|
1429 |
+
"lorsqu'il s'abonne. Il doit cliquer sur ce lien pour confirmer son "
|
1430 |
+
"abonnement.<br />Simple validation : l'utilisateur n'a pas à confirmer son "
|
1431 |
+
"adresse e-mail. Il est directement inscrit dans la liste d'abonnés."
|
1432 |
|
1433 |
+
#: ../settings/settings-edit.php:109
|
1434 |
+
msgid "Double Opt In"
|
1435 |
+
msgstr "Doube validation"
|
1436 |
|
1437 |
+
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-add.php:155 ..
|
1438 |
+
#: subscribers/view-subscriber-edit.php:150 ../subscribers/view-subscriber-
|
1439 |
+
#: import.php:181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-
|
1440 |
+
#: subscriber-show.php:356
|
1441 |
+
msgid "Single Opt In"
|
1442 |
+
msgstr "Simple validation"
|
1443 |
|
1444 |
+
#: ../settings/settings-edit.php:116
|
1445 |
+
msgid "Image Size"
|
1446 |
+
msgstr "Taille d'image"
|
1447 |
|
1448 |
+
#: ../settings/settings-edit.php:121
|
1449 |
+
msgid "Full Size"
|
1450 |
+
msgstr "Grande taille"
|
1451 |
|
1452 |
+
#: ../settings/settings-edit.php:122
|
1453 |
+
msgid "Medium Size"
|
1454 |
+
msgstr "Taille moyenne"
|
1455 |
|
1456 |
+
#: ../settings/settings-edit.php:129
|
1457 |
+
msgid "Admin Email Addresses"
|
1458 |
+
msgstr "Adresses e-mail des administrateurs"
|
1459 |
|
1460 |
+
#: ../settings/settings-edit.php:130
|
1461 |
+
msgid ""
|
1462 |
+
"Enter the admin email addresses that should receive notifications (separated "
|
1463 |
+
"by comma)."
|
1464 |
msgstr ""
|
1465 |
+
"Entrer les adresses des administrateurs qui recevront les notifications "
|
1466 |
+
"(séparés par une virgule)."
|
|
|
|
|
|
|
|
|
1467 |
|
1468 |
+
#: ../settings/settings-edit.php:136
|
1469 |
+
msgid "Notify Admin when a new subscriber signs up"
|
1470 |
+
msgstr "Informer l'administrateur lorsqu'un abonné s'inscrit"
|
1471 |
|
1472 |
+
#: ../settings/settings-edit.php:137
|
1473 |
+
msgid ""
|
1474 |
+
"To send admin email notifications for the new subscriber. This option must "
|
1475 |
+
"be set to YES."
|
1476 |
+
msgstr ""
|
1477 |
+
"Pour envoyer une notification aux administrateurs lors d'une nouvelle "
|
1478 |
+
"inscription, cette option doit être sur OUI."
|
1479 |
|
1480 |
+
#: ../settings/settings-edit.php:149
|
1481 |
+
msgid "Admin Email Subject on new subscriber sign up"
|
1482 |
+
msgstr "Sujet de l'email à l'administrateur pour un nouvel abonné"
|
1483 |
|
1484 |
+
#: ../settings/settings-edit.php:150
|
|
|
1485 |
msgid ""
|
1486 |
+
"Subject for the admin email whenever a new subscriber signs up and is "
|
1487 |
+
"confirmed."
|
1488 |
msgstr ""
|
1489 |
+
"C'est le sujet de l'e-mail envoyé à l'administrateur lorsqu'un abonné "
|
1490 |
+
"s'inscrit et confirme son abonnement."
|
1491 |
|
1492 |
+
#: ../settings/settings-edit.php:156
|
1493 |
+
msgid "Admin Email Content on new subscriber signs up"
|
1494 |
+
msgstr "Contenu de l'email à l'administrateur pour un nouvel abonné"
|
1495 |
|
1496 |
+
#: ../settings/settings-edit.php:164
|
1497 |
+
msgid "Sent Report Subject"
|
1498 |
+
msgstr "Sujet pour le rapport d'envoi"
|
1499 |
|
1500 |
+
#: ../settings/settings-edit.php:165
|
1501 |
+
msgid "Subject for the email report which will be sent to admin."
|
1502 |
+
msgstr "C'est le sujet de l'e-mail de rapport d'envoi envoyé à l'administrateur."
|
1503 |
|
1504 |
+
#: ../settings/settings-edit.php:171
|
1505 |
+
msgid "Sent Report Content"
|
1506 |
+
msgstr "Contenu du rapport d'envoi"
|
|
|
1507 |
|
1508 |
+
#: ../settings/settings-edit.php:183
|
1509 |
+
msgid "Double Opt-In Email Subject (Confirmation Email)"
|
1510 |
+
msgstr "Sujet de l'e-mail de confirmation d'abonnement"
|
|
|
1511 |
|
1512 |
+
#: ../settings/settings-edit.php:184
|
1513 |
+
msgid ""
|
1514 |
+
"Subject for the confirmation email to be sent for Double Opt-In whenever a "
|
1515 |
+
"subscriber signs up."
|
1516 |
+
msgstr ""
|
1517 |
+
"C'est le sujet de l'e-mail de confirmation d'abonnement envoyé à "
|
1518 |
+
"l'utilisateur lorsqu'il s'inscrit si l'option double validation est active."
|
1519 |
|
1520 |
+
#: ../settings/settings-edit.php:190
|
1521 |
+
msgid "Double Opt-In Email Content (Confirmation Email)"
|
1522 |
+
msgstr "Contenu de l'e-mail de confirmation d'abonnement"
|
1523 |
|
1524 |
+
#: ../settings/settings-edit.php:197
|
1525 |
+
msgid "Double Opt-In Confirmation Link"
|
1526 |
+
msgstr "Lien de confirmation"
|
1527 |
|
1528 |
+
#: ../settings/settings-edit.php:198
|
1529 |
+
msgid "It is a readonly field and you are advised not to modify it."
|
1530 |
+
msgstr "C'est un champ en lecture seule et il est conseillé de ne pas le modifier."
|
1531 |
|
1532 |
+
#: ../settings/settings-edit.php:204
|
1533 |
msgid ""
|
1534 |
+
"Text to display after an email address is successfully subscribed from "
|
1535 |
+
"Double Opt-In (Confirmation) Email"
|
1536 |
+
msgstr "Texte affiché après confirmation"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1537 |
|
1538 |
+
#: ../settings/settings-edit.php:205
|
1539 |
msgid ""
|
1540 |
+
"This text will be displayed once user clicks on email confirmation link from "
|
1541 |
+
"the Double Opt In (confirmation) Email."
|
1542 |
msgstr ""
|
1543 |
+
"Ce texte sera affiché lorsque l'utilisateur clique sur le lien de "
|
1544 |
+
"confirmation dans le courriel de confirmation."
|
|
|
|
|
|
|
|
|
1545 |
|
1546 |
+
#: ../settings/settings-edit.php:212
|
1547 |
+
msgid "Send Welcome Email to New Subscribers after Sign Up?"
|
1548 |
+
msgstr "Envoyer un e-mail de bienvenue aux nouveaux abonnés après leur inscription?"
|
1549 |
|
1550 |
+
#: ../settings/settings-edit.php:213
|
1551 |
msgid ""
|
1552 |
+
"To send welcome email to subscriber after successful signup. This option "
|
1553 |
+
"must be set to YES."
|
1554 |
msgstr ""
|
1555 |
+
"Pour envoyer un courriel de bienvenue suite à une inscription réussie, cette "
|
1556 |
+
"option doit être sur OUI."
|
1557 |
|
1558 |
+
#: ../settings/settings-edit.php:224
|
1559 |
+
msgid "Subject for Welcome Email"
|
1560 |
+
msgstr "Sujet de l'e-mail de bienvenue"
|
1561 |
|
1562 |
+
#: ../settings/settings-edit.php:225
|
1563 |
+
msgid ""
|
1564 |
+
"Subject for the subscriber welcome email. This will be sent whenever a "
|
1565 |
+
"user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
|
1566 |
+
"Opt-In) successfully."
|
1567 |
+
msgstr ""
|
1568 |
+
"C'est le sujet de l'e-mail de bienvenue. Cet e-mail sera envoyé à "
|
1569 |
+
"l'utilisateur lorsqu'il confirme son abonnement (double validation) ou "
|
1570 |
+
"lorsqu'il s'inscrit (simple validation)."
|
1571 |
|
1572 |
+
#: ../settings/settings-edit.php:231
|
1573 |
+
msgid "Email Content for Welcome Email"
|
1574 |
+
msgstr "Contenu de l'e-mail de bienvenue"
|
1575 |
|
1576 |
+
#: ../settings/settings-edit.php:240
|
1577 |
+
msgid "Unsubscribe Link"
|
1578 |
+
msgstr "Lien de désabonnement"
|
1579 |
|
1580 |
+
#: ../settings/settings-edit.php:241
|
1581 |
+
msgid ""
|
1582 |
+
"This unsubscribe link is automatically added to all the emails that are sent "
|
1583 |
+
"from this plugin. It is a readonly field and you are advised not to modify "
|
1584 |
+
"it."
|
1585 |
+
msgstr ""
|
1586 |
+
"Ce lien de désabonnement est automatiquement ajouté dans les e-mails envoyés "
|
1587 |
+
"par cette extension. C'est un champ non modifiable."
|
1588 |
|
1589 |
+
#: ../settings/settings-edit.php:247
|
1590 |
+
msgid "Unsubscribe Text in Email"
|
1591 |
+
msgstr "Texte de désabonnement dans les courriels"
|
1592 |
|
1593 |
+
#: ../settings/settings-edit.php:254
|
1594 |
+
msgid "Text to display after an email address is unsubscribed"
|
1595 |
+
msgstr "Texte à afficher lors d'un désabonnement"
|
1596 |
|
1597 |
+
#: ../settings/settings-edit.php:255
|
1598 |
+
msgid ""
|
1599 |
+
"This text will be displayed once user clicks on unsubscribe link from the "
|
1600 |
+
"email."
|
1601 |
+
msgstr ""
|
1602 |
+
"Ce teste est affiché lorsqu'un abonné clique sur le lien de désabonnement "
|
1603 |
+
"dans un e-mail qu'il a reçu."
|
1604 |
|
1605 |
+
#: ../settings/settings-edit.php:262
|
1606 |
+
msgid "Error in the Subscribe / Confirmation Link"
|
1607 |
+
msgstr "Erreur sur lien de confirmation"
|
1608 |
|
1609 |
+
#: ../settings/settings-edit.php:263
|
1610 |
+
msgid ""
|
1611 |
+
"Default message to display if there is any issue while clicking on subscribe "
|
1612 |
+
"/ confirmation link from the Double Opt-In (Confirmation) emails."
|
1613 |
+
msgstr ""
|
1614 |
+
"Message à afficher si une erreur se produit lors de la confirmation "
|
1615 |
+
"d'abonnement."
|
|
|
|
|
1616 |
|
1617 |
+
#: ../settings/settings-edit.php:269
|
1618 |
+
msgid "Error in the Unsubscribe Link"
|
1619 |
+
msgstr "Erreur sur le lien de désabonnement"
|
1620 |
|
1621 |
+
#: ../settings/settings-edit.php:270
|
|
|
1622 |
msgid ""
|
1623 |
+
"Default message to display if there is any issue while clicking on "
|
1624 |
+
"unsubscribe link from the emails."
|
1625 |
+
msgstr "Message à afficher si une erreur se produit lors d'un désabonnement."
|
1626 |
+
|
1627 |
+
#: ../settings/settings-edit.php:282
|
1628 |
+
msgid "Select user roles who can access following menus. Only Admin can change this."
|
|
|
1629 |
msgstr ""
|
1630 |
+
"Sélectionnez à partir de quel rôle les menus sont accessibles. Seuls les "
|
1631 |
+
"administrateurs peuvent changer cette option."
|
|
|
|
|
|
|
|
|
|
|
1632 |
|
1633 |
+
#: ../settings/settings-edit.php:288
|
1634 |
+
msgid "Subscribers Menu"
|
1635 |
+
msgstr "Menu Abonnés"
|
1636 |
|
1637 |
+
#: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
|
1638 |
+
#: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
|
1639 |
+
#: settings/settings-edit.php:340
|
1640 |
+
msgid "Administrator Only"
|
1641 |
+
msgstr "Que les administrateurs"
|
1642 |
|
1643 |
+
#: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
|
1644 |
+
#: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
|
1645 |
+
#: settings/settings-edit.php:341
|
1646 |
+
msgid "Administrator/Editor"
|
1647 |
+
msgstr "Administrateur/Editeur"
|
1648 |
+
|
1649 |
+
#: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
|
1650 |
+
#: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
|
1651 |
+
#: settings/settings-edit.php:342
|
1652 |
+
msgid "Administrator/Editor/Author/Contributor"
|
1653 |
+
msgstr "Administrateur/Editeur/Auteur/Contributeur"
|
1654 |
+
|
1655 |
+
#: ../settings/settings-edit.php:312
|
1656 |
+
msgid "Post Notifications Menu"
|
1657 |
+
msgstr "Menu Notifications d'article"
|
1658 |
|
1659 |
+
#: ../settings/settings-edit.php:336
|
1660 |
+
msgid "Reports Menu"
|
1661 |
+
msgstr "Menu Rapports"
|
|
|
1662 |
|
1663 |
+
#: ../settings/settings-edit.php:353
|
1664 |
+
msgid "Cron job URL"
|
1665 |
+
msgstr "URL de la tâche CRON"
|
1666 |
|
1667 |
+
#: ../settings/settings-edit.php:354
|
1668 |
msgid ""
|
1669 |
+
"This is your Cron Job URL. It is a readonly field and you are advised not to "
|
1670 |
+
"modify it."
|
1671 |
+
msgstr "URL à utiliser pour paramétrer la tâche CRON sur votre serveur."
|
|
|
|
|
|
|
1672 |
|
1673 |
+
#: ../settings/settings-edit.php:363
|
1674 |
+
msgid "Email Count"
|
1675 |
+
msgstr "Nombre de courriels"
|
1676 |
|
1677 |
+
#: ../settings/settings-edit.php:364
|
1678 |
+
msgid "Number of emails that you want to trigger per hour."
|
1679 |
+
msgstr "Nombre de courriels que vous souhaitez envoyer par heure."
|
1680 |
|
1681 |
+
#: ../settings/settings-edit.php:369
|
1682 |
+
msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
|
1683 |
+
msgstr "(Votre hébergeur a ses limites. Nous conseillons 50 e-mails par heure.)"
|
1684 |
|
1685 |
+
#: ../settings/settings-edit.php:374
|
1686 |
+
msgid "Cron Report"
|
1687 |
+
msgstr "Rapport de têche CRON"
|
1688 |
|
1689 |
+
#: ../settings/settings-edit.php:385
|
1690 |
+
msgid "What is Cron (auto emails) and how to setup Cron Job?"
|
1691 |
+
msgstr "Qu'est-ce que Cron et comment paramétrer une tâche Cron?"
|
1692 |
|
1693 |
+
#: ../settings/settings-edit.php:386
|
1694 |
+
msgid ""
|
1695 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
1696 |
+
"schedule-cron-emails/?"
|
1697 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
|
1698 |
+
"Cron?</a>"
|
1699 |
msgstr ""
|
1700 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
1701 |
+
"schedule-cron-emails/?"
|
1702 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Qu'est-ce "
|
1703 |
+
"qu'une tâche Cron?</a>"
|
|
|
|
|
1704 |
|
1705 |
+
#: ../settings/settings-edit.php:387
|
1706 |
+
msgid ""
|
1707 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
1708 |
+
"schedule-cron-emails-in-cpanel/?"
|
1709 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
|
1710 |
+
"job in cPanel</a>"
|
1711 |
+
msgstr ""
|
1712 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
1713 |
+
"schedule-cron-emails-in-cpanel/?"
|
1714 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Paramétrer "
|
1715 |
+
"une tâche Cron dans cPanel</a>"
|
1716 |
|
1717 |
+
#: ../settings/settings-edit.php:388
|
1718 |
+
msgid ""
|
1719 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
1720 |
+
"schedule-cron-emails-in-parallels-plesk/?"
|
1721 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
|
1722 |
+
"job in Plesk</a>"
|
1723 |
+
msgstr ""
|
1724 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
1725 |
+
"schedule-cron-emails-in-parallels-plesk/?"
|
1726 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Paramétrer "
|
1727 |
+
"une tâche Cron dans Plesk</a>"
|
1728 |
|
1729 |
+
#: ../settings/settings-edit.php:389
|
1730 |
+
msgid ""
|
1731 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
|
1732 |
+
"if-hosting-doesnt-support-cron-jobs/?"
|
1733 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
|
1734 |
+
"does not support cron jobs?</a>"
|
1735 |
+
msgstr ""
|
1736 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
|
1737 |
+
"if-hosting-doesnt-support-cron-jobs/?"
|
1738 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Votre "
|
1739 |
+
"hébergeur ne gère pas les tâches Cron?</a>"
|
1740 |
|
1741 |
+
#: ../settings/settings-edit.php:504
|
1742 |
+
msgid "Please enter sender of notifications from name."
|
1743 |
+
msgstr "Veuillez saisir le nom de l'expéditeur"
|
1744 |
|
1745 |
+
#: ../settings/settings-edit.php:509
|
1746 |
+
msgid "Please enter sender of notifications from email."
|
1747 |
+
msgstr "Veuillez saisir l'e-mail de l'expéditeur"
|
1748 |
|
1749 |
+
#: ../settings/settings-edit.php:553
|
1750 |
+
msgid "Please enter valid mail count."
|
1751 |
+
msgstr "Veuillez saisir un nombre de courriel valide."
|
1752 |
|
1753 |
+
#: ../settings/settings-edit.php:566
|
1754 |
+
msgid "Settings Saved."
|
1755 |
+
msgstr "Options enregistrées."
|
1756 |
|
1757 |
+
#: ../settings/settings-edit.php:569
|
1758 |
+
msgid "Oops, unable to update."
|
1759 |
+
msgstr "Oups, impossible de mettre à jour."
|
1760 |
|
1761 |
+
#: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
|
1762 |
+
#: php:54
|
1763 |
+
msgid "Please enter subscriber email address."
|
1764 |
+
msgstr "Veuillez saisir l'e-mail de l'abonné."
|
1765 |
|
1766 |
+
#: ../subscribers/view-subscriber-add.php:52
|
1767 |
+
msgid "Please select or create your group for this email."
|
1768 |
+
msgstr "Merci de sélectionner ou créer votre groupe pour cet e-mail."
|
1769 |
|
1770 |
+
#: ../subscribers/view-subscriber-add.php:59
|
1771 |
msgid ""
|
1772 |
+
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1773 |
+
"the group name."
|
1774 |
msgstr ""
|
1775 |
+
"Erreur: les caractères (['^$%&*()}{@#~?><>,|=_+\\\"]) ne sont pas admis dans "
|
1776 |
+
"le nom d'un groupe."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1777 |
|
1778 |
+
#: ../subscribers/view-subscriber-add.php:69
|
1779 |
+
msgid "Subscriber has been saved."
|
1780 |
+
msgstr "Abonné enregistré."
|
|
|
|
|
|
|
|
|
|
|
1781 |
|
1782 |
+
#: ../subscribers/view-subscriber-add.php:71
|
1783 |
+
msgid "Subscriber already exists."
|
1784 |
+
msgstr "Cet abonné existe déjà."
|
|
|
|
|
|
|
|
|
1785 |
|
1786 |
+
#: ../subscribers/view-subscriber-add.php:74
|
1787 |
+
msgid "Invalid Email."
|
1788 |
+
msgstr "E-mail non valide."
|
|
|
1789 |
|
1790 |
+
#: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
|
1791 |
+
#: php:109 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
|
1792 |
+
#: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
|
1793 |
+
#: subscribers/view-subscriber-sync.php:89
|
1794 |
+
msgid "Add New Subscriber"
|
1795 |
+
msgstr "Ajouter un abonné"
|
1796 |
|
1797 |
+
#: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
|
1798 |
+
#: php:110 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
|
1799 |
+
#: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
|
1800 |
+
#: subscribers/view-subscriber-sync.php:90
|
1801 |
+
msgid "Import"
|
1802 |
+
msgstr "Importer"
|
1803 |
|
1804 |
+
#: ../subscribers/view-subscriber-add.php:116 ../subscribers/view-subscriber-edit.
|
1805 |
+
#: php:111 ../subscribers/view-subscriber-import.php:147 ../subscribers/view-
|
1806 |
+
#: subscriber-show.php:245 ../subscribers/view-subscriber-sync.php:91
|
1807 |
+
msgid "Export"
|
1808 |
+
msgstr "Exporter"
|
1809 |
|
1810 |
+
#: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
|
1811 |
+
#: php:112 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
|
1812 |
+
#: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
|
1813 |
+
#: subscribers/view-subscriber-sync.php:143
|
1814 |
+
msgid "Sync"
|
1815 |
+
msgstr "Synchroniser"
|
|
|
1816 |
|
1817 |
+
#: ../subscribers/view-subscriber-add.php:127
|
1818 |
+
msgid "Enter Subscriber's Full name"
|
1819 |
+
msgstr "Nom complet"
|
|
|
|
|
|
|
|
|
1820 |
|
1821 |
+
#: ../subscribers/view-subscriber-add.php:137
|
1822 |
+
msgid "Enter Subscriber's Email Address"
|
1823 |
+
msgstr "Adresse e-mail"
|
1824 |
|
1825 |
+
#: ../subscribers/view-subscriber-add.php:147
|
1826 |
+
msgid "Select Subscriber's Status"
|
1827 |
+
msgstr "Statut"
|
1828 |
|
1829 |
+
#: ../subscribers/view-subscriber-add.php:152 ../subscribers/view-subscriber-edit.
|
1830 |
+
#: php:147 ../subscribers/view-subscriber-import.php:178 ../subscribers/view-
|
1831 |
+
#: subscriber-show.php:323 ../subscribers/view-subscriber-show.php:353
|
1832 |
+
msgid "Confirmed"
|
1833 |
+
msgstr "Confirmé"
|
1834 |
|
1835 |
+
#: ../subscribers/view-subscriber-add.php:153 ../subscribers/view-subscriber-edit.
|
1836 |
+
#: php:148 ../subscribers/view-subscriber-import.php:179 ../subscribers/view-
|
1837 |
+
#: subscriber-show.php:324 ../subscribers/view-subscriber-show.php:354
|
1838 |
+
msgid "Unconfirmed"
|
1839 |
+
msgstr "Non confirmé"
|
1840 |
|
1841 |
+
#: ../subscribers/view-subscriber-add.php:154 ../subscribers/view-subscriber-edit.
|
1842 |
+
#: php:149 ../subscribers/view-subscriber-import.php:180 ../subscribers/view-
|
1843 |
+
#: subscriber-show.php:325 ../subscribers/view-subscriber-show.php:355
|
1844 |
+
msgid "Unsubscribed"
|
1845 |
+
msgstr "Désabonné"
|
1846 |
|
1847 |
+
#: ../subscribers/view-subscriber-add.php:162
|
1848 |
+
msgid "Select (or) Create Group for Subscriber"
|
1849 |
+
msgstr "Groupe"
|
1850 |
|
1851 |
+
#: ../subscribers/view-subscriber-add.php:178 ../subscribers/view-subscriber-
|
1852 |
+
#: import.php:205
|
1853 |
+
msgid "(or)"
|
1854 |
+
msgstr "(ou)"
|
1855 |
|
1856 |
+
#: ../subscribers/view-subscriber-add.php:187
|
1857 |
+
msgid "Add Subscriber"
|
1858 |
+
msgstr "Ajouter un abonné"
|
1859 |
|
1860 |
+
#: ../subscribers/view-subscriber-edit.php:64
|
1861 |
+
msgid "Error: Special characters are not allowed in the group name."
|
1862 |
+
msgstr "Erreur: les caractères spéciaux ne sont pas autorisés dans le nom du groupe."
|
1863 |
|
1864 |
+
#: ../subscribers/view-subscriber-edit.php:74
|
1865 |
+
msgid "Subscriber details updated."
|
1866 |
+
msgstr "Informations sur l'abonné mises à jour."
|
1867 |
|
1868 |
+
#: ../subscribers/view-subscriber-edit.php:76
|
1869 |
+
msgid "Subscriber already exists for this group."
|
1870 |
+
msgstr "Cet abonné fait déjà parti de ce groupe."
|
1871 |
|
1872 |
+
#: ../subscribers/view-subscriber-edit.php:108
|
1873 |
+
msgid "Edit Subscriber"
|
1874 |
+
msgstr "Modifier un abonné"
|
1875 |
|
1876 |
+
#: ../subscribers/view-subscriber-edit.php:122
|
1877 |
+
msgid "Subscriber's Full Name"
|
1878 |
+
msgstr "Nom complet de l'abonné"
|
1879 |
|
1880 |
+
#: ../subscribers/view-subscriber-edit.php:132
|
1881 |
+
msgid "Subscriber's Email Address"
|
1882 |
+
msgstr "Courriel de l'abonné"
|
|
|
1883 |
|
1884 |
+
#: ../subscribers/view-subscriber-edit.php:142
|
1885 |
+
msgid "Update Subscriber's Status"
|
1886 |
+
msgstr "Statut"
|
|
|
|
|
|
|
|
|
|
|
|
|
1887 |
|
1888 |
+
#: ../subscribers/view-subscriber-edit.php:157
|
1889 |
+
msgid "Update Subscriber's Group"
|
1890 |
+
msgstr "Groupe"
|
1891 |
|
1892 |
+
#: ../subscribers/view-subscriber-export.php:47
|
1893 |
+
msgid "Export Email Addresses"
|
1894 |
+
msgstr "Export des adresses e-mail"
|
1895 |
|
1896 |
+
#: ../subscribers/view-subscriber-export.php:59 ../subscribers/view-subscriber-
|
1897 |
+
#: export.php:67
|
1898 |
+
msgid "Type of List to Export"
|
1899 |
+
msgstr "Type de liste à exporter"
|
1900 |
|
1901 |
+
#: ../subscribers/view-subscriber-export.php:60 ../subscribers/view-subscriber-
|
1902 |
+
#: export.php:68
|
1903 |
+
msgid "Total Emails Count"
|
1904 |
+
msgstr "Nombre d'e-mails"
|
1905 |
|
1906 |
+
#: ../subscribers/view-subscriber-export.php:74
|
1907 |
+
msgid "1"
|
1908 |
+
msgstr "1"
|
1909 |
|
1910 |
+
#: ../subscribers/view-subscriber-export.php:75
|
1911 |
+
msgid "All Subscribers"
|
1912 |
+
msgstr "Tous les abonnés"
|
1913 |
|
1914 |
+
#: ../subscribers/view-subscriber-export.php:77 ../subscribers/view-subscriber-
|
1915 |
+
#: export.php:83 ../subscribers/view-subscriber-export.php:89 ../subscribers/view-
|
1916 |
+
#: subscriber-export.php:95 ../subscribers/view-subscriber-export.php:101
|
1917 |
+
msgid "Click to Export in CSV"
|
1918 |
+
msgstr "Exporter en CSV"
|
1919 |
|
1920 |
+
#: ../subscribers/view-subscriber-export.php:80
|
1921 |
+
msgid "2"
|
1922 |
+
msgstr "2"
|
1923 |
|
1924 |
+
#: ../subscribers/view-subscriber-export.php:81
|
1925 |
+
msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
|
1926 |
+
msgstr "Abonnés activés: (Statuts: confirmé & simple validation)"
|
1927 |
|
1928 |
+
#: ../subscribers/view-subscriber-export.php:86
|
1929 |
+
msgid "3"
|
1930 |
+
msgstr "3"
|
1931 |
|
1932 |
+
#: ../subscribers/view-subscriber-export.php:87
|
1933 |
+
msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
|
1934 |
+
msgstr "Abonnés non activés (Statuts: non confirmé & désabonné)"
|
1935 |
|
1936 |
+
#: ../subscribers/view-subscriber-export.php:92
|
1937 |
+
msgid "4"
|
1938 |
+
msgstr "4"
|
1939 |
|
1940 |
+
#: ../subscribers/view-subscriber-export.php:93
|
1941 |
+
msgid "WordPress Registered Users"
|
1942 |
+
msgstr "Utilisateurs du site"
|
1943 |
|
1944 |
+
#: ../subscribers/view-subscriber-export.php:98
|
1945 |
+
msgid "5"
|
1946 |
+
msgstr "5"
|
|
|
1947 |
|
1948 |
+
#: ../subscribers/view-subscriber-export.php:99
|
1949 |
+
msgid "Commented Authors"
|
1950 |
+
msgstr "Auteurs de commentaires"
|
1951 |
|
1952 |
+
#: ../subscribers/view-subscriber-import.php:45
|
1953 |
+
msgid ""
|
1954 |
+
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1955 |
+
"the Group name."
|
1956 |
+
msgstr ""
|
1957 |
+
"Erreurr: Les caractères spéciaux (['^$%&*()}{@#~?><>,|=_+\\\"]) ne sont pas "
|
1958 |
+
"autorisés pour le nom du groupe."
|
1959 |
|
1960 |
+
#: ../subscribers/view-subscriber-import.php:95
|
1961 |
+
msgid "email imported."
|
1962 |
+
msgstr "e-mail importé."
|
|
|
1963 |
|
1964 |
+
#: ../subscribers/view-subscriber-import.php:96
|
1965 |
+
msgid "email already exists."
|
1966 |
+
msgstr "e-mail existant."
|
|
|
1967 |
|
1968 |
+
#: ../subscribers/view-subscriber-import.php:97
|
1969 |
+
msgid "email are invalid."
|
1970 |
+
msgstr "e-mail non valide."
|
|
|
1971 |
|
1972 |
+
#: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
|
1973 |
+
#: import.php:129
|
1974 |
+
msgid "Click here"
|
1975 |
+
msgstr "Cliquez ici"
|
1976 |
|
1977 |
+
#: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
|
1978 |
+
#: import.php:129
|
1979 |
+
msgid " to view details."
|
1980 |
+
msgstr " pour voir les détails."
|
1981 |
|
1982 |
+
#: ../subscribers/view-subscriber-import.php:108
|
1983 |
+
msgid "File Upload Failed."
|
1984 |
+
msgstr "Le téléchargement a échoué."
|
|
|
1985 |
|
1986 |
+
#: ../subscribers/view-subscriber-import.php:145
|
1987 |
+
msgid "Import Email Addresses"
|
1988 |
+
msgstr "Import d'adresses e-mail"
|
|
|
1989 |
|
1990 |
+
#: ../subscribers/view-subscriber-import.php:158
|
1991 |
+
msgid "Select CSV file"
|
1992 |
+
msgstr "Sélectionnez un fichier CSV"
|
|
|
1993 |
|
1994 |
+
#: ../subscribers/view-subscriber-import.php:160
|
1995 |
+
msgid "Check CSV structure "
|
1996 |
+
msgstr "Vérifiez la structure du fichier CSV"
|
|
|
1997 |
|
1998 |
+
#: ../subscribers/view-subscriber-import.php:161
|
1999 |
+
msgid "from here"
|
2000 |
+
msgstr "ici"
|
|
|
2001 |
|
2002 |
+
#: ../subscribers/view-subscriber-import.php:172
|
2003 |
+
msgid "Select Subscribers Email Status"
|
2004 |
+
msgstr "Sélectionnez le statut des abonnés"
|
|
|
|
|
|
|
|
|
|
|
2005 |
|
2006 |
+
#: ../subscribers/view-subscriber-import.php:188
|
2007 |
+
msgid "Select (or) Create Group for Subscribers"
|
2008 |
+
msgstr "Sélectionnez ou créez un groupe d'abonnés"
|
|
|
2009 |
|
2010 |
+
#: ../subscribers/view-subscriber-show.php:45
|
2011 |
+
msgid "Selected details does not exists."
|
2012 |
+
msgstr "L'élément sélectionné n'existe pas."
|
|
|
2013 |
|
2014 |
+
#: ../subscribers/view-subscriber-show.php:56 ../subscribers/view-subscriber-show.
|
2015 |
+
#: php:95
|
2016 |
+
msgid "Record deleted."
|
2017 |
+
msgstr "Enregistrement supprimé."
|
2018 |
|
2019 |
+
#: ../subscribers/view-subscriber-show.php:67
|
2020 |
+
msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
|
2021 |
+
msgstr "Pour envoyer un courriel de confirmation, cochez l'option double validation."
|
|
|
2022 |
|
2023 |
+
#: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
|
2024 |
+
#: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
|
2025 |
+
#: subscriber-show.php:217
|
2026 |
+
msgid "No record was selected."
|
2027 |
+
msgstr "Aucun élément n'est sélectionné."
|
2028 |
|
2029 |
+
#: ../subscribers/view-subscriber-show.php:115
|
2030 |
+
msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
|
2031 |
+
msgstr "Pour envoyer un courriel de confirmation, cochez l'option double validation."
|
|
|
|
|
|
|
|
|
|
|
2032 |
|
2033 |
+
#: ../subscribers/view-subscriber-show.php:164
|
2034 |
+
msgid "Subscribers Group updated."
|
2035 |
+
msgstr "Groupe d'abonnés mis à jour."
|
|
|
2036 |
|
2037 |
+
#: ../subscribers/view-subscriber-show.php:169
|
2038 |
+
msgid "Please select New group to update."
|
2039 |
+
msgstr "Veuillez choisir le nouveau groupe."
|
|
|
2040 |
|
2041 |
+
#: ../subscribers/view-subscriber-show.php:203
|
2042 |
+
msgid "Subscribers Status updated."
|
2043 |
+
msgstr "Statut des abonnés mis à jour."
|
|
|
|
|
|
|
2044 |
|
2045 |
+
#: ../subscribers/view-subscriber-show.php:208
|
2046 |
+
msgid "Please select New Status to update."
|
2047 |
+
msgstr "Veuillez choisir le nouveau statut."
|
|
|
2048 |
|
2049 |
+
#: ../subscribers/view-subscriber-show.php:258
|
2050 |
+
#, php-format
|
2051 |
+
msgid "Active Subscribers: %s"
|
2052 |
+
msgstr "Abonnés activés : %s"
|
2053 |
|
2054 |
+
#: ../subscribers/view-subscriber-show.php:288
|
2055 |
+
msgid "Email Address"
|
2056 |
+
msgstr "Adresses e-mail"
|
|
|
2057 |
|
2058 |
+
#: ../subscribers/view-subscriber-show.php:291
|
2059 |
+
msgid "Group"
|
2060 |
+
msgstr "Groupe"
|
|
|
2061 |
|
2062 |
+
#: ../subscribers/view-subscriber-show.php:292
|
2063 |
+
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
2064 |
+
msgstr "Date d'inscription<br>(AAAA-MM-JJ h:m:s)"
|
|
|
2065 |
|
2066 |
+
#: ../subscribers/view-subscriber-show.php:300
|
2067 |
+
msgid "Bulk Actions"
|
2068 |
+
msgstr "Actions groupées"
|
|
|
2069 |
|
2070 |
+
#: ../subscribers/view-subscriber-show.php:302 ../subscribers/view-subscriber-
|
2071 |
+
#: show.php:413
|
2072 |
+
msgid "Resend Confirmation"
|
2073 |
+
msgstr "Renvoyer la confirmation"
|
2074 |
|
2075 |
+
#: ../subscribers/view-subscriber-show.php:304
|
2076 |
+
msgid "Update Subscribers Status"
|
2077 |
+
msgstr "Mettre à jour le statut"
|
|
|
2078 |
|
2079 |
+
#: ../subscribers/view-subscriber-show.php:307
|
2080 |
+
msgid "Select Group"
|
2081 |
+
msgstr "Choix du groupe"
|
|
|
2082 |
|
2083 |
+
#: ../subscribers/view-subscriber-show.php:322
|
2084 |
+
msgid "Select Status"
|
2085 |
+
msgstr "Choix du statut"
|
|
|
2086 |
|
2087 |
+
#: ../subscribers/view-subscriber-show.php:328
|
2088 |
+
msgid "Apply"
|
2089 |
+
msgstr "Appliquer"
|
|
|
2090 |
|
2091 |
+
#: ../subscribers/view-subscriber-show.php:335
|
2092 |
+
msgid "All Groups"
|
2093 |
+
msgstr "Tous les groupes"
|
|
|
2094 |
|
2095 |
+
#: ../subscribers/view-subscriber-show.php:352
|
2096 |
+
msgid "All Status"
|
2097 |
+
msgstr "Tous les statuts"
|
|
|
2098 |
|
2099 |
+
#: ../subscribers/view-subscriber-show.php:359
|
2100 |
+
msgid "1 to 500 emails"
|
2101 |
+
msgstr "1 à 500"
|
|
|
2102 |
|
2103 |
+
#: ../subscribers/view-subscriber-show.php:360
|
2104 |
+
msgid "501 to 1000"
|
2105 |
+
msgstr "501 à 1000"
|
|
|
2106 |
|
2107 |
+
#: ../subscribers/view-subscriber-show.php:361
|
2108 |
+
msgid "1001 to 1500"
|
2109 |
+
msgstr "1001 à 1500"
|
|
|
2110 |
|
2111 |
+
#: ../subscribers/view-subscriber-show.php:362
|
2112 |
+
msgid "1501 to 2000"
|
2113 |
+
msgstr "1501 à 2000"
|
|
|
2114 |
|
2115 |
+
#: ../subscribers/view-subscriber-show.php:363
|
2116 |
+
msgid "2001 to 4000"
|
2117 |
+
msgstr "2001 à 4000"
|
|
|
2118 |
|
2119 |
+
#: ../subscribers/view-subscriber-show.php:364
|
2120 |
+
msgid "4001 to 6000"
|
2121 |
+
msgstr "4001 à 6000"
|
|
|
2122 |
|
2123 |
+
#: ../subscribers/view-subscriber-show.php:365
|
2124 |
+
msgid "6001 to 10000"
|
2125 |
+
msgstr "6001 à 10000"
|
|
|
2126 |
|
2127 |
+
#: ../subscribers/view-subscriber-show.php:366
|
2128 |
+
msgid "Display All"
|
2129 |
+
msgstr "Tout afficher"
|
|
|
2130 |
|
2131 |
+
#: ../subscribers/view-subscriber-sync.php:36
|
2132 |
+
msgid "Please select default group to newly registered user."
|
|
|
|
|
|
|
|
|
2133 |
msgstr ""
|
2134 |
+
"Veuillez sélectionner un groupe pour les nouveaux utilisateurs enregistrés "
|
2135 |
+
"sur le site."
|
|
|
|
|
2136 |
|
2137 |
+
#: ../subscribers/view-subscriber-sync.php:50
|
2138 |
+
msgid "Emails Successfully Synced."
|
2139 |
+
msgstr "E-mails synchronisés."
|
2140 |
|
2141 |
+
#: ../subscribers/view-subscriber-sync.php:88
|
2142 |
+
msgid "Sync Email"
|
2143 |
+
msgstr "Synchro E-mail"
|
2144 |
|
2145 |
+
#: ../subscribers/view-subscriber-sync.php:101
|
2146 |
+
msgid "Sync newly registered users to subscribers list"
|
2147 |
+
msgstr "Ajouter les nouveaux utilisateurs inscrits au site à un groupe d'abonnés"
|
2148 |
|
2149 |
+
#: ../subscribers/view-subscriber-sync.php:114
|
2150 |
+
msgid "Select group to add newly registered users to"
|
2151 |
+
msgstr "Sélectionner un groupe auquel ajouter les nouveaux abonnés du site"
|
2152 |
|
2153 |
+
#. Plugin Name of the plugin/theme
|
2154 |
+
msgid "Email Subscribers & Newsletters"
|
2155 |
+
msgstr "Email Subscribers & Newsletters"
|
2156 |
|
2157 |
+
#. URI of the plugin
|
2158 |
+
msgid "https://www.icegram.com"
|
2159 |
+
msgstr "https://www.icegram.com"
|
2160 |
|
2161 |
+
#. Description of the plugin/theme
|
2162 |
+
msgid ""
|
2163 |
+
"Add subscription forms on website, send HTML newsletters & automatically "
|
2164 |
+
"notify subscribers about new blog posts once it is published."
|
2165 |
+
msgstr ""
|
2166 |
+
"Permet d'ajouter un formulaire d'abonnement sur votre site, d'envoyer des "
|
2167 |
+
"newsletters en HTML et d'informer automatiquement vos abonnés de vos "
|
2168 |
+
"nouvelles publications."
|
2169 |
|
2170 |
+
#: ../email-subscribers.php:95
|
2171 |
+
msgctxt "timezone date format"
|
2172 |
+
msgid "Y-m-d H:i:s"
|
2173 |
+
msgstr "d-m-Y H:i:s"
|
languages/email-subscribers-hu_HU.mo
CHANGED
Binary file
|
languages/email-subscribers-hu_HU.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.4.
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Hungarian\n"
|
@@ -22,380 +22,228 @@ msgstr ""
|
|
22 |
"X-Loco-Target-Locale: hu_HU\n"
|
23 |
"X-Poedit-SearchPath-0: .."
|
24 |
|
25 |
-
#: ../
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
30 |
-
#: 164
|
31 |
-
msgid "(Use templates menu to create new)"
|
32 |
msgstr ""
|
33 |
|
34 |
-
|
35 |
-
msgid "
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: ../
|
39 |
-
msgctxt "
|
40 |
-
msgid "
|
|
|
|
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: ../
|
44 |
-
|
|
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: ../
|
|
|
48 |
msgid ""
|
49 |
-
"
|
50 |
-
"
|
|
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: ../
|
54 |
-
|
|
|
|
|
|
|
|
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: ../
|
58 |
msgid ""
|
59 |
-
"
|
60 |
-
"
|
61 |
-
"by clicking on the activation link.<br />Single Opt-In : In this type, the "
|
62 |
-
"subscriber is not asked to confirm their email address. They are subscribed "
|
63 |
-
"directly in the list."
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: ../
|
67 |
-
msgid ""
|
68 |
-
"Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
|
69 |
-
"Emails."
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: ../
|
73 |
-
msgid "
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: ../
|
77 |
-
|
|
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: ../
|
81 |
-
msgid ""
|
82 |
-
"Subject for the admin email whenever a new subscriber signs up and is "
|
83 |
-
"confirmed."
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: ../
|
87 |
-
msgid "
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: ../
|
91 |
-
msgid ""
|
92 |
-
"Content for the admin email whenever a new subscriber signs up and is "
|
93 |
-
"confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: ../
|
97 |
-
msgid "
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: ../
|
101 |
-
msgid ""
|
102 |
-
"Content for the email report which will be sent to admin.<br />Available "
|
103 |
-
"Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: ../
|
107 |
-
msgid "
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: ../
|
111 |
-
msgid ""
|
112 |
-
"Subject for the confirmation email to be sent for Double Opt-In whenever a "
|
113 |
-
"subscriber signs up."
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: ../
|
117 |
-
msgid "
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: ../
|
121 |
-
msgid ""
|
122 |
-
"Content for the confirmation email to be sent for Double Opt-In whenever a "
|
123 |
-
"subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: ../
|
127 |
-
msgid "
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: ../
|
131 |
-
msgid ""
|
132 |
-
"Text to display after an email address is successfully subscribed from "
|
133 |
-
"Double Opt-In (Confirmation) Email"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: ../
|
137 |
-
msgid "
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: ../
|
141 |
-
msgid "
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: ../
|
|
|
145 |
msgid ""
|
146 |
-
"
|
147 |
-
"
|
148 |
-
"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: ../
|
152 |
-
|
|
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: ../
|
156 |
-
msgid ""
|
157 |
-
"Content for the subscriber welcome email whenever a user's email is either "
|
158 |
-
"confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
|
159 |
-
"<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: ../
|
163 |
-
msgid ""
|
164 |
-
"This unsubscribe link is automatically added to all the emails that are sent "
|
165 |
-
"from this plugin. It is a readonly field and you are advised not to modify "
|
166 |
-
"it."
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: ../
|
170 |
msgid ""
|
171 |
-
"
|
172 |
-
"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: ../
|
176 |
msgid ""
|
177 |
-
"
|
178 |
-
"
|
179 |
-
msgstr ""
|
180 |
-
|
181 |
-
#: ../settings/settings-edit.php:262
|
182 |
-
msgid "Error in the Subscribe / Confirmation Link"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: ../
|
186 |
-
msgid ""
|
187 |
-
"Default message to display if there is any issue while clicking on subscribe "
|
188 |
-
"/ confirmation link from the Double Opt-In (Confirmation) emails."
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: ../
|
192 |
-
|
193 |
-
"
|
194 |
-
"unsubscribe link from the emails."
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: ../
|
198 |
-
msgid "
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: ../
|
202 |
-
msgid "
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: ../
|
206 |
-
|
|
|
|
|
|
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: ../
|
210 |
-
msgid ""
|
211 |
-
"Email to admin whenever a cron URL is triggered from your server.<br "
|
212 |
-
"/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: ../
|
216 |
msgid ""
|
217 |
-
"
|
218 |
-
"
|
219 |
-
"
|
220 |
-
"Cron?</a>"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: ../
|
224 |
-
msgid ""
|
225 |
-
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
226 |
-
"schedule-cron-emails-in-cpanel/?"
|
227 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
|
228 |
-
"job in cPanel</a>"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: ../
|
232 |
msgid ""
|
233 |
-
"
|
234 |
-
"
|
235 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
|
236 |
-
"job in Plesk</a>"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: ../
|
240 |
-
msgid ""
|
241 |
-
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
|
242 |
-
"if-hosting-doesnt-support-cron-jobs/?"
|
243 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
|
244 |
-
"does not support cron jobs?</a>"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: ../
|
248 |
-
msgid "
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: ../
|
252 |
msgid ""
|
253 |
-
"
|
254 |
-
"
|
255 |
-
"a slight variation on how your customer will view the email content."
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: ../
|
259 |
-
|
260 |
-
msgid "Confirmation emails resent successfully."
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: ../
|
264 |
-
msgid "
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: ../
|
268 |
-
msgid ""
|
269 |
-
"Oops! Looks like you are not the site administrator.<br><br>Only the site "
|
270 |
-
"administrator can export subscriber list."
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: ../
|
274 |
-
msgid "
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: ../
|
278 |
-
msgid "
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: ../
|
282 |
-
msgid "
|
283 |
-
msgstr ""
|
284 |
-
|
285 |
-
#: ../templates/template-preview.php:39
|
286 |
-
msgid "This is how your email may look."
|
287 |
-
msgstr ""
|
288 |
-
|
289 |
-
#: ../templates/template-preview.php:41
|
290 |
-
msgid ""
|
291 |
-
"<br><br>This Post Notification preview has replaced keywords from your last "
|
292 |
-
"published blog post."
|
293 |
-
msgstr ""
|
294 |
-
|
295 |
-
#: ../templates/template-preview.php:43
|
296 |
-
msgid ""
|
297 |
-
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
298 |
-
"content differently. So there could be a slight variation on how your "
|
299 |
-
"customer will view the email content."
|
300 |
-
msgstr ""
|
301 |
-
|
302 |
-
#: ../help/help.php:185
|
303 |
-
msgid "Thanks for installing and we hope you will enjoy using this plugin."
|
304 |
-
msgstr ""
|
305 |
-
|
306 |
-
#: ../help/help.php:186
|
307 |
-
msgid ""
|
308 |
-
"By default, subscribers subscribed via Email Subscribers, will receive email "
|
309 |
-
"updates when you post a new blog. You can turn these updates off like this:"
|
310 |
-
msgstr ""
|
311 |
-
|
312 |
-
#: ../help/help.php:187
|
313 |
-
msgid ""
|
314 |
-
"Email Subscribers -> Post Notification -> Edit -> Select Notification Status "
|
315 |
-
"when a new post is published -> Disable -> Save."
|
316 |
-
msgstr ""
|
317 |
-
|
318 |
-
#: ../help/help.php:191
|
319 |
-
msgid "Get more help and tips..."
|
320 |
-
msgstr ""
|
321 |
-
|
322 |
-
#: ../help/help.php:205
|
323 |
-
#, php-format
|
324 |
-
msgid "Version: %s"
|
325 |
-
msgstr ""
|
326 |
-
|
327 |
-
#: ../help/help.php:208
|
328 |
-
msgid "Questions? Need Help?"
|
329 |
-
msgstr ""
|
330 |
-
|
331 |
-
#: ../help/help.php:209
|
332 |
-
msgid "Contact Us"
|
333 |
-
msgstr ""
|
334 |
-
|
335 |
-
#: ../help/help.php:214
|
336 |
-
#, php-format
|
337 |
-
msgid ""
|
338 |
-
"<b>Like Email Subscribers?</b> If yes, then consider %s to support further "
|
339 |
-
"developments."
|
340 |
-
msgstr ""
|
341 |
-
|
342 |
-
#: ../help/help.php:249
|
343 |
-
msgid "Description"
|
344 |
-
msgstr ""
|
345 |
-
|
346 |
-
#: ../help/help.php:251
|
347 |
-
msgid ""
|
348 |
-
"Email Subscribers is a complete newsletter plugin which lets you collect "
|
349 |
-
"leads, send automated new blog post notification emails, create & send "
|
350 |
-
"newsletters and manage all this in one single place."
|
351 |
-
msgstr ""
|
352 |
-
|
353 |
-
#: ../help/help.php:253
|
354 |
-
msgid "Feature Overview"
|
355 |
-
msgstr ""
|
356 |
-
|
357 |
-
#: ../help/help.php:256
|
358 |
-
msgid ""
|
359 |
-
"Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
|
360 |
-
"Code)."
|
361 |
-
msgstr ""
|
362 |
-
|
363 |
-
#: ../help/help.php:259
|
364 |
-
msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
|
365 |
-
msgstr ""
|
366 |
-
|
367 |
-
#: ../help/help.php:262
|
368 |
-
msgid "Send automatic welcome email to subscribers."
|
369 |
-
msgstr ""
|
370 |
-
|
371 |
-
#: ../help/help.php:265
|
372 |
-
msgid ""
|
373 |
-
"Send new post notification emails to subscribers when new posts are "
|
374 |
-
"published on your website."
|
375 |
-
msgstr ""
|
376 |
-
|
377 |
-
#: ../help/help.php:268
|
378 |
-
msgid "Schedule email (Cron job) or send them manually."
|
379 |
-
msgstr ""
|
380 |
-
|
381 |
-
#: ../help/help.php:271
|
382 |
-
msgid "Send email notification to admin when a new user signs up."
|
383 |
-
msgstr ""
|
384 |
-
|
385 |
-
#: ../help/help.php:274
|
386 |
-
msgid "Automatically add Unsubscribe link in the email."
|
387 |
-
msgstr ""
|
388 |
-
|
389 |
-
#: ../help/help.php:277
|
390 |
-
msgid "Easily migrate subscribers from another app using Import & Export."
|
391 |
-
msgstr ""
|
392 |
-
|
393 |
-
#: ../help/help.php:280
|
394 |
-
msgid "Use HTML editor to create newsletters and post notifications."
|
395 |
-
msgstr ""
|
396 |
-
|
397 |
-
#: ../help/help.php:283
|
398 |
-
msgid "Send newsletters to different groups."
|
399 |
msgstr ""
|
400 |
|
401 |
#: ../help/help.php:286
|
@@ -457,1675 +305,1793 @@ msgid ""
|
|
457 |
"Roles"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: ../help/help.php:
|
461 |
-
msgid "How
|
462 |
msgstr ""
|
463 |
|
464 |
#: ../help/help.php:333
|
|
|
|
|
|
|
|
|
465 |
msgid "How to change/update/translate any texts from the plugin?"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: ../help/help.php:
|
469 |
msgid "How to check sent emails?"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: ../help/help.php:
|
473 |
msgid "Create and Send Newsletter Emails"
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: ../help/help.php:
|
477 |
msgid "Keywords in the Newsletters"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: ../help/help.php:
|
481 |
msgid "Create and Send Post Notification Emails when new posts are published"
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: ../help/help.php:
|
485 |
msgid "Keywords in the Post Notifications"
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: ../help/help.php:
|
489 |
msgid "Send a test post notification email to myself/testgroup"
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: ../help/help.php:
|
493 |
msgid "Cron Job Setup"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: ../help/help.php:
|
497 |
msgid "What is Cron and how to Schedule Cron Emails?"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: ../help/help.php:
|
501 |
msgid "Schedule Cron Emails in cPanel"
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: ../help/help.php:
|
505 |
msgid "Schedule Cron Emails in Parallels Plesk"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: ../help/help.php:
|
509 |
msgid "Hosting doesn’t support Cron Jobs?"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: ../help/help.php:
|
513 |
msgid "Troubleshooting Steps"
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: ../help/help.php:
|
517 |
msgid "FAQ's"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: ../help/help.php:
|
521 |
msgid "Want to do more? Here's how.."
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: ../help/help.php:
|
525 |
msgid "Allow Subscribers to get subscribed to any group"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: ../help/help.php:
|
529 |
msgid "Using our <b>free</b> "
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: ../help/help.php:
|
533 |
msgid "Group Selector"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: ../help/help.php:
|
537 |
msgid ""
|
538 |
"plugin, you can extend Email Subscribers Form functionality by providing an "
|
539 |
"grouping option right next to the form."
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: ../help/help.php:
|
543 |
msgid "The user can then subscribe to whichever group most appeals to them."
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: ../help/help.php:
|
547 |
msgid "For example: Subscribe either to Updates or to Offers."
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: ../help/help.php:
|
551 |
msgid "Show your subscribe form inside attractive popups"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: ../help/help.php:
|
555 |
msgid ""
|
556 |
"Don't limit your subscriber form to a widget. Embed it within popups, hello "
|
557 |
"bars, slide-ins, sidebars, full screen popups etc."
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: ../help/help.php:
|
561 |
msgid ""
|
562 |
"Using Email Subscribers you can achieve this easily with our <b>free</b> "
|
563 |
"plugin "
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: ../help/help.php:
|
567 |
msgid ""
|
568 |
"Icegram's beautiful designs instantly capture user attention and help "
|
569 |
"increase sign-ups to your WordPress website."
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: ../help/help.php:
|
573 |
#, php-format
|
574 |
msgid "How to %s"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: ../help/help.php:
|
578 |
msgid "show subscribe form inside a popup"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: ../help/help.php:
|
582 |
msgid "Get beautiful and elegant form styles"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: ../help/help.php:
|
586 |
msgid "Email subscribers easily integrates with another <b>free</b> plugin "
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: ../help/help.php:
|
590 |
msgid "Rainmaker"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: ../help/help.php:
|
594 |
msgid ""
|
595 |
"Rainmaker extends the core features of Email Subscribers and provides "
|
596 |
"elegant form styles."
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: ../help/help.php:
|
600 |
msgid ""
|
601 |
"These styles are well designed and beautify your subscription form making it "
|
602 |
"more appealing."
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: ../help/help.php:
|
606 |
msgid "add Rainmaker’s form in Email Subscribers"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: ../
|
610 |
-
msgid "
|
611 |
-
msgstr ""
|
612 |
-
|
613 |
-
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
614 |
-
#: register.php:797 ../classes/es-register.php:798 ../classes/es-register.php:803
|
615 |
-
msgid "Templates"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: ../
|
619 |
-
|
|
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: ../
|
623 |
-
|
624 |
-
msgid ""
|
625 |
-
"Do you want to resend confirmation email? Also please note, this will update "
|
626 |
-
"subscriber current status to 'Unconfirmed'."
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: ../
|
630 |
-
|
631 |
-
msgid "Please select notification mail subject. Use templates menu to create new."
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: ../
|
635 |
-
msgctxt "widget-enhanced-select"
|
636 |
msgid ""
|
637 |
-
"
|
638 |
-
"
|
639 |
-
"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: ../
|
643 |
-
|
644 |
-
msgid ""
|
645 |
-
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
646 |
-
"subscription. If you can't see the email within a few minutes, check the "
|
647 |
-
"spam folder."
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: ../
|
651 |
msgid ""
|
652 |
-
"
|
653 |
-
"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: ../
|
657 |
-
msgid "
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: ../
|
661 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: ../
|
665 |
-
|
666 |
-
|
|
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: ../
|
670 |
-
msgid "
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: ../
|
674 |
-
msgid "
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: ../
|
678 |
-
msgid "
|
|
|
|
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: ../
|
682 |
-
msgid "
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: ../
|
686 |
-
msgid "
|
|
|
|
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: ../
|
690 |
-
msgid "
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: ../
|
694 |
-
msgid "
|
|
|
|
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: ../
|
698 |
-
msgid "
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: ../
|
702 |
-
msgid "
|
|
|
|
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: ../
|
706 |
-
msgid "
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: ../
|
710 |
-
msgid "
|
|
|
|
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: ../
|
714 |
-
msgid "
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: ../
|
718 |
-
msgid "
|
|
|
|
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: ../
|
722 |
-
|
723 |
-
msgid ""
|
724 |
-
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
725 |
-
"{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
|
726 |
-
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: ../
|
730 |
-
|
731 |
-
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: ../
|
735 |
-
msgid "
|
736 |
-
|
|
|
|
|
|
|
737 |
|
738 |
-
#: ../
|
739 |
-
msgid "
|
740 |
-
msgstr "
|
741 |
|
742 |
-
#: ../
|
743 |
-
msgid "
|
744 |
-
|
|
|
|
|
|
|
745 |
|
746 |
-
#: ../
|
747 |
-
msgid "
|
748 |
-
|
|
|
|
|
|
|
749 |
|
750 |
-
#: ../
|
751 |
-
msgid "
|
752 |
-
|
|
|
|
|
753 |
|
754 |
-
#: ../
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
#: export.php:51 ../subscribers/view-subscriber-add.php:118 ../subscribers/view-
|
760 |
-
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
761 |
-
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
762 |
-
msgid "Help"
|
763 |
-
msgstr "Segítség"
|
764 |
|
765 |
-
#: ../
|
766 |
-
msgid "
|
767 |
-
msgstr "
|
768 |
|
769 |
-
#: ../
|
770 |
-
|
771 |
-
|
772 |
-
|
773 |
-
|
774 |
-
#: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
|
775 |
-
msgid "Select"
|
776 |
-
msgstr "Választ"
|
777 |
|
778 |
-
#: ../
|
779 |
-
|
780 |
-
|
781 |
-
|
|
|
782 |
|
783 |
-
#: ../
|
784 |
-
|
785 |
-
|
786 |
-
msgstr "Válszd ki a bejegyzés kategóriáját"
|
787 |
|
788 |
-
#: ../
|
789 |
-
|
790 |
-
|
791 |
-
msgstr "Mindegyik kijelölése"
|
792 |
|
793 |
-
#: ../
|
794 |
-
|
795 |
-
|
796 |
-
msgstr "Kijelölések visszavonása"
|
797 |
|
798 |
-
#: ../
|
799 |
-
|
800 |
-
|
801 |
-
|
|
|
802 |
|
803 |
-
#: ../
|
804 |
-
|
805 |
-
|
806 |
-
|
|
|
|
|
|
|
807 |
|
808 |
-
#: ../
|
809 |
-
|
810 |
-
|
811 |
-
|
|
|
|
|
|
|
812 |
|
813 |
-
#: ../
|
814 |
-
|
815 |
-
|
816 |
-
|
|
|
|
|
|
|
817 |
|
818 |
-
#: ../
|
819 |
-
|
820 |
-
|
821 |
-
|
|
|
|
|
|
|
822 |
|
823 |
-
#: ../
|
824 |
-
|
825 |
-
|
826 |
-
|
|
|
827 |
|
828 |
-
#: ../
|
829 |
-
|
830 |
-
|
831 |
-
msgstr "Az új bejegyzések értesítésének letiltása"
|
832 |
|
833 |
-
#: ../
|
834 |
-
#:
|
835 |
-
msgid "
|
836 |
-
msgstr "
|
837 |
|
838 |
-
#: ../
|
839 |
-
|
840 |
-
|
841 |
-
msgid "Oops, selected details does not exists."
|
842 |
-
msgstr "A részleteket add meg kérlek"
|
843 |
|
844 |
-
#: ../
|
845 |
-
msgid "
|
846 |
-
msgstr "
|
847 |
|
848 |
-
#: ../
|
849 |
-
|
850 |
-
|
851 |
-
msgstr "Új bejegyzés értesítés"
|
852 |
|
853 |
-
#: ../
|
854 |
-
|
855 |
-
|
856 |
-
|
|
|
857 |
|
858 |
-
#: ../
|
859 |
msgid ""
|
860 |
-
"
|
861 |
-
"
|
|
|
862 |
msgstr ""
|
863 |
-
"Új bejegyzés értesítő: amikor az új bejegyzés elkészül, itt tudod beállítani,"
|
864 |
-
" milyen értesítést küldjön a feliratkozottaknak. "
|
865 |
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
msgstr "Tárgy"
|
870 |
|
871 |
-
#: ../
|
872 |
-
|
873 |
-
msgid "
|
874 |
-
msgstr "
|
875 |
|
876 |
-
#: ../
|
877 |
-
|
878 |
-
|
879 |
-
msgstr "Bejegyzés kategóriája / egyedi bejegyzés típus"
|
880 |
|
881 |
-
#: ../
|
882 |
-
|
883 |
-
|
884 |
-
msgstr "Értesítés sttusza"
|
885 |
|
886 |
-
#: ../
|
887 |
-
|
888 |
-
|
889 |
-
msgstr "Szerkesztés"
|
890 |
|
891 |
-
#: ../
|
892 |
-
|
893 |
-
|
894 |
-
msgstr "Törlés"
|
895 |
|
896 |
-
#: ../
|
897 |
-
|
898 |
-
|
899 |
-
msgstr "Nincs ilyen adat."
|
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 |
-
msgstr "Előfizetői csoport frissítése"
|
921 |
|
922 |
-
|
923 |
-
msgid "
|
924 |
-
msgstr "
|
925 |
|
926 |
-
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
msgstr ""
|
931 |
-
"A feliratkozó űrlap hozzáadása, HTML hírlevél és új bejegyzés értesítő (e-"
|
932 |
-
"mail küldése, amikor egy bejegyzést közzétesznek)"
|
933 |
|
934 |
-
|
935 |
-
msgid "
|
936 |
-
msgstr "
|
937 |
|
938 |
-
#: ../
|
939 |
-
|
940 |
-
|
|
|
941 |
|
942 |
-
#: ../
|
943 |
-
|
944 |
-
|
|
|
945 |
|
946 |
-
#: ../
|
947 |
-
|
948 |
-
|
|
|
949 |
|
950 |
-
#: ../
|
951 |
-
|
952 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
953 |
|
954 |
-
#: ../
|
955 |
-
#:
|
956 |
msgid "Settings"
|
957 |
msgstr "Beállítások"
|
958 |
|
959 |
-
#: ../
|
960 |
-
|
961 |
-
|
962 |
-
|
963 |
-
#: ../settings/settings-edit.php:78
|
964 |
-
msgid "Sender of Notifications"
|
965 |
-
msgstr "Az értesítések küldőjw"
|
966 |
-
|
967 |
-
#: ../settings/settings-edit.php:79
|
968 |
-
msgid ""
|
969 |
-
"Choose a FROM name and FROM email address for all the emails to be sent from "
|
970 |
-
"this plugin."
|
971 |
-
msgstr "Add megy, hogy milyen e-mail címről küldjük és mi legyen a küldő neve?"
|
972 |
-
|
973 |
-
#: ../settings/settings-edit.php:94
|
974 |
-
msgid "1. WP HTML MAIL"
|
975 |
-
msgstr "1. WordPress HTML e-mail"
|
976 |
|
977 |
-
#: ../
|
978 |
-
msgid "
|
979 |
-
msgstr "
|
980 |
|
981 |
-
#: ../
|
982 |
-
|
983 |
-
|
|
|
984 |
|
985 |
-
#: ../
|
986 |
-
|
987 |
-
|
|
|
988 |
|
989 |
-
#: ../
|
990 |
-
|
991 |
-
|
|
|
992 |
|
993 |
-
#: ../
|
994 |
-
|
995 |
-
|
996 |
-
|
997 |
-
msgid "Single Opt In"
|
998 |
-
msgstr "Visszaigazolás nélkül"
|
999 |
|
1000 |
-
#: ../
|
1001 |
-
|
1002 |
-
|
|
|
1003 |
|
1004 |
-
#: ../
|
1005 |
-
|
1006 |
-
|
|
|
1007 |
|
1008 |
-
#: ../
|
1009 |
-
|
1010 |
-
|
|
|
1011 |
|
1012 |
-
#: ../
|
1013 |
-
|
1014 |
-
|
|
|
1015 |
|
1016 |
-
#: ../
|
1017 |
-
|
1018 |
-
|
|
|
1019 |
|
1020 |
-
#: ../
|
1021 |
-
|
1022 |
-
"
|
1023 |
-
"
|
1024 |
-
msgstr ""
|
1025 |
-
"Azoknak az adminisztrátoroknak az e-mail címe, akik értesítést kapnak a "
|
1026 |
-
"levelek küldéséről"
|
1027 |
|
1028 |
-
#: ../
|
|
|
1029 |
msgid ""
|
1030 |
-
"
|
1031 |
-
"
|
1032 |
-
msgstr ""
|
1033 |
-
"Ha szeretnénk, hogy az adminisztrátor értesüljön egy új feliratkozóról, "
|
1034 |
-
"állítsuk \"IGEN\"-re. "
|
1035 |
|
1036 |
-
#: ../
|
1037 |
-
|
1038 |
-
msgid "
|
1039 |
-
msgstr "
|
1040 |
|
1041 |
-
#: ../
|
1042 |
-
|
1043 |
-
msgid "
|
1044 |
-
msgstr "
|
1045 |
|
1046 |
-
#: ../
|
1047 |
-
|
1048 |
-
|
|
|
1049 |
|
1050 |
-
#: ../
|
1051 |
-
|
1052 |
-
|
|
|
1053 |
|
1054 |
-
#: ../
|
1055 |
-
|
1056 |
-
|
|
|
1057 |
|
1058 |
-
#: ../
|
|
|
1059 |
msgid ""
|
1060 |
-
"
|
1061 |
-
"
|
1062 |
msgstr ""
|
1063 |
-
"
|
1064 |
-
"
|
1065 |
-
|
1066 |
-
#: ../settings/settings-edit.php:213
|
1067 |
-
msgid ""
|
1068 |
-
"To send welcome email to subscriber after successful signup. This option "
|
1069 |
-
"must be set to YES."
|
1070 |
-
msgstr "Ha szeretnéd egy levélben üdvözölni az új feliratkozót, állítsd IGEN-re"
|
1071 |
|
1072 |
-
#: ../
|
1073 |
-
|
1074 |
-
|
|
|
1075 |
|
1076 |
-
#: ../
|
1077 |
-
|
1078 |
-
|
1079 |
-
|
1080 |
-
#: ../settings/settings-edit.php:254
|
1081 |
-
msgid "Text to display after an email address is unsubscribed"
|
1082 |
-
msgstr "A leiratkozás után megjelenő szöveg."
|
1083 |
-
|
1084 |
-
#: ../settings/settings-edit.php:269
|
1085 |
-
msgid "Error in the Unsubscribe Link"
|
1086 |
-
msgstr "A leriratkozó link hibás."
|
1087 |
|
1088 |
-
#: ../
|
1089 |
-
|
|
|
1090 |
msgstr ""
|
1091 |
-
"
|
1092 |
-
"
|
1093 |
-
|
1094 |
-
#: ../settings/settings-edit.php:288
|
1095 |
-
msgid "Subscribers Menu"
|
1096 |
-
msgstr "Előfizetők"
|
1097 |
-
|
1098 |
-
#: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
|
1099 |
-
#: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
|
1100 |
-
#: settings/settings-edit.php:340
|
1101 |
-
msgid "Administrator Only"
|
1102 |
-
msgstr "Csak adminisztrátor"
|
1103 |
|
1104 |
-
#: ../
|
1105 |
-
|
1106 |
-
|
1107 |
-
|
1108 |
-
msgstr "Adminisztrátor/Szerkesztő"
|
1109 |
|
1110 |
-
#: ../
|
1111 |
-
|
1112 |
-
|
1113 |
-
|
1114 |
-
msgstr "Adminisztrátor/Szerkesztő/Szerző/Közreműködő"
|
1115 |
|
1116 |
-
#: ../
|
1117 |
-
|
1118 |
-
|
|
|
1119 |
|
1120 |
-
#: ../
|
1121 |
-
|
1122 |
-
msgid "
|
1123 |
-
msgstr "
|
1124 |
|
1125 |
-
#: ../
|
1126 |
-
|
1127 |
-
|
|
|
1128 |
|
1129 |
-
#: ../
|
1130 |
-
|
1131 |
-
|
|
|
1132 |
|
1133 |
-
#: ../
|
1134 |
-
|
1135 |
-
"
|
1136 |
-
"
|
1137 |
-
msgstr "Ez a időzített kiküldés URL-je. Ezta mezőt nem lehet módosítani. "
|
1138 |
|
1139 |
-
#: ../
|
1140 |
-
|
1141 |
-
|
|
|
1142 |
|
1143 |
-
#: ../
|
1144 |
-
|
1145 |
-
|
|
|
1146 |
|
1147 |
-
#: ../
|
1148 |
-
|
1149 |
-
|
|
|
1150 |
|
1151 |
-
#: ../
|
1152 |
-
|
1153 |
-
|
|
|
1154 |
|
1155 |
-
#: ../
|
1156 |
-
|
1157 |
-
|
|
|
1158 |
|
1159 |
-
#: ../
|
1160 |
-
|
1161 |
-
|
|
|
1162 |
|
1163 |
-
#: ../
|
1164 |
-
msgid "
|
1165 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1166 |
|
1167 |
-
#: ../settings/settings-edit.php:
|
1168 |
-
msgid "
|
1169 |
-
msgstr "
|
1170 |
|
1171 |
-
#: ../
|
1172 |
-
|
1173 |
-
|
|
|
1174 |
|
1175 |
-
#: ../
|
1176 |
-
msgid "
|
1177 |
-
msgstr "
|
1178 |
|
1179 |
-
#: ../
|
1180 |
-
msgid "
|
1181 |
-
msgstr "
|
1182 |
|
1183 |
-
#: ../
|
1184 |
-
msgid "
|
1185 |
-
msgstr "
|
1186 |
|
1187 |
-
#: ../
|
1188 |
-
msgid "
|
1189 |
-
msgstr "
|
1190 |
|
1191 |
-
#: ../
|
1192 |
-
msgid "
|
1193 |
-
msgstr "
|
1194 |
|
1195 |
-
#: ../
|
1196 |
-
msgid "
|
1197 |
-
msgstr "
|
1198 |
|
1199 |
-
#: ../
|
1200 |
-
#:
|
1201 |
-
msgid "
|
1202 |
-
msgstr "
|
1203 |
|
1204 |
-
#: ../
|
1205 |
-
|
1206 |
-
|
1207 |
-
|
1208 |
-
"értesítő levelekről"
|
1209 |
|
1210 |
-
#: ../
|
1211 |
-
msgid "
|
1212 |
-
msgstr "
|
1213 |
|
1214 |
-
#: ../
|
1215 |
-
|
1216 |
-
|
1217 |
-
msgstr "Előnézet"
|
1218 |
|
1219 |
-
#: ../
|
1220 |
-
msgid "
|
1221 |
-
msgstr "
|
1222 |
|
1223 |
-
#: ../
|
1224 |
-
#:
|
1225 |
-
#:
|
1226 |
-
|
1227 |
-
|
|
|
|
|
|
|
|
|
1228 |
|
1229 |
-
#: ../
|
1230 |
-
|
1231 |
-
|
1232 |
-
msgstr "Elküldve"
|
1233 |
|
1234 |
-
#: ../
|
1235 |
-
msgid "
|
1236 |
-
msgstr "
|
1237 |
|
1238 |
-
#: ../
|
1239 |
-
msgid "
|
1240 |
-
msgstr "
|
1241 |
|
1242 |
-
#: ../
|
1243 |
-
msgid "
|
1244 |
-
msgstr "
|
1245 |
|
1246 |
-
#: ../
|
1247 |
-
|
1248 |
-
|
1249 |
-
msgid "Action"
|
1250 |
-
msgstr "Action"
|
1251 |
|
1252 |
-
|
1253 |
-
|
1254 |
-
|
|
|
1255 |
|
1256 |
-
#: ../
|
|
|
1257 |
msgid ""
|
1258 |
-
"
|
1259 |
-
"
|
1260 |
msgstr ""
|
1261 |
-
"
|
1262 |
-
"
|
1263 |
|
1264 |
-
#: ../
|
1265 |
-
msgid "
|
1266 |
-
msgstr "
|
1267 |
|
1268 |
-
#: ../
|
1269 |
-
msgid "
|
1270 |
-
msgstr "
|
1271 |
|
1272 |
-
#: ../
|
1273 |
-
|
1274 |
-
|
1275 |
-
msgid "Sno"
|
1276 |
-
msgstr "Sno"
|
1277 |
|
1278 |
-
#: ../
|
1279 |
-
msgid "
|
1280 |
-
msgstr "
|
1281 |
|
1282 |
-
#: ../
|
1283 |
-
msgid "
|
1284 |
-
msgstr "
|
1285 |
|
1286 |
-
#: ../
|
1287 |
-
msgid "
|
1288 |
-
msgstr "
|
1289 |
|
1290 |
-
#: ../
|
1291 |
-
|
1292 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1293 |
|
1294 |
-
#: ../
|
1295 |
-
msgid ""
|
1296 |
-
|
1297 |
-
"the Group name."
|
1298 |
-
msgstr "HIBA: Az alábbi karakterek nem engedélyezettek: ['^$%&*()}{@#~?><>,|=_+\\\"])"
|
1299 |
|
1300 |
-
#: ../
|
1301 |
-
|
1302 |
-
|
|
|
|
|
|
|
|
|
|
|
1303 |
|
1304 |
-
#: ../
|
1305 |
-
|
1306 |
-
|
|
|
1307 |
|
1308 |
-
#: ../
|
1309 |
-
|
1310 |
-
|
|
|
1311 |
|
1312 |
-
#: ../
|
1313 |
-
#:
|
1314 |
-
msgid "
|
1315 |
-
msgstr "
|
1316 |
|
1317 |
-
#: ../
|
1318 |
-
#:
|
1319 |
-
msgid "
|
1320 |
-
msgstr "
|
1321 |
|
1322 |
-
#: ../
|
1323 |
-
|
1324 |
-
|
|
|
1325 |
|
1326 |
-
#: ../
|
1327 |
-
|
1328 |
-
|
|
|
1329 |
|
1330 |
-
#: ../
|
1331 |
-
#:
|
1332 |
-
|
1333 |
-
|
1334 |
-
msgid "Add New Subscriber"
|
1335 |
-
msgstr "Új előfizető hozzáadása"
|
1336 |
|
1337 |
-
#: ../
|
1338 |
-
#:
|
1339 |
-
|
1340 |
-
|
1341 |
-
msgstr "Exportálás"
|
1342 |
|
1343 |
-
#: ../
|
1344 |
-
#: show.php:
|
1345 |
-
|
1346 |
-
|
1347 |
-
msgid "Sync"
|
1348 |
-
msgstr "Szinkronizálás"
|
1349 |
|
1350 |
-
#: ../
|
1351 |
-
|
1352 |
-
|
|
|
1353 |
|
1354 |
-
#: ../
|
1355 |
-
|
1356 |
-
|
|
|
1357 |
|
1358 |
-
#: ../
|
1359 |
-
|
1360 |
-
|
|
|
1361 |
|
1362 |
-
#: ../
|
1363 |
-
|
1364 |
-
|
|
|
|
|
1365 |
|
1366 |
-
#: ../
|
1367 |
-
|
1368 |
-
|
1369 |
-
msgid "Confirmed"
|
1370 |
-
msgstr "Megerősítve"
|
1371 |
|
1372 |
-
#: ../
|
1373 |
-
|
1374 |
-
|
1375 |
-
msgid "Unconfirmed"
|
1376 |
-
msgstr "Nem megerősített"
|
1377 |
|
1378 |
-
#: ../
|
1379 |
-
|
1380 |
-
|
1381 |
-
msgid "Unsubscribed"
|
1382 |
-
msgstr "Leiratkozva"
|
1383 |
|
1384 |
-
#: ../
|
1385 |
-
msgid "
|
1386 |
-
msgstr "
|
1387 |
|
1388 |
-
#: ../
|
1389 |
-
#:
|
1390 |
-
msgid "
|
1391 |
-
msgstr "
|
1392 |
|
1393 |
-
#: ../
|
1394 |
-
#:
|
1395 |
-
|
1396 |
-
|
1397 |
-
msgid "Import"
|
1398 |
-
msgstr "Importálás"
|
1399 |
|
1400 |
-
#: ../
|
1401 |
-
msgid "
|
1402 |
-
msgstr "
|
1403 |
|
1404 |
-
#: ../
|
1405 |
-
msgid "
|
1406 |
-
|
|
|
|
|
|
|
|
|
1407 |
|
1408 |
-
#: ../
|
1409 |
-
#:
|
1410 |
-
msgid "
|
1411 |
-
msgstr "
|
1412 |
|
1413 |
-
#: ../
|
1414 |
-
|
1415 |
-
|
1416 |
-
"
|
1417 |
-
"beállítást \"kettős opt-in\" - re kell változtatni."
|
1418 |
|
1419 |
-
#: ../
|
1420 |
-
#:
|
1421 |
-
|
1422 |
-
|
1423 |
-
msgstr "Nem választottál ki egyetlen adatot sem"
|
1424 |
|
1425 |
-
#: ../
|
1426 |
-
|
1427 |
-
|
|
|
1428 |
|
1429 |
-
#: ../subscribers/view-subscriber-show.
|
1430 |
-
|
1431 |
-
|
|
|
1432 |
|
1433 |
-
#: ../subscribers/view-subscriber-show.
|
1434 |
-
|
1435 |
-
|
|
|
1436 |
|
1437 |
-
#: ../
|
1438 |
-
|
1439 |
-
|
|
|
|
|
1440 |
|
1441 |
-
#: ../subscribers/view-subscriber-show.php:
|
1442 |
-
msgid "
|
1443 |
-
msgstr "
|
1444 |
|
1445 |
-
#: ../
|
1446 |
-
|
1447 |
-
|
1448 |
-
msgstr "Feliratkozottak"
|
1449 |
|
1450 |
-
#: ../
|
1451 |
-
|
1452 |
-
|
1453 |
-
msgstr "Az aktív előfizetők száma: %s"
|
1454 |
-
|
1455 |
-
#: ../subscribers/view-subscriber-show.php:288
|
1456 |
-
msgid "Email Address"
|
1457 |
-
msgstr "E-mail cím"
|
1458 |
-
|
1459 |
-
#: ../subscribers/view-subscriber-show.php:289 ../classes/es-register.php:1061 ..
|
1460 |
-
#: classes/es-loadwidget.php:28
|
1461 |
-
msgid "Name"
|
1462 |
-
msgstr "Név"
|
1463 |
-
|
1464 |
-
#: ../subscribers/view-subscriber-show.php:291
|
1465 |
-
msgid "Group"
|
1466 |
-
msgstr "Előfizetői csoport"
|
1467 |
|
1468 |
-
#: ../
|
1469 |
-
msgid "
|
1470 |
-
msgstr "
|
1471 |
|
1472 |
-
#: ../
|
1473 |
-
msgid "
|
1474 |
-
msgstr "
|
1475 |
|
1476 |
-
#: ../
|
1477 |
-
|
1478 |
-
|
1479 |
-
msgstr "A visszaigazoló levél újbóli kiküldése"
|
1480 |
|
1481 |
-
#: ../
|
1482 |
-
msgid "
|
1483 |
-
msgstr "
|
1484 |
|
1485 |
-
#: ../
|
1486 |
-
msgid "Select
|
1487 |
-
msgstr "
|
1488 |
|
1489 |
-
#: ../
|
1490 |
-
msgid "Select
|
1491 |
-
msgstr "Válassza ki
|
1492 |
|
1493 |
-
#: ../
|
1494 |
-
msgid "
|
1495 |
-
msgstr "
|
1496 |
|
1497 |
-
#: ../
|
1498 |
-
msgid "
|
1499 |
-
msgstr "
|
1500 |
|
1501 |
-
#: ../
|
1502 |
-
msgid "
|
1503 |
-
msgstr "
|
1504 |
|
1505 |
-
#: ../
|
1506 |
-
|
1507 |
-
|
|
|
1508 |
|
1509 |
-
#: ../
|
1510 |
-
msgid "
|
1511 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1512 |
|
1513 |
-
#: ../
|
1514 |
-
msgid "
|
1515 |
-
msgstr "
|
1516 |
|
1517 |
-
#: ../
|
1518 |
-
msgid "
|
1519 |
-
msgstr "
|
1520 |
|
1521 |
-
#: ../
|
1522 |
-
msgid "
|
1523 |
-
msgstr "
|
1524 |
|
1525 |
-
#: ../
|
1526 |
-
msgid "
|
1527 |
-
msgstr "
|
1528 |
|
1529 |
-
#: ../
|
1530 |
-
msgid "
|
1531 |
-
msgstr "
|
1532 |
|
1533 |
-
#: ../
|
1534 |
-
msgid "
|
1535 |
-
msgstr "
|
1536 |
|
1537 |
-
#: ../
|
1538 |
-
|
1539 |
-
|
|
|
|
|
1540 |
|
1541 |
-
#: ../
|
1542 |
-
|
1543 |
-
|
1544 |
-
msgstr "Milyen típusú fájlba exportáljunk? "
|
1545 |
|
1546 |
-
#: ../
|
1547 |
-
#:
|
1548 |
-
|
1549 |
-
|
|
|
1550 |
|
1551 |
-
#: ../
|
1552 |
-
|
1553 |
-
|
|
|
1554 |
|
1555 |
-
#: ../
|
1556 |
-
msgid "
|
1557 |
-
msgstr "
|
1558 |
|
1559 |
-
#: ../
|
1560 |
-
|
1561 |
-
|
1562 |
-
msgid "Click to Export in CSV"
|
1563 |
-
msgstr "CSV fájl exportálása"
|
1564 |
|
1565 |
-
#: ../
|
1566 |
-
msgid "
|
1567 |
-
msgstr "
|
1568 |
|
1569 |
-
#: ../
|
1570 |
-
msgid "
|
1571 |
-
msgstr "
|
1572 |
|
1573 |
-
#: ../
|
1574 |
-
msgid "
|
1575 |
-
msgstr "
|
1576 |
|
1577 |
-
#: ../
|
1578 |
-
msgid "
|
1579 |
msgstr ""
|
1580 |
-
"
|
1581 |
-
"
|
1582 |
|
1583 |
-
#: ../
|
1584 |
-
msgid "
|
1585 |
-
msgstr "
|
1586 |
|
1587 |
-
#: ../
|
1588 |
-
msgid "
|
1589 |
-
msgstr "
|
1590 |
|
1591 |
-
#: ../
|
1592 |
-
msgid "
|
1593 |
-
msgstr "
|
1594 |
|
1595 |
-
#: ../
|
1596 |
-
msgid "
|
1597 |
-
msgstr "
|
1598 |
|
1599 |
-
#: ../
|
1600 |
-
|
1601 |
-
|
1602 |
-
msgstr "Írd be az előfizető e-mail címét!"
|
1603 |
|
1604 |
-
#: ../
|
1605 |
-
|
1606 |
-
|
|
|
|
|
1607 |
|
1608 |
-
#: ../
|
|
|
|
|
|
|
|
|
1609 |
msgid ""
|
1610 |
-
"
|
1611 |
-
"
|
1612 |
msgstr ""
|
1613 |
-
"
|
1614 |
-
"
|
1615 |
|
1616 |
-
#: ../
|
1617 |
-
msgid "
|
1618 |
-
msgstr "
|
1619 |
|
1620 |
-
#: ../
|
1621 |
-
msgid "
|
1622 |
-
msgstr "
|
1623 |
|
1624 |
-
#: ../
|
1625 |
-
msgid "
|
1626 |
-
msgstr "
|
1627 |
|
1628 |
-
#: ../
|
1629 |
-
msgid "
|
1630 |
-
msgstr "
|
1631 |
|
1632 |
-
#: ../
|
1633 |
-
msgid "
|
1634 |
-
msgstr "
|
1635 |
|
1636 |
-
#: ../
|
1637 |
-
msgid "
|
1638 |
-
msgstr "
|
1639 |
|
1640 |
-
#: ../
|
1641 |
-
msgid "
|
1642 |
-
msgstr "
|
1643 |
|
1644 |
-
#: ../
|
1645 |
-
msgid "
|
1646 |
-
msgstr "
|
1647 |
|
1648 |
-
#: ../
|
1649 |
-
msgid "
|
1650 |
-
msgstr "
|
1651 |
|
1652 |
-
#: ../
|
1653 |
-
msgid "
|
1654 |
-
|
|
|
|
|
1655 |
|
1656 |
-
#: ../
|
1657 |
-
msgid "
|
1658 |
-
msgstr "
|
1659 |
|
1660 |
-
#: ../
|
1661 |
-
msgid "
|
1662 |
-
msgstr "
|
1663 |
|
1664 |
-
#: ../
|
1665 |
-
msgid "
|
1666 |
-
msgstr "
|
1667 |
|
1668 |
-
#: ../
|
1669 |
-
msgid "
|
1670 |
-
msgstr "
|
1671 |
|
1672 |
-
#: ../
|
1673 |
-
msgid "
|
1674 |
-
msgstr "
|
1675 |
|
1676 |
-
#: ../subscribers/view-subscriber-
|
1677 |
-
|
1678 |
-
|
|
|
|
|
|
|
1679 |
|
1680 |
-
#: ../
|
1681 |
-
msgid "
|
1682 |
-
msgstr "
|
1683 |
|
1684 |
-
#: ../
|
1685 |
-
msgid "
|
1686 |
-
msgstr "
|
1687 |
|
1688 |
-
#: ../
|
1689 |
-
msgid "
|
1690 |
-
msgstr "
|
1691 |
|
1692 |
-
#: ../
|
1693 |
-
msgid "
|
1694 |
-
msgstr "Az
|
1695 |
|
1696 |
-
#: ../
|
1697 |
-
msgid "
|
1698 |
-
|
|
|
|
|
|
|
|
|
1699 |
|
1700 |
-
#: ../
|
1701 |
-
#: 58 ../job/es-optin.php:68
|
1702 |
msgid ""
|
1703 |
-
"
|
1704 |
-
"
|
1705 |
msgstr ""
|
1706 |
-
"
|
1707 |
-
"
|
1708 |
|
1709 |
-
#: ../
|
1710 |
-
msgid "
|
1711 |
-
msgstr "
|
1712 |
|
1713 |
-
#: ../
|
1714 |
-
msgid "
|
1715 |
-
msgstr "
|
1716 |
|
1717 |
-
#: ../
|
1718 |
-
|
1719 |
-
|
1720 |
-
msgstr "Feliratkozás"
|
1721 |
|
1722 |
-
#: ../
|
1723 |
-
msgid "
|
1724 |
-
|
|
|
|
|
|
|
|
|
1725 |
|
1726 |
-
#: ../
|
1727 |
-
|
1728 |
-
|
1729 |
-
|
1730 |
-
|
1731 |
-
#: 390 ../help/help.php:393 ../help/help.php:395
|
1732 |
-
#, php-format
|
1733 |
-
msgid "%s"
|
1734 |
-
msgstr "%s"
|
1735 |
|
1736 |
-
#: ../
|
1737 |
-
msgid "
|
1738 |
-
msgstr "
|
1739 |
|
1740 |
-
#: ../
|
1741 |
-
msgid "
|
1742 |
-
msgstr "A
|
1743 |
|
1744 |
-
#: ../
|
1745 |
-
msgid "
|
1746 |
-
msgstr "
|
1747 |
|
1748 |
-
#: ../
|
1749 |
-
msgid "
|
1750 |
-
msgstr "
|
1751 |
|
1752 |
-
#: ../
|
1753 |
-
msgid "
|
1754 |
-
msgstr "
|
|
|
|
|
1755 |
|
1756 |
-
#: ../
|
1757 |
-
msgid "
|
1758 |
-
msgstr "
|
1759 |
|
1760 |
-
#: ../
|
1761 |
-
|
1762 |
-
|
|
|
|
|
1763 |
|
1764 |
-
#: ../
|
1765 |
-
|
1766 |
-
|
|
|
|
|
1767 |
|
1768 |
-
#: ../
|
1769 |
-
|
1770 |
-
|
|
|
|
|
1771 |
|
1772 |
-
#: ../
|
1773 |
-
msgid "
|
1774 |
-
msgstr "
|
1775 |
|
1776 |
-
#: ../
|
1777 |
-
msgid "
|
1778 |
-
msgstr "
|
1779 |
|
1780 |
-
#: ../
|
1781 |
-
msgid "
|
1782 |
-
msgstr "
|
1783 |
|
1784 |
-
#: ../
|
1785 |
-
msgid "
|
1786 |
-
|
|
|
|
|
1787 |
|
1788 |
-
#: ../
|
1789 |
-
msgid "
|
1790 |
-
msgstr "
|
1791 |
|
1792 |
-
#: ../
|
1793 |
-
msgid "
|
1794 |
-
msgstr "
|
1795 |
|
1796 |
-
#: ../
|
1797 |
-
msgid "
|
1798 |
-
msgstr "
|
1799 |
|
1800 |
-
#: ../
|
1801 |
-
|
1802 |
-
|
1803 |
-
msgstr "Címzettek: %s"
|
1804 |
|
1805 |
-
#: ../
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1806 |
msgid ""
|
1807 |
-
"
|
1808 |
-
"
|
1809 |
-
"</strong><br>Click on Help for more information."
|
1810 |
msgstr ""
|
1811 |
-
"
|
1812 |
-
"
|
1813 |
-
"a súgóra további segítségért!"
|
1814 |
|
1815 |
-
#: ../
|
1816 |
-
msgid "
|
1817 |
-
msgstr "
|
1818 |
|
1819 |
-
#: ../
|
1820 |
-
msgid "
|
1821 |
-
msgstr "
|
1822 |
|
1823 |
-
#: ../
|
1824 |
-
msgid "
|
1825 |
-
msgstr "
|
1826 |
|
1827 |
-
#: ../
|
1828 |
-
|
1829 |
-
|
|
|
|
|
|
|
1830 |
|
1831 |
-
#: ../
|
1832 |
-
|
1833 |
-
|
|
|
|
|
|
|
1834 |
|
1835 |
-
#: ../
|
1836 |
-
|
1837 |
-
|
|
|
|
|
1838 |
|
1839 |
-
#: ../
|
1840 |
-
|
1841 |
-
|
|
|
|
|
|
|
1842 |
|
1843 |
-
#: ../
|
1844 |
-
msgid "
|
1845 |
-
msgstr "
|
1846 |
|
1847 |
-
#: ../
|
1848 |
-
msgid "
|
1849 |
-
msgstr "
|
1850 |
|
1851 |
-
#: ../
|
1852 |
-
msgid "
|
1853 |
-
msgstr "
|
1854 |
|
1855 |
-
#: ../
|
1856 |
-
|
1857 |
-
|
|
|
|
|
1858 |
|
1859 |
-
#: ../
|
1860 |
-
|
1861 |
-
|
|
|
|
|
1862 |
|
1863 |
-
#: ../
|
1864 |
-
|
1865 |
-
|
|
|
|
|
1866 |
|
1867 |
-
#: ../
|
1868 |
-
|
1869 |
-
|
1870 |
-
msgstr "Email Subscribers"
|
1871 |
|
1872 |
-
#: ../
|
1873 |
-
|
1874 |
-
|
|
|
1875 |
|
1876 |
-
#: ../
|
1877 |
-
|
1878 |
-
|
1879 |
-
msgstr "Adja meg az előfizető e-mail címét."
|
1880 |
|
1881 |
-
#: ../
|
1882 |
-
|
1883 |
-
|
1884 |
-
msgstr "Válassza ki az előfizető e-mail státuszát."
|
1885 |
|
1886 |
-
#: ../
|
1887 |
-
|
1888 |
-
|
1889 |
-
msgstr "Törölni akarja ezt az adatot?"
|
1890 |
|
1891 |
-
#: ../
|
1892 |
-
|
1893 |
-
|
1894 |
-
msgstr "Biztos törölni szeretnéd?"
|
1895 |
|
1896 |
-
#: ../
|
1897 |
-
|
1898 |
-
|
1899 |
-
msgstr "Kérem válassza a tömeges műveleteket!"
|
1900 |
|
1901 |
-
#: ../
|
1902 |
-
|
1903 |
-
|
1904 |
-
msgstr "Biztosan törlöd ezeket az adatokat? "
|
1905 |
|
1906 |
-
#: ../
|
1907 |
-
|
1908 |
-
|
1909 |
-
msgstr "KÉrem válassza ki az előfizetői csoportot"
|
1910 |
|
1911 |
-
#: ../
|
1912 |
-
|
1913 |
-
|
1914 |
-
msgstr "Add meg az előfizetők új státuszát!"
|
1915 |
|
1916 |
-
#: ../
|
1917 |
-
|
1918 |
-
|
1919 |
-
msgstr "Frissíteni akarja az előfizetői csoportokat? "
|
1920 |
|
1921 |
-
#: ../
|
1922 |
-
|
1923 |
-
|
1924 |
-
msgstr "Frissítsük a feliratkozók státuszát?"
|
1925 |
|
1926 |
-
#: ../
|
1927 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1928 |
msgid ""
|
1929 |
-
"
|
1930 |
-
"."
|
1931 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1932 |
|
1933 |
-
#: ../
|
1934 |
-
|
1935 |
-
|
1936 |
-
msgstr "Kérem válassza ki az előfizetői csoportot!"
|
1937 |
|
1938 |
-
#: ../
|
1939 |
-
|
1940 |
-
|
1941 |
-
msgstr "Válassza ki az értesítőlevél státuszát!"
|
1942 |
|
1943 |
-
#: ../
|
1944 |
-
|
1945 |
-
|
1946 |
-
msgstr "Valóban törölni akarja ezt az adatot? "
|
1947 |
|
1948 |
-
#: ../
|
1949 |
-
|
1950 |
-
|
1951 |
-
msgstr "Kérem töltse ki a levél tárgyát!"
|
1952 |
|
1953 |
-
#: ../
|
1954 |
-
|
1955 |
-
|
1956 |
-
msgstr "Az e-mail típusa (időzített vagy azonnali)"
|
1957 |
|
1958 |
-
#: ../
|
1959 |
-
|
1960 |
-
msgid ""
|
1961 |
-
|
1962 |
-
|
|
|
|
|
1963 |
msgstr ""
|
1964 |
-
"
|
1965 |
-
"
|
1966 |
|
1967 |
-
#: ../
|
1968 |
-
|
1969 |
-
|
1970 |
-
|
|
|
1971 |
|
1972 |
-
#: ../
|
1973 |
-
|
1974 |
-
|
1975 |
-
msgstr "Minden adatot törölni szeretne az utolsó 10 kivételével?"
|
1976 |
|
1977 |
-
#: ../
|
1978 |
-
|
1979 |
-
|
1980 |
-
msgstr ""
|
1981 |
-
"Kérem írja be, hány darab e-mailt szeretne óránként vagy ciklusonként "
|
1982 |
-
"küldeni?"
|
1983 |
|
1984 |
-
#: ../
|
1985 |
-
|
1986 |
-
|
1987 |
-
msgstr "Kérem egy számot adjon meg, hány e-mail? "
|
1988 |
|
1989 |
-
#: ../
|
1990 |
-
|
1991 |
-
|
1992 |
-
msgstr "Kérjük adja meg az e-mail címét"
|
1993 |
|
1994 |
-
#: ../
|
1995 |
-
|
1996 |
-
|
1997 |
-
msgstr "Kérem adjon meg egy érvényes e-mail címet!"
|
1998 |
|
1999 |
-
#: ../
|
2000 |
-
|
2001 |
-
msgid "
|
2002 |
-
msgstr "
|
2003 |
|
2004 |
-
#: ../
|
2005 |
-
|
2006 |
-
|
2007 |
-
msgstr "Nem lehet ilyen XMLHTTP-t létrehozni"
|
2008 |
|
2009 |
-
#: ../
|
2010 |
-
|
2011 |
-
|
2012 |
-
msgstr "Sikeres feliratkozás"
|
2013 |
|
2014 |
-
#: ../
|
2015 |
-
|
2016 |
-
|
2017 |
-
msgstr "Ez az e-mail cím már létezik"
|
2018 |
|
2019 |
-
#: ../
|
2020 |
-
|
2021 |
-
|
2022 |
-
msgstr "Váratlan hiba"
|
2023 |
|
2024 |
-
#: ../
|
2025 |
-
|
2026 |
-
msgid "
|
2027 |
-
msgstr "
|
2028 |
|
2029 |
-
#: ../
|
2030 |
-
|
2031 |
-
|
2032 |
-
msgstr "Kérem próbálja meg kicsit később!"
|
2033 |
|
2034 |
-
#: ../
|
2035 |
-
|
2036 |
-
|
2037 |
-
msgstr "Sajnos valami hiba történt."
|
2038 |
|
2039 |
-
#: ../
|
2040 |
-
|
2041 |
-
|
2042 |
-
msgstr "KÉrem adja meg az e-mail címét!"
|
2043 |
|
2044 |
-
#: ../
|
2045 |
-
|
2046 |
-
|
2047 |
-
msgstr "Kérem adjon meg egy érvényes e-mail címet."
|
2048 |
|
2049 |
-
#: ../
|
2050 |
-
|
2051 |
-
|
2052 |
-
msgstr "Kis türelmet..."
|
2053 |
|
2054 |
-
#: ../
|
2055 |
-
|
2056 |
-
|
2057 |
-
msgstr "Nem lehet ilyen XMLHTTP-t létrehozni"
|
2058 |
|
2059 |
-
#: ../
|
2060 |
-
|
2061 |
-
|
2062 |
-
msgstr "Sikeres feliratkozás."
|
2063 |
|
2064 |
-
#: ../
|
2065 |
-
|
2066 |
-
|
2067 |
-
msgstr "Ilyen e-mail cím már létezik. "
|
2068 |
|
2069 |
-
#: ../
|
2070 |
-
|
2071 |
-
|
2072 |
-
msgstr "Váratlan hiba lépett fel"
|
2073 |
|
2074 |
-
#: ../
|
2075 |
-
|
2076 |
-
|
2077 |
-
msgstr "Hibás e-mail cím."
|
2078 |
|
2079 |
-
#: ../
|
2080 |
-
|
2081 |
-
|
2082 |
-
msgstr "Kérem próbálja meg később. "
|
2083 |
|
2084 |
-
#: ../
|
2085 |
-
|
2086 |
-
|
2087 |
-
msgstr "Valami hiba történt. "
|
2088 |
|
2089 |
-
#: ../
|
2090 |
-
msgid ""
|
2091 |
-
"
|
2092 |
-
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
2093 |
-
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
2094 |
-
"</a> rating. A huge thank you from Icegram in advance!"
|
2095 |
-
msgstr ""
|
2096 |
-
"Ha tetszett az <strong>Email Subscribers bővítmény </strong>, kérem adjon "
|
2097 |
-
"értékelést:<a target=\"_blank\" href=\"https://wordpress."
|
2098 |
-
"org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">★"
|
2099 |
-
"★★★★</a> . Köszönjük előre is. "
|
2100 |
|
2101 |
-
#: ../
|
2102 |
-
msgid "
|
2103 |
-
msgstr "
|
2104 |
|
2105 |
-
#: ../
|
2106 |
-
msgid "
|
2107 |
-
msgstr "
|
2108 |
|
2109 |
-
#: ../
|
2110 |
-
msgid "
|
2111 |
-
msgstr "
|
2112 |
|
2113 |
-
#: ../
|
2114 |
-
msgid "Email
|
2115 |
-
msgstr "E-
|
2116 |
|
2117 |
-
#: ../
|
2118 |
-
msgid "
|
2119 |
-
msgstr "
|
2120 |
|
2121 |
-
#: ../
|
2122 |
-
msgid "
|
2123 |
-
msgstr "
|
2124 |
|
2125 |
-
|
2126 |
-
msgid "
|
2127 |
-
msgstr "
|
2128 |
|
2129 |
-
|
2130 |
-
msgid "
|
2131 |
-
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.12\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Tue Apr 17 2018 15:28:28 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Hungarian\n"
|
22 |
"X-Loco-Target-Locale: hu_HU\n"
|
23 |
"X-Poedit-SearchPath-0: .."
|
24 |
|
25 |
+
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
26 |
+
#: register.php:789 ../classes/es-register.php:790 ../classes/es-register.php:795
|
27 |
+
msgid "Templates"
|
|
|
|
|
|
|
|
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: ../classes/es-register.php:184
|
31 |
+
msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: ../classes/es-register.php:201
|
35 |
+
msgctxt "view-subscriber-enhanced-select"
|
36 |
+
msgid ""
|
37 |
+
"Do you want to resend confirmation email? Also please note, this will update "
|
38 |
+
"subscriber current status to 'Unconfirmed'."
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: ../classes/es-register.php:215
|
42 |
+
msgctxt "notification-enhanced-select"
|
43 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: ../classes/es-register.php:260
|
47 |
+
msgctxt "widget-enhanced-select"
|
48 |
msgid ""
|
49 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
50 |
+
"subscription. If you don't see the email within a few minutes, check the "
|
51 |
+
"spam/junk folder."
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: ../classes/es-register.php:274
|
55 |
+
msgctxt "widget-page-enhanced-select"
|
56 |
+
msgid ""
|
57 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
58 |
+
"subscription. If you don't see the email within a few minutes, check the "
|
59 |
+
"spam/junk folder."
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: ../classes/es-register.php:739
|
63 |
msgid ""
|
64 |
+
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
65 |
+
"subscribers list?</b> Come check our Pro plan."
|
|
|
|
|
|
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: ../classes/es-register.php:740
|
69 |
+
msgid "Check Pro plan "
|
|
|
|
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: ../classes/es-register.php:740
|
73 |
+
msgid "Not interested."
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: ../classes/es-register.php:780
|
77 |
+
#, php-format
|
78 |
+
msgid "Email Subscribers version: <strong>%s</strong>"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: ../classes/es-register.php:791 ../classes/es-register.php:792
|
82 |
+
msgid "Add new Template"
|
|
|
|
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: ../classes/es-register.php:793
|
86 |
+
msgid "Edit Templates"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: ../classes/es-register.php:794
|
90 |
+
msgid "New Templates"
|
|
|
|
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: ../classes/es-register.php:796
|
94 |
+
msgid "View Templates"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: ../classes/es-register.php:797
|
98 |
+
msgid "Search Templates"
|
|
|
|
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: ../classes/es-register.php:798
|
102 |
+
msgid "No Templates found"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: ../classes/es-register.php:799
|
106 |
+
msgid "No Templates found in Trash"
|
|
|
|
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: ../classes/es-register.php:802
|
110 |
+
msgid "Thumbnail (For Visual Representation only)"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: ../classes/es-register.php:803
|
114 |
+
msgid "Set thumbnail"
|
|
|
|
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: ../classes/es-register.php:840
|
118 |
+
msgid "Template Type"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: ../classes/es-register.php:906
|
122 |
+
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
|
|
|
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: ../classes/es-register.php:909
|
126 |
+
msgid "Select your Email Template Type"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: ../classes/es-register.php:959
|
130 |
+
msgid "Preview Template"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: ../classes/es-register.php:973
|
134 |
+
#, php-format
|
135 |
msgid ""
|
136 |
+
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
137 |
+
"{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
|
138 |
+
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: ../classes/es-register.php:974
|
142 |
+
#, php-format
|
143 |
+
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: ../export/export-email-address.php:50 ../export/export-email-address.php:54
|
147 |
+
msgid "Unexpected url submit has been detected!"
|
|
|
|
|
|
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: ../help/help.php:185
|
151 |
+
msgid "Thanks for installing and we hope you will enjoy using this plugin."
|
|
|
|
|
|
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: ../help/help.php:186
|
155 |
msgid ""
|
156 |
+
"By default, subscribers subscribed via Email Subscribers, will receive email "
|
157 |
+
"updates when you post a new blog. You can turn these updates off like this:"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: ../help/help.php:187
|
161 |
msgid ""
|
162 |
+
"Email Subscribers -> Post Notification -> Edit -> Select Notification Status "
|
163 |
+
"when a new post is published -> Disable -> Save."
|
|
|
|
|
|
|
|
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: ../help/help.php:191
|
167 |
+
msgid "Get more help and tips..."
|
|
|
|
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: ../help/help.php:205
|
171 |
+
#, php-format
|
172 |
+
msgid "Version: %s"
|
|
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: ../help/help.php:208
|
176 |
+
msgid "Questions? Need Help?"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: ../help/help.php:209
|
180 |
+
msgid "Contact Us"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: ../help/help.php:214
|
184 |
+
#, php-format
|
185 |
+
msgid ""
|
186 |
+
"<b>Like Email Subscribers?</b> If yes, then consider %s to support further "
|
187 |
+
"developments."
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: ../help/help.php:249
|
191 |
+
msgid "Description"
|
|
|
|
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: ../help/help.php:251
|
195 |
msgid ""
|
196 |
+
"Email Subscribers is a complete newsletter plugin which lets you collect "
|
197 |
+
"leads, send automated new blog post notification emails, create & send "
|
198 |
+
"newsletters and manage all this in one single place."
|
|
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: ../help/help.php:253
|
202 |
+
msgid "Feature Overview"
|
|
|
|
|
|
|
|
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: ../help/help.php:256
|
206 |
msgid ""
|
207 |
+
"Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
|
208 |
+
"Code)."
|
|
|
|
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: ../help/help.php:259
|
212 |
+
msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
|
|
|
|
|
|
|
|
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: ../help/help.php:262
|
216 |
+
msgid "Send automatic welcome email to subscribers."
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: ../help/help.php:265
|
220 |
msgid ""
|
221 |
+
"Send new post notification emails to subscribers when new posts are "
|
222 |
+
"published on your website."
|
|
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: ../help/help.php:268
|
226 |
+
msgid "Schedule email (Cron job) or send them manually."
|
|
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: ../help/help.php:271
|
230 |
+
msgid "Send email notification to admin when a new user signs up."
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: ../help/help.php:274
|
234 |
+
msgid "Automatically add Unsubscribe link in the email."
|
|
|
|
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: ../help/help.php:277
|
238 |
+
msgid "Easily migrate subscribers from another app using Import & Export."
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: ../help/help.php:280
|
242 |
+
msgid "Use HTML editor to create newsletters and post notifications."
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: ../help/help.php:283
|
246 |
+
msgid "Send newsletters to different groups."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
247 |
msgstr ""
|
248 |
|
249 |
#: ../help/help.php:286
|
305 |
"Roles"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: ../help/help.php:327
|
309 |
+
msgid "How does Sync work?"
|
310 |
msgstr ""
|
311 |
|
312 |
#: ../help/help.php:333
|
313 |
+
msgid "How to Add/Update Existing Subscribers Group & Status?"
|
314 |
+
msgstr ""
|
315 |
+
|
316 |
+
#: ../help/help.php:336
|
317 |
msgid "How to change/update/translate any texts from the plugin?"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: ../help/help.php:342
|
321 |
msgid "How to check sent emails?"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: ../help/help.php:354
|
325 |
msgid "Create and Send Newsletter Emails"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: ../help/help.php:357
|
329 |
msgid "Keywords in the Newsletters"
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: ../help/help.php:364
|
333 |
msgid "Create and Send Post Notification Emails when new posts are published"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: ../help/help.php:367
|
337 |
msgid "Keywords in the Post Notifications"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: ../help/help.php:370
|
341 |
msgid "Send a test post notification email to myself/testgroup"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: ../help/help.php:375
|
345 |
msgid "Cron Job Setup"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: ../help/help.php:378
|
349 |
msgid "What is Cron and how to Schedule Cron Emails?"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: ../help/help.php:381
|
353 |
msgid "Schedule Cron Emails in cPanel"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: ../help/help.php:384
|
357 |
msgid "Schedule Cron Emails in Parallels Plesk"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: ../help/help.php:387
|
361 |
msgid "Hosting doesn’t support Cron Jobs?"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: ../help/help.php:390
|
365 |
msgid "Troubleshooting Steps"
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: ../help/help.php:398
|
369 |
msgid "FAQ's"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: ../help/help.php:404
|
373 |
msgid "Want to do more? Here's how.."
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: ../help/help.php:407
|
377 |
msgid "Allow Subscribers to get subscribed to any group"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: ../help/help.php:412
|
381 |
msgid "Using our <b>free</b> "
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: ../help/help.php:413
|
385 |
msgid "Group Selector"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: ../help/help.php:414
|
389 |
msgid ""
|
390 |
"plugin, you can extend Email Subscribers Form functionality by providing an "
|
391 |
"grouping option right next to the form."
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: ../help/help.php:417
|
395 |
msgid "The user can then subscribe to whichever group most appeals to them."
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: ../help/help.php:420
|
399 |
msgid "For example: Subscribe either to Updates or to Offers."
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: ../help/help.php:424
|
403 |
msgid "Show your subscribe form inside attractive popups"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: ../help/help.php:429
|
407 |
msgid ""
|
408 |
"Don't limit your subscriber form to a widget. Embed it within popups, hello "
|
409 |
"bars, slide-ins, sidebars, full screen popups etc."
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: ../help/help.php:432
|
413 |
msgid ""
|
414 |
"Using Email Subscribers you can achieve this easily with our <b>free</b> "
|
415 |
"plugin "
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: ../help/help.php:436
|
419 |
msgid ""
|
420 |
"Icegram's beautiful designs instantly capture user attention and help "
|
421 |
"increase sign-ups to your WordPress website."
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: ../help/help.php:439 ../help/help.php:459
|
425 |
#, php-format
|
426 |
msgid "How to %s"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: ../help/help.php:439
|
430 |
msgid "show subscribe form inside a popup"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: ../help/help.php:443
|
434 |
msgid "Get beautiful and elegant form styles"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: ../help/help.php:449
|
438 |
msgid "Email subscribers easily integrates with another <b>free</b> plugin "
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: ../help/help.php:450
|
442 |
msgid "Rainmaker"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: ../help/help.php:453
|
446 |
msgid ""
|
447 |
"Rainmaker extends the core features of Email Subscribers and provides "
|
448 |
"elegant form styles."
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: ../help/help.php:456
|
452 |
msgid ""
|
453 |
"These styles are well designed and beautify your subscription form making it "
|
454 |
"more appealing."
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: ../help/help.php:459
|
458 |
msgid "add Rainmaker’s form in Email Subscribers"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
|
462 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
|
|
|
|
|
|
|
|
|
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
466 |
+
#: 164
|
467 |
+
msgid "(Use templates menu to create new)"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: ../sendmail/sendmail.php:59
|
471 |
+
msgid "Email sent successfully. "
|
|
|
|
|
|
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: ../sentmail/sentmail-preview.php:27
|
475 |
+
msgid "Preview Email"
|
|
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: ../sentmail/sentmail-preview.php:31
|
|
|
479 |
msgid ""
|
480 |
+
"This is how the email you sent may look. <br>Note: Different email services "
|
481 |
+
"(like gmail, yahoo etc) display email content differently. So there could be "
|
482 |
+
"a slight variation on how your customer will view the email content."
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: ../settings/settings-edit.php:89
|
486 |
+
msgid "Email Type"
|
|
|
|
|
|
|
|
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: ../settings/settings-edit.php:90
|
490 |
msgid ""
|
491 |
+
"Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
|
492 |
+
"Option 3 & 4 is to send emails with PHP method mail()."
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: ../settings/settings-edit.php:104
|
496 |
+
msgid "Opt-In Type"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: ../settings/settings-edit.php:105
|
500 |
+
msgid ""
|
501 |
+
"Double Opt-In : In this type, the subscriber is sent an activation link as "
|
502 |
+
"soon as they subscribe to your list. They have to confirm their subscription "
|
503 |
+
"by clicking on the activation link.<br />Single Opt-In : In this type, the "
|
504 |
+
"subscriber is not asked to confirm their email address. They are subscribed "
|
505 |
+
"directly in the list."
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: ../settings/settings-edit.php:117
|
509 |
+
msgid ""
|
510 |
+
"Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
|
511 |
+
"Emails."
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: ../settings/settings-edit.php:136
|
515 |
+
msgid "Notify Admin when a new subscriber signs up"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: ../settings/settings-edit.php:149
|
519 |
+
msgid "Admin Email Subject on new subscriber sign up"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: ../settings/settings-edit.php:150
|
523 |
+
msgid ""
|
524 |
+
"Subject for the admin email whenever a new subscriber signs up and is "
|
525 |
+
"confirmed."
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: ../settings/settings-edit.php:156
|
529 |
+
msgid "Admin Email Content on new subscriber signs up"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: ../settings/settings-edit.php:157
|
533 |
+
msgid ""
|
534 |
+
"Content for the admin email whenever a new subscriber signs up and is "
|
535 |
+
"confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: ../settings/settings-edit.php:165
|
539 |
+
msgid "Subject for the email report which will be sent to admin."
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: ../settings/settings-edit.php:172
|
543 |
+
msgid ""
|
544 |
+
"Content for the email report which will be sent to admin.<br />Available "
|
545 |
+
"Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: ../settings/settings-edit.php:183
|
549 |
+
msgid "Double Opt-In Email Subject (Confirmation Email)"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: ../settings/settings-edit.php:184
|
553 |
+
msgid ""
|
554 |
+
"Subject for the confirmation email to be sent for Double Opt-In whenever a "
|
555 |
+
"subscriber signs up."
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: ../settings/settings-edit.php:190
|
559 |
+
msgid "Double Opt-In Email Content (Confirmation Email)"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: ../settings/settings-edit.php:191
|
563 |
+
msgid ""
|
564 |
+
"Content for the confirmation email to be sent for Double Opt-In whenever a "
|
565 |
+
"subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: ../settings/settings-edit.php:197
|
569 |
+
msgid "Double Opt-In Confirmation Link"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: ../settings/settings-edit.php:204
|
573 |
+
msgid ""
|
574 |
+
"Text to display after an email address is successfully subscribed from "
|
575 |
+
"Double Opt-In (Confirmation) Email"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: ../settings/settings-edit.php:212
|
579 |
+
msgid "Send Welcome Email to New Subscribers after Sign Up?"
|
|
|
|
|
|
|
|
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: ../settings/settings-edit.php:224
|
583 |
+
msgid "Subject for Welcome Email"
|
|
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: ../settings/settings-edit.php:225
|
587 |
+
msgid ""
|
588 |
+
"Subject for the subscriber welcome email. This will be sent whenever a "
|
589 |
+
"user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
|
590 |
+
"Opt-In) successfully."
|
591 |
+
msgstr ""
|
592 |
|
593 |
+
#: ../settings/settings-edit.php:231
|
594 |
+
msgid "Email Content for Welcome Email"
|
595 |
+
msgstr ""
|
596 |
|
597 |
+
#: ../settings/settings-edit.php:232
|
598 |
+
msgid ""
|
599 |
+
"Content for the subscriber welcome email whenever a user's email is either "
|
600 |
+
"confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
|
601 |
+
"<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
|
602 |
+
msgstr ""
|
603 |
|
604 |
+
#: ../settings/settings-edit.php:241
|
605 |
+
msgid ""
|
606 |
+
"This unsubscribe link is automatically added to all the emails that are sent "
|
607 |
+
"from this plugin. It is a readonly field and you are advised not to modify "
|
608 |
+
"it."
|
609 |
+
msgstr ""
|
610 |
|
611 |
+
#: ../settings/settings-edit.php:248
|
612 |
+
msgid ""
|
613 |
+
"The text for the unsubscribe link. This text is automatically added with "
|
614 |
+
"unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
|
615 |
+
msgstr ""
|
616 |
|
617 |
+
#: ../settings/settings-edit.php:255
|
618 |
+
msgid ""
|
619 |
+
"This text will be displayed once user clicks on unsubscribe link from the "
|
620 |
+
"email."
|
621 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
622 |
|
623 |
+
#: ../settings/settings-edit.php:262
|
624 |
+
msgid "Error in the Subscribe / Confirmation Link"
|
625 |
+
msgstr ""
|
626 |
|
627 |
+
#: ../settings/settings-edit.php:263
|
628 |
+
msgid ""
|
629 |
+
"Default message to display if there is any issue while clicking on subscribe "
|
630 |
+
"/ confirmation link from the Double Opt-In (Confirmation) emails."
|
631 |
+
msgstr ""
|
|
|
|
|
|
|
632 |
|
633 |
+
#: ../settings/settings-edit.php:270
|
634 |
+
msgid ""
|
635 |
+
"Default message to display if there is any issue while clicking on "
|
636 |
+
"unsubscribe link from the emails."
|
637 |
+
msgstr ""
|
638 |
|
639 |
+
#: ../settings/settings-edit.php:300
|
640 |
+
msgid "Templates Menu"
|
641 |
+
msgstr ""
|
|
|
642 |
|
643 |
+
#: ../settings/settings-edit.php:369
|
644 |
+
msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
|
645 |
+
msgstr ""
|
|
|
646 |
|
647 |
+
#: ../settings/settings-edit.php:374
|
648 |
+
msgid "Cron Report"
|
649 |
+
msgstr ""
|
|
|
650 |
|
651 |
+
#: ../settings/settings-edit.php:375
|
652 |
+
msgid ""
|
653 |
+
"Email to admin whenever a cron URL is triggered from your server.<br "
|
654 |
+
"/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
|
655 |
+
msgstr ""
|
656 |
|
657 |
+
#: ../settings/settings-edit.php:386
|
658 |
+
msgid ""
|
659 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
660 |
+
"schedule-cron-emails/?"
|
661 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
|
662 |
+
"Cron?</a>"
|
663 |
+
msgstr ""
|
664 |
|
665 |
+
#: ../settings/settings-edit.php:387
|
666 |
+
msgid ""
|
667 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
668 |
+
"schedule-cron-emails-in-cpanel/?"
|
669 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
|
670 |
+
"job in cPanel</a>"
|
671 |
+
msgstr ""
|
672 |
|
673 |
+
#: ../settings/settings-edit.php:388
|
674 |
+
msgid ""
|
675 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
676 |
+
"schedule-cron-emails-in-parallels-plesk/?"
|
677 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
|
678 |
+
"job in Plesk</a>"
|
679 |
+
msgstr ""
|
680 |
|
681 |
+
#: ../settings/settings-edit.php:389
|
682 |
+
msgid ""
|
683 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
|
684 |
+
"if-hosting-doesnt-support-cron-jobs/?"
|
685 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
|
686 |
+
"does not support cron jobs?</a>"
|
687 |
+
msgstr ""
|
688 |
|
689 |
+
#: ../subscribers/view-subscriber-export.php:12
|
690 |
+
msgid ""
|
691 |
+
"Oops! Looks like you are not the site administrator.<br><br>Only the site "
|
692 |
+
"administrator can export subscriber list."
|
693 |
+
msgstr ""
|
694 |
|
695 |
+
#: ../subscribers/view-subscriber-export.php:14
|
696 |
+
msgid "Go back to Subscribers dashboard"
|
697 |
+
msgstr ""
|
|
|
698 |
|
699 |
+
#: ../subscribers/view-subscriber-show.php:75 ../subscribers/view-subscriber-show.
|
700 |
+
#: php:134
|
701 |
+
msgid "Confirmation emails resent successfully."
|
702 |
+
msgstr ""
|
703 |
|
704 |
+
#: ../subscribers/view-subscriber-show.php:256
|
705 |
+
msgid "Total Subscribers: "
|
706 |
+
msgstr ""
|
|
|
|
|
707 |
|
708 |
+
#: ../templates/template-preview.php:31
|
709 |
+
msgid "Template Preview"
|
710 |
+
msgstr ""
|
711 |
|
712 |
+
#: ../templates/template-preview.php:39
|
713 |
+
msgid "This is how your email may look."
|
714 |
+
msgstr ""
|
|
|
715 |
|
716 |
+
#: ../templates/template-preview.php:41
|
717 |
+
msgid ""
|
718 |
+
"<br><br>This Post Notification preview has replaced keywords from your last "
|
719 |
+
"published blog post."
|
720 |
+
msgstr ""
|
721 |
|
722 |
+
#: ../templates/template-preview.php:43
|
723 |
msgid ""
|
724 |
+
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
725 |
+
"content differently. So there could be a slight variation on how your "
|
726 |
+
"customer will view the email content."
|
727 |
msgstr ""
|
|
|
|
|
728 |
|
729 |
+
#. URI of the plugin
|
730 |
+
msgid "https://www.icegram.com"
|
731 |
+
msgstr ""
|
|
|
732 |
|
733 |
+
#: ../email-subscribers.php:95
|
734 |
+
msgctxt "timezone date format"
|
735 |
+
msgid "Y-m-d H:i:s"
|
736 |
+
msgstr ""
|
737 |
|
738 |
+
#: ../classes/es-common.php:13
|
739 |
+
msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
|
740 |
+
msgstr "<span style=\"color:#006600;font-weight:bold;\">Visszaigazolt</span>"
|
|
|
741 |
|
742 |
+
#: ../classes/es-common.php:16
|
743 |
+
msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
|
744 |
+
msgstr "<span style=\"color:#FF0000\">Nincs visszaigazolva</span>"
|
|
|
745 |
|
746 |
+
#: ../classes/es-common.php:19
|
747 |
+
msgid "<span style=\"color:#999900\">Unsubscribed</span>"
|
748 |
+
msgstr "<span style=\"color:#999900\">Leiratkozott</span>"
|
|
|
749 |
|
750 |
+
#: ../classes/es-common.php:22
|
751 |
+
msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
|
752 |
+
msgstr "<span style=\"color:#0000FF\">Megerősítés nélkül</span>"
|
|
|
753 |
|
754 |
+
#: ../classes/es-common.php:25
|
755 |
+
msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
|
756 |
+
msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Megtekintett</span>"
|
|
|
757 |
|
758 |
+
#: ../classes/es-common.php:28
|
759 |
+
msgid "<span style=\"color:#999900;\">Nodata</span>"
|
760 |
+
msgstr "<span style=\"color:#999900;\">Nincs visszajelzés</span>"
|
761 |
|
762 |
+
#: ../classes/es-common.php:31
|
763 |
+
msgid "<span style=\"color:#FF0000\">Disabled</span>"
|
764 |
+
msgstr "<span style=\"color:#FF0000\">Letiltva</span>"
|
765 |
|
766 |
+
#: ../classes/es-common.php:34
|
767 |
+
msgid "<span style=\"color:#FF0000\">In Queue</span>"
|
768 |
+
msgstr "<span style=\"color:#FF0000\">Kiküldésre vár</span>"
|
769 |
|
770 |
+
#: ../classes/es-common.php:37
|
771 |
+
msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
|
772 |
+
msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Kiküldve</span>"
|
773 |
|
774 |
+
#: ../classes/es-common.php:40
|
775 |
+
msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
|
776 |
+
msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">Időzített</span>"
|
|
|
777 |
|
778 |
+
#: ../classes/es-common.php:43
|
779 |
+
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
780 |
+
msgstr "<span style=\"color:#993399;\">Azonnal</span>"
|
781 |
|
782 |
+
#: ../classes/es-loadwidget.php:28 ../classes/es-register.php:1053 ..
|
783 |
+
#: subscribers/view-subscriber-show.php:289
|
784 |
+
msgid "Name"
|
785 |
+
msgstr "Név"
|
|
|
|
|
|
|
786 |
|
787 |
+
#: ../classes/es-loadwidget.php:33 ../classes/es-register.php:1058
|
788 |
+
msgid "Email *"
|
789 |
+
msgstr "E-mail*"
|
790 |
|
791 |
+
#: ../classes/es-loadwidget.php:38 ../classes/es-register.php:1063 ../help/help.
|
792 |
+
#: php:196
|
793 |
+
msgid "Subscribe"
|
794 |
+
msgstr "Feliratkozás"
|
795 |
|
796 |
+
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
797 |
+
#: register.php:801
|
798 |
+
msgid "Email Subscribers"
|
799 |
+
msgstr "Email Subscribers"
|
800 |
|
801 |
+
#: ../classes/es-register.php:165 ../classes/es-register.php:166 ..
|
802 |
+
#: subscribers/view-subscriber-show.php:242
|
803 |
+
msgid "Subscribers"
|
804 |
+
msgstr "Feliratkozottak"
|
805 |
|
806 |
+
#: ../classes/es-register.php:171 ../classes/es-register.php:172 ../help/help.php:
|
807 |
+
#: 361 ../notification/notification-show.php:52
|
808 |
+
msgid "Post Notifications"
|
809 |
+
msgstr "Új bejegyzés értesítés"
|
810 |
+
|
811 |
+
#: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
|
812 |
+
#: 351 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:324
|
813 |
+
msgid "Newsletters"
|
814 |
+
msgstr "Hírlevél"
|
815 |
|
816 |
+
#: ../classes/es-register.php:177 ../classes/es-register.php:178 ..
|
817 |
+
#: settings/settings-edit.php:42
|
818 |
msgid "Settings"
|
819 |
msgstr "Beállítások"
|
820 |
|
821 |
+
#: ../classes/es-register.php:180 ../classes/es-register.php:181 ..
|
822 |
+
#: sentmail/sentmail-show.php:93
|
823 |
+
msgid "Reports"
|
824 |
+
msgstr "Jelentések"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
825 |
|
826 |
+
#: ../classes/es-register.php:183
|
827 |
+
msgid "Help & Info"
|
828 |
+
msgstr "Segítség & Információ"
|
829 |
|
830 |
+
#: ../classes/es-register.php:195
|
831 |
+
msgctxt "view-subscriber-enhanced-select"
|
832 |
+
msgid "Please enter subscriber email address."
|
833 |
+
msgstr "Adja meg az előfizető e-mail címét."
|
834 |
|
835 |
+
#: ../classes/es-register.php:196
|
836 |
+
msgctxt "view-subscriber-enhanced-select"
|
837 |
+
msgid "Please select subscriber email status."
|
838 |
+
msgstr "Válassza ki az előfizető e-mail státuszát."
|
839 |
|
840 |
+
#: ../classes/es-register.php:197
|
841 |
+
msgctxt "view-subscriber-enhanced-select"
|
842 |
+
msgid "Please select or create group for this subscriber."
|
843 |
+
msgstr "Törölni akarja ezt az adatot?"
|
844 |
|
845 |
+
#: ../classes/es-register.php:198
|
846 |
+
msgctxt "view-subscriber-enhanced-select"
|
847 |
+
msgid "Do you want to delete this record?"
|
848 |
+
msgstr "Biztos törölni szeretnéd?"
|
|
|
|
|
849 |
|
850 |
+
#: ../classes/es-register.php:199
|
851 |
+
msgctxt "view-subscriber-enhanced-select"
|
852 |
+
msgid "Please select the bulk action."
|
853 |
+
msgstr "Kérem válassza a tömeges műveleteket!"
|
854 |
|
855 |
+
#: ../classes/es-register.php:200
|
856 |
+
msgctxt "view-subscriber-enhanced-select"
|
857 |
+
msgid "Are you sure you want to delete selected records?"
|
858 |
+
msgstr "Biztosan törlöd ezeket az adatokat? "
|
859 |
|
860 |
+
#: ../classes/es-register.php:202
|
861 |
+
msgctxt "view-subscriber-enhanced-select"
|
862 |
+
msgid "Please select new subscriber group."
|
863 |
+
msgstr "KÉrem válassza ki az előfizetői csoportot"
|
864 |
|
865 |
+
#: ../classes/es-register.php:203
|
866 |
+
msgctxt "view-subscriber-enhanced-select"
|
867 |
+
msgid "Please select new status for subscribers"
|
868 |
+
msgstr "Add meg az előfizetők új státuszát!"
|
869 |
|
870 |
+
#: ../classes/es-register.php:204
|
871 |
+
msgctxt "view-subscriber-enhanced-select"
|
872 |
+
msgid "Do you want to update subscribers group?"
|
873 |
+
msgstr "Frissíteni akarja az előfizetői csoportokat? "
|
874 |
|
875 |
+
#: ../classes/es-register.php:205
|
876 |
+
msgctxt "view-subscriber-enhanced-select"
|
877 |
+
msgid "Do you want to update subscribers status?"
|
878 |
+
msgstr "Frissítsük a feliratkozók státuszát?"
|
|
|
|
|
|
|
879 |
|
880 |
+
#: ../classes/es-register.php:206
|
881 |
+
msgctxt "view-subscriber-enhanced-select"
|
882 |
msgid ""
|
883 |
+
"Please select only csv file. Please check official website for csv structure."
|
884 |
+
"."
|
885 |
+
msgstr "Csak csv fájlt választhat. Kérem ellenőrizze a csv megfelelő formátumát!"
|
|
|
|
|
886 |
|
887 |
+
#: ../classes/es-register.php:214
|
888 |
+
msgctxt "notification-enhanced-select"
|
889 |
+
msgid "Please select subscribers group."
|
890 |
+
msgstr "Kérem válassza ki az előfizetői csoportot!"
|
891 |
|
892 |
+
#: ../classes/es-register.php:216
|
893 |
+
msgctxt "notification-enhanced-select"
|
894 |
+
msgid "Please select notification status."
|
895 |
+
msgstr "Válassza ki az értesítőlevél státuszát!"
|
896 |
|
897 |
+
#: ../classes/es-register.php:217
|
898 |
+
msgctxt "notification-enhanced-select"
|
899 |
+
msgid "Do you want to delete this record?"
|
900 |
+
msgstr "Valóban törölni akarja ezt az adatot? "
|
901 |
|
902 |
+
#: ../classes/es-register.php:225
|
903 |
+
msgctxt "sendmail-enhanced-select"
|
904 |
+
msgid "Please select your mail subject."
|
905 |
+
msgstr "Kérem töltse ki a levél tárgyát!"
|
906 |
|
907 |
+
#: ../classes/es-register.php:226
|
908 |
+
msgctxt "sendmail-enhanced-select"
|
909 |
+
msgid "Please select your mail type."
|
910 |
+
msgstr "Az e-mail típusa (időzített vagy azonnali)"
|
911 |
|
912 |
+
#: ../classes/es-register.php:227
|
913 |
+
msgctxt "sendmail-enhanced-select"
|
914 |
msgid ""
|
915 |
+
"Have you double checked your selected group? If so, let's go ahead and send "
|
916 |
+
"this."
|
917 |
msgstr ""
|
918 |
+
"Ellenőrizd még egyszer, hogy megfelelő csoportnak küldjük ki a leveleket. Ha "
|
919 |
+
"rendben, akkor klikkelj megint."
|
|
|
|
|
|
|
|
|
|
|
|
|
920 |
|
921 |
+
#: ../classes/es-register.php:235
|
922 |
+
msgctxt "sentmail-enhanced-select"
|
923 |
+
msgid "Do you want to delete this record?"
|
924 |
+
msgstr "Szeretné törölni ezt az adatot? "
|
925 |
|
926 |
+
#: ../classes/es-register.php:236
|
927 |
+
msgctxt "sentmail-enhanced-select"
|
928 |
+
msgid "Do you want to delete all records except latest 10?"
|
929 |
+
msgstr "Minden adatot törölni szeretne az utolsó 10 kivételével?"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
930 |
|
931 |
+
#: ../classes/es-register.php:244
|
932 |
+
msgctxt "cron-enhanced-select"
|
933 |
+
msgid "Please select enter number of mails you want to send per hour/trigger."
|
934 |
msgstr ""
|
935 |
+
"Kérem írja be, hány darab e-mailt szeretne óránként vagy ciklusonként "
|
936 |
+
"küldeni?"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
937 |
|
938 |
+
#: ../classes/es-register.php:245
|
939 |
+
msgctxt "cron-enhanced-select"
|
940 |
+
msgid "Please enter the mail count, only number."
|
941 |
+
msgstr "Kérem egy számot adjon meg, hány e-mail? "
|
|
|
942 |
|
943 |
+
#: ../classes/es-register.php:258
|
944 |
+
msgctxt "widget-enhanced-select"
|
945 |
+
msgid "Please enter email address"
|
946 |
+
msgstr "Kérjük adja meg az e-mail címét"
|
|
|
947 |
|
948 |
+
#: ../classes/es-register.php:259
|
949 |
+
msgctxt "widget-enhanced-select"
|
950 |
+
msgid "Successfully Subscribed."
|
951 |
+
msgstr "Sikeres feliratkozás"
|
952 |
|
953 |
+
#: ../classes/es-register.php:261
|
954 |
+
msgctxt "widget-enhanced-select"
|
955 |
+
msgid "Email Address already exists!"
|
956 |
+
msgstr "Ez az e-mail cím már létezik"
|
957 |
|
958 |
+
#: ../classes/es-register.php:262
|
959 |
+
msgctxt "widget-enhanced-select"
|
960 |
+
msgid "Oops.. Unexpected error occurred."
|
961 |
+
msgstr "Váratlan hiba"
|
962 |
|
963 |
+
#: ../classes/es-register.php:263
|
964 |
+
msgctxt "widget-enhanced-select"
|
965 |
+
msgid "Invalid email address"
|
966 |
+
msgstr "Hibás e-mail cím"
|
967 |
|
968 |
+
#: ../classes/es-register.php:264
|
969 |
+
msgctxt "widget-enhanced-select"
|
970 |
+
msgid "Please try after some time"
|
971 |
+
msgstr "Kérem próbálja meg kicsit később!"
|
|
|
972 |
|
973 |
+
#: ../classes/es-register.php:272
|
974 |
+
msgctxt "widget-page-enhanced-select"
|
975 |
+
msgid "Please enter email address"
|
976 |
+
msgstr "KÉrem adja meg az e-mail címét!"
|
977 |
|
978 |
+
#: ../classes/es-register.php:273
|
979 |
+
msgctxt "widget-page-enhanced-select"
|
980 |
+
msgid "Successfully Subscribed."
|
981 |
+
msgstr "Sikeres feliratkozás."
|
982 |
|
983 |
+
#: ../classes/es-register.php:275
|
984 |
+
msgctxt "widget-page-enhanced-select"
|
985 |
+
msgid "Email Address already exists!"
|
986 |
+
msgstr "Ilyen e-mail cím már létezik. "
|
987 |
|
988 |
+
#: ../classes/es-register.php:276
|
989 |
+
msgctxt "widget-page-enhanced-select"
|
990 |
+
msgid "Oops.. Unexpected error occurred."
|
991 |
+
msgstr "Váratlan hiba lépett fel"
|
992 |
|
993 |
+
#: ../classes/es-register.php:277
|
994 |
+
msgctxt "widget-page-enhanced-select"
|
995 |
+
msgid "Invalid email address"
|
996 |
+
msgstr "Hibás e-mail cím."
|
997 |
|
998 |
+
#: ../classes/es-register.php:278
|
999 |
+
msgctxt "widget-page-enhanced-select"
|
1000 |
+
msgid "Please try after some time"
|
1001 |
+
msgstr "Kérem próbálja meg később. "
|
1002 |
|
1003 |
+
#: ../classes/es-register.php:766
|
1004 |
+
msgid ""
|
1005 |
+
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
1006 |
+
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
1007 |
+
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
1008 |
+
"</a> rating. A huge thank you from Icegram in advance!"
|
1009 |
+
msgstr ""
|
1010 |
+
"Ha tetszett az <strong>Email Subscribers bővítmény </strong>, kérem adjon "
|
1011 |
+
"értékelést:<a target=\"_blank\" href=\"https://wordpress."
|
1012 |
+
"org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">★"
|
1013 |
+
"★★★★</a> . Köszönjük előre is. "
|
1014 |
|
1015 |
+
#: ../classes/es-register.php:841 ../settings/settings-edit.php:123
|
1016 |
+
msgid "Thumbnail"
|
1017 |
+
msgstr "Bélyegkép"
|
1018 |
|
1019 |
+
#: ../classes/es-register.php:889 ../sentmail/sentmail-show.php:108 ..
|
1020 |
+
#: sentmail/sentmail-show.php:121
|
1021 |
+
msgid "Preview"
|
1022 |
+
msgstr "Előnézet"
|
1023 |
|
1024 |
+
#: ../classes/es-register.php:911
|
1025 |
+
msgid "Newsletter"
|
1026 |
+
msgstr "Hírlevél"
|
1027 |
|
1028 |
+
#: ../classes/es-register.php:912
|
1029 |
+
msgid "Post Notification"
|
1030 |
+
msgstr "Értesítés az új bejegyzésről"
|
1031 |
|
1032 |
+
#: ../classes/es-register.php:973 ../classes/es-register.php:974
|
1033 |
+
msgid "Available Keywords"
|
1034 |
+
msgstr "Választható kulcsszavak"
|
1035 |
|
1036 |
+
#: ../classes/es-register.php:1103
|
1037 |
+
msgid "Widget Title"
|
1038 |
+
msgstr "Widget Cím"
|
1039 |
|
1040 |
+
#: ../classes/es-register.php:1107
|
1041 |
+
msgid "Short description about subscription form"
|
1042 |
+
msgstr "A feliratkozó űrlap rövid leírása"
|
1043 |
|
1044 |
+
#: ../classes/es-register.php:1111
|
1045 |
+
msgid "Display Name Field"
|
1046 |
+
msgstr "Feliratkozásnál kérjük a nevet is? "
|
1047 |
|
1048 |
+
#: ../classes/es-register.php:1113 ../settings/settings-edit.php:142 ..
|
1049 |
+
#: settings/settings-edit.php:217 ../subscribers/view-subscriber-sync.php:107
|
1050 |
+
msgid "YES"
|
1051 |
+
msgstr "Igen"
|
1052 |
|
1053 |
+
#: ../classes/es-register.php:1114 ../settings/settings-edit.php:143 ..
|
1054 |
+
#: settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:106
|
1055 |
+
msgid "NO"
|
1056 |
+
msgstr "Nem"
|
|
|
1057 |
|
1058 |
+
#: ../classes/es-register.php:1118
|
1059 |
+
msgid "Subscriber Group"
|
1060 |
+
msgstr "Előfizetői csoport"
|
1061 |
|
1062 |
+
#: ../help/help.php:184
|
1063 |
+
msgid "Welcome to Email Subscribers!"
|
1064 |
+
msgstr "Üdvözöljük!"
|
|
|
1065 |
|
1066 |
+
#: ../help/help.php:214
|
1067 |
+
msgid "donating to us"
|
1068 |
+
msgstr "Adományozás"
|
1069 |
|
1070 |
+
#: ../help/help.php:301 ../help/help.php:312 ../help/help.php:315 ../help/help.
|
1071 |
+
#: php:327 ../help/help.php:330 ../help/help.php:333 ../help/help.php:336 ..
|
1072 |
+
#: help/help.php:339 ../help/help.php:342 ../help/help.php:354 ../help/help.php:
|
1073 |
+
#: 357 ../help/help.php:364 ../help/help.php:367 ../help/help.php:370 ..
|
1074 |
+
#: help/help.php:378 ../help/help.php:381 ../help/help.php:384 ../help/help.php:
|
1075 |
+
#: 387 ../help/help.php:393 ../help/help.php:396 ../help/help.php:398
|
1076 |
+
#, php-format
|
1077 |
+
msgid "%s"
|
1078 |
+
msgstr "%s"
|
1079 |
|
1080 |
+
#: ../help/help.php:301
|
1081 |
+
msgid "How to Add Subscription box to website?"
|
1082 |
+
msgstr "Hogyan lehet a feliratkozó űrlapot elhelyezni a honlapon?"
|
|
|
1083 |
|
1084 |
+
#: ../help/help.php:330
|
1085 |
+
msgid "How to Import or Export Email Addresses?"
|
1086 |
+
msgstr "A feliratkozók importálása és exportálása"
|
1087 |
|
1088 |
+
#: ../help/help.php:339
|
1089 |
+
msgid "How to add Unsubscribe link in emails?"
|
1090 |
+
msgstr "Hogyan tudod az e-mailbe a leiratkozás linket elhelyezni?"
|
1091 |
|
1092 |
+
#: ../help/help.php:393
|
1093 |
+
msgid "Subscribers are not receiving Emails?"
|
1094 |
+
msgstr "Az előfizetőid nem kapták meg az e-mailc? "
|
1095 |
|
1096 |
+
#: ../help/help.php:396
|
1097 |
+
msgid "CSS Help"
|
1098 |
+
msgstr "CSS segítség"
|
|
|
|
|
1099 |
|
1100 |
+
#. Author of the plugin/theme
|
1101 |
+
#: ../help/help.php:433
|
1102 |
+
msgid "Icegram"
|
1103 |
+
msgstr "Icegram"
|
1104 |
|
1105 |
+
#: ../job/es-optin.php:58 ../job/es-optin.php:68 ../job/es-unsubscribe.php:54 ..
|
1106 |
+
#: job/es-unsubscribe.php:61
|
1107 |
msgid ""
|
1108 |
+
"Oops.. We are getting some technical error. Please try again or contact "
|
1109 |
+
"admin."
|
1110 |
msgstr ""
|
1111 |
+
"Sajnos valamilyen hiba csúszott be. Ismételje meg, vagy pedig értesítsen egy "
|
1112 |
+
"szakembert."
|
1113 |
|
1114 |
+
#: ../job/es-optin.php:61
|
1115 |
+
msgid "This email address has already been confirmed."
|
1116 |
+
msgstr "Ilyen e-mail cím már szerepel."
|
1117 |
|
1118 |
+
#: ../notification/notification-add.php:33
|
1119 |
+
msgid "Please select subscribers group."
|
1120 |
+
msgstr "Kérem válassza ki az előfizetői csoportot"
|
1121 |
|
1122 |
+
#: ../notification/notification-add.php:39
|
1123 |
+
msgid "Please select notification status."
|
1124 |
+
msgstr "Kérem válassza ki az értesítés státuszát."
|
|
|
|
|
1125 |
|
1126 |
+
#: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
|
1127 |
+
msgid "Please select post categories."
|
1128 |
+
msgstr "Kérem válassza ki, mely kategóriák érintettek."
|
1129 |
|
1130 |
+
#: ../notification/notification-add.php:71
|
1131 |
+
msgid "Notification successfully created. "
|
1132 |
+
msgstr "Az értesítőlevél sikeresen elkészült."
|
1133 |
|
1134 |
+
#: ../notification/notification-add.php:112
|
1135 |
+
msgid "Add Notification"
|
1136 |
+
msgstr "Új bejegyzés-értesítő hozzáadása"
|
1137 |
|
1138 |
+
#: ../notification/notification-add.php:113 ../notification/notification-edit.php:
|
1139 |
+
#: 124 ../notification/notification-show.php:54 ../sendmail/sendmail.php:94 ..
|
1140 |
+
#: sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
|
1141 |
+
#: sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
|
1142 |
+
#: subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
|
1143 |
+
#: php:113 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
|
1144 |
+
#: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
|
1145 |
+
#: subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:32
|
1146 |
+
msgid "Help"
|
1147 |
+
msgstr "Segítség"
|
1148 |
|
1149 |
+
#: ../notification/notification-add.php:121
|
1150 |
+
msgid "Select Subscribers Group"
|
1151 |
+
msgstr "Válaszd ki az előfizetői csoportot"
|
|
|
|
|
1152 |
|
1153 |
+
#: ../notification/notification-add.php:125 ../notification/notification-add.php:
|
1154 |
+
#: 149 ../notification/notification-edit.php:136 ../notification/notification-
|
1155 |
+
#: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
|
1156 |
+
#: sendmail/sendmail.php:152 ../subscribers/view-subscriber-add.php:166 ..
|
1157 |
+
#: subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
|
1158 |
+
#: import.php:193 ../subscribers/view-subscriber-sync.php:119
|
1159 |
+
msgid "Select"
|
1160 |
+
msgstr "Választ"
|
1161 |
|
1162 |
+
#: ../notification/notification-add.php:143 ../notification/notification-edit.php:
|
1163 |
+
#: 163
|
1164 |
+
msgid "Select Notification Email Subject"
|
1165 |
+
msgstr "Mi legyen az értesítő levél tárgya? "
|
1166 |
|
1167 |
+
#: ../notification/notification-add.php:168 ../notification/notification-edit.php:
|
1168 |
+
#: 191
|
1169 |
+
msgid "Select Post Categories"
|
1170 |
+
msgstr "Válszd ki a bejegyzés kategóriáját"
|
1171 |
|
1172 |
+
#: ../notification/notification-add.php:196 ../notification/notification-edit.php:
|
1173 |
+
#: 226
|
1174 |
+
msgid "Check All"
|
1175 |
+
msgstr "Mindegyik kijelölése"
|
1176 |
|
1177 |
+
#: ../notification/notification-add.php:197 ../notification/notification-edit.php:
|
1178 |
+
#: 227
|
1179 |
+
msgid "Uncheck All"
|
1180 |
+
msgstr "Kijelölések visszavonása"
|
1181 |
|
1182 |
+
#: ../notification/notification-add.php:203 ../notification/notification-edit.php:
|
1183 |
+
#: 234
|
1184 |
+
msgid "Select your Custom Post Type"
|
1185 |
+
msgstr "Válaszd ki e bejegyzés típusát"
|
1186 |
|
1187 |
+
#: ../notification/notification-add.php:204 ../notification/notification-edit.php:
|
1188 |
+
#: 235
|
1189 |
+
msgid "(Optional)"
|
1190 |
+
msgstr "(választható)"
|
1191 |
|
1192 |
+
#: ../notification/notification-add.php:233 ../notification/notification-edit.php:
|
1193 |
+
#: 269
|
1194 |
+
msgid "No Custom Post Types Available"
|
1195 |
+
msgstr "Nincsen egyéni bejegyzés típus"
|
|
|
|
|
1196 |
|
1197 |
+
#: ../notification/notification-add.php:240 ../notification/notification-edit.php:
|
1198 |
+
#: 276
|
1199 |
+
msgid "Select Notification Status when a new post is published"
|
1200 |
+
msgstr "Mi legyen az új bejegyzésről értesítő levél tárgya? "
|
|
|
1201 |
|
1202 |
+
#: ../notification/notification-add.php:244 ../notification/notification-edit.php:
|
1203 |
+
#: 280 ../notification/notification-show.php:130 ../sendmail/sendmail.php:139
|
1204 |
+
msgid "Send email immediately"
|
1205 |
+
msgstr "Levéküldés azonnal"
|
|
|
|
|
1206 |
|
1207 |
+
#: ../notification/notification-add.php:245 ../notification/notification-edit.php:
|
1208 |
+
#: 281 ../notification/notification-show.php:132
|
1209 |
+
msgid "Add to cron and send email via cron job"
|
1210 |
+
msgstr "Időzített feladathoz adjuk és időzítve küldjük ki"
|
1211 |
|
1212 |
+
#: ../notification/notification-add.php:246 ../notification/notification-edit.php:
|
1213 |
+
#: 282
|
1214 |
+
msgid "Disable email notification"
|
1215 |
+
msgstr "Az új bejegyzések értesítésének letiltása"
|
1216 |
|
1217 |
+
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
1218 |
+
#: 291 ../subscribers/view-subscriber-edit.php:191
|
1219 |
+
msgid "Save"
|
1220 |
+
msgstr "Mentés"
|
1221 |
|
1222 |
+
#: ../notification/notification-edit.php:20 ../notification/notification-show.php:
|
1223 |
+
#: 21 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
|
1224 |
+
#: subscribers/view-subscriber-edit.php:22
|
1225 |
+
msgid "Oops, selected details does not exists."
|
1226 |
+
msgstr "A részleteket add meg kérlek"
|
1227 |
|
1228 |
+
#: ../notification/notification-edit.php:49
|
1229 |
+
msgid "Please select subscribers group"
|
1230 |
+
msgstr "Válaszd ki az előfizetői csoportot"
|
|
|
|
|
1231 |
|
1232 |
+
#: ../notification/notification-edit.php:55
|
1233 |
+
msgid "Please select notification status"
|
1234 |
+
msgstr "Mit tegyünk az új bejegyzés értesítővel? "
|
|
|
|
|
1235 |
|
1236 |
+
#: ../notification/notification-edit.php:89
|
1237 |
+
msgid "Notification successfully updated. "
|
1238 |
+
msgstr "Értesítés sikeresen módosítva"
|
|
|
|
|
1239 |
|
1240 |
+
#: ../notification/notification-edit.php:122
|
1241 |
+
msgid "Edit Notification"
|
1242 |
+
msgstr "Új bejegyzés értesítés szerkesztése"
|
1243 |
|
1244 |
+
#: ../notification/notification-edit.php:123 ../notification/notification-show.
|
1245 |
+
#: php:53
|
1246 |
+
msgid "Add New"
|
1247 |
+
msgstr "Új hozzáadása"
|
1248 |
|
1249 |
+
#: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
|
1250 |
+
#: php:303
|
1251 |
+
msgid "Update Subscribers Group"
|
1252 |
+
msgstr "Előfizetői csoport frissítése"
|
|
|
|
|
1253 |
|
1254 |
+
#: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
|
1255 |
+
msgid "Selected record deleted."
|
1256 |
+
msgstr "Sikeresen törölve"
|
1257 |
|
1258 |
+
#: ../notification/notification-show.php:57
|
1259 |
+
msgid ""
|
1260 |
+
"Use this to setup and send notification emails to your subscribers when a "
|
1261 |
+
"new post is published in your blog."
|
1262 |
+
msgstr ""
|
1263 |
+
"Új bejegyzés értesítő: amikor az új bejegyzés elkészül, itt tudod beállítani,"
|
1264 |
+
" milyen értesítést küldjön a feliratkozottaknak. "
|
1265 |
|
1266 |
+
#: ../notification/notification-show.php:68 ../notification/notification-show.php:
|
1267 |
+
#: 76
|
1268 |
+
msgid "Email Subject"
|
1269 |
+
msgstr "Tárgy"
|
1270 |
|
1271 |
+
#: ../notification/notification-show.php:69 ../notification/notification-show.php:
|
1272 |
+
#: 77
|
1273 |
+
msgid "Subscribers Group"
|
1274 |
+
msgstr "Előfieztői csoportok"
|
|
|
1275 |
|
1276 |
+
#: ../notification/notification-show.php:70 ../notification/notification-show.php:
|
1277 |
+
#: 78
|
1278 |
+
msgid "Post Categories / Custom Post Types"
|
1279 |
+
msgstr "Bejegyzés kategóriája / egyedi bejegyzés típus"
|
|
|
1280 |
|
1281 |
+
#: ../notification/notification-show.php:71 ../notification/notification-show.php:
|
1282 |
+
#: 79
|
1283 |
+
msgid "Notification Status"
|
1284 |
+
msgstr "Értesítés sttusza"
|
1285 |
|
1286 |
+
#: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
|
1287 |
+
#: php:417 ../templates/template-preview.php:35
|
1288 |
+
msgid "Edit"
|
1289 |
+
msgstr "Szerkesztés"
|
1290 |
|
1291 |
+
#: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
|
1292 |
+
#: php:301 ../subscribers/view-subscriber-show.php:422
|
1293 |
+
msgid "Delete"
|
1294 |
+
msgstr "Törlés"
|
1295 |
|
1296 |
+
#: ../notification/notification-show.php:143 ../sentmail/deliverreport-show.php:
|
1297 |
+
#: 128 ../sentmail/sentmail-show.php:180 ../subscribers/view-subscriber-show.php:
|
1298 |
+
#: 456
|
1299 |
+
msgid "No records available."
|
1300 |
+
msgstr "Nincs ilyen adat."
|
1301 |
|
1302 |
+
#: ../sendmail/sendmail.php:18 ../subscribers/view-subscriber-show.php:17
|
1303 |
+
msgid "Click Here"
|
1304 |
+
msgstr "Klikk ide"
|
1305 |
|
1306 |
+
#: ../sendmail/sendmail.php:40
|
1307 |
+
msgid "Please select your mail subject."
|
1308 |
+
msgstr "Mi legyen a levél tárgya? "
|
|
|
1309 |
|
1310 |
+
#: ../sendmail/sendmail.php:46
|
1311 |
+
msgid "Please select your mail type."
|
1312 |
+
msgstr "Az e-mail kiküldés típusaa"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1313 |
|
1314 |
+
#: ../sendmail/sendmail.php:52
|
1315 |
+
msgid "Please select your group."
|
1316 |
+
msgstr "Válaszd ki az előfizetői csoportot"
|
1317 |
|
1318 |
+
#: ../sendmail/sendmail.php:63
|
1319 |
+
msgid "Click here to check Statistics"
|
1320 |
+
msgstr "Itt megnézheted a statisztikákat"
|
1321 |
|
1322 |
+
#: ../sendmail/sendmail.php:69
|
1323 |
+
msgid "Oops.. We are getting some error. mail not sending."
|
1324 |
+
msgstr "Sajnos nem sikerült elküldeni a levelet. A hiba ismeretlen. "
|
|
|
1325 |
|
1326 |
+
#: ../sendmail/sendmail.php:97
|
1327 |
+
msgid "Use this to send newsletter emails to your subscribers."
|
1328 |
+
msgstr "Ezzel tudsz hírlevelet küldeni az előfizetőknek"
|
1329 |
|
1330 |
+
#: ../sendmail/sendmail.php:106
|
1331 |
+
msgid "Select Email Subject from available list"
|
1332 |
+
msgstr "Válassza ki az e-mail tárgyát az alábbi listából!"
|
1333 |
|
1334 |
+
#: ../sendmail/sendmail.php:133
|
1335 |
+
msgid "Select Email Type"
|
1336 |
+
msgstr "Válassza ki az e-mail típusát!"
|
1337 |
|
1338 |
+
#: ../sendmail/sendmail.php:140
|
1339 |
+
msgid "Send email via cron job"
|
1340 |
+
msgstr "Időzített e-mail küldés"
|
1341 |
|
1342 |
+
#: ../sendmail/sendmail.php:147
|
1343 |
+
msgid "Select Subscribers group to Send Email"
|
1344 |
+
msgstr "Válassza ki, melyik előfizetői csoportnak kíván e-mailt küldteni"
|
1345 |
|
1346 |
+
#: ../sendmail/sendmail.php:179
|
1347 |
+
msgid "Recipients : 0 "
|
1348 |
+
msgstr "Címzettek: 0"
|
1349 |
|
1350 |
+
#: ../sendmail/sendmail.php:181
|
1351 |
+
#, php-format
|
1352 |
+
msgid "Recipients : %s"
|
1353 |
+
msgstr "Címzettek: %s"
|
1354 |
|
1355 |
+
#: ../sendmail/sendmail.php:184
|
1356 |
+
msgid ""
|
1357 |
+
"<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
|
1358 |
+
"that you change above Mail Type to Cron and Send Mail via Cron Job."
|
1359 |
+
"</strong><br>Click on Help for more information."
|
1360 |
+
msgstr ""
|
1361 |
+
"<br><br><strong>Több mint 100 címzettnek küldünk levelet<br>Szerintünk ne "
|
1362 |
+
"most egysxzerre küldjed, hanem használd az időzítést. </strong><br>Kattints "
|
1363 |
+
"a súgóra további segítségért!"
|
1364 |
|
1365 |
+
#: ../sendmail/sendmail.php:196 ../sendmail/sendmail.php:198
|
1366 |
+
msgid "Send Email"
|
1367 |
+
msgstr "Hírlevél küldése"
|
1368 |
|
1369 |
+
#: ../sendmail/sendmail.php:201
|
1370 |
+
msgid "Reset"
|
1371 |
+
msgstr "Alapbeállítások visszaállítása"
|
1372 |
|
1373 |
+
#: ../sentmail/deliverreport-show.php:14
|
1374 |
+
msgid "Oops.. Unexpected error occurred. Please try again."
|
1375 |
+
msgstr "Hiba történt, ismét próbáld meg. "
|
1376 |
|
1377 |
+
#: ../sentmail/deliverreport-show.php:47 ../sentmail/sentmail-show.php:83
|
1378 |
+
msgid " << "
|
1379 |
+
msgstr " << "
|
1380 |
|
1381 |
+
#: ../sentmail/deliverreport-show.php:48 ../sentmail/sentmail-show.php:84
|
1382 |
+
msgid " >> "
|
1383 |
+
msgstr " >> "
|
1384 |
|
1385 |
+
#: ../sentmail/deliverreport-show.php:60
|
1386 |
+
msgid "Delivery Report"
|
1387 |
+
msgstr "Kézbesítési jelentés"
|
1388 |
|
1389 |
+
#: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
|
1390 |
+
#: subscribers/view-subscriber-export.php:58 ../subscribers/view-subscriber-
|
1391 |
+
#: export.php:66
|
1392 |
+
msgid "Sno"
|
1393 |
+
msgstr "Sno"
|
1394 |
|
1395 |
+
#: ../sentmail/deliverreport-show.php:73 ../sentmail/deliverreport-show.php:84
|
1396 |
+
msgid "Email"
|
1397 |
+
msgstr "Email címed"
|
|
|
1398 |
|
1399 |
+
#: ../sentmail/deliverreport-show.php:74 ../sentmail/deliverreport-show.php:85 ..
|
1400 |
+
#: sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
|
1401 |
+
#: subscribers/view-subscriber-show.php:290
|
1402 |
+
msgid "Status"
|
1403 |
+
msgstr "Státusz"
|
1404 |
|
1405 |
+
#: ../sentmail/deliverreport-show.php:75 ../sentmail/deliverreport-show.php:86 ..
|
1406 |
+
#: sentmail/sentmail-show.php:111 ../sentmail/sentmail-show.php:124
|
1407 |
+
msgid "Sent"
|
1408 |
+
msgstr "Elküldve"
|
1409 |
|
1410 |
+
#: ../sentmail/deliverreport-show.php:76 ../sentmail/deliverreport-show.php:87
|
1411 |
+
msgid "Sent Date"
|
1412 |
+
msgstr "Kiküldés dátuma"
|
1413 |
|
1414 |
+
#: ../sentmail/deliverreport-show.php:77 ../sentmail/deliverreport-show.php:88
|
1415 |
+
msgid "Viewed Status"
|
1416 |
+
msgstr "Megnyitás státusza"
|
|
|
|
|
1417 |
|
1418 |
+
#: ../sentmail/deliverreport-show.php:78 ../sentmail/deliverreport-show.php:89
|
1419 |
+
msgid "Viewed Date"
|
1420 |
+
msgstr "Megnyitás dátuma"
|
1421 |
|
1422 |
+
#: ../sentmail/sentmail-preview.php:53
|
1423 |
+
msgid "Back"
|
1424 |
+
msgstr "Előző"
|
1425 |
|
1426 |
+
#: ../sentmail/sentmail-show.php:43
|
1427 |
+
msgid "Successfully deleted all reports except latest 10."
|
1428 |
+
msgstr "Minden jelentést törölték, kivéve az utolsó tizet. "
|
1429 |
|
1430 |
+
#: ../sentmail/sentmail-show.php:97
|
1431 |
+
msgid "It will show reports for all Newsletters & Post Notification emails sent."
|
1432 |
msgstr ""
|
1433 |
+
"Ez mindent jelentést megmutat a kiküldött hírlevelekről és bejegyzés-"
|
1434 |
+
"értesítő levelekről"
|
1435 |
|
1436 |
+
#: ../sentmail/sentmail-show.php:107 ../sentmail/sentmail-show.php:120
|
1437 |
+
msgid "View Reports"
|
1438 |
+
msgstr "Jelentés megtekintése"
|
1439 |
|
1440 |
+
#: ../sentmail/sentmail-show.php:109 ../sentmail/sentmail-show.php:122
|
1441 |
+
msgid "Type"
|
1442 |
+
msgstr "Típus"
|
1443 |
|
1444 |
+
#: ../sentmail/sentmail-show.php:112 ../sentmail/sentmail-show.php:125
|
1445 |
+
msgid "Start Date"
|
1446 |
+
msgstr "Indulás Dátuma"
|
1447 |
|
1448 |
+
#: ../sentmail/sentmail-show.php:113 ../sentmail/sentmail-show.php:126
|
1449 |
+
msgid "End Date"
|
1450 |
+
msgstr "Zárás dátuma"
|
1451 |
|
1452 |
+
#: ../sentmail/sentmail-show.php:114 ../sentmail/sentmail-show.php:127
|
1453 |
+
msgid "Total"
|
1454 |
+
msgstr "Teljes"
|
|
|
1455 |
|
1456 |
+
#: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
|
1457 |
+
#: subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
|
1458 |
+
#: export.php:69 ../subscribers/view-subscriber-show.php:293
|
1459 |
+
msgid "Action"
|
1460 |
+
msgstr "Action"
|
1461 |
|
1462 |
+
#: ../sentmail/sentmail-show.php:190
|
1463 |
+
msgid "Optimize Table & Delete Records"
|
1464 |
+
msgstr "Az előfizetői adatbázis optimalizálása, előfizetők törlése"
|
1465 |
+
|
1466 |
+
#: ../sentmail/sentmail-show.php:199
|
1467 |
msgid ""
|
1468 |
+
"Note: Please click on <strong>Optimize Table & Delete Records</strong> "
|
1469 |
+
"button to delete all reports except latest 10."
|
1470 |
msgstr ""
|
1471 |
+
"Kattintson a <strong>Táblázat optimalizálása és adatok törlése</strong> "
|
1472 |
+
"gombra, hogy az utolsó 10 kivételével törölje az eddigi jelentéseket. "
|
1473 |
|
1474 |
+
#: ../settings/setting-sync.php:16
|
1475 |
+
msgid "Table sync completed successfully."
|
1476 |
+
msgstr "Sikeresen szinkronizáltuk a táblákat"
|
1477 |
|
1478 |
+
#: ../settings/setting-sync.php:29
|
1479 |
+
msgid "Sync plugin tables"
|
1480 |
+
msgstr "Táblák szinkronizálása"
|
1481 |
|
1482 |
+
#: ../settings/setting-sync.php:33
|
1483 |
+
msgid "Click to sync tables"
|
1484 |
+
msgstr "Ide kattintva elkezdődik a táblák szinkronizálása"
|
1485 |
|
1486 |
+
#: ../settings/settings-edit.php:23
|
1487 |
+
msgid "Admin"
|
1488 |
+
msgstr "Adminisztrátor"
|
1489 |
|
1490 |
+
#: ../settings/settings-edit.php:24
|
1491 |
+
msgid "Signup Confirmation"
|
1492 |
+
msgstr "Bejelentkezés visszaigazolás"
|
1493 |
|
1494 |
+
#: ../settings/settings-edit.php:25
|
1495 |
+
msgid "Cron"
|
1496 |
+
msgstr "Időzítés"
|
1497 |
|
1498 |
+
#: ../settings/settings-edit.php:26
|
1499 |
+
msgid "User Roles"
|
1500 |
+
msgstr "Felhasználói jogosultságok"
|
1501 |
|
1502 |
+
#: ../settings/settings-edit.php:67
|
1503 |
+
msgid "Save Settings"
|
1504 |
+
msgstr "Beállítások mentése"
|
1505 |
|
1506 |
+
#: ../settings/settings-edit.php:78
|
1507 |
+
msgid "Sender of Notifications"
|
1508 |
+
msgstr "Az értesítések küldőjw"
|
1509 |
|
1510 |
+
#: ../settings/settings-edit.php:79
|
1511 |
+
msgid ""
|
1512 |
+
"Choose a FROM name and FROM email address for all the emails to be sent from "
|
1513 |
+
"this plugin."
|
1514 |
+
msgstr "Add megy, hogy milyen e-mail címről küldjük és mi legyen a küldő neve?"
|
1515 |
|
1516 |
+
#: ../settings/settings-edit.php:94
|
1517 |
+
msgid "1. WP HTML MAIL"
|
1518 |
+
msgstr "1. WordPress HTML e-mail"
|
1519 |
|
1520 |
+
#: ../settings/settings-edit.php:95
|
1521 |
+
msgid "2. WP PLAINTEXT MAIL"
|
1522 |
+
msgstr "2. WordPress e-mail csak szöveg"
|
1523 |
|
1524 |
+
#: ../settings/settings-edit.php:96
|
1525 |
+
msgid "3. PHP HTML MAIL"
|
1526 |
+
msgstr "3. PHP HTML e-mail"
|
1527 |
|
1528 |
+
#: ../settings/settings-edit.php:97
|
1529 |
+
msgid "4. PHP PLAINTEXT MAIL"
|
1530 |
+
msgstr "4. PHP csak szöveges e-mail"
|
1531 |
|
1532 |
+
#: ../settings/settings-edit.php:109
|
1533 |
+
msgid "Double Opt In"
|
1534 |
+
msgstr "Kettős opt-in"
|
1535 |
|
1536 |
+
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-add.php:155 ..
|
1537 |
+
#: subscribers/view-subscriber-edit.php:150 ../subscribers/view-subscriber-
|
1538 |
+
#: import.php:181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-
|
1539 |
+
#: subscriber-show.php:356
|
1540 |
+
msgid "Single Opt In"
|
1541 |
+
msgstr "Visszaigazolás nélkül"
|
1542 |
|
1543 |
+
#: ../settings/settings-edit.php:116
|
1544 |
+
msgid "Image Size"
|
1545 |
+
msgstr "Képméret"
|
1546 |
|
1547 |
+
#: ../settings/settings-edit.php:121
|
1548 |
+
msgid "Full Size"
|
1549 |
+
msgstr "Teljes méretű kép"
|
1550 |
|
1551 |
+
#: ../settings/settings-edit.php:122
|
1552 |
+
msgid "Medium Size"
|
1553 |
+
msgstr "Közepes méretű kép"
|
1554 |
|
1555 |
+
#: ../settings/settings-edit.php:129
|
1556 |
+
msgid "Admin Email Addresses"
|
1557 |
+
msgstr "Az adminisztrátor e-mail címei"
|
1558 |
|
1559 |
+
#: ../settings/settings-edit.php:130
|
1560 |
+
msgid ""
|
1561 |
+
"Enter the admin email addresses that should receive notifications (separated "
|
1562 |
+
"by comma)."
|
1563 |
+
msgstr ""
|
1564 |
+
"Azoknak az adminisztrátoroknak az e-mail címe, akik értesítést kapnak a "
|
1565 |
+
"levelek küldéséről"
|
1566 |
|
1567 |
+
#: ../settings/settings-edit.php:137
|
|
|
1568 |
msgid ""
|
1569 |
+
"To send admin email notifications for the new subscriber. This option must "
|
1570 |
+
"be set to YES."
|
1571 |
msgstr ""
|
1572 |
+
"Ha szeretnénk, hogy az adminisztrátor értesüljön egy új feliratkozóról, "
|
1573 |
+
"állítsuk \"IGEN\"-re. "
|
1574 |
|
1575 |
+
#: ../settings/settings-edit.php:164
|
1576 |
+
msgid "Sent Report Subject"
|
1577 |
+
msgstr "A levél kiküldés értesítőlevelének tárgya"
|
1578 |
|
1579 |
+
#: ../settings/settings-edit.php:171
|
1580 |
+
msgid "Sent Report Content"
|
1581 |
+
msgstr "Az elküldött levelek értesítőlevelének tartalma"
|
1582 |
|
1583 |
+
#: ../settings/settings-edit.php:198
|
1584 |
+
msgid "It is a readonly field and you are advised not to modify it."
|
1585 |
+
msgstr "Csak olvasható mező"
|
|
|
1586 |
|
1587 |
+
#: ../settings/settings-edit.php:205
|
1588 |
+
msgid ""
|
1589 |
+
"This text will be displayed once user clicks on email confirmation link from "
|
1590 |
+
"the Double Opt In (confirmation) Email."
|
1591 |
+
msgstr ""
|
1592 |
+
"Ez a szöveg fog megjelenni, amikor a felhasználó az e-mail visszaigazoló "
|
1593 |
+
"linkre kattint"
|
1594 |
|
1595 |
+
#: ../settings/settings-edit.php:213
|
1596 |
+
msgid ""
|
1597 |
+
"To send welcome email to subscriber after successful signup. This option "
|
1598 |
+
"must be set to YES."
|
1599 |
+
msgstr "Ha szeretnéd egy levélben üdvözölni az új feliratkozót, állítsd IGEN-re"
|
|
|
|
|
|
|
|
|
1600 |
|
1601 |
+
#: ../settings/settings-edit.php:240
|
1602 |
+
msgid "Unsubscribe Link"
|
1603 |
+
msgstr "Leiratkozó link"
|
1604 |
|
1605 |
+
#: ../settings/settings-edit.php:247
|
1606 |
+
msgid "Unsubscribe Text in Email"
|
1607 |
+
msgstr "A leiratkozó link szövete"
|
1608 |
|
1609 |
+
#: ../settings/settings-edit.php:254
|
1610 |
+
msgid "Text to display after an email address is unsubscribed"
|
1611 |
+
msgstr "A leiratkozás után megjelenő szöveg."
|
1612 |
|
1613 |
+
#: ../settings/settings-edit.php:269
|
1614 |
+
msgid "Error in the Unsubscribe Link"
|
1615 |
+
msgstr "A leriratkozó link hibás."
|
1616 |
|
1617 |
+
#: ../settings/settings-edit.php:282
|
1618 |
+
msgid "Select user roles who can access following menus. Only Admin can change this."
|
1619 |
+
msgstr ""
|
1620 |
+
"Jogosultságok beállítása. Az adminisztrátor jogosultságot adhat másoknak a "
|
1621 |
+
"menük kezelésére."
|
1622 |
|
1623 |
+
#: ../settings/settings-edit.php:288
|
1624 |
+
msgid "Subscribers Menu"
|
1625 |
+
msgstr "Előfizetők"
|
1626 |
|
1627 |
+
#: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
|
1628 |
+
#: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
|
1629 |
+
#: settings/settings-edit.php:340
|
1630 |
+
msgid "Administrator Only"
|
1631 |
+
msgstr "Csak adminisztrátor"
|
1632 |
|
1633 |
+
#: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
|
1634 |
+
#: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
|
1635 |
+
#: settings/settings-edit.php:341
|
1636 |
+
msgid "Administrator/Editor"
|
1637 |
+
msgstr "Adminisztrátor/Szerkesztő"
|
1638 |
|
1639 |
+
#: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
|
1640 |
+
#: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
|
1641 |
+
#: settings/settings-edit.php:342
|
1642 |
+
msgid "Administrator/Editor/Author/Contributor"
|
1643 |
+
msgstr "Adminisztrátor/Szerkesztő/Szerző/Közreműködő"
|
1644 |
|
1645 |
+
#: ../settings/settings-edit.php:312
|
1646 |
+
msgid "Post Notifications Menu"
|
1647 |
+
msgstr "Új bejegyzésről értesítés"
|
1648 |
|
1649 |
+
#: ../settings/settings-edit.php:336
|
1650 |
+
msgid "Reports Menu"
|
1651 |
+
msgstr "Jelentések"
|
1652 |
|
1653 |
+
#: ../settings/settings-edit.php:353
|
1654 |
+
msgid "Cron job URL"
|
1655 |
+
msgstr "Időzítés URL-je"
|
1656 |
|
1657 |
+
#: ../settings/settings-edit.php:354
|
1658 |
+
msgid ""
|
1659 |
+
"This is your Cron Job URL. It is a readonly field and you are advised not to "
|
1660 |
+
"modify it."
|
1661 |
+
msgstr "Ez a időzített kiküldés URL-je. Ezta mezőt nem lehet módosítani. "
|
1662 |
|
1663 |
+
#: ../settings/settings-edit.php:363
|
1664 |
+
msgid "Email Count"
|
1665 |
+
msgstr "E-mail számláló."
|
1666 |
|
1667 |
+
#: ../settings/settings-edit.php:364
|
1668 |
+
msgid "Number of emails that you want to trigger per hour."
|
1669 |
+
msgstr "Ennyi e-mail küldünk ki egy óra alatt. "
|
1670 |
|
1671 |
+
#: ../settings/settings-edit.php:385
|
1672 |
+
msgid "What is Cron (auto emails) and how to setup Cron Job?"
|
1673 |
+
msgstr "Mi az időzített kiküldés, és hogyan állíthatod be? "
|
1674 |
|
1675 |
+
#: ../settings/settings-edit.php:504
|
1676 |
+
msgid "Please enter sender of notifications from name."
|
1677 |
+
msgstr "Az értesítőlevél feladójának neve"
|
|
|
1678 |
|
1679 |
+
#: ../settings/settings-edit.php:509
|
1680 |
+
msgid "Please enter sender of notifications from email."
|
1681 |
+
msgstr "Az értesítőlevél levél feladójának e-mail címe"
|
1682 |
+
|
1683 |
+
#: ../settings/settings-edit.php:553
|
1684 |
+
msgid "Please enter valid mail count."
|
1685 |
+
msgstr "Kérem, hogy egy számot írjon be!"
|
1686 |
+
|
1687 |
+
#: ../settings/settings-edit.php:566
|
1688 |
+
msgid "Settings Saved."
|
1689 |
+
msgstr "Sikeres mentés"
|
1690 |
+
|
1691 |
+
#: ../settings/settings-edit.php:569
|
1692 |
+
msgid "Oops, unable to update."
|
1693 |
+
msgstr "Nem sikerült menteni. "
|
1694 |
+
|
1695 |
+
#: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
|
1696 |
+
#: php:54
|
1697 |
+
msgid "Please enter subscriber email address."
|
1698 |
+
msgstr "Írd be az előfizető e-mail címét!"
|
1699 |
+
|
1700 |
+
#: ../subscribers/view-subscriber-add.php:52
|
1701 |
+
msgid "Please select or create your group for this email."
|
1702 |
+
msgstr "Melyik előfizetői csoportnak küldöd ki az e-mailt? "
|
1703 |
+
|
1704 |
+
#: ../subscribers/view-subscriber-add.php:59
|
1705 |
msgid ""
|
1706 |
+
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1707 |
+
"the group name."
|
|
|
1708 |
msgstr ""
|
1709 |
+
"HIBA: Ne legyenek ilyen karakterek a csoport nevében: ['^$%&*()}{@#~?><>,"
|
1710 |
+
"|=_+\\\"]"
|
|
|
1711 |
|
1712 |
+
#: ../subscribers/view-subscriber-add.php:69
|
1713 |
+
msgid "Subscriber has been saved."
|
1714 |
+
msgstr "Feliratkozót mentettem."
|
1715 |
|
1716 |
+
#: ../subscribers/view-subscriber-add.php:71
|
1717 |
+
msgid "Subscriber already exists."
|
1718 |
+
msgstr "Ilyen címmel már feliratkoztak"
|
1719 |
|
1720 |
+
#: ../subscribers/view-subscriber-add.php:74
|
1721 |
+
msgid "Invalid Email."
|
1722 |
+
msgstr "Hibás e-mail cím"
|
1723 |
|
1724 |
+
#: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
|
1725 |
+
#: php:109 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
|
1726 |
+
#: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
|
1727 |
+
#: subscribers/view-subscriber-sync.php:89
|
1728 |
+
msgid "Add New Subscriber"
|
1729 |
+
msgstr "Új előfizető hozzáadása"
|
1730 |
|
1731 |
+
#: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
|
1732 |
+
#: php:110 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
|
1733 |
+
#: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
|
1734 |
+
#: subscribers/view-subscriber-sync.php:90
|
1735 |
+
msgid "Import"
|
1736 |
+
msgstr "Importálás"
|
1737 |
|
1738 |
+
#: ../subscribers/view-subscriber-add.php:116 ../subscribers/view-subscriber-edit.
|
1739 |
+
#: php:111 ../subscribers/view-subscriber-import.php:147 ../subscribers/view-
|
1740 |
+
#: subscriber-show.php:245 ../subscribers/view-subscriber-sync.php:91
|
1741 |
+
msgid "Export"
|
1742 |
+
msgstr "Exportálás"
|
1743 |
|
1744 |
+
#: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
|
1745 |
+
#: php:112 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
|
1746 |
+
#: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
|
1747 |
+
#: subscribers/view-subscriber-sync.php:143
|
1748 |
+
msgid "Sync"
|
1749 |
+
msgstr "Szinkronizálás"
|
1750 |
|
1751 |
+
#: ../subscribers/view-subscriber-add.php:127
|
1752 |
+
msgid "Enter Subscriber's Full name"
|
1753 |
+
msgstr "Írd be az előfizető nevét!"
|
1754 |
|
1755 |
+
#: ../subscribers/view-subscriber-add.php:137
|
1756 |
+
msgid "Enter Subscriber's Email Address"
|
1757 |
+
msgstr "Írd be az előfizető e-mail címét!"
|
1758 |
|
1759 |
+
#: ../subscribers/view-subscriber-add.php:147
|
1760 |
+
msgid "Select Subscriber's Status"
|
1761 |
+
msgstr "Előfizető státuszának kiválasztása"
|
1762 |
|
1763 |
+
#: ../subscribers/view-subscriber-add.php:152 ../subscribers/view-subscriber-edit.
|
1764 |
+
#: php:147 ../subscribers/view-subscriber-import.php:178 ../subscribers/view-
|
1765 |
+
#: subscriber-show.php:323 ../subscribers/view-subscriber-show.php:353
|
1766 |
+
msgid "Confirmed"
|
1767 |
+
msgstr "Megerősítve"
|
1768 |
|
1769 |
+
#: ../subscribers/view-subscriber-add.php:153 ../subscribers/view-subscriber-edit.
|
1770 |
+
#: php:148 ../subscribers/view-subscriber-import.php:179 ../subscribers/view-
|
1771 |
+
#: subscriber-show.php:324 ../subscribers/view-subscriber-show.php:354
|
1772 |
+
msgid "Unconfirmed"
|
1773 |
+
msgstr "Nem megerősített"
|
1774 |
|
1775 |
+
#: ../subscribers/view-subscriber-add.php:154 ../subscribers/view-subscriber-edit.
|
1776 |
+
#: php:149 ../subscribers/view-subscriber-import.php:180 ../subscribers/view-
|
1777 |
+
#: subscriber-show.php:325 ../subscribers/view-subscriber-show.php:355
|
1778 |
+
msgid "Unsubscribed"
|
1779 |
+
msgstr "Leiratkozva"
|
1780 |
|
1781 |
+
#: ../subscribers/view-subscriber-add.php:162
|
1782 |
+
msgid "Select (or) Create Group for Subscriber"
|
1783 |
+
msgstr "Előfizetői csoport kiválasztása vagy létrehozása"
|
|
|
1784 |
|
1785 |
+
#: ../subscribers/view-subscriber-add.php:178 ../subscribers/view-subscriber-
|
1786 |
+
#: import.php:205
|
1787 |
+
msgid "(or)"
|
1788 |
+
msgstr "(vagy)"
|
1789 |
|
1790 |
+
#: ../subscribers/view-subscriber-add.php:187
|
1791 |
+
msgid "Add Subscriber"
|
1792 |
+
msgstr "Új előfizető hozzáadása"
|
|
|
1793 |
|
1794 |
+
#: ../subscribers/view-subscriber-edit.php:64
|
1795 |
+
msgid "Error: Special characters are not allowed in the group name."
|
1796 |
+
msgstr "HIBA: csak betű és szám legyen a csoport nevében"
|
|
|
1797 |
|
1798 |
+
#: ../subscribers/view-subscriber-edit.php:74
|
1799 |
+
msgid "Subscriber details updated."
|
1800 |
+
msgstr "Az előfizető adatainak mentése"
|
|
|
1801 |
|
1802 |
+
#: ../subscribers/view-subscriber-edit.php:76
|
1803 |
+
msgid "Subscriber already exists for this group."
|
1804 |
+
msgstr "Ilyen felhasználó már szerepel ebben a csoportban"
|
|
|
1805 |
|
1806 |
+
#: ../subscribers/view-subscriber-edit.php:108
|
1807 |
+
msgid "Edit Subscriber"
|
1808 |
+
msgstr "Előfizetők szerkesztése"
|
|
|
1809 |
|
1810 |
+
#: ../subscribers/view-subscriber-edit.php:122
|
1811 |
+
msgid "Subscriber's Full Name"
|
1812 |
+
msgstr "Az előfizető teljes neve"
|
|
|
1813 |
|
1814 |
+
#: ../subscribers/view-subscriber-edit.php:132
|
1815 |
+
msgid "Subscriber's Email Address"
|
1816 |
+
msgstr "A feliratkozó e-mail címe"
|
|
|
1817 |
|
1818 |
+
#: ../subscribers/view-subscriber-edit.php:142
|
1819 |
+
msgid "Update Subscriber's Status"
|
1820 |
+
msgstr "Előfizető státuszának mentése"
|
|
|
1821 |
|
1822 |
+
#: ../subscribers/view-subscriber-edit.php:157
|
1823 |
+
msgid "Update Subscriber's Group"
|
1824 |
+
msgstr "Az előfizetői csoport mentése"
|
|
|
1825 |
|
1826 |
+
#: ../subscribers/view-subscriber-export.php:47
|
1827 |
+
msgid "Export Email Addresses"
|
1828 |
+
msgstr "E-mail címek exportálása"
|
|
|
1829 |
|
1830 |
+
#: ../subscribers/view-subscriber-export.php:59 ../subscribers/view-subscriber-
|
1831 |
+
#: export.php:67
|
1832 |
+
msgid "Type of List to Export"
|
1833 |
+
msgstr "Milyen típusú fájlba exportáljunk? "
|
1834 |
+
|
1835 |
+
#: ../subscribers/view-subscriber-export.php:60 ../subscribers/view-subscriber-
|
1836 |
+
#: export.php:68
|
1837 |
+
msgid "Total Emails Count"
|
1838 |
+
msgstr "Összes e-mail"
|
1839 |
+
|
1840 |
+
#: ../subscribers/view-subscriber-export.php:74
|
1841 |
+
msgid "1"
|
1842 |
+
msgstr "1"
|
1843 |
+
|
1844 |
+
#: ../subscribers/view-subscriber-export.php:75
|
1845 |
+
msgid "All Subscribers"
|
1846 |
+
msgstr "Minden előfizető"
|
1847 |
+
|
1848 |
+
#: ../subscribers/view-subscriber-export.php:77 ../subscribers/view-subscriber-
|
1849 |
+
#: export.php:83 ../subscribers/view-subscriber-export.php:89 ../subscribers/view-
|
1850 |
+
#: subscriber-export.php:95 ../subscribers/view-subscriber-export.php:101
|
1851 |
+
msgid "Click to Export in CSV"
|
1852 |
+
msgstr "CSV fájl exportálása"
|
1853 |
+
|
1854 |
+
#: ../subscribers/view-subscriber-export.php:80
|
1855 |
+
msgid "2"
|
1856 |
+
msgstr "2"
|
1857 |
+
|
1858 |
+
#: ../subscribers/view-subscriber-export.php:81
|
1859 |
+
msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
|
1860 |
+
msgstr "Aktív előfizető, ahol a stáusz: visszagazolt vagy nincs double opt-in"
|
1861 |
+
|
1862 |
+
#: ../subscribers/view-subscriber-export.php:86
|
1863 |
+
msgid "3"
|
1864 |
+
msgstr "3"
|
1865 |
+
|
1866 |
+
#: ../subscribers/view-subscriber-export.php:87
|
1867 |
+
msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
|
1868 |
+
msgstr ""
|
1869 |
+
"Nem aktív előfizetők, ahol a státusz nem visszaigazolt, vagy pedig "
|
1870 |
+
"leiratkozott. "
|
1871 |
+
|
1872 |
+
#: ../subscribers/view-subscriber-export.php:92
|
1873 |
+
msgid "4"
|
1874 |
+
msgstr "4"
|
1875 |
+
|
1876 |
+
#: ../subscribers/view-subscriber-export.php:93
|
1877 |
+
msgid "WordPress Registered Users"
|
1878 |
+
msgstr "Regisztrált felhasználó"
|
1879 |
+
|
1880 |
+
#: ../subscribers/view-subscriber-export.php:98
|
1881 |
+
msgid "5"
|
1882 |
+
msgstr "5"
|
1883 |
+
|
1884 |
+
#: ../subscribers/view-subscriber-export.php:99
|
1885 |
+
msgid "Commented Authors"
|
1886 |
+
msgstr "Hozzászóló felhasználó"
|
1887 |
+
|
1888 |
+
#: ../subscribers/view-subscriber-import.php:45
|
1889 |
msgid ""
|
1890 |
+
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1891 |
+
"the Group name."
|
1892 |
+
msgstr "HIBA: Az alábbi karakterek nem engedélyezettek: ['^$%&*()}{@#~?><>,|=_+\\\"])"
|
1893 |
+
|
1894 |
+
#: ../subscribers/view-subscriber-import.php:95
|
1895 |
+
msgid "email imported."
|
1896 |
+
msgstr "Az e-maileket sikeresen importáltuk"
|
1897 |
+
|
1898 |
+
#: ../subscribers/view-subscriber-import.php:96
|
1899 |
+
msgid "email already exists."
|
1900 |
+
msgstr "Már létező e-mail cím"
|
1901 |
+
|
1902 |
+
#: ../subscribers/view-subscriber-import.php:97
|
1903 |
+
msgid "email are invalid."
|
1904 |
+
msgstr "Érvénytelen az e-mail cím"
|
1905 |
+
|
1906 |
+
#: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
|
1907 |
+
#: import.php:129
|
1908 |
+
msgid "Click here"
|
1909 |
+
msgstr "Kattintás ide"
|
1910 |
+
|
1911 |
+
#: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
|
1912 |
+
#: import.php:129
|
1913 |
+
msgid " to view details."
|
1914 |
+
msgstr "a részletek megtekintése"
|
1915 |
+
|
1916 |
+
#: ../subscribers/view-subscriber-import.php:108
|
1917 |
+
msgid "File Upload Failed."
|
1918 |
+
msgstr "Nem sikerült az importálás"
|
1919 |
+
|
1920 |
+
#: ../subscribers/view-subscriber-import.php:145
|
1921 |
+
msgid "Import Email Addresses"
|
1922 |
+
msgstr "E-mail címek importálása"
|
1923 |
+
|
1924 |
+
#: ../subscribers/view-subscriber-import.php:158
|
1925 |
+
msgid "Select CSV file"
|
1926 |
+
msgstr "CSV fájl kiválasztása"
|
1927 |
|
1928 |
+
#: ../subscribers/view-subscriber-import.php:160
|
1929 |
+
msgid "Check CSV structure "
|
1930 |
+
msgstr "A CSV fájl struktúrájának ellenőrzése"
|
|
|
1931 |
|
1932 |
+
#: ../subscribers/view-subscriber-import.php:161
|
1933 |
+
msgid "from here"
|
1934 |
+
msgstr "Inne"
|
|
|
1935 |
|
1936 |
+
#: ../subscribers/view-subscriber-import.php:172
|
1937 |
+
msgid "Select Subscribers Email Status"
|
1938 |
+
msgstr "Válaszd ki az előfizetők státuszát"
|
|
|
1939 |
|
1940 |
+
#: ../subscribers/view-subscriber-import.php:188
|
1941 |
+
msgid "Select (or) Create Group for Subscribers"
|
1942 |
+
msgstr "Válasszd ki az előfizetői csoportot, vagy hozz létre újat"
|
|
|
1943 |
|
1944 |
+
#: ../subscribers/view-subscriber-show.php:45
|
1945 |
+
msgid "Selected details does not exists."
|
1946 |
+
msgstr "A kiválasztottak nincsenek meg"
|
|
|
1947 |
|
1948 |
+
#: ../subscribers/view-subscriber-show.php:56 ../subscribers/view-subscriber-show.
|
1949 |
+
#: php:95
|
1950 |
+
msgid "Record deleted."
|
1951 |
+
msgstr "Törölve"
|
1952 |
+
|
1953 |
+
#: ../subscribers/view-subscriber-show.php:67
|
1954 |
+
msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
|
1955 |
msgstr ""
|
1956 |
+
"Ha szeretnél visszagiazoló levelet küldeni, a Beállítások menüben az Opt-in "
|
1957 |
+
"beállítást \"kettős opt-in\" - re kell változtatni."
|
1958 |
|
1959 |
+
#: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
|
1960 |
+
#: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
|
1961 |
+
#: subscriber-show.php:217
|
1962 |
+
msgid "No record was selected."
|
1963 |
+
msgstr "Nem választottál ki egyetlen adatot sem"
|
1964 |
|
1965 |
+
#: ../subscribers/view-subscriber-show.php:115
|
1966 |
+
msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
|
1967 |
+
msgstr "Ha szeretnél e-mail visszaigazoló levelet küldeni, válaszd a kettős opt-in-t!"
|
|
|
1968 |
|
1969 |
+
#: ../subscribers/view-subscriber-show.php:164
|
1970 |
+
msgid "Subscribers Group updated."
|
1971 |
+
msgstr "A feliratkozók csoportját frissítettük"
|
|
|
|
|
|
|
1972 |
|
1973 |
+
#: ../subscribers/view-subscriber-show.php:169
|
1974 |
+
msgid "Please select New group to update."
|
1975 |
+
msgstr "Választ ki egy új feliratkozói csoportot"
|
|
|
1976 |
|
1977 |
+
#: ../subscribers/view-subscriber-show.php:203
|
1978 |
+
msgid "Subscribers Status updated."
|
1979 |
+
msgstr "A feliratkozók státuszát frissítettük. "
|
|
|
1980 |
|
1981 |
+
#: ../subscribers/view-subscriber-show.php:208
|
1982 |
+
msgid "Please select New Status to update."
|
1983 |
+
msgstr "Válaszd ki a feliratkozók új státuszát"
|
|
|
1984 |
|
1985 |
+
#: ../subscribers/view-subscriber-show.php:258
|
1986 |
+
#, php-format
|
1987 |
+
msgid "Active Subscribers: %s"
|
1988 |
+
msgstr "Az aktív előfizetők száma: %s"
|
1989 |
|
1990 |
+
#: ../subscribers/view-subscriber-show.php:288
|
1991 |
+
msgid "Email Address"
|
1992 |
+
msgstr "E-mail cím"
|
|
|
1993 |
|
1994 |
+
#: ../subscribers/view-subscriber-show.php:291
|
1995 |
+
msgid "Group"
|
1996 |
+
msgstr "Előfizetői csoport"
|
|
|
1997 |
|
1998 |
+
#: ../subscribers/view-subscriber-show.php:292
|
1999 |
+
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
2000 |
+
msgstr "A regisztráció időpontja: <br>(Y-M-D H:I:S)"
|
|
|
2001 |
|
2002 |
+
#: ../subscribers/view-subscriber-show.php:300
|
2003 |
+
msgid "Bulk Actions"
|
2004 |
+
msgstr "Tömeges műveletek"
|
|
|
2005 |
|
2006 |
+
#: ../subscribers/view-subscriber-show.php:302 ../subscribers/view-subscriber-
|
2007 |
+
#: show.php:413
|
2008 |
+
msgid "Resend Confirmation"
|
2009 |
+
msgstr "A visszaigazoló levél újbóli kiküldése"
|
2010 |
|
2011 |
+
#: ../subscribers/view-subscriber-show.php:304
|
2012 |
+
msgid "Update Subscribers Status"
|
2013 |
+
msgstr "Frissítettük a feliratkozók státuszát"
|
|
|
2014 |
|
2015 |
+
#: ../subscribers/view-subscriber-show.php:307
|
2016 |
+
msgid "Select Group"
|
2017 |
+
msgstr "Előfizetői csoport kiválasztása"
|
|
|
2018 |
|
2019 |
+
#: ../subscribers/view-subscriber-show.php:322
|
2020 |
+
msgid "Select Status"
|
2021 |
+
msgstr "Válassza ki a státuszát"
|
|
|
2022 |
|
2023 |
+
#: ../subscribers/view-subscriber-show.php:328
|
2024 |
+
msgid "Apply"
|
2025 |
+
msgstr "Alkalmaz"
|
|
|
2026 |
|
2027 |
+
#: ../subscribers/view-subscriber-show.php:335
|
2028 |
+
msgid "All Groups"
|
2029 |
+
msgstr "Minden előfizetői csoport"
|
|
|
2030 |
|
2031 |
+
#: ../subscribers/view-subscriber-show.php:352
|
2032 |
+
msgid "All Status"
|
2033 |
+
msgstr "Minden státusz"
|
|
|
2034 |
|
2035 |
+
#: ../subscribers/view-subscriber-show.php:359
|
2036 |
+
msgid "1 to 500 emails"
|
2037 |
+
msgstr "1-től 500 e-mail"
|
|
|
2038 |
|
2039 |
+
#: ../subscribers/view-subscriber-show.php:360
|
2040 |
+
msgid "501 to 1000"
|
2041 |
+
msgstr "501-1000 e-mail"
|
|
|
2042 |
|
2043 |
+
#: ../subscribers/view-subscriber-show.php:361
|
2044 |
+
msgid "1001 to 1500"
|
2045 |
+
msgstr "1001-1500 e-mail"
|
|
|
2046 |
|
2047 |
+
#: ../subscribers/view-subscriber-show.php:362
|
2048 |
+
msgid "1501 to 2000"
|
2049 |
+
msgstr "1501- 2000"
|
|
|
2050 |
|
2051 |
+
#: ../subscribers/view-subscriber-show.php:363
|
2052 |
+
msgid "2001 to 4000"
|
2053 |
+
msgstr "2001-4000"
|
|
|
2054 |
|
2055 |
+
#: ../subscribers/view-subscriber-show.php:364
|
2056 |
+
msgid "4001 to 6000"
|
2057 |
+
msgstr "4001-6000"
|
|
|
2058 |
|
2059 |
+
#: ../subscribers/view-subscriber-show.php:365
|
2060 |
+
msgid "6001 to 10000"
|
2061 |
+
msgstr "6001-10 000"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2062 |
|
2063 |
+
#: ../subscribers/view-subscriber-show.php:366
|
2064 |
+
msgid "Display All"
|
2065 |
+
msgstr "Mindent megjelenít"
|
2066 |
|
2067 |
+
#: ../subscribers/view-subscriber-sync.php:36
|
2068 |
+
msgid "Please select default group to newly registered user."
|
2069 |
+
msgstr "Válaszd ki, hogy melyik csoportba kerüljenek az új feliratkozók"
|
2070 |
|
2071 |
+
#: ../subscribers/view-subscriber-sync.php:50
|
2072 |
+
msgid "Emails Successfully Synced."
|
2073 |
+
msgstr "Sikeres szinkronizálás"
|
2074 |
|
2075 |
+
#: ../subscribers/view-subscriber-sync.php:88
|
2076 |
+
msgid "Sync Email"
|
2077 |
+
msgstr "E-mailek szinkronizálása"
|
2078 |
|
2079 |
+
#: ../subscribers/view-subscriber-sync.php:101
|
2080 |
+
msgid "Sync newly registered users to subscribers list"
|
2081 |
+
msgstr "Az újjonan feliratkozottak szinkronizálása a meglévőkkel"
|
2082 |
|
2083 |
+
#: ../subscribers/view-subscriber-sync.php:114
|
2084 |
+
msgid "Select group to add newly registered users to"
|
2085 |
+
msgstr "Válaszd ki, hogy az új feliratkozók melyik csoportba kerüljenek!"
|
2086 |
|
2087 |
+
#. Plugin Name of the plugin/theme
|
2088 |
+
msgid "Email Subscribers & Newsletters"
|
2089 |
+
msgstr "Email Subscribers & Newsletters"
|
2090 |
|
2091 |
+
#. Description of the plugin/theme
|
2092 |
+
msgid ""
|
2093 |
+
"Add subscription forms on website, send HTML newsletters & automatically "
|
2094 |
+
"notify subscribers about new blog posts once it is published."
|
2095 |
+
msgstr ""
|
2096 |
+
"A feliratkozó űrlap hozzáadása, HTML hírlevél és új bejegyzés értesítő (e-"
|
2097 |
+
"mail küldése, amikor egy bejegyzést közzétesznek)"
|
languages/email-subscribers-it_IT.mo
CHANGED
Binary file
|
languages/email-subscribers-it_IT.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.4.
|
4 |
"Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Italian\n"
|
@@ -22,32 +22,39 @@ msgstr ""
|
|
22 |
"X-Generator: Loco - https://localise.biz/\n"
|
23 |
"X-Loco-Target-Locale: it_IT"
|
24 |
|
25 |
-
#: ../
|
26 |
-
|
|
|
|
|
|
|
|
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: ../
|
30 |
-
|
|
|
|
|
|
|
|
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: ../
|
34 |
-
|
35 |
-
|
|
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: ../
|
39 |
-
|
40 |
-
msgid "Confirmation emails resent successfully."
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: ../
|
44 |
-
msgid ""
|
45 |
-
"Oops! Looks like you are not the site administrator.<br><br>Only the site "
|
46 |
-
"administrator can export subscriber list."
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: ../
|
50 |
-
|
|
|
51 |
msgstr ""
|
52 |
|
53 |
#: ../export/export-email-address.php:50 ../export/export-email-address.php:54
|
@@ -83,2157 +90,2116 @@ msgid ""
|
|
83 |
"Roles"
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: ../help/help.php:
|
|
|
|
|
|
|
|
|
87 |
msgid "Using our <b>free</b> "
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: ../help/help.php:
|
91 |
msgid ""
|
92 |
"Using Email Subscribers you can achieve this easily with our <b>free</b> "
|
93 |
"plugin "
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: ../help/help.php:
|
97 |
msgid "Email subscribers easily integrates with another <b>free</b> plugin "
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: ../
|
101 |
-
|
102 |
-
msgid ""
|
103 |
-
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
104 |
-
"subscription. If you can't see the email within a few minutes, check the "
|
105 |
-
"spam folder."
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: ../
|
109 |
-
|
110 |
-
msgid ""
|
111 |
-
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
112 |
-
"subscription. If you can't see the email within a few minutes, check the "
|
113 |
-
"spam folder."
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: ../
|
117 |
msgid ""
|
118 |
-
"
|
119 |
-
"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: ../
|
123 |
-
msgid "
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: ../
|
127 |
-
|
|
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: ../
|
131 |
-
|
132 |
-
msgid "
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: ../
|
136 |
-
msgid "
|
137 |
-
msgstr "
|
138 |
|
139 |
-
#: ../
|
140 |
-
msgid "
|
141 |
-
msgstr "
|
142 |
|
143 |
-
#: ../
|
144 |
-
msgid "
|
145 |
-
msgstr ""
|
146 |
-
"Per favore seleziona l'oggetto della mail di notifica. Usa il menu templates "
|
147 |
-
"per crearne uno nuovo."
|
148 |
|
149 |
-
#: ../
|
150 |
-
msgid "
|
151 |
-
msgstr "
|
152 |
|
153 |
-
#: ../
|
154 |
-
msgid "
|
155 |
-
msgstr "
|
156 |
|
157 |
-
#: ../
|
158 |
-
msgid "
|
159 |
-
msgstr "
|
160 |
|
161 |
-
#: ../
|
162 |
-
|
163 |
-
|
164 |
-
#: sentmail/deliverreport-show.php:61 ../subscribers/view-subscriber-import.php:
|
165 |
-
#: 149 ../subscribers/view-subscriber-show.php:247 ../subscribers/view-subscriber-
|
166 |
-
#: export.php:51 ../subscribers/view-subscriber-add.php:118 ../subscribers/view-
|
167 |
-
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:92 ..
|
168 |
-
#: templates/template-preview.php:32 ../sendmail/sendmail.php:94
|
169 |
-
msgid "Help"
|
170 |
-
msgstr "Aiuto"
|
171 |
|
172 |
-
#: ../
|
173 |
-
msgid "
|
174 |
-
msgstr "
|
175 |
|
176 |
-
#: ../
|
177 |
-
|
178 |
-
|
179 |
-
#: subscriber-add.php:166 ../subscribers/view-subscriber-edit.php:162 ..
|
180 |
-
#: subscribers/view-subscriber-sync.php:119 ../sendmail/sendmail.php:111 ..
|
181 |
-
#: sendmail/sendmail.php:138 ../sendmail/sendmail.php:152
|
182 |
-
msgid "Select"
|
183 |
-
msgstr "Seleziona"
|
184 |
|
185 |
-
#: ../
|
186 |
-
|
187 |
-
|
188 |
-
msgstr "Seleziona oggetto della mail di notifica"
|
189 |
|
190 |
-
#: ../
|
191 |
-
|
192 |
-
|
193 |
-
msgstr "(Usa il menu templates per crearne uno nuovo)"
|
194 |
|
195 |
-
#: ../
|
196 |
-
#:
|
197 |
-
msgid "
|
198 |
-
msgstr "
|
199 |
|
200 |
-
#: ../
|
201 |
-
|
202 |
-
|
203 |
-
msgstr "Attiva tutti"
|
204 |
|
205 |
-
#: ../
|
206 |
-
#:
|
207 |
-
msgid "
|
208 |
-
msgstr "
|
209 |
|
210 |
-
#: ../
|
211 |
-
#:
|
212 |
-
msgid "
|
213 |
-
msgstr "
|
214 |
|
215 |
-
#: ../
|
216 |
-
#:
|
217 |
-
msgid "
|
218 |
-
msgstr "
|
219 |
|
220 |
-
#: ../
|
221 |
-
#:
|
222 |
-
msgid "
|
223 |
-
msgstr "
|
224 |
|
225 |
-
#: ../
|
226 |
-
#:
|
227 |
-
msgid "
|
228 |
-
msgstr "
|
229 |
|
230 |
-
#: ../
|
231 |
-
#:
|
232 |
-
msgid "
|
233 |
-
msgstr "
|
234 |
|
235 |
-
#: ../
|
236 |
-
#:
|
237 |
-
msgid "
|
238 |
-
msgstr "
|
239 |
|
240 |
-
#: ../
|
241 |
-
#:
|
242 |
-
msgid "
|
243 |
-
msgstr "
|
244 |
|
245 |
-
#: ../
|
246 |
-
|
247 |
-
|
248 |
-
msgstr "Salva"
|
249 |
|
250 |
-
#: ../
|
251 |
-
|
252 |
-
|
253 |
-
msgid "Oops, selected details does not exists."
|
254 |
-
msgstr "Ooops, i dettagli selezionati non esistono."
|
255 |
|
256 |
-
#: ../
|
257 |
-
|
258 |
-
|
|
|
259 |
|
260 |
-
#: ../
|
261 |
-
|
262 |
-
msgid "
|
263 |
-
msgstr "
|
264 |
|
265 |
-
#: ../
|
266 |
-
|
267 |
-
msgid "
|
268 |
-
msgstr "
|
269 |
|
270 |
-
#: ../
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
271 |
msgid ""
|
272 |
-
"
|
273 |
-
"
|
274 |
msgstr ""
|
275 |
-
"
|
276 |
-
"
|
277 |
|
278 |
-
#: ../
|
279 |
-
|
280 |
-
msgid "
|
281 |
-
msgstr "
|
282 |
|
283 |
-
#: ../
|
284 |
-
|
285 |
-
msgid "
|
286 |
-
msgstr "
|
287 |
-
|
288 |
-
#: ../notification/notification-show.php:70 ../notification/notification-show.php:
|
289 |
-
#: 78
|
290 |
-
msgid "Post Categories / Custom Post Types"
|
291 |
-
msgstr "Categorie articoli / Tipi articolo personalizzati"
|
292 |
-
|
293 |
-
#: ../notification/notification-show.php:71 ../notification/notification-show.php:
|
294 |
-
#: 79
|
295 |
-
msgid "Notification Status"
|
296 |
-
msgstr "Status notifica"
|
297 |
-
|
298 |
-
#: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
|
299 |
-
#: php:417 ../templates/template-preview.php:35
|
300 |
-
msgid "Edit"
|
301 |
-
msgstr "Modifica"
|
302 |
|
303 |
-
#: ../
|
304 |
-
|
305 |
-
msgid "
|
306 |
-
msgstr "
|
307 |
|
308 |
-
#: ../
|
309 |
-
|
310 |
-
msgid "
|
311 |
-
msgstr "
|
312 |
|
313 |
-
#: ../
|
314 |
-
|
315 |
-
|
|
|
|
|
|
|
|
|
|
|
316 |
|
317 |
-
#: ../
|
318 |
-
|
319 |
-
|
|
|
320 |
|
321 |
-
#: ../
|
322 |
-
|
323 |
-
|
|
|
|
|
|
|
324 |
|
325 |
-
#: ../
|
326 |
-
|
327 |
-
|
|
|
328 |
|
329 |
-
#: ../
|
330 |
-
|
331 |
-
msgid "
|
332 |
-
msgstr "
|
333 |
|
334 |
-
|
335 |
-
|
336 |
-
|
|
|
337 |
|
338 |
-
|
339 |
-
|
340 |
-
|
|
|
341 |
|
342 |
-
|
|
|
343 |
msgid ""
|
344 |
-
"
|
345 |
-
"
|
346 |
-
msgstr ""
|
347 |
-
"Aggiungi un modulo di iscrizione al sito, invia email in HTML e aggiorna "
|
348 |
-
"automaticamente gli iscritti quando viene aggiunto un nuovo articolo."
|
349 |
-
|
350 |
-
#. Author of the plugin/theme
|
351 |
-
msgid "Icegram"
|
352 |
-
msgstr "Icegram"
|
353 |
|
354 |
-
#: ../
|
355 |
-
msgctxt "
|
356 |
-
msgid "
|
357 |
-
msgstr "
|
358 |
|
359 |
-
#: ../
|
360 |
-
|
361 |
-
|
|
|
362 |
|
363 |
-
#: ../
|
364 |
-
|
365 |
-
|
|
|
366 |
|
367 |
-
#: ../
|
368 |
-
|
369 |
-
|
|
|
370 |
|
371 |
-
#: ../
|
372 |
-
|
373 |
-
|
|
|
374 |
|
375 |
-
#: ../
|
376 |
-
|
377 |
-
msgid "
|
378 |
-
msgstr "
|
379 |
|
380 |
-
#: ../
|
381 |
-
|
382 |
-
|
|
|
383 |
|
384 |
-
#: ../
|
385 |
-
|
386 |
-
|
|
|
387 |
|
388 |
-
#: ../
|
389 |
-
|
390 |
-
"
|
391 |
-
"
|
392 |
-
msgstr ""
|
393 |
-
"Scegli un nome e un indirizzo email per il campo FROM per le email spedite "
|
394 |
-
"con questo plugin."
|
395 |
|
396 |
-
#: ../
|
397 |
-
|
398 |
-
|
|
|
399 |
|
400 |
-
#: ../
|
401 |
-
|
402 |
-
"
|
403 |
-
"
|
404 |
-
msgstr ""
|
405 |
-
"Opzioni 1 e 2 sono per spedire le email con il metodo standard di WordPress "
|
406 |
-
"wp_mail(). Opzioni 3 e 4 sono per spedire le email con il metodo PHP mail()."
|
407 |
|
408 |
-
#: ../
|
409 |
-
|
410 |
-
|
|
|
411 |
|
412 |
-
#: ../
|
413 |
-
|
414 |
-
|
|
|
415 |
|
416 |
-
#: ../
|
417 |
-
|
418 |
-
|
|
|
419 |
|
420 |
-
#: ../
|
421 |
-
|
422 |
-
|
|
|
423 |
|
424 |
-
#: ../
|
425 |
-
|
426 |
-
|
|
|
427 |
|
428 |
-
#: ../
|
429 |
msgid ""
|
430 |
-
"
|
431 |
-
"
|
432 |
-
"
|
433 |
-
"
|
434 |
-
"directly in the list."
|
435 |
msgstr ""
|
436 |
-
"
|
437 |
-
"
|
438 |
-
"
|
439 |
-
"
|
440 |
-
"iscritto direttamente."
|
441 |
|
442 |
-
#: ../
|
443 |
-
|
444 |
-
|
|
|
445 |
|
446 |
-
#: ../
|
447 |
-
|
448 |
-
|
449 |
-
#: subscriber-edit.php:150
|
450 |
-
msgid "Single Opt In"
|
451 |
-
msgstr "Singolo Opt In"
|
452 |
|
453 |
-
#: ../
|
454 |
-
msgid "
|
455 |
-
msgstr "
|
456 |
|
457 |
-
#: ../
|
458 |
-
msgid ""
|
459 |
-
"
|
460 |
-
"Emails."
|
461 |
-
msgstr ""
|
462 |
-
"Seleziona la dimensione dell'immagine per {{POSTIMAGE}} che deve essere "
|
463 |
-
"visualizzatanelle email di notifica di pubblicazione articoli."
|
464 |
|
465 |
-
#: ../
|
466 |
-
msgid "
|
467 |
-
msgstr "
|
468 |
|
469 |
-
#: ../
|
470 |
-
msgid "
|
471 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
472 |
|
473 |
-
#: ../
|
474 |
msgid "Thumbnail"
|
475 |
msgstr "Miniatura"
|
476 |
|
477 |
-
#: ../
|
478 |
-
|
479 |
-
|
|
|
480 |
|
481 |
-
#: ../
|
482 |
-
msgid ""
|
483 |
-
"
|
484 |
-
"by comma)."
|
485 |
-
msgstr ""
|
486 |
-
"Inserisci gli indirizzi email dell'amministratore che devono ricevere le "
|
487 |
-
"notifiche (separati da virgola)"
|
488 |
|
489 |
-
#: ../
|
490 |
-
msgid "
|
491 |
-
msgstr "
|
492 |
|
493 |
-
#: ../
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
494 |
msgid ""
|
495 |
-
"
|
496 |
-
"
|
|
|
497 |
msgstr ""
|
498 |
-
"
|
499 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
500 |
|
501 |
-
#: ../
|
502 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
503 |
msgid "YES"
|
504 |
msgstr "SI"
|
505 |
|
506 |
-
#: ../
|
507 |
-
#:
|
508 |
msgid "NO"
|
509 |
msgstr "NO"
|
510 |
|
511 |
-
#: ../
|
512 |
-
msgid "
|
513 |
-
msgstr "
|
514 |
-
|
515 |
-
#: ../settings/settings-edit.php:150
|
516 |
-
msgid ""
|
517 |
-
"Subject for the admin email whenever a new subscriber signs up and is "
|
518 |
-
"confirmed."
|
519 |
-
msgstr ""
|
520 |
-
"Oggetto dell'email all'Amministrazione quanso un utente si iscrive e "
|
521 |
-
"conferma."
|
522 |
|
523 |
-
#: ../
|
524 |
-
msgid "
|
525 |
-
msgstr "
|
526 |
|
527 |
-
#: ../
|
528 |
-
msgid ""
|
529 |
-
"
|
530 |
-
"confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
|
531 |
-
msgstr ""
|
532 |
-
"Contenuto della mail all'Amministratore quando un utente si iscrive e "
|
533 |
-
"conferma. <br />Parole chiave disponibili: {{NAME}}, {{EMAIL}}, {{GROUP}}"
|
534 |
|
535 |
-
#: ../
|
536 |
-
|
537 |
-
|
|
|
538 |
|
539 |
-
#: ../
|
540 |
-
msgid "
|
541 |
-
msgstr "
|
542 |
|
543 |
-
#: ../
|
544 |
-
msgid "
|
545 |
-
msgstr "
|
546 |
|
547 |
-
#: ../
|
548 |
-
msgid ""
|
549 |
-
"
|
550 |
-
"Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
|
551 |
-
msgstr ""
|
552 |
-
"Contenuto dell'email di Report che viene inviata all'Amministratore.<br "
|
553 |
-
"/>Parole chiave disponibili: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, "
|
554 |
-
"{{ENDTIME}}"
|
555 |
|
556 |
-
#: ../
|
557 |
-
msgid "
|
558 |
-
msgstr "
|
559 |
|
560 |
-
#: ../
|
561 |
msgid ""
|
562 |
-
"
|
563 |
-
"
|
|
|
564 |
msgstr ""
|
565 |
-
"
|
566 |
-
"
|
|
|
567 |
|
568 |
-
#: ../
|
569 |
-
msgid "
|
570 |
-
msgstr "
|
571 |
|
572 |
-
#: ../
|
573 |
msgid ""
|
574 |
-
"
|
575 |
-
"
|
576 |
msgstr ""
|
577 |
-
"
|
578 |
-
"
|
579 |
|
580 |
-
#: ../
|
581 |
-
msgid "
|
582 |
-
msgstr "
|
583 |
|
584 |
-
#: ../
|
585 |
-
msgid "
|
586 |
-
msgstr "
|
587 |
|
588 |
-
#: ../
|
589 |
msgid ""
|
590 |
-
"
|
591 |
-
"
|
592 |
msgstr ""
|
593 |
-
"
|
594 |
-
"
|
595 |
|
596 |
-
#: ../
|
597 |
-
msgid ""
|
598 |
-
"
|
599 |
-
|
|
|
|
|
600 |
msgstr ""
|
601 |
-
"
|
602 |
-
"
|
603 |
|
604 |
-
#: ../
|
605 |
-
msgid "
|
606 |
-
msgstr "
|
607 |
|
608 |
-
#: ../
|
609 |
-
msgid ""
|
610 |
-
"To send welcome email to subscriber after successful signup. This option "
|
611 |
-
"must be set to YES."
|
612 |
msgstr ""
|
613 |
-
"
|
614 |
-
"
|
615 |
-
|
616 |
-
#: ../settings/settings-edit.php:224
|
617 |
-
msgid "Subject for Welcome Email"
|
618 |
-
msgstr "Oggetto per l'email di benvenuto"
|
619 |
|
620 |
-
#: ../
|
621 |
-
msgid ""
|
622 |
-
"Subject for the subscriber welcome email. This will be sent whenever a "
|
623 |
-
"user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
|
624 |
-
"Opt-In) successfully."
|
625 |
msgstr ""
|
626 |
-
"
|
627 |
-
"
|
628 |
-
"(Singolo Opt-In)."
|
629 |
|
630 |
-
#: ../
|
631 |
-
msgid "
|
632 |
-
msgstr "
|
633 |
|
634 |
-
#: ../
|
635 |
-
msgid ""
|
636 |
-
"
|
637 |
-
"confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
|
638 |
-
"<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
|
639 |
-
msgstr ""
|
640 |
-
"Contenuto dell'email di benvenuto che viene inviata quando lputente ha "
|
641 |
-
"confermato l'iscrizione (se Doppio Opt-In) oppure si è iscritto (se Singolo "
|
642 |
-
"Opt-In)."
|
643 |
|
644 |
-
#: ../
|
645 |
-
msgid "
|
646 |
-
msgstr "
|
647 |
|
648 |
-
#: ../
|
649 |
-
msgid ""
|
650 |
-
"
|
651 |
-
"from this plugin. It is a readonly field and you are advised not to modify "
|
652 |
-
"it."
|
653 |
-
msgstr ""
|
654 |
-
"Questo link di cancellazione viene aggiunto automaticamente alle email "
|
655 |
-
"inviate con questo plugin. E' un campo a sola lettura e non può essere "
|
656 |
-
"modificato."
|
657 |
|
658 |
-
#: ../
|
659 |
-
msgid "
|
660 |
-
msgstr "
|
661 |
|
662 |
-
#: ../
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
|
668 |
-
|
|
|
|
|
669 |
|
670 |
-
#: ../
|
671 |
-
msgid "
|
672 |
-
msgstr "
|
673 |
|
674 |
-
#: ../
|
|
|
675 |
msgid ""
|
676 |
-
"
|
677 |
-
"email
|
|
|
|
|
|
|
|
|
|
|
678 |
msgstr ""
|
679 |
-
"
|
680 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
681 |
|
682 |
-
#: ../
|
683 |
-
msgid "
|
684 |
-
msgstr "
|
685 |
|
686 |
-
#: ../
|
687 |
-
msgid ""
|
688 |
-
"Default message to display if there is any issue while clicking on subscribe "
|
689 |
-
"/ confirmation link from the Double Opt-In (Confirmation) emails."
|
690 |
msgstr ""
|
691 |
-
"
|
692 |
-
"
|
693 |
|
694 |
-
#: ../
|
695 |
-
msgid "
|
696 |
-
msgstr "
|
697 |
|
698 |
-
#: ../
|
699 |
-
msgid ""
|
700 |
-
"
|
701 |
-
"unsubscribe link from the emails."
|
702 |
-
msgstr ""
|
703 |
-
"Messaggio standard da visualizzare se si verifica un problema nel link di "
|
704 |
-
"cancellazione presente nelle email. "
|
705 |
|
706 |
-
#: ../
|
707 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
708 |
msgstr ""
|
709 |
-
"
|
710 |
-
"
|
711 |
|
712 |
-
#: ../
|
713 |
-
msgid "
|
714 |
-
msgstr "
|
715 |
|
716 |
-
#: ../
|
717 |
-
|
718 |
-
|
719 |
-
msgid "Administrator Only"
|
720 |
-
msgstr "Solo Amministratore"
|
721 |
|
722 |
-
#: ../
|
723 |
-
|
724 |
-
|
725 |
-
msgid "Administrator/Editor"
|
726 |
-
msgstr "Amministratore/Editor"
|
727 |
|
728 |
-
#: ../
|
729 |
-
|
730 |
-
|
731 |
-
msgid "Administrator/Editor/Author/Contributor"
|
732 |
-
msgstr "Amministratore/Editor/Autore/Contributore"
|
733 |
|
734 |
-
#: ../
|
735 |
-
msgid "
|
736 |
-
msgstr "
|
737 |
|
738 |
-
#: ../
|
739 |
-
msgid "
|
740 |
-
msgstr "
|
741 |
|
742 |
-
#: ../
|
743 |
-
|
744 |
-
|
745 |
-
msgstr "Newsletter"
|
746 |
|
747 |
-
#: ../
|
748 |
-
msgid "
|
749 |
-
msgstr "
|
750 |
|
751 |
-
#: ../
|
752 |
-
msgid "
|
753 |
-
msgstr "
|
754 |
|
755 |
-
#: ../
|
756 |
-
msgid ""
|
757 |
-
"
|
758 |
-
"modify it."
|
759 |
-
msgstr ""
|
760 |
-
"Questo è il tuo URL per il Cron Job. E' un campo a sola lettura e non può "
|
761 |
-
"essere modificato."
|
762 |
|
763 |
-
#: ../
|
764 |
-
msgid "
|
765 |
-
msgstr "
|
766 |
|
767 |
-
#: ../
|
768 |
-
msgid "
|
769 |
-
msgstr "
|
770 |
|
771 |
-
#: ../
|
772 |
-
msgid "
|
773 |
-
msgstr "
|
774 |
|
775 |
-
#: ../
|
776 |
-
msgid "
|
777 |
-
msgstr "
|
778 |
|
779 |
-
#: ../
|
780 |
msgid ""
|
781 |
-
"
|
782 |
-
"
|
783 |
msgstr ""
|
784 |
-
"
|
785 |
-
"
|
786 |
|
787 |
-
#: ../
|
788 |
-
msgid "
|
789 |
-
msgstr "
|
790 |
|
791 |
-
#: ../
|
792 |
-
msgid ""
|
793 |
-
"
|
794 |
-
"schedule-cron-emails/?"
|
795 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
|
796 |
-
"Cron?</a>"
|
797 |
-
msgstr ""
|
798 |
-
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
799 |
-
"schedule-cron-emails/?"
|
800 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Che cos'è "
|
801 |
-
"Cron?</a>"
|
802 |
|
803 |
-
#: ../
|
804 |
-
msgid ""
|
805 |
-
|
806 |
-
"schedule-cron-emails-in-cpanel/?"
|
807 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
|
808 |
-
"job in cPanel</a>"
|
809 |
-
msgstr ""
|
810 |
-
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
811 |
-
"schedule-cron-emails-in-cpanel/?"
|
812 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configura "
|
813 |
-
"un cron job in cPanel</a>"
|
814 |
|
815 |
-
#: ../
|
816 |
msgid ""
|
817 |
-
"
|
818 |
-
"
|
819 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
|
820 |
-
"job in Plesk</a>"
|
821 |
msgstr ""
|
822 |
-
"
|
823 |
-
"
|
824 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configura "
|
825 |
-
"un cron job in Plesk</a>"
|
826 |
|
827 |
-
|
|
|
|
|
|
|
|
|
|
|
828 |
msgid ""
|
829 |
-
"
|
830 |
-
"
|
831 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
|
832 |
-
"does not support cron jobs?</a>"
|
833 |
msgstr ""
|
834 |
-
"
|
835 |
-
"
|
836 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Il tuo "
|
837 |
-
"Hosting non supporta i cron job ?</a>"
|
838 |
-
|
839 |
-
#: ../settings/settings-edit.php:504
|
840 |
-
msgid "Please enter sender of notifications from name."
|
841 |
-
msgstr "Inserisci il nome del mittente delle notifiche."
|
842 |
-
|
843 |
-
#: ../settings/settings-edit.php:509
|
844 |
-
msgid "Please enter sender of notifications from email."
|
845 |
-
msgstr "Inserisci l'email del mittente delle notifiche."
|
846 |
|
847 |
-
#: ../
|
848 |
-
|
849 |
-
|
|
|
850 |
|
851 |
-
#: ../
|
852 |
-
msgid "
|
853 |
-
msgstr "
|
854 |
|
855 |
-
#: ../
|
856 |
-
msgid "
|
857 |
-
msgstr "
|
858 |
|
859 |
-
#: ../
|
860 |
-
msgid "
|
861 |
-
msgstr "
|
862 |
|
863 |
-
#: ../
|
864 |
-
msgid "
|
865 |
-
|
|
|
|
|
|
|
|
|
866 |
|
867 |
-
#: ../
|
868 |
-
msgid "
|
869 |
-
|
|
|
|
|
|
|
|
|
870 |
|
871 |
-
#: ../
|
872 |
-
msgid "
|
873 |
-
msgstr "
|
874 |
|
875 |
-
#: ../
|
|
|
876 |
msgid ""
|
877 |
-
"
|
878 |
-
"
|
879 |
-
"a slight variation on how your customer will view the email content."
|
880 |
msgstr ""
|
881 |
-
"
|
882 |
-
"
|
883 |
-
"potrebbe esserci una leggera variazione sul modo in cui il cliente "
|
884 |
-
"visualizzerà il contenuto dell'email."
|
885 |
-
|
886 |
-
#: ../sentmail/sentmail-preview.php:53
|
887 |
-
msgid "Back"
|
888 |
-
msgstr "Indietro"
|
889 |
|
890 |
-
#: ../
|
891 |
-
msgid "
|
892 |
-
msgstr "
|
893 |
|
894 |
-
#: ../
|
895 |
-
|
896 |
-
|
897 |
-
msgstr "Rapporti"
|
898 |
|
899 |
-
#: ../
|
900 |
-
msgid "
|
901 |
-
msgstr "
|
902 |
|
903 |
-
#: ../
|
904 |
-
msgid "
|
905 |
-
msgstr "
|
|
|
|
|
906 |
|
907 |
-
#: ../
|
908 |
-
|
909 |
-
|
910 |
-
msgstr "Anteprima"
|
911 |
|
912 |
-
#: ../
|
913 |
-
msgid "
|
914 |
-
msgstr "
|
915 |
|
916 |
-
#: ../
|
917 |
-
|
918 |
-
|
919 |
-
msgid "Status"
|
920 |
-
msgstr "Stato"
|
921 |
|
922 |
-
#: ../
|
923 |
-
#:
|
924 |
-
|
925 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
926 |
|
927 |
-
#: ../
|
928 |
-
msgid "
|
929 |
-
msgstr "
|
930 |
|
931 |
-
#: ../
|
932 |
-
|
933 |
-
|
|
|
|
|
|
|
|
|
|
|
934 |
|
935 |
-
#: ../
|
936 |
-
|
937 |
-
|
|
|
938 |
|
939 |
-
#: ../
|
940 |
-
#:
|
941 |
-
|
942 |
-
|
943 |
-
msgstr "Azione"
|
944 |
|
945 |
-
#: ../
|
946 |
-
|
947 |
-
|
|
|
948 |
|
949 |
-
#: ../
|
950 |
-
|
951 |
-
"
|
952 |
-
"
|
953 |
-
msgstr ""
|
954 |
-
"Nota: Clicca su <strong>Ottimizza Tabella e Cancella Record</strong> per "
|
955 |
-
"cancellare tutti i rapporti tranne gli ultimi 10."
|
956 |
|
957 |
-
#: ../
|
958 |
-
|
959 |
-
|
|
|
960 |
|
961 |
-
#: ../
|
962 |
-
|
963 |
-
|
|
|
964 |
|
965 |
-
#: ../
|
966 |
-
#:
|
967 |
-
|
968 |
-
|
969 |
-
msgstr "Sno"
|
970 |
|
971 |
-
#: ../
|
972 |
-
|
973 |
-
|
|
|
974 |
|
975 |
-
#: ../
|
976 |
-
|
977 |
-
|
|
|
978 |
|
979 |
-
#: ../
|
980 |
-
|
981 |
-
|
982 |
-
|
983 |
-
#: ../sentmail/deliverreport-show.php:78 ../sentmail/deliverreport-show.php:89
|
984 |
-
msgid "Viewed Date"
|
985 |
-
msgstr "Data Vista"
|
986 |
-
|
987 |
-
#: ../subscribers/view-subscriber-import.php:45
|
988 |
-
msgid ""
|
989 |
-
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
990 |
-
"the Group name."
|
991 |
-
msgstr ""
|
992 |
-
"Errore: i caratteri speciali (['^$%&*()}{@#~?><>,|=_+\\\"]) non sono "
|
993 |
-
"utilizzabili nel nome del Gruppo."
|
994 |
|
995 |
-
#: ../
|
996 |
-
|
997 |
-
|
|
|
998 |
|
999 |
-
#: ../
|
1000 |
-
|
1001 |
-
|
|
|
1002 |
|
1003 |
-
#: ../
|
1004 |
-
|
1005 |
-
|
|
|
1006 |
|
1007 |
-
#: ../
|
1008 |
-
#:
|
1009 |
-
|
1010 |
-
|
|
|
1011 |
|
1012 |
-
#: ../
|
1013 |
-
msgid "
|
1014 |
-
msgstr "
|
1015 |
|
1016 |
-
#: ../
|
1017 |
-
msgid "
|
1018 |
-
msgstr "
|
1019 |
|
1020 |
-
#: ../
|
1021 |
-
|
1022 |
-
|
1023 |
-
#: subscribers/view-subscriber-sync.php:89
|
1024 |
-
msgid "Add New Subscriber"
|
1025 |
-
msgstr "Aggiungi nuovo iscritto"
|
1026 |
|
1027 |
-
#: ../
|
1028 |
-
|
1029 |
-
|
1030 |
-
msgid "Export"
|
1031 |
-
msgstr "Esporta"
|
1032 |
|
1033 |
-
#: ../
|
1034 |
-
#:
|
1035 |
-
|
1036 |
-
|
1037 |
-
msgid "Sync"
|
1038 |
-
msgstr "Sincronizza"
|
1039 |
|
1040 |
-
#: ../subscribers/view-subscriber-
|
1041 |
-
|
1042 |
-
|
|
|
1043 |
|
1044 |
-
#: ../
|
1045 |
-
msgid "
|
1046 |
-
msgstr "
|
1047 |
|
1048 |
-
#: ../
|
1049 |
-
msgid "
|
1050 |
-
|
|
|
|
|
|
|
|
|
1051 |
|
1052 |
-
#: ../
|
1053 |
-
|
1054 |
-
|
|
|
1055 |
|
1056 |
-
#: ../
|
1057 |
-
#:
|
1058 |
-
|
1059 |
-
|
1060 |
-
msgstr "Confermato"
|
1061 |
|
1062 |
-
#: ../
|
1063 |
-
#:
|
1064 |
-
|
1065 |
-
|
1066 |
-
msgstr "Non Confermato"
|
1067 |
|
1068 |
-
#: ../
|
1069 |
-
#:
|
1070 |
-
|
1071 |
-
|
1072 |
-
msgstr "Disiscritto"
|
1073 |
|
1074 |
-
#: ../subscribers/view-subscriber-
|
1075 |
-
|
1076 |
-
|
|
|
1077 |
|
1078 |
-
#: ../
|
1079 |
-
#:
|
1080 |
-
msgid "
|
1081 |
-
msgstr "
|
1082 |
|
1083 |
-
#: ../
|
1084 |
-
#: show.php:
|
1085 |
-
#:
|
1086 |
-
|
1087 |
-
|
1088 |
-
msgstr "Importa"
|
1089 |
|
1090 |
-
#: ../subscribers/view-subscriber-show.php:17
|
1091 |
msgid "Click Here"
|
1092 |
msgstr "Clicca qui"
|
1093 |
|
1094 |
-
#: ../
|
1095 |
-
msgid "
|
1096 |
-
msgstr "
|
1097 |
|
1098 |
-
#: ../
|
1099 |
-
|
1100 |
-
|
1101 |
-
msgstr "Record cancellato."
|
1102 |
|
1103 |
-
#: ../
|
1104 |
-
msgid "
|
1105 |
-
msgstr "
|
1106 |
|
1107 |
-
#: ../
|
1108 |
-
|
1109 |
-
|
1110 |
-
msgid "No record was selected."
|
1111 |
-
msgstr "Nessun record selezionato."
|
1112 |
|
1113 |
-
#: ../
|
1114 |
-
msgid "
|
1115 |
-
msgstr "
|
1116 |
|
1117 |
-
#: ../
|
1118 |
-
msgid "
|
1119 |
-
msgstr "
|
1120 |
|
1121 |
-
#: ../
|
1122 |
-
msgid "
|
1123 |
-
msgstr "
|
1124 |
|
1125 |
-
#: ../
|
1126 |
-
msgid "
|
1127 |
-
msgstr "
|
1128 |
|
1129 |
-
#: ../
|
1130 |
-
msgid "
|
1131 |
-
msgstr "Seleziona
|
1132 |
|
1133 |
-
#: ../
|
1134 |
-
|
1135 |
-
|
1136 |
-
msgstr "Iscritti"
|
1137 |
|
1138 |
-
#: ../
|
1139 |
-
msgid "
|
1140 |
-
msgstr "
|
1141 |
|
1142 |
-
#: ../
|
1143 |
-
|
1144 |
-
|
1145 |
-
msgstr "Iscritti attivi: %s"
|
1146 |
|
1147 |
-
#: ../
|
1148 |
-
|
1149 |
-
|
|
|
1150 |
|
1151 |
-
#: ../
|
1152 |
-
|
1153 |
-
|
1154 |
-
|
|
|
|
|
|
|
|
|
|
|
1155 |
|
1156 |
-
#: ../
|
1157 |
-
msgid "
|
1158 |
-
msgstr "
|
1159 |
|
1160 |
-
#: ../
|
1161 |
-
msgid "
|
1162 |
-
msgstr "
|
1163 |
|
1164 |
-
#: ../
|
1165 |
-
msgid "
|
1166 |
-
msgstr "
|
1167 |
|
1168 |
-
#: ../
|
1169 |
-
|
1170 |
-
|
1171 |
-
msgstr "Reinvia conferma"
|
1172 |
|
1173 |
-
#: ../
|
1174 |
-
|
1175 |
-
|
1176 |
-
|
1177 |
-
|
1178 |
-
msgid "Select Group"
|
1179 |
-
msgstr "Seleziona gruppo"
|
1180 |
|
1181 |
-
#: ../
|
1182 |
-
msgid "
|
1183 |
-
msgstr "
|
1184 |
|
1185 |
-
#: ../
|
1186 |
-
|
1187 |
-
|
|
|
|
|
1188 |
|
1189 |
-
#: ../
|
1190 |
-
|
1191 |
-
|
|
|
1192 |
|
1193 |
-
#: ../
|
1194 |
-
msgid "
|
1195 |
-
msgstr "
|
1196 |
|
1197 |
-
#: ../
|
1198 |
-
msgid "
|
1199 |
-
msgstr "
|
1200 |
|
1201 |
-
#: ../
|
1202 |
-
msgid "
|
1203 |
-
msgstr "
|
1204 |
|
1205 |
-
#: ../
|
1206 |
-
msgid "
|
1207 |
-
msgstr "
|
1208 |
|
1209 |
-
#: ../
|
1210 |
-
msgid "
|
1211 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1212 |
|
1213 |
-
#: ../
|
1214 |
-
msgid "
|
1215 |
-
msgstr "
|
1216 |
|
1217 |
-
#: ../
|
1218 |
-
msgid "
|
1219 |
-
msgstr "
|
1220 |
|
1221 |
-
#: ../
|
1222 |
-
msgid "
|
1223 |
-
msgstr "
|
1224 |
|
1225 |
-
#: ../
|
1226 |
-
msgid "
|
1227 |
-
msgstr "Visualizza
|
1228 |
|
1229 |
-
#: ../
|
1230 |
-
msgid "
|
1231 |
-
msgstr "
|
1232 |
|
1233 |
-
#: ../
|
1234 |
-
|
1235 |
-
|
1236 |
-
msgstr "Tipo di lista per esportazione"
|
1237 |
|
1238 |
-
#: ../
|
1239 |
-
|
1240 |
-
|
1241 |
-
msgstr "Totale email"
|
1242 |
|
1243 |
-
#: ../
|
1244 |
-
msgid "
|
1245 |
-
msgstr "
|
1246 |
|
1247 |
-
#: ../
|
1248 |
-
|
1249 |
-
|
|
|
|
|
1250 |
|
1251 |
-
#: ../
|
1252 |
-
|
1253 |
-
|
1254 |
-
msgid "Click to Export in CSV"
|
1255 |
-
msgstr "Clicca per esportare in CSV"
|
1256 |
|
1257 |
-
#: ../
|
1258 |
-
msgid "
|
1259 |
-
|
|
|
|
|
|
|
|
|
1260 |
|
1261 |
-
#: ../
|
1262 |
-
msgid "
|
1263 |
-
msgstr "
|
1264 |
|
1265 |
-
#: ../
|
1266 |
-
msgid "
|
1267 |
-
msgstr "
|
1268 |
|
1269 |
-
#: ../
|
1270 |
-
msgid "
|
1271 |
-
msgstr "
|
1272 |
|
1273 |
-
#: ../
|
1274 |
-
msgid "
|
1275 |
-
msgstr "
|
1276 |
|
1277 |
-
#: ../
|
1278 |
-
msgid "
|
1279 |
-
msgstr "
|
1280 |
|
1281 |
-
#: ../
|
1282 |
-
msgid "
|
1283 |
-
msgstr "
|
1284 |
|
1285 |
-
#: ../
|
1286 |
-
msgid "
|
1287 |
-
msgstr "
|
1288 |
|
1289 |
-
#: ../
|
1290 |
-
|
1291 |
-
|
1292 |
-
msgstr "Inserisci l'indirizzo email dell'iscritto."
|
1293 |
|
1294 |
-
#: ../
|
1295 |
-
msgid "
|
1296 |
-
msgstr "
|
1297 |
|
1298 |
-
#: ../
|
1299 |
msgid ""
|
1300 |
-
"
|
1301 |
-
"
|
1302 |
msgstr ""
|
1303 |
-
"
|
1304 |
-
"
|
1305 |
-
|
1306 |
-
#: ../subscribers/view-subscriber-add.php:69
|
1307 |
-
msgid "Subscriber has been saved."
|
1308 |
-
msgstr "L'iscritto è stato registrato."
|
1309 |
|
1310 |
-
#: ../
|
1311 |
-
msgid "
|
1312 |
-
msgstr "
|
1313 |
|
1314 |
-
#: ../
|
1315 |
-
msgid "
|
1316 |
-
|
|
|
|
|
|
|
|
|
1317 |
|
1318 |
-
#: ../
|
1319 |
-
msgid "
|
1320 |
-
msgstr "
|
1321 |
|
1322 |
-
#: ../
|
1323 |
-
msgid "
|
1324 |
-
msgstr "
|
1325 |
|
1326 |
-
#: ../
|
1327 |
-
msgid "
|
1328 |
-
msgstr "
|
1329 |
|
1330 |
-
#: ../
|
1331 |
-
msgid "
|
1332 |
-
msgstr "
|
1333 |
|
1334 |
-
#: ../
|
1335 |
-
msgid "
|
1336 |
-
msgstr "
|
1337 |
|
1338 |
-
#: ../
|
1339 |
-
msgid "
|
1340 |
-
|
1341 |
-
|
1342 |
-
|
1343 |
-
|
1344 |
-
|
1345 |
-
|
1346 |
-
|
1347 |
-
|
1348 |
-
|
1349 |
-
|
1350 |
-
|
1351 |
-
msgid "Edit Subscriber"
|
1352 |
-
msgstr "Modifica Iscritto"
|
1353 |
-
|
1354 |
-
#: ../subscribers/view-subscriber-edit.php:122
|
1355 |
-
msgid "Subscriber's Full Name"
|
1356 |
-
msgstr "Nome Completo Iscritto"
|
1357 |
-
|
1358 |
-
#: ../subscribers/view-subscriber-edit.php:132
|
1359 |
-
msgid "Subscriber's Email Address"
|
1360 |
-
msgstr "Indirizzo Email Iscritto"
|
1361 |
-
|
1362 |
-
#: ../subscribers/view-subscriber-edit.php:142
|
1363 |
-
msgid "Update Subscriber's Status"
|
1364 |
-
msgstr "Aggiorna lo Status dell'Iscritto"
|
1365 |
-
|
1366 |
-
#: ../subscribers/view-subscriber-edit.php:157
|
1367 |
-
msgid "Update Subscriber's Group"
|
1368 |
-
msgstr "Aggiorna il Gruppo dell'Iscritto"
|
1369 |
-
|
1370 |
-
#: ../subscribers/view-subscriber-sync.php:36
|
1371 |
-
msgid "Please select default group to newly registered user."
|
1372 |
-
msgstr "Scegli il gruppo standard per le nuove registrazioni."
|
1373 |
|
1374 |
-
#: ../
|
1375 |
-
msgid "
|
1376 |
-
msgstr "
|
1377 |
|
1378 |
-
#: ../subscribers/view-subscriber-
|
1379 |
-
|
1380 |
-
|
|
|
|
|
|
|
1381 |
|
1382 |
-
#: ../
|
1383 |
-
msgid "
|
1384 |
-
msgstr "
|
1385 |
|
1386 |
-
#: ../
|
1387 |
-
msgid "
|
1388 |
-
|
|
|
|
|
|
|
|
|
1389 |
|
1390 |
-
#: ../
|
1391 |
-
msgid "
|
1392 |
-
msgstr "
|
1393 |
|
1394 |
-
#: ../
|
1395 |
-
msgid "
|
1396 |
-
msgstr "
|
1397 |
|
1398 |
-
#: ../
|
1399 |
-
msgid ""
|
1400 |
-
"
|
1401 |
-
"published blog post."
|
1402 |
-
msgstr "<br><br>Questa anteprima di notifica post ha parole chiave sostituite."
|
1403 |
|
1404 |
-
#: ../
|
1405 |
msgid ""
|
1406 |
-
"
|
1407 |
-
"
|
1408 |
-
"customer will view the email content."
|
1409 |
msgstr ""
|
1410 |
-
"
|
1411 |
-
"
|
1412 |
-
|
|
|
|
|
|
|
1413 |
|
1414 |
-
#: ../
|
1415 |
-
#: 58 ../job/es-optin.php:68
|
1416 |
msgid ""
|
1417 |
-
"
|
1418 |
-
"
|
1419 |
msgstr ""
|
1420 |
-
"
|
1421 |
-
"
|
1422 |
-
|
1423 |
-
#: ../job/es-optin.php:61
|
1424 |
-
msgid "This email address has already been confirmed."
|
1425 |
-
msgstr "Questo indirizzo email è già stato confermato."
|
1426 |
-
|
1427 |
-
#: ../help/help.php:184
|
1428 |
-
msgid "Welcome to Email Subscribers!"
|
1429 |
-
msgstr "Benvenuto su Email Subscribers !"
|
1430 |
|
1431 |
-
#: ../
|
1432 |
-
msgid "
|
1433 |
-
msgstr "
|
1434 |
|
1435 |
-
#: ../
|
1436 |
-
|
1437 |
-
|
1438 |
-
|
|
|
|
|
|
|
1439 |
|
1440 |
-
#: ../
|
1441 |
-
|
1442 |
-
|
1443 |
-
msgstr "Versione: %s"
|
1444 |
|
1445 |
-
#: ../
|
1446 |
-
msgid "
|
1447 |
-
|
|
|
|
|
|
|
|
|
1448 |
|
1449 |
-
#: ../
|
1450 |
-
msgid "
|
1451 |
-
msgstr "
|
1452 |
|
1453 |
-
#: ../
|
1454 |
-
msgid "
|
1455 |
-
msgstr "
|
1456 |
|
1457 |
-
#: ../
|
1458 |
-
msgid "
|
1459 |
-
msgstr "
|
1460 |
|
1461 |
-
#: ../
|
1462 |
msgid ""
|
1463 |
-
"
|
1464 |
-
"
|
1465 |
-
"newsletters and manage all this in one single place."
|
1466 |
msgstr ""
|
1467 |
-
"
|
1468 |
-
"
|
1469 |
-
"
|
1470 |
|
1471 |
-
#: ../
|
1472 |
-
msgid "
|
1473 |
-
msgstr "
|
1474 |
|
1475 |
-
#: ../
|
1476 |
msgid ""
|
1477 |
-
"
|
1478 |
-
"
|
1479 |
msgstr ""
|
1480 |
-
"
|
1481 |
-
"
|
1482 |
-
|
1483 |
-
#: ../help/help.php:259
|
1484 |
-
msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
|
1485 |
-
msgstr "Configura iscrizione tramite Doppio Opt-In o singolo Opt-In."
|
1486 |
|
1487 |
-
#: ../
|
1488 |
-
msgid "
|
1489 |
-
msgstr "
|
1490 |
|
1491 |
-
#: ../
|
1492 |
msgid ""
|
1493 |
-
"
|
1494 |
-
"
|
1495 |
msgstr ""
|
1496 |
-
"
|
1497 |
-
"
|
1498 |
-
|
1499 |
-
#: ../help/help.php:268
|
1500 |
-
msgid "Schedule email (Cron job) or send them manually."
|
1501 |
-
msgstr "Programma le email (Cron job) o inviale manualmente."
|
1502 |
|
1503 |
-
#: ../
|
1504 |
-
msgid "
|
1505 |
-
msgstr ""
|
1506 |
-
"Invia una email di notifica all'Amministrazione quando si iscrive un nuovo "
|
1507 |
-
"utente."
|
1508 |
|
1509 |
-
#: ../
|
1510 |
-
msgid "
|
1511 |
-
msgstr "
|
1512 |
|
1513 |
-
#: ../
|
1514 |
-
msgid "
|
|
|
|
|
1515 |
msgstr ""
|
1516 |
-
"
|
1517 |
-
"
|
1518 |
|
1519 |
-
#: ../
|
1520 |
-
msgid "
|
|
|
|
|
1521 |
msgstr ""
|
1522 |
-
"
|
1523 |
-
"
|
1524 |
-
|
1525 |
-
#: ../help/help.php:283
|
1526 |
-
msgid "Send newsletters to different groups."
|
1527 |
-
msgstr "Invia newsletter a gruppi diversi."
|
1528 |
-
|
1529 |
-
#: ../help/help.php:286
|
1530 |
-
msgid "Get detailed sent email reports."
|
1531 |
-
msgstr "Ricevi report dettagliati sulle email spedite."
|
1532 |
-
|
1533 |
-
#: ../help/help.php:289
|
1534 |
-
msgid "Control user access (User Roles and Capabilities)."
|
1535 |
-
msgstr "Controllo accesso utenti (Ruoli e Funzionalità degli Utenti)"
|
1536 |
-
|
1537 |
-
#: ../help/help.php:292
|
1538 |
-
msgid "Supports localization and internationalization."
|
1539 |
-
msgstr "Supporta localizzazione e internazionalizzazione."
|
1540 |
-
|
1541 |
-
#: ../help/help.php:299
|
1542 |
-
msgid "Add Subscribe form"
|
1543 |
-
msgstr "Aggiungi modulo di iscrizione"
|
1544 |
-
|
1545 |
-
#: ../help/help.php:301 ../help/help.php:312 ../help/help.php:315 ../help/help.
|
1546 |
-
#: php:327 ../help/help.php:330 ../help/help.php:333 ../help/help.php:336 ..
|
1547 |
-
#: help/help.php:339 ../help/help.php:351 ../help/help.php:354 ../help/help.php:
|
1548 |
-
#: 361 ../help/help.php:364 ../help/help.php:367 ../help/help.php:375 ..
|
1549 |
-
#: help/help.php:378 ../help/help.php:381 ../help/help.php:384 ../help/help.php:
|
1550 |
-
#: 390 ../help/help.php:393 ../help/help.php:395
|
1551 |
-
#, php-format
|
1552 |
-
msgid "%s"
|
1553 |
-
msgstr "%s"
|
1554 |
|
1555 |
-
#: ../
|
1556 |
-
msgid "
|
1557 |
-
msgstr "
|
1558 |
|
1559 |
-
#: ../
|
1560 |
-
#, php-format
|
1561 |
msgid ""
|
1562 |
-
"
|
1563 |
-
"
|
1564 |
-
"namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
|
1565 |
-
" b) Go to Appearance -> Widgets. Click on widget Email subscribers "
|
1566 |
-
"and drag it to the sidebar on the right <i>Or</i><br>\n"
|
1567 |
-
" c) Copy and past this php code to your desired template location : "
|
1568 |
-
"<strong>%s</strong>"
|
1569 |
msgstr ""
|
1570 |
-
"
|
1571 |
-
"
|
1572 |
-
" a) Shortcode in una pagina/post : <strong>[email-subscribers "
|
1573 |
-
"namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Oppure</i><br>\n"
|
1574 |
-
" b) Vai in Aspetto -> Widgets. Clicca sul widget Email subscribers e "
|
1575 |
-
"trascinalo nella sidebar a destra <i>Oppure</i><br>\n"
|
1576 |
-
" c) Copia e incolla il codice php nel tuo template: "
|
1577 |
-
"<strong>%s</strong>"
|
1578 |
|
1579 |
-
#: ../
|
1580 |
-
msgid "
|
1581 |
-
msgstr "
|
1582 |
|
1583 |
-
#: ../
|
1584 |
-
msgid "
|
|
|
|
|
|
|
1585 |
msgstr ""
|
1586 |
-
"
|
1587 |
-
"
|
1588 |
-
|
1589 |
-
#: ../help/help.php:315
|
1590 |
-
msgid "How to add captcha in Subscribe form of Email Subscribers?"
|
1591 |
-
msgstr "Come aggiungere un captcha nel modulo di Iscrizione di Email Subscribers ?"
|
1592 |
-
|
1593 |
-
#: ../help/help.php:321
|
1594 |
-
msgid "General Plugin Configuration"
|
1595 |
-
msgstr "Configurazione generale del Plugin"
|
1596 |
-
|
1597 |
-
#: ../help/help.php:324
|
1598 |
-
#, php-format
|
1599 |
-
msgid "Modify %s"
|
1600 |
-
msgstr "Modifica %s"
|
1601 |
-
|
1602 |
-
#: ../help/help.php:324
|
1603 |
-
msgid "default text, email contents"
|
1604 |
-
msgstr "testo standard, contenuto email"
|
1605 |
|
1606 |
-
#: ../
|
1607 |
-
msgid "
|
1608 |
-
msgstr "
|
1609 |
|
1610 |
-
#: ../
|
1611 |
-
msgid "
|
1612 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1613 |
|
1614 |
-
#: ../
|
1615 |
-
msgid "
|
1616 |
-
msgstr "
|
1617 |
|
1618 |
-
#: ../
|
1619 |
-
msgid "
|
1620 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1621 |
|
1622 |
-
#: ../
|
1623 |
-
msgid "
|
1624 |
-
msgstr "
|
1625 |
|
1626 |
-
#: ../
|
1627 |
-
msgid "
|
1628 |
-
|
|
|
|
|
|
|
|
|
1629 |
|
1630 |
-
#: ../
|
1631 |
-
msgid "
|
1632 |
-
msgstr "
|
1633 |
|
1634 |
-
#: ../
|
1635 |
-
msgid "
|
|
|
|
|
1636 |
msgstr ""
|
1637 |
-
"
|
1638 |
-
"
|
1639 |
-
|
1640 |
-
#: ../help/help.php:364
|
1641 |
-
msgid "Keywords in the Post Notifications"
|
1642 |
-
msgstr "Parole chiave nella notifica post"
|
1643 |
|
1644 |
-
#: ../
|
1645 |
-
msgid "
|
1646 |
-
msgstr "
|
1647 |
|
1648 |
-
#: ../
|
1649 |
-
msgid "
|
1650 |
-
|
|
|
|
|
|
|
|
|
1651 |
|
1652 |
-
#: ../
|
1653 |
-
msgid "
|
1654 |
-
msgstr "
|
1655 |
|
1656 |
-
#: ../
|
1657 |
-
msgid "
|
1658 |
-
|
|
|
|
|
|
|
|
|
1659 |
|
1660 |
-
#: ../
|
1661 |
-
msgid "
|
1662 |
-
msgstr "
|
|
|
|
|
1663 |
|
1664 |
-
#: ../
|
1665 |
-
msgid "
|
1666 |
-
msgstr "
|
1667 |
|
1668 |
-
#: ../
|
1669 |
-
|
1670 |
-
|
|
|
|
|
1671 |
|
1672 |
-
#: ../
|
1673 |
-
|
1674 |
-
|
|
|
|
|
1675 |
|
1676 |
-
#: ../
|
1677 |
-
|
1678 |
-
|
|
|
|
|
1679 |
|
1680 |
-
#: ../
|
1681 |
-
msgid "
|
1682 |
-
msgstr "
|
1683 |
|
1684 |
-
#: ../
|
1685 |
-
msgid "
|
1686 |
-
msgstr "
|
1687 |
|
1688 |
-
#: ../
|
1689 |
-
msgid "
|
1690 |
-
msgstr "
|
1691 |
|
1692 |
-
#: ../
|
1693 |
-
msgid "
|
1694 |
-
msgstr "
|
1695 |
|
1696 |
-
#: ../
|
1697 |
msgid ""
|
1698 |
-
"
|
1699 |
-
"
|
1700 |
msgstr ""
|
1701 |
-
"
|
1702 |
-
"
|
1703 |
|
1704 |
-
#: ../
|
1705 |
-
msgid "
|
1706 |
-
msgstr "
|
1707 |
|
1708 |
-
#: ../
|
1709 |
-
msgid "
|
1710 |
-
msgstr "
|
1711 |
|
1712 |
-
#: ../
|
1713 |
-
msgid "
|
1714 |
-
msgstr "
|
1715 |
|
1716 |
-
#: ../
|
1717 |
-
msgid ""
|
1718 |
-
"
|
1719 |
-
"bars, slide-ins, sidebars, full screen popups etc."
|
1720 |
-
msgstr ""
|
1721 |
-
"Non limitare l'iscrizione a un modulo. Includilo in popup, barre di "
|
1722 |
-
"benventuo, popup a schermo intero, eccetera."
|
1723 |
|
1724 |
-
#: ../
|
1725 |
msgid ""
|
1726 |
-
"
|
1727 |
-
"
|
1728 |
msgstr ""
|
1729 |
-
"
|
1730 |
-
"
|
1731 |
-
|
1732 |
-
#: ../help/help.php:436 ../help/help.php:456
|
1733 |
-
#, php-format
|
1734 |
-
msgid "How to %s"
|
1735 |
-
msgstr "Come fare per %s"
|
1736 |
|
1737 |
-
#: ../
|
1738 |
-
msgid "
|
1739 |
-
msgstr "
|
1740 |
|
1741 |
-
#: ../
|
1742 |
-
msgid "
|
1743 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1744 |
|
1745 |
-
#: ../
|
1746 |
-
msgid "
|
1747 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1748 |
|
1749 |
-
#: ../
|
1750 |
msgid ""
|
1751 |
-
"
|
1752 |
-
"
|
|
|
|
|
1753 |
msgstr ""
|
1754 |
-
"
|
1755 |
-
"
|
|
|
|
|
1756 |
|
1757 |
-
#: ../
|
1758 |
msgid ""
|
1759 |
-
"
|
1760 |
-
"
|
|
|
|
|
1761 |
msgstr ""
|
1762 |
-
"
|
1763 |
-
"
|
|
|
|
|
1764 |
|
1765 |
-
#: ../
|
1766 |
-
msgid "
|
1767 |
-
msgstr "
|
1768 |
|
1769 |
-
#: ../
|
1770 |
-
msgid "Please
|
1771 |
-
msgstr "
|
1772 |
|
1773 |
-
#: ../
|
1774 |
-
msgid "Please
|
1775 |
-
msgstr "
|
1776 |
|
1777 |
-
#: ../
|
1778 |
-
msgid "
|
1779 |
-
msgstr "
|
1780 |
|
1781 |
-
#: ../
|
1782 |
-
msgid "
|
1783 |
-
msgstr "
|
1784 |
|
1785 |
-
#: ../
|
1786 |
-
|
1787 |
-
|
|
|
1788 |
|
1789 |
-
#: ../
|
1790 |
-
msgid "
|
1791 |
-
msgstr "
|
1792 |
|
1793 |
-
#: ../
|
1794 |
-
msgid "
|
1795 |
-
|
|
|
|
|
|
|
|
|
1796 |
|
1797 |
-
#: ../
|
1798 |
-
msgid "
|
1799 |
-
msgstr "
|
1800 |
|
1801 |
-
#: ../
|
1802 |
-
msgid "
|
1803 |
-
msgstr "
|
1804 |
|
1805 |
-
#: ../
|
1806 |
-
msgid "
|
1807 |
-
msgstr "
|
1808 |
|
1809 |
-
#: ../
|
1810 |
-
|
1811 |
-
|
|
|
|
|
|
|
1812 |
|
1813 |
-
#: ../
|
1814 |
-
|
1815 |
-
|
|
|
|
|
|
|
1816 |
|
1817 |
-
#: ../
|
1818 |
-
|
1819 |
-
|
1820 |
-
|
|
|
1821 |
|
1822 |
-
#: ../
|
1823 |
-
|
1824 |
-
|
1825 |
-
|
1826 |
-
|
1827 |
-
msgstr ""
|
1828 |
-
"<br><br><strong>I tuoi destinatari sono più di 100.<br>Ti consiglio "
|
1829 |
-
"vivamente di modificare il tipo di email a Cron e Invia mail via Cron Job."
|
1830 |
-
"</strong><br>Clicca su Aiuto per maggiori informazioni."
|
1831 |
|
1832 |
-
#: ../
|
1833 |
-
msgid "
|
1834 |
-
msgstr "
|
1835 |
|
1836 |
-
#: ../
|
1837 |
-
msgid "
|
1838 |
-
msgstr "
|
1839 |
|
1840 |
-
#: ../
|
1841 |
-
msgid "
|
1842 |
-
msgstr "
|
1843 |
|
1844 |
-
#: ../
|
1845 |
-
|
1846 |
-
|
|
|
|
|
1847 |
|
1848 |
-
#: ../
|
1849 |
-
|
1850 |
-
|
|
|
|
|
1851 |
|
1852 |
-
#: ../
|
1853 |
-
|
1854 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1855 |
|
1856 |
-
#: ../
|
1857 |
-
msgid "
|
1858 |
-
msgstr "
|
1859 |
|
1860 |
-
#: ../
|
1861 |
-
msgid "
|
1862 |
-
msgstr "
|
1863 |
|
1864 |
-
#: ../
|
1865 |
-
msgid "
|
1866 |
-
msgstr "
|
1867 |
|
1868 |
-
#: ../
|
1869 |
-
msgid "
|
1870 |
-
msgstr "
|
1871 |
|
1872 |
-
#: ../
|
1873 |
-
msgid "
|
1874 |
-
msgstr "
|
1875 |
|
1876 |
-
#: ../
|
1877 |
-
msgid "
|
1878 |
-
msgstr "
|
1879 |
|
1880 |
-
#: ../
|
1881 |
-
msgid "
|
1882 |
-
msgstr "
|
1883 |
|
1884 |
-
#: ../
|
1885 |
-
|
1886 |
-
|
1887 |
-
msgstr "Email Iscritti"
|
1888 |
|
1889 |
-
#: ../
|
1890 |
-
|
1891 |
-
|
1892 |
-
msgstr "Modelli"
|
1893 |
|
1894 |
-
#: ../
|
1895 |
-
|
1896 |
-
|
|
|
1897 |
|
1898 |
-
#: ../
|
1899 |
-
|
1900 |
-
|
|
|
1901 |
|
1902 |
-
#: ../
|
1903 |
-
|
1904 |
-
|
1905 |
-
msgstr "Inserisci l'indirizzo email dell'iscritto."
|
1906 |
|
1907 |
-
#: ../
|
1908 |
-
|
1909 |
-
|
1910 |
-
msgstr "Seleziona lo statu dell'iscritto"
|
1911 |
|
1912 |
-
#: ../
|
1913 |
-
|
1914 |
-
|
1915 |
-
|
|
|
1916 |
|
1917 |
-
#: ../
|
1918 |
-
|
1919 |
-
|
1920 |
-
msgstr "Vuoi cancellare questo record ?"
|
1921 |
|
1922 |
-
#: ../
|
1923 |
-
|
1924 |
-
|
1925 |
-
msgstr "Seleziona una azione di gruppo."
|
1926 |
|
1927 |
-
#: ../
|
1928 |
-
|
1929 |
-
|
1930 |
-
msgstr "Sei sicuro di voler cancellare i record selezionati ?"
|
1931 |
|
1932 |
-
#: ../
|
1933 |
-
|
1934 |
-
|
1935 |
-
"Do you want to resend confirmation email? Also please note, this will update "
|
1936 |
-
"subscriber current status to 'Unconfirmed'."
|
1937 |
-
msgstr ""
|
1938 |
-
"Vuoi reinviare l'email di conferma ? Tieni presente che questa azione mette "
|
1939 |
-
"l'iscritto nello status 'Non Confermato'."
|
1940 |
|
1941 |
-
#: ../
|
1942 |
-
|
1943 |
-
|
1944 |
-
msgstr "Seleziona un nuovo gruppo."
|
1945 |
|
1946 |
-
#: ../
|
1947 |
-
|
1948 |
-
|
1949 |
-
msgstr "Seleziona il nuovo status degli iscritti"
|
1950 |
|
1951 |
-
#: ../
|
1952 |
-
|
1953 |
-
|
1954 |
-
msgstr "Vuoi aggiornare il gruppo degli iscritti ?"
|
1955 |
|
1956 |
-
#: ../
|
1957 |
-
|
1958 |
-
|
1959 |
-
msgstr "Vuoi aggiornare lo status degli iscritti ?"
|
1960 |
|
1961 |
-
#: ../
|
1962 |
-
msgctxt "view-subscriber-enhanced-select"
|
1963 |
msgid ""
|
1964 |
-
"
|
1965 |
-
"."
|
1966 |
msgstr ""
|
1967 |
-
"
|
1968 |
-
"
|
1969 |
-
|
1970 |
-
#: ../classes/es-register.php:214
|
1971 |
-
msgctxt "notification-enhanced-select"
|
1972 |
-
msgid "Please select subscribers group."
|
1973 |
-
msgstr "Seleziona il gruppo degli iscritti."
|
1974 |
|
1975 |
-
#: ../
|
1976 |
-
|
1977 |
-
|
1978 |
-
msgstr ""
|
1979 |
-
"Seleziona l'oggetto della mail di notifica. Utilizza il menu Modelli per "
|
1980 |
-
"crearne uno nuovo."
|
1981 |
|
1982 |
-
#: ../
|
1983 |
-
|
1984 |
-
|
1985 |
-
msgstr "Seleziona lo status della notifica."
|
1986 |
|
1987 |
-
#: ../
|
1988 |
-
|
1989 |
-
|
1990 |
-
msgstr "Vuoi cancellare questo record ?"
|
1991 |
|
1992 |
-
#: ../
|
1993 |
-
|
1994 |
-
msgid "
|
1995 |
-
msgstr "
|
1996 |
|
1997 |
-
#: ../
|
1998 |
-
|
1999 |
-
|
2000 |
-
msgstr "Seleziona il tipo di email."
|
2001 |
|
2002 |
-
#: ../
|
2003 |
-
|
2004 |
-
|
2005 |
-
"Have you double checked your selected group? If so, let's go ahead and send "
|
2006 |
-
"this."
|
2007 |
-
msgstr "Hai controllato due volte il gruppo ? Se sì, inviala."
|
2008 |
|
2009 |
-
#: ../
|
2010 |
-
|
2011 |
-
|
2012 |
-
msgstr "Vuoi cancellare questo record ?"
|
2013 |
|
2014 |
-
#: ../
|
2015 |
-
|
2016 |
-
|
2017 |
-
msgstr "vuoi cancellare tutti i record tranne gli ultimi 10 ?"
|
2018 |
|
2019 |
-
#: ../
|
2020 |
-
|
2021 |
-
|
2022 |
-
msgstr "Seleziona il numero di email che vuoi spedire per ogni ora."
|
2023 |
|
2024 |
-
#: ../
|
2025 |
-
|
2026 |
-
|
2027 |
-
msgstr "Inserisci il numero di email, solo numeri."
|
2028 |
|
2029 |
-
#: ../
|
2030 |
-
|
2031 |
-
|
2032 |
-
msgstr "Inserisci l'indirizzo email"
|
2033 |
|
2034 |
-
#: ../
|
2035 |
-
|
2036 |
-
|
2037 |
-
msgstr "Inserisci un indirizzo email valido"
|
2038 |
|
2039 |
-
#: ../
|
2040 |
-
|
2041 |
-
msgid "
|
2042 |
-
msgstr "
|
2043 |
|
2044 |
-
#: ../
|
2045 |
-
|
2046 |
-
|
2047 |
-
msgstr "Non posso creare un'istanza XMLHTTP"
|
2048 |
|
2049 |
-
#: ../
|
2050 |
-
|
2051 |
-
|
2052 |
-
|
|
|
2053 |
|
2054 |
-
#: ../
|
2055 |
-
|
2056 |
-
|
2057 |
-
msgstr "Questo indirizzo email è già presente !"
|
2058 |
|
2059 |
-
#: ../
|
2060 |
-
|
2061 |
-
|
2062 |
-
msgstr "Oops... Si è verificato un errore inatteso."
|
2063 |
|
2064 |
-
#: ../
|
2065 |
-
|
2066 |
-
|
2067 |
-
msgstr "Indirizzo email non valido"
|
2068 |
|
2069 |
-
#: ../
|
2070 |
-
|
2071 |
-
|
2072 |
-
msgstr "Per favore riprova tra qualche minuto"
|
2073 |
|
2074 |
-
#: ../
|
2075 |
-
|
2076 |
-
|
2077 |
-
msgstr "C'è un problema con questa richiesta"
|
2078 |
|
2079 |
-
#: ../
|
2080 |
-
|
2081 |
-
|
2082 |
-
msgstr "Inserisci l'indirizzo email"
|
2083 |
|
2084 |
-
#: ../
|
2085 |
-
|
2086 |
-
msgid "
|
2087 |
-
msgstr "
|
2088 |
|
2089 |
-
#: ../
|
2090 |
-
|
2091 |
-
|
2092 |
-
msgstr "caricamento...."
|
2093 |
|
2094 |
-
#: ../
|
2095 |
-
|
2096 |
-
|
2097 |
-
msgstr "Non posso creare un'istanza XMLHTTP"
|
2098 |
|
2099 |
-
#: ../
|
2100 |
-
|
2101 |
-
|
2102 |
-
msgstr "Iscritto con successo."
|
2103 |
|
2104 |
-
#: ../
|
2105 |
-
|
2106 |
-
|
2107 |
-
msgstr "Questo indirizzo email è già presente !"
|
2108 |
|
2109 |
-
#: ../
|
2110 |
-
|
2111 |
-
msgid "
|
2112 |
-
msgstr "
|
2113 |
|
2114 |
-
#: ../
|
2115 |
-
|
2116 |
-
|
2117 |
-
msgstr "Indirizzo email non valido"
|
2118 |
|
2119 |
-
#: ../
|
2120 |
-
|
2121 |
-
|
2122 |
-
msgstr "Per favore riprova tra qualche minuto"
|
2123 |
|
2124 |
-
#: ../
|
2125 |
-
|
2126 |
-
|
2127 |
-
msgstr "C'è un problema con questa richiesta"
|
2128 |
|
2129 |
-
#: ../
|
2130 |
-
msgid ""
|
2131 |
-
|
2132 |
-
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
2133 |
-
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
2134 |
-
"</a> rating. A huge thank you from Icegram in advance!"
|
2135 |
-
msgstr ""
|
2136 |
-
"Se ti piace <strong>Email Subscribers</strong>, per favore considera di "
|
2137 |
-
"lasciare un giudizio <a target=\"_blank\" href=\"https://wordpress."
|
2138 |
-
"org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">★"
|
2139 |
-
"★★★★</a>. Molte grazie in anticipo da Icegram !"
|
2140 |
|
2141 |
-
#: ../
|
2142 |
-
|
2143 |
-
|
2144 |
-
msgstr "Email Subscribers versione: <strong>%s</strong>"
|
2145 |
|
2146 |
-
#: ../
|
2147 |
-
msgid "
|
2148 |
-
msgstr "
|
2149 |
|
2150 |
-
#: ../
|
2151 |
-
msgid "
|
2152 |
-
msgstr "
|
2153 |
|
2154 |
-
#: ../
|
2155 |
-
msgid "
|
2156 |
-
msgstr "
|
2157 |
|
2158 |
-
#: ../
|
2159 |
-
msgid "
|
2160 |
-
msgstr "
|
2161 |
|
2162 |
-
#: ../
|
2163 |
-
msgid "
|
2164 |
-
msgstr "
|
2165 |
|
2166 |
-
#: ../
|
2167 |
-
msgid "
|
2168 |
-
msgstr "
|
2169 |
|
2170 |
-
#: ../
|
2171 |
-
msgid "
|
2172 |
-
msgstr "
|
2173 |
|
2174 |
-
#: ../
|
2175 |
-
msgid "
|
2176 |
-
msgstr "
|
2177 |
|
2178 |
-
#: ../
|
2179 |
-
msgid "
|
2180 |
-
msgstr "
|
2181 |
|
2182 |
-
#: ../
|
2183 |
-
msgid "
|
2184 |
-
msgstr "
|
2185 |
|
2186 |
-
#: ../
|
2187 |
-
msgid "
|
2188 |
-
msgstr "
|
2189 |
|
2190 |
-
#: ../
|
2191 |
-
msgid "
|
2192 |
-
msgstr "
|
2193 |
|
2194 |
-
#: ../
|
2195 |
-
msgid "
|
2196 |
-
msgstr "
|
2197 |
|
2198 |
-
#: ../
|
2199 |
-
msgid "
|
2200 |
-
msgstr "
|
2201 |
|
2202 |
-
#: ../
|
2203 |
-
msgid "Preview
|
2204 |
msgstr "Anteprima Modello"
|
2205 |
|
2206 |
-
#: ../
|
2207 |
-
|
2208 |
-
|
2209 |
-
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
2210 |
-
"{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
|
2211 |
-
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
2212 |
-
msgstr ""
|
2213 |
-
"%s per Notifiche Post: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
2214 |
-
"{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
|
2215 |
-
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
2216 |
|
2217 |
-
#: ../
|
2218 |
-
msgid "
|
2219 |
-
|
|
|
|
|
2220 |
|
2221 |
-
#: ../
|
2222 |
-
msgid "
|
2223 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
2224 |
|
2225 |
-
|
2226 |
-
msgid "
|
2227 |
-
msgstr "
|
2228 |
|
2229 |
-
|
2230 |
-
msgid "
|
2231 |
-
msgstr "
|
2232 |
|
2233 |
-
|
2234 |
-
msgid "
|
2235 |
-
|
|
|
|
|
|
|
|
|
2236 |
|
2237 |
-
#: ../
|
2238 |
-
|
2239 |
-
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.12\n"
|
4 |
"Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Tue Apr 17 2018 15:28:23 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Italian\n"
|
22 |
"X-Generator: Loco - https://localise.biz/\n"
|
23 |
"X-Loco-Target-Locale: it_IT"
|
24 |
|
25 |
+
#: ../classes/es-register.php:260
|
26 |
+
msgctxt "widget-enhanced-select"
|
27 |
+
msgid ""
|
28 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
29 |
+
"subscription. If you don't see the email within a few minutes, check the "
|
30 |
+
"spam/junk folder."
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: ../classes/es-register.php:274
|
34 |
+
msgctxt "widget-page-enhanced-select"
|
35 |
+
msgid ""
|
36 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
37 |
+
"subscription. If you don't see the email within a few minutes, check the "
|
38 |
+
"spam/junk folder."
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: ../classes/es-register.php:739
|
42 |
+
msgid ""
|
43 |
+
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
44 |
+
"subscribers list?</b> Come check our Pro plan."
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: ../classes/es-register.php:740
|
48 |
+
msgid "Check Pro plan "
|
|
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: ../classes/es-register.php:740
|
52 |
+
msgid "Not interested."
|
|
|
|
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: ../classes/es-register.php:974
|
56 |
+
#, php-format
|
57 |
+
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
58 |
msgstr ""
|
59 |
|
60 |
#: ../export/export-email-address.php:50 ../export/export-email-address.php:54
|
90 |
"Roles"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: ../help/help.php:327
|
94 |
+
msgid "How does Sync work?"
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: ../help/help.php:412
|
98 |
msgid "Using our <b>free</b> "
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: ../help/help.php:432
|
102 |
msgid ""
|
103 |
"Using Email Subscribers you can achieve this easily with our <b>free</b> "
|
104 |
"plugin "
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: ../help/help.php:449
|
108 |
msgid "Email subscribers easily integrates with another <b>free</b> plugin "
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: ../sentmail/deliverreport-show.php:47 ../sentmail/sentmail-show.php:83
|
112 |
+
msgid " << "
|
|
|
|
|
|
|
|
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: ../sentmail/deliverreport-show.php:48 ../sentmail/sentmail-show.php:84
|
116 |
+
msgid " >> "
|
|
|
|
|
|
|
|
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: ../subscribers/view-subscriber-export.php:12
|
120 |
msgid ""
|
121 |
+
"Oops! Looks like you are not the site administrator.<br><br>Only the site "
|
122 |
+
"administrator can export subscriber list."
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: ../subscribers/view-subscriber-export.php:14
|
126 |
+
msgid "Go back to Subscribers dashboard"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
|
130 |
+
#: import.php:129
|
131 |
+
msgid " to view details."
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: ../subscribers/view-subscriber-show.php:75 ../subscribers/view-subscriber-show.
|
135 |
+
#: php:134
|
136 |
+
msgid "Confirmation emails resent successfully."
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: ../classes/es-common.php:13
|
140 |
+
msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
|
141 |
+
msgstr "<span style=\"color:#006600;font-weight:bold;\">Confermato</span>"
|
142 |
|
143 |
+
#: ../classes/es-common.php:16
|
144 |
+
msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
|
145 |
+
msgstr "<span style=\"color:#FF0000\">Non Confermato</span>"
|
146 |
|
147 |
+
#: ../classes/es-common.php:19
|
148 |
+
msgid "<span style=\"color:#999900\">Unsubscribed</span>"
|
149 |
+
msgstr "<span style=\"color:#999900\">Disiscritto</span>"
|
|
|
|
|
150 |
|
151 |
+
#: ../classes/es-common.php:22
|
152 |
+
msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
|
153 |
+
msgstr "<span style=\"color:#0000FF\">Singolo Opt In</span>"
|
154 |
|
155 |
+
#: ../classes/es-common.php:25
|
156 |
+
msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
|
157 |
+
msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Visto</span>"
|
158 |
|
159 |
+
#: ../classes/es-common.php:28
|
160 |
+
msgid "<span style=\"color:#999900;\">Nodata</span>"
|
161 |
+
msgstr "<span style=\"color:#999900;\">Nessun dato</span>"
|
162 |
|
163 |
+
#: ../classes/es-common.php:31
|
164 |
+
msgid "<span style=\"color:#FF0000\">Disabled</span>"
|
165 |
+
msgstr "<span style=\"color:#FF0000\">Disattivato</span>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
|
167 |
+
#: ../classes/es-common.php:34
|
168 |
+
msgid "<span style=\"color:#FF0000\">In Queue</span>"
|
169 |
+
msgstr "<span style=\"color:#FF0000\">In Coda</span>"
|
170 |
|
171 |
+
#: ../classes/es-common.php:37
|
172 |
+
msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
|
173 |
+
msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Spedito</span>"
|
|
|
|
|
|
|
|
|
|
|
174 |
|
175 |
+
#: ../classes/es-common.php:40
|
176 |
+
msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
|
177 |
+
msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
|
|
|
178 |
|
179 |
+
#: ../classes/es-common.php:43
|
180 |
+
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
181 |
+
msgstr "<span style=\"color:#993399;\">Immediatamente</span>"
|
|
|
182 |
|
183 |
+
#: ../classes/es-loadwidget.php:28 ../classes/es-register.php:1053 ..
|
184 |
+
#: subscribers/view-subscriber-show.php:289
|
185 |
+
msgid "Name"
|
186 |
+
msgstr "Nome"
|
187 |
|
188 |
+
#: ../classes/es-loadwidget.php:33 ../classes/es-register.php:1058
|
189 |
+
msgid "Email *"
|
190 |
+
msgstr "Email *"
|
|
|
191 |
|
192 |
+
#: ../classes/es-loadwidget.php:38 ../classes/es-register.php:1063 ../help/help.
|
193 |
+
#: php:196
|
194 |
+
msgid "Subscribe"
|
195 |
+
msgstr "Iscriviti"
|
196 |
|
197 |
+
#: ../classes/es-register.php:162 ../classes/es-register.php:163 ../classes/es-
|
198 |
+
#: register.php:801
|
199 |
+
msgid "Email Subscribers"
|
200 |
+
msgstr "Email Iscritti"
|
201 |
|
202 |
+
#: ../classes/es-register.php:165 ../classes/es-register.php:166 ..
|
203 |
+
#: subscribers/view-subscriber-show.php:242
|
204 |
+
msgid "Subscribers"
|
205 |
+
msgstr "Iscritti"
|
206 |
|
207 |
+
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
208 |
+
#: register.php:789 ../classes/es-register.php:790 ../classes/es-register.php:795
|
209 |
+
msgid "Templates"
|
210 |
+
msgstr "Modelli"
|
211 |
|
212 |
+
#: ../classes/es-register.php:171 ../classes/es-register.php:172 ../help/help.php:
|
213 |
+
#: 361 ../notification/notification-show.php:52
|
214 |
+
msgid "Post Notifications"
|
215 |
+
msgstr "Notifiche Post"
|
216 |
|
217 |
+
#: ../classes/es-register.php:174 ../classes/es-register.php:175 ../help/help.php:
|
218 |
+
#: 351 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:324
|
219 |
+
msgid "Newsletters"
|
220 |
+
msgstr "Newsletter"
|
221 |
|
222 |
+
#: ../classes/es-register.php:177 ../classes/es-register.php:178 ..
|
223 |
+
#: settings/settings-edit.php:42
|
224 |
+
msgid "Settings"
|
225 |
+
msgstr "Configurazione"
|
226 |
|
227 |
+
#: ../classes/es-register.php:180 ../classes/es-register.php:181 ..
|
228 |
+
#: sentmail/sentmail-show.php:93
|
229 |
+
msgid "Reports"
|
230 |
+
msgstr "Rapporti"
|
231 |
|
232 |
+
#: ../classes/es-register.php:183
|
233 |
+
msgid "Help & Info"
|
234 |
+
msgstr "Aiuto e Informazioni"
|
|
|
235 |
|
236 |
+
#: ../classes/es-register.php:184
|
237 |
+
msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
|
238 |
+
msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Aiuto e Informazioni</span>"
|
|
|
|
|
239 |
|
240 |
+
#: ../classes/es-register.php:195
|
241 |
+
msgctxt "view-subscriber-enhanced-select"
|
242 |
+
msgid "Please enter subscriber email address."
|
243 |
+
msgstr "Inserisci l'indirizzo email dell'iscritto."
|
244 |
|
245 |
+
#: ../classes/es-register.php:196
|
246 |
+
msgctxt "view-subscriber-enhanced-select"
|
247 |
+
msgid "Please select subscriber email status."
|
248 |
+
msgstr "Seleziona lo statu dell'iscritto"
|
249 |
|
250 |
+
#: ../classes/es-register.php:197
|
251 |
+
msgctxt "view-subscriber-enhanced-select"
|
252 |
+
msgid "Please select or create group for this subscriber."
|
253 |
+
msgstr "Seleziona o crea un gruppo per questo iscritto."
|
254 |
|
255 |
+
#: ../classes/es-register.php:198
|
256 |
+
msgctxt "view-subscriber-enhanced-select"
|
257 |
+
msgid "Do you want to delete this record?"
|
258 |
+
msgstr "Vuoi cancellare questo record ?"
|
259 |
+
|
260 |
+
#: ../classes/es-register.php:199
|
261 |
+
msgctxt "view-subscriber-enhanced-select"
|
262 |
+
msgid "Please select the bulk action."
|
263 |
+
msgstr "Seleziona una azione di gruppo."
|
264 |
+
|
265 |
+
#: ../classes/es-register.php:200
|
266 |
+
msgctxt "view-subscriber-enhanced-select"
|
267 |
+
msgid "Are you sure you want to delete selected records?"
|
268 |
+
msgstr "Sei sicuro di voler cancellare i record selezionati ?"
|
269 |
+
|
270 |
+
#: ../classes/es-register.php:201
|
271 |
+
msgctxt "view-subscriber-enhanced-select"
|
272 |
msgid ""
|
273 |
+
"Do you want to resend confirmation email? Also please note, this will update "
|
274 |
+
"subscriber current status to 'Unconfirmed'."
|
275 |
msgstr ""
|
276 |
+
"Vuoi reinviare l'email di conferma ? Tieni presente che questa azione mette "
|
277 |
+
"l'iscritto nello status 'Non Confermato'."
|
278 |
|
279 |
+
#: ../classes/es-register.php:202
|
280 |
+
msgctxt "view-subscriber-enhanced-select"
|
281 |
+
msgid "Please select new subscriber group."
|
282 |
+
msgstr "Seleziona un nuovo gruppo."
|
283 |
|
284 |
+
#: ../classes/es-register.php:203
|
285 |
+
msgctxt "view-subscriber-enhanced-select"
|
286 |
+
msgid "Please select new status for subscribers"
|
287 |
+
msgstr "Seleziona il nuovo status degli iscritti"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
288 |
|
289 |
+
#: ../classes/es-register.php:204
|
290 |
+
msgctxt "view-subscriber-enhanced-select"
|
291 |
+
msgid "Do you want to update subscribers group?"
|
292 |
+
msgstr "Vuoi aggiornare il gruppo degli iscritti ?"
|
293 |
|
294 |
+
#: ../classes/es-register.php:205
|
295 |
+
msgctxt "view-subscriber-enhanced-select"
|
296 |
+
msgid "Do you want to update subscribers status?"
|
297 |
+
msgstr "Vuoi aggiornare lo status degli iscritti ?"
|
298 |
|
299 |
+
#: ../classes/es-register.php:206
|
300 |
+
msgctxt "view-subscriber-enhanced-select"
|
301 |
+
msgid ""
|
302 |
+
"Please select only csv file. Please check official website for csv structure."
|
303 |
+
"."
|
304 |
+
msgstr ""
|
305 |
+
"Utilizzare solo file csv. Controllare il sito ufficiale per la struttura del "
|
306 |
+
"file csv."
|
307 |
|
308 |
+
#: ../classes/es-register.php:214
|
309 |
+
msgctxt "notification-enhanced-select"
|
310 |
+
msgid "Please select subscribers group."
|
311 |
+
msgstr "Seleziona il gruppo degli iscritti."
|
312 |
|
313 |
+
#: ../classes/es-register.php:215
|
314 |
+
msgctxt "notification-enhanced-select"
|
315 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
316 |
+
msgstr ""
|
317 |
+
"Seleziona l'oggetto della mail di notifica. Utilizza il menu Modelli per "
|
318 |
+
"crearne uno nuovo."
|
319 |
|
320 |
+
#: ../classes/es-register.php:216
|
321 |
+
msgctxt "notification-enhanced-select"
|
322 |
+
msgid "Please select notification status."
|
323 |
+
msgstr "Seleziona lo status della notifica."
|
324 |
|
325 |
+
#: ../classes/es-register.php:217
|
326 |
+
msgctxt "notification-enhanced-select"
|
327 |
+
msgid "Do you want to delete this record?"
|
328 |
+
msgstr "Vuoi cancellare questo record ?"
|
329 |
|
330 |
+
#: ../classes/es-register.php:225
|
331 |
+
msgctxt "sendmail-enhanced-select"
|
332 |
+
msgid "Please select your mail subject."
|
333 |
+
msgstr "Scegli l'oggetto della mail."
|
334 |
|
335 |
+
#: ../classes/es-register.php:226
|
336 |
+
msgctxt "sendmail-enhanced-select"
|
337 |
+
msgid "Please select your mail type."
|
338 |
+
msgstr "Seleziona il tipo di email."
|
339 |
|
340 |
+
#: ../classes/es-register.php:227
|
341 |
+
msgctxt "sendmail-enhanced-select"
|
342 |
msgid ""
|
343 |
+
"Have you double checked your selected group? If so, let's go ahead and send "
|
344 |
+
"this."
|
345 |
+
msgstr "Hai controllato due volte il gruppo ? Se sì, inviala."
|
|
|
|
|
|
|
|
|
|
|
|
|
346 |
|
347 |
+
#: ../classes/es-register.php:235
|
348 |
+
msgctxt "sentmail-enhanced-select"
|
349 |
+
msgid "Do you want to delete this record?"
|
350 |
+
msgstr "Vuoi cancellare questo record ?"
|
351 |
|
352 |
+
#: ../classes/es-register.php:236
|
353 |
+
msgctxt "sentmail-enhanced-select"
|
354 |
+
msgid "Do you want to delete all records except latest 10?"
|
355 |
+
msgstr "vuoi cancellare tutti i record tranne gli ultimi 10 ?"
|
356 |
|
357 |
+
#: ../classes/es-register.php:244
|
358 |
+
msgctxt "cron-enhanced-select"
|
359 |
+
msgid "Please select enter number of mails you want to send per hour/trigger."
|
360 |
+
msgstr "Seleziona il numero di email che vuoi spedire per ogni ora."
|
361 |
|
362 |
+
#: ../classes/es-register.php:245
|
363 |
+
msgctxt "cron-enhanced-select"
|
364 |
+
msgid "Please enter the mail count, only number."
|
365 |
+
msgstr "Inserisci il numero di email, solo numeri."
|
366 |
|
367 |
+
#: ../classes/es-register.php:258
|
368 |
+
msgctxt "widget-enhanced-select"
|
369 |
+
msgid "Please enter email address"
|
370 |
+
msgstr "Inserisci l'indirizzo email"
|
371 |
|
372 |
+
#: ../classes/es-register.php:259
|
373 |
+
msgctxt "widget-enhanced-select"
|
374 |
+
msgid "Successfully Subscribed."
|
375 |
+
msgstr "Iscritto con successo"
|
376 |
|
377 |
+
#: ../classes/es-register.php:261
|
378 |
+
msgctxt "widget-enhanced-select"
|
379 |
+
msgid "Email Address already exists!"
|
380 |
+
msgstr "Questo indirizzo email è già presente !"
|
381 |
|
382 |
+
#: ../classes/es-register.php:262
|
383 |
+
msgctxt "widget-enhanced-select"
|
384 |
+
msgid "Oops.. Unexpected error occurred."
|
385 |
+
msgstr "Oops... Si è verificato un errore inatteso."
|
386 |
|
387 |
+
#: ../classes/es-register.php:263
|
388 |
+
msgctxt "widget-enhanced-select"
|
389 |
+
msgid "Invalid email address"
|
390 |
+
msgstr "Indirizzo email non valido"
|
|
|
|
|
|
|
391 |
|
392 |
+
#: ../classes/es-register.php:264
|
393 |
+
msgctxt "widget-enhanced-select"
|
394 |
+
msgid "Please try after some time"
|
395 |
+
msgstr "Per favore riprova tra qualche minuto"
|
396 |
|
397 |
+
#: ../classes/es-register.php:272
|
398 |
+
msgctxt "widget-page-enhanced-select"
|
399 |
+
msgid "Please enter email address"
|
400 |
+
msgstr "Inserisci l'indirizzo email"
|
|
|
|
|
|
|
401 |
|
402 |
+
#: ../classes/es-register.php:273
|
403 |
+
msgctxt "widget-page-enhanced-select"
|
404 |
+
msgid "Successfully Subscribed."
|
405 |
+
msgstr "Iscritto con successo."
|
406 |
|
407 |
+
#: ../classes/es-register.php:275
|
408 |
+
msgctxt "widget-page-enhanced-select"
|
409 |
+
msgid "Email Address already exists!"
|
410 |
+
msgstr "Questo indirizzo email è già presente !"
|
411 |
|
412 |
+
#: ../classes/es-register.php:276
|
413 |
+
msgctxt "widget-page-enhanced-select"
|
414 |
+
msgid "Oops.. Unexpected error occurred."
|
415 |
+
msgstr "Oops... Si è verificato un errore inatteso."
|
416 |
|
417 |
+
#: ../classes/es-register.php:277
|
418 |
+
msgctxt "widget-page-enhanced-select"
|
419 |
+
msgid "Invalid email address"
|
420 |
+
msgstr "Indirizzo email non valido"
|
421 |
|
422 |
+
#: ../classes/es-register.php:278
|
423 |
+
msgctxt "widget-page-enhanced-select"
|
424 |
+
msgid "Please try after some time"
|
425 |
+
msgstr "Per favore riprova tra qualche minuto"
|
426 |
|
427 |
+
#: ../classes/es-register.php:766
|
428 |
msgid ""
|
429 |
+
"If you like <strong>Email Subscribers</strong>, please consider leaving us a "
|
430 |
+
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
|
431 |
+
"subscribers/reviews/?filter=5#new-post\">★★★★★"
|
432 |
+
"</a> rating. A huge thank you from Icegram in advance!"
|
|
|
433 |
msgstr ""
|
434 |
+
"Se ti piace <strong>Email Subscribers</strong>, per favore considera di "
|
435 |
+
"lasciare un giudizio <a target=\"_blank\" href=\"https://wordpress."
|
436 |
+
"org/support/plugin/email-subscribers/reviews/?filter=5#new-post\">★"
|
437 |
+
"★★★★</a>. Molte grazie in anticipo da Icegram !"
|
|
|
438 |
|
439 |
+
#: ../classes/es-register.php:780
|
440 |
+
#, php-format
|
441 |
+
msgid "Email Subscribers version: <strong>%s</strong>"
|
442 |
+
msgstr "Email Subscribers versione: <strong>%s</strong>"
|
443 |
|
444 |
+
#: ../classes/es-register.php:791 ../classes/es-register.php:792
|
445 |
+
msgid "Add new Template"
|
446 |
+
msgstr "Aggiungi nuovo Modello"
|
|
|
|
|
|
|
447 |
|
448 |
+
#: ../classes/es-register.php:793
|
449 |
+
msgid "Edit Templates"
|
450 |
+
msgstr "Modifica Modello"
|
451 |
|
452 |
+
#: ../classes/es-register.php:794
|
453 |
+
msgid "New Templates"
|
454 |
+
msgstr "Nuovo Modello"
|
|
|
|
|
|
|
|
|
455 |
|
456 |
+
#: ../classes/es-register.php:796
|
457 |
+
msgid "View Templates"
|
458 |
+
msgstr "Visualizza Modelli"
|
459 |
|
460 |
+
#: ../classes/es-register.php:797
|
461 |
+
msgid "Search Templates"
|
462 |
+
msgstr "Ricerca Modelli"
|
463 |
+
|
464 |
+
#: ../classes/es-register.php:798
|
465 |
+
msgid "No Templates found"
|
466 |
+
msgstr "Nessun Modello trovato"
|
467 |
+
|
468 |
+
#: ../classes/es-register.php:799
|
469 |
+
msgid "No Templates found in Trash"
|
470 |
+
msgstr "Nessun Modello trovato nel Cestino"
|
471 |
+
|
472 |
+
#: ../classes/es-register.php:802
|
473 |
+
msgid "Thumbnail (For Visual Representation only)"
|
474 |
+
msgstr "Miniature (solo per rappresentazione visuale)"
|
475 |
+
|
476 |
+
#: ../classes/es-register.php:803
|
477 |
+
msgid "Set thumbnail"
|
478 |
+
msgstr "Configura minuature"
|
479 |
+
|
480 |
+
#: ../classes/es-register.php:840
|
481 |
+
msgid "Template Type"
|
482 |
+
msgstr "Tipo Modello"
|
483 |
|
484 |
+
#: ../classes/es-register.php:841 ../settings/settings-edit.php:123
|
485 |
msgid "Thumbnail"
|
486 |
msgstr "Miniatura"
|
487 |
|
488 |
+
#: ../classes/es-register.php:889 ../sentmail/sentmail-show.php:108 ..
|
489 |
+
#: sentmail/sentmail-show.php:121
|
490 |
+
msgid "Preview"
|
491 |
+
msgstr "Anteprima"
|
492 |
|
493 |
+
#: ../classes/es-register.php:906
|
494 |
+
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
495 |
+
msgstr "Parole Chiave disponibili per la Notifica dei Post: {{POSTTITLE}}"
|
|
|
|
|
|
|
|
|
496 |
|
497 |
+
#: ../classes/es-register.php:909
|
498 |
+
msgid "Select your Email Template Type"
|
499 |
+
msgstr "Seleziona il tipo di Modello Email"
|
500 |
|
501 |
+
#: ../classes/es-register.php:911
|
502 |
+
msgid "Newsletter"
|
503 |
+
msgstr "Newsletter"
|
504 |
+
|
505 |
+
#: ../classes/es-register.php:912
|
506 |
+
msgid "Post Notification"
|
507 |
+
msgstr "Notifica Post"
|
508 |
+
|
509 |
+
#: ../classes/es-register.php:959
|
510 |
+
msgid "Preview Template"
|
511 |
+
msgstr "Anteprima Modello"
|
512 |
+
|
513 |
+
#: ../classes/es-register.php:973
|
514 |
+
#, php-format
|
515 |
msgid ""
|
516 |
+
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
517 |
+
"{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
|
518 |
+
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
519 |
msgstr ""
|
520 |
+
"%s per Notifiche Post: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
521 |
+
"{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
|
522 |
+
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
523 |
+
|
524 |
+
#: ../classes/es-register.php:973 ../classes/es-register.php:974
|
525 |
+
msgid "Available Keywords"
|
526 |
+
msgstr "Parole Chiave disponibili"
|
527 |
+
|
528 |
+
#: ../classes/es-register.php:1103
|
529 |
+
msgid "Widget Title"
|
530 |
+
msgstr "Titolo del Widget"
|
531 |
|
532 |
+
#: ../classes/es-register.php:1107
|
533 |
+
msgid "Short description about subscription form"
|
534 |
+
msgstr "Breve descrizione per il modulo di iscrizione"
|
535 |
+
|
536 |
+
#: ../classes/es-register.php:1111
|
537 |
+
msgid "Display Name Field"
|
538 |
+
msgstr "Campo Visualizza Nome"
|
539 |
+
|
540 |
+
#: ../classes/es-register.php:1113 ../settings/settings-edit.php:142 ..
|
541 |
+
#: settings/settings-edit.php:217 ../subscribers/view-subscriber-sync.php:107
|
542 |
msgid "YES"
|
543 |
msgstr "SI"
|
544 |
|
545 |
+
#: ../classes/es-register.php:1114 ../settings/settings-edit.php:143 ..
|
546 |
+
#: settings/settings-edit.php:218 ../subscribers/view-subscriber-sync.php:106
|
547 |
msgid "NO"
|
548 |
msgstr "NO"
|
549 |
|
550 |
+
#: ../classes/es-register.php:1118
|
551 |
+
msgid "Subscriber Group"
|
552 |
+
msgstr "Gruppo Iscritti"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
553 |
|
554 |
+
#: ../help/help.php:184
|
555 |
+
msgid "Welcome to Email Subscribers!"
|
556 |
+
msgstr "Benvenuto su Email Subscribers !"
|
557 |
|
558 |
+
#: ../help/help.php:191
|
559 |
+
msgid "Get more help and tips..."
|
560 |
+
msgstr "Ricevi ulteriore aiuto e suggerimenti..."
|
|
|
|
|
|
|
|
|
561 |
|
562 |
+
#: ../help/help.php:205
|
563 |
+
#, php-format
|
564 |
+
msgid "Version: %s"
|
565 |
+
msgstr "Versione: %s"
|
566 |
|
567 |
+
#: ../help/help.php:208
|
568 |
+
msgid "Questions? Need Help?"
|
569 |
+
msgstr "Domande ? Hai bisogno di aiuto ?"
|
570 |
|
571 |
+
#: ../help/help.php:209
|
572 |
+
msgid "Contact Us"
|
573 |
+
msgstr "Contattaci"
|
574 |
|
575 |
+
#: ../help/help.php:214
|
576 |
+
msgid "donating to us"
|
577 |
+
msgstr "fai una donazione"
|
|
|
|
|
|
|
|
|
|
|
578 |
|
579 |
+
#: ../help/help.php:249
|
580 |
+
msgid "Description"
|
581 |
+
msgstr "Descrizione"
|
582 |
|
583 |
+
#: ../help/help.php:251
|
584 |
msgid ""
|
585 |
+
"Email Subscribers is a complete newsletter plugin which lets you collect "
|
586 |
+
"leads, send automated new blog post notification emails, create & send "
|
587 |
+
"newsletters and manage all this in one single place."
|
588 |
msgstr ""
|
589 |
+
"Email Subscribers è un plugin per Newsletter che ti permette di raccogliere "
|
590 |
+
"lead, inviare automaticamente notifiche per i nuovi post pubblicati, creare "
|
591 |
+
"e inviare newsletter e tutto in un solo posto."
|
592 |
|
593 |
+
#: ../help/help.php:253
|
594 |
+
msgid "Feature Overview"
|
595 |
+
msgstr "Panoramica delle funzionalità"
|
596 |
|
597 |
+
#: ../help/help.php:256
|
598 |
msgid ""
|
599 |
+
"Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
|
600 |
+
"Code)."
|
601 |
msgstr ""
|
602 |
+
"Raccogli le email dei clienti aggiungendo un box di iscrizione "
|
603 |
+
"(Widget/Shortcode/Codice PHP)."
|
604 |
|
605 |
+
#: ../help/help.php:259
|
606 |
+
msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
|
607 |
+
msgstr "Configura iscrizione tramite Doppio Opt-In o singolo Opt-In."
|
608 |
|
609 |
+
#: ../help/help.php:262
|
610 |
+
msgid "Send automatic welcome email to subscribers."
|
611 |
+
msgstr "Invia automaticamente una email di benventuo agli iscritti."
|
612 |
|
613 |
+
#: ../help/help.php:265
|
614 |
msgid ""
|
615 |
+
"Send new post notification emails to subscribers when new posts are "
|
616 |
+
"published on your website."
|
617 |
msgstr ""
|
618 |
+
"Invia email di notifica quando viene pubblicato un nuovo articolo sul tuo "
|
619 |
+
"sito web."
|
620 |
|
621 |
+
#: ../help/help.php:268
|
622 |
+
msgid "Schedule email (Cron job) or send them manually."
|
623 |
+
msgstr "Programma le email (Cron job) o inviale manualmente."
|
624 |
+
|
625 |
+
#: ../help/help.php:271
|
626 |
+
msgid "Send email notification to admin when a new user signs up."
|
627 |
msgstr ""
|
628 |
+
"Invia una email di notifica all'Amministrazione quando si iscrive un nuovo "
|
629 |
+
"utente."
|
630 |
|
631 |
+
#: ../help/help.php:274
|
632 |
+
msgid "Automatically add Unsubscribe link in the email."
|
633 |
+
msgstr "Aggiungi automaticamente alle email il link di cancellazione."
|
634 |
|
635 |
+
#: ../help/help.php:277
|
636 |
+
msgid "Easily migrate subscribers from another app using Import & Export."
|
|
|
|
|
637 |
msgstr ""
|
638 |
+
"Sposta facilmente gli iscritti da un'altra applicazione utilizzando Importa "
|
639 |
+
"e Esporta."
|
|
|
|
|
|
|
|
|
640 |
|
641 |
+
#: ../help/help.php:280
|
642 |
+
msgid "Use HTML editor to create newsletters and post notifications."
|
|
|
|
|
|
|
643 |
msgstr ""
|
644 |
+
"Utilizza un editor HTML per creare newsletter e email di notifica "
|
645 |
+
"pubblicazione."
|
|
|
646 |
|
647 |
+
#: ../help/help.php:283
|
648 |
+
msgid "Send newsletters to different groups."
|
649 |
+
msgstr "Invia newsletter a gruppi diversi."
|
650 |
|
651 |
+
#: ../help/help.php:286
|
652 |
+
msgid "Get detailed sent email reports."
|
653 |
+
msgstr "Ricevi report dettagliati sulle email spedite."
|
|
|
|
|
|
|
|
|
|
|
|
|
654 |
|
655 |
+
#: ../help/help.php:289
|
656 |
+
msgid "Control user access (User Roles and Capabilities)."
|
657 |
+
msgstr "Controllo accesso utenti (Ruoli e Funzionalità degli Utenti)"
|
658 |
|
659 |
+
#: ../help/help.php:292
|
660 |
+
msgid "Supports localization and internationalization."
|
661 |
+
msgstr "Supporta localizzazione e internazionalizzazione."
|
|
|
|
|
|
|
|
|
|
|
|
|
662 |
|
663 |
+
#: ../help/help.php:299
|
664 |
+
msgid "Add Subscribe form"
|
665 |
+
msgstr "Aggiungi modulo di iscrizione"
|
666 |
|
667 |
+
#: ../help/help.php:301 ../help/help.php:312 ../help/help.php:315 ../help/help.
|
668 |
+
#: php:327 ../help/help.php:330 ../help/help.php:333 ../help/help.php:336 ..
|
669 |
+
#: help/help.php:339 ../help/help.php:342 ../help/help.php:354 ../help/help.php:
|
670 |
+
#: 357 ../help/help.php:364 ../help/help.php:367 ../help/help.php:370 ..
|
671 |
+
#: help/help.php:378 ../help/help.php:381 ../help/help.php:384 ../help/help.php:
|
672 |
+
#: 387 ../help/help.php:393 ../help/help.php:396 ../help/help.php:398
|
673 |
+
#, php-format
|
674 |
+
msgid "%s"
|
675 |
+
msgstr "%s"
|
676 |
|
677 |
+
#: ../help/help.php:301
|
678 |
+
msgid "How to Add Subscription box to website?"
|
679 |
+
msgstr "Come aggiungere un box di iscrizione al sito web ?"
|
680 |
|
681 |
+
#: ../help/help.php:304
|
682 |
+
#, php-format
|
683 |
msgid ""
|
684 |
+
"Use any of the following 3 methods :<br>\n"
|
685 |
+
" a) Shortcode in any page/post : <strong>[email-subscribers "
|
686 |
+
"namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Or</i><br>\n"
|
687 |
+
" b) Go to Appearance -> Widgets. Click on widget Email subscribers "
|
688 |
+
"and drag it to the sidebar on the right <i>Or</i><br>\n"
|
689 |
+
" c) Copy and past this php code to your desired template location : "
|
690 |
+
"<strong>%s</strong>"
|
691 |
msgstr ""
|
692 |
+
"Utilizza uno dei seguenti 3 metodi:<br>\n"
|
693 |
+
"\n"
|
694 |
+
" a) Shortcode in una pagina/post : <strong>[email-subscribers "
|
695 |
+
"namefield=\"YES\" desc=\"\" group=\"Public\"]</strong> <i>Oppure</i><br>\n"
|
696 |
+
" b) Vai in Aspetto -> Widgets. Clicca sul widget Email subscribers e "
|
697 |
+
"trascinalo nella sidebar a destra <i>Oppure</i><br>\n"
|
698 |
+
" c) Copia e incolla il codice php nel tuo template: "
|
699 |
+
"<strong>%s</strong>"
|
700 |
|
701 |
+
#: ../help/help.php:309
|
702 |
+
msgid "Additional form settings"
|
703 |
+
msgstr "Configurazioni addizionali del modulo"
|
704 |
|
705 |
+
#: ../help/help.php:312
|
706 |
+
msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
|
|
|
|
|
707 |
msgstr ""
|
708 |
+
"Come redirezionare gli iscritti a una nuova pagina/url dopo la registrazione "
|
709 |
+
"?"
|
710 |
|
711 |
+
#: ../help/help.php:315
|
712 |
+
msgid "How to add captcha in Subscribe form of Email Subscribers?"
|
713 |
+
msgstr "Come aggiungere un captcha nel modulo di Iscrizione di Email Subscribers ?"
|
714 |
|
715 |
+
#: ../help/help.php:321
|
716 |
+
msgid "General Plugin Configuration"
|
717 |
+
msgstr "Configurazione generale del Plugin"
|
|
|
|
|
|
|
|
|
718 |
|
719 |
+
#: ../help/help.php:324
|
720 |
+
#, php-format
|
721 |
+
msgid "Modify %s"
|
722 |
+
msgstr "Modifica %s"
|
723 |
+
|
724 |
+
#: ../help/help.php:324
|
725 |
+
msgid "default text, email contents"
|
726 |
+
msgstr "testo standard, contenuto email"
|
727 |
+
|
728 |
+
#: ../help/help.php:330
|
729 |
+
msgid "How to Import or Export Email Addresses?"
|
730 |
+
msgstr "Come Importare o Esportare indirizzi Email ?"
|
731 |
+
|
732 |
+
#: ../help/help.php:333
|
733 |
+
msgid "How to Add/Update Existing Subscribers Group & Status?"
|
734 |
+
msgstr "Come Aggiungere/Modificare Gruppi esistenti di Iscritti e il loro Status ?"
|
735 |
+
|
736 |
+
#: ../help/help.php:336
|
737 |
+
msgid "How to change/update/translate any texts from the plugin?"
|
738 |
+
msgstr "Come modificare/tradurre una frase del plugin ?"
|
739 |
+
|
740 |
+
#: ../help/help.php:339
|
741 |
+
msgid "How to add Unsubscribe link in emails?"
|
742 |
+
msgstr "Come aggiungere il link di cancellazione nelle email ?"
|
743 |
+
|
744 |
+
#: ../help/help.php:342
|
745 |
+
msgid "How to check sent emails?"
|
746 |
+
msgstr "Come controllare le email spedite ?"
|
747 |
+
|
748 |
+
#: ../help/help.php:354
|
749 |
+
msgid "Create and Send Newsletter Emails"
|
750 |
+
msgstr "Creare e inviare una Newsletter"
|
751 |
+
|
752 |
+
#: ../help/help.php:357
|
753 |
+
msgid "Keywords in the Newsletters"
|
754 |
+
msgstr "Parole chiave nella Newsletter"
|
755 |
+
|
756 |
+
#: ../help/help.php:364
|
757 |
+
msgid "Create and Send Post Notification Emails when new posts are published"
|
758 |
msgstr ""
|
759 |
+
"Creare e inviare una notifica di post quando viene pubblicato un nuovo "
|
760 |
+
"articolo"
|
761 |
|
762 |
+
#: ../help/help.php:367
|
763 |
+
msgid "Keywords in the Post Notifications"
|
764 |
+
msgstr "Parole chiave nella notifica post"
|
765 |
|
766 |
+
#: ../help/help.php:370
|
767 |
+
msgid "Send a test post notification email to myself/testgroup"
|
768 |
+
msgstr "Inviare una notifica post di test a me/gurppo di test"
|
|
|
|
|
769 |
|
770 |
+
#: ../help/help.php:375
|
771 |
+
msgid "Cron Job Setup"
|
772 |
+
msgstr "Configurazione Cron Job"
|
|
|
|
|
773 |
|
774 |
+
#: ../help/help.php:378
|
775 |
+
msgid "What is Cron and how to Schedule Cron Emails?"
|
776 |
+
msgstr "Che cos'è Cron e come programmare un Cron per le email ?"
|
|
|
|
|
777 |
|
778 |
+
#: ../help/help.php:381
|
779 |
+
msgid "Schedule Cron Emails in cPanel"
|
780 |
+
msgstr "Configurare un Cron per le email in cPanel"
|
781 |
|
782 |
+
#: ../help/help.php:384
|
783 |
+
msgid "Schedule Cron Emails in Parallels Plesk"
|
784 |
+
msgstr "Configurare un Cron per le email in Parallels Plesk"
|
785 |
|
786 |
+
#: ../help/help.php:387
|
787 |
+
msgid "Hosting doesn’t support Cron Jobs?"
|
788 |
+
msgstr "Il tuo Hosting non supporta i Cron Jobs ?"
|
|
|
789 |
|
790 |
+
#: ../help/help.php:390
|
791 |
+
msgid "Troubleshooting Steps"
|
792 |
+
msgstr "Risoluzione dei problemi"
|
793 |
|
794 |
+
#: ../help/help.php:393
|
795 |
+
msgid "Subscribers are not receiving Emails?"
|
796 |
+
msgstr "Gli iscritti non ricevono le email ?"
|
797 |
|
798 |
+
#: ../help/help.php:396
|
799 |
+
msgid "CSS Help"
|
800 |
+
msgstr "Aiuto per i CSS"
|
|
|
|
|
|
|
|
|
801 |
|
802 |
+
#: ../help/help.php:398
|
803 |
+
msgid "FAQ's"
|
804 |
+
msgstr "FAQ"
|
805 |
|
806 |
+
#: ../help/help.php:404
|
807 |
+
msgid "Want to do more? Here's how.."
|
808 |
+
msgstr "Desideri di più? Ecco come..."
|
809 |
|
810 |
+
#: ../help/help.php:407
|
811 |
+
msgid "Allow Subscribers to get subscribed to any group"
|
812 |
+
msgstr "Permetti agli iscritti di iscriversi a qualsiasi gruppo"
|
813 |
|
814 |
+
#: ../help/help.php:413
|
815 |
+
msgid "Group Selector"
|
816 |
+
msgstr "Selettore di Gruppo"
|
817 |
|
818 |
+
#: ../help/help.php:414
|
819 |
msgid ""
|
820 |
+
"plugin, you can extend Email Subscribers Form functionality by providing an "
|
821 |
+
"grouping option right next to the form."
|
822 |
msgstr ""
|
823 |
+
"plugin, puoi estendere le funzionalità del modulo di iscrizione fornedno "
|
824 |
+
"delle opzioni aggiuntive nel modulo."
|
825 |
|
826 |
+
#: ../help/help.php:417
|
827 |
+
msgid "The user can then subscribe to whichever group most appeals to them."
|
828 |
+
msgstr "L'utente può così iscriversi a qualsiasi gruppo sia interessato."
|
829 |
|
830 |
+
#: ../help/help.php:420
|
831 |
+
msgid "For example: Subscribe either to Updates or to Offers."
|
832 |
+
msgstr "Per esempio: iscriversi a Aggiornamenti e a Offerte."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
833 |
|
834 |
+
#: ../help/help.php:424
|
835 |
+
msgid "Show your subscribe form inside attractive popups"
|
836 |
+
msgstr "Visualizza il tuo modulo di iscrizione tramite popup attrattivi"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
837 |
|
838 |
+
#: ../help/help.php:429
|
839 |
msgid ""
|
840 |
+
"Don't limit your subscriber form to a widget. Embed it within popups, hello "
|
841 |
+
"bars, slide-ins, sidebars, full screen popups etc."
|
|
|
|
|
842 |
msgstr ""
|
843 |
+
"Non limitare l'iscrizione a un modulo. Includilo in popup, barre di "
|
844 |
+
"benventuo, popup a schermo intero, eccetera."
|
|
|
|
|
845 |
|
846 |
+
#. Author of the plugin/theme
|
847 |
+
#: ../help/help.php:433
|
848 |
+
msgid "Icegram"
|
849 |
+
msgstr "Icegram"
|
850 |
+
|
851 |
+
#: ../help/help.php:436
|
852 |
msgid ""
|
853 |
+
"Icegram's beautiful designs instantly capture user attention and help "
|
854 |
+
"increase sign-ups to your WordPress website."
|
|
|
|
|
855 |
msgstr ""
|
856 |
+
"L'ottimo design cattura immediatamente l'attenzione e aiuta a incrementare "
|
857 |
+
"il tasso di iscrizione al tuo sito WordPress."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
858 |
|
859 |
+
#: ../help/help.php:439 ../help/help.php:459
|
860 |
+
#, php-format
|
861 |
+
msgid "How to %s"
|
862 |
+
msgstr "Come fare per %s"
|
863 |
|
864 |
+
#: ../help/help.php:439
|
865 |
+
msgid "show subscribe form inside a popup"
|
866 |
+
msgstr "visualizzare il modulo di iscrizione in un pop up"
|
867 |
|
868 |
+
#: ../help/help.php:443
|
869 |
+
msgid "Get beautiful and elegant form styles"
|
870 |
+
msgstr "usare belli ed eleganti stili nel modulo"
|
871 |
|
872 |
+
#: ../help/help.php:450
|
873 |
+
msgid "Rainmaker"
|
874 |
+
msgstr "Rainmaker"
|
875 |
|
876 |
+
#: ../help/help.php:453
|
877 |
+
msgid ""
|
878 |
+
"Rainmaker extends the core features of Email Subscribers and provides "
|
879 |
+
"elegant form styles."
|
880 |
+
msgstr ""
|
881 |
+
"Rainmaker estende le funzionalità di base di Email Subscribers e fornisce "
|
882 |
+
"eleganti stili per i moduli."
|
883 |
|
884 |
+
#: ../help/help.php:456
|
885 |
+
msgid ""
|
886 |
+
"These styles are well designed and beautify your subscription form making it "
|
887 |
+
"more appealing."
|
888 |
+
msgstr ""
|
889 |
+
"Questi stili sono ben disegnati e permettono di dare ulteriore appeal ai "
|
890 |
+
"moduli di iscrizione."
|
891 |
|
892 |
+
#: ../help/help.php:459
|
893 |
+
msgid "add Rainmaker’s form in Email Subscribers"
|
894 |
+
msgstr "aggiungi modulo Rainmaker a Email Subscribers"
|
895 |
|
896 |
+
#: ../job/es-optin.php:58 ../job/es-optin.php:68 ../job/es-unsubscribe.php:54 ..
|
897 |
+
#: job/es-unsubscribe.php:61
|
898 |
msgid ""
|
899 |
+
"Oops.. We are getting some technical error. Please try again or contact "
|
900 |
+
"admin."
|
|
|
901 |
msgstr ""
|
902 |
+
"Oops.. Si è verificato un problema tecnico. Riprova di nuovo o contatta "
|
903 |
+
"l'Amministratore."
|
|
|
|
|
|
|
|
|
|
|
|
|
904 |
|
905 |
+
#: ../job/es-optin.php:61
|
906 |
+
msgid "This email address has already been confirmed."
|
907 |
+
msgstr "Questo indirizzo email è già stato confermato."
|
908 |
|
909 |
+
#: ../notification/notification-add.php:33
|
910 |
+
msgid "Please select subscribers group."
|
911 |
+
msgstr "Per favore seleziona un gruppo di iscritti."
|
|
|
912 |
|
913 |
+
#: ../notification/notification-add.php:39
|
914 |
+
msgid "Please select notification status."
|
915 |
+
msgstr "Per favore seleziona lo status delle notifiche."
|
916 |
|
917 |
+
#: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
|
918 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
919 |
+
msgstr ""
|
920 |
+
"Per favore seleziona l'oggetto della mail di notifica. Usa il menu templates "
|
921 |
+
"per crearne uno nuovo."
|
922 |
|
923 |
+
#: ../notification/notification-add.php:51 ../notification/notification-edit.php:67
|
924 |
+
msgid "Please select post categories."
|
925 |
+
msgstr "Per favore seleziona le categorie con gli articoli."
|
|
|
926 |
|
927 |
+
#: ../notification/notification-add.php:71
|
928 |
+
msgid "Notification successfully created. "
|
929 |
+
msgstr "Notifica creata con successo."
|
930 |
|
931 |
+
#: ../notification/notification-add.php:112
|
932 |
+
msgid "Add Notification"
|
933 |
+
msgstr "Aggiungi notifica"
|
|
|
|
|
934 |
|
935 |
+
#: ../notification/notification-add.php:113 ../notification/notification-edit.php:
|
936 |
+
#: 124 ../notification/notification-show.php:54 ../sendmail/sendmail.php:94 ..
|
937 |
+
#: sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
|
938 |
+
#: sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
|
939 |
+
#: subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
|
940 |
+
#: php:113 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
|
941 |
+
#: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
|
942 |
+
#: subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:32
|
943 |
+
msgid "Help"
|
944 |
+
msgstr "Aiuto"
|
945 |
|
946 |
+
#: ../notification/notification-add.php:121
|
947 |
+
msgid "Select Subscribers Group"
|
948 |
+
msgstr "Seleziona Gruppo Iscritti"
|
949 |
|
950 |
+
#: ../notification/notification-add.php:125 ../notification/notification-add.php:
|
951 |
+
#: 149 ../notification/notification-edit.php:136 ../notification/notification-
|
952 |
+
#: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
|
953 |
+
#: sendmail/sendmail.php:152 ../subscribers/view-subscriber-add.php:166 ..
|
954 |
+
#: subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
|
955 |
+
#: import.php:193 ../subscribers/view-subscriber-sync.php:119
|
956 |
+
msgid "Select"
|
957 |
+
msgstr "Seleziona"
|
958 |
|
959 |
+
#: ../notification/notification-add.php:143 ../notification/notification-edit.php:
|
960 |
+
#: 163
|
961 |
+
msgid "Select Notification Email Subject"
|
962 |
+
msgstr "Seleziona oggetto della mail di notifica"
|
963 |
|
964 |
+
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
965 |
+
#: 164
|
966 |
+
msgid "(Use templates menu to create new)"
|
967 |
+
msgstr "(Usa il menu templates per crearne uno nuovo)"
|
|
|
968 |
|
969 |
+
#: ../notification/notification-add.php:168 ../notification/notification-edit.php:
|
970 |
+
#: 191
|
971 |
+
msgid "Select Post Categories"
|
972 |
+
msgstr "Seleziona le categorie per i post"
|
973 |
|
974 |
+
#: ../notification/notification-add.php:196 ../notification/notification-edit.php:
|
975 |
+
#: 226
|
976 |
+
msgid "Check All"
|
977 |
+
msgstr "Attiva tutti"
|
|
|
|
|
|
|
978 |
|
979 |
+
#: ../notification/notification-add.php:197 ../notification/notification-edit.php:
|
980 |
+
#: 227
|
981 |
+
msgid "Uncheck All"
|
982 |
+
msgstr "Disattiva tutti"
|
983 |
|
984 |
+
#: ../notification/notification-add.php:203 ../notification/notification-edit.php:
|
985 |
+
#: 234
|
986 |
+
msgid "Select your Custom Post Type"
|
987 |
+
msgstr "Seleziona il tuo tipo post personalizzato"
|
988 |
|
989 |
+
#: ../notification/notification-add.php:204 ../notification/notification-edit.php:
|
990 |
+
#: 235
|
991 |
+
msgid "(Optional)"
|
992 |
+
msgstr "(Opzionale)"
|
|
|
993 |
|
994 |
+
#: ../notification/notification-add.php:233 ../notification/notification-edit.php:
|
995 |
+
#: 269
|
996 |
+
msgid "No Custom Post Types Available"
|
997 |
+
msgstr "Non ci sono tipi post personalizzati disponibili"
|
998 |
|
999 |
+
#: ../notification/notification-add.php:240 ../notification/notification-edit.php:
|
1000 |
+
#: 276
|
1001 |
+
msgid "Select Notification Status when a new post is published"
|
1002 |
+
msgstr "Seleziona lo stato della notifica quando viene pubblicato un nuovo articolo"
|
1003 |
|
1004 |
+
#: ../notification/notification-add.php:244 ../notification/notification-edit.php:
|
1005 |
+
#: 280 ../notification/notification-show.php:130 ../sendmail/sendmail.php:139
|
1006 |
+
msgid "Send email immediately"
|
1007 |
+
msgstr "Invia email immediatamente"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1008 |
|
1009 |
+
#: ../notification/notification-add.php:245 ../notification/notification-edit.php:
|
1010 |
+
#: 281 ../notification/notification-show.php:132
|
1011 |
+
msgid "Add to cron and send email via cron job"
|
1012 |
+
msgstr "Aggiungi al cron e invia email via cron job"
|
1013 |
|
1014 |
+
#: ../notification/notification-add.php:246 ../notification/notification-edit.php:
|
1015 |
+
#: 282
|
1016 |
+
msgid "Disable email notification"
|
1017 |
+
msgstr "Disattiva notifica email"
|
1018 |
|
1019 |
+
#: ../notification/notification-add.php:254 ../notification/notification-edit.php:
|
1020 |
+
#: 291 ../subscribers/view-subscriber-edit.php:191
|
1021 |
+
msgid "Save"
|
1022 |
+
msgstr "Salva"
|
1023 |
|
1024 |
+
#: ../notification/notification-edit.php:20 ../notification/notification-show.php:
|
1025 |
+
#: 21 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
|
1026 |
+
#: subscribers/view-subscriber-edit.php:22
|
1027 |
+
msgid "Oops, selected details does not exists."
|
1028 |
+
msgstr "Ooops, i dettagli selezionati non esistono."
|
1029 |
|
1030 |
+
#: ../notification/notification-edit.php:49
|
1031 |
+
msgid "Please select subscribers group"
|
1032 |
+
msgstr "Per favore seleziona il gruppo iscritti"
|
1033 |
|
1034 |
+
#: ../notification/notification-edit.php:55
|
1035 |
+
msgid "Please select notification status"
|
1036 |
+
msgstr "Per favore seleziona lo status della notifica."
|
1037 |
|
1038 |
+
#: ../notification/notification-edit.php:89
|
1039 |
+
msgid "Notification successfully updated. "
|
1040 |
+
msgstr "Notifica aggiornata con successo."
|
|
|
|
|
|
|
1041 |
|
1042 |
+
#: ../notification/notification-edit.php:122
|
1043 |
+
msgid "Edit Notification"
|
1044 |
+
msgstr "Modifica notifica"
|
|
|
|
|
1045 |
|
1046 |
+
#: ../notification/notification-edit.php:123 ../notification/notification-show.
|
1047 |
+
#: php:53
|
1048 |
+
msgid "Add New"
|
1049 |
+
msgstr "Aggiungi nuovo"
|
|
|
|
|
1050 |
|
1051 |
+
#: ../notification/notification-edit.php:132 ../subscribers/view-subscriber-show.
|
1052 |
+
#: php:303
|
1053 |
+
msgid "Update Subscribers Group"
|
1054 |
+
msgstr "Aggiorna gruppo iscritti"
|
1055 |
|
1056 |
+
#: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
|
1057 |
+
msgid "Selected record deleted."
|
1058 |
+
msgstr "Record selezionati cancellati."
|
1059 |
|
1060 |
+
#: ../notification/notification-show.php:57
|
1061 |
+
msgid ""
|
1062 |
+
"Use this to setup and send notification emails to your subscribers when a "
|
1063 |
+
"new post is published in your blog."
|
1064 |
+
msgstr ""
|
1065 |
+
"Usa questo per programmare e inviare notifiche email ai tuoi iscritti quando "
|
1066 |
+
"viene pubblicato un nuovo articolo nel tuo blog."
|
1067 |
|
1068 |
+
#: ../notification/notification-show.php:68 ../notification/notification-show.php:
|
1069 |
+
#: 76
|
1070 |
+
msgid "Email Subject"
|
1071 |
+
msgstr "Oggetto email"
|
1072 |
|
1073 |
+
#: ../notification/notification-show.php:69 ../notification/notification-show.php:
|
1074 |
+
#: 77
|
1075 |
+
msgid "Subscribers Group"
|
1076 |
+
msgstr "Gruppo iscritti"
|
|
|
1077 |
|
1078 |
+
#: ../notification/notification-show.php:70 ../notification/notification-show.php:
|
1079 |
+
#: 78
|
1080 |
+
msgid "Post Categories / Custom Post Types"
|
1081 |
+
msgstr "Categorie articoli / Tipi articolo personalizzati"
|
|
|
1082 |
|
1083 |
+
#: ../notification/notification-show.php:71 ../notification/notification-show.php:
|
1084 |
+
#: 79
|
1085 |
+
msgid "Notification Status"
|
1086 |
+
msgstr "Status notifica"
|
|
|
1087 |
|
1088 |
+
#: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
|
1089 |
+
#: php:417 ../templates/template-preview.php:35
|
1090 |
+
msgid "Edit"
|
1091 |
+
msgstr "Modifica"
|
1092 |
|
1093 |
+
#: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
|
1094 |
+
#: php:301 ../subscribers/view-subscriber-show.php:422
|
1095 |
+
msgid "Delete"
|
1096 |
+
msgstr "Cancella"
|
1097 |
|
1098 |
+
#: ../notification/notification-show.php:143 ../sentmail/deliverreport-show.php:
|
1099 |
+
#: 128 ../sentmail/sentmail-show.php:180 ../subscribers/view-subscriber-show.php:
|
1100 |
+
#: 456
|
1101 |
+
msgid "No records available."
|
1102 |
+
msgstr "Nessun record disponibile."
|
|
|
1103 |
|
1104 |
+
#: ../sendmail/sendmail.php:18 ../subscribers/view-subscriber-show.php:17
|
1105 |
msgid "Click Here"
|
1106 |
msgstr "Clicca qui"
|
1107 |
|
1108 |
+
#: ../sendmail/sendmail.php:40
|
1109 |
+
msgid "Please select your mail subject."
|
1110 |
+
msgstr "Scegli l'oggetto della mail"
|
1111 |
|
1112 |
+
#: ../sendmail/sendmail.php:46
|
1113 |
+
msgid "Please select your mail type."
|
1114 |
+
msgstr "Scegli il tipo di mail"
|
|
|
1115 |
|
1116 |
+
#: ../sendmail/sendmail.php:52
|
1117 |
+
msgid "Please select your group."
|
1118 |
+
msgstr "Scegli il gruppo"
|
1119 |
|
1120 |
+
#: ../sendmail/sendmail.php:59
|
1121 |
+
msgid "Email sent successfully. "
|
1122 |
+
msgstr "Email inviata con successo."
|
|
|
|
|
1123 |
|
1124 |
+
#: ../sendmail/sendmail.php:63
|
1125 |
+
msgid "Click here to check Statistics"
|
1126 |
+
msgstr "Clicca qui per controllare le statistiche"
|
1127 |
|
1128 |
+
#: ../sendmail/sendmail.php:69
|
1129 |
+
msgid "Oops.. We are getting some error. mail not sending."
|
1130 |
+
msgstr "Oops.. Si è verificato un errore. Mail non spedita."
|
1131 |
|
1132 |
+
#: ../sendmail/sendmail.php:97
|
1133 |
+
msgid "Use this to send newsletter emails to your subscribers."
|
1134 |
+
msgstr "Utilizza questo per inviare newsletter ai tuoi iscritti."
|
1135 |
|
1136 |
+
#: ../sendmail/sendmail.php:106
|
1137 |
+
msgid "Select Email Subject from available list"
|
1138 |
+
msgstr "Seleziona l'oggetto email dalla lista di quelle disponibili."
|
1139 |
|
1140 |
+
#: ../sendmail/sendmail.php:133
|
1141 |
+
msgid "Select Email Type"
|
1142 |
+
msgstr "Seleziona tipo email"
|
1143 |
|
1144 |
+
#: ../sendmail/sendmail.php:140
|
1145 |
+
msgid "Send email via cron job"
|
1146 |
+
msgstr "Invia email via cron job"
|
|
|
1147 |
|
1148 |
+
#: ../sendmail/sendmail.php:147
|
1149 |
+
msgid "Select Subscribers group to Send Email"
|
1150 |
+
msgstr "Seleziona il Gruppo iscritti a cui inviare l'email"
|
1151 |
|
1152 |
+
#: ../sendmail/sendmail.php:179
|
1153 |
+
msgid "Recipients : 0 "
|
1154 |
+
msgstr "Destinatari: 0"
|
|
|
1155 |
|
1156 |
+
#: ../sendmail/sendmail.php:181
|
1157 |
+
#, php-format
|
1158 |
+
msgid "Recipients : %s"
|
1159 |
+
msgstr "Destinatari: %s"
|
1160 |
|
1161 |
+
#: ../sendmail/sendmail.php:184
|
1162 |
+
msgid ""
|
1163 |
+
"<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
|
1164 |
+
"that you change above Mail Type to Cron and Send Mail via Cron Job."
|
1165 |
+
"</strong><br>Click on Help for more information."
|
1166 |
+
msgstr ""
|
1167 |
+
"<br><br><strong>I tuoi destinatari sono più di 100.<br>Ti consiglio "
|
1168 |
+
"vivamente di modificare il tipo di email a Cron e Invia mail via Cron Job."
|
1169 |
+
"</strong><br>Clicca su Aiuto per maggiori informazioni."
|
1170 |
|
1171 |
+
#: ../sendmail/sendmail.php:196 ../sendmail/sendmail.php:198
|
1172 |
+
msgid "Send Email"
|
1173 |
+
msgstr "Invia email"
|
1174 |
|
1175 |
+
#: ../sendmail/sendmail.php:201
|
1176 |
+
msgid "Reset"
|
1177 |
+
msgstr "Resetta"
|
1178 |
|
1179 |
+
#: ../sentmail/deliverreport-show.php:14
|
1180 |
+
msgid "Oops.. Unexpected error occurred. Please try again."
|
1181 |
+
msgstr "Ooops....si è verificato un errore inatteso. Riprova."
|
1182 |
|
1183 |
+
#: ../sentmail/deliverreport-show.php:60
|
1184 |
+
msgid "Delivery Report"
|
1185 |
+
msgstr "Rapporto di spedizione"
|
|
|
1186 |
|
1187 |
+
#: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:83 ..
|
1188 |
+
#: subscribers/view-subscriber-export.php:58 ../subscribers/view-subscriber-
|
1189 |
+
#: export.php:66
|
1190 |
+
msgid "Sno"
|
1191 |
+
msgstr "Sno"
|
|
|
|
|
1192 |
|
1193 |
+
#: ../sentmail/deliverreport-show.php:73 ../sentmail/deliverreport-show.php:84
|
1194 |
+
msgid "Email"
|
1195 |
+
msgstr "Email"
|
1196 |
|
1197 |
+
#: ../sentmail/deliverreport-show.php:74 ../sentmail/deliverreport-show.php:85 ..
|
1198 |
+
#: sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123 ..
|
1199 |
+
#: subscribers/view-subscriber-show.php:290
|
1200 |
+
msgid "Status"
|
1201 |
+
msgstr "Stato"
|
1202 |
|
1203 |
+
#: ../sentmail/deliverreport-show.php:75 ../sentmail/deliverreport-show.php:86 ..
|
1204 |
+
#: sentmail/sentmail-show.php:111 ../sentmail/sentmail-show.php:124
|
1205 |
+
msgid "Sent"
|
1206 |
+
msgstr "Inviato"
|
1207 |
|
1208 |
+
#: ../sentmail/deliverreport-show.php:76 ../sentmail/deliverreport-show.php:87
|
1209 |
+
msgid "Sent Date"
|
1210 |
+
msgstr "Data Invio"
|
1211 |
|
1212 |
+
#: ../sentmail/deliverreport-show.php:77 ../sentmail/deliverreport-show.php:88
|
1213 |
+
msgid "Viewed Status"
|
1214 |
+
msgstr "Status Vista"
|
1215 |
|
1216 |
+
#: ../sentmail/deliverreport-show.php:78 ../sentmail/deliverreport-show.php:89
|
1217 |
+
msgid "Viewed Date"
|
1218 |
+
msgstr "Data Vista"
|
1219 |
|
1220 |
+
#: ../sentmail/sentmail-preview.php:27
|
1221 |
+
msgid "Preview Email"
|
1222 |
+
msgstr "Anteprima email"
|
1223 |
|
1224 |
+
#: ../sentmail/sentmail-preview.php:31
|
1225 |
+
msgid ""
|
1226 |
+
"This is how the email you sent may look. <br>Note: Different email services "
|
1227 |
+
"(like gmail, yahoo etc) display email content differently. So there could be "
|
1228 |
+
"a slight variation on how your customer will view the email content."
|
1229 |
+
msgstr ""
|
1230 |
+
"Visualizza come verrà vista la tua email.<br>Nota: servizi email diversi "
|
1231 |
+
"(gmail yahoo, eccetera) potrebbero visualizzarla in modo diverso. Quindi "
|
1232 |
+
"potrebbe esserci una leggera variazione sul modo in cui il cliente "
|
1233 |
+
"visualizzerà il contenuto dell'email."
|
1234 |
|
1235 |
+
#: ../sentmail/sentmail-preview.php:53
|
1236 |
+
msgid "Back"
|
1237 |
+
msgstr "Indietro"
|
1238 |
|
1239 |
+
#: ../sentmail/sentmail-show.php:43
|
1240 |
+
msgid "Successfully deleted all reports except latest 10."
|
1241 |
+
msgstr "Rapporti cancellati con successo tranne gli ultimi 10."
|
1242 |
|
1243 |
+
#: ../sentmail/sentmail-show.php:97
|
1244 |
+
msgid "It will show reports for all Newsletters & Post Notification emails sent."
|
1245 |
+
msgstr "Visualizza i rapporti per le Newsletter e le notifiche post."
|
1246 |
|
1247 |
+
#: ../sentmail/sentmail-show.php:107 ../sentmail/sentmail-show.php:120
|
1248 |
+
msgid "View Reports"
|
1249 |
+
msgstr "Visualizza Rapporti"
|
1250 |
|
1251 |
+
#: ../sentmail/sentmail-show.php:109 ../sentmail/sentmail-show.php:122
|
1252 |
+
msgid "Type"
|
1253 |
+
msgstr "Tipo"
|
1254 |
|
1255 |
+
#: ../sentmail/sentmail-show.php:112 ../sentmail/sentmail-show.php:125
|
1256 |
+
msgid "Start Date"
|
1257 |
+
msgstr "Data Inizio"
|
|
|
1258 |
|
1259 |
+
#: ../sentmail/sentmail-show.php:113 ../sentmail/sentmail-show.php:126
|
1260 |
+
msgid "End Date"
|
1261 |
+
msgstr "Data Fine"
|
|
|
1262 |
|
1263 |
+
#: ../sentmail/sentmail-show.php:114 ../sentmail/sentmail-show.php:127
|
1264 |
+
msgid "Total"
|
1265 |
+
msgstr "Totale"
|
1266 |
|
1267 |
+
#: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
|
1268 |
+
#: subscribers/view-subscriber-export.php:61 ../subscribers/view-subscriber-
|
1269 |
+
#: export.php:69 ../subscribers/view-subscriber-show.php:293
|
1270 |
+
msgid "Action"
|
1271 |
+
msgstr "Azione"
|
1272 |
|
1273 |
+
#: ../sentmail/sentmail-show.php:190
|
1274 |
+
msgid "Optimize Table & Delete Records"
|
1275 |
+
msgstr "Ottimizza Tabella e Cancella Record"
|
|
|
|
|
1276 |
|
1277 |
+
#: ../sentmail/sentmail-show.php:199
|
1278 |
+
msgid ""
|
1279 |
+
"Note: Please click on <strong>Optimize Table & Delete Records</strong> "
|
1280 |
+
"button to delete all reports except latest 10."
|
1281 |
+
msgstr ""
|
1282 |
+
"Nota: Clicca su <strong>Ottimizza Tabella e Cancella Record</strong> per "
|
1283 |
+
"cancellare tutti i rapporti tranne gli ultimi 10."
|
1284 |
|
1285 |
+
#: ../settings/setting-sync.php:16
|
1286 |
+
msgid "Table sync completed successfully."
|
1287 |
+
msgstr "Sincronizzazione tabella completata con successo."
|
1288 |
|
1289 |
+
#: ../settings/setting-sync.php:29
|
1290 |
+
msgid "Sync plugin tables"
|
1291 |
+
msgstr "Sincronizza le tabelle del plugin"
|
1292 |
|
1293 |
+
#: ../settings/setting-sync.php:33
|
1294 |
+
msgid "Click to sync tables"
|
1295 |
+
msgstr "Clicca per sincronizzare le tabelle"
|
1296 |
|
1297 |
+
#: ../settings/settings-edit.php:23
|
1298 |
+
msgid "Admin"
|
1299 |
+
msgstr "Amministratore"
|
1300 |
|
1301 |
+
#: ../settings/settings-edit.php:24
|
1302 |
+
msgid "Signup Confirmation"
|
1303 |
+
msgstr "Conferma iscrizione"
|
1304 |
|
1305 |
+
#: ../settings/settings-edit.php:25
|
1306 |
+
msgid "Cron"
|
1307 |
+
msgstr "Cron"
|
1308 |
|
1309 |
+
#: ../settings/settings-edit.php:26
|
1310 |
+
msgid "User Roles"
|
1311 |
+
msgstr "Ruoli utenti"
|
1312 |
|
1313 |
+
#: ../settings/settings-edit.php:67
|
1314 |
+
msgid "Save Settings"
|
1315 |
+
msgstr "Salva configurazione"
|
|
|
1316 |
|
1317 |
+
#: ../settings/settings-edit.php:78
|
1318 |
+
msgid "Sender of Notifications"
|
1319 |
+
msgstr "Mittente delle notifiche"
|
1320 |
|
1321 |
+
#: ../settings/settings-edit.php:79
|
1322 |
msgid ""
|
1323 |
+
"Choose a FROM name and FROM email address for all the emails to be sent from "
|
1324 |
+
"this plugin."
|
1325 |
msgstr ""
|
1326 |
+
"Scegli un nome e un indirizzo email per il campo FROM per le email spedite "
|
1327 |
+
"con questo plugin."
|
|
|
|
|
|
|
|
|
1328 |
|
1329 |
+
#: ../settings/settings-edit.php:89
|
1330 |
+
msgid "Email Type"
|
1331 |
+
msgstr "Tipo email"
|
1332 |
|
1333 |
+
#: ../settings/settings-edit.php:90
|
1334 |
+
msgid ""
|
1335 |
+
"Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
|
1336 |
+
"Option 3 & 4 is to send emails with PHP method mail()."
|
1337 |
+
msgstr ""
|
1338 |
+
"Opzioni 1 e 2 sono per spedire le email con il metodo standard di WordPress "
|
1339 |
+
"wp_mail(). Opzioni 3 e 4 sono per spedire le email con il metodo PHP mail()."
|
1340 |
|
1341 |
+
#: ../settings/settings-edit.php:94
|
1342 |
+
msgid "1. WP HTML MAIL"
|
1343 |
+
msgstr "1. WP HTML MAIL"
|
1344 |
|
1345 |
+
#: ../settings/settings-edit.php:95
|
1346 |
+
msgid "2. WP PLAINTEXT MAIL"
|
1347 |
+
msgstr "2. WP PLAINTEXT MAIL"
|
1348 |
|
1349 |
+
#: ../settings/settings-edit.php:96
|
1350 |
+
msgid "3. PHP HTML MAIL"
|
1351 |
+
msgstr "3. PHP HTML MAIL"
|
1352 |
|
1353 |
+
#: ../settings/settings-edit.php:97
|
1354 |
+
msgid "4. PHP PLAINTEXT MAIL"
|
1355 |
+
msgstr "4. PHP PLAINTEXT MAIL"
|
1356 |
|
1357 |
+
#: ../settings/settings-edit.php:104
|
1358 |
+
msgid "Opt-In Type"
|
1359 |
+
msgstr "Tpo di Opt-in"
|
1360 |
|
1361 |
+
#: ../settings/settings-edit.php:105
|
1362 |
+
msgid ""
|
1363 |
+
"Double Opt-In : In this type, the subscriber is sent an activation link as "
|
1364 |
+
"soon as they subscribe to your list. They have to confirm their subscription "
|
1365 |
+
"by clicking on the activation link.<br />Single Opt-In : In this type, the "
|
1366 |
+
"subscriber is not asked to confirm their email address. They are subscribed "
|
1367 |
+
"directly in the list."
|
1368 |
+
msgstr ""
|
1369 |
+
"Doppio Opt-In: in questo tipo, l'iscritto riceve un link per l'attivazione "
|
1370 |
+
"quando effettua la richiesta di iscrizione. Deve confermare l'iscrizione "
|
1371 |
+
"cliccando sul link di attivazione.<br /<: Singolo Opt-In: in questo tipo "
|
1372 |
+
"all'iscritto non viene rischiesto di confermare l'indirizzo email. Viene "
|
1373 |
+
"iscritto direttamente."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1374 |
|
1375 |
+
#: ../settings/settings-edit.php:109
|
1376 |
+
msgid "Double Opt In"
|
1377 |
+
msgstr "Doppio Opt In"
|
1378 |
|
1379 |
+
#: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-add.php:155 ..
|
1380 |
+
#: subscribers/view-subscriber-edit.php:150 ../subscribers/view-subscriber-
|
1381 |
+
#: import.php:181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-
|
1382 |
+
#: subscriber-show.php:356
|
1383 |
+
msgid "Single Opt In"
|
1384 |
+
msgstr "Singolo Opt In"
|
1385 |
|
1386 |
+
#: ../settings/settings-edit.php:116
|
1387 |
+
msgid "Image Size"
|
1388 |
+
msgstr "Dimesioni immagine"
|
1389 |
|
1390 |
+
#: ../settings/settings-edit.php:117
|
1391 |
+
msgid ""
|
1392 |
+
"Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
|
1393 |
+
"Emails."
|
1394 |
+
msgstr ""
|
1395 |
+
"Seleziona la dimensione dell'immagine per {{POSTIMAGE}} che deve essere "
|
1396 |
+
"visualizzatanelle email di notifica di pubblicazione articoli."
|
1397 |
|
1398 |
+
#: ../settings/settings-edit.php:121
|
1399 |
+
msgid "Full Size"
|
1400 |
+
msgstr "Dimensione intera"
|
1401 |
|
1402 |
+
#: ../settings/settings-edit.php:122
|
1403 |
+
msgid "Medium Size"
|
1404 |
+
msgstr "Dimensione media"
|
1405 |
|
1406 |
+
#: ../settings/settings-edit.php:129
|
1407 |
+
msgid "Admin Email Addresses"
|
1408 |
+
msgstr "Indirizzo email amministratore"
|
|
|
|
|
1409 |
|
1410 |
+
#: ../settings/settings-edit.php:130
|
1411 |
msgid ""
|
1412 |
+
"Enter the admin email addresses that should receive notifications (separated "
|
1413 |
+
"by comma)."
|
|
|
1414 |
msgstr ""
|
1415 |
+
"Inserisci gli indirizzi email dell'amministratore che devono ricevere le "
|
1416 |
+
"notifiche (separati da virgola)"
|
1417 |
+
|
1418 |
+
#: ../settings/settings-edit.php:136
|
1419 |
+
msgid "Notify Admin when a new subscriber signs up"
|
1420 |
+
msgstr "Informa l'Amministratore quando si iscrive un nuovo utente"
|
1421 |
|
1422 |
+
#: ../settings/settings-edit.php:137
|
|
|
1423 |
msgid ""
|
1424 |
+
"To send admin email notifications for the new subscriber. This option must "
|
1425 |
+
"be set to YES."
|
1426 |
msgstr ""
|
1427 |
+
"Per inviare all'admin la notifica di un nuovo iscritto. Questa opzione deve "
|
1428 |
+
"essere su SI."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1429 |
|
1430 |
+
#: ../settings/settings-edit.php:149
|
1431 |
+
msgid "Admin Email Subject on new subscriber sign up"
|
1432 |
+
msgstr "Oggetto dell'email all'Amministratore quando c'è una nuova iscrizione"
|
1433 |
|
1434 |
+
#: ../settings/settings-edit.php:150
|
1435 |
+
msgid ""
|
1436 |
+
"Subject for the admin email whenever a new subscriber signs up and is "
|
1437 |
+
"confirmed."
|
1438 |
+
msgstr ""
|
1439 |
+
"Oggetto dell'email all'Amministrazione quanso un utente si iscrive e "
|
1440 |
+
"conferma."
|
1441 |
|
1442 |
+
#: ../settings/settings-edit.php:156
|
1443 |
+
msgid "Admin Email Content on new subscriber signs up"
|
1444 |
+
msgstr "Contenuto della mail all'Amministratore quando si iscrive un utente."
|
|
|
1445 |
|
1446 |
+
#: ../settings/settings-edit.php:157
|
1447 |
+
msgid ""
|
1448 |
+
"Content for the admin email whenever a new subscriber signs up and is "
|
1449 |
+
"confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
|
1450 |
+
msgstr ""
|
1451 |
+
"Contenuto della mail all'Amministratore quando un utente si iscrive e "
|
1452 |
+
"conferma. <br />Parole chiave disponibili: {{NAME}}, {{EMAIL}}, {{GROUP}}"
|
1453 |
|
1454 |
+
#: ../settings/settings-edit.php:164
|
1455 |
+
msgid "Sent Report Subject"
|
1456 |
+
msgstr "Oggetto del report inviato"
|
1457 |
|
1458 |
+
#: ../settings/settings-edit.php:165
|
1459 |
+
msgid "Subject for the email report which will be sent to admin."
|
1460 |
+
msgstr "Oggetto dell'email di report che viene inviata all'Amministratore."
|
1461 |
|
1462 |
+
#: ../settings/settings-edit.php:171
|
1463 |
+
msgid "Sent Report Content"
|
1464 |
+
msgstr "Contenuto del Report"
|
1465 |
|
1466 |
+
#: ../settings/settings-edit.php:172
|
1467 |
msgid ""
|
1468 |
+
"Content for the email report which will be sent to admin.<br />Available "
|
1469 |
+
"Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
|
|
|
1470 |
msgstr ""
|
1471 |
+
"Contenuto dell'email di Report che viene inviata all'Amministratore.<br "
|
1472 |
+
"/>Parole chiave disponibili: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, "
|
1473 |
+
"{{ENDTIME}}"
|
1474 |
|
1475 |
+
#: ../settings/settings-edit.php:183
|
1476 |
+
msgid "Double Opt-In Email Subject (Confirmation Email)"
|
1477 |
+
msgstr "Oggetto email per il Doppio Opt-In (email di conferma)"
|
1478 |
|
1479 |
+
#: ../settings/settings-edit.php:184
|
1480 |
msgid ""
|
1481 |
+
"Subject for the confirmation email to be sent for Double Opt-In whenever a "
|
1482 |
+
"subscriber signs up."
|
1483 |
msgstr ""
|
1484 |
+
"Oggetto dell'email di conferma che viene inviata all'iscritto in caso di "
|
1485 |
+
"Doppio Opt-In."
|
|
|
|
|
|
|
|
|
1486 |
|
1487 |
+
#: ../settings/settings-edit.php:190
|
1488 |
+
msgid "Double Opt-In Email Content (Confirmation Email)"
|
1489 |
+
msgstr "Contenuto dell'email Doppio Opt-In (email di conferma)"
|
1490 |
|
1491 |
+
#: ../settings/settings-edit.php:191
|
1492 |
msgid ""
|
1493 |
+
"Content for the confirmation email to be sent for Double Opt-In whenever a "
|
1494 |
+
"subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
|
1495 |
msgstr ""
|
1496 |
+
"Contenuto dell'email di conferma che viene inviato all'iscritto in caso di "
|
1497 |
+
"Doppio Opt-In.<br />Parole chiave disponibili: {{NAME}}, {{LINK}}"
|
|
|
|
|
|
|
|
|
1498 |
|
1499 |
+
#: ../settings/settings-edit.php:197
|
1500 |
+
msgid "Double Opt-In Confirmation Link"
|
1501 |
+
msgstr "Link di conferma per Doppio Opt-In"
|
|
|
|
|
1502 |
|
1503 |
+
#: ../settings/settings-edit.php:198
|
1504 |
+
msgid "It is a readonly field and you are advised not to modify it."
|
1505 |
+
msgstr "E' un campo a sola lettura e non lo puoi modificare."
|
1506 |
|
1507 |
+
#: ../settings/settings-edit.php:204
|
1508 |
+
msgid ""
|
1509 |
+
"Text to display after an email address is successfully subscribed from "
|
1510 |
+
"Double Opt-In (Confirmation) Email"
|
1511 |
msgstr ""
|
1512 |
+
"Testo da visualizzare dopo che un indirizzo email iscritto con Doppio Opt-In "
|
1513 |
+
"(Conferma) è stato confermato"
|
1514 |
|
1515 |
+
#: ../settings/settings-edit.php:205
|
1516 |
+
msgid ""
|
1517 |
+
"This text will be displayed once user clicks on email confirmation link from "
|
1518 |
+
"the Double Opt In (confirmation) Email."
|
1519 |
msgstr ""
|
1520 |
+
"Questo testo viene visualizzato dopo che l'utente ha clicca sul link della "
|
1521 |
+
"email ricevuta per il Doppio Opt-In."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1522 |
|
1523 |
+
#: ../settings/settings-edit.php:212
|
1524 |
+
msgid "Send Welcome Email to New Subscribers after Sign Up?"
|
1525 |
+
msgstr "Invia messaggio di benvenuto dopo che l'utente si è iscritto ?"
|
1526 |
|
1527 |
+
#: ../settings/settings-edit.php:213
|
|
|
1528 |
msgid ""
|
1529 |
+
"To send welcome email to subscriber after successful signup. This option "
|
1530 |
+
"must be set to YES."
|
|
|
|
|
|
|
|
|
|
|
1531 |
msgstr ""
|
1532 |
+
"Per inviare una mail di benventuo dopo che l'utente si è iscritto. Questa "
|
1533 |
+
"opzione deve essere su SI."
|
|
|
|
|
|
|
|
|
|
|
|
|
1534 |
|
1535 |
+
#: ../settings/settings-edit.php:224
|
1536 |
+
msgid "Subject for Welcome Email"
|
1537 |
+
msgstr "Oggetto per l'email di benvenuto"
|
1538 |
|
1539 |
+
#: ../settings/settings-edit.php:225
|
1540 |
+
msgid ""
|
1541 |
+
"Subject for the subscriber welcome email. This will be sent whenever a "
|
1542 |
+
"user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
|
1543 |
+
"Opt-In) successfully."
|
1544 |
msgstr ""
|
1545 |
+
"Oggetto per l'email di benvenuto agli iscritti. Viene inviata quando "
|
1546 |
+
"l'utente ha confermato l'iscrizione (se Doppio Opt-In) oppure si è iscritto "
|
1547 |
+
"(Singolo Opt-In)."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1548 |
|
1549 |
+
#: ../settings/settings-edit.php:231
|
1550 |
+
msgid "Email Content for Welcome Email"
|
1551 |
+
msgstr "Contenuto dell'email di benvenuto"
|
1552 |
|
1553 |
+
#: ../settings/settings-edit.php:232
|
1554 |
+
msgid ""
|
1555 |
+
"Content for the subscriber welcome email whenever a user's email is either "
|
1556 |
+
"confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
|
1557 |
+
"<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
|
1558 |
+
msgstr ""
|
1559 |
+
"Contenuto dell'email di benvenuto che viene inviata quando lputente ha "
|
1560 |
+
"confermato l'iscrizione (se Doppio Opt-In) oppure si è iscritto (se Singolo "
|
1561 |
+
"Opt-In)."
|
1562 |
|
1563 |
+
#: ../settings/settings-edit.php:240
|
1564 |
+
msgid "Unsubscribe Link"
|
1565 |
+
msgstr "Link di cancellazione"
|
1566 |
|
1567 |
+
#: ../settings/settings-edit.php:241
|
1568 |
+
msgid ""
|
1569 |
+
"This unsubscribe link is automatically added to all the emails that are sent "
|
1570 |
+
"from this plugin. It is a readonly field and you are advised not to modify "
|
1571 |
+
"it."
|
1572 |
+
msgstr ""
|
1573 |
+
"Questo link di cancellazione viene aggiunto automaticamente alle email "
|
1574 |
+
"inviate con questo plugin. E' un campo a sola lettura e non può essere "
|
1575 |
+
"modificato."
|
1576 |
|
1577 |
+
#: ../settings/settings-edit.php:247
|
1578 |
+
msgid "Unsubscribe Text in Email"
|
1579 |
+
msgstr "Testo Cancellazione nella mail"
|
1580 |
|
1581 |
+
#: ../settings/settings-edit.php:248
|
1582 |
+
msgid ""
|
1583 |
+
"The text for the unsubscribe link. This text is automatically added with "
|
1584 |
+
"unsubscribe link in the emails.<br />Available Keyword: {{LINK}}"
|
1585 |
+
msgstr ""
|
1586 |
+
"Il testo per il link di cancellazione. Questo testo viene aggiunto "
|
1587 |
+
"automaticamente alle email.<br />Parole Chiave disponibili: {{LINK}}"
|
1588 |
|
1589 |
+
#: ../settings/settings-edit.php:254
|
1590 |
+
msgid "Text to display after an email address is unsubscribed"
|
1591 |
+
msgstr "Testo da visualizzare dopo che l'indirizzo email è stato disiscritto"
|
1592 |
|
1593 |
+
#: ../settings/settings-edit.php:255
|
1594 |
+
msgid ""
|
1595 |
+
"This text will be displayed once user clicks on unsubscribe link from the "
|
1596 |
+
"email."
|
1597 |
msgstr ""
|
1598 |
+
"Questo testo viene visualizzato quando l'utente clicca sul link di "
|
1599 |
+
"cancellazione."
|
|
|
|
|
|
|
|
|
1600 |
|
1601 |
+
#: ../settings/settings-edit.php:262
|
1602 |
+
msgid "Error in the Subscribe / Confirmation Link"
|
1603 |
+
msgstr "Errore nel link di Cancellazione/Conferma"
|
1604 |
|
1605 |
+
#: ../settings/settings-edit.php:263
|
1606 |
+
msgid ""
|
1607 |
+
"Default message to display if there is any issue while clicking on subscribe "
|
1608 |
+
"/ confirmation link from the Double Opt-In (Confirmation) emails."
|
1609 |
+
msgstr ""
|
1610 |
+
"Messaggio standard da visualizzare se si verifica un problema nel link di "
|
1611 |
+
"Conferma / Cancellazione presente nella email in caso di Doppio Opt-In."
|
1612 |
|
1613 |
+
#: ../settings/settings-edit.php:269
|
1614 |
+
msgid "Error in the Unsubscribe Link"
|
1615 |
+
msgstr "Errore nel link di Cancellazione"
|
1616 |
|
1617 |
+
#: ../settings/settings-edit.php:270
|
1618 |
+
msgid ""
|
1619 |
+
"Default message to display if there is any issue while clicking on "
|
1620 |
+
"unsubscribe link from the emails."
|
1621 |
+
msgstr ""
|
1622 |
+
"Messaggio standard da visualizzare se si verifica un problema nel link di "
|
1623 |
+
"cancellazione presente nelle email. "
|
1624 |
|
1625 |
+
#: ../settings/settings-edit.php:282
|
1626 |
+
msgid "Select user roles who can access following menus. Only Admin can change this."
|
1627 |
+
msgstr ""
|
1628 |
+
"Seleziona il ruolo degli utenti che hanno accesso ai menu. Solo "
|
1629 |
+
"l'Amministratore può modificare questo."
|
1630 |
|
1631 |
+
#: ../settings/settings-edit.php:288
|
1632 |
+
msgid "Subscribers Menu"
|
1633 |
+
msgstr "Menu Iscritti"
|
1634 |
|
1635 |
+
#: ../settings/settings-edit.php:292 ../settings/settings-edit.php:304 ..
|
1636 |
+
#: settings/settings-edit.php:316 ../settings/settings-edit.php:328 ..
|
1637 |
+
#: settings/settings-edit.php:340
|
1638 |
+
msgid "Administrator Only"
|
1639 |
+
msgstr "Solo Amministratore"
|
1640 |
|
1641 |
+
#: ../settings/settings-edit.php:293 ../settings/settings-edit.php:305 ..
|
1642 |
+
#: settings/settings-edit.php:317 ../settings/settings-edit.php:329 ..
|
1643 |
+
#: settings/settings-edit.php:341
|
1644 |
+
msgid "Administrator/Editor"
|
1645 |
+
msgstr "Amministratore/Editor"
|
1646 |
|
1647 |
+
#: ../settings/settings-edit.php:294 ../settings/settings-edit.php:306 ..
|
1648 |
+
#: settings/settings-edit.php:318 ../settings/settings-edit.php:330 ..
|
1649 |
+
#: settings/settings-edit.php:342
|
1650 |
+
msgid "Administrator/Editor/Author/Contributor"
|
1651 |
+
msgstr "Amministratore/Editor/Autore/Contributore"
|
1652 |
|
1653 |
+
#: ../settings/settings-edit.php:300
|
1654 |
+
msgid "Templates Menu"
|
1655 |
+
msgstr "Menu Modelli"
|
1656 |
|
1657 |
+
#: ../settings/settings-edit.php:312
|
1658 |
+
msgid "Post Notifications Menu"
|
1659 |
+
msgstr "Menu Notifiche Post"
|
1660 |
|
1661 |
+
#: ../settings/settings-edit.php:336
|
1662 |
+
msgid "Reports Menu"
|
1663 |
+
msgstr "Menu Rapporti"
|
1664 |
|
1665 |
+
#: ../settings/settings-edit.php:353
|
1666 |
+
msgid "Cron job URL"
|
1667 |
+
msgstr "URL del Cron Job"
|
1668 |
|
1669 |
+
#: ../settings/settings-edit.php:354
|
1670 |
msgid ""
|
1671 |
+
"This is your Cron Job URL. It is a readonly field and you are advised not to "
|
1672 |
+
"modify it."
|
1673 |
msgstr ""
|
1674 |
+
"Questo è il tuo URL per il Cron Job. E' un campo a sola lettura e non può "
|
1675 |
+
"essere modificato."
|
1676 |
|
1677 |
+
#: ../settings/settings-edit.php:363
|
1678 |
+
msgid "Email Count"
|
1679 |
+
msgstr "Numero di Email"
|
1680 |
|
1681 |
+
#: ../settings/settings-edit.php:364
|
1682 |
+
msgid "Number of emails that you want to trigger per hour."
|
1683 |
+
msgstr "Nuomero di email che vuoi spedire all'ora."
|
1684 |
|
1685 |
+
#: ../settings/settings-edit.php:369
|
1686 |
+
msgid "(Your web host has limits. We suggest 50 emails per hour to be safe.)"
|
1687 |
+
msgstr "(Il tuo sito web ha dei limiti. Ti suggerisco 50 email all'ora per sicurezza)"
|
1688 |
|
1689 |
+
#: ../settings/settings-edit.php:374
|
1690 |
+
msgid "Cron Report"
|
1691 |
+
msgstr "Rapporto del Cron"
|
|
|
|
|
|
|
|
|
1692 |
|
1693 |
+
#: ../settings/settings-edit.php:375
|
1694 |
msgid ""
|
1695 |
+
"Email to admin whenever a cron URL is triggered from your server.<br "
|
1696 |
+
"/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
|
1697 |
msgstr ""
|
1698 |
+
"Invia email all'Amministratore quando un cron viene gestito dal server<br />."
|
1699 |
+
" Parole chiave disponibili: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
|
|
|
|
|
|
|
|
|
|
|
1700 |
|
1701 |
+
#: ../settings/settings-edit.php:385
|
1702 |
+
msgid "What is Cron (auto emails) and how to setup Cron Job?"
|
1703 |
+
msgstr "Che cos'è un Cron (invio email automatico) e come configurare un Cron Job ?"
|
1704 |
|
1705 |
+
#: ../settings/settings-edit.php:386
|
1706 |
+
msgid ""
|
1707 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
1708 |
+
"schedule-cron-emails/?"
|
1709 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">What is "
|
1710 |
+
"Cron?</a>"
|
1711 |
+
msgstr ""
|
1712 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
1713 |
+
"schedule-cron-emails/?"
|
1714 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Che cos'è "
|
1715 |
+
"Cron?</a>"
|
1716 |
|
1717 |
+
#: ../settings/settings-edit.php:387
|
1718 |
+
msgid ""
|
1719 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
1720 |
+
"schedule-cron-emails-in-cpanel/?"
|
1721 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
|
1722 |
+
"job in cPanel</a>"
|
1723 |
+
msgstr ""
|
1724 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
1725 |
+
"schedule-cron-emails-in-cpanel/?"
|
1726 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configura "
|
1727 |
+
"un cron job in cPanel</a>"
|
1728 |
|
1729 |
+
#: ../settings/settings-edit.php:388
|
1730 |
msgid ""
|
1731 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
1732 |
+
"schedule-cron-emails-in-parallels-plesk/?"
|
1733 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
|
1734 |
+
"job in Plesk</a>"
|
1735 |
msgstr ""
|
1736 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
1737 |
+
"schedule-cron-emails-in-parallels-plesk/?"
|
1738 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Configura "
|
1739 |
+
"un cron job in Plesk</a>"
|
1740 |
|
1741 |
+
#: ../settings/settings-edit.php:389
|
1742 |
msgid ""
|
1743 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
|
1744 |
+
"if-hosting-doesnt-support-cron-jobs/?"
|
1745 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
|
1746 |
+
"does not support cron jobs?</a>"
|
1747 |
msgstr ""
|
1748 |
+
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
|
1749 |
+
"if-hosting-doesnt-support-cron-jobs/?"
|
1750 |
+
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Il tuo "
|
1751 |
+
"Hosting non supporta i cron job ?</a>"
|
1752 |
|
1753 |
+
#: ../settings/settings-edit.php:504
|
1754 |
+
msgid "Please enter sender of notifications from name."
|
1755 |
+
msgstr "Inserisci il nome del mittente delle notifiche."
|
1756 |
|
1757 |
+
#: ../settings/settings-edit.php:509
|
1758 |
+
msgid "Please enter sender of notifications from email."
|
1759 |
+
msgstr "Inserisci l'email del mittente delle notifiche."
|
1760 |
|
1761 |
+
#: ../settings/settings-edit.php:553
|
1762 |
+
msgid "Please enter valid mail count."
|
1763 |
+
msgstr "Inserisci un numero valido di email."
|
1764 |
|
1765 |
+
#: ../settings/settings-edit.php:566
|
1766 |
+
msgid "Settings Saved."
|
1767 |
+
msgstr "Configurazione salvata."
|
1768 |
|
1769 |
+
#: ../settings/settings-edit.php:569
|
1770 |
+
msgid "Oops, unable to update."
|
1771 |
+
msgstr "Oops, impossibile aggiornare."
|
1772 |
|
1773 |
+
#: ../subscribers/view-subscriber-add.php:39 ../subscribers/view-subscriber-edit.
|
1774 |
+
#: php:54
|
1775 |
+
msgid "Please enter subscriber email address."
|
1776 |
+
msgstr "Inserisci l'indirizzo email dell'iscritto."
|
1777 |
|
1778 |
+
#: ../subscribers/view-subscriber-add.php:52
|
1779 |
+
msgid "Please select or create your group for this email."
|
1780 |
+
msgstr "Scegli o crea un gruppo per questa email."
|
1781 |
|
1782 |
+
#: ../subscribers/view-subscriber-add.php:59
|
1783 |
+
msgid ""
|
1784 |
+
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1785 |
+
"the group name."
|
1786 |
+
msgstr ""
|
1787 |
+
"Errore: i caratteri speciali (['^$%&*()}{@#~?><>,|=_+\\\"]) non sono "
|
1788 |
+
"utilizzabili nel nome del gruppo."
|
1789 |
|
1790 |
+
#: ../subscribers/view-subscriber-add.php:69
|
1791 |
+
msgid "Subscriber has been saved."
|
1792 |
+
msgstr "L'iscritto è stato registrato."
|
1793 |
|
1794 |
+
#: ../subscribers/view-subscriber-add.php:71
|
1795 |
+
msgid "Subscriber already exists."
|
1796 |
+
msgstr "L'iscritto esiste già."
|
1797 |
|
1798 |
+
#: ../subscribers/view-subscriber-add.php:74
|
1799 |
+
msgid "Invalid Email."
|
1800 |
+
msgstr "Email non valida."
|
1801 |
|
1802 |
+
#: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
|
1803 |
+
#: php:109 ../subscribers/view-subscriber-export.php:48 ../subscribers/view-
|
1804 |
+
#: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
|
1805 |
+
#: subscribers/view-subscriber-sync.php:89
|
1806 |
+
msgid "Add New Subscriber"
|
1807 |
+
msgstr "Aggiungi nuovo iscritto"
|
1808 |
|
1809 |
+
#: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
|
1810 |
+
#: php:110 ../subscribers/view-subscriber-export.php:49 ../subscribers/view-
|
1811 |
+
#: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
|
1812 |
+
#: subscribers/view-subscriber-sync.php:90
|
1813 |
+
msgid "Import"
|
1814 |
+
msgstr "Importa"
|
1815 |
|
1816 |
+
#: ../subscribers/view-subscriber-add.php:116 ../subscribers/view-subscriber-edit.
|
1817 |
+
#: php:111 ../subscribers/view-subscriber-import.php:147 ../subscribers/view-
|
1818 |
+
#: subscriber-show.php:245 ../subscribers/view-subscriber-sync.php:91
|
1819 |
+
msgid "Export"
|
1820 |
+
msgstr "Esporta"
|
1821 |
|
1822 |
+
#: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
|
1823 |
+
#: php:112 ../subscribers/view-subscriber-export.php:50 ../subscribers/view-
|
1824 |
+
#: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
|
1825 |
+
#: subscribers/view-subscriber-sync.php:143
|
1826 |
+
msgid "Sync"
|
1827 |
+
msgstr "Sincronizza"
|
|
|
|
|
|
|
1828 |
|
1829 |
+
#: ../subscribers/view-subscriber-add.php:127
|
1830 |
+
msgid "Enter Subscriber's Full name"
|
1831 |
+
msgstr "Inserisci il nome dell'iscritto."
|
1832 |
|
1833 |
+
#: ../subscribers/view-subscriber-add.php:137
|
1834 |
+
msgid "Enter Subscriber's Email Address"
|
1835 |
+
msgstr "Insrisci l'indirizzo mail dell'iscritto"
|
1836 |
|
1837 |
+
#: ../subscribers/view-subscriber-add.php:147
|
1838 |
+
msgid "Select Subscriber's Status"
|
1839 |
+
msgstr "Seleziona lo stato degli Iscritti"
|
1840 |
|
1841 |
+
#: ../subscribers/view-subscriber-add.php:152 ../subscribers/view-subscriber-edit.
|
1842 |
+
#: php:147 ../subscribers/view-subscriber-import.php:178 ../subscribers/view-
|
1843 |
+
#: subscriber-show.php:323 ../subscribers/view-subscriber-show.php:353
|
1844 |
+
msgid "Confirmed"
|
1845 |
+
msgstr "Confermato"
|
1846 |
|
1847 |
+
#: ../subscribers/view-subscriber-add.php:153 ../subscribers/view-subscriber-edit.
|
1848 |
+
#: php:148 ../subscribers/view-subscriber-import.php:179 ../subscribers/view-
|
1849 |
+
#: subscriber-show.php:324 ../subscribers/view-subscriber-show.php:354
|
1850 |
+
msgid "Unconfirmed"
|
1851 |
+
msgstr "Non Confermato"
|
1852 |
|
1853 |
+
#: ../subscribers/view-subscriber-add.php:154 ../subscribers/view-subscriber-edit.
|
1854 |
+
#: php:149 ../subscribers/view-subscriber-import.php:180 ../subscribers/view-
|
1855 |
+
#: subscriber-show.php:325 ../subscribers/view-subscriber-show.php:355
|
1856 |
+
msgid "Unsubscribed"
|
1857 |
+
msgstr "Disiscritto"
|
1858 |
+
|
1859 |
+
#: ../subscribers/view-subscriber-add.php:162
|
1860 |
+
msgid "Select (or) Create Group for Subscriber"
|
1861 |
+
msgstr "Seleziona o Crea un Gruppo per l'iscritto"
|
1862 |
+
|
1863 |
+
#: ../subscribers/view-subscriber-add.php:178 ../subscribers/view-subscriber-
|
1864 |
+
#: import.php:205
|
1865 |
+
msgid "(or)"
|
1866 |
+
msgstr "(o)"
|
1867 |
+
|
1868 |
+
#: ../subscribers/view-subscriber-add.php:187
|
1869 |
+
msgid "Add Subscriber"
|
1870 |
+
msgstr "Aggiungi Iscritto"
|
1871 |
|
1872 |
+
#: ../subscribers/view-subscriber-edit.php:64
|
1873 |
+
msgid "Error: Special characters are not allowed in the group name."
|
1874 |
+
msgstr "Errore: I caratteri speciali non sono ammessi nel nome del gruppo."
|
1875 |
|
1876 |
+
#: ../subscribers/view-subscriber-edit.php:74
|
1877 |
+
msgid "Subscriber details updated."
|
1878 |
+
msgstr "Dettagli Iscritto aggiornati."
|
1879 |
|
1880 |
+
#: ../subscribers/view-subscriber-edit.php:76
|
1881 |
+
msgid "Subscriber already exists for this group."
|
1882 |
+
msgstr "L'iscritto esiste già in questo gruppo."
|
1883 |
|
1884 |
+
#: ../subscribers/view-subscriber-edit.php:108
|
1885 |
+
msgid "Edit Subscriber"
|
1886 |
+
msgstr "Modifica Iscritto"
|
1887 |
|
1888 |
+
#: ../subscribers/view-subscriber-edit.php:122
|
1889 |
+
msgid "Subscriber's Full Name"
|
1890 |
+
msgstr "Nome Completo Iscritto"
|
1891 |
|
1892 |
+
#: ../subscribers/view-subscriber-edit.php:132
|
1893 |
+
msgid "Subscriber's Email Address"
|
1894 |
+
msgstr "Indirizzo Email Iscritto"
|
1895 |
|
1896 |
+
#: ../subscribers/view-subscriber-edit.php:142
|
1897 |
+
msgid "Update Subscriber's Status"
|
1898 |
+
msgstr "Aggiorna lo Status dell'Iscritto"
|
1899 |
|
1900 |
+
#: ../subscribers/view-subscriber-edit.php:157
|
1901 |
+
msgid "Update Subscriber's Group"
|
1902 |
+
msgstr "Aggiorna il Gruppo dell'Iscritto"
|
|
|
1903 |
|
1904 |
+
#: ../subscribers/view-subscriber-export.php:47
|
1905 |
+
msgid "Export Email Addresses"
|
1906 |
+
msgstr "Esporta indirizzi email"
|
|
|
1907 |
|
1908 |
+
#: ../subscribers/view-subscriber-export.php:59 ../subscribers/view-subscriber-
|
1909 |
+
#: export.php:67
|
1910 |
+
msgid "Type of List to Export"
|
1911 |
+
msgstr "Tipo di lista per esportazione"
|
1912 |
|
1913 |
+
#: ../subscribers/view-subscriber-export.php:60 ../subscribers/view-subscriber-
|
1914 |
+
#: export.php:68
|
1915 |
+
msgid "Total Emails Count"
|
1916 |
+
msgstr "Totale email"
|
1917 |
|
1918 |
+
#: ../subscribers/view-subscriber-export.php:74
|
1919 |
+
msgid "1"
|
1920 |
+
msgstr "1"
|
|
|
1921 |
|
1922 |
+
#: ../subscribers/view-subscriber-export.php:75
|
1923 |
+
msgid "All Subscribers"
|
1924 |
+
msgstr "Tutti gli iscritti"
|
|
|
1925 |
|
1926 |
+
#: ../subscribers/view-subscriber-export.php:77 ../subscribers/view-subscriber-
|
1927 |
+
#: export.php:83 ../subscribers/view-subscriber-export.php:89 ../subscribers/view-
|
1928 |
+
#: subscriber-export.php:95 ../subscribers/view-subscriber-export.php:101
|
1929 |
+
msgid "Click to Export in CSV"
|
1930 |
+
msgstr "Clicca per esportare in CSV"
|
1931 |
|
1932 |
+
#: ../subscribers/view-subscriber-export.php:80
|
1933 |
+
msgid "2"
|
1934 |
+
msgstr "2"
|
|
|
1935 |
|
1936 |
+
#: ../subscribers/view-subscriber-export.php:81
|
1937 |
+
msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
|
1938 |
+
msgstr "Iscritti attivi (Stato: Confermato e singolo Opt In)"
|
|
|
1939 |
|
1940 |
+
#: ../subscribers/view-subscriber-export.php:86
|
1941 |
+
msgid "3"
|
1942 |
+
msgstr "3"
|
|
|
1943 |
|
1944 |
+
#: ../subscribers/view-subscriber-export.php:87
|
1945 |
+
msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
|
1946 |
+
msgstr "Utenti inattivi (Stato: Non confermato e Disiscritto)"
|
|
|
|
|
|
|
|
|
|
|
1947 |
|
1948 |
+
#: ../subscribers/view-subscriber-export.php:92
|
1949 |
+
msgid "4"
|
1950 |
+
msgstr "4"
|
|
|
1951 |
|
1952 |
+
#: ../subscribers/view-subscriber-export.php:93
|
1953 |
+
msgid "WordPress Registered Users"
|
1954 |
+
msgstr "Utenti registrati WordPress"
|
|
|
1955 |
|
1956 |
+
#: ../subscribers/view-subscriber-export.php:98
|
1957 |
+
msgid "5"
|
1958 |
+
msgstr "5"
|
|
|
1959 |
|
1960 |
+
#: ../subscribers/view-subscriber-export.php:99
|
1961 |
+
msgid "Commented Authors"
|
1962 |
+
msgstr "Autori commentati"
|
|
|
1963 |
|
1964 |
+
#: ../subscribers/view-subscriber-import.php:45
|
|
|
1965 |
msgid ""
|
1966 |
+
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1967 |
+
"the Group name."
|
1968 |
msgstr ""
|
1969 |
+
"Errore: i caratteri speciali (['^$%&*()}{@#~?><>,|=_+\\\"]) non sono "
|
1970 |
+
"utilizzabili nel nome del Gruppo."
|
|
|
|
|
|
|
|
|
|
|
1971 |
|
1972 |
+
#: ../subscribers/view-subscriber-import.php:95
|
1973 |
+
msgid "email imported."
|
1974 |
+
msgstr "email importate."
|
|
|
|
|
|
|
1975 |
|
1976 |
+
#: ../subscribers/view-subscriber-import.php:96
|
1977 |
+
msgid "email already exists."
|
1978 |
+
msgstr "email già presenti."
|
|
|
1979 |
|
1980 |
+
#: ../subscribers/view-subscriber-import.php:97
|
1981 |
+
msgid "email are invalid."
|
1982 |
+
msgstr "email non valida."
|
|
|
1983 |
|
1984 |
+
#: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
|
1985 |
+
#: import.php:129
|
1986 |
+
msgid "Click here"
|
1987 |
+
msgstr "Clicca qui"
|
1988 |
|
1989 |
+
#: ../subscribers/view-subscriber-import.php:108
|
1990 |
+
msgid "File Upload Failed."
|
1991 |
+
msgstr "Invio file non riuscito."
|
|
|
1992 |
|
1993 |
+
#: ../subscribers/view-subscriber-import.php:145
|
1994 |
+
msgid "Import Email Addresses"
|
1995 |
+
msgstr "Importa indirizzi email"
|
|
|
|
|
|
|
1996 |
|
1997 |
+
#: ../subscribers/view-subscriber-import.php:158
|
1998 |
+
msgid "Select CSV file"
|
1999 |
+
msgstr "Seleziona il file CSV"
|
|
|
2000 |
|
2001 |
+
#: ../subscribers/view-subscriber-import.php:160
|
2002 |
+
msgid "Check CSV structure "
|
2003 |
+
msgstr "Controllo struttura CSV"
|
|
|
2004 |
|
2005 |
+
#: ../subscribers/view-subscriber-import.php:161
|
2006 |
+
msgid "from here"
|
2007 |
+
msgstr "da qui"
|
|
|
2008 |
|
2009 |
+
#: ../subscribers/view-subscriber-import.php:172
|
2010 |
+
msgid "Select Subscribers Email Status"
|
2011 |
+
msgstr "Seleziona lo status degli iscritti"
|
|
|
2012 |
|
2013 |
+
#: ../subscribers/view-subscriber-import.php:188
|
2014 |
+
msgid "Select (or) Create Group for Subscribers"
|
2015 |
+
msgstr "Seleziona o Crea un gruppo di Iscritti"
|
|
|
2016 |
|
2017 |
+
#: ../subscribers/view-subscriber-show.php:45
|
2018 |
+
msgid "Selected details does not exists."
|
2019 |
+
msgstr "I dettagli selezionati non esistono."
|
|
|
2020 |
|
2021 |
+
#: ../subscribers/view-subscriber-show.php:56 ../subscribers/view-subscriber-show.
|
2022 |
+
#: php:95
|
2023 |
+
msgid "Record deleted."
|
2024 |
+
msgstr "Record cancellato."
|
2025 |
|
2026 |
+
#: ../subscribers/view-subscriber-show.php:67
|
2027 |
+
msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
|
2028 |
+
msgstr "Per inviare l'email di conferma, cambiare l'opzione Op-In in Doppio Opt-In."
|
|
|
2029 |
|
2030 |
+
#: ../subscribers/view-subscriber-show.php:100 ../subscribers/view-subscriber-
|
2031 |
+
#: show.php:139 ../subscribers/view-subscriber-show.php:178 ../subscribers/view-
|
2032 |
+
#: subscriber-show.php:217
|
2033 |
+
msgid "No record was selected."
|
2034 |
+
msgstr "Nessun record selezionato."
|
2035 |
|
2036 |
+
#: ../subscribers/view-subscriber-show.php:115
|
2037 |
+
msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
|
2038 |
+
msgstr "Per inviare l'email di conferma cambiare l'opzione Op-In in Doppio Opt-In."
|
|
|
2039 |
|
2040 |
+
#: ../subscribers/view-subscriber-show.php:164
|
2041 |
+
msgid "Subscribers Group updated."
|
2042 |
+
msgstr "Gruppo Iscritti aggiornato."
|
|
|
2043 |
|
2044 |
+
#: ../subscribers/view-subscriber-show.php:169
|
2045 |
+
msgid "Please select New group to update."
|
2046 |
+
msgstr "Seleziona un gruppo da aggiornare."
|
|
|
2047 |
|
2048 |
+
#: ../subscribers/view-subscriber-show.php:203
|
2049 |
+
msgid "Subscribers Status updated."
|
2050 |
+
msgstr "Stato Iscritti aggiornato."
|
|
|
2051 |
|
2052 |
+
#: ../subscribers/view-subscriber-show.php:208
|
2053 |
+
msgid "Please select New Status to update."
|
2054 |
+
msgstr "Seleziona il nuovo stato."
|
|
|
2055 |
|
2056 |
+
#: ../subscribers/view-subscriber-show.php:256
|
2057 |
+
msgid "Total Subscribers: "
|
2058 |
+
msgstr "Totale Iscritti:"
|
|
|
2059 |
|
2060 |
+
#: ../subscribers/view-subscriber-show.php:258
|
2061 |
+
#, php-format
|
2062 |
+
msgid "Active Subscribers: %s"
|
2063 |
+
msgstr "Iscritti attivi: %s"
|
2064 |
|
2065 |
+
#: ../subscribers/view-subscriber-show.php:288
|
2066 |
+
msgid "Email Address"
|
2067 |
+
msgstr "Indirizzo email"
|
|
|
2068 |
|
2069 |
+
#: ../subscribers/view-subscriber-show.php:291
|
2070 |
+
msgid "Group"
|
2071 |
+
msgstr "Gruppo"
|
|
|
2072 |
|
2073 |
+
#: ../subscribers/view-subscriber-show.php:292
|
2074 |
+
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
2075 |
+
msgstr "Data/ora iscrizione (A-M-D O:M:S)"
|
|
|
2076 |
|
2077 |
+
#: ../subscribers/view-subscriber-show.php:300
|
2078 |
+
msgid "Bulk Actions"
|
2079 |
+
msgstr "Azioni massive"
|
|
|
2080 |
|
2081 |
+
#: ../subscribers/view-subscriber-show.php:302 ../subscribers/view-subscriber-
|
2082 |
+
#: show.php:413
|
2083 |
+
msgid "Resend Confirmation"
|
2084 |
+
msgstr "Reinvia conferma"
|
2085 |
|
2086 |
+
#: ../subscribers/view-subscriber-show.php:304
|
2087 |
+
msgid "Update Subscribers Status"
|
2088 |
+
msgstr "Aggiorna status iscritti"
|
|
|
2089 |
|
2090 |
+
#: ../subscribers/view-subscriber-show.php:307
|
2091 |
+
msgid "Select Group"
|
2092 |
+
msgstr "Seleziona gruppo"
|
|
|
2093 |
|
2094 |
+
#: ../subscribers/view-subscriber-show.php:322
|
2095 |
+
msgid "Select Status"
|
2096 |
+
msgstr "Seleziona stato"
|
|
|
2097 |
|
2098 |
+
#: ../subscribers/view-subscriber-show.php:328
|
2099 |
+
msgid "Apply"
|
2100 |
+
msgstr "Applica"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2101 |
|
2102 |
+
#: ../subscribers/view-subscriber-show.php:335
|
2103 |
+
msgid "All Groups"
|
2104 |
+
msgstr "Tutti i gruppi"
|
|
|
2105 |
|
2106 |
+
#: ../subscribers/view-subscriber-show.php:352
|
2107 |
+
msgid "All Status"
|
2108 |
+
msgstr "Tutti gli status"
|
2109 |
|
2110 |
+
#: ../subscribers/view-subscriber-show.php:359
|
2111 |
+
msgid "1 to 500 emails"
|
2112 |
+
msgstr "1 - 500 email"
|
2113 |
|
2114 |
+
#: ../subscribers/view-subscriber-show.php:360
|
2115 |
+
msgid "501 to 1000"
|
2116 |
+
msgstr "501 - 1000 email"
|
2117 |
|
2118 |
+
#: ../subscribers/view-subscriber-show.php:361
|
2119 |
+
msgid "1001 to 1500"
|
2120 |
+
msgstr "1001 - 1500 email"
|
2121 |
|
2122 |
+
#: ../subscribers/view-subscriber-show.php:362
|
2123 |
+
msgid "1501 to 2000"
|
2124 |
+
msgstr "1501 - 2000 email"
|
2125 |
|
2126 |
+
#: ../subscribers/view-subscriber-show.php:363
|
2127 |
+
msgid "2001 to 4000"
|
2128 |
+
msgstr "2001 - 4000 email"
|
2129 |
|
2130 |
+
#: ../subscribers/view-subscriber-show.php:364
|
2131 |
+
msgid "4001 to 6000"
|
2132 |
+
msgstr "4001 - 6000 email"
|
2133 |
|
2134 |
+
#: ../subscribers/view-subscriber-show.php:365
|
2135 |
+
msgid "6001 to 10000"
|
2136 |
+
msgstr "6001 - 10000 email"
|
2137 |
|
2138 |
+
#: ../subscribers/view-subscriber-show.php:366
|
2139 |
+
msgid "Display All"
|
2140 |
+
msgstr "Visualizza tutto"
|
2141 |
|
2142 |
+
#: ../subscribers/view-subscriber-sync.php:36
|
2143 |
+
msgid "Please select default group to newly registered user."
|
2144 |
+
msgstr "Scegli il gruppo standard per le nuove registrazioni."
|
2145 |
|
2146 |
+
#: ../subscribers/view-subscriber-sync.php:50
|
2147 |
+
msgid "Emails Successfully Synced."
|
2148 |
+
msgstr "Email sincronizzate con successo."
|
2149 |
|
2150 |
+
#: ../subscribers/view-subscriber-sync.php:88
|
2151 |
+
msgid "Sync Email"
|
2152 |
+
msgstr "Sincronizza Email"
|
2153 |
|
2154 |
+
#: ../subscribers/view-subscriber-sync.php:101
|
2155 |
+
msgid "Sync newly registered users to subscribers list"
|
2156 |
+
msgstr "Sincronizza i nuovi iscritti alle liste di iscrizione"
|
2157 |
|
2158 |
+
#: ../subscribers/view-subscriber-sync.php:114
|
2159 |
+
msgid "Select group to add newly registered users to"
|
2160 |
+
msgstr "Seleziona il gruppo dove aggiungere le nuove iscrizioni"
|
2161 |
|
2162 |
+
#: ../templates/template-preview.php:31
|
2163 |
+
msgid "Template Preview"
|
2164 |
msgstr "Anteprima Modello"
|
2165 |
|
2166 |
+
#: ../templates/template-preview.php:39
|
2167 |
+
msgid "This is how your email may look."
|
2168 |
+
msgstr "Questa è la visualizzazione della tua email."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2169 |
|
2170 |
+
#: ../templates/template-preview.php:41
|
2171 |
+
msgid ""
|
2172 |
+
"<br><br>This Post Notification preview has replaced keywords from your last "
|
2173 |
+
"published blog post."
|
2174 |
+
msgstr "<br><br>Questa anteprima di notifica post ha parole chiave sostituite."
|
2175 |
|
2176 |
+
#: ../templates/template-preview.php:43
|
2177 |
+
msgid ""
|
2178 |
+
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
2179 |
+
"content differently. So there could be a slight variation on how your "
|
2180 |
+
"customer will view the email content."
|
2181 |
+
msgstr ""
|
2182 |
+
"Nota: servizi email diversi (gmail yahoo, eccetera) potrebbero visualizzarla "
|
2183 |
+
"in modo diverso. Quindi potrebbe esserci una leggera variazione sul modo in "
|
2184 |
+
"cui il cliente visualizzerà il contenuto dell'email."
|
2185 |
|
2186 |
+
#. Plugin Name of the plugin/theme
|
2187 |
+
msgid "Email Subscribers & Newsletters"
|
2188 |
+
msgstr "Iscritti email & Newsletter"
|
2189 |
|
2190 |
+
#. URI of the plugin
|
2191 |
+
msgid "https://www.icegram.com"
|
2192 |
+
msgstr "https://www.icegram.com"
|
2193 |
|
2194 |
+
#. Description of the plugin/theme
|
2195 |
+
msgid ""
|
2196 |
+
"Add subscription forms on website, send HTML newsletters & automatically "
|
2197 |
+
"notify subscribers about new blog posts once it is published."
|
2198 |
+
msgstr ""
|
2199 |
+
"Aggiungi un modulo di iscrizione al sito, invia email in HTML e aggiorna "
|
2200 |
+
"automaticamente gli iscritti quando viene aggiunto un nuovo articolo."
|
2201 |
|
2202 |
+
#: ../email-subscribers.php:95
|
2203 |
+
msgctxt "timezone date format"
|
2204 |
+
msgid "Y-m-d H:i:s"
|
2205 |
+
msgstr "A-m-g O:m:s"
|
languages/email-subscribers-lt_LT.mo
CHANGED
Binary file
|
languages/email-subscribers-lt_LT.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.4.
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Lithuanian\n"
|
@@ -25,380 +25,228 @@ msgstr ""
|
|
25 |
"X-Loco-Target-Locale: lt_LT\n"
|
26 |
"X-Loco-Parser: loco_parse_po"
|
27 |
|
28 |
-
#: ../
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
33 |
-
#: 164
|
34 |
-
msgid "(Use templates menu to create new)"
|
35 |
msgstr ""
|
36 |
|
37 |
-
|
38 |
-
msgid "
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: ../
|
42 |
-
msgctxt "
|
43 |
-
msgid "
|
|
|
|
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: ../
|
47 |
-
|
|
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: ../
|
|
|
51 |
msgid ""
|
52 |
-
"
|
53 |
-
"
|
|
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: ../
|
57 |
-
|
|
|
|
|
|
|
|
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: ../
|
61 |
msgid ""
|
62 |
-
"
|
63 |
-
"
|
64 |
-
"by clicking on the activation link.<br />Single Opt-In : In this type, the "
|
65 |
-
"subscriber is not asked to confirm their email address. They are subscribed "
|
66 |
-
"directly in the list."
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: ../
|
70 |
-
msgid ""
|
71 |
-
"Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
|
72 |
-
"Emails."
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: ../
|
76 |
-
msgid "
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: ../
|
80 |
-
|
|
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: ../
|
84 |
-
msgid ""
|
85 |
-
"Subject for the admin email whenever a new subscriber signs up and is "
|
86 |
-
"confirmed."
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: ../
|
90 |
-
msgid "
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: ../
|
94 |
-
msgid ""
|
95 |
-
"Content for the admin email whenever a new subscriber signs up and is "
|
96 |
-
"confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: ../
|
100 |
-
msgid "
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: ../
|
104 |
-
msgid ""
|
105 |
-
"Content for the email report which will be sent to admin.<br />Available "
|
106 |
-
"Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: ../
|
110 |
-
msgid "
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: ../
|
114 |
-
msgid ""
|
115 |
-
"Subject for the confirmation email to be sent for Double Opt-In whenever a "
|
116 |
-
"subscriber signs up."
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: ../
|
120 |
-
msgid "
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: ../
|
124 |
-
msgid ""
|
125 |
-
"Content for the confirmation email to be sent for Double Opt-In whenever a "
|
126 |
-
"subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: ../
|
130 |
-
msgid "
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: ../
|
134 |
-
msgid ""
|
135 |
-
"Text to display after an email address is successfully subscribed from "
|
136 |
-
"Double Opt-In (Confirmation) Email"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: ../
|
140 |
-
msgid "
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: ../
|
144 |
-
msgid "
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: ../
|
|
|
148 |
msgid ""
|
149 |
-
"
|
150 |
-
"
|
151 |
-
"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: ../
|
155 |
-
|
|
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: ../
|
159 |
-
msgid ""
|
160 |
-
"Content for the subscriber welcome email whenever a user's email is either "
|
161 |
-
"confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully."
|
162 |
-
"<br />Available Keywords: {{NAME}}, {{GROUP}}, {{LINK}}"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: ../
|
166 |
-
msgid ""
|
167 |
-
"This unsubscribe link is automatically added to all the emails that are sent "
|
168 |
-
"from this plugin. It is a readonly field and you are advised not to modify "
|
169 |
-
"it."
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: ../
|
173 |
msgid ""
|
174 |
-
"
|
175 |
-
"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: ../
|
179 |
msgid ""
|
180 |
-
"
|
181 |
-
"
|
182 |
-
msgstr ""
|
183 |
-
|
184 |
-
#: ../settings/settings-edit.php:262
|
185 |
-
msgid "Error in the Subscribe / Confirmation Link"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: ../
|
189 |
-
msgid ""
|
190 |
-
"Default message to display if there is any issue while clicking on subscribe "
|
191 |
-
"/ confirmation link from the Double Opt-In (Confirmation) emails."
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: ../
|
195 |
-
|
196 |
-
"
|
197 |
-
"unsubscribe link from the emails."
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: ../
|
201 |
-
msgid "
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: ../
|
205 |
-
msgid "
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: ../
|
209 |
-
|
|
|
|
|
|
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: ../
|
213 |
-
msgid ""
|
214 |
-
"Email to admin whenever a cron URL is triggered from your server.<br "
|
215 |
-
"/>Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: ../
|
219 |
msgid ""
|
220 |
-
"
|
221 |
-
"
|
222 |
-
"
|
223 |
-
"Cron?</a>"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: ../
|
227 |
-
msgid ""
|
228 |
-
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-how-to-"
|
229 |
-
"schedule-cron-emails-in-cpanel/?"
|
230 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
|
231 |
-
"job in cPanel</a>"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: ../
|
235 |
msgid ""
|
236 |
-
"
|
237 |
-
"
|
238 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Setup cron "
|
239 |
-
"job in Plesk</a>"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: ../
|
243 |
-
msgid ""
|
244 |
-
"<a target=\"_blank\" href=\"https://www.icegram.com/documentation/es-what-to-do-"
|
245 |
-
"if-hosting-doesnt-support-cron-jobs/?"
|
246 |
-
"utm_source=es&utm_medium=in_app&utm_campaign=view_docs_help_page\">Hosting "
|
247 |
-
"does not support cron jobs?</a>"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: ../
|
251 |
-
msgid "
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: ../
|
255 |
msgid ""
|
256 |
-
"
|
257 |
-
"
|
258 |
-
"a slight variation on how your customer will view the email content."
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: ../
|
262 |
-
|
263 |
-
msgid "Confirmation emails resent successfully."
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: ../
|
267 |
-
msgid "
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: ../
|
271 |
-
msgid ""
|
272 |
-
"Oops! Looks like you are not the site administrator.<br><br>Only the site "
|
273 |
-
"administrator can export subscriber list."
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: ../
|
277 |
-
msgid "
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: ../
|
281 |
-
msgid "
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: ../
|
285 |
-
msgid "
|
286 |
-
msgstr ""
|
287 |
-
|
288 |
-
#: ../templates/template-preview.php:39
|
289 |
-
msgid "This is how your email may look."
|
290 |
-
msgstr ""
|
291 |
-
|
292 |
-
#: ../templates/template-preview.php:41
|
293 |
-
msgid ""
|
294 |
-
"<br><br>This Post Notification preview has replaced keywords from your last "
|
295 |
-
"published blog post."
|
296 |
-
msgstr ""
|
297 |
-
|
298 |
-
#: ../templates/template-preview.php:43
|
299 |
-
msgid ""
|
300 |
-
"<br><br>Note: Different email services (like gmail, yahoo etc) display email "
|
301 |
-
"content differently. So there could be a slight variation on how your "
|
302 |
-
"customer will view the email content."
|
303 |
-
msgstr ""
|
304 |
-
|
305 |
-
#: ../help/help.php:185
|
306 |
-
msgid "Thanks for installing and we hope you will enjoy using this plugin."
|
307 |
-
msgstr ""
|
308 |
-
|
309 |
-
#: ../help/help.php:186
|
310 |
-
msgid ""
|
311 |
-
"By default, subscribers subscribed via Email Subscribers, will receive email "
|
312 |
-
"updates when you post a new blog. You can turn these updates off like this:"
|
313 |
-
msgstr ""
|
314 |
-
|
315 |
-
#: ../help/help.php:187
|
316 |
-
msgid ""
|
317 |
-
"Email Subscribers -> Post Notification -> Edit -> Select Notification Status "
|
318 |
-
"when a new post is published -> Disable -> Save."
|
319 |
-
msgstr ""
|
320 |
-
|
321 |
-
#: ../help/help.php:191
|
322 |
-
msgid "Get more help and tips..."
|
323 |
-
msgstr ""
|
324 |
-
|
325 |
-
#: ../help/help.php:205
|
326 |
-
#, php-format
|
327 |
-
msgid "Version: %s"
|
328 |
-
msgstr ""
|
329 |
-
|
330 |
-
#: ../help/help.php:208
|
331 |
-
msgid "Questions? Need Help?"
|
332 |
-
msgstr ""
|
333 |
-
|
334 |
-
#: ../help/help.php:209
|
335 |
-
msgid "Contact Us"
|
336 |
-
msgstr ""
|
337 |
-
|
338 |
-
#: ../help/help.php:214
|
339 |
-
#, php-format
|
340 |
-
msgid ""
|
341 |
-
"<b>Like Email Subscribers?</b> If yes, then consider %s to support further "
|
342 |
-
"developments."
|
343 |
-
msgstr ""
|
344 |
-
|
345 |
-
#: ../help/help.php:249
|
346 |
-
msgid "Description"
|
347 |
-
msgstr ""
|
348 |
-
|
349 |
-
#: ../help/help.php:251
|
350 |
-
msgid ""
|
351 |
-
"Email Subscribers is a complete newsletter plugin which lets you collect "
|
352 |
-
"leads, send automated new blog post notification emails, create & send "
|
353 |
-
"newsletters and manage all this in one single place."
|
354 |
-
msgstr ""
|
355 |
-
|
356 |
-
#: ../help/help.php:253
|
357 |
-
msgid "Feature Overview"
|
358 |
-
msgstr ""
|
359 |
-
|
360 |
-
#: ../help/help.php:256
|
361 |
-
msgid ""
|
362 |
-
"Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
|
363 |
-
"Code)."
|
364 |
-
msgstr ""
|
365 |
-
|
366 |
-
#: ../help/help.php:259
|
367 |
-
msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
|
368 |
-
msgstr ""
|
369 |
-
|
370 |
-
#: ../help/help.php:262
|
371 |
-
msgid "Send automatic welcome email to subscribers."
|
372 |
-
msgstr ""
|
373 |
-
|
374 |
-
#: ../help/help.php:265
|
375 |
-
msgid ""
|
376 |
-
"Send new post notification emails to subscribers when new posts are "
|
377 |
-
"published on your website."
|
378 |
-
msgstr ""
|
379 |
-
|
380 |
-
#: ../help/help.php:268
|
381 |
-
msgid "Schedule email (Cron job) or send them manually."
|
382 |
-
msgstr ""
|
383 |
-
|
384 |
-
#: ../help/help.php:271
|
385 |
-
msgid "Send email notification to admin when a new user signs up."
|
386 |
-
msgstr ""
|
387 |
-
|
388 |
-
#: ../help/help.php:274
|
389 |
-
msgid "Automatically add Unsubscribe link in the email."
|
390 |
-
msgstr ""
|
391 |
-
|
392 |
-
#: ../help/help.php:277
|
393 |
-
msgid "Easily migrate subscribers from another app using Import & Export."
|
394 |
-
msgstr ""
|
395 |
-
|
396 |
-
#: ../help/help.php:280
|
397 |
-
msgid "Use HTML editor to create newsletters and post notifications."
|
398 |
-
msgstr ""
|
399 |
-
|
400 |
-
#: ../help/help.php:283
|
401 |
-
msgid "Send newsletters to different groups."
|
402 |
msgstr ""
|
403 |
|
404 |
#: ../help/help.php:286
|
@@ -452,1700 +300,1818 @@ msgid ""
|
|
452 |
"Roles"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: ../help/help.php:
|
|
|
|
|
|
|
|
|
456 |
msgid "How to change/update/translate any texts from the plugin?"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: ../help/help.php:
|
460 |
msgid "How to check sent emails?"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: ../help/help.php:
|
464 |
msgid "Create and Send Newsletter Emails"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: ../help/help.php:
|
468 |
msgid "Keywords in the Newsletters"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: ../help/help.php:
|
472 |
msgid "Create and Send Post Notification Emails when new posts are published"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: ../help/help.php:
|
476 |
msgid "Keywords in the Post Notifications"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: ../help/help.php:
|
480 |
msgid "Send a test post notification email to myself/testgroup"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: ../help/help.php:
|
484 |
msgid "Cron Job Setup"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: ../help/help.php:
|
488 |
msgid "What is Cron and how to Schedule Cron Emails?"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: ../help/help.php:
|
492 |
msgid "Schedule Cron Emails in cPanel"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: ../help/help.php:
|
496 |
msgid "Schedule Cron Emails in Parallels Plesk"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: ../help/help.php:
|
500 |
msgid "Hosting doesn’t support Cron Jobs?"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: ../help/help.php:
|
504 |
msgid "Troubleshooting Steps"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: ../help/help.php:
|
508 |
msgid "FAQ's"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: ../help/help.php:
|
512 |
msgid "Want to do more? Here's how.."
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: ../help/help.php:
|
516 |
msgid "Allow Subscribers to get subscribed to any group"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: ../help/help.php:
|
520 |
msgid "Using our <b>free</b> "
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: ../help/help.php:
|
524 |
msgid "Group Selector"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: ../help/help.php:
|
528 |
msgid ""
|
529 |
"plugin, you can extend Email Subscribers Form functionality by providing an "
|
530 |
"grouping option right next to the form."
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: ../help/help.php:
|
534 |
msgid "The user can then subscribe to whichever group most appeals to them."
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: ../help/help.php:
|
538 |
msgid "For example: Subscribe either to Updates or to Offers."
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: ../help/help.php:
|
542 |
msgid "Show your subscribe form inside attractive popups"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: ../help/help.php:
|
546 |
msgid ""
|
547 |
"Don't limit your subscriber form to a widget. Embed it within popups, hello "
|
548 |
"bars, slide-ins, sidebars, full screen popups etc."
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: ../help/help.php:
|
552 |
msgid ""
|
553 |
"Using Email Subscribers you can achieve this easily with our <b>free</b> "
|
554 |
"plugin "
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: ../help/help.php:
|
558 |
msgid ""
|
559 |
"Icegram's beautiful designs instantly capture user attention and help "
|
560 |
"increase sign-ups to your WordPress website."
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: ../help/help.php:
|
564 |
#, php-format
|
565 |
msgid "How to %s"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: ../help/help.php:
|
569 |
msgid "show subscribe form inside a popup"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: ../help/help.php:
|
573 |
msgid "Get beautiful and elegant form styles"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: ../help/help.php:
|
577 |
msgid "Email subscribers easily integrates with another <b>free</b> plugin "
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: ../help/help.php:
|
581 |
msgid "Rainmaker"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: ../help/help.php:
|
585 |
msgid ""
|
586 |
"Rainmaker extends the core features of Email Subscribers and provides "
|
587 |
"elegant form styles."
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: ../help/help.php:
|
591 |
msgid ""
|
592 |
"These styles are well designed and beautify your subscription form making it "
|
593 |
"more appealing."
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: ../help/help.php:
|
597 |
msgid "add Rainmaker’s form in Email Subscribers"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: ../
|
601 |
-
msgid "
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: ../
|
605 |
-
#:
|
606 |
-
msgid "
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: ../
|
610 |
-
msgid "
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: ../
|
614 |
-
|
|
|
|
|
|
|
615 |
msgid ""
|
616 |
-
"
|
617 |
-
"
|
|
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: ../
|
621 |
-
|
622 |
-
msgid "Please select notification mail subject. Use templates menu to create new."
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: ../
|
626 |
-
msgctxt "widget-enhanced-select"
|
627 |
msgid ""
|
628 |
-
"
|
629 |
-
"
|
630 |
-
"spam folder."
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: ../
|
634 |
-
|
635 |
-
msgid ""
|
636 |
-
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
637 |
-
"subscription. If you can't see the email within a few minutes, check the "
|
638 |
-
"spam folder."
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: ../
|
642 |
msgid ""
|
643 |
-
"
|
644 |
-
"
|
|
|
|
|
|
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: ../
|
648 |
-
msgid "
|
|
|
|
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: ../
|
652 |
-
msgid "
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: ../
|
656 |
-
|
657 |
-
msgid "Email Subscribers version: <strong>%s</strong>"
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: ../
|
661 |
-
msgid "
|
|
|
|
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: ../
|
665 |
-
msgid "
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: ../
|
669 |
-
msgid "
|
|
|
|
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: ../
|
673 |
-
msgid "
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: ../
|
677 |
-
msgid "
|
|
|
|
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: ../
|
681 |
-
msgid "
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: ../
|
685 |
-
msgid "
|
|
|
|
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: ../
|
689 |
-
msgid "
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: ../
|
693 |
-
msgid "
|
|
|
|
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: ../
|
697 |
-
msgid "
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: ../
|
701 |
-
msgid "
|
|
|
|
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: ../
|
705 |
-
msgid "
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: ../
|
709 |
-
msgid "
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: ../
|
713 |
-
#, php-format
|
714 |
msgid ""
|
715 |
-
"
|
716 |
-
"
|
717 |
-
"
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: ../
|
721 |
-
|
722 |
-
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
723 |
m
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.4.12\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
|
6 |
+
"PO-Revision-Date: Tue Apr 17 2018 15:28:18 GMT+0530 (IST)\n"
|
7 |
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
"Language-Team: Icegram <hello@icegram.com>Language:\n"
|
9 |
"Language: Lithuanian\n"
|
25 |
"X-Loco-Target-Locale: lt_LT\n"
|
26 |
"X-Loco-Parser: loco_parse_po"
|
27 |
|
28 |
+
#: ../classes/es-register.php:168 ../classes/es-register.php:169 ../classes/es-
|
29 |
+
#: register.php:789 ../classes/es-register.php:790 ../classes/es-register.php:795
|
30 |
+
msgid "Templates"
|
|
|
|
|
|
|
|
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: ../classes/es-register.php:184
|
34 |
+
msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: ../classes/es-register.php:201
|
38 |
+
msgctxt "view-subscriber-enhanced-select"
|
39 |
+
msgid ""
|
40 |
+
"Do you want to resend confirmation email? Also please note, this will update "
|
41 |
+
"subscriber current status to 'Unconfirmed'."
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: ../classes/es-register.php:215
|
45 |
+
msgctxt "notification-enhanced-select"
|
46 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
47 |
msgstr ""
|
48 |
|
49 |
+
#: ../classes/es-register.php:260
|
50 |
+
msgctxt "widget-enhanced-select"
|
51 |
msgid ""
|
52 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
53 |
+
"subscription. If you don't see the email within a few minutes, check the "
|
54 |
+
"spam/junk folder."
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: ../classes/es-register.php:274
|
58 |
+
msgctxt "widget-page-enhanced-select"
|
59 |
+
msgid ""
|
60 |
+
"Your subscription was successful! Kindly check your mailbox and confirm your "
|
61 |
+
"subscription. If you don't see the email within a few minutes, check the "
|
62 |
+
"spam/junk folder."
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: ../classes/es-register.php:739
|
66 |
msgid ""
|
67 |
+
"<b>Want readymade email templates?</b> Also want to <b>clean your "
|
68 |
+
"subscribers list?</b> Come check our Pro plan."
|
|
|
|
|
|
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: ../classes/es-register.php:740
|
72 |
+
msgid "Check Pro plan "
|
|
|
|
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: ../classes/es-register.php:740
|
76 |
+
msgid "Not interested."
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: ../classes/es-register.php:780
|
80 |
+
#, php-format
|
81 |
+
msgid "Email Subscribers version: <strong>%s</strong>"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: ../classes/es-register.php:791 ../classes/es-register.php:792
|
85 |
+
msgid "Add new Template"
|
|
|
|
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: ../classes/es-register.php:793
|
89 |
+
msgid "Edit Templates"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: ../classes/es-register.php:794
|
93 |
+
msgid "New Templates"
|
|
|
|
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: ../classes/es-register.php:796
|
97 |
+
msgid "View Templates"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: ../classes/es-register.php:797
|
101 |
+
msgid "Search Templates"
|
|
|
|
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: ../classes/es-register.php:798
|
105 |
+
msgid "No Templates found"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: ../classes/es-register.php:799
|
109 |
+
msgid "No Templates found in Trash"
|
|
|
|
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: ../classes/es-register.php:802
|
113 |
+
msgid "Thumbnail (For Visual Representation only)"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: ../classes/es-register.php:803
|
117 |
+
msgid "Set thumbnail"
|
|
|
|
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: ../classes/es-register.php:840
|
121 |
+
msgid "Template Type"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: ../classes/es-register.php:906
|
125 |
+
msgid "Available Keyword for Post Notification: {{POSTTITLE}}"
|
|
|
|
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: ../classes/es-register.php:909
|
129 |
+
msgid "Select your Email Template Type"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: ../classes/es-register.php:959
|
133 |
+
msgid "Preview Template"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: ../classes/es-register.php:973
|
137 |
+
#, php-format
|
138 |
msgid ""
|
139 |
+
"%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
|
140 |
+
"{{POSTLINK}}, {{POSTIMAGE}}, {{POSTDESC}}, {{POSTAUTHOR}}, {{POSTLINK-"
|
141 |
+
"WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: ../classes/es-register.php:974
|
145 |
+
#, php-format
|
146 |
+
msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: ../export/export-email-address.php:50 ../export/export-email-address.php:54
|
150 |
+
msgid "Unexpected url submit has been detected!"
|
|
|
|
|
|
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: ../help/help.php:185
|
154 |
+
msgid "Thanks for installing and we hope you will enjoy using this plugin."
|
|
|
|
|
|
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: ../help/help.php:186
|
158 |
msgid ""
|
159 |
+
"By default, subscribers subscribed via Email Subscribers, will receive email "
|
160 |
+
"updates when you post a new blog. You can turn these updates off like this:"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: ../help/help.php:187
|
164 |
msgid ""
|
165 |
+
"Email Subscribers -> Post Notification -> Edit -> Select Notification Status "
|
166 |
+
"when a new post is published -> Disable -> Save."
|
|
|
|
|
|
|
|
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: ../help/help.php:191
|
170 |
+
msgid "Get more help and tips..."
|
|
|
|
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: ../help/help.php:205
|
174 |
+
#, php-format
|
175 |
+
msgid "Version: %s"
|
|
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: ../help/help.php:208
|
179 |
+
msgid "Questions? Need Help?"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: ../help/help.php:209
|
183 |
+
msgid "Contact Us"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: ../help/help.php:214
|
187 |
+
#, php-format
|
188 |
+
msgid ""
|
189 |
+
"<b>Like Email Subscribers?</b> If yes, then consider %s to support further "
|
190 |
+
"developments."
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: ../help/help.php:249
|
194 |
+
msgid "Description"
|
|
|
|
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: ../help/help.php:251
|
198 |
msgid ""
|
199 |
+
"Email Subscribers is a complete newsletter plugin which lets you collect "
|
200 |
+
"leads, send automated new blog post notification emails, create & send "
|
201 |
+
"newsletters and manage all this in one single place."
|
|
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: ../help/help.php:253
|
205 |
+
msgid "Feature Overview"
|
|
|
|
|
|
|
|
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: ../help/help.php:256
|
209 |
msgid ""
|
210 |
+
"Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
|
211 |
+
"Code)."
|
|
|
|
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: ../help/help.php:259
|
215 |
+
msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
|
|
|
|
|
|
|
|
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: ../help/help.php:262
|
219 |
+
msgid "Send automatic welcome email to subscribers."
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: ../help/help.php:265
|
223 |
msgid ""
|
224 |
+
"Send new post notification emails to subscribers when new posts are "
|
225 |
+
"published on your website."
|
|
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: ../help/help.php:268
|
229 |
+
msgid "Schedule email (Cron job) or send them manually."
|
|
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: ../help/help.php:271
|
233 |
+
msgid "Send email notification to admin when a new user signs up."
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: ../help/help.php:274
|
237 |
+
msgid "Automatically add Unsubscribe link in the email."
|
|
|
|
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: ../help/help.php:277
|
241 |
+
msgid "Easily migrate subscribers from another app using Import & Export."
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: ../help/help.php:280
|
245 |
+
msgid "Use HTML editor to create newsletters and post notifications."
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: ../help/help.php:283
|
249 |
+
msgid "Send newsletters to different groups."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
250 |
msgstr ""
|
251 |
|
252 |
#: ../help/help.php:286
|
300 |
"Roles"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: ../help/help.php:327
|
304 |
+
msgid "How does Sync work?"
|
305 |
+
msgstr ""
|
306 |
+
|
307 |
+
#: ../help/help.php:336
|
308 |
msgid "How to change/update/translate any texts from the plugin?"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: ../help/help.php:342
|
312 |
msgid "How to check sent emails?"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: ../help/help.php:354
|
316 |
msgid "Create and Send Newsletter Emails"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: ../help/help.php:357
|
320 |
msgid "Keywords in the Newsletters"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: ../help/help.php:364
|
324 |
msgid "Create and Send Post Notification Emails when new posts are published"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: ../help/help.php:367
|
328 |
msgid "Keywords in the Post Notifications"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: ../help/help.php:370
|
332 |
msgid "Send a test post notification email to myself/testgroup"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: ../help/help.php:375
|
336 |
msgid "Cron Job Setup"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: ../help/help.php:378
|
340 |
msgid "What is Cron and how to Schedule Cron Emails?"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: ../help/help.php:381
|
344 |
msgid "Schedule Cron Emails in cPanel"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: ../help/help.php:384
|
348 |
msgid "Schedule Cron Emails in Parallels Plesk"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: ../help/help.php:387
|
352 |
msgid "Hosting doesn’t support Cron Jobs?"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: ../help/help.php:390
|
356 |
msgid "Troubleshooting Steps"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: ../help/help.php:398
|
360 |
msgid "FAQ's"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: ../help/help.php:404
|
364 |
msgid "Want to do more? Here's how.."
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: ../help/help.php:407
|
368 |
msgid "Allow Subscribers to get subscribed to any group"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: ../help/help.php:412
|
372 |
msgid "Using our <b>free</b> "
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: ../help/help.php:413
|
376 |
msgid "Group Selector"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: ../help/help.php:414
|
380 |
msgid ""
|
381 |
"plugin, you can extend Email Subscribers Form functionality by providing an "
|
382 |
"grouping option right next to the form."
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: ../help/help.php:417
|
386 |
msgid "The user can then subscribe to whichever group most appeals to them."
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: ../help/help.php:420
|
390 |
msgid "For example: Subscribe either to Updates or to Offers."
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: ../help/help.php:424
|
394 |
msgid "Show your subscribe form inside attractive popups"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: ../help/help.php:429
|
398 |
msgid ""
|
399 |
"Don't limit your subscriber form to a widget. Embed it within popups, hello "
|
400 |
"bars, slide-ins, sidebars, full screen popups etc."
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: ../help/help.php:432
|
404 |
msgid ""
|
405 |
"Using Email Subscribers you can achieve this easily with our <b>free</b> "
|
406 |
"plugin "
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: ../help/help.php:436
|
410 |
msgid ""
|
411 |
"Icegram's beautiful designs instantly capture user attention and help "
|
412 |
"increase sign-ups to your WordPress website."
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: ../help/help.php:439 ../help/help.php:459
|
416 |
#, php-format
|
417 |
msgid "How to %s"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: ../help/help.php:439
|
421 |
msgid "show subscribe form inside a popup"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: ../help/help.php:443
|
425 |
msgid "Get beautiful and elegant form styles"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: ../help/help.php:449
|
429 |
msgid "Email subscribers easily integrates with another <b>free</b> plugin "
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: ../help/help.php:450
|
433 |
msgid "Rainmaker"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: ../help/help.php:453
|
437 |
msgid ""
|
438 |
"Rainmaker extends the core features of Email Subscribers and provides "
|
439 |
"elegant form styles."
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: ../help/help.php:456
|
443 |
msgid ""
|
444 |
"These styles are well designed and beautify your subscription form making it "
|
445 |
"more appealing."
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: ../help/help.php:459
|
449 |
msgid "add Rainmaker’s form in Email Subscribers"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: ../notification/notification-add.php:45 ../notification/notification-edit.php:61
|
453 |
+
msgid "Please select notification mail subject. Use templates menu to create new."
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: ../notification/notification-add.php:144 ../notification/notification-edit.php:
|
457 |
+
#: 164
|
458 |
+
msgid "(Use templates menu to create new)"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: ../sendmail/sendmail.php:59
|
462 |
+
msgid "Email sent successfully. "
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: ../sentmail/sentmail-preview.php:27
|
466 |
+
msgid "Preview Email"
|
467 |
+
msgstr ""
|
468 |
+
|
469 |
+
#: ../sentmail/sentmail-preview.php:31
|
470 |
msgid ""
|
471 |
+
"This is how the email you sent may look. <br>Note: Different email services "
|
472 |
+
"(like gmail, yahoo etc) display email content differently. So there could be "
|
473 |
+
"a slight variation on how your customer will view the email content."
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: ../settings/settings-edit.php:89
|
477 |
+
msgid "Email Type"
|
|
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: ../settings/settings-edit.php:90
|
|
|
481 |
msgid ""
|
482 |
+
"Option 1 & 2 is to send emails with default Wordpress method wp_mail(). "
|
483 |
+
"Option 3 & 4 is to send emails with PHP method mail()."
|
|
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: ../settings/settings-edit.php:104
|
487 |
+
msgid "Opt-In Type"
|
|
|
|
|
|
|
|
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: ../settings/settings-edit.php:105
|
491 |
msgid ""
|
492 |
+
"Double Opt-In : In this type, the subscriber is sent an activation link as "
|
493 |
+
"soon as they subscribe to your list. They have to confirm their subscription "
|
494 |
+
"by clicking on the activation link.<br />Single Opt-In : In this type, the "
|
495 |
+
"subscriber is not asked to confirm their email address. They are subscribed "
|
496 |
+
"directly in the list."
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: ../settings/settings-edit.php:117
|
500 |
+
msgid ""
|
501 |
+
"Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
|
502 |
+
"Emails."
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: ../settings/settings-edit.php:136
|
506 |
+
msgid "Notify Admin when a new subscriber signs up"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: ../settings/settings-edit.php:149
|
510 |
+
msgid "Admin Email Subject on new subscriber sign up"
|
|
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: ../settings/settings-edit.php:150
|
514 |
+
msgid ""
|
515 |
+
"Subject for the admin email whenever a new subscriber signs up and is "
|
516 |
+
"confirmed."
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: ../settings/settings-edit.php:156
|
520 |
+
msgid "Admin Email Content on new subscriber signs up"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: ../settings/settings-edit.php:157
|
524 |
+
msgid ""
|
525 |
+
"Content for the admin email whenever a new subscriber signs up and is "
|
526 |
+
"confirmed.<br />Available Keywords: {{NAME}}, {{EMAIL}}, {{GROUP}}"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: ../settings/settings-edit.php:165
|
530 |
+
msgid "Subject for the email report which will be sent to admin."
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: ../settings/settings-edit.php:172
|
534 |
+
msgid ""
|
535 |
+
"Content for the email report which will be sent to admin.<br />Available "
|
536 |
+
"Keywords: {{COUNT}}, {{UNIQUE}}, {{STARTTIME}}, {{ENDTIME}}"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: ../settings/settings-edit.php:183
|
540 |
+
msgid "Double Opt-In Email Subject (Confirmation Email)"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: ../settings/settings-edit.php:184
|
544 |
+
msgid ""
|
545 |
+
"Subject for the confirmation email to be sent for Double Opt-In whenever a "
|
546 |
+
"subscriber signs up."
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: ../settings/settings-edit.php:190
|
550 |
+
msgid "Double Opt-In Email Content (Confirmation Email)"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: ../settings/settings-edit.php:191
|
554 |
+
msgid ""
|
555 |
+
"Content for the confirmation email to be sent for Double Opt-In whenever a "
|
556 |
+
"subscriber signs up.<br />Available Keywords: {{NAME}}, {{LINK}}"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: ../settings/settings-edit.php:197
|
560 |
+
msgid "Double Opt-In Confirmation Link"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: ../settings/settings-edit.php:204
|
564 |
+
msgid ""
|
565 |
+
"Text to display after an email address is successfully subscribed from "
|
566 |
+
"Double Opt-In (Confirmation) Email"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: ../settings/settings-edit.php:212
|
570 |
+
msgid "Send Welcome Email to New Subscribers after Sign Up?"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: ../settings/settings-edit.php:224
|
574 |
+
msgid "Subject for Welcome Email"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: ../settings/settings-edit.php:225
|
|
|
578 |
msgid ""
|
579 |
+
"Subject for the subscriber welcome email. This will be sent whenever a "
|
580 |
+
"user's email is either confirmed (if Double Opt-In) / subscribed (if Single "
|
581 |
+
"Opt-In) successfully."
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: ../settings/settings-edit.php:231
|
585 |
+
msgid "Email Content for Welcome Email"
|
|
|
586 |
m
|