Version Description
(06.10.2016) =
- Fix: Illegal string offset 'es_registered' when syncing existing WordPress Subscribers
- Fix: Confirmation text for static newsletters on Send Mail page
- New: Translation for French (fr_FR) language added (Thanks to Serge)
- Update: Translation for Polish (pl_PL) language updated (Thanks to Witold)
Download this release
Release Info
Developer | storeapps |
Plugin | Email Subscribers & Newsletters |
Version | 3.2.2 |
Comparing to | |
See all releases |
Code changes from version 3.2.1 to 3.2.2
- changelog.txt +7 -0
- classes/es-register.php +14 -10
- classes/es-sendmail.php +1 -0
- email-subscribers.php +2 -2
- languages/email-subscribers-fr_FR.mo +0 -0
- languages/email-subscribers-fr_FR.po +2459 -0
- languages/email-subscribers-pl_PL.mo +0 -0
- languages/email-subscribers-pl_PL.po +1500 -1553
- languages/email-subscribers.pot +35 -33
- readme.txt +23 -1
changelog.txt
CHANGED
@@ -4,6 +4,13 @@ Author : Store Apps
|
|
4 |
Author URI : http://www.storeapps.org/
|
5 |
License : GPLv3
|
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
********************************Version 3.2.1************************************************************
|
8 |
|
9 |
* Fix: Optimize Table & Delete Records button not working
|
4 |
Author URI : http://www.storeapps.org/
|
5 |
License : GPLv3
|
6 |
|
7 |
+
********************************Version 3.2.2************************************************************
|
8 |
+
|
9 |
+
* Fix: Illegal string offset 'es_registered' when syncing existing WordPress Subscribers
|
10 |
+
* Fix: Confirmation text for static newsletters on Send Mail page
|
11 |
+
* New: Translation for French (fr_FR) language added (Thanks to Serge)
|
12 |
+
* Update: Translation for Polish (pl_PL) language updated (Thanks to Witold)
|
13 |
+
|
14 |
********************************Version 3.2.1************************************************************
|
15 |
|
16 |
* Fix: Optimize Table & Delete Records button not working
|
classes/es-register.php
CHANGED
@@ -217,7 +217,7 @@ class es_cls_registerhook {
|
|
217 |
$es_select_params = array(
|
218 |
'es_sendmail_subject' => _x( 'Please select your mail subject.', 'sendmail-enhanced-select', ES_TDOMAIN ),
|
219 |
'es_sendmail_status' => _x( 'Please select your mail type.', 'sendmail-enhanced-select', ES_TDOMAIN ),
|
220 |
-
'es_sendmail_confirm' => _x( '
|
221 |
);
|
222 |
wp_localize_script( 'sendmail', 'es_sendmail_notices', $es_select_params );
|
223 |
break;
|
@@ -425,29 +425,33 @@ class es_cls_registerhook {
|
|
425 |
|
426 |
}
|
427 |
|
428 |
-
function es_sync_registereduser( $user_id ) {
|
|
|
429 |
$es_c_emailsubscribers = get_option('es_c_emailsubscribers', 'norecord');
|
430 |
-
|
|
|
431 |
// No action is required
|
432 |
} else {
|
433 |
-
|
434 |
-
|
435 |
-
$
|
|
|
436 |
|
437 |
$user_info = get_userdata($user_id);
|
438 |
$user_firstname = $user_info->user_firstname;
|
|
|
439 |
if($user_firstname == "") {
|
440 |
$user_firstname = $user_info->user_login;
|
441 |
}
|
442 |
$user_mail = $user_info->user_email;
|
443 |
-
|
444 |
$form['es_email_name'] = $user_firstname;
|
445 |
$form['es_email_mail'] = $user_mail;
|
446 |
-
$form['es_email_group'] = $
|
447 |
$form['es_email_status'] = "Confirmed";
|
448 |
$action = es_cls_dbquery::es_view_subscriber_ins($form, "insert");
|
449 |
-
|
450 |
-
{
|
451 |
//Inserted successfully. Below 3 line of code will send WELCOME email to subscribers.
|
452 |
$subscribers = array();
|
453 |
$subscribers = es_cls_dbquery::es_view_subscriber_one($user_mail);
|
217 |
$es_select_params = array(
|
218 |
'es_sendmail_subject' => _x( 'Please select your mail subject.', 'sendmail-enhanced-select', ES_TDOMAIN ),
|
219 |
'es_sendmail_status' => _x( 'Please select your mail type.', 'sendmail-enhanced-select', ES_TDOMAIN ),
|
220 |
+
'es_sendmail_confirm' => _x( 'Have you double checked your selected group? If so, let\'s go ahead and send this.', 'sendmail-enhanced-select', ES_TDOMAIN )
|
221 |
);
|
222 |
wp_localize_script( 'sendmail', 'es_sendmail_notices', $es_select_params );
|
223 |
break;
|
425 |
|
426 |
}
|
427 |
|
428 |
+
function es_sync_registereduser( $user_id ) {
|
429 |
+
|
430 |
$es_c_emailsubscribers = get_option('es_c_emailsubscribers', 'norecord');
|
431 |
+
|
432 |
+
if( $es_c_emailsubscribers == 'norecord' || $es_c_emailsubscribers == "" ) {
|
433 |
// No action is required
|
434 |
} else {
|
435 |
+
$es_sync_unserialized_data = maybe_unserialize($es_c_emailsubscribers);
|
436 |
+
if(($es_sync_unserialized_data['es_registered'] == "YES") && ($user_id != "")) {
|
437 |
+
$es_registered = $es_sync_unserialized_data['es_registered'];
|
438 |
+
$es_registered_group = $es_sync_unserialized_data['es_registered_group'];
|
439 |
|
440 |
$user_info = get_userdata($user_id);
|
441 |
$user_firstname = $user_info->user_firstname;
|
442 |
+
|
443 |
if($user_firstname == "") {
|
444 |
$user_firstname = $user_info->user_login;
|
445 |
}
|
446 |
$user_mail = $user_info->user_email;
|
447 |
+
|
448 |
$form['es_email_name'] = $user_firstname;
|
449 |
$form['es_email_mail'] = $user_mail;
|
450 |
+
$form['es_email_group'] = $es_sync_unserialized_data['es_registered_group'];
|
451 |
$form['es_email_status'] = "Confirmed";
|
452 |
$action = es_cls_dbquery::es_view_subscriber_ins($form, "insert");
|
453 |
+
|
454 |
+
if($action == "sus") {
|
455 |
//Inserted successfully. Below 3 line of code will send WELCOME email to subscribers.
|
456 |
$subscribers = array();
|
457 |
$subscribers = es_cls_dbquery::es_view_subscriber_one($user_mail);
|
classes/es-sendmail.php
CHANGED
@@ -325,6 +325,7 @@ class es_cls_sendmail {
|
|
325 |
$content = str_replace('###DATE###', $post_date, $content);
|
326 |
break;
|
327 |
}
|
|
|
328 |
if ( $settings['es_c_mailtype'] == "WP HTML MAIL" || $settings['es_c_mailtype'] == "PHP HTML MAIL" ) {
|
329 |
$content = str_replace("\r\n", "<br />", $content);
|
330 |
} else {
|
325 |
$content = str_replace('###DATE###', $post_date, $content);
|
326 |
break;
|
327 |
}
|
328 |
+
|
329 |
if ( $settings['es_c_mailtype'] == "WP HTML MAIL" || $settings['es_c_mailtype'] == "PHP HTML MAIL" ) {
|
330 |
$content = str_replace("\r\n", "<br />", $content);
|
331 |
} else {
|
email-subscribers.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Email Subscribers & Newsletters
|
4 |
* Plugin URI: http://www.storeapps.org/product/email-subscribers/
|
5 |
* Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it gets published.
|
6 |
-
* Version: 3.2.
|
7 |
* Author: StoreApps
|
8 |
* Author URI: http://www.storeapps.org/
|
9 |
* Requires at least: 3.4
|
@@ -45,7 +45,7 @@ function es_textdomain() {
|
|
45 |
add_action( 'plugins_loaded', 'es_textdomain' );
|
46 |
add_action( 'transition_post_status', array( 'es_cls_sendmail', 'es_prepare_notification' ), 10, 3 );
|
47 |
|
48 |
-
add_action( 'user_register', 'es_sync_registereduser');
|
49 |
|
50 |
register_activation_hook( ES_FILE, array( 'es_cls_registerhook', 'es_activation' ) );
|
51 |
register_deactivation_hook( ES_FILE, array( 'es_cls_registerhook', 'es_deactivation' ) );
|
3 |
* Plugin Name: Email Subscribers & Newsletters
|
4 |
* Plugin URI: http://www.storeapps.org/product/email-subscribers/
|
5 |
* Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it gets published.
|
6 |
+
* Version: 3.2.2
|
7 |
* Author: StoreApps
|
8 |
* Author URI: http://www.storeapps.org/
|
9 |
* Requires at least: 3.4
|
45 |
add_action( 'plugins_loaded', 'es_textdomain' );
|
46 |
add_action( 'transition_post_status', array( 'es_cls_sendmail', 'es_prepare_notification' ), 10, 3 );
|
47 |
|
48 |
+
add_action( 'user_register', 'es_sync_registereduser' );
|
49 |
|
50 |
register_activation_hook( ES_FILE, array( 'es_cls_registerhook', 'es_activation' ) );
|
51 |
register_deactivation_hook( ES_FILE, array( 'es_cls_registerhook', 'es_deactivation' ) );
|
languages/email-subscribers-fr_FR.mo
ADDED
Binary file
|
languages/email-subscribers-fr_FR.po
ADDED
@@ -0,0 +1,2459 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of Development (trunk) in French (France)
|
2 |
+
# This file is distributed under the same license as the Development (trunk) package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: Development (trunk)\n"
|
6 |
+
"Report-Msgid-Bugs-To: \n"
|
7 |
+
"POT-Creation-Date: 2016-10-03 11:20+0200\n"
|
8 |
+
"PO-Revision-Date: 2016-10-03 13:06+0200\n"
|
9 |
+
"Last-Translator: \n"
|
10 |
+
"Language-Team: \n"
|
11 |
+
"Language: fr\n"
|
12 |
+
"MIME-Version: 1.0\n"
|
13 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
+
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
16 |
+
"X-Generator: Poedit 1.8.9\n"
|
17 |
+
|
18 |
+
#: ../notification/notification-add.php:32
|
19 |
+
msgid "Please select subscribers group."
|
20 |
+
msgstr "Veuillez sélectionner un groupe d'abonnés."
|
21 |
+
|
22 |
+
#: ../notification/notification-add.php:38
|
23 |
+
msgid "Please select notification status."
|
24 |
+
msgstr "Veuillez sélectionner le mode d'envoi de la notification"
|
25 |
+
|
26 |
+
#: ../notification/notification-add.php:44
|
27 |
+
#: ../notification/notification-edit.php:60
|
28 |
+
msgid ""
|
29 |
+
"Please select notification mail subject. Use compose menu to create new."
|
30 |
+
msgstr ""
|
31 |
+
"Veuillez sélectionner le modèle d'email. Utilisez le menu Modèles pour en "
|
32 |
+
"créer un nouveau."
|
33 |
+
|
34 |
+
#: ../notification/notification-add.php:50
|
35 |
+
#: ../notification/notification-edit.php:69
|
36 |
+
msgid "Please select post categories."
|
37 |
+
msgstr "Veuillez sélectionner une catégorie."
|
38 |
+
|
39 |
+
#: ../notification/notification-add.php:70
|
40 |
+
msgid "Notification successfully created. "
|
41 |
+
msgstr "Notification correctement créée."
|
42 |
+
|
43 |
+
#: ../notification/notification-add.php:107
|
44 |
+
msgid "Add Notification"
|
45 |
+
msgstr "Nouvelle notification"
|
46 |
+
|
47 |
+
#: ../notification/notification-add.php:108
|
48 |
+
#: ../notification/notification-show.php:55
|
49 |
+
#: ../notification/notification-edit.php:122 ../roles/roles-add.php:106 ..
|
50 |
+
#: /settings/settings-edit.php:199 ../sentmail/sentmail-preview.php:29
|
51 |
+
#: /sentmail/sentmail-show.php:98 ../sentmail/deliverreport-show.php:62
|
52 |
+
#: /subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
|
53 |
+
#: show.php:212 ../subscribers/view-subscriber-export.php:31
|
54 |
+
#: ../subscribers/view- subscriber-add.php:116
|
55 |
+
#: ../subscribers/view-subscriber-edit.php:115
|
56 |
+
#: /subscribers/view-subscriber-sync.php:94 ../cron/cron-add.php:75
|
57 |
+
#: /compose/compose-edit.php:87 ../compose/compose-add.php:76
|
58 |
+
#: ../compose/compose- show.php:67 ../compose/compose-preview.php:29
|
59 |
+
#: ../sendmail/sendmail.php:96
|
60 |
+
msgid "Help"
|
61 |
+
msgstr "Aide"
|
62 |
+
|
63 |
+
#: ../notification/notification-add.php:115
|
64 |
+
msgid "Select Subscribers Group"
|
65 |
+
msgstr "Groupe d'abonnés"
|
66 |
+
|
67 |
+
#: ../notification/notification-add.php:119
|
68 |
+
#: ../notification/notification-add.php:143
|
69 |
+
#: ../notification/notification-edit.php:133 ../notification/notification-
|
70 |
+
#: edit.php:166 ../subscribers/view-subscriber-import.php:191
|
71 |
+
#: ../subscribers/view- subscriber-add.php:163
|
72 |
+
#: ../subscribers/view-subscriber-edit.php:163 ..
|
73 |
+
#: /subscribers/view-subscriber-sync.php:120 ../sendmail/sendmail.php:109
|
74 |
+
#: /sendmail/sendmail.php:136 ../sendmail/sendmail.php:150
|
75 |
+
msgid "Select"
|
76 |
+
msgstr "Sélectionner"
|
77 |
+
|
78 |
+
#: ../notification/notification-add.php:137
|
79 |
+
#: ../notification/notification-edit.php:160
|
80 |
+
msgid "Select Notification Mail Subject"
|
81 |
+
msgstr "Sujet de l'email"
|
82 |
+
|
83 |
+
#: ../notification/notification-add.php:138
|
84 |
+
#: ../notification/notification-edit.php:161
|
85 |
+
msgid "(Use compose menu to create new)"
|
86 |
+
msgstr "(utilisez le menu Modèles pour en créer un nouveau)"
|
87 |
+
|
88 |
+
#: ../notification/notification-add.php:162
|
89 |
+
#: ../notification/notification-edit.php:188
|
90 |
+
msgid "Select Post Categories"
|
91 |
+
msgstr "Catégories"
|
92 |
+
|
93 |
+
#: ../notification/notification-add.php:189
|
94 |
+
#: ../notification/notification-edit.php:226
|
95 |
+
msgid "Check All"
|
96 |
+
msgstr "Sélectionner tout"
|
97 |
+
|
98 |
+
#: ../notification/notification-add.php:190
|
99 |
+
#: ../notification/notification-edit.php:227
|
100 |
+
msgid "Uncheck All"
|
101 |
+
msgstr "Désélectionner tout"
|
102 |
+
|
103 |
+
#: ../notification/notification-add.php:196
|
104 |
+
#: ../notification/notification-edit.php:234
|
105 |
+
msgid "Select your Custom Post Type"
|
106 |
+
msgstr "Type de contenu"
|
107 |
+
|
108 |
+
#: ../notification/notification-add.php:197
|
109 |
+
#: ../notification/notification-edit.php:235
|
110 |
+
msgid "(Optional)"
|
111 |
+
msgstr "(Optionnel)"
|
112 |
+
|
113 |
+
#: ../notification/notification-add.php:226
|
114 |
+
#: ../notification/notification-edit.php:269
|
115 |
+
msgid "No Custom Post Types Available"
|
116 |
+
msgstr "Aucun type de contenu personnalisé n'est disponible"
|
117 |
+
|
118 |
+
#: ../notification/notification-add.php:233
|
119 |
+
#: ../notification/notification-edit.php:277
|
120 |
+
msgid "Select Notification Status"
|
121 |
+
msgstr "Mode d'envoi"
|
122 |
+
|
123 |
+
#: ../notification/notification-add.php:237
|
124 |
+
#: ../notification/notification-edit.php:282
|
125 |
+
msgid "Send mail immediately when new post is published"
|
126 |
+
msgstr "Envoyer les emails directement lorsqu'un article est publié"
|
127 |
+
|
128 |
+
#: ../notification/notification-add.php:238
|
129 |
+
#: ../notification/notification-edit.php:283
|
130 |
+
msgid "Add to cron when new post is published and send via cron job"
|
131 |
+
msgstr ""
|
132 |
+
"Ajouter à la tâche de fond lorsqu'un article est publié et envoyer les "
|
133 |
+
"emails en tâche de fond"
|
134 |
+
|
135 |
+
#: ../notification/notification-add.php:239
|
136 |
+
#: ../notification/notification-edit.php:284
|
137 |
+
msgid "Disable notification"
|
138 |
+
msgstr "Ne pas envoyer"
|
139 |
+
|
140 |
+
#: ../notification/notification-add.php:247
|
141 |
+
#: ../notification/notification-edit.php:293 ../roles/roles-add.php:202
|
142 |
+
#: ../subscribers/view-subscriber-edit.php:192 .. /cron/cron-add.php:91
|
143 |
+
#: ../compose/compose-edit.php:118 ../compose/compose-add. php:106
|
144 |
+
msgid "Save"
|
145 |
+
msgstr "Enregistrer"
|
146 |
+
|
147 |
+
#: ../notification/notification-show.php:20
|
148 |
+
#: ../notification/notification-edit.php:19 ../settings/settings-edit.php:19
|
149 |
+
#: ../sentmail/sentmail-preview.php:17 .. /sentmail/sentmail-show.php:21
|
150 |
+
#: ../subscribers/view-subscriber-show.php:44
|
151 |
+
#: /subscribers/view-subscriber-edit.php:21 ../compose/compose-edit.php:19
|
152 |
+
#: /compose/compose-show.php:32 ../compose/compose-preview.php:17
|
153 |
+
msgid "Oops, selected details does not exists."
|
154 |
+
msgstr "Oups, ces données n'existent pas."
|
155 |
+
|
156 |
+
#: ../notification/notification-show.php:34 ../sentmail/sentmail-show.php:35 ..
|
157 |
+
#: /compose/compose-show.php:46
|
158 |
+
msgid "Selected record deleted."
|
159 |
+
msgstr "La sélection a été supprimée."
|
160 |
+
|
161 |
+
#: ../notification/notification-show.php:53 ../classes/es-register.php:148 ..
|
162 |
+
#: /classes/es-register.php:149
|
163 |
+
msgid "Notification"
|
164 |
+
msgstr "Notifications"
|
165 |
+
|
166 |
+
#: ../notification/notification-show.php:54
|
167 |
+
#: ../notification/notification-edit.php:121 ../compose/compose-edit.php:86
|
168 |
+
#: ../compose/compose-show.php:66
|
169 |
+
msgid "Add New"
|
170 |
+
msgstr "Ajouter"
|
171 |
+
|
172 |
+
#: ../notification/notification-show.php:66
|
173 |
+
#: ../notification/notification-show.php:74
|
174 |
+
msgid "Mail Subject"
|
175 |
+
msgstr "Sujet de l'email"
|
176 |
+
|
177 |
+
#: ../notification/notification-show.php:67
|
178 |
+
#: ../notification/notification-show.php:75
|
179 |
+
msgid "Subscribers Group"
|
180 |
+
msgstr "Groupe d'abonnés"
|
181 |
+
|
182 |
+
#: ../notification/notification-show.php:68
|
183 |
+
#: ../notification/notification-show.php:76
|
184 |
+
msgid "Categories / Custom Post"
|
185 |
+
msgstr "Catégories / Types de contenu"
|
186 |
+
|
187 |
+
#: ../notification/notification-show.php:69
|
188 |
+
#: ../notification/notification-show.php:77
|
189 |
+
msgid "Notification Status"
|
190 |
+
msgstr "Mode d'envoi"
|
191 |
+
|
192 |
+
#: ../notification/notification-show.php:98
|
193 |
+
#: ../subscribers/view-subscriber-show. php:357 ../compose/compose-show.php:105
|
194 |
+
#: ../compose/compose-preview.php:41
|
195 |
+
msgid "Edit"
|
196 |
+
msgstr "Modifier"
|
197 |
+
|
198 |
+
#: ../notification/notification-show.php:101
|
199 |
+
#: ../subscribers/view-subscriber-show. php:244
|
200 |
+
#: ../subscribers/view-subscriber-show.php:362 ../compose/compose-show. php:106
|
201 |
+
msgid "Delete"
|
202 |
+
msgstr "Supprimer"
|
203 |
+
|
204 |
+
#: ../notification/notification-show.php:128
|
205 |
+
msgid "Send mail immediately when new post is published."
|
206 |
+
msgstr "Envoyer les emails directement lorsqu'un article est publié."
|
207 |
+
|
208 |
+
#: ../notification/notification-show.php:130
|
209 |
+
msgid "Add to cron and send mail via cron job."
|
210 |
+
msgstr "Ajouter à la tâche de fond et envoyer via la tâche de fond"
|
211 |
+
|
212 |
+
#: ../notification/notification-show.php:141 ../sentmail/sentmail-show.php:165
|
213 |
+
#: .. /sentmail/deliverreport-show.php:115
|
214 |
+
#: ../subscribers/view-subscriber-show.php:385 ../compose/compose-show.php:115
|
215 |
+
msgid "No records available."
|
216 |
+
msgstr "Aucun enregistrement."
|
217 |
+
|
218 |
+
#: ../notification/notification-edit.php:48
|
219 |
+
msgid "Please select subscribers group"
|
220 |
+
msgstr "Veuillez sélectionner le groupe d'abonnés"
|
221 |
+
|
222 |
+
#: ../notification/notification-edit.php:54
|
223 |
+
msgid "Please select notification status"
|
224 |
+
msgstr "Veuillez sélectionner le mode d'envoi"
|
225 |
+
|
226 |
+
#: ../notification/notification-edit.php:91
|
227 |
+
msgid "Notification successfully updated. "
|
228 |
+
msgstr "Notification mise à jour."
|
229 |
+
|
230 |
+
#: ../notification/notification-edit.php:120
|
231 |
+
msgid "Edit Notification"
|
232 |
+
msgstr "Modifier la notification"
|
233 |
+
|
234 |
+
#: ../notification/notification-edit.php:129
|
235 |
+
#: ../subscribers/view-subscriber-show. php:246
|
236 |
+
msgid "Update Subscribers Group"
|
237 |
+
msgstr "Mettre à jour le groupe"
|
238 |
+
|
239 |
+
#. Name of the plugin
|
240 |
+
msgid "Email Subscribers & Newsletters"
|
241 |
+
msgstr "Abonnements & newsletters"
|
242 |
+
|
243 |
+
#. URI of the plugin
|
244 |
+
msgid "http://www.storeapps.org/product/email-subscribers"
|
245 |
+
msgstr "http://www.storeapps.org/product/email-subscribers"
|
246 |
+
|
247 |
+
#. Description of the plugin
|
248 |
+
msgid ""
|
249 |
+
"Add subscription forms on website, send HTML newsletters & automatically "
|
250 |
+
"notify subscribers about new blog posts once it gets published."
|
251 |
+
msgstr ""
|
252 |
+
"Permet d'ajouter un formulaire d'abonnement sur votre site, d'envoyer des "
|
253 |
+
"newsletters en HTML et d'informer automatiquement vos abonnés de vos "
|
254 |
+
"nouvelles publications. "
|
255 |
+
|
256 |
+
#. Author of the plugin
|
257 |
+
msgid "StoreApps"
|
258 |
+
msgstr "StoreApps"
|
259 |
+
|
260 |
+
#. URI of the plugin
|
261 |
+
msgid "http://www.storeapps.org"
|
262 |
+
msgstr "http://www.storeapps.org"
|
263 |
+
|
264 |
+
#: ../roles/roles-add.php:52
|
265 |
+
msgid "Role Updated. "
|
266 |
+
msgstr "Rôle mis à jour."
|
267 |
+
|
268 |
+
#: ../roles/roles-add.php:105
|
269 |
+
msgid "Roles and Capabilities"
|
270 |
+
msgstr "Rôles et capacités"
|
271 |
+
|
272 |
+
#: ../roles/roles-add.php:109
|
273 |
+
msgid ""
|
274 |
+
"Select user roles who can access following menus. Only Admin can change this."
|
275 |
+
msgstr ""
|
276 |
+
"Sélectionnez à partir de quel rôle les menus sont accessibles. Seuls les "
|
277 |
+
"administrateurs peuvent changer cette option."
|
278 |
+
|
279 |
+
#: ../roles/roles-add.php:116
|
280 |
+
msgid "Subscribers Menu"
|
281 |
+
msgstr "Menu Abonnés"
|
282 |
+
|
283 |
+
#: ../roles/roles-add.php:120 ../roles/roles-add.php:132
|
284 |
+
#: ../roles/roles-add.php:144 ../roles/roles-add.php:156
|
285 |
+
#: ../roles/roles-add.php:168 ../roles/roles-add. php:180
|
286 |
+
#: ../roles/roles-add.php:192
|
287 |
+
msgid "Administrator Only"
|
288 |
+
msgstr "Que les administrateurs"
|
289 |
+
|
290 |
+
#: ../roles/roles-add.php:121 ../roles/roles-add.php:133
|
291 |
+
#: ../roles/roles-add.php:145 ../roles/roles-add.php:157
|
292 |
+
#: ../roles/roles-add.php:169 ../roles/roles-add. php:181
|
293 |
+
#: ../roles/roles-add.php:193
|
294 |
+
msgid "Administrator/Editor"
|
295 |
+
msgstr "Administrateur/Editeur"
|
296 |
+
|
297 |
+
#: ../roles/roles-add.php:122 ../roles/roles-add.php:134
|
298 |
+
#: ../roles/roles-add.php:146 ../roles/roles-add.php:158
|
299 |
+
#: ../roles/roles-add.php:170 ../roles/roles-add. php:182
|
300 |
+
#: ../roles/roles-add.php:194
|
301 |
+
msgid "Administrator/Editor/Author/Contributor"
|
302 |
+
msgstr "Administrateur/Editeur/Auteur/Contributeur"
|
303 |
+
|
304 |
+
#: ../roles/roles-add.php:128
|
305 |
+
msgid "Compose Menu"
|
306 |
+
msgstr "Menu Modèles"
|
307 |
+
|
308 |
+
#: ../roles/roles-add.php:140
|
309 |
+
msgid "Notification Menu"
|
310 |
+
msgstr "Menu Notifications"
|
311 |
+
|
312 |
+
#: ../roles/roles-add.php:152
|
313 |
+
msgid "Send Email Menu/Cron Menu"
|
314 |
+
msgstr "Menus Envoi d'email et Tâches cron"
|
315 |
+
|
316 |
+
#: ../roles/roles-add.php:164
|
317 |
+
msgid "Settings Menu"
|
318 |
+
msgstr "Menu Paramètres"
|
319 |
+
|
320 |
+
#: ../roles/roles-add.php:176
|
321 |
+
msgid "Sent Mails Menu"
|
322 |
+
msgstr "Menu Emails envoyés"
|
323 |
+
|
324 |
+
#: ../roles/roles-add.php:188
|
325 |
+
msgid "Help & Info Menu"
|
326 |
+
msgstr "Menu Aide & Infos"
|
327 |
+
|
328 |
+
#: ../settings/settings-edit.php:116
|
329 |
+
msgid "Please enter sender of notifications from name."
|
330 |
+
msgstr "Veuillez saisir le nom de l'expéditeur"
|
331 |
+
|
332 |
+
#: ../settings/settings-edit.php:121
|
333 |
+
msgid "Please enter sender of notifications from email."
|
334 |
+
msgstr "Veuillez saisir l'email de l'expéditeur"
|
335 |
+
|
336 |
+
#: ../settings/settings-edit.php:154
|
337 |
+
msgid "Settings Saved."
|
338 |
+
msgstr "Options enregistrées."
|
339 |
+
|
340 |
+
#: ../settings/settings-edit.php:157
|
341 |
+
msgid "Oops, unable to update."
|
342 |
+
msgstr "Oups, impossible de mettre à jour."
|
343 |
+
|
344 |
+
#: ../settings/settings-edit.php:198 ../classes/es-register.php:157
|
345 |
+
#: ../classes/es- register.php:158
|
346 |
+
msgid "Settings"
|
347 |
+
msgstr "Paramètres"
|
348 |
+
|
349 |
+
#: ../settings/settings-edit.php:206
|
350 |
+
msgid "Sender of notifications"
|
351 |
+
msgstr "Expéditeur des emails"
|
352 |
+
|
353 |
+
#: ../settings/settings-edit.php:207
|
354 |
+
msgid ""
|
355 |
+
"Choose a FROM name and FROM email address for all notifications emails from "
|
356 |
+
"this plugin."
|
357 |
+
msgstr ""
|
358 |
+
"Choisissez le nom et l'email de l'expéditeur pour tous les emails envoyés "
|
359 |
+
"via cette extension."
|
360 |
+
|
361 |
+
#: ../settings/settings-edit.php:217
|
362 |
+
msgid "Mail type"
|
363 |
+
msgstr "Type d'email"
|
364 |
+
|
365 |
+
#: ../settings/settings-edit.php:218
|
366 |
+
msgid ""
|
367 |
+
"Option 1 & 2 is to send mails with default Wordpress method wp_mail(). "
|
368 |
+
"Option 3 & 4 is to send mails with PHP method mail()"
|
369 |
+
msgstr ""
|
370 |
+
"Les options 1 & 2 utilisent la méthode wp_mail() de WordPress. Les options 3 "
|
371 |
+
"& 4 utilsent la méthode mail() de PHP"
|
372 |
+
|
373 |
+
#: ../settings/settings-edit.php:222
|
374 |
+
msgid "1. WP HTML MAIL"
|
375 |
+
msgstr "1. WP HTML MAIL"
|
376 |
+
|
377 |
+
#: ../settings/settings-edit.php:223
|
378 |
+
msgid "2. WP PLAINTEXT MAIL"
|
379 |
+
msgstr "2. WP PLAINTEXT MAIL"
|
380 |
+
|
381 |
+
#: ../settings/settings-edit.php:224
|
382 |
+
msgid "3. PHP HTML MAIL"
|
383 |
+
msgstr "3. PHP HTML MAIL"
|
384 |
+
|
385 |
+
#: ../settings/settings-edit.php:225
|
386 |
+
msgid "4. PHP PLAINTEXT MAIL"
|
387 |
+
msgstr "4. PHP PLAINTEXT MAIL"
|
388 |
+
|
389 |
+
#: ../settings/settings-edit.php:232
|
390 |
+
msgid "Opt-in option"
|
391 |
+
msgstr "Option de validation"
|
392 |
+
|
393 |
+
#: ../settings/settings-edit.php:233
|
394 |
+
msgid ""
|
395 |
+
"Double Opt In, means subscribers need to confirm their email address by an "
|
396 |
+
"activation link sent them on a activation email message. Single Opt In, "
|
397 |
+
"means subscribers do not need to confirm their email address."
|
398 |
+
msgstr ""
|
399 |
+
"Double validation: pour valider leur abonnement, les utilisateurs doivent "
|
400 |
+
"cliquer sur un lien d'activation envoyé par email lors de leur inscription.\n"
|
401 |
+
"Simple validation: les utilisateurs n'ont pas besoin de confirmer leur "
|
402 |
+
"adresse email."
|
403 |
+
|
404 |
+
#: ../settings/settings-edit.php:237
|
405 |
+
msgid "Double Opt In"
|
406 |
+
msgstr "Doube validation"
|
407 |
+
|
408 |
+
#: ../settings/settings-edit.php:238 ../subscribers/view-subscriber-import.php:
|
409 |
+
#: 179 ../subscribers/view-subscriber-show.php:288
|
410 |
+
#: ../subscribers/view-subscriber- add.php:152
|
411 |
+
#: ../subscribers/view-subscriber-edit.php:151
|
412 |
+
msgid "Single Opt In"
|
413 |
+
msgstr "Simple validation"
|
414 |
+
|
415 |
+
#: ../settings/settings-edit.php:244
|
416 |
+
msgid "Image Size"
|
417 |
+
msgstr "Taille d'image"
|
418 |
+
|
419 |
+
#: ../settings/settings-edit.php:245
|
420 |
+
msgid ""
|
421 |
+
"Select image size for ###POSTIMAGE### to be shown in post notification email"
|
422 |
+
msgstr "Choisissez la taille d'image dans l'email pour ###POSTIMAGE###"
|
423 |
+
|
424 |
+
#: ../settings/settings-edit.php:249
|
425 |
+
msgid "Full Size"
|
426 |
+
msgstr "grande taille"
|
427 |
+
|
428 |
+
#: ../settings/settings-edit.php:250
|
429 |
+
msgid "Medium Size"
|
430 |
+
msgstr "taille moyenne"
|
431 |
+
|
432 |
+
#: ../settings/settings-edit.php:251
|
433 |
+
msgid "Thumbnail"
|
434 |
+
msgstr "miniature"
|
435 |
+
|
436 |
+
#: ../settings/settings-edit.php:257
|
437 |
+
msgid "Opt-in mail subject (Confirmation mail)"
|
438 |
+
msgstr "Sujet du message de validation (confirmation de l'email)"
|
439 |
+
|
440 |
+
#: ../settings/settings-edit.php:258
|
441 |
+
msgid ""
|
442 |
+
"Enter the subject for Double Opt In mail. This will send whenever subscriber "
|
443 |
+
"added email into our database."
|
444 |
+
msgstr ""
|
445 |
+
"Saisissez le sujet de l'email envoyé à l'utilisateur lorsqu'une nouvelle "
|
446 |
+
"adresse est ajoutée à votre base de données."
|
447 |
+
|
448 |
+
#: ../settings/settings-edit.php:264
|
449 |
+
msgid "Opt-in mail content (Confirmation mail)"
|
450 |
+
msgstr "Contenu du message de validation (confirmation de l'email)"
|
451 |
+
|
452 |
+
#: ../settings/settings-edit.php:265
|
453 |
+
msgid ""
|
454 |
+
"Enter the content for Double Opt In mail. This will send whenever subscriber "
|
455 |
+
"added email into our database."
|
456 |
+
msgstr ""
|
457 |
+
"Saisissez le contenu de l'email envoyé à l'utilisateur lorsqu'une nouvelle "
|
458 |
+
"adresse est ajoutée à votre base de données."
|
459 |
+
|
460 |
+
#: ../settings/settings-edit.php:271
|
461 |
+
msgid "Opt-in link (Confirmation link)"
|
462 |
+
msgstr "Lien de validation"
|
463 |
+
|
464 |
+
#: ../settings/settings-edit.php:272
|
465 |
+
msgid "Double Opt In confirmation link. You no need to change this value."
|
466 |
+
msgstr ""
|
467 |
+
"URL du lien de validation. Vous n'avez pas besoin de changer cette valeur."
|
468 |
+
|
469 |
+
#: ../settings/settings-edit.php:278
|
470 |
+
msgid "Text to display after email subscribed successfully"
|
471 |
+
msgstr "Texte à afficher suite à une inscription réussie."
|
472 |
+
|
473 |
+
#: ../settings/settings-edit.php:279
|
474 |
+
msgid ""
|
475 |
+
"This text will display once user clicked email confirmation link from opt-in "
|
476 |
+
"(confirmation) email content."
|
477 |
+
msgstr ""
|
478 |
+
"Ce texte est affiché lorsque l'utilisateur clique sur le lien de validation "
|
479 |
+
"dans l'email qu'il a reçu."
|
480 |
+
|
481 |
+
#: ../settings/settings-edit.php:286
|
482 |
+
msgid "Subscriber welcome email"
|
483 |
+
msgstr "Email de bienvenue"
|
484 |
+
|
485 |
+
#: ../settings/settings-edit.php:287
|
486 |
+
msgid "To send welcome mail to subscriber, This option must be set to YES."
|
487 |
+
msgstr ""
|
488 |
+
"Pour envoyer un message de bienvenue au nouvel abonné, cette option doit "
|
489 |
+
"être sur OUI"
|
490 |
+
|
491 |
+
#: ../settings/settings-edit.php:291 ../settings/settings-edit.php:319 ..
|
492 |
+
#: /subscribers/view-subscriber-sync.php:108
|
493 |
+
msgid "YES"
|
494 |
+
msgstr "OUI"
|
495 |
+
|
496 |
+
#: ../settings/settings-edit.php:292 ../settings/settings-edit.php:320 ..
|
497 |
+
#: /subscribers/view-subscriber-sync.php:107
|
498 |
+
msgid "NO"
|
499 |
+
msgstr "NON"
|
500 |
+
|
501 |
+
#: ../settings/settings-edit.php:298
|
502 |
+
msgid "Welcome mail subject"
|
503 |
+
msgstr "Sujet de l'email de bienvenue"
|
504 |
+
|
505 |
+
#: ../settings/settings-edit.php:299
|
506 |
+
msgid ""
|
507 |
+
"Enter the subject for subscriber welcome mail. This will send whenever email "
|
508 |
+
"subscribed (confirmed) successfully."
|
509 |
+
msgstr ""
|
510 |
+
"Saisissez le sujet de l'email envoyé à l'utilisateur pour lui souhaiter "
|
511 |
+
"bienvenue."
|
512 |
+
|
513 |
+
#: ../settings/settings-edit.php:305
|
514 |
+
msgid "Subscriber welcome mail content"
|
515 |
+
msgstr "Contenu de l'email de bienvenue"
|
516 |
+
|
517 |
+
#: ../settings/settings-edit.php:306
|
518 |
+
msgid ""
|
519 |
+
"Enter the content for subscriber welcome mail. This will send whenever email "
|
520 |
+
"subscribed (confirmed) successfully. (Keyword: ###NAME###)"
|
521 |
+
msgstr ""
|
522 |
+
"Saisissez le contenu de l'email envoyé à l'utilisateur pour lui souhaiter "
|
523 |
+
"bienvenue. (Mot clé: ###NAME###)"
|
524 |
+
|
525 |
+
#: ../settings/settings-edit.php:314
|
526 |
+
msgid "Mail to admin"
|
527 |
+
msgstr "Email aux administrateurs"
|
528 |
+
|
529 |
+
#: ../settings/settings-edit.php:315
|
530 |
+
msgid ""
|
531 |
+
"To send admin notifications for new subscriber, This option must be set to "
|
532 |
+
"YES."
|
533 |
+
msgstr ""
|
534 |
+
"Pour envoyer une notification aux administrateurs lors d'une nouvelle "
|
535 |
+
"inscription, cette option doit être sur OUI."
|
536 |
+
|
537 |
+
#: ../settings/settings-edit.php:326
|
538 |
+
msgid "Admin email addresses"
|
539 |
+
msgstr "Adresses emails des administrateurs"
|
540 |
+
|
541 |
+
#: ../settings/settings-edit.php:327
|
542 |
+
msgid ""
|
543 |
+
"Enter the admin email addresses that should receive notifications (separate "
|
544 |
+
"by comma)."
|
545 |
+
msgstr ""
|
546 |
+
"Entrez les adresses des administrateurs qui recevront les notifications "
|
547 |
+
"(séparés par une virgule)"
|
548 |
+
|
549 |
+
#: ../settings/settings-edit.php:333
|
550 |
+
msgid "Admin mail subject"
|
551 |
+
msgstr "Sujet de la notification"
|
552 |
+
|
553 |
+
#: ../settings/settings-edit.php:334
|
554 |
+
msgid ""
|
555 |
+
"Enter the subject for admin mail. This will send whenever new email added "
|
556 |
+
"and confirmed into our database."
|
557 |
+
msgstr ""
|
558 |
+
"Saisissez le sujet de la notification envoyée aux administrateurs lors d'une "
|
559 |
+
"nouvelle inscription."
|
560 |
+
|
561 |
+
#: ../settings/settings-edit.php:340
|
562 |
+
msgid "Admin mail content"
|
563 |
+
msgstr "Contenu de l'email administrateur"
|
564 |
+
|
565 |
+
#: ../settings/settings-edit.php:341
|
566 |
+
msgid ""
|
567 |
+
"Enter the mail content for admin. This will send whenever new email added "
|
568 |
+
"and confirmed into our database. (Keyword: ###NAME###, ###EMAIL###)"
|
569 |
+
msgstr ""
|
570 |
+
"Contenu de l'email envoyé à l'administrateur lorsqu'un nouvel abonné est "
|
571 |
+
"ajouté et confirmé dans votre base de données. (Mots clés: ###NAME###, "
|
572 |
+
"###EMAIL###)"
|
573 |
+
|
574 |
+
#: ../settings/settings-edit.php:348
|
575 |
+
msgid "Unsubscribe link"
|
576 |
+
msgstr "Lien de désabonnement"
|
577 |
+
|
578 |
+
#: ../settings/settings-edit.php:349
|
579 |
+
msgid "Unsubscribe link. You no need to change this value."
|
580 |
+
msgstr ""
|
581 |
+
"Lien de désabonnement. Vous n'avez pas besoin de modifier cette valeur."
|
582 |
+
|
583 |
+
#: ../settings/settings-edit.php:355
|
584 |
+
msgid "Unsubscribe text in mail"
|
585 |
+
msgstr "Texte de désabonnement dans les emails"
|
586 |
+
|
587 |
+
#: ../settings/settings-edit.php:356
|
588 |
+
msgid ""
|
589 |
+
"Enter the text for unsubscribe link. This text is to add unsubscribe link "
|
590 |
+
"with newsletter. (Keyword: ###LINK###)"
|
591 |
+
msgstr ""
|
592 |
+
"Texte pour se désabonner qui sera placé au pied de l'email envoyé aux "
|
593 |
+
"abonnés. (mot clé: ###LINK###)"
|
594 |
+
|
595 |
+
#: ../settings/settings-edit.php:362
|
596 |
+
msgid "Text to display after email unsubscribed"
|
597 |
+
msgstr "Texte à afficher après une désinscription aux e-mail"
|
598 |
+
|
599 |
+
#: ../settings/settings-edit.php:363
|
600 |
+
msgid ""
|
601 |
+
"This text will display once user clicked unsubscribed link from our "
|
602 |
+
"newsletter."
|
603 |
+
msgstr ""
|
604 |
+
"Ce texte sera affiché lorsque l'utilisateur clique sur le lien de "
|
605 |
+
"désabonnement dans un email qu'il a reçu."
|
606 |
+
|
607 |
+
#: ../settings/settings-edit.php:370
|
608 |
+
msgid "Message 1"
|
609 |
+
msgstr "Message 1"
|
610 |
+
|
611 |
+
#: ../settings/settings-edit.php:371
|
612 |
+
msgid "Default message to display if any issue on confirmation link."
|
613 |
+
msgstr ""
|
614 |
+
"Message à afficher par défaut s'il y a un problème sur le lien de "
|
615 |
+
"confirmation."
|
616 |
+
|
617 |
+
#: ../settings/settings-edit.php:377
|
618 |
+
msgid "Message 2"
|
619 |
+
msgstr "Message 2"
|
620 |
+
|
621 |
+
#: ../settings/settings-edit.php:378
|
622 |
+
msgid "Default message to display if any issue on unsubscribe link."
|
623 |
+
msgstr ""
|
624 |
+
"Message à afficher par défaut s'il y a un problème sur le lien de "
|
625 |
+
"désinscription."
|
626 |
+
|
627 |
+
#: ../settings/settings-edit.php:385
|
628 |
+
msgid "Sent report subject"
|
629 |
+
msgstr "Sujet pour le rapport d'envoi"
|
630 |
+
|
631 |
+
#: ../settings/settings-edit.php:386
|
632 |
+
msgid "Mail subject for sent mail report."
|
633 |
+
msgstr "Saisissez le sujet pour le rapport d'envoi"
|
634 |
+
|
635 |
+
#: ../settings/settings-edit.php:392
|
636 |
+
msgid "Sent report content"
|
637 |
+
msgstr "Contenu du rapport d'envoi"
|
638 |
+
|
639 |
+
#: ../settings/settings-edit.php:393
|
640 |
+
msgid ""
|
641 |
+
"Mail content for sent mail report. (Keyword: ###COUNT###, ###UNIQUE###, "
|
642 |
+
"###STARTTIME###, ###ENDTIME###)"
|
643 |
+
msgstr ""
|
644 |
+
"Contenu du rapport d'envoi.(Mots clés: ###COUNT###, ###UNIQUE###, "
|
645 |
+
"###STARTTIME###, ###ENDTIME###)"
|
646 |
+
|
647 |
+
#: ../settings/settings-edit.php:403
|
648 |
+
msgid "Save Settings"
|
649 |
+
msgstr "Enregistrer les paramètres"
|
650 |
+
|
651 |
+
#: ../settings/setting-sync.php:15
|
652 |
+
msgid "Table sync completed successfully."
|
653 |
+
msgstr "Synchronisation de la table effectuée."
|
654 |
+
|
655 |
+
#: ../settings/setting-sync.php:28
|
656 |
+
msgid "Sync plugin tables"
|
657 |
+
msgstr "Synchronisation des tables"
|
658 |
+
|
659 |
+
#: ../settings/setting-sync.php:32
|
660 |
+
msgid "Click to sync tables"
|
661 |
+
msgstr "Cliquez pour synchroniser les tables"
|
662 |
+
|
663 |
+
#: ../sentmail/sentmail-preview.php:28 ../compose/compose-preview.php:28
|
664 |
+
msgid "Preview Mail"
|
665 |
+
msgstr "Aperçu de l'email"
|
666 |
+
|
667 |
+
#: ../sentmail/sentmail-preview.php:43
|
668 |
+
msgid "Back"
|
669 |
+
msgstr "Retour"
|
670 |
+
|
671 |
+
#: ../sentmail/sentmail-show.php:42
|
672 |
+
msgid "Successfully deleted all reports except latest 10."
|
673 |
+
msgstr "Les rapports ont été supprimés sauf les 10 derniers."
|
674 |
+
|
675 |
+
#: ../sentmail/sentmail-show.php:85 ../sentmail/deliverreport-show.php:49
|
676 |
+
msgid " << "
|
677 |
+
msgstr " << "
|
678 |
+
|
679 |
+
#: ../sentmail/sentmail-show.php:86 ../sentmail/deliverreport-show.php:50
|
680 |
+
msgid " >> "
|
681 |
+
msgstr " >> "
|
682 |
+
|
683 |
+
#: ../sentmail/sentmail-show.php:97 ../classes/es-register.php:163
|
684 |
+
#: ../classes/es- register.php:164
|
685 |
+
msgid "Sent Mails"
|
686 |
+
msgstr "Emails envoyés"
|
687 |
+
|
688 |
+
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121
|
689 |
+
msgid "View Reports"
|
690 |
+
msgstr "Afficher les rapports"
|
691 |
+
|
692 |
+
#: ../sentmail/sentmail-show.php:109 ../sentmail/sentmail-show.php:122 ..
|
693 |
+
#: /compose/compose-show.php:107
|
694 |
+
msgid "Preview"
|
695 |
+
msgstr "Aperçu"
|
696 |
+
|
697 |
+
#: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123
|
698 |
+
msgid "Source"
|
699 |
+
msgstr "Source"
|
700 |
+
|
701 |
+
#: ../sentmail/sentmail-show.php:111 ../sentmail/sentmail-show.php:124 ..
|
702 |
+
#: /sentmail/deliverreport-show.php:75 ../sentmail/deliverreport-show.php:87
|
703 |
+
#: /subscribers/view-subscriber-show.php:313
|
704 |
+
#: ../subscribers/view-subscriber-show. php:327 ../compose/compose-edit.php:109
|
705 |
+
#: ../compose/compose-add.php:98 /compose/compose-show.php:79
|
706 |
+
#: ../compose/compose-show.php:87
|
707 |
+
msgid "Status"
|
708 |
+
msgstr "Statut"
|
709 |
+
|
710 |
+
#: ../sentmail/sentmail-show.php:112 ../sentmail/sentmail-show.php:125 ..
|
711 |
+
#: /sentmail/deliverreport-show.php:76 ../sentmail/deliverreport-show.php:88
|
712 |
+
#: /compose/compose-show.php:80 ../compose/compose-show.php:88
|
713 |
+
msgid "Type"
|
714 |
+
msgstr "Type"
|
715 |
+
|
716 |
+
#: ../sentmail/sentmail-show.php:113 ../sentmail/sentmail-show.php:126
|
717 |
+
msgid "Start Date"
|
718 |
+
msgstr "Date de début"
|
719 |
+
|
720 |
+
#: ../sentmail/sentmail-show.php:114 ../sentmail/sentmail-show.php:127
|
721 |
+
msgid "End Date"
|
722 |
+
msgstr "Date de fin"
|
723 |
+
|
724 |
+
#: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128
|
725 |
+
msgid "Total"
|
726 |
+
msgstr "Total"
|
727 |
+
|
728 |
+
#: ../sentmail/sentmail-show.php:116 ../sentmail/sentmail-show.php:129 ..
|
729 |
+
#: /subscribers/view-subscriber-show.php:316
|
730 |
+
#: ../subscribers/view-subscriber-show. php:330
|
731 |
+
#: ../subscribers/view-subscriber-export.php:41 ../subscribers/view-
|
732 |
+
#: subscriber-export.php:49
|
733 |
+
msgid "Action"
|
734 |
+
msgstr "Action"
|
735 |
+
|
736 |
+
#: ../sentmail/sentmail-show.php:174
|
737 |
+
msgid "Optimize Table & Delete Records"
|
738 |
+
msgstr "Optimiser la table"
|
739 |
+
|
740 |
+
#: ../sentmail/sentmail-show.php:183
|
741 |
+
msgid ""
|
742 |
+
"Note: Please click on <strong>Optimize Table & Delete Records</strong> "
|
743 |
+
"button to delete all reports except latest 10."
|
744 |
+
msgstr ""
|
745 |
+
"Note: cliquez sur le bouton <strong>Optimiser la table</strong> pour "
|
746 |
+
"supprimer tous les enregistrements sauf les 10 derniers."
|
747 |
+
|
748 |
+
#: ../sentmail/deliverreport-show.php:13
|
749 |
+
msgid "Oops.. Unexpected error occurred. Please try again."
|
750 |
+
msgstr "Oops... Erreur inattendue. Merci de réessayer."
|
751 |
+
|
752 |
+
#: ../sentmail/deliverreport-show.php:61
|
753 |
+
msgid "Delivery Report"
|
754 |
+
msgstr "Rapport d'envoi"
|
755 |
+
|
756 |
+
#: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:84
|
757 |
+
#: .. /subscribers/view-subscriber-show.php:310
|
758 |
+
#: ../subscribers/view-subscriber-show. php:324
|
759 |
+
#: ../subscribers/view-subscriber-export.php:38 ../subscribers/view-
|
760 |
+
#: subscriber-export.php:46
|
761 |
+
msgid "Sno"
|
762 |
+
msgstr "n°"
|
763 |
+
|
764 |
+
#: ../sentmail/deliverreport-show.php:73 ../sentmail/deliverreport-show.php:85
|
765 |
+
msgid "Email"
|
766 |
+
msgstr "Email"
|
767 |
+
|
768 |
+
#: ../sentmail/deliverreport-show.php:74 ../sentmail/deliverreport-show.php:86
|
769 |
+
msgid "Sent Date"
|
770 |
+
msgstr "Date d'envoi"
|
771 |
+
|
772 |
+
#: ../sentmail/deliverreport-show.php:77 ../sentmail/deliverreport-show.php:89
|
773 |
+
msgid "Viewed Status"
|
774 |
+
msgstr "Statut"
|
775 |
+
|
776 |
+
#: ../sentmail/deliverreport-show.php:78 ../sentmail/deliverreport-show.php:90
|
777 |
+
msgid "Viewed Date"
|
778 |
+
msgstr "Date"
|
779 |
+
|
780 |
+
#: ../sentmail/deliverreport-show.php:79 ../sentmail/deliverreport-show.php:91
|
781 |
+
msgid "Database ID"
|
782 |
+
msgstr "ID"
|
783 |
+
|
784 |
+
#: ../subscribers/view-subscriber-import.php:43
|
785 |
+
msgid ""
|
786 |
+
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
787 |
+
"the Group name."
|
788 |
+
msgstr ""
|
789 |
+
"Erreurr: Les caractères spéciaux (['^$%&*()}{@#~?><>,|=_+\\\"]) ne sont pas "
|
790 |
+
"autorisés pour le nom du groupe."
|
791 |
+
|
792 |
+
#: ../subscribers/view-subscriber-import.php:91
|
793 |
+
msgid "email imported."
|
794 |
+
msgstr "email importé."
|
795 |
+
|
796 |
+
#: ../subscribers/view-subscriber-import.php:92
|
797 |
+
msgid "email already exists."
|
798 |
+
msgstr "email existant."
|
799 |
+
|
800 |
+
#: ../subscribers/view-subscriber-import.php:93
|
801 |
+
msgid "email are invalid."
|
802 |
+
msgstr "email non valide."
|
803 |
+
|
804 |
+
#: ../subscribers/view-subscriber-import.php:96 ../subscribers/view-subscriber-
|
805 |
+
#: import.php:125
|
806 |
+
msgid "Click here"
|
807 |
+
msgstr "Cliquez ici"
|
808 |
+
|
809 |
+
#: ../subscribers/view-subscriber-import.php:96 ../subscribers/view-subscriber-
|
810 |
+
#: import.php:125
|
811 |
+
msgid " to view details."
|
812 |
+
msgstr " pour voir les détails."
|
813 |
+
|
814 |
+
#: ../subscribers/view-subscriber-import.php:104
|
815 |
+
msgid "File Upload Failed."
|
816 |
+
msgstr "Le téléchargement a échoué."
|
817 |
+
|
818 |
+
#: ../subscribers/view-subscriber-import.php:143
|
819 |
+
msgid "Import Email Addresses"
|
820 |
+
msgstr "Import d'adresses email"
|
821 |
+
|
822 |
+
#: ../subscribers/view-subscriber-import.php:144
|
823 |
+
#: ../subscribers/view-subscriber- show.php:208
|
824 |
+
#: ../subscribers/view-subscriber-export.php:28 ../subscribers/view-
|
825 |
+
#: subscriber-add.php:112 ../subscribers/view-subscriber-edit.php:111 ..
|
826 |
+
#: /subscribers/view-subscriber-sync.php:91
|
827 |
+
msgid "Add New Subscriber"
|
828 |
+
msgstr "Ajouter un abonné"
|
829 |
+
|
830 |
+
#: ../subscribers/view-subscriber-import.php:145
|
831 |
+
#: ../subscribers/view-subscriber- show.php:210
|
832 |
+
#: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
|
833 |
+
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:93
|
834 |
+
msgid "Export"
|
835 |
+
msgstr "Exporter"
|
836 |
+
|
837 |
+
#: ../subscribers/view-subscriber-import.php:146
|
838 |
+
#: ../subscribers/view-subscriber- show.php:211
|
839 |
+
#: ../subscribers/view-subscriber-export.php:30 ../subscribers/view-
|
840 |
+
#: subscriber-add.php:115 ../subscribers/view-subscriber-edit.php:114 ..
|
841 |
+
#: /subscribers/view-subscriber-sync.php:144
|
842 |
+
msgid "Sync"
|
843 |
+
msgstr "Synchroniser"
|
844 |
+
|
845 |
+
#: ../subscribers/view-subscriber-import.php:156
|
846 |
+
msgid "Select CSV file"
|
847 |
+
msgstr "Sélectionnez un fichier CSV"
|
848 |
+
|
849 |
+
#: ../subscribers/view-subscriber-import.php:158
|
850 |
+
msgid "Check CSV structure "
|
851 |
+
msgstr "Vérifiez la structure du fichier CSV"
|
852 |
+
|
853 |
+
#: ../subscribers/view-subscriber-import.php:159
|
854 |
+
msgid "from here"
|
855 |
+
msgstr "ici"
|
856 |
+
|
857 |
+
#: ../subscribers/view-subscriber-import.php:170
|
858 |
+
msgid "Select Subscribers Email Status"
|
859 |
+
msgstr "Sélectionnez le statut des abonnés"
|
860 |
+
|
861 |
+
#: ../subscribers/view-subscriber-import.php:176
|
862 |
+
#: ../subscribers/view-subscriber- show.php:285
|
863 |
+
#: ../subscribers/view-subscriber-add.php:149 ../subscribers/view-
|
864 |
+
#: subscriber-edit.php:148
|
865 |
+
msgid "Confirmed"
|
866 |
+
msgstr "Confirmé"
|
867 |
+
|
868 |
+
#: ../subscribers/view-subscriber-import.php:177
|
869 |
+
#: ../subscribers/view-subscriber- show.php:286
|
870 |
+
#: ../subscribers/view-subscriber-add.php:150 ../subscribers/view-
|
871 |
+
#: subscriber-edit.php:149
|
872 |
+
msgid "Unconfirmed"
|
873 |
+
msgstr "Non confirmé"
|
874 |
+
|
875 |
+
#: ../subscribers/view-subscriber-import.php:178
|
876 |
+
#: ../subscribers/view-subscriber- show.php:287
|
877 |
+
#: ../subscribers/view-subscriber-add.php:151 ../subscribers/view-
|
878 |
+
#: subscriber-edit.php:150
|
879 |
+
msgid "Unsubscribed"
|
880 |
+
msgstr "Désabonné"
|
881 |
+
|
882 |
+
#: ../subscribers/view-subscriber-import.php:186
|
883 |
+
msgid "Select (or) Create Group for Subscribers"
|
884 |
+
msgstr "Sélectionnez ou créez un groupe d'abonnés"
|
885 |
+
|
886 |
+
#: ../subscribers/view-subscriber-import.php:203
|
887 |
+
#: ../subscribers/view-subscriber- add.php:175
|
888 |
+
msgid "(or)"
|
889 |
+
msgstr "(ou)"
|
890 |
+
|
891 |
+
#: ../subscribers/view-subscriber-import.php:211
|
892 |
+
#: ../subscribers/view-subscriber- show.php:209
|
893 |
+
#: ../subscribers/view-subscriber-export.php:29 ../subscribers/view-
|
894 |
+
#: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
|
895 |
+
#: /subscribers/view-subscriber-sync.php:92
|
896 |
+
msgid "Import"
|
897 |
+
msgstr "Importer"
|
898 |
+
|
899 |
+
#: ../subscribers/view-subscriber-show.php:16 ../compose/compose-show.php:13 ..
|
900 |
+
#: /sendmail/sendmail.php:17
|
901 |
+
msgid "Click Here"
|
902 |
+
msgstr "Cliquez ici"
|
903 |
+
|
904 |
+
#: ../subscribers/view-subscriber-show.php:55
|
905 |
+
#: ../subscribers/view-subscriber-show. php:94
|
906 |
+
msgid "Record deleted."
|
907 |
+
msgstr "Enregistrement supprimé."
|
908 |
+
|
909 |
+
#: ../subscribers/view-subscriber-show.php:66
|
910 |
+
msgid ""
|
911 |
+
"To send confirmation email, please change the Opt-in option to Double Opt In."
|
912 |
+
msgstr ""
|
913 |
+
"Pour envoyer un email de confirmation, cochez l'option double validation."
|
914 |
+
|
915 |
+
#: ../subscribers/view-subscriber-show.php:74
|
916 |
+
msgid "Confirmation email resent successfully."
|
917 |
+
msgstr "L'email de confirmation a été renvoyé."
|
918 |
+
|
919 |
+
#: ../subscribers/view-subscriber-show.php:99
|
920 |
+
#: ../subscribers/view-subscriber-show. php:138
|
921 |
+
#: ../subscribers/view-subscriber-show.php:176
|
922 |
+
msgid "Oops, No record was selected."
|
923 |
+
msgstr "Oups, rien n'a été sélectionné."
|
924 |
+
|
925 |
+
#: ../subscribers/view-subscriber-show.php:114
|
926 |
+
msgid ""
|
927 |
+
"To send confirmation mail, please change the Opt-in option to Double Opt In."
|
928 |
+
msgstr ""
|
929 |
+
"Pour envoyer un email de confirmation, cochez l'option double validation."
|
930 |
+
|
931 |
+
#: ../subscribers/view-subscriber-show.php:133
|
932 |
+
msgid "Confirmation email(s) Resent Successfully."
|
933 |
+
msgstr "Email(s) de confirmation renvoyé(s)."
|
934 |
+
|
935 |
+
#: ../subscribers/view-subscriber-show.php:162
|
936 |
+
msgid "Selected subscribers group updated."
|
937 |
+
msgstr "Groupe mis à jour"
|
938 |
+
|
939 |
+
#: ../subscribers/view-subscriber-show.php:167
|
940 |
+
msgid "Oops, New group name was not selected."
|
941 |
+
msgstr "Oups, vous n'avez pas saisi le nom du groupe."
|
942 |
+
|
943 |
+
#: ../subscribers/view-subscriber-show.php:207
|
944 |
+
msgid "View Subscribers"
|
945 |
+
msgstr "Abonnés"
|
946 |
+
|
947 |
+
#: ../subscribers/view-subscriber-show.php:243
|
948 |
+
msgid "Bulk Actions"
|
949 |
+
msgstr "Actions groupées"
|
950 |
+
|
951 |
+
#: ../subscribers/view-subscriber-show.php:245 ../subscribers/view-subscriber-
|
952 |
+
#: show.php:370
|
953 |
+
msgid "Resend Confirmation"
|
954 |
+
msgstr "Renvoyer la confirmation"
|
955 |
+
|
956 |
+
#: ../subscribers/view-subscriber-show.php:249
|
957 |
+
msgid "Select Group"
|
958 |
+
msgstr "Choix du groupe"
|
959 |
+
|
960 |
+
#: ../subscribers/view-subscriber-show.php:263
|
961 |
+
msgid "Apply"
|
962 |
+
msgstr "Appliquer"
|
963 |
+
|
964 |
+
#: ../subscribers/view-subscriber-show.php:267
|
965 |
+
msgid "All Groups"
|
966 |
+
msgstr "Tous les groupes"
|
967 |
+
|
968 |
+
#: ../subscribers/view-subscriber-show.php:284
|
969 |
+
msgid "All Status"
|
970 |
+
msgstr "Tous les statuts"
|
971 |
+
|
972 |
+
#: ../subscribers/view-subscriber-show.php:291
|
973 |
+
msgid "1 to 200 emails"
|
974 |
+
msgstr "1 - 200"
|
975 |
+
|
976 |
+
#: ../subscribers/view-subscriber-show.php:292
|
977 |
+
msgid "201 to 400"
|
978 |
+
msgstr "201 - 400"
|
979 |
+
|
980 |
+
#: ../subscribers/view-subscriber-show.php:293
|
981 |
+
msgid "401 to 600"
|
982 |
+
msgstr "401 - 600"
|
983 |
+
|
984 |
+
#: ../subscribers/view-subscriber-show.php:294
|
985 |
+
msgid "601 to 800"
|
986 |
+
msgstr "601 - 800"
|
987 |
+
|
988 |
+
#: ../subscribers/view-subscriber-show.php:295
|
989 |
+
msgid "801 to 1000"
|
990 |
+
msgstr "801 - 1000"
|
991 |
+
|
992 |
+
#: ../subscribers/view-subscriber-show.php:296
|
993 |
+
msgid "1001 to 2000"
|
994 |
+
msgstr "1001 - 2000"
|
995 |
+
|
996 |
+
#: ../subscribers/view-subscriber-show.php:297
|
997 |
+
msgid "2001 to 5000"
|
998 |
+
msgstr "2001 - 5000"
|
999 |
+
|
1000 |
+
#: ../subscribers/view-subscriber-show.php:298
|
1001 |
+
msgid "5001 to 10000"
|
1002 |
+
msgstr "5001 - 10000"
|
1003 |
+
|
1004 |
+
#: ../subscribers/view-subscriber-show.php:299
|
1005 |
+
msgid "Display All"
|
1006 |
+
msgstr "Tout afficher"
|
1007 |
+
|
1008 |
+
#: ../subscribers/view-subscriber-show.php:311 ../subscribers/view-subscriber-
|
1009 |
+
#: show.php:325
|
1010 |
+
msgid "Email Address"
|
1011 |
+
msgstr "Adresses email"
|
1012 |
+
|
1013 |
+
#: ../subscribers/view-subscriber-show.php:312 ../subscribers/view-subscriber-
|
1014 |
+
#: show.php:326 ../classes/es-register.php:494 ../classes/es-loadwidget.php:24
|
1015 |
+
msgid "Name"
|
1016 |
+
msgstr "Nom"
|
1017 |
+
|
1018 |
+
#: ../subscribers/view-subscriber-show.php:314 ../subscribers/view-subscriber-
|
1019 |
+
#: show.php:328
|
1020 |
+
msgid "Group"
|
1021 |
+
msgstr "Groupe"
|
1022 |
+
|
1023 |
+
#: ../subscribers/view-subscriber-show.php:315 ../subscribers/view-subscriber-
|
1024 |
+
#: show.php:329
|
1025 |
+
msgid "Submission Date<br>(YYYY-MM-DD)"
|
1026 |
+
msgstr "Date d'abonnement"
|
1027 |
+
|
1028 |
+
#: ../subscribers/view-subscriber-export.php:27
|
1029 |
+
msgid "Export Email Addresses"
|
1030 |
+
msgstr "Export des adresses email"
|
1031 |
+
|
1032 |
+
#: ../subscribers/view-subscriber-export.php:39 ../subscribers/view-subscriber-
|
1033 |
+
#: export.php:47
|
1034 |
+
msgid "Type of List to Export"
|
1035 |
+
msgstr "Type de liste à exporter"
|
1036 |
+
|
1037 |
+
#: ../subscribers/view-subscriber-export.php:40 ../subscribers/view-subscriber-
|
1038 |
+
#: export.php:48
|
1039 |
+
msgid "Total Emails"
|
1040 |
+
msgstr "Nombre d'emails"
|
1041 |
+
|
1042 |
+
#: ../subscribers/view-subscriber-export.php:54
|
1043 |
+
msgid "1"
|
1044 |
+
msgstr "1"
|
1045 |
+
|
1046 |
+
#: ../subscribers/view-subscriber-export.php:55
|
1047 |
+
msgid "All Subscribers List"
|
1048 |
+
msgstr "Toutes les listes d'abonnés"
|
1049 |
+
|
1050 |
+
#: ../subscribers/view-subscriber-export.php:57 ../subscribers/view-subscriber-
|
1051 |
+
#: export.php:63 ../subscribers/view-subscriber-export.php:69
|
1052 |
+
msgid "Click to Export in CSV"
|
1053 |
+
msgstr "Exporter en CSV"
|
1054 |
+
|
1055 |
+
#: ../subscribers/view-subscriber-export.php:60
|
1056 |
+
msgid "2"
|
1057 |
+
msgstr "2"
|
1058 |
+
|
1059 |
+
#: ../subscribers/view-subscriber-export.php:61
|
1060 |
+
msgid "WordPress Registered Users"
|
1061 |
+
msgstr "Utilisateurs du site"
|
1062 |
+
|
1063 |
+
#: ../subscribers/view-subscriber-export.php:66
|
1064 |
+
msgid "3"
|
1065 |
+
msgstr "3"
|
1066 |
+
|
1067 |
+
#: ../subscribers/view-subscriber-export.php:67
|
1068 |
+
msgid "Commented Authors"
|
1069 |
+
msgstr "Auteurs de commentaires"
|
1070 |
+
|
1071 |
+
#: ../subscribers/view-subscriber-add.php:35
|
1072 |
+
#: ../subscribers/view-subscriber-edit. php:53
|
1073 |
+
msgid "Please enter subscriber email address."
|
1074 |
+
msgstr "Veuillez saisir l'email de l'abonné."
|
1075 |
+
|
1076 |
+
#: ../subscribers/view-subscriber-add.php:48
|
1077 |
+
msgid "Please select or create your group for this email."
|
1078 |
+
msgstr "Merci de sélectionner ou créer votre groupe pour cet e-mail."
|
1079 |
+
|
1080 |
+
#: ../subscribers/view-subscriber-add.php:55
|
1081 |
+
msgid ""
|
1082 |
+
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1083 |
+
"the group name."
|
1084 |
+
msgstr ""
|
1085 |
+
"Erreur: les caractères (['^$%&*()}{@#~?><>,|=_+\\\"]) ne sont pas admis "
|
1086 |
+
"dans le nom d'un groupe."
|
1087 |
+
|
1088 |
+
#: ../subscribers/view-subscriber-add.php:65
|
1089 |
+
msgid "Subscriber has been saved."
|
1090 |
+
msgstr "Abonné enregistré."
|
1091 |
+
|
1092 |
+
#: ../subscribers/view-subscriber-add.php:67
|
1093 |
+
msgid "Subscriber already exists."
|
1094 |
+
msgstr "Cet abonné existe déjà."
|
1095 |
+
|
1096 |
+
#: ../subscribers/view-subscriber-add.php:70
|
1097 |
+
msgid "Invalid Email."
|
1098 |
+
msgstr "Email non valide."
|
1099 |
+
|
1100 |
+
#: ../subscribers/view-subscriber-add.php:124
|
1101 |
+
msgid "Enter Subscriber's Full name"
|
1102 |
+
msgstr "Nom complet"
|
1103 |
+
|
1104 |
+
#: ../subscribers/view-subscriber-add.php:134
|
1105 |
+
msgid "Enter Subscriber's Email Address"
|
1106 |
+
msgstr "Adresse email"
|
1107 |
+
|
1108 |
+
#: ../subscribers/view-subscriber-add.php:144
|
1109 |
+
msgid "Select Subscriber's Status"
|
1110 |
+
msgstr "Statut"
|
1111 |
+
|
1112 |
+
#: ../subscribers/view-subscriber-add.php:159
|
1113 |
+
msgid "Select (or) Create Group for Subscriber"
|
1114 |
+
msgstr "Groupe"
|
1115 |
+
|
1116 |
+
#: ../subscribers/view-subscriber-add.php:184
|
1117 |
+
msgid "Add Subscriber"
|
1118 |
+
msgstr "Ajouter un abonné"
|
1119 |
+
|
1120 |
+
#: ../subscribers/view-subscriber-edit.php:63
|
1121 |
+
msgid "Error: Special characters are not allowed in the group name."
|
1122 |
+
msgstr ""
|
1123 |
+
"Erreur: les caractères spéciaux ne sont pas autorisés dans le nom du groupe."
|
1124 |
+
|
1125 |
+
#: ../subscribers/view-subscriber-edit.php:73
|
1126 |
+
msgid "Subscriber details updated."
|
1127 |
+
msgstr "Informations sur l'abonné mise à jour."
|
1128 |
+
|
1129 |
+
#: ../subscribers/view-subscriber-edit.php:75
|
1130 |
+
msgid "Subscriber already exists for this group."
|
1131 |
+
msgstr "Cet abonné fait déjà parti de ce groupe."
|
1132 |
+
|
1133 |
+
#: ../subscribers/view-subscriber-edit.php:110
|
1134 |
+
msgid "Edit Subscriber"
|
1135 |
+
msgstr "Modifier un abonné"
|
1136 |
+
|
1137 |
+
#: ../subscribers/view-subscriber-edit.php:123
|
1138 |
+
msgid "Edit Subscriber's Full Name"
|
1139 |
+
msgstr "Nom complet"
|
1140 |
+
|
1141 |
+
#: ../subscribers/view-subscriber-edit.php:133
|
1142 |
+
msgid "Edit Subscriber's Email Address"
|
1143 |
+
msgstr "Adresse email"
|
1144 |
+
|
1145 |
+
#: ../subscribers/view-subscriber-edit.php:143
|
1146 |
+
msgid "Update Subscriber's Status"
|
1147 |
+
msgstr "Statut"
|
1148 |
+
|
1149 |
+
#: ../subscribers/view-subscriber-edit.php:158
|
1150 |
+
msgid "Update Subscriber's Group"
|
1151 |
+
msgstr "Groupe"
|
1152 |
+
|
1153 |
+
#: ../subscribers/view-subscriber-sync.php:35
|
1154 |
+
msgid "Please select default group to newly registered user."
|
1155 |
+
msgstr ""
|
1156 |
+
"Veuillez sélectionner un groupe pour les nouveaux utilisateurs enregistrés "
|
1157 |
+
"sur le site."
|
1158 |
+
|
1159 |
+
#: ../subscribers/view-subscriber-sync.php:49
|
1160 |
+
msgid "Emails Successfully Synced."
|
1161 |
+
msgstr "Emails synchronisés."
|
1162 |
+
|
1163 |
+
#: ../subscribers/view-subscriber-sync.php:90
|
1164 |
+
msgid "Sync Email"
|
1165 |
+
msgstr "Synchro Email"
|
1166 |
+
|
1167 |
+
#: ../subscribers/view-subscriber-sync.php:102
|
1168 |
+
msgid "Sync newly registered users to subscribers list"
|
1169 |
+
msgstr ""
|
1170 |
+
"Ajouter les nouveaux utilisateurs inscrits au site à un groupe d'abonnés"
|
1171 |
+
|
1172 |
+
#: ../subscribers/view-subscriber-sync.php:115
|
1173 |
+
msgid "Select group to add newly registered users to"
|
1174 |
+
msgstr "Sélectionnez un groupe auquel ajouter les nouveaux abonnés du site."
|
1175 |
+
|
1176 |
+
#: ../cron/cron-add.php:23
|
1177 |
+
msgid "Please enter valid mail count."
|
1178 |
+
msgstr "Veuillez saisir un nombre d'email valide."
|
1179 |
+
|
1180 |
+
#: ../cron/cron-add.php:33
|
1181 |
+
msgid "Cron details successfully updated."
|
1182 |
+
msgstr "Paramètres de tâche cron mis à jour."
|
1183 |
+
|
1184 |
+
#: ../cron/cron-add.php:74
|
1185 |
+
msgid "Cron Details"
|
1186 |
+
msgstr "Paramètres tâche CRON"
|
1187 |
+
|
1188 |
+
#: ../cron/cron-add.php:78
|
1189 |
+
msgid "Cron job URL"
|
1190 |
+
msgstr "URL de la tâche CRON"
|
1191 |
+
|
1192 |
+
#: ../cron/cron-add.php:80
|
1193 |
+
msgid ""
|
1194 |
+
"This is your cron job URL. It is a readonly field and you are advised not to "
|
1195 |
+
"modify it."
|
1196 |
+
msgstr "URL à utiliser pour paramétrer la tâche CRON sur votre serveur."
|
1197 |
+
|
1198 |
+
#: ../cron/cron-add.php:82
|
1199 |
+
msgid "Mail Count"
|
1200 |
+
msgstr "Nombres d'email"
|
1201 |
+
|
1202 |
+
#: ../cron/cron-add.php:84
|
1203 |
+
msgid ""
|
1204 |
+
"Enter number of mails you want to send per hour/trigger (Your web host has "
|
1205 |
+
"limits. We suggest 50 emails per hour to be safe)."
|
1206 |
+
msgstr ""
|
1207 |
+
"Entrez le nombre d'email à envoyer par heure (Votre hébergeur vous limite. "
|
1208 |
+
"Nous suggérons 50 emails par heure par sécurité)"
|
1209 |
+
|
1210 |
+
#: ../cron/cron-add.php:86
|
1211 |
+
msgid "Admin Report"
|
1212 |
+
msgstr "Rapport envoyé aux administrateurs"
|
1213 |
+
|
1214 |
+
#: ../cron/cron-add.php:88
|
1215 |
+
msgid ""
|
1216 |
+
"Send above mail to admin whenever cron URL is triggered from your server."
|
1217 |
+
"<br />(Available Keywords: ###DATE###, ###SUBJECT###, ###COUNT###)"
|
1218 |
+
msgstr ""
|
1219 |
+
"Ce mail est envoyé à l'administrateur lorsque la tâche CRON est exécutée."
|
1220 |
+
"<br />(Mots clés autorisés: ###DATE###, ###SUBJECT###, ###COUNT###)"
|
1221 |
+
|
1222 |
+
#: ../cron/cron-add.php:97
|
1223 |
+
msgid "How to setup auto emails using CRON Job through the cPanel or Plesk?"
|
1224 |
+
msgstr "Comment envoyer des emails en tâche cron avec cPanel ou Plesk?"
|
1225 |
+
|
1226 |
+
#: ../cron/cron-add.php:98
|
1227 |
+
msgid ""
|
1228 |
+
"<a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-how-to-schedule-"
|
1229 |
+
"cron-mails/\">What is Cron?</a>"
|
1230 |
+
msgstr ""
|
1231 |
+
"<a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-how-to-schedule-"
|
1232 |
+
"cron-mails/\">Qu'est qu'une tâche Cron?</a>"
|
1233 |
+
|
1234 |
+
#: ../cron/cron-add.php:99
|
1235 |
+
msgid ""
|
1236 |
+
"<a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-how-to-schedule-"
|
1237 |
+
"cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
|
1238 |
+
msgstr ""
|
1239 |
+
"<a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-how-to-schedule-"
|
1240 |
+
"cron-emails-in-parallels-plesk/\">Paramétrer une tâche cron sur Plesk</a>"
|
1241 |
+
|
1242 |
+
#: ../cron/cron-add.php:100
|
1243 |
+
msgid ""
|
1244 |
+
"<a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-how-to-schedule-"
|
1245 |
+
"cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
|
1246 |
+
msgstr ""
|
1247 |
+
"<a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-how-to-schedule-"
|
1248 |
+
"cron-emails-in-cpanel/\">Paramétrer une tâche cron sur cPanel</a>"
|
1249 |
+
|
1250 |
+
#: ../cron/cron-add.php:101
|
1251 |
+
msgid ""
|
1252 |
+
"<a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-what-to-do-if-"
|
1253 |
+
"hosting-doesnt-support-cron-jobs/\">Hosting doesnt support cron jobs?</a>"
|
1254 |
+
msgstr ""
|
1255 |
+
"<a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-what-to-do-if-"
|
1256 |
+
"hosting-doesnt-support-cron-jobs/\">Votre hébergeur ne vous gère pas les "
|
1257 |
+
"tâches cron?</a>"
|
1258 |
+
|
1259 |
+
#: ../compose/compose-edit.php:47 ../compose/compose-add.php:30
|
1260 |
+
msgid "Please enter template heading."
|
1261 |
+
msgstr "Veuillez saisir le nom du modèle."
|
1262 |
+
|
1263 |
+
#: ../compose/compose-edit.php:60
|
1264 |
+
msgid "Template successfully updated. "
|
1265 |
+
msgstr "Modèle mis à jour."
|
1266 |
+
|
1267 |
+
#: ../compose/compose-edit.php:85 ../compose/compose-add.php:75 ..
|
1268 |
+
#: /compose/compose-show.php:65
|
1269 |
+
msgid "Compose Mail"
|
1270 |
+
msgstr "Modèles d'email"
|
1271 |
+
|
1272 |
+
#: ../compose/compose-edit.php:90 ../compose/compose-add.php:79
|
1273 |
+
msgid "Select your Mail Type"
|
1274 |
+
msgstr "Sélectionnez le type d'email"
|
1275 |
+
|
1276 |
+
#: ../compose/compose-edit.php:92 ../compose/compose-add.php:81
|
1277 |
+
msgid "Static Template (For Newsletter Email)"
|
1278 |
+
msgstr "Modèle statique (pour les newsletters)"
|
1279 |
+
|
1280 |
+
#: ../compose/compose-edit.php:93 ../compose/compose-add.php:82
|
1281 |
+
msgid "Dynamic Template (For Notification Email)"
|
1282 |
+
msgstr "Modèle dynamique (pour les notifications)"
|
1283 |
+
|
1284 |
+
#: ../compose/compose-edit.php:97 ../compose/compose-add.php:86
|
1285 |
+
msgid "Enter Mail Subject"
|
1286 |
+
msgstr "Sujet de l'email"
|
1287 |
+
|
1288 |
+
#: ../compose/compose-edit.php:99 ../compose/compose-add.php:88
|
1289 |
+
msgid "Keyword: ###POSTTITLE###"
|
1290 |
+
msgstr "Mot clé: ###POSTTITLE###"
|
1291 |
+
|
1292 |
+
#: ../compose/compose-edit.php:101 ../compose/compose-add.php:90
|
1293 |
+
msgid "Enter Content for your Mail"
|
1294 |
+
msgstr "Entrez le contenu de votre email"
|
1295 |
+
|
1296 |
+
#: ../compose/compose-edit.php:105 ../compose/compose-add.php:94
|
1297 |
+
#, php-format
|
1298 |
+
msgid ""
|
1299 |
+
"%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
|
1300 |
+
"###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, "
|
1301 |
+
"###POSTDESC###, ###POSTFULL###"
|
1302 |
+
msgstr ""
|
1303 |
+
"%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
|
1304 |
+
"###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, "
|
1305 |
+
"###POSTDESC###, ###POSTFULL###"
|
1306 |
+
|
1307 |
+
#: ../compose/compose-edit.php:105 ../compose/compose-add.php:94
|
1308 |
+
msgid "Available Keywords"
|
1309 |
+
msgstr "Mots clés autorisés"
|
1310 |
+
|
1311 |
+
#: ../compose/compose-edit.php:111 ../compose/compose-add.php:100
|
1312 |
+
msgid "Published"
|
1313 |
+
msgstr "Publié"
|
1314 |
+
|
1315 |
+
#: ../compose/compose-edit.php:113 ../compose/compose-add.php:102
|
1316 |
+
msgid "Please select your mail status"
|
1317 |
+
msgstr "Sélectionnez le statut du modèle d'email"
|
1318 |
+
|
1319 |
+
#: ../compose/compose-add.php:42
|
1320 |
+
msgid "Template successfully created. "
|
1321 |
+
msgstr "Modèle créé"
|
1322 |
+
|
1323 |
+
#: ../compose/compose-show.php:78 ../compose/compose-show.php:86
|
1324 |
+
msgid "Email subject"
|
1325 |
+
msgstr "Sujet"
|
1326 |
+
|
1327 |
+
#: ../compose/compose-show.php:81 ../compose/compose-show.php:89
|
1328 |
+
msgid "Actions"
|
1329 |
+
msgstr "Actions"
|
1330 |
+
|
1331 |
+
#: ../export/export-email-address.php:32 ../export/export-email-address.php:36
|
1332 |
+
#: .. /export/export-email-address.php:39
|
1333 |
+
msgid "Unexpected url submit has been detected"
|
1334 |
+
msgstr "Une erreur d'URL a été détectée."
|
1335 |
+
|
1336 |
+
#: ../job/es-unsubscribe.php:53 ../job/es-unsubscribe.php:60
|
1337 |
+
#: ../job/es-optin.php:56 ../job/es-optin.php:66
|
1338 |
+
msgid ""
|
1339 |
+
"Oops.. We are getting some technical error. Please try again or contact "
|
1340 |
+
"admin."
|
1341 |
+
msgstr ""
|
1342 |
+
"Oups... Nous avons des erreurs techniques. Veuillez réessayer ou contactez "
|
1343 |
+
"l'administrateur du site."
|
1344 |
+
|
1345 |
+
#: ../job/es-optin.php:59
|
1346 |
+
msgid "This email address has already been confirmed."
|
1347 |
+
msgstr "Cette adresse a déjà été confirmée."
|
1348 |
+
|
1349 |
+
#: ../help/help.php:46
|
1350 |
+
msgid "Welcome to Email Subscribers!"
|
1351 |
+
msgstr "Bienvenue sur Abonnements & Newsletters!"
|
1352 |
+
|
1353 |
+
#: ../help/help.php:47
|
1354 |
+
msgid ""
|
1355 |
+
"Thanks for installing and we hope you will enjoy using Email Subscribers."
|
1356 |
+
msgstr ""
|
1357 |
+
"Merci d'avoir installé Abonnements & Newsletters. Nous espérons que vous "
|
1358 |
+
"serez satisfaits d'utiliser cette extension."
|
1359 |
+
|
1360 |
+
#: ../help/help.php:51
|
1361 |
+
msgid "For more help and tips..."
|
1362 |
+
msgstr "Pour de l'aide et des astuces..."
|
1363 |
+
|
1364 |
+
#: ../help/help.php:95
|
1365 |
+
msgid "Frequently Asked Questions"
|
1366 |
+
msgstr "Foire aux questions"
|
1367 |
+
|
1368 |
+
#: ../help/help.php:114 ../help/help.php:123 ../help/help.php:126 ../help/help.
|
1369 |
+
#: php:129 ../help/help.php:132 ../help/help.php:135 ../help/help.php:138 ..
|
1370 |
+
#: /help/help.php:141 ../help/help.php:144 ../help/help.php:147
|
1371 |
+
#: ../help/help.php:150 ../help/help.php:153 ../help/help.php:156
|
1372 |
+
#: ../help/help.php:159 /help/help.php:162 ../help/help.php:165
|
1373 |
+
#: ../help/help.php:168 171 ../help/help.php:174
|
1374 |
+
#, php-format
|
1375 |
+
msgid "%s"
|
1376 |
+
msgstr "%s"
|
1377 |
+
|
1378 |
+
#: ../help/help.php:114
|
1379 |
+
msgid "How to Add Subscription box to website?"
|
1380 |
+
msgstr "Comment ajouter un formulaire d'abonnement sur votre site?"
|
1381 |
+
|
1382 |
+
#: ../help/help.php:123
|
1383 |
+
msgid "How to Import or Export Email Addresses?"
|
1384 |
+
msgstr "Comment importer ou exporter des adresses email?"
|
1385 |
+
|
1386 |
+
#: ../help/help.php:126
|
1387 |
+
msgid "General Plugin Settings"
|
1388 |
+
msgstr "Options générales"
|
1389 |
+
|
1390 |
+
#: ../help/help.php:126
|
1391 |
+
msgid ""
|
1392 |
+
" (How to modify the existing emails content like Opt-in mail, Welcome mail, "
|
1393 |
+
"Admin mails)"
|
1394 |
+
msgstr ""
|
1395 |
+
"(Comment modifier le contenu des emails de validation, de bienvenue et ceux "
|
1396 |
+
"reçu par l'administrateur)"
|
1397 |
+
|
1398 |
+
#: ../help/help.php:129
|
1399 |
+
msgid "How to change/update/translate any texts from Email Subscribers?"
|
1400 |
+
msgstr "Comment changer/mettre à jour/traduire l'extension?"
|
1401 |
+
|
1402 |
+
#: ../help/help.php:132
|
1403 |
+
msgid "How to add Unsubscribe link in emails?"
|
1404 |
+
msgstr "Comment ajouter un lien pour se désabonner dans les emails envoyés?"
|
1405 |
+
|
1406 |
+
#: ../help/help.php:135
|
1407 |
+
msgid "What are Static Templates and Dynamic Templates?"
|
1408 |
+
msgstr "Qu'est-ce qu'un modèle statique et un modèle dynamique?"
|
1409 |
+
|
1410 |
+
#: ../help/help.php:138
|
1411 |
+
msgid "How to Compose and Send Static Newsletter Mails?"
|
1412 |
+
msgstr "Comment créer et envoyer un email statique?"
|
1413 |
+
|
1414 |
+
#: ../help/help.php:141
|
1415 |
+
msgid ""
|
1416 |
+
"How to Configure and Send notification emails to subscribers when new posts "
|
1417 |
+
"are published?"
|
1418 |
+
msgstr ""
|
1419 |
+
"Comment configurer et envoyer des notifications aux abonnés lorsque de "
|
1420 |
+
"nouveaux articles sont publiés?"
|
1421 |
+
|
1422 |
+
#: ../help/help.php:144
|
1423 |
+
msgid "How to Send a sample new post notification email to testgroup/myself?"
|
1424 |
+
msgstr ""
|
1425 |
+
"Comment envoyer un exemple de notification à moi-même ou un groupe test?"
|
1426 |
+
|
1427 |
+
#: ../help/help.php:147
|
1428 |
+
msgid "How to check Sent mails?"
|
1429 |
+
msgstr "Comment vérifier les emails envoyés?"
|
1430 |
+
|
1431 |
+
#: ../help/help.php:150
|
1432 |
+
msgid "How to Add/Update Existing Subscribers Group?"
|
1433 |
+
msgstr "Comment ajouter/mettre à jour les groupes d'abonnés?"
|
1434 |
+
|
1435 |
+
#: ../help/help.php:153
|
1436 |
+
msgid "Emails are not being received by Subscribers?"
|
1437 |
+
msgstr "Les abonnés ne recoivent pas les emails?"
|
1438 |
+
|
1439 |
+
#: ../help/help.php:156
|
1440 |
+
msgid "How to show subscribe form inside a popup?"
|
1441 |
+
msgstr "Comment afficher le formulaire d'abonnement dans une popup?"
|
1442 |
+
|
1443 |
+
#: ../help/help.php:159
|
1444 |
+
msgid "How to use Rainmaker’s form in Email Subscribers?"
|
1445 |
+
msgstr "Comment utiliser unn formulaire Rainmaker?"
|
1446 |
+
|
1447 |
+
#: ../help/help.php:162
|
1448 |
+
msgid "How to Schedule Cron Mails?"
|
1449 |
+
msgstr "Comment planifier l'envoi des emails?"
|
1450 |
+
|
1451 |
+
#: ../help/help.php:165
|
1452 |
+
msgid "How to Schedule Cron Emails in cPanel?"
|
1453 |
+
msgstr "Comment planifier l'envoi des emails sur cPanel?"
|
1454 |
+
|
1455 |
+
#: ../help/help.php:168
|
1456 |
+
msgid "How to Schedule Cron Emails in Parallels Plesk?"
|
1457 |
+
msgstr "Comment planifier l'envoi des emails sur Parallels Plesk?"
|
1458 |
+
|
1459 |
+
#: ../help/help.php:171
|
1460 |
+
msgid "What to do if Hosting doesn’t support Cron Jobs?"
|
1461 |
+
msgstr "Que faire si votre hébergeur ne propose pas de tâche CRON?"
|
1462 |
+
|
1463 |
+
#: ../help/help.php:174
|
1464 |
+
msgid "Commonly Asked Questions"
|
1465 |
+
msgstr "Foire aux questions"
|
1466 |
+
|
1467 |
+
#: ../sendmail/sendmail.php:39
|
1468 |
+
msgid "Please select your mail subject."
|
1469 |
+
msgstr "Veuillez choisir le sujet de votre email"
|
1470 |
+
|
1471 |
+
#: ../sendmail/sendmail.php:45
|
1472 |
+
msgid "Please select your mail type."
|
1473 |
+
msgstr "Veuillez sélectionner le type d'email."
|
1474 |
+
|
1475 |
+
#: ../sendmail/sendmail.php:51
|
1476 |
+
msgid "Please select your group."
|
1477 |
+
msgstr "Veuillez sélectionner le groupe."
|
1478 |
+
|
1479 |
+
#: ../sendmail/sendmail.php:58
|
1480 |
+
msgid "Mail sent successfully. "
|
1481 |
+
msgstr "Email envoyé."
|
1482 |
+
|
1483 |
+
#: ../sendmail/sendmail.php:62
|
1484 |
+
msgid "Click here to check Statistics"
|
1485 |
+
msgstr "Cliquez ici pour voir les statistiques"
|
1486 |
+
|
1487 |
+
#: ../sendmail/sendmail.php:68
|
1488 |
+
msgid "Oops.. We are getting some error. mail not sending."
|
1489 |
+
msgstr "Oops... Problème détecté. Le mail ne part pas."
|
1490 |
+
|
1491 |
+
#: ../sendmail/sendmail.php:95 ../sendmail/sendmail.php:193
|
1492 |
+
#: ../sendmail/sendmail. php:195 ../classes/es-register.php:151
|
1493 |
+
#: ../classes/es-register.php:152
|
1494 |
+
msgid "Send Email"
|
1495 |
+
msgstr "Envoyer"
|
1496 |
+
|
1497 |
+
#: ../sendmail/sendmail.php:104
|
1498 |
+
msgid "Select Mail Subject from available list"
|
1499 |
+
msgstr "Sujet de l'email"
|
1500 |
+
|
1501 |
+
#: ../sendmail/sendmail.php:131
|
1502 |
+
msgid "Select Mail Type"
|
1503 |
+
msgstr "Type d'envoi"
|
1504 |
+
|
1505 |
+
#: ../sendmail/sendmail.php:137
|
1506 |
+
msgid "Send mail immediately"
|
1507 |
+
msgstr "Envoyer les emails immédiatement"
|
1508 |
+
|
1509 |
+
#: ../sendmail/sendmail.php:138
|
1510 |
+
msgid "Send mail via cron job"
|
1511 |
+
msgstr "Envoyer les emails en tâche de fond"
|
1512 |
+
|
1513 |
+
#: ../sendmail/sendmail.php:145
|
1514 |
+
msgid "Select Subscribers group to Send Mail"
|
1515 |
+
msgstr "Groupe d'abonnés"
|
1516 |
+
|
1517 |
+
#: ../sendmail/sendmail.php:177
|
1518 |
+
msgid "Recipients : 0 "
|
1519 |
+
msgstr "Destinataires : 0"
|
1520 |
+
|
1521 |
+
#: ../sendmail/sendmail.php:179
|
1522 |
+
#, php-format
|
1523 |
+
msgid "Recipients : %s"
|
1524 |
+
msgstr "Destinataires : %s"
|
1525 |
+
|
1526 |
+
#: ../sendmail/sendmail.php:182
|
1527 |
+
msgid ""
|
1528 |
+
"<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
|
1529 |
+
"that you change above Mail Type to Cron and Send Mail via Cron Job.</"
|
1530 |
+
"strong><br>Click on Help for more information."
|
1531 |
+
msgstr ""
|
1532 |
+
"<br><br><strong>Il ya plus de 100 destinataires.<br>Nous vous recommandons "
|
1533 |
+
"de modifier le mode d'envoi et d'utiliser la tâche CRON pour envoyer les "
|
1534 |
+
"emails.</strong><br>Cliquez sur l'aide pour plus d'information."
|
1535 |
+
|
1536 |
+
#: ../sendmail/sendmail.php:198
|
1537 |
+
msgid "Reset"
|
1538 |
+
msgstr "Réinitialiser"
|
1539 |
+
|
1540 |
+
#: ../classes/es-common.php:8
|
1541 |
+
msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
|
1542 |
+
msgstr "<span style=\"color:#006600;font-weight:bold;\">Confirmé</span>"
|
1543 |
+
|
1544 |
+
#: ../classes/es-common.php:11
|
1545 |
+
msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
|
1546 |
+
msgstr "<span style=\"color:#FF0000\">En attente de confirmation</span>"
|
1547 |
+
|
1548 |
+
#: ../classes/es-common.php:14
|
1549 |
+
msgid "<span style=\"color:#999900\">Unsubscribed</span>"
|
1550 |
+
msgstr "<span style=\"color:#999900\">Désabonné</span>"
|
1551 |
+
|
1552 |
+
#: ../classes/es-common.php:17
|
1553 |
+
msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
|
1554 |
+
msgstr "<span style=\"color:#0000FF\">Simple vérification</span>"
|
1555 |
+
|
1556 |
+
#: ../classes/es-common.php:20
|
1557 |
+
msgid "<span style=\"color:#00CC00;font-weight:bold\">Viewed</span>"
|
1558 |
+
msgstr "<span style=\"color:#00CC00;font-weight:bold\">Vu</span>"
|
1559 |
+
|
1560 |
+
#: ../classes/es-common.php:23
|
1561 |
+
msgid "<span style=\"color:#999900;\">Nodata</span>"
|
1562 |
+
msgstr "<span style=\"color:#999900;\">Aucune donnée</span>"
|
1563 |
+
|
1564 |
+
#: ../classes/es-common.php:26
|
1565 |
+
msgid "<span style=\"color:#FF0000\">Disable</span>"
|
1566 |
+
msgstr "<span style=\"color:#FF0000\">Désactiver</span>"
|
1567 |
+
|
1568 |
+
#: ../classes/es-common.php:29
|
1569 |
+
msgid "<span style=\"color:#FF0000\">In Queue</span>"
|
1570 |
+
msgstr "<span style=\"color:#FF0000\">Programmé</span>"
|
1571 |
+
|
1572 |
+
#: ../classes/es-common.php:32
|
1573 |
+
msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
|
1574 |
+
msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Envoyé</span>"
|
1575 |
+
|
1576 |
+
#: ../classes/es-common.php:35
|
1577 |
+
msgid "<span style=\"color:#ffd700;font-weight:bold;\">Cron Mail</span>"
|
1578 |
+
msgstr "<span style=\"color:#ffd700;font-weight:bold;\">Email programmé</span>"
|
1579 |
+
|
1580 |
+
#: ../classes/es-common.php:38
|
1581 |
+
msgid "<span style=\"color:#993399;\">Instant Mail</span>"
|
1582 |
+
msgstr "<span style=\"color:#993399;\">Email instantanné</span>"
|
1583 |
+
|
1584 |
+
#. Name of the plugin
|
1585 |
+
#: ../classes/es-register.php:139 ../classes/es-register.php:140
|
1586 |
+
msgid "Email Subscribers"
|
1587 |
+
msgstr "Abonnés & Newsletter"
|
1588 |
+
|
1589 |
+
#: ../classes/es-register.php:142 ../classes/es-register.php:143
|
1590 |
+
msgid "Subscribers"
|
1591 |
+
msgstr "Abonnés"
|
1592 |
+
|
1593 |
+
#: ../classes/es-register.php:145 ../classes/es-register.php:146
|
1594 |
+
msgid "Compose"
|
1595 |
+
msgstr "Modèles"
|
1596 |
+
|
1597 |
+
#: ../classes/es-register.php:154
|
1598 |
+
msgid "Cron"
|
1599 |
+
msgstr "Tâches planifiées"
|
1600 |
+
|
1601 |
+
#: ../classes/es-register.php:155
|
1602 |
+
msgid "Cron Mail"
|
1603 |
+
msgstr "Tâche CRON"
|
1604 |
+
|
1605 |
+
#: ../classes/es-register.php:160 ../classes/es-register.php:161
|
1606 |
+
msgid "Roles"
|
1607 |
+
msgstr "Rôles"
|
1608 |
+
|
1609 |
+
#: ../classes/es-register.php:166
|
1610 |
+
msgid "Help & Info"
|
1611 |
+
msgstr "Aide & Infos"
|
1612 |
+
|
1613 |
+
#: ../classes/es-register.php:167
|
1614 |
+
msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info"
|
1615 |
+
msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Aide & Infos"
|
1616 |
+
|
1617 |
+
#: ../classes/es-register.php:178
|
1618 |
+
msgctxt "view-subscriber-enhanced-select"
|
1619 |
+
msgid "Please enter subscriber email address."
|
1620 |
+
msgstr "Entrez l'adresse email de l'abonné"
|
1621 |
+
|
1622 |
+
#: ../classes/es-register.php:179
|
1623 |
+
msgctxt "view-subscriber-enhanced-select"
|
1624 |
+
msgid "Please select subscriber email status."
|
1625 |
+
msgstr "Sélectionnez le type d'envoi pour cet abonné."
|
1626 |
+
|
1627 |
+
#: ../classes/es-register.php:180
|
1628 |
+
msgctxt "view-subscriber-enhanced-select"
|
1629 |
+
msgid "Please select or create group for this subscriber."
|
1630 |
+
msgstr "Sélectionnez ou créez un groupe pour cet abonné."
|
1631 |
+
|
1632 |
+
#: ../classes/es-register.php:181
|
1633 |
+
msgctxt "view-subscriber-enhanced-select"
|
1634 |
+
msgid "Do you want to delete this record?"
|
1635 |
+
msgstr "Voulez-vous supprimer cette ligne?"
|
1636 |
+
|
1637 |
+
#: ../classes/es-register.php:182
|
1638 |
+
msgctxt "view-subscriber-enhanced-select"
|
1639 |
+
msgid "Please select the bulk action."
|
1640 |
+
msgstr "Veuillez sélectionner une action."
|
1641 |
+
|
1642 |
+
#: ../classes/es-register.php:183
|
1643 |
+
msgctxt "view-subscriber-enhanced-select"
|
1644 |
+
msgid "Do you want to delete selected record(s)?"
|
1645 |
+
msgstr "Voulez-vous supprimer les lignes sélectionnées?"
|
1646 |
+
|
1647 |
+
#: ../classes/es-register.php:184
|
1648 |
+
msgctxt "view-subscriber-enhanced-select"
|
1649 |
+
msgid "Are you sure you want to delete?"
|
1650 |
+
msgstr "Êtes-vous sûr de vouloir effacer?"
|
1651 |
+
|
1652 |
+
#: ../classes/es-register.php:185
|
1653 |
+
msgctxt "view-subscriber-enhanced-select"
|
1654 |
+
msgid ""
|
1655 |
+
"Do you want to resend confirmation email? \\nAlso please note, this will "
|
1656 |
+
"update subscriber current status to 'Unconfirmed'."
|
1657 |
+
msgstr ""
|
1658 |
+
"Voulez-vous renvoyer un message de confirmation?\\n A noter: le statut de "
|
1659 |
+
"l'abonné passera à 'En attente de confirmation'."
|
1660 |
+
|
1661 |
+
#: ../classes/es-register.php:186
|
1662 |
+
msgctxt "view-subscriber-enhanced-select"
|
1663 |
+
msgid "Please select new subscriber group."
|
1664 |
+
msgstr "Veuillez choisir un groupe d'abonnés."
|
1665 |
+
|
1666 |
+
#: ../classes/es-register.php:187
|
1667 |
+
msgctxt "view-subscriber-enhanced-select"
|
1668 |
+
msgid "Do you want to update subscribers group?"
|
1669 |
+
msgstr "Voulez-vous mettre à jour ce groupe?"
|
1670 |
+
|
1671 |
+
#: ../classes/es-register.php:188
|
1672 |
+
msgctxt "view-subscriber-enhanced-select"
|
1673 |
+
msgid "Do you want to export the emails?"
|
1674 |
+
msgstr "Voulez-vous exporter les emails?"
|
1675 |
+
|
1676 |
+
#: ../classes/es-register.php:189
|
1677 |
+
msgctxt "view-subscriber-enhanced-select"
|
1678 |
+
msgid ""
|
1679 |
+
"Please select only csv file. Please check official website for csv "
|
1680 |
+
"structure.."
|
1681 |
+
msgstr ""
|
1682 |
+
"Veuillez choisir uniquement un fichier csv. Consultez la documentation pour "
|
1683 |
+
"la structure du fichier csv."
|
1684 |
+
|
1685 |
+
#: ../classes/es-register.php:197
|
1686 |
+
msgctxt "compose-enhanced-select"
|
1687 |
+
msgid "Please enter name for configuration."
|
1688 |
+
msgstr "Veuillez entrer le nom de la configuration."
|
1689 |
+
|
1690 |
+
#: ../classes/es-register.php:198
|
1691 |
+
msgctxt "compose-enhanced-select"
|
1692 |
+
msgid "Please select template for this configuration."
|
1693 |
+
msgstr "Sélectionnez un modèle pour cette configuration."
|
1694 |
+
|
1695 |
+
#: ../classes/es-register.php:199
|
1696 |
+
msgctxt "compose-enhanced-select"
|
1697 |
+
msgid "Do you want to delete this record?"
|
1698 |
+
msgstr "Voulez-vous supprimer cet enregistrement?"
|
1699 |
+
|
1700 |
+
#: ../classes/es-register.php:207
|
1701 |
+
msgctxt "notification-enhanced-select"
|
1702 |
+
msgid "Please select subscribers group."
|
1703 |
+
msgstr "Veuillez choisir un groupe."
|
1704 |
+
|
1705 |
+
#: ../classes/es-register.php:208
|
1706 |
+
msgctxt "notification-enhanced-select"
|
1707 |
+
msgid ""
|
1708 |
+
"Please select notification mail subject. Use compose menu to create new."
|
1709 |
+
msgstr ""
|
1710 |
+
"Veuillez choisir le modèle d'email. Utilisez le menu Modèles pour en crée un "
|
1711 |
+
"nouveau."
|
1712 |
+
|
1713 |
+
#: ../classes/es-register.php:209
|
1714 |
+
msgctxt "notification-enhanced-select"
|
1715 |
+
msgid "Please select notification status."
|
1716 |
+
msgstr "Veuillez sélectionner le statut de la notification."
|
1717 |
+
|
1718 |
+
#: ../classes/es-register.php:210
|
1719 |
+
msgctxt "notification-enhanced-select"
|
1720 |
+
msgid "Do you want to delete this record?"
|
1721 |
+
msgstr "Voulez-vous supprimer cet enregistrement?"
|
1722 |
+
|
1723 |
+
#: ../classes/es-register.php:218
|
1724 |
+
msgctxt "sendmail-enhanced-select"
|
1725 |
+
msgid "Please select your mail subject."
|
1726 |
+
msgstr "Veuillez choisir le sujet de l'email."
|
1727 |
+
|
1728 |
+
#: ../classes/es-register.php:219
|
1729 |
+
msgctxt "sendmail-enhanced-select"
|
1730 |
+
msgid "Please select your mail type."
|
1731 |
+
msgstr "Veuillez choisir le type d'envoi."
|
1732 |
+
|
1733 |
+
#: ../classes/es-register.php:220
|
1734 |
+
msgctxt "sendmail-enhanced-select"
|
1735 |
+
msgid "Are you sure you want to send email to all selected email address?"
|
1736 |
+
msgstr "Êtes-vous sûr de vouloir envoyer cet email aux adresses sélectionnées?"
|
1737 |
+
|
1738 |
+
#: ../classes/es-register.php:228
|
1739 |
+
msgctxt "sentmail-enhanced-select"
|
1740 |
+
msgid "Do you want to delete this record?"
|
1741 |
+
msgstr "Voulez-vous supprimer cet enregistrement?"
|
1742 |
+
|
1743 |
+
#: ../classes/es-register.php:229
|
1744 |
+
msgctxt "sentmail-enhanced-select"
|
1745 |
+
msgid "Do you want to delete all records except latest 10?"
|
1746 |
+
msgstr "Voulez-vous supprimer tous les enregistrements sauf les 10 derniers?"
|
1747 |
+
|
1748 |
+
#: ../classes/es-register.php:237
|
1749 |
+
msgctxt "cron-enhanced-select"
|
1750 |
+
msgid "Please select enter number of mails you want to send per hour/trigger."
|
1751 |
+
msgstr ""
|
1752 |
+
"Veuillez saisir le nombre d'email que vous voulez envoyer par heure/envoi."
|
1753 |
+
|
1754 |
+
#: ../classes/es-register.php:238
|
1755 |
+
msgctxt "cron-enhanced-select"
|
1756 |
+
msgid "Please enter the mail count, only number."
|
1757 |
+
msgstr "Veuillez saisir le nombre d'email. Que des chiffres."
|
1758 |
+
|
1759 |
+
#: ../classes/es-register.php:251
|
1760 |
+
msgctxt "widget-enhanced-select"
|
1761 |
+
msgid "Please enter email address."
|
1762 |
+
msgstr "Veuillez saisir votre adresse email."
|
1763 |
+
|
1764 |
+
#: ../classes/es-register.php:252
|
1765 |
+
msgctxt "widget-enhanced-select"
|
1766 |
+
msgid "Please provide a valid email address."
|
1767 |
+
msgstr "Veuillez saisir une adresse email valide."
|
1768 |
+
|
1769 |
+
#: ../classes/es-register.php:253
|
1770 |
+
msgctxt "widget-enhanced-select"
|
1771 |
+
msgid "loading..."
|
1772 |
+
msgstr "envoi..."
|
1773 |
+
|
1774 |
+
#: ../classes/es-register.php:254
|
1775 |
+
msgctxt "widget-enhanced-select"
|
1776 |
+
msgid "Cannot create XMLHTTP instance"
|
1777 |
+
msgstr "Impossible de crée l'instance XMLHTTP"
|
1778 |
+
|
1779 |
+
#: ../classes/es-register.php:255
|
1780 |
+
msgctxt "widget-enhanced-select"
|
1781 |
+
msgid "Subscribed successfully."
|
1782 |
+
msgstr "Inscription réussie."
|
1783 |
+
|
1784 |
+
#: ../classes/es-register.php:256
|
1785 |
+
msgctxt "widget-enhanced-select"
|
1786 |
+
msgid ""
|
1787 |
+
"Your subscription was successful! Within a few minutes, kindly check the "
|
1788 |
+
"mail in your mailbox and confirm your subscription. If you can't see the "
|
1789 |
+
"mail in your mailbox, please check your spam folder."
|
1790 |
+
msgstr ""
|
1791 |
+
"Pour confirmer votre abonnement, consultez votre boîte de reception et "
|
1792 |
+
"cliquez sur le lien qui vous a été envoyé."
|
1793 |
+
|
1794 |
+
#: ../classes/es-register.php:257
|
1795 |
+
msgctxt "widget-enhanced-select"
|
1796 |
+
msgid "Email Address already exists."
|
1797 |
+
msgstr "Cet adresse email existe déjà."
|
1798 |
+
|
1799 |
+
#: ../classes/es-register.php:258
|
1800 |
+
msgctxt "widget-enhanced-select"
|
1801 |
+
msgid "Oops.. Unexpected error occurred."
|
1802 |
+
msgstr "Oups.. une erreur inattendue s'est produite."
|
1803 |
+
|
1804 |
+
#: ../classes/es-register.php:259
|
1805 |
+
msgctxt "widget-enhanced-select"
|
1806 |
+
msgid "Invalid email address."
|
1807 |
+
msgstr "Adresse email non valide."
|
1808 |
+
|
1809 |
+
#: ../classes/es-register.php:260
|
1810 |
+
msgctxt "widget-enhanced-select"
|
1811 |
+
msgid "Please try after some time."
|
1812 |
+
msgstr "Veuillez réessayer dans quelques instants."
|
1813 |
+
|
1814 |
+
#: ../classes/es-register.php:261
|
1815 |
+
msgctxt "widget-enhanced-select"
|
1816 |
+
msgid "There was a problem with the request."
|
1817 |
+
msgstr "Il ya eu un problème avec la requête."
|
1818 |
+
|
1819 |
+
#: ../classes/es-register.php:268
|
1820 |
+
msgctxt "widget-page-enhanced-select"
|
1821 |
+
msgid "Please enter email address."
|
1822 |
+
msgstr "Veuillez saisir une adresse email."
|
1823 |
+
|
1824 |
+
#: ../classes/es-register.php:269
|
1825 |
+
msgctxt "widget-page-enhanced-select"
|
1826 |
+
msgid "Please provide a valid email address."
|
1827 |
+
msgstr "Veuillez saisir une adresse email valide."
|
1828 |
+
|
1829 |
+
#: ../classes/es-register.php:270
|
1830 |
+
msgctxt "widget-page-enhanced-select"
|
1831 |
+
msgid "loading..."
|
1832 |
+
msgstr "chargement..."
|
1833 |
+
|
1834 |
+
#: ../classes/es-register.php:271
|
1835 |
+
msgctxt "widget-page-enhanced-select"
|
1836 |
+
msgid "Cannot create XMLHTTP instance"
|
1837 |
+
msgstr "Impossible de créer l'instance XMLHTTP"
|
1838 |
+
|
1839 |
+
#: ../classes/es-register.php:272
|
1840 |
+
msgctxt "widget-page-enhanced-select"
|
1841 |
+
msgid "Subscribed successfully."
|
1842 |
+
msgstr "Inscription réussie."
|
1843 |
+
|
1844 |
+
#: ../classes/es-register.php:273
|
1845 |
+
msgctxt "widget-page-enhanced-select"
|
1846 |
+
msgid ""
|
1847 |
+
"Your subscription was successful! Within a few minutes, kindly check the "
|
1848 |
+
"mail in your mailbox and confirm your subscription. If you can't see the "
|
1849 |
+
"mail in your mailbox, please check your spam folder."
|
1850 |
+
msgstr ""
|
1851 |
+
"Pour confirmer votre abonnement, consultez votre boîte de reception et "
|
1852 |
+
"cliquez sur le lien qui vous a été envoyé."
|
1853 |
+
|
1854 |
+
#: ../classes/es-register.php:274
|
1855 |
+
msgctxt "widget-page-enhanced-select"
|
1856 |
+
msgid "Email Address already exists."
|
1857 |
+
msgstr "Cette adresse existe déjà."
|
1858 |
+
|
1859 |
+
#: ../classes/es-register.php:275
|
1860 |
+
msgctxt "widget-page-enhanced-select"
|
1861 |
+
msgid "Oops.. Unexpected error occurred."
|
1862 |
+
msgstr "Oups... Une erreur inattendue s'est produite."
|
1863 |
+
|
1864 |
+
#: ../classes/es-register.php:276
|
1865 |
+
msgctxt "widget-page-enhanced-select"
|
1866 |
+
msgid "Invalid email address."
|
1867 |
+
msgstr "Adresse email non valide."
|
1868 |
+
|
1869 |
+
#: ../classes/es-register.php:277
|
1870 |
+
msgctxt "widget-page-enhanced-select"
|
1871 |
+
msgid "Please try after some time."
|
1872 |
+
msgstr "Veuillez réessayer plus tard."
|
1873 |
+
|
1874 |
+
#: ../classes/es-register.php:278
|
1875 |
+
msgctxt "widget-page-enhanced-select"
|
1876 |
+
msgid "There was a problem with the request."
|
1877 |
+
msgstr "Il y a eu un problème avec la requête."
|
1878 |
+
|
1879 |
+
#: ../classes/es-register.php:407
|
1880 |
+
msgid ""
|
1881 |
+
"Email Subscribers recommends free plugin <b>Rainmaker</b> to collect leads "
|
1882 |
+
"instantly"
|
1883 |
+
msgstr ""
|
1884 |
+
"Nous vous recommandons l'extension <b>Rainmaker</b> pour collecter des "
|
1885 |
+
"prospects immédiatement"
|
1886 |
+
|
1887 |
+
#: ../classes/es-register.php:408
|
1888 |
+
msgid "Yes, I want this"
|
1889 |
+
msgstr "Installer"
|
1890 |
+
|
1891 |
+
#: ../classes/es-register.php:408
|
1892 |
+
msgid "No, I don't want it"
|
1893 |
+
msgstr "Non merci"
|
1894 |
+
|
1895 |
+
#: ../classes/es-register.php:499 ../classes/es-loadwidget.php:29
|
1896 |
+
msgid "Email *"
|
1897 |
+
msgstr "Email *"
|
1898 |
+
|
1899 |
+
#: ../classes/es-register.php:504 ../classes/es-loadwidget.php:34
|
1900 |
+
msgid "Subscribe"
|
1901 |
+
msgstr "S'abonner"
|
1902 |
+
|
1903 |
+
#: ../classes/es-register.php:539
|
1904 |
+
msgid "Widget Title"
|
1905 |
+
msgstr "Titre du widget"
|
1906 |
+
|
1907 |
+
#: ../classes/es-register.php:543
|
1908 |
+
msgid "Display Name Field"
|
1909 |
+
msgstr "Afficher le label du champ"
|
1910 |
+
|
1911 |
+
#: ../classes/es-register.php:550
|
1912 |
+
msgid "Short Description"
|
1913 |
+
msgstr "Description Courte"
|
1914 |
+
|
1915 |
+
#: ../classes/es-register.php:552
|
1916 |
+
msgid "Short description about your subscription form."
|
1917 |
+
msgstr "Courte description de votre formulaire d'abonnement."
|
1918 |
+
|
1919 |
+
#: ../classes/es-register.php:555
|
1920 |
+
msgid "Subscriber Group"
|
1921 |
+
msgstr "Groupe d'abonnés"
|
1922 |
+
|
1923 |
+
#~ msgid "Oops, selected details doesnt exists."
|
1924 |
+
#~ msgstr "Oups, certains paramètres sélectionnés n'existent pas."
|
1925 |
+
|
1926 |
+
#~ msgid "Details was successfully updated."
|
1927 |
+
#~ msgstr "Paramètres correctement mis à jour."
|
1928 |
+
|
1929 |
+
#~ msgid "Oops, details not update."
|
1930 |
+
#~ msgstr "Oups, les paramètres n'ont pas été mis à jour."
|
1931 |
+
|
1932 |
+
#~ msgid "Cancel"
|
1933 |
+
#~ msgstr "Annuler"
|
1934 |
+
|
1935 |
+
#~ msgid "Oops, selected details doesnt exist."
|
1936 |
+
#~ msgstr "Oups, certains paramètres n'existent pas."
|
1937 |
+
|
1938 |
+
#~ msgid "Selected record was successfully deleted."
|
1939 |
+
#~ msgstr "Les enregistrements sélectionnés ont été supprimés."
|
1940 |
+
|
1941 |
+
#~ msgid "Optimize Table"
|
1942 |
+
#~ msgstr "Optimiser la table"
|
1943 |
+
|
1944 |
+
#~ msgid ""
|
1945 |
+
#~ "Note: Please click <strong>Optimize Table</strong> button to delete all "
|
1946 |
+
#~ "reports except latest 10."
|
1947 |
+
#~ msgstr ""
|
1948 |
+
#~ "Note: cliquer sur le bouton <strong>Optimiser la table</strong> supprime "
|
1949 |
+
#~ "tous les rapports sauf les 10 derniers."
|
1950 |
+
|
1951 |
+
#~ msgctxt "sendmail-enhanced-select"
|
1952 |
+
#~ msgid "Please select subscriber email status."
|
1953 |
+
#~ msgstr "Veuillez choisir le statut de l'email de l'abonné."
|
1954 |
+
|
1955 |
+
#~ msgctxt "roles-enhanced-select"
|
1956 |
+
#~ msgid "Please enter subscriber email address."
|
1957 |
+
#~ msgstr "Veuillez saisir l'adresse email de l'abonné."
|
1958 |
+
|
1959 |
+
#~ msgctxt "roles-enhanced-select"
|
1960 |
+
#~ msgid "Please select subscriber email status."
|
1961 |
+
#~ msgstr "Veuillez choisir le statut de l'email de l'abonné."
|
1962 |
+
|
1963 |
+
#~ msgctxt "roles-enhanced-select"
|
1964 |
+
#~ msgid "Please select or create group for this subscriber."
|
1965 |
+
#~ msgstr "Veuillez choisir ou créer un groupe pour cet abonné."
|
1966 |
+
|
1967 |
+
#~ msgctxt "widget-enhanced-select"
|
1968 |
+
#~ msgid ""
|
1969 |
+
#~ "You have successfully subscribed to the newsletter. You will receive a "
|
1970 |
+
#~ "confirmation email in a few minutes. Please follow the link in it to "
|
1971 |
+
#~ "confirm your subscription. If the email takes more than 15 minutes to "
|
1972 |
+
#~ "appear in your mailbox, please check your spam folder."
|
1973 |
+
#~ msgstr ""
|
1974 |
+
#~ "Vous venez de vous abonner à notre newsletter. Vous allez recevoir un "
|
1975 |
+
#~ "email de confirmation dans quelques instants. Cliquez sur le lien présent "
|
1976 |
+
#~ "dans cet email pour confirmer votre abonnement.Si vous n'avez pas reçu "
|
1977 |
+
#~ "cet email après 15 minutes, vérifiez s'il n'est pas dans les indésirables "
|
1978 |
+
#~ "(spam)."
|
1979 |
+
|
1980 |
+
#~ msgctxt "widget-page-enhanced-select"
|
1981 |
+
#~ msgid ""
|
1982 |
+
#~ "You have successfully subscribed to the newsletter. You will receive a "
|
1983 |
+
#~ "confirmation email in a few minutes. Please follow the link in it to "
|
1984 |
+
#~ "confirm your subscription. If the email takes more than 15 minutes to "
|
1985 |
+
#~ "appear in your mailbox, please check your spam folder."
|
1986 |
+
#~ msgstr ""
|
1987 |
+
#~ "Vous venez de vous abonner à notre newsletter. Vous allez recevoir un "
|
1988 |
+
#~ "email de confirmation dans quelques instants. Cliquez sur le lien présent "
|
1989 |
+
#~ "dans cet email pour confirmer votre abonnement.Si vous n'avez pas reçu "
|
1990 |
+
#~ "cet email après 15 minutes, vérifiez s'il n'est pas dans les indésirables "
|
1991 |
+
#~ "(spam)."
|
1992 |
+
|
1993 |
+
#~ msgid "Email was successfully inserted."
|
1994 |
+
#~ msgstr "L'email a été ajouté."
|
1995 |
+
|
1996 |
+
#~ msgid "Email already exist in our list."
|
1997 |
+
#~ msgstr "Cet email existe déjà dans votre liste."
|
1998 |
+
|
1999 |
+
#~ msgid "Email is invalid."
|
2000 |
+
#~ msgstr "Email non valide."
|
2001 |
+
|
2002 |
+
#~ msgid " to view the details"
|
2003 |
+
#~ msgstr "pour voir les détails"
|
2004 |
+
|
2005 |
+
#~ msgid "Add email"
|
2006 |
+
#~ msgstr "Nouvel abonné"
|
2007 |
+
|
2008 |
+
#~ msgid "Enter full name"
|
2009 |
+
#~ msgstr "Nom complet"
|
2010 |
+
|
2011 |
+
#~ msgid "Please enter subscriber full name."
|
2012 |
+
#~ msgstr "Veuillez saisir le nom complet de l'abonné."
|
2013 |
+
|
2014 |
+
#~ msgid "Enter email address."
|
2015 |
+
#~ msgstr "Adresse email"
|
2016 |
+
|
2017 |
+
#~ msgid "Please select subscriber email status."
|
2018 |
+
#~ msgstr "Veuillez sélectionner le statut de l'abonné."
|
2019 |
+
|
2020 |
+
#~ msgid "Select (or) Create Group"
|
2021 |
+
#~ msgstr "Groupe d'abonnés"
|
2022 |
+
|
2023 |
+
#~ msgid "Please select or create group for this subscriber."
|
2024 |
+
#~ msgstr "Sélectionnez ou créez un groupe pour cet abonné."
|
2025 |
+
|
2026 |
+
#~ msgid "Submit"
|
2027 |
+
#~ msgstr "Valider"
|
2028 |
+
|
2029 |
+
#~ msgid "Please select default group to newly commented user."
|
2030 |
+
#~ msgstr ""
|
2031 |
+
#~ "Veuillez sélectionner un groupe pour les nouveaux utilisateurs ayant "
|
2032 |
+
#~ "laissé un commentaire sur votre site."
|
2033 |
+
|
2034 |
+
#~ msgid "Sync email successfully updated."
|
2035 |
+
#~ msgstr "Synchronisation des emails effectuée."
|
2036 |
+
|
2037 |
+
#~ msgid "Sync email"
|
2038 |
+
#~ msgstr "Synchronisation des emails"
|
2039 |
+
|
2040 |
+
#~ msgid "Sync newly registered user"
|
2041 |
+
#~ msgstr "Synchroniser les nouveaux utilisateurs enregistrés sur le site"
|
2042 |
+
|
2043 |
+
#~ msgid ""
|
2044 |
+
#~ "Automatically add a newly registered user email address to subscribers "
|
2045 |
+
#~ "list."
|
2046 |
+
#~ msgstr ""
|
2047 |
+
#~ "Ajouter automatiquement les nouveaux utilisateurs enregistrés sur le site "
|
2048 |
+
#~ "à une liste d'abonnés."
|
2049 |
+
|
2050 |
+
#~ msgid "Select default group"
|
2051 |
+
#~ msgstr "Choix du groupe par défaut"
|
2052 |
+
|
2053 |
+
#~ msgid "Sync newly commented user"
|
2054 |
+
#~ msgstr ""
|
2055 |
+
#~ "Synchroniser les nouveaux utilisateurs ayant laisser un commentaire sur "
|
2056 |
+
#~ "le site"
|
2057 |
+
|
2058 |
+
#~ msgid ""
|
2059 |
+
#~ "Automatically add a newly commented (who posted comments) user email "
|
2060 |
+
#~ "address to subscribers list."
|
2061 |
+
#~ msgstr ""
|
2062 |
+
#~ "Ajouter automatiquement les utilisateurs ayant commenté sur le site à un "
|
2063 |
+
#~ "groupe d'abonnés."
|
2064 |
+
|
2065 |
+
#~ msgid "Export email address in csv format"
|
2066 |
+
#~ msgstr "Exporter les adresses email au format csv"
|
2067 |
+
|
2068 |
+
#~ msgid "Export option"
|
2069 |
+
#~ msgstr "Option d'export"
|
2070 |
+
|
2071 |
+
#~ msgid "Total email"
|
2072 |
+
#~ msgstr "Nb d'emails"
|
2073 |
+
|
2074 |
+
#~ msgid "Subscriber email address"
|
2075 |
+
#~ msgstr "Adresses email des abonnés"
|
2076 |
+
|
2077 |
+
#~ msgid "Click to export csv"
|
2078 |
+
#~ msgstr "Exporter en csv"
|
2079 |
+
|
2080 |
+
#~ msgid "Registered email address"
|
2081 |
+
#~ msgstr "Adresses emails enregistrées"
|
2082 |
+
|
2083 |
+
#~ msgid "Comments author email address"
|
2084 |
+
#~ msgstr "Adresses email des auteurs de commentaire"
|
2085 |
+
|
2086 |
+
#~ msgid "Add Email"
|
2087 |
+
#~ msgstr "Ajouter un email"
|
2088 |
+
|
2089 |
+
#~ msgid "Import Email"
|
2090 |
+
#~ msgstr "Import d'emails"
|
2091 |
+
|
2092 |
+
#~ msgid "Email was successfully updated."
|
2093 |
+
#~ msgstr "L'email a été mis à jour."
|
2094 |
+
|
2095 |
+
#~ msgid "Email already exist for this group."
|
2096 |
+
#~ msgstr "L'email existe déjà dans ce groupe."
|
2097 |
+
|
2098 |
+
#~ msgid "Edit email"
|
2099 |
+
#~ msgstr "Modifier l'email"
|
2100 |
+
|
2101 |
+
#~ msgid "Email(s) was successfully imported."
|
2102 |
+
#~ msgstr "email(s) importé(s)."
|
2103 |
+
|
2104 |
+
#~ msgid "Email(s) are already in our database."
|
2105 |
+
#~ msgstr "email(s) déjà existant(s)"
|
2106 |
+
|
2107 |
+
#~ msgid "Email(s) are invalid."
|
2108 |
+
#~ msgstr "email(s) non valide."
|
2109 |
+
|
2110 |
+
#~ msgid "File upload failed or no data available in the csv file."
|
2111 |
+
#~ msgstr ""
|
2112 |
+
#~ "Le téléchargement a échoué, ou alors il n'y a pas de données dans ce "
|
2113 |
+
#~ "fichier."
|
2114 |
+
|
2115 |
+
#~ msgid "Upload email"
|
2116 |
+
#~ msgstr "Importation d'une liste d'email en CSV"
|
2117 |
+
|
2118 |
+
#~ msgid "Select csv file"
|
2119 |
+
#~ msgstr "Fichier csv"
|
2120 |
+
|
2121 |
+
#~ msgid ""
|
2122 |
+
#~ "Select the input csv file. Check official website for csv structure : "
|
2123 |
+
#~ msgstr ""
|
2124 |
+
#~ "Sélectionnez votre fichier csv. Consultez la documentation pour la "
|
2125 |
+
#~ "structure du document csv:"
|
2126 |
+
|
2127 |
+
#~ msgid "click here"
|
2128 |
+
#~ msgstr "c'est ici"
|
2129 |
+
|
2130 |
+
#~ msgid "Upload CSV"
|
2131 |
+
#~ msgstr "Télécharger"
|
2132 |
+
|
2133 |
+
#~ msgid ""
|
2134 |
+
#~ "To send confirmation mail, Please change the Opt-in option to Double Opt "
|
2135 |
+
#~ "In."
|
2136 |
+
#~ msgstr ""
|
2137 |
+
#~ "Pour envoyer un email de confirmation, changez l'option validation à "
|
2138 |
+
#~ "double validation"
|
2139 |
+
|
2140 |
+
#~ msgid "Confirmation email(s) resent successfully."
|
2141 |
+
#~ msgstr "Les emails de confirmation ont été renvoyés."
|
2142 |
+
|
2143 |
+
#~ msgid "Selected subscribers group was successfully updated."
|
2144 |
+
#~ msgstr "Le groupe a été mis à jour."
|
2145 |
+
|
2146 |
+
#~ msgid "Email address"
|
2147 |
+
#~ msgstr "Adresse email"
|
2148 |
+
|
2149 |
+
#~ msgid ""
|
2150 |
+
#~ "No records available. Please use the above alphabet search button to "
|
2151 |
+
#~ "search."
|
2152 |
+
#~ msgstr ""
|
2153 |
+
#~ "Aucun enregistrement. Utilisez les groupes de lettres pour faire une "
|
2154 |
+
#~ "recherche."
|
2155 |
+
|
2156 |
+
#~ msgid "Export Email"
|
2157 |
+
#~ msgstr "Export d'emails"
|
2158 |
+
|
2159 |
+
#~ msgid ""
|
2160 |
+
#~ "Add subscription form on website, send HTML newsletters to subscribers & "
|
2161 |
+
#~ "automatically notify them about new blog posts once it gets published."
|
2162 |
+
#~ msgstr ""
|
2163 |
+
#~ "Permet d'ajouter un formulaire d'abonnement sur votre site, d'envoyer des "
|
2164 |
+
#~ "newsletters en HTML et d'informer automatiquement vos abonnés de vos "
|
2165 |
+
#~ "nouvelles publications."
|
2166 |
+
|
2167 |
+
#~ msgid "Notification was successfully updated."
|
2168 |
+
#~ msgstr "Notification mise à jour"
|
2169 |
+
|
2170 |
+
#~ msgid "Not allowed to update subscribers group in edit page"
|
2171 |
+
#~ msgstr "Vous ne pouvez pas changer le groupe d'abonnés sur cette page"
|
2172 |
+
|
2173 |
+
#~ msgid "Notification Mail"
|
2174 |
+
#~ msgstr "Modèle d'email"
|
2175 |
+
|
2176 |
+
#~ msgid "Select notification mail subject (Use compose menu to create new)"
|
2177 |
+
#~ msgstr ""
|
2178 |
+
#~ "Sélectionnez le modèle d'email (utilisez l'onglet modèles pour en créer "
|
2179 |
+
#~ "un nouveau)"
|
2180 |
+
|
2181 |
+
#~ msgid "Post Categories"
|
2182 |
+
#~ msgstr "Catégories"
|
2183 |
+
|
2184 |
+
#~ msgid "Custom Post Type"
|
2185 |
+
#~ msgstr "Type de contenu"
|
2186 |
+
|
2187 |
+
#~ msgid "Please select your custom post type (Optional)."
|
2188 |
+
#~ msgstr "Veuillez sélectionner un type de contenu (optionnel)"
|
2189 |
+
|
2190 |
+
#~ msgid "Notification was successfully created. "
|
2191 |
+
#~ msgstr "La notification a bien été créée."
|
2192 |
+
|
2193 |
+
#~ msgid " to view the details."
|
2194 |
+
#~ msgstr "pour afficher les détails."
|
2195 |
+
|
2196 |
+
#~ msgid "Select subscribers group"
|
2197 |
+
#~ msgstr "Sélection du groupe d'abonnés"
|
2198 |
+
|
2199 |
+
#~ msgid "Select post categories"
|
2200 |
+
#~ msgstr "Sélectionnez la/les catégories"
|
2201 |
+
|
2202 |
+
#~ msgid "Select your custom post type (Optional)"
|
2203 |
+
#~ msgstr "Sélectionnez le type de contenu (optionnel)"
|
2204 |
+
|
2205 |
+
#~ msgid "Select notification status"
|
2206 |
+
#~ msgstr "Sélectionnez le mode d'envoi"
|
2207 |
+
|
2208 |
+
#~ msgid "Selected record was successfully deleted"
|
2209 |
+
#~ msgstr "Les données sélectionnées ont bien été supprimées"
|
2210 |
+
|
2211 |
+
#~ msgid "Template was successfully updated."
|
2212 |
+
#~ msgstr "Le modèle a été mis à jour."
|
2213 |
+
|
2214 |
+
#~ msgid "Mail Type"
|
2215 |
+
#~ msgstr "Type d'email"
|
2216 |
+
|
2217 |
+
#~ msgid "Please select your mail type"
|
2218 |
+
#~ msgstr "Veuillez sélectionner le type de ce modèle d'email"
|
2219 |
+
|
2220 |
+
#~ msgid "Please enter your mail subject. Keyword: ###POSTTITLE###"
|
2221 |
+
#~ msgstr "Saisir le sujet de l'email. Mot clé: ###POSTTITLE###"
|
2222 |
+
|
2223 |
+
#~ msgid "Mail Content"
|
2224 |
+
#~ msgstr "Contenu de l'email"
|
2225 |
+
|
2226 |
+
#~ msgid "Please enter content for your mail"
|
2227 |
+
#~ msgstr "Veuillez saisir le contenu de ce modèle d'email"
|
2228 |
+
|
2229 |
+
#~ msgid ""
|
2230 |
+
#~ "Keywords: ###POSTTITLE###, ###POSTLINK###, ###POSTIMAGE###, "
|
2231 |
+
#~ "###POSTDESC###, ###POSTFULL###, ###DATE###, ###POSTLINK-ONLY###, "
|
2232 |
+
#~ "###POSTLINK-WITHTITLE###"
|
2233 |
+
#~ msgstr ""
|
2234 |
+
#~ "Mots clés: ###POSTTITLE###, ###POSTLINK###, ###POSTIMAGE###, "
|
2235 |
+
#~ "###POSTDESC###, ###POSTFULL###, ###DATE###, ###POSTLINK-ONLY###, "
|
2236 |
+
#~ "###POSTLINK-WITHTITLE###"
|
2237 |
+
|
2238 |
+
#~ msgid "Template was successfully created."
|
2239 |
+
#~ msgstr "Le modèle a été créé correctement."
|
2240 |
+
|
2241 |
+
#~ msgid ""
|
2242 |
+
#~ "Please find your cron job URL. This is readonly field not able to modify "
|
2243 |
+
#~ "from admin."
|
2244 |
+
#~ msgstr ""
|
2245 |
+
#~ "Vous ne pouvez pas modifier ce champ. Vous pouvez utliser cette URL pour "
|
2246 |
+
#~ "forcer la tâche."
|
2247 |
+
|
2248 |
+
#~ msgid "Enter number of mails you want to send per hour/trigger."
|
2249 |
+
#~ msgstr ""
|
2250 |
+
#~ "Saisissez le nombre d'email que vous voulez/pouvez envoyer par heure / "
|
2251 |
+
#~ "envoi."
|
2252 |
+
|
2253 |
+
#~ msgid ""
|
2254 |
+
#~ "Send above mail to admin whenever cron URL triggered in your server.<br /"
|
2255 |
+
#~ ">(Keywords: ###DATE###, ###SUBJECT###, ###COUNT###)"
|
2256 |
+
#~ msgstr ""
|
2257 |
+
#~ "Cet email est envoyé à l'administrateur à chaque fois que la tâche cron "
|
2258 |
+
#~ "est exécutée.<br />(Mots clés: ###DATE###, ###SUBJECT###, ###COUNT###)"
|
2259 |
+
|
2260 |
+
#~ msgid "No email address selected."
|
2261 |
+
#~ msgstr "Aucun email sélectionné."
|
2262 |
+
|
2263 |
+
#~ msgid "Mail sent successfully"
|
2264 |
+
#~ msgstr "Email correctement envoyé."
|
2265 |
+
|
2266 |
+
#~ msgid "Click here for details"
|
2267 |
+
#~ msgstr "Plus de détails en cliquant ici"
|
2268 |
+
|
2269 |
+
#~ msgid "Select your mail subject"
|
2270 |
+
#~ msgstr "Sélectionnez le modèle d'email"
|
2271 |
+
|
2272 |
+
#~ msgid ""
|
2273 |
+
#~ "Select a mail subject from available list. Go to Compose page to create "
|
2274 |
+
#~ "new mail."
|
2275 |
+
#~ msgstr ""
|
2276 |
+
#~ "Sélectionnez un modèle d'email dans la liste. Pour créer un nouveau "
|
2277 |
+
#~ "modèle, allez sur la page Modèles."
|
2278 |
+
|
2279 |
+
#~ msgid "Select your mail type"
|
2280 |
+
#~ msgstr "Sélectionnez le type d'email"
|
2281 |
+
|
2282 |
+
#~ msgid "Select subscriber group"
|
2283 |
+
#~ msgstr "Choix du groupe d'abonnés"
|
2284 |
+
|
2285 |
+
#~ msgid "Select your subscriber group to send email"
|
2286 |
+
#~ msgstr "Sélectionnez le groupe d'abonnés à qui envoyer l'email"
|
2287 |
+
|
2288 |
+
#~ msgid "A,B,C"
|
2289 |
+
#~ msgstr "A,B,C"
|
2290 |
+
|
2291 |
+
#~ msgid "D,E,F"
|
2292 |
+
#~ msgstr "D,E,F"
|
2293 |
+
|
2294 |
+
#~ msgid "G,H,I"
|
2295 |
+
#~ msgstr "G,H,I"
|
2296 |
+
|
2297 |
+
#~ msgid "J,K,L"
|
2298 |
+
#~ msgstr "J,K,L"
|
2299 |
+
|
2300 |
+
#~ msgid "M,N,O"
|
2301 |
+
#~ msgstr "M,N,O"
|
2302 |
+
|
2303 |
+
#~ msgid "P,Q,R"
|
2304 |
+
#~ msgstr "P,Q,R"
|
2305 |
+
|
2306 |
+
#~ msgid "S,T,U"
|
2307 |
+
#~ msgstr "S,T,U"
|
2308 |
+
|
2309 |
+
#~ msgid "V,W,X,Y,Z"
|
2310 |
+
#~ msgstr "V,W,X,Y,Z"
|
2311 |
+
|
2312 |
+
#~ msgid "0-9"
|
2313 |
+
#~ msgstr "0-9"
|
2314 |
+
|
2315 |
+
#~ msgid "ALL"
|
2316 |
+
#~ msgstr "TOUT"
|
2317 |
+
|
2318 |
+
#~ msgid ""
|
2319 |
+
#~ "<span style=\"color:#FF0000\">No subscribers available for %s search "
|
2320 |
+
#~ "criteria.</span>"
|
2321 |
+
#~ msgstr ""
|
2322 |
+
#~ "<span style=\"color:#FF0000\">Aucun abonné ne correspond à la recherche: "
|
2323 |
+
#~ "%s.</span>"
|
2324 |
+
|
2325 |
+
#~ msgid ""
|
2326 |
+
#~ "Select user role to access plugin Subscribers Menu. Only Admin user can "
|
2327 |
+
#~ "change this value."
|
2328 |
+
#~ msgstr ""
|
2329 |
+
#~ "Sélectionnez le rôle pour afficher le menu Abonnés. Seuls les "
|
2330 |
+
#~ "administrateurs peuvent changer cette valeur."
|
2331 |
+
|
2332 |
+
#~ msgid ""
|
2333 |
+
#~ "Select user role to access plugin Compose Menu. Only Admin user can "
|
2334 |
+
#~ "change this value."
|
2335 |
+
#~ msgstr ""
|
2336 |
+
#~ "Sélectionnez le rôle pour afficher le menu Modèles. Seuls les "
|
2337 |
+
#~ "administrateurs peuvent changer cette valeur."
|
2338 |
+
|
2339 |
+
#~ msgid ""
|
2340 |
+
#~ "Select user role to access plugin Notification Menu. Only Admin user can "
|
2341 |
+
#~ "change this value."
|
2342 |
+
#~ msgstr ""
|
2343 |
+
#~ "Sélectionnez le rôle pour afficher le menu Notifications. Seuls les "
|
2344 |
+
#~ "administrateurs peuvent changer cette valeur."
|
2345 |
+
|
2346 |
+
#~ msgid ""
|
2347 |
+
#~ "Select user role to access plugin Send Email Menu. Only Admin user can "
|
2348 |
+
#~ "change this value."
|
2349 |
+
#~ msgstr ""
|
2350 |
+
#~ "Sélectionnez le rôle pour afficher le menu Envoi d'email. Seuls les "
|
2351 |
+
#~ "administrateurs peuvent changer cette valeur."
|
2352 |
+
|
2353 |
+
#~ msgid ""
|
2354 |
+
#~ "Select user role to access plugin Settings Menu. Only Admin user can "
|
2355 |
+
#~ "change this value."
|
2356 |
+
#~ msgstr ""
|
2357 |
+
#~ "Sélectionnez le rôle pour afficher le menu Paramètres. Seuls les "
|
2358 |
+
#~ "administrateurs peuvent changer cette valeur."
|
2359 |
+
|
2360 |
+
#~ msgid ""
|
2361 |
+
#~ "Select user role to access plugin Sent Mails Menu. Only Admin user can "
|
2362 |
+
#~ "change this value."
|
2363 |
+
#~ msgstr ""
|
2364 |
+
#~ "Sélectionnez le rôle pour afficher le menu Emails envoyés. Seuls les "
|
2365 |
+
#~ "administrateurs peuvent changer cette valeur."
|
2366 |
+
|
2367 |
+
#~ msgid ""
|
2368 |
+
#~ "Select user role to access plugin Help & Info Menu. Only Admin user can "
|
2369 |
+
#~ "change this value."
|
2370 |
+
#~ msgstr ""
|
2371 |
+
#~ "Sélectionnez le rôle pour afficher le menu Aide & Infos. Seuls les "
|
2372 |
+
#~ "administrateurs peuvent changer cette valeur."
|
2373 |
+
|
2374 |
+
#~ msgid "How to setup subscription box widget?"
|
2375 |
+
#~ msgstr "Comment paramétrer le widget d'abonnement?"
|
2376 |
+
|
2377 |
+
#~ msgid "How to add unsubscribe link in welcome email?"
|
2378 |
+
#~ msgstr ""
|
2379 |
+
#~ "Comment ajouter un lien pour se désabonner dans l'email de bienvenue?"
|
2380 |
+
|
2381 |
+
#~ msgid "How to change/update/translate any text from the plugin?"
|
2382 |
+
#~ msgstr "Comment changer/modifier/traduire les textes de l'extension?"
|
2383 |
+
|
2384 |
+
#~ msgid ""
|
2385 |
+
#~ "Refer steps from <a target=\"_blank\" href=\"http://www.storeapps.org/"
|
2386 |
+
#~ "docs/es-how-to-change-update-translate-any-texts-from-email-subscribers/"
|
2387 |
+
#~ "\">here</a>."
|
2388 |
+
#~ msgstr ""
|
2389 |
+
#~ "<a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-how-to-"
|
2390 |
+
#~ "change-update-translate-any-texts-from-email-subscribers/\">Consultez la "
|
2391 |
+
#~ "documentation</a>."
|
2392 |
+
|
2393 |
+
#~ msgid "How to setup auto emails using CRON Job?"
|
2394 |
+
#~ msgstr ""
|
2395 |
+
#~ "Comment configurer l'envoi d'email automatique en utilisant une tâche "
|
2396 |
+
#~ "cron?"
|
2397 |
+
|
2398 |
+
#~ msgid ""
|
2399 |
+
#~ " 1. <a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-how-to-"
|
2400 |
+
#~ "schedule-cron-emails-in-cpanel/\">Setup cron job in Plesk</a><br>\n"
|
2401 |
+
#~ "\t\t\t\t\t\t\t\t\t\t 2. <a target=\"_blank\" href=\"http://www."
|
2402 |
+
#~ "storeapps.org/docs/es-how-to-schedule-cron-emails-in-parallels-plesk/"
|
2403 |
+
#~ "\">Setup cron job in cPanal</a><br>\n"
|
2404 |
+
#~ "\t\t\t\t\t\t\t\t\t\t 3. <a target=\"_blank\" href=\"http://www."
|
2405 |
+
#~ "storeapps.org/docs/es-what-to-do-if-hosting-doesnt-support-cron-jobs/"
|
2406 |
+
#~ "\">Hosting doesnt support cron jobs?</a>"
|
2407 |
+
#~ msgstr ""
|
2408 |
+
#~ " 1. <a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-how-to-"
|
2409 |
+
#~ "schedule-cron-emails-in-cpanel/\">Configurer une tâche cron sur Plesk</"
|
2410 |
+
#~ "a><br>\n"
|
2411 |
+
#~ "\t\t\t\t\t\t\t\t\t\t 2. <a target=\"_blank\" href=\"http://www."
|
2412 |
+
#~ "storeapps.org/docs/es-how-to-schedule-cron-emails-in-parallels-plesk/"
|
2413 |
+
#~ "\">Configurer une tâche cron sur cPanel</a><br>\n"
|
2414 |
+
#~ "\t\t\t\t\t\t\t\t\t\t 3. <a target=\"_blank\" href=\"http://www."
|
2415 |
+
#~ "storeapps.org/docs/es-what-to-do-if-hosting-doesnt-support-cron-jobs/"
|
2416 |
+
#~ "\">Votre hébergeur ne gère pas les tâches cron?</a>"
|
2417 |
+
|
2418 |
+
#~ msgid "Notification Emails are not being received by Subscribers?"
|
2419 |
+
#~ msgstr "Vos abonnés ne reçoivent pas vos emails?"
|
2420 |
+
|
2421 |
+
#~ msgid "Confirm steps from %s."
|
2422 |
+
#~ msgstr "Vérifiez les étapes de paramétrage %s."
|
2423 |
+
|
2424 |
+
#~ msgid "here"
|
2425 |
+
#~ msgstr "ici"
|
2426 |
+
|
2427 |
+
#~ msgid "How to import and export email address to subscriber list?"
|
2428 |
+
#~ msgstr "Comment importer et exporter les adresses email des abonnés?"
|
2429 |
+
|
2430 |
+
#~ msgid "Refer %s."
|
2431 |
+
#~ msgstr "Consulter la documentation %s."
|
2432 |
+
|
2433 |
+
#~ msgid "How to Compose and Send static newsletter mails?"
|
2434 |
+
#~ msgstr "Comment créer un modèle d'email et l'envoyer?"
|
2435 |
+
|
2436 |
+
#~ msgid ""
|
2437 |
+
#~ "How to install and activate Email Subscribers on multisite installations?"
|
2438 |
+
#~ msgstr ""
|
2439 |
+
#~ "Comment installer et activer Abonnements & Newsletters sur une "
|
2440 |
+
#~ "installation multisite?"
|
2441 |
+
|
2442 |
+
#~ msgid ""
|
2443 |
+
#~ "How to modify the existing mails (Opt-in mail, Welcome mail, Admin mails) "
|
2444 |
+
#~ "content?"
|
2445 |
+
#~ msgstr ""
|
2446 |
+
#~ "Comment modifier le contenu des notifications (validation, message de "
|
2447 |
+
#~ "bienvenue, message administrateur...) ?"
|
2448 |
+
|
2449 |
+
#~ msgid "Check more detailed documentation"
|
2450 |
+
#~ msgstr "Consulter la documentation complète"
|
2451 |
+
|
2452 |
+
#~ msgid "From %s."
|
2453 |
+
#~ msgstr "%s."
|
2454 |
+
|
2455 |
+
#~ msgid "http://www.storeapps.org/product/email-subscribers/"
|
2456 |
+
#~ msgstr "http://www.storeapps.org/product/email-subscribers/"
|
2457 |
+
|
2458 |
+
#~ msgid "http://www.storeapps.org/"
|
2459 |
+
#~ msgstr "http://www.storeapps.org/"
|
languages/email-subscribers-pl_PL.mo
CHANGED
Binary file
|
languages/email-subscribers-pl_PL.po
CHANGED
@@ -3,1944 +3,1891 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Email Subscribers\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: Tue Feb 09 2016 16:21:13 GMT+0530 (IST)\n"
|
6 |
-
"PO-Revision-Date: 2016
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: \n"
|
9 |
-
"Language:
|
10 |
-
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10 >= 2 && n%10<=4
|
11 |
-
"%100 >= 20)? 1 : 2)
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
-
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;
|
18 |
-
"_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;
|
19 |
-
"_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;
|
20 |
-
"esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;
|
21 |
-
"comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
22 |
-
"X-Generator:
|
23 |
"X-Loco-Target-Locale: pl_PL\n"
|
24 |
-
"X-Poedit-SearchPath-0:
|
25 |
|
26 |
-
|
27 |
-
msgid "
|
28 |
-
msgstr "
|
29 |
|
30 |
#. URI of the plugin
|
31 |
msgid "http://www.storeapps.org/product/email-subscribers"
|
32 |
-
msgstr ""
|
33 |
|
34 |
#. Author of the plugin
|
35 |
msgid "StoreApps"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
|
38 |
-
#: ../
|
39 |
-
msgid "
|
40 |
-
msgstr "
|
41 |
|
42 |
-
#: ../
|
43 |
-
|
44 |
-
|
|
|
|
|
|
|
|
|
45 |
|
46 |
-
#: ../notification/notification-
|
47 |
-
msgid "
|
48 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
|
|
|
|
|
|
|
|
54 |
|
55 |
-
#: ../
|
56 |
-
|
57 |
-
|
58 |
-
msgstr "Własny typ wpisów"
|
59 |
|
60 |
-
#: ../
|
61 |
-
|
62 |
-
|
63 |
-
|
|
|
64 |
|
65 |
-
#: ../
|
66 |
-
|
67 |
-
|
68 |
-
msgstr "Wyślij mail od razu gdy tylko nowy post zostanie opublikowany"
|
69 |
|
70 |
-
#: ../
|
71 |
-
|
72 |
-
|
73 |
-
msgstr "Dodaj do Crona, gdy zostanie opublikowany nowy post i wyślij przez Crona"
|
74 |
|
75 |
-
#: ../
|
76 |
-
|
77 |
-
|
78 |
-
msgstr "Wyłącz powiadomienia"
|
79 |
|
80 |
-
#: ../
|
81 |
-
msgid "
|
82 |
-
|
|
|
|
|
|
|
|
|
83 |
|
84 |
-
#: ../
|
85 |
-
msgid "
|
86 |
-
|
|
|
|
|
|
|
|
|
87 |
|
88 |
-
#: ../
|
89 |
-
msgid "
|
90 |
-
msgstr "
|
91 |
|
92 |
-
#: ../
|
93 |
-
msgid "
|
94 |
-
msgstr ""
|
95 |
-
"Proszę wybrać kategorię wpisów+\n"
|
96 |
-
"+."
|
97 |
|
98 |
-
#: ../
|
99 |
-
msgid "
|
100 |
-
msgstr "
|
101 |
|
102 |
-
#: ../
|
103 |
-
|
104 |
-
|
|
|
105 |
|
106 |
-
#: ../
|
107 |
-
msgid "
|
108 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
|
110 |
-
#: ../
|
111 |
-
msgid "
|
112 |
-
msgstr "
|
113 |
|
114 |
-
#: ../
|
115 |
-
msgid "
|
116 |
-
msgstr "
|
117 |
|
118 |
-
#: ../
|
119 |
-
msgid "Select
|
120 |
-
msgstr "Wybierz
|
121 |
|
122 |
-
#: ../
|
123 |
-
msgid "
|
124 |
-
msgstr "
|
125 |
|
126 |
-
#: ../
|
127 |
-
|
128 |
-
|
|
|
129 |
|
130 |
-
#: ../
|
131 |
-
|
132 |
-
|
|
|
|
|
|
|
133 |
|
134 |
-
#: ../
|
135 |
-
|
136 |
-
|
|
|
137 |
|
138 |
-
#: ../
|
139 |
-
msgid "
|
140 |
-
msgstr "
|
141 |
|
142 |
-
#: ../
|
143 |
-
msgid "
|
144 |
-
msgstr "
|
145 |
|
146 |
-
#: ../
|
147 |
-
msgid "
|
148 |
-
msgstr "
|
149 |
|
150 |
-
#: ../
|
151 |
-
msgid "
|
152 |
-
msgstr "
|
153 |
|
154 |
-
#: ../
|
155 |
-
msgid "
|
156 |
-
msgstr "
|
157 |
|
158 |
-
#: ../
|
159 |
-
msgid "
|
160 |
-
msgstr "
|
161 |
|
162 |
-
#: ../
|
163 |
-
msgid "
|
164 |
-
msgstr "
|
165 |
|
166 |
-
#: ../
|
167 |
-
msgid "
|
168 |
-
msgstr "
|
169 |
|
170 |
-
#: ../
|
171 |
-
msgid "
|
172 |
-
msgstr "
|
173 |
|
174 |
-
#: ../
|
175 |
-
|
176 |
-
|
177 |
-
"<span style=\"color:#FF0000\">No subscribers available for %s search criteria.</"
|
178 |
-
"span>"
|
179 |
-
msgstr ""
|
180 |
-
"<span style=\"color:#FF0000\">Brak subskrybentów dla %s kryteriów wyszukiwania.</"
|
181 |
-
"span>"
|
182 |
|
183 |
-
#: ../
|
184 |
-
msgid "
|
185 |
-
msgstr "
|
186 |
|
187 |
-
#: ../
|
188 |
-
msgid "
|
189 |
-
msgstr "
|
190 |
|
191 |
-
#: ../
|
192 |
-
msgid "
|
193 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
194 |
|
195 |
-
#: ../
|
196 |
-
msgid "
|
197 |
-
msgstr "
|
198 |
|
199 |
-
#: ../
|
200 |
-
msgid "
|
201 |
-
msgstr "
|
202 |
|
203 |
-
#: ../
|
204 |
-
msgid "
|
205 |
-
msgstr "
|
206 |
|
207 |
-
#: ../
|
208 |
-
msgid "
|
209 |
-
msgstr "
|
210 |
|
211 |
-
#: ../
|
212 |
-
msgid "
|
213 |
-
msgstr "
|
214 |
|
215 |
-
#: ../
|
216 |
-
|
217 |
-
|
218 |
-
msgstr "Ustawienia"
|
219 |
|
220 |
-
#: ../
|
221 |
-
msgid "
|
222 |
-
msgstr "
|
223 |
|
224 |
-
#: ../
|
225 |
-
msgid ""
|
226 |
-
"
|
227 |
-
"plugin."
|
228 |
-
msgstr ""
|
229 |
-
"Wybierz nazwy i adresy FROM dla wszystkich mailowych powiadomień z tej wtyczki."
|
230 |
|
231 |
-
#: ../
|
232 |
-
msgid "
|
233 |
-
msgstr "
|
234 |
|
235 |
-
#: ../
|
236 |
-
msgid ""
|
237 |
-
"
|
238 |
-
"4 is to send mails with PHP method mail()"
|
239 |
-
msgstr ""
|
240 |
-
"Warianty 1 i 2 wysyłają maile domyślną metodą: wp_mail Wordpress (). Warianty 3 i "
|
241 |
-
"4 wysyłają maile z metodą PHP ()"
|
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 |
-
msgid "
|
261 |
-
msgstr "
|
262 |
|
263 |
-
#: ../
|
|
|
|
|
|
|
|
|
264 |
msgid ""
|
265 |
-
"
|
266 |
-
"
|
267 |
-
"subscribers do not need to confirm their email address."
|
268 |
msgstr ""
|
269 |
-
"
|
270 |
-
"
|
271 |
-
"potwierdzać swojego adresu e-mail."
|
272 |
-
|
273 |
-
#: ../settings/settings-edit.php:229
|
274 |
-
msgid "Double Opt In"
|
275 |
-
msgstr "Podwójne Opt-In"
|
276 |
|
277 |
-
#: ../
|
278 |
-
msgid "
|
279 |
-
|
|
|
|
|
|
|
|
|
280 |
|
281 |
-
#: ../
|
282 |
-
msgid "
|
283 |
-
|
|
|
|
|
|
|
|
|
|
|
284 |
|
285 |
-
#: ../
|
286 |
-
msgid "
|
287 |
-
|
|
|
|
|
|
|
|
|
288 |
|
289 |
-
#: ../
|
290 |
-
msgid "
|
291 |
-
msgstr "
|
292 |
|
293 |
-
#: ../
|
294 |
-
msgid "
|
295 |
-
msgstr "
|
296 |
|
297 |
-
#: ../
|
298 |
-
msgid "
|
299 |
-
msgstr "
|
300 |
|
301 |
-
#: ../
|
302 |
-
msgid "
|
303 |
-
msgstr "
|
304 |
|
305 |
-
#: ../
|
306 |
-
msgid ""
|
307 |
-
"
|
308 |
-
"added email into our database."
|
309 |
-
msgstr ""
|
310 |
-
"Wprowadź temat maila do powtórnego Opt-In. Spowoduje to wysłanie e-maila, gdy "
|
311 |
-
"abonent zostanie dodany do naszej bazy danych."
|
312 |
|
313 |
-
#: ../
|
314 |
-
msgid "
|
315 |
-
msgstr "
|
316 |
|
317 |
-
#: ../
|
318 |
-
msgid ""
|
319 |
-
|
320 |
-
"added email into our database."
|
321 |
-
msgstr ""
|
322 |
-
"Wprowadź treść dla maila powtórnego Opt-in. Będzie on wysyłany zawsze gdy "
|
323 |
-
"subskrybent doda swój adres do naszej bazy."
|
324 |
|
325 |
-
#: ../
|
326 |
-
msgid "
|
327 |
-
msgstr "
|
328 |
|
329 |
-
#: ../
|
330 |
-
msgid "
|
331 |
-
msgstr "
|
332 |
|
333 |
-
#: ../
|
334 |
-
msgid "
|
335 |
-
msgstr "
|
336 |
|
337 |
-
#: ../
|
338 |
msgid ""
|
339 |
-
"
|
340 |
-
"
|
341 |
msgstr ""
|
342 |
-
"
|
343 |
-
"
|
344 |
-
|
345 |
-
#: ../settings/settings-edit.php:278
|
346 |
-
msgid "Subscriber welcome email"
|
347 |
-
msgstr "Mail powitalny."
|
348 |
|
349 |
-
#: ../
|
350 |
-
msgid "
|
351 |
-
msgstr ""
|
352 |
-
"Wysłać mail powitalny do subskrybenta. Ta opcja musi być ustawiona na Tak (Yes)"
|
353 |
|
354 |
-
#: ../
|
355 |
-
msgid "
|
356 |
-
msgstr "
|
357 |
|
358 |
-
#: ../
|
359 |
-
msgid "
|
360 |
-
msgstr "
|
361 |
|
362 |
-
#: ../
|
363 |
-
msgid "
|
364 |
-
msgstr "
|
365 |
|
366 |
-
#: ../
|
367 |
-
msgid ""
|
368 |
-
"Enter the subject for subscriber welcome mail. This will send whenever email "
|
369 |
-
"subscribed (confirmed) successfully."
|
370 |
msgstr ""
|
371 |
-
"
|
372 |
-
"
|
373 |
|
374 |
-
#: ../
|
375 |
-
msgid "
|
376 |
-
msgstr "
|
377 |
|
378 |
-
#: ../
|
379 |
-
msgid ""
|
380 |
-
"
|
381 |
-
"subscribed (confirmed) successfully. (Keyword: ###NAME###)"
|
382 |
-
msgstr ""
|
383 |
-
"Wprowadź treść powitalnego maila do subskrybenta. Będzie o wysłany, gdy "
|
384 |
-
"subskrypcja przebiegnie pomyślnie.(Klucz: ###NAME###)"
|
385 |
|
386 |
-
#: ../
|
387 |
-
msgid "
|
388 |
-
msgstr "
|
389 |
|
390 |
-
#: ../
|
391 |
-
msgid ""
|
392 |
-
"
|
393 |
-
msgstr ""
|
394 |
-
"Aby wysłać powiadomienia administratora dla nowego abonenta, ta opcja musi być "
|
395 |
-
"ustawiony na TAK."
|
396 |
|
397 |
-
#: ../
|
398 |
-
msgid "
|
399 |
-
msgstr "
|
400 |
|
401 |
-
#: ../
|
402 |
-
msgid ""
|
403 |
-
"
|
404 |
-
"comma)."
|
405 |
-
msgstr ""
|
406 |
-
"Wpisz, oddzielone przecinkiem, adresy e-mail administratora(-ów), który(-rzy) "
|
407 |
-
"powinni otrzymać powiadomienia."
|
408 |
|
409 |
-
#: ../
|
410 |
-
msgid "
|
411 |
-
msgstr "
|
412 |
|
413 |
-
#: ../
|
414 |
-
msgid ""
|
415 |
-
"
|
416 |
-
"confirmed into our database."
|
417 |
-
msgstr ""
|
418 |
-
"Wpisz temat maila do administratora. Będzie on wysyłany gdy nowy adres, po "
|
419 |
-
"potwierdzeniu, zostanie dodany do naszej bazy danych."
|
420 |
|
421 |
-
#: ../
|
422 |
-
msgid "
|
423 |
-
msgstr "
|
424 |
|
425 |
-
#: ../
|
426 |
-
msgid ""
|
427 |
-
"
|
428 |
-
"confirmed into our database. (Keyword: ###NAME###, ###EMAIL###)"
|
429 |
-
msgstr ""
|
430 |
-
"Wprowadź treść maila do administratora. Będzie on wysyłany gdy nowy adres, po "
|
431 |
-
"potwierdzeniu, zostanie dodany do naszej bazy danych. (Klucze: ###NAME###, "
|
432 |
-
"###EMAIL###)"
|
433 |
|
434 |
-
#: ../
|
435 |
-
msgid "
|
436 |
-
msgstr "
|
437 |
|
438 |
-
#: ../
|
439 |
-
msgid "
|
440 |
-
msgstr "
|
441 |
|
442 |
-
#: ../
|
443 |
-
msgid "
|
444 |
-
msgstr "
|
445 |
|
446 |
-
#: ../
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
447 |
msgid ""
|
448 |
-
"
|
449 |
-
"
|
|
|
450 |
msgstr ""
|
451 |
-
"
|
452 |
-
"
|
|
|
453 |
|
454 |
-
#: ../
|
455 |
-
|
456 |
-
|
|
|
457 |
|
458 |
-
#: ../
|
|
|
459 |
msgid ""
|
460 |
-
"
|
|
|
|
|
461 |
msgstr ""
|
462 |
-
"
|
463 |
-
"
|
|
|
464 |
|
465 |
-
#: ../
|
466 |
-
|
467 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
468 |
|
469 |
-
#: ../
|
470 |
-
msgid "
|
|
|
|
|
471 |
msgstr ""
|
472 |
-
"
|
473 |
-
"
|
474 |
|
475 |
-
#: ../
|
476 |
-
msgid "
|
477 |
-
msgstr "
|
478 |
|
479 |
-
#: ../
|
480 |
-
msgid "
|
481 |
-
msgstr ""
|
482 |
-
"Domyślna wiadomość wyświetlana, w przypadku problemu z linkiem rezygnującym z "
|
483 |
-
"subskrypcji."
|
484 |
|
485 |
-
#: ../
|
486 |
-
msgid "
|
487 |
-
msgstr "
|
488 |
|
489 |
-
#: ../
|
490 |
-
msgid "
|
491 |
-
msgstr "
|
492 |
|
493 |
-
#: ../
|
494 |
-
msgid "
|
495 |
-
msgstr "
|
496 |
|
497 |
-
#: ../
|
498 |
-
msgid ""
|
499 |
-
"
|
500 |
-
"###STARTTIME###, ###ENDTIME###)"
|
501 |
-
msgstr ""
|
502 |
-
"Tekst maila raportu wysłanych maili. (Klucze: ###COUNT###, ###UNIQUE###, "
|
503 |
-
"###STARTTIME###, ###ENDTIME###)"
|
504 |
|
505 |
-
#: ../
|
506 |
-
msgid "
|
507 |
-
msgstr "
|
508 |
|
509 |
-
#: ../
|
510 |
-
#:
|
511 |
-
#:
|
512 |
-
#:
|
513 |
-
#:
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
#:
|
518 |
-
#:
|
519 |
-
#: ../
|
520 |
-
#: export.php:68 ../subscribers/view-subscriber-edit.php:148 ../subscribers/view-
|
521 |
-
#: subscriber-import.php:189 ../subscribers/view-subscriber-show.php:448
|
522 |
-
#: notification/notification-edit.php:256 ../notification/notification-add.php:249
|
523 |
-
#: ../notification/notification-show.php:141 ../compose/compose-edit.php:110 .
|
524 |
-
#: compose/compose-show.php:113 ../compose/compose-preview.php:35
|
525 |
-
#: compose/compose-add.php:101 ../cron/cron-add.php:90 ../sendmail/sendmail.php:241
|
526 |
-
#: ../roles/roles-add.php:158
|
527 |
msgid "Help"
|
528 |
msgstr "Pomoc"
|
529 |
|
530 |
-
#: ../
|
531 |
-
#:
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
|
|
|
|
537 |
|
538 |
-
#: ../
|
539 |
-
|
540 |
-
|
|
|
541 |
|
542 |
-
#: ../
|
543 |
-
#:
|
544 |
-
|
545 |
-
|
546 |
-
#: compose/compose-preview.php:13
|
547 |
-
msgid "Oops, selected details doesnt exist."
|
548 |
-
msgstr "Ups… wybrane dane nie istnieją."
|
549 |
|
550 |
-
#: ../
|
551 |
-
#:
|
552 |
-
msgid "
|
553 |
-
msgstr "
|
554 |
|
555 |
-
#: ../
|
556 |
-
|
557 |
-
|
|
|
558 |
|
559 |
-
#: ../
|
560 |
-
#:
|
561 |
-
msgid "
|
562 |
-
msgstr "
|
563 |
|
564 |
-
#: ../
|
565 |
-
|
566 |
-
|
|
|
567 |
|
568 |
-
#: ../
|
569 |
-
#:
|
570 |
-
msgid "
|
571 |
-
msgstr "
|
572 |
|
573 |
-
#: ../
|
574 |
-
|
575 |
-
|
|
|
576 |
|
577 |
-
#: ../
|
578 |
-
#:
|
579 |
-
|
580 |
-
|
581 |
-
#: subscriber-show.php:327 ../subscribers/view-subscriber-show.php:340
|
582 |
-
#: compose/compose-edit.php:99 ../compose/compose-show.php:67 ../compose/compose-
|
583 |
-
#: show.php:75 ../compose/compose-add.php:90
|
584 |
-
msgid "Status"
|
585 |
-
msgstr "Status"
|
586 |
|
587 |
-
#: ../
|
588 |
-
#:
|
589 |
-
|
590 |
-
|
591 |
-
msgstr "Typ"
|
592 |
|
593 |
-
#: ../
|
594 |
-
|
595 |
-
|
|
|
596 |
|
597 |
-
#: ../
|
598 |
-
|
599 |
-
|
|
|
600 |
|
601 |
-
#: ../
|
602 |
-
|
603 |
-
|
|
|
604 |
|
605 |
-
#: ../
|
606 |
-
#: subscribers/view-subscriber-
|
607 |
-
#:
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
|
|
|
|
|
612 |
|
613 |
-
#: ../
|
614 |
-
|
|
|
|
|
|
|
|
|
|
|
615 |
msgid "No records available."
|
616 |
msgstr "Brak dostępnych rekordów."
|
617 |
|
618 |
-
#: ../
|
619 |
-
msgid "
|
620 |
-
msgstr "
|
621 |
-
|
622 |
-
#: ../sentmail/sentmail-show.php:141 ../sentmail/deliverreport-show.php:95
|
623 |
-
msgid " >> "
|
624 |
-
msgstr " >> "
|
625 |
|
626 |
-
#: ../
|
627 |
-
msgid "
|
628 |
-
msgstr "
|
629 |
|
630 |
-
#: ../
|
631 |
-
msgid ""
|
632 |
-
"
|
633 |
-
"except latest 10."
|
634 |
-
msgstr ""
|
635 |
-
"Uwaga: kliknij przycisk <strong>Optymalizuj tabelę/ strong>, aby usunąć wszystkie "
|
636 |
-
"raporty oprócz ostatnich 10."
|
637 |
|
638 |
-
#: ../
|
639 |
-
|
640 |
-
|
|
|
641 |
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
msgid "Back"
|
646 |
-
msgstr "Cofnij"
|
647 |
|
648 |
-
#: ../
|
649 |
-
msgid "
|
650 |
-
msgstr "
|
651 |
|
652 |
-
#: ../
|
653 |
-
msgid "
|
654 |
-
msgstr "
|
655 |
|
656 |
-
#: ../
|
657 |
-
#:
|
658 |
-
#:
|
659 |
-
#:
|
660 |
-
msgid "
|
661 |
-
msgstr "
|
662 |
|
663 |
-
#: ../
|
664 |
-
|
665 |
-
|
|
|
|
|
|
|
666 |
|
667 |
-
#: ../
|
668 |
-
|
669 |
-
|
|
|
|
|
|
|
670 |
|
671 |
-
#: ../
|
672 |
-
msgid "
|
673 |
-
msgstr "
|
674 |
|
675 |
-
#: ../
|
676 |
-
msgid "
|
677 |
-
msgstr "
|
678 |
|
679 |
-
#: ../
|
680 |
-
|
681 |
-
|
682 |
-
msgid "Database ID"
|
683 |
-
msgstr "ID bazy danych"
|
684 |
|
685 |
-
#: ../
|
686 |
-
|
687 |
-
|
688 |
-
msgid "Name"
|
689 |
-
msgstr "Nazwa"
|
690 |
|
691 |
-
#: ../
|
692 |
-
msgid "
|
693 |
-
msgstr "
|
694 |
|
695 |
-
#: ../
|
696 |
-
msgid "
|
697 |
-
msgstr "
|
698 |
|
699 |
-
|
700 |
-
|
701 |
-
|
702 |
-
msgstr "Email Subscribers"
|
703 |
|
704 |
-
#: ../
|
705 |
-
msgid "
|
706 |
-
msgstr "
|
707 |
|
708 |
-
#: ../
|
709 |
-
|
710 |
-
|
|
|
711 |
|
712 |
-
#: ../
|
713 |
-
|
714 |
-
|
715 |
-
msgstr "Powiadomienie"
|
716 |
|
717 |
-
#: ../
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
msgstr "
|
|
|
|
|
722 |
|
723 |
-
#: ../
|
724 |
-
msgid "
|
725 |
-
msgstr "
|
726 |
|
727 |
-
#: ../
|
728 |
-
msgid "
|
729 |
-
|
|
|
|
|
|
|
|
|
730 |
|
731 |
-
#: ../
|
732 |
-
msgid "
|
733 |
-
msgstr "
|
734 |
|
735 |
-
#: ../
|
736 |
-
msgid "
|
737 |
-
msgstr "
|
738 |
|
739 |
-
#: ../
|
740 |
-
msgid "
|
741 |
-
msgstr "
|
742 |
|
743 |
-
#: ../
|
744 |
-
|
745 |
-
|
746 |
-
msgstr "Proszę wprowadź adres e-mail subskrybenta."
|
747 |
|
748 |
-
#: ../
|
749 |
-
|
750 |
-
|
751 |
-
msgstr "Proszę wybierz status e-maila subskrybenta."
|
752 |
|
753 |
-
#: ../
|
754 |
-
|
755 |
-
|
756 |
-
|
|
|
|
|
|
|
|
|
|
|
757 |
|
758 |
-
#: ../
|
759 |
-
|
760 |
-
|
761 |
-
msgstr "Czy chcesz usunąć ten rekord?"
|
762 |
|
763 |
-
#: ../
|
764 |
-
|
765 |
-
|
766 |
-
|
|
|
767 |
|
768 |
-
#: ../
|
769 |
-
|
770 |
-
|
771 |
-
msgstr "Czy chcesz usunąć zaznaczony(-e) rekord(-y)?"
|
772 |
|
773 |
-
#: ../
|
774 |
-
|
775 |
-
|
776 |
-
msgstr "Czy na pewno chcesz usunąć?"
|
777 |
|
778 |
-
#: ../
|
779 |
-
|
780 |
-
|
781 |
-
"Do you want to resend confirmation email? \\nAlso please note, this will update "
|
782 |
-
"subscriber current status to 'Unconfirmed'."
|
783 |
-
msgstr ""
|
784 |
-
"Czy chcesz, aby ponownie wysłać e-mail potwierdzający? \\nZaktualizuje to "
|
785 |
-
"aktualny status subskrybenta na \"Niepotwierdzone\"."
|
786 |
|
787 |
-
#: ../
|
788 |
-
|
789 |
-
|
790 |
-
msgstr "Proszę wybrać nową grupę subskrybenta."
|
791 |
|
792 |
-
#: ../
|
793 |
-
|
794 |
-
|
795 |
-
msgstr "Czy chcesz zaktualizować grupę subskrybentów?"
|
796 |
|
797 |
-
#: ../
|
798 |
-
|
799 |
-
|
800 |
-
msgstr "Czy chcesz wyeksportować wiadomości e-mail?"
|
801 |
|
802 |
-
#: ../
|
803 |
-
msgctxt "view-subscriber-enhanced-select"
|
804 |
msgid ""
|
805 |
-
"
|
|
|
806 |
msgstr ""
|
807 |
-
"
|
808 |
-
"
|
809 |
|
810 |
-
#: ../
|
811 |
-
|
812 |
-
|
813 |
-
msgstr "Proszę podać nazwę dla konfiguracji."
|
814 |
|
815 |
-
#: ../
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
|
820 |
-
#: ../classes/es-register.php:197
|
821 |
-
msgctxt "compose-enhanced-select"
|
822 |
-
msgid "Do you want to delete this record?"
|
823 |
-
msgstr "Czy chcesz usunąć ten rekord?"
|
824 |
-
|
825 |
-
#: ../classes/es-register.php:205
|
826 |
-
msgctxt "notification-enhanced-select"
|
827 |
-
msgid "Please select subscribers group."
|
828 |
-
msgstr "Proszę wybrać grupę subskrybentów."
|
829 |
-
|
830 |
-
#: ../classes/es-register.php:206
|
831 |
-
msgctxt "notification-enhanced-select"
|
832 |
-
msgid "Please select notification mail subject. Use compose menu to create new."
|
833 |
-
msgstr "Wybierz powiadomienia e-mail. Użyj menu tworzenia, aby stworzyć nowe."
|
834 |
-
|
835 |
-
#: ../classes/es-register.php:207
|
836 |
-
msgctxt "notification-enhanced-select"
|
837 |
-
msgid "Please select notification status."
|
838 |
-
msgstr "Proszę wybierz stan powiadomienia."
|
839 |
-
|
840 |
-
#: ../classes/es-register.php:208
|
841 |
-
msgctxt "notification-enhanced-select"
|
842 |
-
msgid "Do you want to delete this record?"
|
843 |
-
msgstr "Czy chcesz usunąć ten rekord?"
|
844 |
-
|
845 |
-
#: ../classes/es-register.php:216
|
846 |
-
msgctxt "sendmail-enhanced-select"
|
847 |
-
msgid "Please select your mail subject."
|
848 |
-
msgstr "Proszę wybierz temat twojego maila."
|
849 |
-
|
850 |
-
#: ../classes/es-register.php:217
|
851 |
-
msgctxt "sendmail-enhanced-select"
|
852 |
-
msgid "Please select subscriber email status."
|
853 |
-
msgstr "Proszę wybierz status e-maila subskrybenta."
|
854 |
-
|
855 |
-
#: ../classes/es-register.php:218
|
856 |
-
msgctxt "sendmail-enhanced-select"
|
857 |
-
msgid "Are you sure you want to send email to all selected email address?"
|
858 |
msgstr ""
|
859 |
-
"
|
860 |
-
|
861 |
-
#: ../classes/es-register.php:230
|
862 |
-
msgctxt "sentmail-enhanced-select"
|
863 |
-
msgid "Do you want to delete this record?"
|
864 |
-
msgstr "Czy chcesz usunąć ten rekord?"
|
865 |
-
|
866 |
-
#: ../classes/es-register.php:231
|
867 |
-
msgctxt "sentmail-enhanced-select"
|
868 |
-
msgid "Do you want to delete all records except latest 10?"
|
869 |
-
msgstr "Czy chcesz usunąć wszystkie rekordy, za wyjątkiem ostatnich 10-iu?"
|
870 |
-
|
871 |
-
#: ../classes/es-register.php:239
|
872 |
-
msgctxt "roles-enhanced-select"
|
873 |
-
msgid "Please enter subscriber email address."
|
874 |
-
msgstr "Proszę podać adres e-mail subskrybenta."
|
875 |
-
|
876 |
-
#: ../classes/es-register.php:240
|
877 |
-
msgctxt "roles-enhanced-select"
|
878 |
-
msgid "Please select subscriber email status."
|
879 |
-
msgstr "Proszę wybrać status adresu e-mail subskrybenta."
|
880 |
-
|
881 |
-
#: ../classes/es-register.php:241
|
882 |
-
msgctxt "roles-enhanced-select"
|
883 |
-
msgid "Please select or create group for this subscriber."
|
884 |
-
msgstr "Proszę wybrać lub utworzyć grupę dla tego subskrybenta."
|
885 |
-
|
886 |
-
#: ../classes/es-register.php:249
|
887 |
-
msgctxt "cron-enhanced-select"
|
888 |
-
msgid "Please select enter number of mails you want to send per hour/trigger."
|
889 |
-
msgstr "Proszę wprowadzić ilość maili, które chcesz wysłać na godzinę/wyzwolenie."
|
890 |
-
|
891 |
-
#: ../classes/es-register.php:250
|
892 |
-
msgctxt "cron-enhanced-select"
|
893 |
-
msgid "Please enter the mail count, only number."
|
894 |
-
msgstr "Proszę podać liczbę maili, tylko numer."
|
895 |
-
|
896 |
-
#: ../classes/es-register.php:263
|
897 |
-
msgctxt "widget-enhanced-select"
|
898 |
-
msgid "Please enter email address."
|
899 |
-
msgstr "Proszę podaj adres e-mail."
|
900 |
-
|
901 |
-
#: ../classes/es-register.php:264
|
902 |
-
msgctxt "widget-enhanced-select"
|
903 |
-
msgid "Please provide a valid email address."
|
904 |
-
msgstr "Prosimy o wprowadzenie poprawnego adresu e-mail."
|
905 |
|
906 |
-
#: ../
|
907 |
-
|
908 |
-
|
909 |
-
msgstr "ładuję…"
|
910 |
|
911 |
-
#: ../
|
912 |
-
|
913 |
-
|
914 |
-
msgstr "Nie można utworzyć instancji XMLHTTP"
|
915 |
|
916 |
-
#: ../
|
917 |
-
|
918 |
-
|
919 |
-
msgstr "Subskrypcja przebiegła pomyślnie."
|
920 |
|
921 |
-
#: ../
|
922 |
-
msgctxt "widget-enhanced-select"
|
923 |
msgid ""
|
924 |
-
"
|
925 |
-
"confirmation email
|
926 |
-
"subscription. If the email takes more than 15 minutes to appear in your mailbox, "
|
927 |
-
"please check your spam folder."
|
928 |
msgstr ""
|
929 |
-
"
|
930 |
-
"
|
931 |
-
"mail nie dotrze do ciebie przez dłużej niż 15 minut sprawdź folder \"spam\"."
|
932 |
-
|
933 |
-
#: ../classes/es-register.php:269
|
934 |
-
msgctxt "widget-enhanced-select"
|
935 |
-
msgid "Email Address already exists."
|
936 |
-
msgstr "Adres e-mail już istnieje."
|
937 |
-
|
938 |
-
#: ../classes/es-register.php:270
|
939 |
-
msgctxt "widget-enhanced-select"
|
940 |
-
msgid "Oops.. Unexpected error occurred."
|
941 |
-
msgstr "Ups… Wystąpił nieoczekiwany błąd."
|
942 |
-
|
943 |
-
#: ../classes/es-register.php:271
|
944 |
-
msgctxt "widget-enhanced-select"
|
945 |
-
msgid "Invalid email address."
|
946 |
-
msgstr "Błędny adres e-mail."
|
947 |
-
|
948 |
-
#: ../classes/es-register.php:272
|
949 |
-
msgctxt "widget-enhanced-select"
|
950 |
-
msgid "Please try after some time."
|
951 |
-
msgstr "Spróbuj proszę za jakiś czas."
|
952 |
-
|
953 |
-
#: ../classes/es-register.php:273
|
954 |
-
msgctxt "widget-enhanced-select"
|
955 |
-
msgid "There was a problem with the request."
|
956 |
-
msgstr "Wystąpił problem z żądaniem."
|
957 |
|
958 |
-
#: ../
|
959 |
-
|
960 |
-
|
961 |
-
msgstr "Proszę podaj adres e-mail."
|
962 |
|
963 |
-
#: ../
|
964 |
-
|
965 |
-
|
966 |
-
|
|
|
967 |
|
968 |
-
#: ../
|
969 |
-
|
970 |
-
msgid "
|
971 |
-
msgstr "
|
972 |
|
973 |
-
#: ../
|
974 |
-
|
975 |
-
msgid "
|
976 |
-
msgstr "Nie
|
977 |
|
978 |
-
#: ../
|
979 |
-
|
980 |
-
|
981 |
-
msgstr "Subskrypcja przebiegła pomyślnie."
|
982 |
|
983 |
-
#: ../
|
984 |
-
msgctxt "widget-page-enhanced-select"
|
985 |
msgid ""
|
986 |
-
"
|
987 |
-
"
|
988 |
-
"subscription. If the email takes more than 15 minutes to appear in your mailbox, "
|
989 |
-
"please check your spam folder."
|
990 |
msgstr ""
|
991 |
-
"
|
992 |
-
"
|
993 |
-
"mail nie dotrze do ciebie przez dłużej niż 15 minut sprawdź folder \"spam\"."
|
994 |
-
|
995 |
-
#: ../classes/es-register.php:286
|
996 |
-
msgctxt "widget-page-enhanced-select"
|
997 |
-
msgid "Email Address already exists."
|
998 |
-
msgstr "Adres e-mail już istnieje."
|
999 |
-
|
1000 |
-
#: ../classes/es-register.php:287
|
1001 |
-
msgctxt "widget-page-enhanced-select"
|
1002 |
-
msgid "Oops.. Unexpected error occurred."
|
1003 |
-
msgstr "Ups… Wystąpił nieoczekiwany błąd."
|
1004 |
-
|
1005 |
-
#: ../classes/es-register.php:288
|
1006 |
-
msgctxt "widget-page-enhanced-select"
|
1007 |
-
msgid "Invalid email address."
|
1008 |
-
msgstr "Błędny adres e-mail."
|
1009 |
-
|
1010 |
-
#: ../classes/es-register.php:289
|
1011 |
-
msgctxt "widget-page-enhanced-select"
|
1012 |
-
msgid "Please try after some time."
|
1013 |
-
msgstr "Spróbuj proszę za jakiś czas."
|
1014 |
-
|
1015 |
-
#: ../classes/es-register.php:290
|
1016 |
-
msgctxt "widget-page-enhanced-select"
|
1017 |
-
msgid "There was a problem with the request."
|
1018 |
-
msgstr "Wystąpił problem z żądaniem."
|
1019 |
-
|
1020 |
-
#: ../classes/es-register.php:456
|
1021 |
-
msgid "Widget Title"
|
1022 |
-
msgstr "Tytuł "
|
1023 |
-
|
1024 |
-
#: ../classes/es-register.php:460
|
1025 |
-
msgid "Display Name Field"
|
1026 |
-
msgstr "Wyświetl nazwę pola"
|
1027 |
-
|
1028 |
-
#: ../classes/es-register.php:467
|
1029 |
-
msgid "Short Description"
|
1030 |
-
msgstr "Krótki opis"
|
1031 |
|
1032 |
-
#: ../
|
1033 |
-
msgid "
|
1034 |
-
msgstr "
|
1035 |
|
1036 |
-
#: ../
|
1037 |
-
msgid "
|
1038 |
-
|
|
|
|
|
|
|
|
|
1039 |
|
1040 |
-
#: ../
|
1041 |
-
msgid "
|
1042 |
-
msgstr "
|
1043 |
|
1044 |
-
#: ../
|
1045 |
-
msgid "
|
1046 |
-
|
|
|
|
|
|
|
|
|
1047 |
|
1048 |
-
#: ../
|
1049 |
-
msgid "
|
1050 |
-
msgstr "
|
1051 |
|
1052 |
-
#: ../
|
1053 |
-
msgid "
|
1054 |
-
|
|
|
|
|
|
|
|
|
1055 |
|
1056 |
-
#: ../
|
1057 |
-
msgid "
|
1058 |
-
msgstr "
|
1059 |
|
1060 |
-
#: ../
|
1061 |
-
msgid "
|
1062 |
-
|
|
|
|
|
|
|
|
|
1063 |
|
1064 |
-
#: ../
|
1065 |
-
msgid "
|
1066 |
-
msgstr "
|
1067 |
|
1068 |
-
#: ../
|
1069 |
-
msgid "
|
1070 |
-
|
|
|
|
|
|
|
|
|
|
|
1071 |
|
1072 |
-
#: ../
|
1073 |
-
msgid "
|
1074 |
-
msgstr "
|
1075 |
|
1076 |
-
#: ../
|
1077 |
-
msgid "
|
1078 |
-
msgstr "
|
1079 |
|
1080 |
-
#: ../
|
1081 |
-
msgid "
|
1082 |
-
msgstr "
|
1083 |
|
1084 |
-
#: ../
|
1085 |
-
|
1086 |
-
|
1087 |
-
|
1088 |
-
msgstr "
|
|
|
|
|
1089 |
|
1090 |
-
#: ../
|
1091 |
-
msgid "
|
1092 |
-
msgstr "
|
1093 |
|
1094 |
-
#: ../
|
1095 |
-
#: import.php:45
|
1096 |
msgid ""
|
1097 |
-
"
|
1098 |
-
"
|
1099 |
msgstr ""
|
1100 |
-
"
|
1101 |
-
"
|
1102 |
|
1103 |
-
#: ../
|
1104 |
-
msgid "
|
1105 |
-
msgstr "
|
1106 |
|
1107 |
-
#: ../
|
1108 |
-
msgid "
|
1109 |
-
msgstr "
|
1110 |
-
|
1111 |
-
|
1112 |
-
msgid "Email is invalid."
|
1113 |
-
msgstr "E-mail jest nie prawidłowy."
|
1114 |
-
|
1115 |
-
#: ../subscribers/view-subscriber-add.php:92 ../subscribers/view-subscriber-add.
|
1116 |
-
#: php:101 ../subscribers/view-subscriber-edit.php:86 ../subscribers/view-
|
1117 |
-
#: subscriber-import.php:107 ../subscribers/view-subscriber-import.php:138 ..
|
1118 |
-
#: notification/notification-edit.php:96 ../notification/notification-add.php:92
|
1119 |
-
#: ../compose/compose-edit.php:67 ../compose/compose-add.php:59
|
1120 |
-
msgid "Click here"
|
1121 |
-
msgstr "Kliknij tutaj"
|
1122 |
|
1123 |
-
#: ../
|
1124 |
-
|
1125 |
-
|
1126 |
-
#: notification/notification-edit.php:97 ../compose/compose-edit.php:68
|
1127 |
-
#: compose/compose-add.php:60
|
1128 |
-
msgid " to view the details"
|
1129 |
-
msgstr " aby zobaczyć szczegóły"
|
1130 |
-
|
1131 |
-
#: ../subscribers/view-subscriber-add.php:111
|
1132 |
-
msgid "Add email"
|
1133 |
-
msgstr "Dodaj e-mail"
|
1134 |
-
|
1135 |
-
#: ../subscribers/view-subscriber-add.php:113 ../subscribers/view-subscriber-edit.
|
1136 |
-
#: php:97
|
1137 |
-
msgid "Enter full name"
|
1138 |
-
msgstr "Podaj imię i nazwisko"
|
1139 |
-
|
1140 |
-
#: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
|
1141 |
-
#: php:99
|
1142 |
-
msgid "Please enter subscriber full name."
|
1143 |
-
msgstr "Proszę podaj imię i nazwisko subskrybenta."
|
1144 |
-
|
1145 |
-
#: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
|
1146 |
-
#: php:101
|
1147 |
-
msgid "Enter email address."
|
1148 |
-
msgstr "Wprowadź adres e-mail."
|
1149 |
-
|
1150 |
-
#: ../subscribers/view-subscriber-add.php:128 ../subscribers/view-subscriber-edit.
|
1151 |
-
#: php:112 ../subscribers/view-subscriber-import.php:162
|
1152 |
-
msgid "Please select subscriber email status."
|
1153 |
-
msgstr "Proszę wybierz status e-maila subskrybenta."
|
1154 |
|
1155 |
-
#: ../
|
1156 |
-
|
1157 |
-
|
1158 |
-
|
1159 |
-
|
1160 |
-
#: ../subscribers/view-subscriber-add.php:132 ../subscribers/view-subscriber-sync.
|
1161 |
-
#: php:99 ../subscribers/view-subscriber-sync.php:130 ../subscribers/view-
|
1162 |
-
#: subscriber-edit.php:116 ../subscribers/view-subscriber-import.php:166 ..
|
1163 |
-
#: notification/notification-edit.php:131 ../notification/notification-add.php:115
|
1164 |
-
#: ../notification/notification-add.php:139 ../sendmail/sendmail.php:106
|
1165 |
-
#: sendmail/sendmail.php:134 ../sendmail/sendmail.php:149
|
1166 |
-
msgid "Select"
|
1167 |
-
msgstr "Wybierz"
|
1168 |
|
1169 |
-
#: ../
|
1170 |
-
|
1171 |
-
|
1172 |
-
msgstr "Proszę wybrać lub stworzyć grupę dla tego subskrybenta."
|
1173 |
-
|
1174 |
-
#: ../subscribers/view-subscriber-add.php:153 ../subscribers/view-subscriber-sync.
|
1175 |
-
#: php:156 ../subscribers/view-subscriber-edit.php:146 ..
|
1176 |
-
#: notification/notification-edit.php:254 ../notification/notification-add.php:247
|
1177 |
-
#: ../compose/compose-edit.php:108 ../compose/compose-add.php:99 ../cron/cron-
|
1178 |
-
#: add.php:88 ../roles/roles-add.php:156
|
1179 |
-
msgid "Submit"
|
1180 |
-
msgstr "Zatwierdź"
|
1181 |
-
|
1182 |
-
#: ../subscribers/view-subscriber-sync.php:33 ../subscribers/view-subscriber-sync.
|
1183 |
-
#: php:119
|
1184 |
-
msgid "Please select default group to newly registered user."
|
1185 |
-
msgstr "Proszę wybrać domyślną grupę dla nowo zarejestrowanego użytkownik."
|
1186 |
|
1187 |
-
#: ../
|
1188 |
-
|
1189 |
-
|
1190 |
-
msgstr "Proszę wybrać domyślną grupę dla nowo komentującego użytkownika."
|
1191 |
|
1192 |
-
#: ../
|
1193 |
-
msgid "
|
1194 |
-
msgstr "
|
1195 |
|
1196 |
-
#: ../
|
1197 |
-
msgid "
|
1198 |
-
|
|
|
|
|
|
|
|
|
1199 |
|
1200 |
-
#: ../
|
1201 |
-
msgid "
|
1202 |
-
msgstr "
|
1203 |
|
1204 |
-
#: ../
|
1205 |
-
msgid "
|
1206 |
-
msgstr ""
|
1207 |
-
"Automatyczne dodawaj adres e-mail nowo zarejestrowanego użytkownika do listy "
|
1208 |
-
"subskrybentów."
|
1209 |
|
1210 |
-
#: ../
|
1211 |
-
|
1212 |
-
|
1213 |
-
msgstr "Wybierz domyślną grupę"
|
1214 |
|
1215 |
-
#: ../
|
1216 |
-
msgid "
|
1217 |
-
msgstr "
|
1218 |
|
1219 |
-
#: ../
|
1220 |
-
msgid ""
|
1221 |
-
"
|
1222 |
-
"subscribers list."
|
1223 |
-
msgstr ""
|
1224 |
-
"Automatycznie dodaj adres e-mail nowego komentatora (który pisał komentarze) do "
|
1225 |
-
"listy subskrybentów."
|
1226 |
-
|
1227 |
-
#: ../subscribers/view-subscriber-export.php:22
|
1228 |
-
msgid "Export email address in csv format"
|
1229 |
-
msgstr "Eksportuj adresy e-mail w formacie CSV"
|
1230 |
-
|
1231 |
-
#: ../subscribers/view-subscriber-export.php:28 ../subscribers/view-subscriber-
|
1232 |
-
#: export.php:36
|
1233 |
-
msgid "Export option"
|
1234 |
-
msgstr "Opcje eksportu"
|
1235 |
-
|
1236 |
-
#: ../subscribers/view-subscriber-export.php:29 ../subscribers/view-subscriber-
|
1237 |
-
#: export.php:37
|
1238 |
-
msgid "Total email"
|
1239 |
-
msgstr "Razem e-maili"
|
1240 |
-
|
1241 |
-
#: ../subscribers/view-subscriber-export.php:44
|
1242 |
-
msgid "Subscriber email address"
|
1243 |
-
msgstr "Adres e-mail subskrybenta."
|
1244 |
-
|
1245 |
-
#: ../subscribers/view-subscriber-export.php:46 ../subscribers/view-subscriber-
|
1246 |
-
#: export.php:52 ../subscribers/view-subscriber-export.php:58
|
1247 |
-
msgid "Click to export csv"
|
1248 |
-
msgstr "Naciśnij by wyeksportować CSV"
|
1249 |
-
|
1250 |
-
#: ../subscribers/view-subscriber-export.php:50
|
1251 |
-
msgid "Registered email address"
|
1252 |
-
msgstr "Adres e-mai zarejestrowany."
|
1253 |
-
|
1254 |
-
#: ../subscribers/view-subscriber-export.php:56
|
1255 |
-
msgid "Comments author email address"
|
1256 |
-
msgstr "Adres e-mail autora komentarzy."
|
1257 |
-
|
1258 |
-
#: ../subscribers/view-subscriber-export.php:65
|
1259 |
-
msgid "Add Email"
|
1260 |
-
msgstr "Dodaj e-mail"
|
1261 |
-
|
1262 |
-
#: ../subscribers/view-subscriber-export.php:66 ../subscribers/view-subscriber-
|
1263 |
-
#: show.php:445
|
1264 |
-
msgid "Import Email"
|
1265 |
-
msgstr "Import e-mail"
|
1266 |
-
|
1267 |
-
#: ../subscribers/view-subscriber-edit.php:54
|
1268 |
-
msgid "Error: Special characters are not allowed in the group name."
|
1269 |
-
msgstr "Błąd: W nazwie grupy nie wolno używać znaków specjalnych."
|
1270 |
|
1271 |
-
#: ../
|
1272 |
-
msgid "
|
1273 |
-
msgstr "
|
1274 |
|
1275 |
-
#: ../
|
1276 |
-
msgid "
|
1277 |
-
msgstr "
|
1278 |
|
1279 |
-
#: ../
|
1280 |
-
msgid "
|
1281 |
-
msgstr "
|
1282 |
|
1283 |
-
#: ../
|
1284 |
-
|
1285 |
-
|
1286 |
-
msgstr "Grupa"
|
1287 |
|
1288 |
-
#: ../
|
1289 |
-
|
1290 |
-
|
|
|
1291 |
|
1292 |
-
#: ../
|
1293 |
-
msgid "
|
1294 |
-
msgstr "
|
1295 |
|
1296 |
-
#: ../
|
1297 |
-
|
1298 |
-
|
|
|
1299 |
|
1300 |
-
#: ../
|
1301 |
-
msgid "
|
1302 |
-
msgstr "
|
1303 |
|
1304 |
-
#: ../
|
1305 |
-
|
1306 |
-
|
|
|
|
|
|
|
|
|
1307 |
|
1308 |
-
#: ../
|
1309 |
-
|
1310 |
-
|
|
|
|
|
1311 |
|
1312 |
-
#: ../
|
1313 |
-
msgid "
|
1314 |
-
msgstr ""
|
1315 |
-
"Proszę wybrać wejściowy plik CSV. Sprawdź strukturę pliku CSV na oficjalnej "
|
1316 |
-
"stronie:"
|
1317 |
|
1318 |
-
#: ../
|
1319 |
-
msgid "
|
1320 |
-
msgstr "
|
1321 |
|
1322 |
-
#: ../
|
1323 |
-
msgid "
|
1324 |
-
msgstr "
|
1325 |
|
1326 |
-
#: ../
|
1327 |
-
#:
|
1328 |
-
|
1329 |
-
|
|
|
|
|
1330 |
|
1331 |
-
#: ../
|
1332 |
-
|
1333 |
-
|
1334 |
-
msgstr ""
|
1335 |
-
"Aby wysłać mail potwierdzający, proszę zmienić opcję Opt-in do podwójnego Opt-in."
|
1336 |
|
1337 |
-
#: ../
|
1338 |
-
msgid "
|
1339 |
-
msgstr "
|
1340 |
|
1341 |
-
#: ../
|
1342 |
-
#: show.php:
|
1343 |
-
|
1344 |
-
|
|
|
|
|
1345 |
|
1346 |
-
#: ../
|
1347 |
-
msgid "
|
1348 |
-
msgstr "
|
1349 |
|
1350 |
-
#: ../
|
1351 |
-
msgid "
|
1352 |
-
msgstr "
|
1353 |
|
1354 |
-
#: ../
|
1355 |
-
msgid "
|
1356 |
-
msgstr "
|
1357 |
|
1358 |
-
#: ../
|
1359 |
-
|
1360 |
-
|
1361 |
-
#: compose/compose-show.php:112
|
1362 |
-
msgid "Add New"
|
1363 |
-
msgstr "Dodaj Nowy"
|
1364 |
|
1365 |
-
#: ../
|
1366 |
-
msgid "
|
1367 |
-
msgstr "
|
1368 |
|
1369 |
-
#: ../subscribers/view-subscriber-
|
1370 |
-
|
1371 |
-
|
|
|
1372 |
|
1373 |
-
#: ../subscribers/view-subscriber-
|
|
|
|
|
1374 |
msgid "Confirmed"
|
1375 |
msgstr "Potwierdzone"
|
1376 |
|
1377 |
-
#: ../subscribers/view-subscriber-
|
|
|
|
|
1378 |
msgid "Unconfirmed"
|
1379 |
msgstr "Niepotwierdzone"
|
1380 |
|
1381 |
-
#: ../subscribers/view-subscriber-
|
|
|
|
|
1382 |
msgid "Unsubscribed"
|
1383 |
msgstr "Niesubskrybowane"
|
1384 |
|
1385 |
-
#: ../subscribers/view-subscriber-show.php:
|
1386 |
-
#:
|
1387 |
-
msgid "
|
1388 |
-
msgstr "
|
1389 |
|
1390 |
-
#: ../subscribers/view-subscriber-show.php:
|
1391 |
-
|
1392 |
-
|
1393 |
-
msgstr "Edytuj"
|
1394 |
|
1395 |
-
#: ../subscribers/view-subscriber-show.php:
|
1396 |
-
#:
|
1397 |
-
|
1398 |
-
|
1399 |
-
msgstr "Kasuj"
|
1400 |
|
1401 |
-
#: ../subscribers/view-subscriber-show.php:
|
1402 |
-
|
1403 |
-
|
1404 |
-
msgstr "Wyślij ponownie potwierdzenie"
|
1405 |
|
1406 |
-
#: ../subscribers/view-subscriber-show.php:
|
1407 |
-
msgid "
|
1408 |
-
msgstr ""
|
1409 |
-
"Brak dostępnych rekordów. By szukać proszę kliknąć powyższy przycisk wyszukiwania "
|
1410 |
-
"alfabetycznego."
|
1411 |
|
1412 |
-
#: ../subscribers/view-subscriber-show.php:
|
1413 |
msgid "Bulk Actions"
|
1414 |
msgstr "Działania masowe"
|
1415 |
|
1416 |
-
#: ../subscribers/view-subscriber-show.php:
|
1417 |
-
|
1418 |
-
|
|
|
1419 |
|
1420 |
-
#: ../subscribers/view-subscriber-show.php:
|
1421 |
msgid "Select Group"
|
1422 |
msgstr "Zaznacz grupę"
|
1423 |
|
1424 |
-
#: ../subscribers/view-subscriber-show.php:
|
1425 |
msgid "Apply"
|
1426 |
msgstr "Zastosuj"
|
1427 |
|
1428 |
-
#: ../subscribers/view-subscriber-show.php:
|
1429 |
-
msgid "
|
1430 |
-
msgstr "
|
1431 |
|
1432 |
-
#: ../subscribers/view-subscriber-show.php:
|
1433 |
-
msgid "
|
1434 |
-
msgstr "
|
1435 |
|
1436 |
-
|
1437 |
-
|
1438 |
-
|
1439 |
-
|
1440 |
-
msgstr ""
|
1441 |
-
"Dodaj formularz subskrypcji na stronie internetowej, wysyłaj zawiadomienia HTML "
|
1442 |
-
"do subskrybentów i automatyczne powiadamiaj ich o nowych wpisach na blogu gdy "
|
1443 |
-
"tylko zostaną opublikowane."
|
1444 |
|
1445 |
-
|
1446 |
-
|
1447 |
-
|
|
|
1448 |
|
1449 |
-
#: ../
|
1450 |
-
|
1451 |
-
|
|
|
1452 |
|
1453 |
-
#: ../
|
1454 |
-
|
1455 |
-
|
1456 |
-
msgstr "Proszę wybrać kategorię wysyłki."
|
1457 |
|
1458 |
-
#: ../
|
1459 |
-
msgid "
|
1460 |
-
|
|
|
|
|
|
|
|
|
1461 |
|
1462 |
-
#: ../
|
1463 |
-
msgid "
|
1464 |
-
msgstr "
|
1465 |
|
1466 |
-
#: ../
|
1467 |
-
|
1468 |
-
|
1469 |
-
msgid "Subscribers Group"
|
1470 |
-
msgstr "Grupa subskrybentów."
|
1471 |
|
1472 |
-
#: ../
|
1473 |
-
|
1474 |
-
|
1475 |
-
msgstr "Mail powiadamiający"
|
1476 |
|
1477 |
-
#: ../
|
1478 |
-
|
1479 |
-
|
1480 |
-
msgstr "Kategoria wpisu"
|
1481 |
|
1482 |
-
#: ../
|
1483 |
-
|
1484 |
-
|
1485 |
-
msgstr "Wybierz wszystko"
|
1486 |
|
1487 |
-
#: ../
|
1488 |
-
|
1489 |
-
|
1490 |
-
msgstr "Odznacz wszystko"
|
1491 |
|
1492 |
-
#: ../
|
1493 |
-
msgid "
|
1494 |
-
msgstr "
|
1495 |
|
1496 |
-
#: ../
|
1497 |
-
|
1498 |
-
|
1499 |
-
msgid "Notification Status"
|
1500 |
-
msgstr "Status powiadomienia."
|
1501 |
|
1502 |
-
#: ../
|
1503 |
-
|
1504 |
-
|
1505 |
-
msgstr "Wybierz status powiadamiania."
|
1506 |
|
1507 |
-
#: ../
|
1508 |
-
msgid "
|
1509 |
-
msgstr "
|
1510 |
|
1511 |
-
#: ../
|
1512 |
-
msgid "
|
1513 |
-
|
|
|
|
|
|
|
|
|
1514 |
|
1515 |
-
#: ../
|
1516 |
-
|
1517 |
-
|
1518 |
-
|
|
|
|
|
|
|
1519 |
|
1520 |
-
#: ../
|
1521 |
-
|
1522 |
-
|
1523 |
-
|
|
|
|
|
|
|
1524 |
|
1525 |
-
#: ../compose/compose-edit.php:
|
1526 |
msgid "Please enter template heading."
|
1527 |
msgstr "Proszę podać nagłówek szablonu."
|
1528 |
|
1529 |
-
#: ../compose/compose-edit.php:
|
1530 |
-
|
1531 |
-
msgstr "Szablon zaktualizowany poprawnie."
|
1532 |
-
|
1533 |
-
#: ../compose/compose-edit.php:78 ../compose/compose-show.php:55 ..
|
1534 |
-
#: compose/compose-add.php:69
|
1535 |
msgid "Compose Mail"
|
1536 |
msgstr "Skomponuj mail"
|
1537 |
|
1538 |
-
#: ../compose/compose-edit.php:
|
1539 |
-
#: sendmail/sendmail.php:128
|
1540 |
-
msgid "Mail Type"
|
1541 |
-
msgstr "Typ maila"
|
1542 |
-
|
1543 |
-
#: ../compose/compose-edit.php:82 ../compose/compose-add.php:73
|
1544 |
msgid "Static Template (For Newsletter Email)"
|
1545 |
msgstr "Statyczny szablon (dla biuletynu e-mail)"
|
1546 |
|
1547 |
-
#: ../compose/compose-edit.php:
|
1548 |
msgid "Dynamic Template (For Notification Email)"
|
1549 |
msgstr "Dynamiczny szablon (dla biuletynu e-mail)"
|
1550 |
|
1551 |
-
#: ../compose/compose-edit.php:
|
1552 |
-
msgid "Please select your mail type"
|
1553 |
-
msgstr "Proszę wybierz typ twojego maila"
|
1554 |
-
|
1555 |
-
#: ../compose/compose-edit.php:87 ../compose/compose-add.php:78
|
1556 |
msgid "Enter Mail Subject"
|
1557 |
msgstr "Wprowadź temat maila"
|
1558 |
|
1559 |
-
#: ../compose/compose-edit.php:
|
1560 |
-
msgid "Please enter your mail subject. Keyword: ###POSTTITLE###"
|
1561 |
-
msgstr "Proszę wprowadź temat maila. Keyword: ###POSTTITLE###"
|
1562 |
-
|
1563 |
-
#: ../compose/compose-edit.php:91 ../compose/compose-add.php:82
|
1564 |
-
msgid "Mail Content"
|
1565 |
-
msgstr "Treść maila"
|
1566 |
-
|
1567 |
-
#: ../compose/compose-edit.php:95 ../compose/compose-add.php:86
|
1568 |
-
msgid "Please enter content for your mail"
|
1569 |
-
msgstr "Proszę wprowadzić treść swojego maila"
|
1570 |
-
|
1571 |
-
#: ../compose/compose-edit.php:96 ../compose/compose-add.php:87
|
1572 |
-
msgid ""
|
1573 |
-
"Keywords: ###POSTTITLE###, ###POSTLINK###, ###POSTIMAGE###, ###POSTDESC###, "
|
1574 |
-
"###POSTFULL###, ###DATE###, ###POSTLINK-ONLY###, ###POSTLINK-WITHTITLE###"
|
1575 |
-
msgstr ""
|
1576 |
-
"Klucz: ###POSTTITLE###, ###POSTLINK###, ###POSTIMAGE###, ###POSTDESC###, "
|
1577 |
-
"###POSTFULL###, ###DATE###, ###POSTLINK-ONLY###, ###POSTLINK-WITHTITLE###"
|
1578 |
-
|
1579 |
-
#: ../compose/compose-edit.php:101 ../compose/compose-add.php:92
|
1580 |
msgid "Published"
|
1581 |
msgstr "Opublikowane"
|
1582 |
|
1583 |
-
#: ../compose/compose-edit.php:
|
1584 |
msgid "Please select your mail status"
|
1585 |
msgstr "Proszę wybierz status twojego maila."
|
1586 |
|
1587 |
-
#: ../compose/compose-show.php:
|
1588 |
msgid "Email subject"
|
1589 |
msgstr "Temat maila"
|
1590 |
|
1591 |
-
#: ../
|
1592 |
-
|
1593 |
-
msgstr "Szablon utworzony poprawnie"
|
1594 |
-
|
1595 |
-
#: ../compose/compose-add.php:76 ../sendmail/sendmail.php:52
|
1596 |
-
msgid "Please select your mail type."
|
1597 |
-
msgstr "Proszę wybierz typ twojego maila."
|
1598 |
-
|
1599 |
-
#: ../export/export-email-address.php:36 ../export/export-email-address.php:40 ..
|
1600 |
-
#: export/export-email-address.php:43
|
1601 |
msgid "Unexpected url submit has been detected"
|
1602 |
msgstr "Zostało wykryte niespodziewane zgłoszenie URL"
|
1603 |
|
1604 |
-
#: ../
|
1605 |
-
|
1606 |
-
|
|
|
|
|
|
|
|
|
|
|
1607 |
|
1608 |
-
#: ../
|
1609 |
-
msgid "
|
1610 |
-
msgstr "
|
1611 |
|
1612 |
-
#: ../
|
1613 |
-
msgid "
|
1614 |
-
msgstr "
|
1615 |
|
1616 |
-
#: ../
|
1617 |
-
msgid "
|
1618 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1619 |
|
1620 |
-
#: ../
|
1621 |
msgid ""
|
1622 |
-
"
|
1623 |
-
"
|
1624 |
msgstr ""
|
1625 |
-
"
|
1626 |
-
"
|
1627 |
|
1628 |
-
#: ../
|
1629 |
-
msgid "
|
1630 |
-
msgstr "
|
1631 |
|
1632 |
-
#: ../
|
1633 |
-
msgid "
|
1634 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1635 |
|
1636 |
-
#: ../
|
1637 |
-
|
1638 |
-
|
|
|
1639 |
|
1640 |
-
#: ../
|
1641 |
-
|
1642 |
-
"
|
1643 |
-
"
|
1644 |
-
msgstr ""
|
1645 |
-
"Wyślij powyższy mail do administratora zawsze gdy Cron uruchomi na serwerze URL."
|
1646 |
-
"<br />(Klucz: ###DATE###, ###SUBJECT###, ###COUNT###)"
|
1647 |
|
1648 |
-
#: ../
|
1649 |
-
|
1650 |
-
|
|
|
1651 |
|
1652 |
-
#: ../
|
1653 |
-
|
1654 |
-
|
1655 |
-
"
|
1656 |
-
msgstr ""
|
1657 |
-
"<a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-how-to-schedule-cron-"
|
1658 |
-
"emails-in-parallels-plesk/\">Ustaw wyzwalacz CRON w Plesk</a>"
|
1659 |
|
1660 |
-
#: ../
|
1661 |
-
|
1662 |
-
|
1663 |
-
"
|
1664 |
-
msgstr ""
|
1665 |
-
"<a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-how-to-schedule-cron-"
|
1666 |
-
"emails-in-parallels-plesk/\">Ustaw wyzwalacz CRON w cPanl</a>"
|
1667 |
|
1668 |
-
#: ../
|
|
|
1669 |
msgid ""
|
1670 |
-
"
|
1671 |
-
"
|
1672 |
msgstr ""
|
1673 |
-
"
|
1674 |
-
"
|
1675 |
-
|
1676 |
-
#: ../sendmail/sendmail.php:39
|
1677 |
-
msgid "Please select your mail subject."
|
1678 |
-
msgstr "Proszę wybierz temat twojego maila."
|
1679 |
-
|
1680 |
-
#: ../sendmail/sendmail.php:46
|
1681 |
-
msgid "No email address selected."
|
1682 |
-
msgstr "Nie wybrano adresu e-mail."
|
1683 |
-
|
1684 |
-
#: ../sendmail/sendmail.php:59
|
1685 |
-
msgid "Mail sent successfully"
|
1686 |
-
msgstr "Mail wysłany pomyślnie"
|
1687 |
|
1688 |
-
#: ../
|
1689 |
-
|
1690 |
-
|
|
|
1691 |
|
1692 |
-
#: ../
|
1693 |
-
|
1694 |
-
|
|
|
1695 |
|
1696 |
-
#: ../
|
1697 |
-
|
1698 |
-
|
|
|
1699 |
|
1700 |
-
#: ../
|
|
|
1701 |
msgid ""
|
1702 |
-
"
|
|
|
1703 |
msgstr ""
|
1704 |
-
"Proszę
|
1705 |
-
"
|
1706 |
|
1707 |
-
#: ../
|
1708 |
-
|
1709 |
-
|
|
|
1710 |
|
1711 |
-
#: ../
|
1712 |
-
|
1713 |
-
|
|
|
1714 |
|
1715 |
-
#: ../
|
1716 |
-
|
1717 |
-
|
|
|
1718 |
|
1719 |
-
#: ../
|
1720 |
-
|
1721 |
-
|
1722 |
-
|
1723 |
-
msgstr "Tylko dla administratora"
|
1724 |
|
1725 |
-
#: ../
|
1726 |
-
|
1727 |
-
|
1728 |
-
|
1729 |
-
msgstr "Administrator/Edytor"
|
1730 |
|
1731 |
-
#: ../
|
1732 |
-
|
1733 |
-
|
1734 |
-
|
1735 |
-
msgstr "Administrator/Edytor/Autor/Specjalista"
|
1736 |
|
1737 |
-
#: ../
|
1738 |
-
|
1739 |
-
"
|
1740 |
-
"
|
1741 |
-
msgstr ""
|
1742 |
-
"Wybierz uprawnienia dostępu użytkownika do Menu Subskrybentów wtyczki. Tylko "
|
1743 |
-
"Administrator może zmienić tę wartość."
|
1744 |
|
1745 |
-
#: ../
|
1746 |
-
|
1747 |
-
|
|
|
1748 |
|
1749 |
-
#: ../
|
1750 |
-
|
1751 |
-
"
|
1752 |
-
"value."
|
1753 |
msgstr ""
|
1754 |
-
"
|
1755 |
-
"
|
1756 |
|
1757 |
-
#: ../
|
1758 |
-
|
1759 |
-
|
|
|
1760 |
|
1761 |
-
#: ../
|
1762 |
-
|
1763 |
-
"
|
1764 |
-
"
|
1765 |
-
msgstr ""
|
1766 |
-
"Wybierz uprawnienia dostępu użytkownika do Menu Powiadomień wtyczki. Tylko "
|
1767 |
-
"Administrator może zmienić tę wartość."
|
1768 |
|
1769 |
-
#: ../
|
1770 |
-
|
1771 |
-
|
|
|
1772 |
|
1773 |
-
#: ../
|
1774 |
-
|
1775 |
-
"
|
1776 |
-
"
|
1777 |
-
msgstr ""
|
1778 |
-
"Wybierz uprawnienia dostępu użytkownika do Menu Wysyłania Maili wtyczki. Tylko "
|
1779 |
-
"Administrator może zmienić tę wartość."
|
1780 |
|
1781 |
-
#: ../
|
1782 |
-
|
1783 |
-
|
|
|
1784 |
|
1785 |
-
#: ../
|
1786 |
-
|
1787 |
-
"
|
1788 |
-
"
|
1789 |
-
msgstr ""
|
1790 |
-
"Wybierz uprawnienia dostępu użytkownika do Menu Ustawień wtyczki. Tylko "
|
1791 |
-
"Administrator może zmienić tę wartość."
|
1792 |
|
1793 |
-
#: ../
|
1794 |
-
|
1795 |
-
|
|
|
1796 |
|
1797 |
-
#: ../
|
1798 |
-
|
1799 |
-
"
|
1800 |
-
"
|
1801 |
-
msgstr ""
|
1802 |
-
"Wybierz uprawnienia dostępu użytkownika do Menu Wysyłania Maili wtyczki. Tylko "
|
1803 |
-
"Administrator może zmienić tę wartość."
|
1804 |
|
1805 |
-
#: ../
|
1806 |
-
|
1807 |
-
|
|
|
1808 |
|
1809 |
-
#: ../
|
1810 |
-
|
1811 |
-
"
|
1812 |
-
"
|
1813 |
-
msgstr ""
|
1814 |
-
"Wybierz uprawnienia dostępu użytkownika do Menu Pomocy i Informacji wtyczki. "
|
1815 |
-
"Tylko Administrator może zmienić tę wartość."
|
1816 |
|
1817 |
-
#: ../
|
1818 |
-
|
1819 |
-
|
|
|
1820 |
|
1821 |
-
#: ../
|
1822 |
-
|
1823 |
-
|
1824 |
-
"
|
1825 |
-
"Email Subscribers."
|
1826 |
|
1827 |
-
#: ../
|
1828 |
-
|
1829 |
-
|
|
|
1830 |
|
1831 |
-
#: ../
|
1832 |
-
|
1833 |
-
|
|
|
1834 |
|
1835 |
-
#: ../
|
1836 |
-
|
1837 |
-
|
|
|
1838 |
|
1839 |
-
#: ../
|
1840 |
-
|
1841 |
-
|
|
|
1842 |
|
1843 |
-
#: ../
|
1844 |
-
|
1845 |
-
|
|
|
1846 |
|
1847 |
-
#: ../
|
1848 |
-
|
1849 |
-
"
|
1850 |
-
"
|
1851 |
-
msgstr ""
|
1852 |
-
"Kroki - patrz <a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-how-to-"
|
1853 |
-
"change-update-translate-any-texts-from-email-subscribers/\">tutaj</a>."
|
1854 |
|
1855 |
-
#: ../
|
1856 |
-
|
1857 |
-
|
|
|
1858 |
|
1859 |
-
#: ../
|
1860 |
-
|
1861 |
-
"
|
1862 |
-
"
|
1863 |
-
"\t\t\t\t\t\t\t\t\t\t 2. <a target=\"_blank\" href=\"http://www.storeapps.org/"
|
1864 |
-
"docs/es-how-to-schedule-cron-emails-in-parallels-plesk/\">Setup cron job in "
|
1865 |
-
"cPanal</a><br>\n"
|
1866 |
-
"\t\t\t\t\t\t\t\t\t\t 3. <a target=\"_blank\" href=\"http://www.storeapps.org/"
|
1867 |
-
"docs/es-what-to-do-if-hosting-doesnt-support-cron-jobs/\">Hosting doesnt support "
|
1868 |
-
"cron jobs?</a>"
|
1869 |
-
msgstr ""
|
1870 |
-
"1. <a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-how-to-schedule-"
|
1871 |
-
"cron-emails-in-cpanel/\">Ustaw wyzwalacz CRON w Plesk</a><br>\n"
|
1872 |
-
"\t\t\t\t\t\t\t\t\t\t 2. <a target=\"_blank\" href=\"http://www.storeapps.org/"
|
1873 |
-
"docs/es-how-to-schedule-cron-emails-in-parallels-plesk/\">Ustaw wyzwalacz CRON w "
|
1874 |
-
"cPanal</a><br>\n"
|
1875 |
-
"\t\t\t\t\t\t\t\t\t\t 3. <a target=\"_blank\" href=\"http://www.storeapps.org/"
|
1876 |
-
"docs/es-what-to-do-if-hosting-doesnt-support-cron-jobs/\">Hosting nie umożliwia "
|
1877 |
-
"wyzwalania CRON?</a>"
|
1878 |
|
1879 |
-
#: ../
|
1880 |
-
|
1881 |
-
|
|
|
1882 |
|
1883 |
-
#: ../
|
1884 |
-
|
1885 |
-
msgid "
|
1886 |
-
msgstr "
|
1887 |
-
|
1888 |
-
#: ../help/help.php:130 ../help/help.php:134 ../help/help.php:138 ../help/help.
|
1889 |
-
#: php:142 ../help/help.php:146 ../help/help.php:150 ../help/help.php:154 ..
|
1890 |
-
#: help/help.php:158 ../help/help.php:162 ../help/help.php:166
|
1891 |
-
msgid "here"
|
1892 |
-
msgstr "tutaj"
|
1893 |
-
|
1894 |
-
#: ../help/help.php:133
|
1895 |
-
msgid "How to import and export email address to subscriber list?"
|
1896 |
-
msgstr "Jak importować i eksportować adresy mailowe do listy subskrybentów?"
|
1897 |
-
|
1898 |
-
#: ../help/help.php:134 ../help/help.php:138 ../help/help.php:142 ../help/help.
|
1899 |
-
#: php:146 ../help/help.php:150 ../help/help.php:154 ../help/help.php:158 ..
|
1900 |
-
#: help/help.php:162
|
1901 |
-
#, php-format
|
1902 |
-
msgid "Refer %s."
|
1903 |
-
msgstr "Dotyczy %s."
|
1904 |
|
1905 |
-
#: ../
|
1906 |
-
|
1907 |
-
|
|
|
1908 |
|
1909 |
-
#: ../
|
1910 |
-
|
1911 |
-
"
|
1912 |
-
"
|
1913 |
-
msgstr ""
|
1914 |
-
"Jak skonfigurować i wysyłać powiadomienia do subskrybentów maile gdy publikowane "
|
1915 |
-
"są nowe wpisy?"
|
1916 |
|
1917 |
-
#: ../
|
1918 |
-
msgid "
|
1919 |
-
msgstr ""
|
1920 |
-
"Jak zainstalować i aktywować Email Subscribers na instalacji wielostanowiskowej?"
|
1921 |
|
1922 |
-
#: ../
|
1923 |
-
msgid ""
|
1924 |
-
|
1925 |
-
msgstr "Jak modyfikować istniejącą zawartość maili (Opt-in, Welcome, Admin)?"
|
1926 |
|
1927 |
-
#: ../
|
1928 |
-
msgid "
|
1929 |
-
msgstr "
|
1930 |
|
1931 |
-
#: ../
|
1932 |
-
msgid "
|
1933 |
-
msgstr "
|
1934 |
|
1935 |
-
#: ../
|
1936 |
-
msgid "
|
1937 |
-
msgstr "
|
1938 |
|
1939 |
-
#: ../
|
1940 |
-
msgid "
|
1941 |
-
msgstr "
|
1942 |
|
1943 |
-
#: ../
|
1944 |
-
|
1945 |
-
|
1946 |
-
msgstr "Z %s."
|
3 |
"Project-Id-Version: Email Subscribers\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: Tue Feb 09 2016 16:21:13 GMT+0530 (IST)\n"
|
6 |
+
"PO-Revision-Date: Fri Sep 30 2016 14:43:14 GMT+0530 (IST)\n"
|
7 |
+
"Last-Translator: <>\n"
|
8 |
"Language-Team: \n"
|
9 |
+
"Language: Polish\n"
|
10 |
+
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10 >= 2 && n%10<=4 "
|
11 |
+
"&&(n%100<10||n%100 >= 20)? 1 : 2)\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
18 |
+
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
19 |
+
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
20 |
+
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
21 |
+
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
22 |
+
"X-Generator: Loco - https://localise.biz/\n"
|
23 |
"X-Loco-Target-Locale: pl_PL\n"
|
24 |
+
"X-Poedit-SearchPath-0: .."
|
25 |
|
26 |
+
#. Name of the plugin
|
27 |
+
msgid "Email Subscribers & Newsletters"
|
28 |
+
msgstr "Email Subscribers & Newsletters"
|
29 |
|
30 |
#. URI of the plugin
|
31 |
msgid "http://www.storeapps.org/product/email-subscribers"
|
32 |
+
msgstr "http://www.storeapps.org/product/email-subscribers"
|
33 |
|
34 |
#. Author of the plugin
|
35 |
msgid "StoreApps"
|
36 |
+
msgstr "StoreApps"
|
37 |
+
|
38 |
+
#: ../compose/compose-edit.php:105 ../compose/compose-add.php:94
|
39 |
+
#, php-format
|
40 |
+
msgid ""
|
41 |
+
"%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
|
42 |
+
"###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, "
|
43 |
+
"###POSTDESC###, ###POSTFULL###"
|
44 |
msgstr ""
|
45 |
+
"%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
|
46 |
+
"###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, "
|
47 |
+
"###POSTDESC###, ###POSTFULL###"
|
48 |
+
|
49 |
+
#: ../help/help.php:114 ../help/help.php:123 ../help/help.php:126 ../help/help.
|
50 |
+
#: php:129 ../help/help.php:132 ../help/help.php:135 ../help/help.php:138 ..
|
51 |
+
#: help/help.php:141 ../help/help.php:144 ../help/help.php:147 ../help/help.php:150
|
52 |
+
#: ../help/help.php:153 ../help/help.php:156 ../help/help.php:159 help/help.php:162
|
53 |
+
#: ../help/help.php:165 ../help/help.php:168 171 ../help/help.php:174
|
54 |
+
#, php-format
|
55 |
+
msgid "%s"
|
56 |
+
msgstr "%s"
|
57 |
|
58 |
+
#: ../sendmail/sendmail.php:198
|
59 |
+
msgid "Reset"
|
60 |
+
msgstr "Nastawić"
|
61 |
|
62 |
+
#: ../subscribers/view-subscriber-import.php:146 ../subscribers/view-subscriber-
|
63 |
+
#: show.php:211 ../subscribers/view-subscriber-export.php:30 ../subscribers/view-
|
64 |
+
#: subscriber-add.php:115 ../subscribers/view-subscriber-edit.php:114 ..
|
65 |
+
#: subscribers/view-subscriber-sync.php:144
|
66 |
+
#, fuzzy
|
67 |
+
msgid "Sync"
|
68 |
+
msgstr "Synchronizuj"
|
69 |
|
70 |
+
#: ../notification/notification-add.php:70
|
71 |
+
msgid "Notification successfully created. "
|
72 |
+
msgstr "Powiadomienie pomyślnie utworzone. "
|
73 |
+
|
74 |
+
#: ../notification/notification-add.php:115
|
75 |
+
msgid "Select Subscribers Group"
|
76 |
+
msgstr "Wybierz Grupę Subskrybentów"
|
77 |
+
|
78 |
+
#: ../notification/notification-add.php:137 ../notification/notification-edit.php:
|
79 |
+
#: 160
|
80 |
+
msgid "Select Notification Mail Subject"
|
81 |
+
msgstr "Wybierz temat maila powiadomienia."
|
82 |
+
|
83 |
+
#: ../notification/notification-add.php:138 ../notification/notification-edit.php:
|
84 |
+
#: 161
|
85 |
+
msgid "(Use compose menu to create new)"
|
86 |
+
msgstr "(Użyj menu kompozycji by stworzyć nowy)"
|
87 |
+
|
88 |
+
#: ../notification/notification-add.php:162 ../notification/notification-edit.php:
|
89 |
+
#: 188
|
90 |
+
msgid "Select Post Categories"
|
91 |
+
msgstr "Wybierz Kategorie wpisów"
|
92 |
+
|
93 |
+
#: ../notification/notification-add.php:196 ../notification/notification-edit.php:
|
94 |
+
#: 234
|
95 |
+
msgid "Select your Custom Post Type"
|
96 |
+
msgstr "Wybierz własny typ wpisu"
|
97 |
+
|
98 |
+
#: ../notification/notification-add.php:197 ../notification/notification-edit.php:
|
99 |
+
#: 235
|
100 |
+
msgid "(Optional)"
|
101 |
+
msgstr "(opcjonalny)"
|
102 |
+
|
103 |
+
#: ../notification/notification-add.php:233 ../notification/notification-edit.php:
|
104 |
+
#: 277
|
105 |
+
msgid "Select Notification Status"
|
106 |
+
msgstr "Wybierz stan powiadomienia"
|
107 |
+
|
108 |
+
#: ../notification/notification-add.php:247 ../notification/notification-edit.php:
|
109 |
+
#: 293 ../roles/roles-add.php:202 ../subscribers/view-subscriber-edit.php:192 ..
|
110 |
+
#: cron/cron-add.php:91 ../compose/compose-edit.php:118 ../compose/compose-add.
|
111 |
+
#: php:106
|
112 |
+
msgid "Save"
|
113 |
+
msgstr "Zapisz"
|
114 |
+
|
115 |
+
#: ../notification/notification-show.php:20 ../notification/notification-edit.php:
|
116 |
+
#: 19
|
117 |
+
#: ../settings/settings-edit.php:19 ../sentmail/sentmail-preview.php:17 ..
|
118 |
+
#: sentmail/sentmail-show.php:21 ../subscribers/view-subscriber-show.php:44
|
119 |
+
#: subscribers/view-subscriber-edit.php:21 ../compose/compose-edit.php:19
|
120 |
+
#: compose/compose-show.php:32 ../compose/compose-preview.php:17
|
121 |
+
msgid "Oops, selected details does not exists."
|
122 |
+
msgstr "Ups, wybrane dane nie istnieją."
|
123 |
+
|
124 |
+
#: ../notification/notification-show.php:34 ../sentmail/sentmail-show.php:35 ..
|
125 |
+
#: compose/compose-show.php:46
|
126 |
+
msgid "Selected record deleted."
|
127 |
+
msgstr "Wybrany zapis został usunięty."
|
128 |
+
|
129 |
+
#: ../notification/notification-edit.php:91
|
130 |
+
msgid "Notification successfully updated. "
|
131 |
+
msgstr "Powiadomienie pomyślnie zaktualizowane."
|
132 |
|
133 |
+
#. Description of the plugin
|
134 |
+
msgid ""
|
135 |
+
"Add subscription forms on website, send HTML newsletters & automatically "
|
136 |
+
"notify subscribers about new blog posts once it gets published."
|
137 |
+
msgstr ""
|
138 |
+
"Dodaj formularz subskrypcji na stronię internetową, wyślij newslettery HTML "
|
139 |
+
"i automatyczne powiadomienia abonentów o nowych wpisach na blogu gdy zostaną "
|
140 |
+
"opublikowane."
|
141 |
|
142 |
+
#: ../roles/roles-add.php:52
|
143 |
+
msgid "Role Updated. "
|
144 |
+
msgstr "Rola zaakceptowana. "
|
|
|
145 |
|
146 |
+
#: ../roles/roles-add.php:109
|
147 |
+
msgid "Select user roles who can access following menus. Only Admin can change this."
|
148 |
+
msgstr ""
|
149 |
+
"Wybierz role użytkowników, którzy mają dostęp do następujących opcji. Tylko "
|
150 |
+
"Administrator może to zmienić."
|
151 |
|
152 |
+
#: ../settings/settings-edit.php:154
|
153 |
+
msgid "Settings Saved."
|
154 |
+
msgstr "Ustawienia zapisane."
|
|
|
155 |
|
156 |
+
#: ../settings/settings-edit.php:157
|
157 |
+
msgid "Oops, unable to update."
|
158 |
+
msgstr "Ups, nie można zaktualizować."
|
|
|
159 |
|
160 |
+
#: ../sentmail/sentmail-show.php:174
|
161 |
+
msgid "Optimize Table & Delete Records"
|
162 |
+
msgstr "Optymalizacja Tabeli i Usuwanie Rekordów"
|
|
|
163 |
|
164 |
+
#: ../sentmail/sentmail-show.php:183
|
165 |
+
msgid ""
|
166 |
+
"Note: Please click on <strong>Optimize Table & Delete Records</strong> "
|
167 |
+
"button to delete all reports except latest 10."
|
168 |
+
msgstr ""
|
169 |
+
"Uwaga: Proszę kliknąć na <strong>Optymalizacja Tabeli i Usuwanie Rekordów</ "
|
170 |
+
"strong>, aby usunąć wszystkie raporty za wyjątkiem ostatnich 10."
|
171 |
|
172 |
+
#: ../subscribers/view-subscriber-import.php:43
|
173 |
+
msgid ""
|
174 |
+
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
175 |
+
"the Group name."
|
176 |
+
msgstr ""
|
177 |
+
"Błąd: znaki specjalne: (['^$%&*()}{@#~?><>,|=_+\\\"]) w nazwie grupy nie są "
|
178 |
+
"dozwolone."
|
179 |
|
180 |
+
#: ../subscribers/view-subscriber-import.php:91
|
181 |
+
msgid "email imported."
|
182 |
+
msgstr "e-mail zaimportowany."
|
183 |
|
184 |
+
#: ../subscribers/view-subscriber-import.php:92
|
185 |
+
msgid "email already exists."
|
186 |
+
msgstr "e-mail już istnieje."
|
|
|
|
|
187 |
|
188 |
+
#: ../subscribers/view-subscriber-import.php:93
|
189 |
+
msgid "email are invalid."
|
190 |
+
msgstr "e-mail jest nieprawidłowy."
|
191 |
|
192 |
+
#: ../subscribers/view-subscriber-import.php:96 ../subscribers/view-subscriber-
|
193 |
+
#: import.php:125
|
194 |
+
msgid " to view details."
|
195 |
+
msgstr " aby zobaczyć szczegóły."
|
196 |
|
197 |
+
#: ../subscribers/view-subscriber-import.php:104
|
198 |
+
msgid "File Upload Failed."
|
199 |
+
msgstr "Przesyłanie pliku nie powiodło się."
|
200 |
+
|
201 |
+
#: ../subscribers/view-subscriber-import.php:143
|
202 |
+
msgid "Import Email Addresses"
|
203 |
+
msgstr "Importuj Adresy E-maili"
|
204 |
+
|
205 |
+
#: ../subscribers/view-subscriber-import.php:144 ../subscribers/view-subscriber-
|
206 |
+
#: show.php:208 ../subscribers/view-subscriber-export.php:28 ../subscribers/view-
|
207 |
+
#: subscriber-add.php:112 ../subscribers/view-subscriber-edit.php:111 ..
|
208 |
+
#: subscribers/view-subscriber-sync.php:91
|
209 |
+
msgid "Add New Subscriber"
|
210 |
+
msgstr "Dodaj Nowego Subskrybenta"
|
211 |
+
|
212 |
+
#: ../subscribers/view-subscriber-import.php:145 ../subscribers/view-subscriber-
|
213 |
+
#: show.php:210 ../subscribers/view-subscriber-add.php:114 ../subscribers/view-
|
214 |
+
#: subscriber-edit.php:113 ../subscribers/view-subscriber-sync.php:93
|
215 |
+
msgid "Export"
|
216 |
+
msgstr "Export"
|
217 |
+
|
218 |
+
#: ../subscribers/view-subscriber-import.php:156
|
219 |
+
msgid "Select CSV file"
|
220 |
+
msgstr "Wybierz plik CSV"
|
221 |
|
222 |
+
#: ../subscribers/view-subscriber-import.php:158
|
223 |
+
msgid "Check CSV structure "
|
224 |
+
msgstr "Sprawdź strukturę CSV"
|
225 |
|
226 |
+
#: ../subscribers/view-subscriber-import.php:159
|
227 |
+
msgid "from here"
|
228 |
+
msgstr "od tąd"
|
229 |
|
230 |
+
#: ../subscribers/view-subscriber-import.php:170
|
231 |
+
msgid "Select Subscribers Email Status"
|
232 |
+
msgstr "Wybierz Status e-maili Subskrybentów"
|
233 |
|
234 |
+
#: ../subscribers/view-subscriber-import.php:186
|
235 |
+
msgid "Select (or) Create Group for Subscribers"
|
236 |
+
msgstr "Wybierz (lub) stwórz Grupę dla Subskrybentów"
|
237 |
|
238 |
+
#: ../subscribers/view-subscriber-import.php:203 ../subscribers/view-subscriber-
|
239 |
+
#: add.php:175
|
240 |
+
msgid "(or)"
|
241 |
+
msgstr "(lub)"
|
242 |
|
243 |
+
#: ../subscribers/view-subscriber-import.php:211 ../subscribers/view-subscriber-
|
244 |
+
#: show.php:209 ../subscribers/view-subscriber-export.php:29 ../subscribers/view-
|
245 |
+
#: subscriber-add.php:113 ../subscribers/view-subscriber-edit.php:112 ..
|
246 |
+
#: subscribers/view-subscriber-sync.php:92
|
247 |
+
msgid "Import"
|
248 |
+
msgstr "Import."
|
249 |
|
250 |
+
#: ../subscribers/view-subscriber-show.php:55 ../subscribers/view-subscriber-show.
|
251 |
+
#: php:94
|
252 |
+
msgid "Record deleted."
|
253 |
+
msgstr "Rekord usunięty."
|
254 |
|
255 |
+
#: ../subscribers/view-subscriber-show.php:66
|
256 |
+
msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
|
257 |
+
msgstr "By wysłać e-mail potwierdzający, zmień opcję Opt-in na Podwójne Opt In."
|
258 |
|
259 |
+
#: ../subscribers/view-subscriber-show.php:114
|
260 |
+
msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
|
261 |
+
msgstr "By wysłać mail potwierdzający, zmień opcję Opt-in na Podwójne Opt In."
|
262 |
|
263 |
+
#: ../subscribers/view-subscriber-show.php:133
|
264 |
+
msgid "Confirmation email(s) Resent Successfully."
|
265 |
+
msgstr "E-mail(-e) potwierdzając(-y/-e) wysłan(-y/-e) poprawnie."
|
266 |
|
267 |
+
#: ../subscribers/view-subscriber-show.php:162
|
268 |
+
msgid "Selected subscribers group updated."
|
269 |
+
msgstr "Zaktualizowano wybraną grupę subskrybentów"
|
270 |
|
271 |
+
#: ../subscribers/view-subscriber-show.php:291
|
272 |
+
msgid "1 to 200 emails"
|
273 |
+
msgstr "1 do 200 e-maili"
|
274 |
|
275 |
+
#: ../subscribers/view-subscriber-show.php:292
|
276 |
+
msgid "201 to 400"
|
277 |
+
msgstr "201 do 400"
|
278 |
|
279 |
+
#: ../subscribers/view-subscriber-show.php:293
|
280 |
+
msgid "401 to 600"
|
281 |
+
msgstr "401 do 600"
|
282 |
|
283 |
+
#: ../subscribers/view-subscriber-show.php:294
|
284 |
+
msgid "601 to 800"
|
285 |
+
msgstr "601 do 800"
|
286 |
|
287 |
+
#: ../subscribers/view-subscriber-show.php:295
|
288 |
+
msgid "801 to 1000"
|
289 |
+
msgstr "1001 do 2000"
|
290 |
|
291 |
+
#: ../subscribers/view-subscriber-show.php:296
|
292 |
+
msgid "1001 to 2000"
|
293 |
+
msgstr "1001 do 2000"
|
|
|
|
|
|
|
|
|
|
|
294 |
|
295 |
+
#: ../subscribers/view-subscriber-show.php:297
|
296 |
+
msgid "2001 to 5000"
|
297 |
+
msgstr "2001 do 5000"
|
298 |
|
299 |
+
#: ../subscribers/view-subscriber-show.php:298
|
300 |
+
msgid "5001 to 10000"
|
301 |
+
msgstr "5001 do 10000"
|
302 |
|
303 |
+
#: ../subscribers/view-subscriber-show.php:299
|
304 |
+
msgid "Display All"
|
305 |
+
msgstr "Wyświetl Wszystko"
|
306 |
+
|
307 |
+
#: ../subscribers/view-subscriber-show.php:311 ../subscribers/view-subscriber-
|
308 |
+
#: show.php:325
|
309 |
+
msgid "Email Address"
|
310 |
+
msgstr "Adres E-mail"
|
311 |
+
|
312 |
+
#: ../subscribers/view-subscriber-show.php:315 ../subscribers/view-subscriber-
|
313 |
+
#: show.php:329
|
314 |
+
msgid "Submission Date<br>(YYYY-MM-DD)"
|
315 |
+
msgstr "Termin złożenia<br>(YYYY-MM-DD)"
|
316 |
+
|
317 |
+
#: ../subscribers/view-subscriber-export.php:27
|
318 |
+
msgid "Export Email Addresses"
|
319 |
+
msgstr "Eksportuj Adresy E-maili"
|
320 |
+
|
321 |
+
#: ../subscribers/view-subscriber-export.php:39 ../subscribers/view-subscriber-
|
322 |
+
#: export.php:47
|
323 |
+
msgid "Type of List to Export"
|
324 |
+
msgstr "Rodzaj Listy do Eksportu"
|
325 |
+
|
326 |
+
#: ../subscribers/view-subscriber-export.php:40 ../subscribers/view-subscriber-
|
327 |
+
#: export.php:48
|
328 |
+
msgid "Total Emails"
|
329 |
+
msgstr "Wszystkie E-maile"
|
330 |
+
|
331 |
+
#: ../subscribers/view-subscriber-export.php:54
|
332 |
+
msgid "1"
|
333 |
+
msgstr "1"
|
334 |
+
|
335 |
+
#: ../subscribers/view-subscriber-export.php:55
|
336 |
+
msgid "All Subscribers List"
|
337 |
+
msgstr "Lista Wszystkich Subskrybentów"
|
338 |
+
|
339 |
+
#: ../subscribers/view-subscriber-export.php:57 ../subscribers/view-subscriber-
|
340 |
+
#: export.php:63 ../subscribers/view-subscriber-export.php:69
|
341 |
+
msgid "Click to Export in CSV"
|
342 |
+
msgstr "Kliknij by wyeksportować do CSV"
|
343 |
+
|
344 |
+
#: ../subscribers/view-subscriber-export.php:60
|
345 |
+
msgid "2"
|
346 |
+
msgstr "2"
|
347 |
+
|
348 |
+
#: ../subscribers/view-subscriber-export.php:61
|
349 |
+
msgid "WordPress Registered Users"
|
350 |
+
msgstr "Zarejestrowany Użytkownik WordPress"
|
351 |
+
|
352 |
+
#: ../subscribers/view-subscriber-export.php:66
|
353 |
+
msgid "3"
|
354 |
+
msgstr "3"
|
355 |
+
|
356 |
+
#: ../subscribers/view-subscriber-export.php:67
|
357 |
+
msgid "Commented Authors"
|
358 |
+
msgstr "Autorzy komentujący"
|
359 |
+
|
360 |
+
#: ../subscribers/view-subscriber-add.php:65
|
361 |
+
msgid "Subscriber has been saved."
|
362 |
+
msgstr "Subskrybent został zapisany."
|
363 |
+
|
364 |
+
#: ../subscribers/view-subscriber-add.php:67
|
365 |
+
msgid "Subscriber already exists."
|
366 |
+
msgstr "Subskrybent już istnieje."
|
367 |
|
368 |
+
#: ../subscribers/view-subscriber-add.php:70
|
369 |
+
msgid "Invalid Email."
|
370 |
+
msgstr "Błedny e-mail"
|
371 |
|
372 |
+
#: ../subscribers/view-subscriber-add.php:124
|
373 |
+
msgid "Enter Subscriber's Full name"
|
374 |
+
msgstr "Wprowadź Imię i Nazwisko Subskrybenta"
|
375 |
|
376 |
+
#: ../subscribers/view-subscriber-add.php:134
|
377 |
+
msgid "Enter Subscriber's Email Address"
|
378 |
+
msgstr "Wprowadź Adres E-mail Subskrybenta"
|
379 |
|
380 |
+
#: ../subscribers/view-subscriber-add.php:144
|
381 |
+
msgid "Select Subscriber's Status"
|
382 |
+
msgstr "Wybierz Status Subskrybenta"
|
383 |
|
384 |
+
#: ../subscribers/view-subscriber-add.php:159
|
385 |
+
msgid "Select (or) Create Group for Subscriber"
|
386 |
+
msgstr "Wybierz (lub) stwórz Grupę dla Subskrybenta"
|
387 |
|
388 |
+
#: ../subscribers/view-subscriber-add.php:184
|
389 |
+
msgid "Add Subscriber"
|
390 |
+
msgstr "Dodaj Subskrybenta"
|
|
|
391 |
|
392 |
+
#: ../subscribers/view-subscriber-edit.php:73
|
393 |
+
msgid "Subscriber details updated."
|
394 |
+
msgstr "Dane Subskrybenta zaktualizowane."
|
395 |
|
396 |
+
#: ../subscribers/view-subscriber-edit.php:75
|
397 |
+
msgid "Subscriber already exists for this group."
|
398 |
+
msgstr "Subskrybent już istnieje w tej grupie."
|
|
|
|
|
|
|
399 |
|
400 |
+
#: ../subscribers/view-subscriber-edit.php:110
|
401 |
+
msgid "Edit Subscriber"
|
402 |
+
msgstr "Edytuj Subskrybenta"
|
403 |
|
404 |
+
#: ../subscribers/view-subscriber-edit.php:123
|
405 |
+
msgid "Edit Subscriber's Full Name"
|
406 |
+
msgstr "Edytuj Imię i Nazwisko Subskrybenta"
|
|
|
|
|
|
|
|
|
407 |
|
408 |
+
#: ../subscribers/view-subscriber-edit.php:133
|
409 |
+
msgid "Edit Subscriber's Email Address"
|
410 |
+
msgstr "Edytuj Adres E-mail Subskrybenta"
|
411 |
|
412 |
+
#: ../subscribers/view-subscriber-edit.php:143
|
413 |
+
msgid "Update Subscriber's Status"
|
414 |
+
msgstr "Aktualizuj Status Subskrybenta"
|
415 |
|
416 |
+
#: ../subscribers/view-subscriber-edit.php:158
|
417 |
+
msgid "Update Subscriber's Group"
|
418 |
+
msgstr "Aktualizuj Grupę Subskrybenta"
|
419 |
|
420 |
+
#: ../subscribers/view-subscriber-sync.php:49
|
421 |
+
msgid "Emails Successfully Synced."
|
422 |
+
msgstr "Maile poprawnie zsynchronizowane."
|
423 |
|
424 |
+
#: ../subscribers/view-subscriber-sync.php:102
|
425 |
+
msgid "Sync newly registered users to subscribers list"
|
426 |
+
msgstr "Synchronizacja nowo zarejestrowanych użytkowników z listą subskrybentów"
|
427 |
|
428 |
+
#: ../subscribers/view-subscriber-sync.php:115
|
429 |
+
msgid "Select group to add newly registered users to"
|
430 |
+
msgstr "Wybierz grupę, do której przypisani zostaną nowo rejestrowani użytkownicy"
|
431 |
+
|
432 |
+
#: ../cron/cron-add.php:80
|
433 |
msgid ""
|
434 |
+
"This is your cron job URL. It is a readonly field and you are advised not to "
|
435 |
+
"modify it."
|
|
|
436 |
msgstr ""
|
437 |
+
"To jest adres URL cron. Jest to pole tylko do odczytu i nie zaleca się go "
|
438 |
+
"zmodyfikować."
|
|
|
|
|
|
|
|
|
|
|
439 |
|
440 |
+
#: ../cron/cron-add.php:84
|
441 |
+
msgid ""
|
442 |
+
"Enter number of mails you want to send per hour/trigger (Your web host has "
|
443 |
+
"limits. We suggest 50 emails per hour to be safe)."
|
444 |
+
msgstr ""
|
445 |
+
"Wpisz ilość maili wysyłanych na godzinę/wywołanie (Twój hostingowego ma "
|
446 |
+
"swoje granice. Aby było bezpiecznie proponujemy 50 e-maili na godzinę)."
|
447 |
|
448 |
+
#: ../cron/cron-add.php:88
|
449 |
+
msgid ""
|
450 |
+
"Send above mail to admin whenever cron URL is triggered from your server.<br "
|
451 |
+
"/>(Available Keywords: ###DATE###, ###SUBJECT###, ###COUNT###)"
|
452 |
+
msgstr ""
|
453 |
+
"Wyślij powyższy mail do Administrator kiedy cron URL jest wywoływany z "
|
454 |
+
"serwera.<br />(Dostępne słowa kluczowe: ###DATE###, ###SUBJECT###, "
|
455 |
+
"###COUNT###)"
|
456 |
|
457 |
+
#: ../cron/cron-add.php:98
|
458 |
+
msgid ""
|
459 |
+
"<a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-how-to-schedule-"
|
460 |
+
"cron-mails/\">What is Cron?</a>"
|
461 |
+
msgstr ""
|
462 |
+
"<a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-how-to-schedule-"
|
463 |
+
"cron-mails/\">Co to jest Cron?</a>"
|
464 |
|
465 |
+
#: ../compose/compose-edit.php:60
|
466 |
+
msgid "Template successfully updated. "
|
467 |
+
msgstr "Szablon zaktualizowany poprawnie."
|
468 |
|
469 |
+
#: ../compose/compose-edit.php:90 ../compose/compose-add.php:79
|
470 |
+
msgid "Select your Mail Type"
|
471 |
+
msgstr "Wybierz typ Maila"
|
472 |
|
473 |
+
#: ../compose/compose-edit.php:99 ../compose/compose-add.php:88
|
474 |
+
msgid "Keyword: ###POSTTITLE###"
|
475 |
+
msgstr "Słowo kluczowe: ###POSTTITLE###"
|
476 |
|
477 |
+
#: ../compose/compose-edit.php:101 ../compose/compose-add.php:90
|
478 |
+
msgid "Enter Content for your Mail"
|
479 |
+
msgstr "Wpisz zawartość Maila"
|
480 |
|
481 |
+
#: ../compose/compose-edit.php:105 ../compose/compose-add.php:94
|
482 |
+
msgid "Available Keywords"
|
483 |
+
msgstr "Dostępne słowa kluczowe"
|
|
|
|
|
|
|
|
|
484 |
|
485 |
+
#: ../compose/compose-add.php:42
|
486 |
+
msgid "Template successfully created. "
|
487 |
+
msgstr "Szablon utworzony poprawnie."
|
488 |
|
489 |
+
#: ../compose/compose-show.php:81 ../compose/compose-show.php:89
|
490 |
+
msgid "Actions"
|
491 |
+
msgstr "Działania"
|
|
|
|
|
|
|
|
|
492 |
|
493 |
+
#: ../help/help.php:114
|
494 |
+
msgid "How to Add Subscription box to website?"
|
495 |
+
msgstr "Jak umieścić blok Subskrypcji na stronie?"
|
496 |
|
497 |
+
#: ../help/help.php:123
|
498 |
+
msgid "How to Import or Export Email Addresses?"
|
499 |
+
msgstr "Jak Importować lub Eksportować Adresy Maili? "
|
500 |
|
501 |
+
#: ../help/help.php:126
|
502 |
+
msgid "General Plugin Settings"
|
503 |
+
msgstr "Ogólne ustawienia Wtyczki."
|
504 |
|
505 |
+
#: ../help/help.php:126
|
506 |
msgid ""
|
507 |
+
" (How to modify the existing emails content like Opt-in mail, Welcome mail, "
|
508 |
+
"Admin mails)"
|
509 |
msgstr ""
|
510 |
+
"(Jak zmodyfikować zawartość istniejących e-maili typu: Opt-in, Powitalny, "
|
511 |
+
"Administratora)"
|
|
|
|
|
|
|
|
|
512 |
|
513 |
+
#: ../help/help.php:129
|
514 |
+
msgid "How to change/update/translate any texts from Email Subscribers?"
|
515 |
+
msgstr "Jak zmienić/zaktualizować/przetłumaczyć dowolny tekst z Email Subscribers?"
|
|
|
516 |
|
517 |
+
#: ../help/help.php:132
|
518 |
+
msgid "How to add Unsubscribe link in emails?"
|
519 |
+
msgstr "Jak dodać do maila link rezygnacji z subskrypcji?"
|
520 |
|
521 |
+
#: ../help/help.php:135
|
522 |
+
msgid "What are Static Templates and Dynamic Templates?"
|
523 |
+
msgstr "Co to są Szablony Statyczne i Szablony Dynamiczne?"
|
524 |
|
525 |
+
#: ../help/help.php:138
|
526 |
+
msgid "How to Compose and Send Static Newsletter Mails?"
|
527 |
+
msgstr "Jak tworzyć i wysyłać maile Static Newsletter?"
|
528 |
|
529 |
+
#: ../help/help.php:144
|
530 |
+
msgid "How to Send a sample new post notification email to testgroup/myself?"
|
|
|
|
|
531 |
msgstr ""
|
532 |
+
"Jak wysłać przykład nowego e-maila z powiadomieniem do grupy testowej / "
|
533 |
+
"siebie?"
|
534 |
|
535 |
+
#: ../help/help.php:153
|
536 |
+
msgid "Emails are not being received by Subscribers?"
|
537 |
+
msgstr "E-maile nie są odbierane przez subskrybentów?"
|
538 |
|
539 |
+
#: ../help/help.php:159
|
540 |
+
msgid "How to use Rainmaker’s form in Email Subscribers?"
|
541 |
+
msgstr "Jak używać formularza Rainmaker w Email Subscribers?"
|
|
|
|
|
|
|
|
|
542 |
|
543 |
+
#: ../help/help.php:162
|
544 |
+
msgid "How to Schedule Cron Mails?"
|
545 |
+
msgstr "Jak zaplanować zadania Cron?"
|
546 |
|
547 |
+
#: ../help/help.php:165
|
548 |
+
msgid "How to Schedule Cron Emails in cPanel?"
|
549 |
+
msgstr "Jak zaplanować zadania Cron w cPanel?"
|
|
|
|
|
|
|
550 |
|
551 |
+
#: ../help/help.php:168
|
552 |
+
msgid "How to Schedule Cron Emails in Parallels Plesk?"
|
553 |
+
msgstr "Jak zaplanować zadania Cron w Parallels Plesk?"
|
554 |
|
555 |
+
#: ../help/help.php:171
|
556 |
+
msgid "What to do if Hosting doesn’t support Cron Jobs?"
|
557 |
+
msgstr "Co zrobić gdy Hosting nie obsługuje zadań Cron?"
|
|
|
|
|
|
|
|
|
558 |
|
559 |
+
#: ../help/help.php:174
|
560 |
+
msgid "Commonly Asked Questions"
|
561 |
+
msgstr "Często zadawane pytania."
|
562 |
|
563 |
+
#: ../sendmail/sendmail.php:51
|
564 |
+
msgid "Please select your group."
|
565 |
+
msgstr "Proszę wybierz swoją grupę."
|
|
|
|
|
|
|
|
|
566 |
|
567 |
+
#: ../sendmail/sendmail.php:58
|
568 |
+
msgid "Mail sent successfully. "
|
569 |
+
msgstr "Mail został wysłany."
|
570 |
|
571 |
+
#: ../sendmail/sendmail.php:62
|
572 |
+
msgid "Click here to check Statistics"
|
573 |
+
msgstr "Kliknij tutaj by wybrać Statystyki"
|
|
|
|
|
|
|
|
|
|
|
574 |
|
575 |
+
#: ../sendmail/sendmail.php:104
|
576 |
+
msgid "Select Mail Subject from available list"
|
577 |
+
msgstr "Wybierz Temat Maila z listy możliwych"
|
578 |
|
579 |
+
#: ../sendmail/sendmail.php:131
|
580 |
+
msgid "Select Mail Type"
|
581 |
+
msgstr "Wybierz Typ Maila"
|
582 |
|
583 |
+
#: ../sendmail/sendmail.php:145
|
584 |
+
msgid "Select Subscribers group to Send Mail"
|
585 |
+
msgstr "Wybierz grupę Subskrybentów do Wysłania Maila"
|
586 |
|
587 |
+
#: ../sendmail/sendmail.php:177
|
588 |
+
msgid "Recipients : 0 "
|
589 |
+
msgstr "Odbiorcy: 0 "
|
590 |
+
|
591 |
+
#: ../sendmail/sendmail.php:179
|
592 |
+
#, php-format
|
593 |
+
msgid "Recipients : %s"
|
594 |
+
msgstr "Odbiorcy: %s"
|
595 |
+
|
596 |
+
#: ../sendmail/sendmail.php:182
|
597 |
msgid ""
|
598 |
+
"<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
|
599 |
+
"that you change above Mail Type to Cron and Send Mail via Cron Job."
|
600 |
+
"</strong><br>Click on Help for more information."
|
601 |
msgstr ""
|
602 |
+
"<br><br><strong>Ilość Odbiorców przekracza 100.<br>Zdecydowanie zalecamy "
|
603 |
+
"zmianę Typu Maili na Cron i wysyłkę maili przez zadania Cron."
|
604 |
+
"</strong><br>Aby uzyskać więcej informacji kliknij Pomoc."
|
605 |
|
606 |
+
#: ../classes/es-register.php:219
|
607 |
+
msgctxt "sendmail-enhanced-select"
|
608 |
+
msgid "Please select your mail type."
|
609 |
+
msgstr "Proszę wybrać typ maila."
|
610 |
|
611 |
+
#: ../classes/es-register.php:256
|
612 |
+
msgctxt "widget-enhanced-select"
|
613 |
msgid ""
|
614 |
+
"Your subscription was successful! Within a few minutes, kindly check the "
|
615 |
+
"mail in your mailbox and confirm your subscription. If you can't see the "
|
616 |
+
"mail in your mailbox, please check your spam folder."
|
617 |
msgstr ""
|
618 |
+
"Subskrypcja zakończyła się pomyślnie! W ciągu kilku minut prosimy sprawdzić "
|
619 |
+
"pocztę w skrzynce pocztowej i potwierdzić subskrypcję. Jeśli nie widać "
|
620 |
+
"wiadomości w skrzynce pocztowej, należy sprawdzić folder spam."
|
621 |
|
622 |
+
#: ../classes/es-register.php:273
|
623 |
+
msgctxt "widget-page-enhanced-select"
|
624 |
+
msgid ""
|
625 |
+
"Your subscription was successful! Within a few minutes, kindly check the "
|
626 |
+
"mail in your mailbox and confirm your subscription. If you can't see the "
|
627 |
+
"mail in your mailbox, please check your spam folder."
|
628 |
+
msgstr ""
|
629 |
+
"Subskrypcja zakończyła się pomyślnie! W ciągu kilku minut prosimy sprawdzić "
|
630 |
+
"pocztę w skrzynce pocztowej i potwierdzić subskrypcję. Jeśli nie widać "
|
631 |
+
"wiadomości w skrzynce pocztowej, należy sprawdzić folder spam."
|
632 |
|
633 |
+
#: ../classes/es-register.php:407
|
634 |
+
msgid ""
|
635 |
+
"Email Subscribers recommends free plugin <b>Rainmaker</b> to collect leads "
|
636 |
+
"instantly"
|
637 |
msgstr ""
|
638 |
+
"Email Subscribers zaleca darmową wtyczkę <b>Rainmaker</b> zbierającą "
|
639 |
+
"natychmiastowe wskazówki"
|
640 |
|
641 |
+
#: ../classes/es-register.php:408
|
642 |
+
msgid "Yes, I want this"
|
643 |
+
msgstr "Tak, chcę to."
|
644 |
|
645 |
+
#: ../classes/es-register.php:408
|
646 |
+
msgid "No, I don't want it"
|
647 |
+
msgstr "Nie, nie chcę tego."
|
|
|
|
|
648 |
|
649 |
+
#: ../notification/notification-add.php:32
|
650 |
+
msgid "Please select subscribers group."
|
651 |
+
msgstr "Proszę wybrać grupę subskrybentów."
|
652 |
|
653 |
+
#: ../notification/notification-add.php:38
|
654 |
+
msgid "Please select notification status."
|
655 |
+
msgstr "Wybierz status powiadamiania."
|
656 |
|
657 |
+
#: ../notification/notification-add.php:44 ../notification/notification-edit.php:60
|
658 |
+
msgid "Please select notification mail subject. Use compose menu to create new."
|
659 |
+
msgstr "Wybierz temat powiadomienia e-mail. Użyj menu tworzenia, aby stworzyć nowe."
|
660 |
|
661 |
+
#: ../notification/notification-add.php:50 ../notification/notification-edit.php:69
|
662 |
+
msgid "Please select post categories."
|
663 |
+
msgstr "Proszę wybrać kategorię wysyłki."
|
|
|
|
|
|
|
|
|
664 |
|
665 |
+
#: ../notification/notification-add.php:107
|
666 |
+
msgid "Add Notification"
|
667 |
+
msgstr "Dodaj powiadomienie"
|
668 |
|
669 |
+
#: ../notification/notification-add.php:108 ../notification/notification-show.php:
|
670 |
+
#: 55
|
671 |
+
#: ../notification/notification-edit.php:122 ../roles/roles-add.php:106 ..
|
672 |
+
#: settings/settings-edit.php:199 ../sentmail/sentmail-preview.php:29
|
673 |
+
#: sentmail/sentmail-show.php:98 ../sentmail/deliverreport-show.php:62
|
674 |
+
#: subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
|
675 |
+
#: show.php:212 ../subscribers/view-subscriber-export.php:31 ../subscribers/view-
|
676 |
+
#: subscriber-add.php:116 ../subscribers/view-subscriber-edit.php:115
|
677 |
+
#: subscribers/view-subscriber-sync.php:94 ../cron/cron-add.php:75
|
678 |
+
#: compose/compose-edit.php:87 ../compose/compose-add.php:76 ../compose/compose-
|
679 |
+
#: show.php:67 ../compose/compose-preview.php:29 ../sendmail/sendmail.php:96
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
680 |
msgid "Help"
|
681 |
msgstr "Pomoc"
|
682 |
|
683 |
+
#: ../notification/notification-add.php:119 ../notification/notification-add.php:
|
684 |
+
#: 143
|
685 |
+
#: ../notification/notification-edit.php:133 ../notification/notification-
|
686 |
+
#: edit.php:166 ../subscribers/view-subscriber-import.php:191 ../subscribers/view-
|
687 |
+
#: subscriber-add.php:163 ../subscribers/view-subscriber-edit.php:163 ..
|
688 |
+
#: subscribers/view-subscriber-sync.php:120 ../sendmail/sendmail.php:109
|
689 |
+
#: sendmail/sendmail.php:136 ../sendmail/sendmail.php:150
|
690 |
+
msgid "Select"
|
691 |
+
msgstr "Wybierz"
|
692 |
|
693 |
+
#: ../notification/notification-add.php:189 ../notification/notification-edit.php:
|
694 |
+
#: 226
|
695 |
+
msgid "Check All"
|
696 |
+
msgstr "Wybierz wszystko"
|
697 |
|
698 |
+
#: ../notification/notification-add.php:190 ../notification/notification-edit.php:
|
699 |
+
#: 227
|
700 |
+
msgid "Uncheck All"
|
701 |
+
msgstr "Odznacz wszystko"
|
|
|
|
|
|
|
702 |
|
703 |
+
#: ../notification/notification-add.php:226 ../notification/notification-edit.php:
|
704 |
+
#: 269
|
705 |
+
msgid "No Custom Post Types Available"
|
706 |
+
msgstr "Nie są dostępne własne typy wpisów"
|
707 |
|
708 |
+
#: ../notification/notification-add.php:237 ../notification/notification-edit.php:
|
709 |
+
#: 282
|
710 |
+
msgid "Send mail immediately when new post is published"
|
711 |
+
msgstr "Wyślij mail od razu gdy tylko nowy wpis zostanie opublikowany"
|
712 |
|
713 |
+
#: ../notification/notification-add.php:238 ../notification/notification-edit.php:
|
714 |
+
#: 283
|
715 |
+
msgid "Add to cron when new post is published and send via cron job"
|
716 |
+
msgstr "Dodaj do Crona, gdy zostanie opublikowany nowy wpis i wyślij przez Crona"
|
717 |
|
718 |
+
#: ../notification/notification-add.php:239 ../notification/notification-edit.php:
|
719 |
+
#: 284
|
720 |
+
msgid "Disable notification"
|
721 |
+
msgstr "Wyłącz powiadomienia"
|
722 |
|
723 |
+
#: ../notification/notification-show.php:53 ../classes/es-register.php:148 ..
|
724 |
+
#: classes/es-register.php:149
|
725 |
+
msgid "Notification"
|
726 |
+
msgstr "Powiadomienie"
|
727 |
|
728 |
+
#: ../notification/notification-show.php:54 ../notification/notification-edit.php:
|
729 |
+
#: 121 ../compose/compose-edit.php:86 ../compose/compose-show.php:66
|
730 |
+
msgid "Add New"
|
731 |
+
msgstr "Dodaj Nowy"
|
732 |
|
733 |
+
#: ../notification/notification-show.php:66 ../notification/notification-show.php:
|
734 |
+
#: 74
|
735 |
+
msgid "Mail Subject"
|
736 |
+
msgstr "Temat maila"
|
|
|
|
|
|
|
|
|
|
|
737 |
|
738 |
+
#: ../notification/notification-show.php:67 ../notification/notification-show.php:
|
739 |
+
#: 75
|
740 |
+
msgid "Subscribers Group"
|
741 |
+
msgstr "Grupa subskrybentów."
|
|
|
742 |
|
743 |
+
#: ../notification/notification-show.php:68 ../notification/notification-show.php:
|
744 |
+
#: 76
|
745 |
+
msgid "Categories / Custom Post"
|
746 |
+
msgstr "Kategorie / niestandardowy wpis"
|
747 |
|
748 |
+
#: ../notification/notification-show.php:69 ../notification/notification-show.php:
|
749 |
+
#: 77
|
750 |
+
msgid "Notification Status"
|
751 |
+
msgstr "Status powiadomienia."
|
752 |
|
753 |
+
#: ../notification/notification-show.php:98 ../subscribers/view-subscriber-show.
|
754 |
+
#: php:357 ../compose/compose-show.php:105 ../compose/compose-preview.php:41
|
755 |
+
msgid "Edit"
|
756 |
+
msgstr "Edytuj"
|
757 |
|
758 |
+
#: ../notification/notification-show.php:101 ../subscribers/view-subscriber-show.
|
759 |
+
#: php:244 ../subscribers/view-subscriber-show.php:362 ../compose/compose-show.
|
760 |
+
#: php:106
|
761 |
+
msgid "Delete"
|
762 |
+
msgstr "Kasuj"
|
763 |
+
|
764 |
+
#: ../notification/notification-show.php:128
|
765 |
+
msgid "Send mail immediately when new post is published."
|
766 |
+
msgstr "Wyślij mail od razu gdy tylko nowy wpis zostanie opublikowany"
|
767 |
|
768 |
+
#: ../notification/notification-show.php:130
|
769 |
+
msgid "Add to cron and send mail via cron job."
|
770 |
+
msgstr "Dodaj do Crona i wyślij przez Crona"
|
771 |
+
|
772 |
+
#: ../notification/notification-show.php:141 ../sentmail/sentmail-show.php:165 ..
|
773 |
+
#: sentmail/deliverreport-show.php:115 ../subscribers/view-subscriber-show.php:385
|
774 |
+
#: ../compose/compose-show.php:115
|
775 |
msgid "No records available."
|
776 |
msgstr "Brak dostępnych rekordów."
|
777 |
|
778 |
+
#: ../notification/notification-edit.php:48
|
779 |
+
msgid "Please select subscribers group"
|
780 |
+
msgstr "Proszę wybrać grupę subskrybentów."
|
|
|
|
|
|
|
|
|
781 |
|
782 |
+
#: ../notification/notification-edit.php:54
|
783 |
+
msgid "Please select notification status"
|
784 |
+
msgstr "Proszę wybierz stan powiadomienia."
|
785 |
|
786 |
+
#: ../notification/notification-edit.php:120
|
787 |
+
msgid "Edit Notification"
|
788 |
+
msgstr "Edytuj zawiadomienie."
|
|
|
|
|
|
|
|
|
789 |
|
790 |
+
#: ../notification/notification-edit.php:129 ../subscribers/view-subscriber-show.
|
791 |
+
#: php:246
|
792 |
+
msgid "Update Subscribers Group"
|
793 |
+
msgstr "Uaktualnij grupę subskrybentów"
|
794 |
|
795 |
+
#. URI of the plugin
|
796 |
+
msgid "http://www.storeapps.org"
|
797 |
+
msgstr "http://www.storeapps.org"
|
|
|
|
|
798 |
|
799 |
+
#: ../roles/roles-add.php:105
|
800 |
+
msgid "Roles and Capabilities"
|
801 |
+
msgstr "Uprawnienia i możliwości"
|
802 |
|
803 |
+
#: ../roles/roles-add.php:116
|
804 |
+
msgid "Subscribers Menu"
|
805 |
+
msgstr "Menu subskrybentów"
|
806 |
|
807 |
+
#: ../roles/roles-add.php:120 ../roles/roles-add.php:132 ../roles/roles-add.php:144
|
808 |
+
#: ../roles/roles-add.php:156 ../roles/roles-add.php:168 ../roles/roles-add. php:
|
809 |
+
#: 180
|
810 |
+
#: ../roles/roles-add.php:192
|
811 |
+
msgid "Administrator Only"
|
812 |
+
msgstr "Tylko dla administratora"
|
813 |
|
814 |
+
#: ../roles/roles-add.php:121 ../roles/roles-add.php:133 ../roles/roles-add.php:145
|
815 |
+
#: ../roles/roles-add.php:157 ../roles/roles-add.php:169 ../roles/roles-add. php:
|
816 |
+
#: 181
|
817 |
+
#: ../roles/roles-add.php:193
|
818 |
+
msgid "Administrator/Editor"
|
819 |
+
msgstr "Administrator/Edytor"
|
820 |
|
821 |
+
#: ../roles/roles-add.php:122 ../roles/roles-add.php:134 ../roles/roles-add.php:146
|
822 |
+
#: ../roles/roles-add.php:158 ../roles/roles-add.php:170 ../roles/roles-add. php:
|
823 |
+
#: 182
|
824 |
+
#: ../roles/roles-add.php:194
|
825 |
+
msgid "Administrator/Editor/Author/Contributor"
|
826 |
+
msgstr "Administrator/Edytor/Autor/Specjalista"
|
827 |
|
828 |
+
#: ../roles/roles-add.php:128
|
829 |
+
msgid "Compose Menu"
|
830 |
+
msgstr "Menu Kompozycji"
|
831 |
|
832 |
+
#: ../roles/roles-add.php:140
|
833 |
+
msgid "Notification Menu"
|
834 |
+
msgstr "Menu Powiadomień"
|
835 |
|
836 |
+
#: ../roles/roles-add.php:152
|
837 |
+
msgid "Send Email Menu/Cron Menu"
|
838 |
+
msgstr "Menu Wysyłki Maili/Cron Menu"
|
|
|
|
|
839 |
|
840 |
+
#: ../roles/roles-add.php:164
|
841 |
+
msgid "Settings Menu"
|
842 |
+
msgstr "Menu Ustawień"
|
|
|
|
|
843 |
|
844 |
+
#: ../roles/roles-add.php:176
|
845 |
+
msgid "Sent Mails Menu"
|
846 |
+
msgstr "Menu Wysyłania Maili"
|
847 |
|
848 |
+
#: ../roles/roles-add.php:188
|
849 |
+
msgid "Help & Info Menu"
|
850 |
+
msgstr "Menu Pomocy i Informacji"
|
851 |
|
852 |
+
#: ../settings/settings-edit.php:116
|
853 |
+
msgid "Please enter sender of notifications from name."
|
854 |
+
msgstr "Proszę podać nadawcę powiadomień po nazwie."
|
|
|
855 |
|
856 |
+
#: ../settings/settings-edit.php:121
|
857 |
+
msgid "Please enter sender of notifications from email."
|
858 |
+
msgstr "Proszę podać nadawcę powiadomień po adresie e-mail."
|
859 |
|
860 |
+
#: ../settings/settings-edit.php:198 ../classes/es-register.php:157 ../classes/es-
|
861 |
+
#: register.php:158
|
862 |
+
msgid "Settings"
|
863 |
+
msgstr "Ustawienia"
|
864 |
|
865 |
+
#: ../settings/settings-edit.php:206
|
866 |
+
msgid "Sender of notifications"
|
867 |
+
msgstr "Nadawca powiadomień"
|
|
|
868 |
|
869 |
+
#: ../settings/settings-edit.php:207
|
870 |
+
msgid ""
|
871 |
+
"Choose a FROM name and FROM email address for all notifications emails from "
|
872 |
+
"this plugin."
|
873 |
+
msgstr ""
|
874 |
+
"Wybierz nazwy i adresy FROM dla wszystkich mailowych powiadomień z tej "
|
875 |
+
"wtyczki."
|
876 |
|
877 |
+
#: ../settings/settings-edit.php:217
|
878 |
+
msgid "Mail type"
|
879 |
+
msgstr "Typ maila"
|
880 |
|
881 |
+
#: ../settings/settings-edit.php:218
|
882 |
+
msgid ""
|
883 |
+
"Option 1 & 2 is to send mails with default Wordpress method wp_mail(). "
|
884 |
+
"Option 3 & 4 is to send mails with PHP method mail()"
|
885 |
+
msgstr ""
|
886 |
+
"Warianty 1 i 2 wysyłają maile domyślną metodą: wp_mail Wordpress (). "
|
887 |
+
"Warianty 3 i 4 wysyłają maile z metodą PHP ()"
|
888 |
|
889 |
+
#: ../settings/settings-edit.php:222
|
890 |
+
msgid "1. WP HTML MAIL"
|
891 |
+
msgstr "1. WP HTML MAIL"
|
892 |
|
893 |
+
#: ../settings/settings-edit.php:223
|
894 |
+
msgid "2. WP PLAINTEXT MAIL"
|
895 |
+
msgstr "2. WP PLAINTEXT MAIL"
|
896 |
|
897 |
+
#: ../settings/settings-edit.php:224
|
898 |
+
msgid "3. PHP HTML MAIL"
|
899 |
+
msgstr "3. PHP HTML MAIL"
|
900 |
|
901 |
+
#: ../settings/settings-edit.php:225
|
902 |
+
msgid "4. PHP PLAINTEXT MAIL"
|
903 |
+
msgstr "4. PHP PLAINTEXT MAIL"
|
|
|
904 |
|
905 |
+
#: ../settings/settings-edit.php:232
|
906 |
+
msgid "Opt-in option"
|
907 |
+
msgstr "Opcja Opt-in"
|
|
|
908 |
|
909 |
+
#: ../settings/settings-edit.php:233
|
910 |
+
msgid ""
|
911 |
+
"Double Opt In, means subscribers need to confirm their email address by an "
|
912 |
+
"activation link sent them on a activation email message. Single Opt In, "
|
913 |
+
"means subscribers do not need to confirm their email address."
|
914 |
+
msgstr ""
|
915 |
+
"Podwójne Opt-In oznacza, że abonenci muszą potwierdzić swój adres e-mail "
|
916 |
+
"linkiem aktywacyjnym wysłanym e-mailem. Pojedyncze Opt-In oznacza, że "
|
917 |
+
"abonenci nie muszą potwierdzać swojego adresu e-mail."
|
918 |
|
919 |
+
#: ../settings/settings-edit.php:237
|
920 |
+
msgid "Double Opt In"
|
921 |
+
msgstr "Podwójne Opt-In"
|
|
|
922 |
|
923 |
+
#: ../settings/settings-edit.php:238 ../subscribers/view-subscriber-import.php:179
|
924 |
+
#: ../subscribers/view-subscriber-show.php:288 ../subscribers/view-subscriber-
|
925 |
+
#: add.php:152 ../subscribers/view-subscriber-edit.php:151
|
926 |
+
msgid "Single Opt In"
|
927 |
+
msgstr "Pojedyncze Ot-In"
|
928 |
|
929 |
+
#: ../settings/settings-edit.php:244
|
930 |
+
msgid "Image Size"
|
931 |
+
msgstr "Rozmiar obrazu"
|
|
|
932 |
|
933 |
+
#: ../settings/settings-edit.php:245
|
934 |
+
msgid "Select image size for ###POSTIMAGE### to be shown in post notification email"
|
935 |
+
msgstr "Wybierz rozmiar obrazu do ### POSTIMAGE ### pokazany w mailu powiadomienia"
|
|
|
936 |
|
937 |
+
#: ../settings/settings-edit.php:249
|
938 |
+
msgid "Full Size"
|
939 |
+
msgstr "Pełny rozmiar"
|
|
|
|
|
|
|
|
|
|
|
940 |
|
941 |
+
#: ../settings/settings-edit.php:250
|
942 |
+
msgid "Medium Size"
|
943 |
+
msgstr "Średni rozmiar"
|
|
|
944 |
|
945 |
+
#: ../settings/settings-edit.php:251
|
946 |
+
msgid "Thumbnail"
|
947 |
+
msgstr "Miniatura"
|
|
|
948 |
|
949 |
+
#: ../settings/settings-edit.php:257
|
950 |
+
msgid "Opt-in mail subject (Confirmation mail)"
|
951 |
+
msgstr "Opt-in temat maila (Mail potwierdzający)"
|
|
|
952 |
|
953 |
+
#: ../settings/settings-edit.php:258
|
|
|
954 |
msgid ""
|
955 |
+
"Enter the subject for Double Opt In mail. This will send whenever subscriber "
|
956 |
+
"added email into our database."
|
957 |
msgstr ""
|
958 |
+
"Wprowadź temat maila do powtórnego Opt-In. Spowoduje to wysłanie e-maila, "
|
959 |
+
"gdy abonent zostanie dodany do naszej bazy danych."
|
960 |
|
961 |
+
#: ../settings/settings-edit.php:264
|
962 |
+
msgid "Opt-in mail content (Confirmation mail)"
|
963 |
+
msgstr "Opt-in treść maila (mail potwierdzający)"
|
|
|
964 |
|
965 |
+
#: ../settings/settings-edit.php:265
|
966 |
+
msgid ""
|
967 |
+
"Enter the content for Double Opt In mail. This will send whenever subscriber "
|
968 |
+
"added email into our database."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
969 |
msgstr ""
|
970 |
+
"Wprowadź treść dla maila powtórnego Opt-in. Będzie on wysyłany zawsze gdy "
|
971 |
+
"subskrybent doda swój adres do naszej bazy."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
972 |
|
973 |
+
#: ../settings/settings-edit.php:271
|
974 |
+
msgid "Opt-in link (Confirmation link)"
|
975 |
+
msgstr "Link Opt-in (link do potwierdzenia)"
|
|
|
976 |
|
977 |
+
#: ../settings/settings-edit.php:272
|
978 |
+
msgid "Double Opt In confirmation link. You no need to change this value."
|
979 |
+
msgstr "Link potwierdzenia podwójnego Opt-in. Nie możesz zmienić jego treści."
|
|
|
980 |
|
981 |
+
#: ../settings/settings-edit.php:278
|
982 |
+
msgid "Text to display after email subscribed successfully"
|
983 |
+
msgstr "Tekst wyświetlany po pomyślnym zakończeniu procesu subskrypcji."
|
|
|
984 |
|
985 |
+
#: ../settings/settings-edit.php:279
|
|
|
986 |
msgid ""
|
987 |
+
"This text will display once user clicked email confirmation link from opt-in "
|
988 |
+
"(confirmation) email content."
|
|
|
|
|
989 |
msgstr ""
|
990 |
+
"Ten tekst będzie wyświetlany gdy użytkownik kliknął link potwierdzający e-"
|
991 |
+
"mail z opt-in (potwierdzenie)."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
992 |
|
993 |
+
#: ../settings/settings-edit.php:286
|
994 |
+
msgid "Subscriber welcome email"
|
995 |
+
msgstr "Mail powitalny."
|
|
|
996 |
|
997 |
+
#: ../settings/settings-edit.php:287
|
998 |
+
msgid "To send welcome mail to subscriber, This option must be set to YES."
|
999 |
+
msgstr ""
|
1000 |
+
"Wysłać mail powitalny do subskrybenta. Ta opcja musi być ustawiona na Tak "
|
1001 |
+
"(Yes)"
|
1002 |
|
1003 |
+
#: ../settings/settings-edit.php:291 ../settings/settings-edit.php:319 ..
|
1004 |
+
#: subscribers/view-subscriber-sync.php:108
|
1005 |
+
msgid "YES"
|
1006 |
+
msgstr "Tak"
|
1007 |
|
1008 |
+
#: ../settings/settings-edit.php:292 ../settings/settings-edit.php:320 ..
|
1009 |
+
#: subscribers/view-subscriber-sync.php:107
|
1010 |
+
msgid "NO"
|
1011 |
+
msgstr "Nie"
|
1012 |
|
1013 |
+
#: ../settings/settings-edit.php:298
|
1014 |
+
msgid "Welcome mail subject"
|
1015 |
+
msgstr "Temat maila powitalnego"
|
|
|
1016 |
|
1017 |
+
#: ../settings/settings-edit.php:299
|
|
|
1018 |
msgid ""
|
1019 |
+
"Enter the subject for subscriber welcome mail. This will send whenever email "
|
1020 |
+
"subscribed (confirmed) successfully."
|
|
|
|
|
1021 |
msgstr ""
|
1022 |
+
"Wprowadź temat powitalnego maila do subskrybenta. Będzie o wysłany, gdy "
|
1023 |
+
"subskrypcja przebiegnie pomyślnie."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1024 |
|
1025 |
+
#: ../settings/settings-edit.php:305
|
1026 |
+
msgid "Subscriber welcome mail content"
|
1027 |
+
msgstr "Treść maila powitalnego."
|
1028 |
|
1029 |
+
#: ../settings/settings-edit.php:306
|
1030 |
+
msgid ""
|
1031 |
+
"Enter the content for subscriber welcome mail. This will send whenever email "
|
1032 |
+
"subscribed (confirmed) successfully. (Keyword: ###NAME###)"
|
1033 |
+
msgstr ""
|
1034 |
+
"Wprowadź treść powitalnego maila do subskrybenta. Będzie o wysłany, gdy "
|
1035 |
+
"subskrypcja przebiegnie pomyślnie.(Klucz: ###NAME###)"
|
1036 |
|
1037 |
+
#: ../settings/settings-edit.php:314
|
1038 |
+
msgid "Mail to admin"
|
1039 |
+
msgstr "Mail do Admina"
|
1040 |
|
1041 |
+
#: ../settings/settings-edit.php:315
|
1042 |
+
msgid ""
|
1043 |
+
"To send admin notifications for new subscriber, This option must be set to "
|
1044 |
+
"YES."
|
1045 |
+
msgstr ""
|
1046 |
+
"Aby wysłać powiadomienia administratora dla nowego abonenta, ta opcja musi "
|
1047 |
+
"być ustawiony na TAK."
|
1048 |
|
1049 |
+
#: ../settings/settings-edit.php:326
|
1050 |
+
msgid "Admin email addresses"
|
1051 |
+
msgstr "Adres e-mail Admina"
|
1052 |
|
1053 |
+
#: ../settings/settings-edit.php:327
|
1054 |
+
msgid ""
|
1055 |
+
"Enter the admin email addresses that should receive notifications (separate "
|
1056 |
+
"by comma)."
|
1057 |
+
msgstr ""
|
1058 |
+
"Wpisz, oddzielone przecinkiem, adresy e-mail administratora(-ów), który(-"
|
1059 |
+
"rzy) powinni otrzymać powiadomienia."
|
1060 |
|
1061 |
+
#: ../settings/settings-edit.php:333
|
1062 |
+
msgid "Admin mail subject"
|
1063 |
+
msgstr "Temat maila Admina"
|
1064 |
|
1065 |
+
#: ../settings/settings-edit.php:334
|
1066 |
+
msgid ""
|
1067 |
+
"Enter the subject for admin mail. This will send whenever new email added "
|
1068 |
+
"and confirmed into our database."
|
1069 |
+
msgstr ""
|
1070 |
+
"Wpisz temat maila do administratora. Będzie on wysyłany gdy nowy adres, po "
|
1071 |
+
"potwierdzeniu, zostanie dodany do naszej bazy danych."
|
1072 |
|
1073 |
+
#: ../settings/settings-edit.php:340
|
1074 |
+
msgid "Admin mail content"
|
1075 |
+
msgstr "Treść maila do Admina"
|
1076 |
|
1077 |
+
#: ../settings/settings-edit.php:341
|
1078 |
+
msgid ""
|
1079 |
+
"Enter the mail content for admin. This will send whenever new email added "
|
1080 |
+
"and confirmed into our database. (Keyword: ###NAME###, ###EMAIL###)"
|
1081 |
+
msgstr ""
|
1082 |
+
"Wprowadź treść maila do administratora. Będzie on wysyłany gdy nowy adres, "
|
1083 |
+
"po potwierdzeniu, zostanie dodany do naszej bazy danych. (Klucze: "
|
1084 |
+
"###NAME###, ###EMAIL###)"
|
1085 |
|
1086 |
+
#: ../settings/settings-edit.php:348
|
1087 |
+
msgid "Unsubscribe link"
|
1088 |
+
msgstr "Link do rezygnacji z subskrypcji."
|
1089 |
|
1090 |
+
#: ../settings/settings-edit.php:349
|
1091 |
+
msgid "Unsubscribe link. You no need to change this value."
|
1092 |
+
msgstr "Link do rezygnacji z subskrypcji. Nie możesz zmienić jego treści."
|
1093 |
|
1094 |
+
#: ../settings/settings-edit.php:355
|
1095 |
+
msgid "Unsubscribe text in mail"
|
1096 |
+
msgstr "Tekst maila rezygnacji z subskrypcji."
|
1097 |
|
1098 |
+
#: ../settings/settings-edit.php:356
|
1099 |
+
msgid ""
|
1100 |
+
"Enter the text for unsubscribe link. This text is to add unsubscribe link "
|
1101 |
+
"with newsletter. (Keyword: ###LINK###)"
|
1102 |
+
msgstr ""
|
1103 |
+
"Wprowadź tekst do linku rezygnacji z subskrypcji. Będzie on dodawany do "
|
1104 |
+
"tekstu informującego o nowościach (Klucz: ###LINK###)"
|
1105 |
|
1106 |
+
#: ../settings/settings-edit.php:362
|
1107 |
+
msgid "Text to display after email unsubscribed"
|
1108 |
+
msgstr "Tekst wyświetlany po rezygnacji z subskrypcji."
|
1109 |
|
1110 |
+
#: ../settings/settings-edit.php:363
|
|
|
1111 |
msgid ""
|
1112 |
+
"This text will display once user clicked unsubscribed link from our "
|
1113 |
+
"newsletter."
|
1114 |
msgstr ""
|
1115 |
+
"Ten tekst będzie wyświetlany gdy użytkownik kliknie link rezygnacji z "
|
1116 |
+
"subskrypcji dołączony do naszego maila z nowinami."
|
1117 |
|
1118 |
+
#: ../settings/settings-edit.php:370
|
1119 |
+
msgid "Message 1"
|
1120 |
+
msgstr "Wiadomość 1"
|
1121 |
|
1122 |
+
#: ../settings/settings-edit.php:371
|
1123 |
+
msgid "Default message to display if any issue on confirmation link."
|
1124 |
+
msgstr ""
|
1125 |
+
"Domyślna wiadomość wyświetlana, w przypadku problemu z linkiem "
|
1126 |
+
"potwierdzającym subskrypcję."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1127 |
|
1128 |
+
#: ../settings/settings-edit.php:377
|
1129 |
+
msgid "Message 2"
|
1130 |
+
msgstr "Wiadomość 2"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1131 |
|
1132 |
+
#: ../settings/settings-edit.php:378
|
1133 |
+
msgid "Default message to display if any issue on unsubscribe link."
|
1134 |
+
msgstr ""
|
1135 |
+
"Domyślna wiadomość wyświetlana, w przypadku problemu z linkiem rezygnującym "
|
1136 |
+
"z subskrypcji."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1137 |
|
1138 |
+
#: ../settings/settings-edit.php:385
|
1139 |
+
msgid "Sent report subject"
|
1140 |
+
msgstr "Temat raportu wysyłek."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1141 |
|
1142 |
+
#: ../settings/settings-edit.php:386
|
1143 |
+
msgid "Mail subject for sent mail report."
|
1144 |
+
msgstr "Temat maila dla raportu wysłanych maili."
|
|
|
1145 |
|
1146 |
+
#: ../settings/settings-edit.php:392
|
1147 |
+
msgid "Sent report content"
|
1148 |
+
msgstr "Treść raportu wysłanych maili."
|
1149 |
|
1150 |
+
#: ../settings/settings-edit.php:393
|
1151 |
+
msgid ""
|
1152 |
+
"Mail content for sent mail report. (Keyword: ###COUNT###, ###UNIQUE###, "
|
1153 |
+
"###STARTTIME###, ###ENDTIME###)"
|
1154 |
+
msgstr ""
|
1155 |
+
"Tekst maila raportu wysłanych maili. (Klucze: ###COUNT###, ###UNIQUE###, "
|
1156 |
+
"###STARTTIME###, ###ENDTIME###)"
|
1157 |
|
1158 |
+
#: ../settings/settings-edit.php:403
|
1159 |
+
msgid "Save Settings"
|
1160 |
+
msgstr "Zapisz ustawienia"
|
1161 |
|
1162 |
+
#: ../settings/setting-sync.php:15
|
1163 |
+
msgid "Table sync completed successfully."
|
1164 |
+
msgstr "Synchronizacja tabeli zakończona pomyślnie."
|
|
|
|
|
1165 |
|
1166 |
+
#: ../settings/setting-sync.php:28
|
1167 |
+
msgid "Sync plugin tables"
|
1168 |
+
msgstr "Synchronizacja tabeli wtyczek"
|
|
|
1169 |
|
1170 |
+
#: ../settings/setting-sync.php:32
|
1171 |
+
msgid "Click to sync tables"
|
1172 |
+
msgstr "Kliknij by synchronizować tabele"
|
1173 |
|
1174 |
+
#: ../sentmail/sentmail-preview.php:28 ../compose/compose-preview.php:28
|
1175 |
+
msgid "Preview Mail"
|
1176 |
+
msgstr "Podgląd poczty"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1177 |
|
1178 |
+
#: ../sentmail/sentmail-preview.php:43
|
1179 |
+
msgid "Back"
|
1180 |
+
msgstr "Cofnij"
|
1181 |
|
1182 |
+
#: ../sentmail/sentmail-show.php:42
|
1183 |
+
msgid "Successfully deleted all reports except latest 10."
|
1184 |
+
msgstr "Pomyślnie usunięto wszystkie raporty z wyjątkiem ostatnich 10."
|
1185 |
|
1186 |
+
#: ../sentmail/sentmail-show.php:85 ../sentmail/deliverreport-show.php:49
|
1187 |
+
msgid " << "
|
1188 |
+
msgstr " << "
|
1189 |
|
1190 |
+
#: ../sentmail/sentmail-show.php:86 ../sentmail/deliverreport-show.php:50
|
1191 |
+
msgid " >> "
|
1192 |
+
msgstr " >> "
|
|
|
1193 |
|
1194 |
+
#: ../sentmail/sentmail-show.php:97 ../classes/es-register.php:163 ../classes/es-
|
1195 |
+
#: register.php:164
|
1196 |
+
msgid "Sent Mails"
|
1197 |
+
msgstr "Maile wysłane"
|
1198 |
|
1199 |
+
#: ../sentmail/sentmail-show.php:108 ../sentmail/sentmail-show.php:121
|
1200 |
+
msgid "View Reports"
|
1201 |
+
msgstr "Pokaż raporty"
|
1202 |
|
1203 |
+
#: ../sentmail/sentmail-show.php:109 ../sentmail/sentmail-show.php:122 ..
|
1204 |
+
#: compose/compose-show.php:107
|
1205 |
+
msgid "Preview"
|
1206 |
+
msgstr "Podgląd"
|
1207 |
|
1208 |
+
#: ../sentmail/sentmail-show.php:110 ../sentmail/sentmail-show.php:123
|
1209 |
+
msgid "Source"
|
1210 |
+
msgstr "Żródło"
|
1211 |
|
1212 |
+
#: ../sentmail/sentmail-show.php:111 ../sentmail/sentmail-show.php:124 ..
|
1213 |
+
#: sentmail/deliverreport-show.php:75 ../sentmail/deliverreport-show.php:87
|
1214 |
+
#: subscribers/view-subscriber-show.php:313 ../subscribers/view-subscriber-show.
|
1215 |
+
#: php:327 ../compose/compose-edit.php:109 ../compose/compose-add.php:98
|
1216 |
+
#: compose/compose-show.php:79 ../compose/compose-show.php:87
|
1217 |
+
msgid "Status"
|
1218 |
+
msgstr "Status"
|
1219 |
|
1220 |
+
#: ../sentmail/sentmail-show.php:112 ../sentmail/sentmail-show.php:125 ..
|
1221 |
+
#: sentmail/deliverreport-show.php:76 ../sentmail/deliverreport-show.php:88
|
1222 |
+
#: compose/compose-show.php:80 ../compose/compose-show.php:88
|
1223 |
+
msgid "Type"
|
1224 |
+
msgstr "Typ"
|
1225 |
|
1226 |
+
#: ../sentmail/sentmail-show.php:113 ../sentmail/sentmail-show.php:126
|
1227 |
+
msgid "Start Date"
|
1228 |
+
msgstr "Data rozpoczęcia"
|
|
|
|
|
1229 |
|
1230 |
+
#: ../sentmail/sentmail-show.php:114 ../sentmail/sentmail-show.php:127
|
1231 |
+
msgid "End Date"
|
1232 |
+
msgstr "Data zakończenia"
|
1233 |
|
1234 |
+
#: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128
|
1235 |
+
msgid "Total"
|
1236 |
+
msgstr "Całkowity"
|
1237 |
|
1238 |
+
#: ../sentmail/sentmail-show.php:116 ../sentmail/sentmail-show.php:129 ..
|
1239 |
+
#: subscribers/view-subscriber-show.php:316 ../subscribers/view-subscriber-show.
|
1240 |
+
#: php:330 ../subscribers/view-subscriber-export.php:41 ../subscribers/view-
|
1241 |
+
#: subscriber-export.php:49
|
1242 |
+
msgid "Action"
|
1243 |
+
msgstr "Akcja"
|
1244 |
|
1245 |
+
#: ../sentmail/deliverreport-show.php:13
|
1246 |
+
msgid "Oops.. Unexpected error occurred. Please try again."
|
1247 |
+
msgstr "Ups… Pojawił się nieoczekiwany błąd. Proszę spróbuj ponownie."
|
|
|
|
|
1248 |
|
1249 |
+
#: ../sentmail/deliverreport-show.php:61
|
1250 |
+
msgid "Delivery Report"
|
1251 |
+
msgstr "Raport dostarczenia"
|
1252 |
|
1253 |
+
#: ../sentmail/deliverreport-show.php:72 ../sentmail/deliverreport-show.php:84 ..
|
1254 |
+
#: subscribers/view-subscriber-show.php:310 ../subscribers/view-subscriber-show.
|
1255 |
+
#: php:324 ../subscribers/view-subscriber-export.php:38 ../subscribers/view-
|
1256 |
+
#: subscriber-export.php:46
|
1257 |
+
msgid "Sno"
|
1258 |
+
msgstr "Sno"
|
1259 |
|
1260 |
+
#: ../sentmail/deliverreport-show.php:73 ../sentmail/deliverreport-show.php:85
|
1261 |
+
msgid "Email"
|
1262 |
+
msgstr "Mail"
|
1263 |
|
1264 |
+
#: ../sentmail/deliverreport-show.php:74 ../sentmail/deliverreport-show.php:86
|
1265 |
+
msgid "Sent Date"
|
1266 |
+
msgstr "Data wysyłki"
|
1267 |
|
1268 |
+
#: ../sentmail/deliverreport-show.php:77 ../sentmail/deliverreport-show.php:89
|
1269 |
+
msgid "Viewed Status"
|
1270 |
+
msgstr "Status przeglądania"
|
1271 |
|
1272 |
+
#: ../sentmail/deliverreport-show.php:78 ../sentmail/deliverreport-show.php:90
|
1273 |
+
msgid "Viewed Date"
|
1274 |
+
msgstr "Data przegladania"
|
|
|
|
|
|
|
1275 |
|
1276 |
+
#: ../sentmail/deliverreport-show.php:79 ../sentmail/deliverreport-show.php:91
|
1277 |
+
msgid "Database ID"
|
1278 |
+
msgstr "ID bazy danych"
|
1279 |
|
1280 |
+
#: ../subscribers/view-subscriber-import.php:96 ../subscribers/view-subscriber-
|
1281 |
+
#: import.php:125
|
1282 |
+
msgid "Click here"
|
1283 |
+
msgstr "Kliknij tutaj"
|
1284 |
|
1285 |
+
#: ../subscribers/view-subscriber-import.php:176 ../subscribers/view-subscriber-
|
1286 |
+
#: show.php:285 ../subscribers/view-subscriber-add.php:149 ../subscribers/view-
|
1287 |
+
#: subscriber-edit.php:148
|
1288 |
msgid "Confirmed"
|
1289 |
msgstr "Potwierdzone"
|
1290 |
|
1291 |
+
#: ../subscribers/view-subscriber-import.php:177 ../subscribers/view-subscriber-
|
1292 |
+
#: show.php:286 ../subscribers/view-subscriber-add.php:150 ../subscribers/view-
|
1293 |
+
#: subscriber-edit.php:149
|
1294 |
msgid "Unconfirmed"
|
1295 |
msgstr "Niepotwierdzone"
|
1296 |
|
1297 |
+
#: ../subscribers/view-subscriber-import.php:178 ../subscribers/view-subscriber-
|
1298 |
+
#: show.php:287 ../subscribers/view-subscriber-add.php:151 ../subscribers/view-
|
1299 |
+
#: subscriber-edit.php:150
|
1300 |
msgid "Unsubscribed"
|
1301 |
msgstr "Niesubskrybowane"
|
1302 |
|
1303 |
+
#: ../subscribers/view-subscriber-show.php:16 ../compose/compose-show.php:13 ..
|
1304 |
+
#: sendmail/sendmail.php:17
|
1305 |
+
msgid "Click Here"
|
1306 |
+
msgstr "Kliknij Tutaj"
|
1307 |
|
1308 |
+
#: ../subscribers/view-subscriber-show.php:74
|
1309 |
+
msgid "Confirmation email resent successfully."
|
1310 |
+
msgstr "E-mail potwierdzający wysłany pomyślnie."
|
|
|
1311 |
|
1312 |
+
#: ../subscribers/view-subscriber-show.php:99 ../subscribers/view-subscriber-show.
|
1313 |
+
#: php:138 ../subscribers/view-subscriber-show.php:176
|
1314 |
+
msgid "Oops, No record was selected."
|
1315 |
+
msgstr "Ups… nic nie zostało zaznaczone."
|
|
|
1316 |
|
1317 |
+
#: ../subscribers/view-subscriber-show.php:167
|
1318 |
+
msgid "Oops, New group name was not selected."
|
1319 |
+
msgstr "Ups… Nowa nazwa grupy nie została zaznaczona."
|
|
|
1320 |
|
1321 |
+
#: ../subscribers/view-subscriber-show.php:207
|
1322 |
+
msgid "View Subscribers"
|
1323 |
+
msgstr "Pokaż Subskrybentów"
|
|
|
|
|
1324 |
|
1325 |
+
#: ../subscribers/view-subscriber-show.php:243
|
1326 |
msgid "Bulk Actions"
|
1327 |
msgstr "Działania masowe"
|
1328 |
|
1329 |
+
#: ../subscribers/view-subscriber-show.php:245 ../subscribers/view-subscriber-
|
1330 |
+
#: show.php:370
|
1331 |
+
msgid "Resend Confirmation"
|
1332 |
+
msgstr "Wyślij ponownie potwierdzenie"
|
1333 |
|
1334 |
+
#: ../subscribers/view-subscriber-show.php:249
|
1335 |
msgid "Select Group"
|
1336 |
msgstr "Zaznacz grupę"
|
1337 |
|
1338 |
+
#: ../subscribers/view-subscriber-show.php:263
|
1339 |
msgid "Apply"
|
1340 |
msgstr "Zastosuj"
|
1341 |
|
1342 |
+
#: ../subscribers/view-subscriber-show.php:267
|
1343 |
+
msgid "All Groups"
|
1344 |
+
msgstr "Wszystkie grupy"
|
1345 |
|
1346 |
+
#: ../subscribers/view-subscriber-show.php:284
|
1347 |
+
msgid "All Status"
|
1348 |
+
msgstr "Wszystkie statusy"
|
1349 |
|
1350 |
+
#: ../subscribers/view-subscriber-show.php:312 ../subscribers/view-subscriber-
|
1351 |
+
#: show.php:326 ../classes/es-register.php:494 ../classes/es-loadwidget.php:24
|
1352 |
+
msgid "Name"
|
1353 |
+
msgstr "Nazwa"
|
|
|
|
|
|
|
|
|
1354 |
|
1355 |
+
#: ../subscribers/view-subscriber-show.php:314 ../subscribers/view-subscriber-
|
1356 |
+
#: show.php:328
|
1357 |
+
msgid "Group"
|
1358 |
+
msgstr "Grupa"
|
1359 |
|
1360 |
+
#: ../subscribers/view-subscriber-add.php:35 ../subscribers/view-subscriber-edit.
|
1361 |
+
#: php:53
|
1362 |
+
msgid "Please enter subscriber email address."
|
1363 |
+
msgstr "Proszę podać adres e-mail subskrybenta."
|
1364 |
|
1365 |
+
#: ../subscribers/view-subscriber-add.php:48
|
1366 |
+
msgid "Please select or create your group for this email."
|
1367 |
+
msgstr "Proszę wybrać lub stworzyć grupę dla tej wiadomości."
|
|
|
1368 |
|
1369 |
+
#: ../subscribers/view-subscriber-add.php:55
|
1370 |
+
msgid ""
|
1371 |
+
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1372 |
+
"the group name."
|
1373 |
+
msgstr ""
|
1374 |
+
"Błąd: W nazwie grupy nie wolno używać znaków specjalnych: (['^$%&*()}{@#~?"
|
1375 |
+
"><>,|=_+\\\"])."
|
1376 |
|
1377 |
+
#: ../subscribers/view-subscriber-edit.php:63
|
1378 |
+
msgid "Error: Special characters are not allowed in the group name."
|
1379 |
+
msgstr "Błąd: W nazwie grupy nie wolno używać znaków specjalnych."
|
1380 |
|
1381 |
+
#: ../subscribers/view-subscriber-sync.php:35
|
1382 |
+
msgid "Please select default group to newly registered user."
|
1383 |
+
msgstr "Proszę wybrać domyślną grupę dla nowo zarejestrowanego użytkownik."
|
|
|
|
|
1384 |
|
1385 |
+
#: ../subscribers/view-subscriber-sync.php:90
|
1386 |
+
msgid "Sync Email"
|
1387 |
+
msgstr "Synchronizuj e-mail"
|
|
|
1388 |
|
1389 |
+
#: ../cron/cron-add.php:23
|
1390 |
+
msgid "Please enter valid mail count."
|
1391 |
+
msgstr "Proszę podać poprawną liczbę e-maili."
|
|
|
1392 |
|
1393 |
+
#: ../cron/cron-add.php:33
|
1394 |
+
msgid "Cron details successfully updated."
|
1395 |
+
msgstr "Szczegóły Cron pomyślnie zaktualizowane."
|
|
|
1396 |
|
1397 |
+
#: ../cron/cron-add.php:74
|
1398 |
+
msgid "Cron Details"
|
1399 |
+
msgstr "Szczegóły Cron."
|
|
|
1400 |
|
1401 |
+
#: ../cron/cron-add.php:78
|
1402 |
+
msgid "Cron job URL"
|
1403 |
+
msgstr "URL zadania Cron."
|
1404 |
|
1405 |
+
#: ../cron/cron-add.php:82
|
1406 |
+
msgid "Mail Count"
|
1407 |
+
msgstr "Ilość wiadomości"
|
|
|
|
|
1408 |
|
1409 |
+
#: ../cron/cron-add.php:86
|
1410 |
+
msgid "Admin Report"
|
1411 |
+
msgstr "Raport administratora."
|
|
|
1412 |
|
1413 |
+
#: ../cron/cron-add.php:97
|
1414 |
+
msgid "How to setup auto emails using CRON Job through the cPanel or Plesk?"
|
1415 |
+
msgstr "Jak ustawić auto-maili z wykorzystaniem cron przez cPanel lub Plesk?"
|
1416 |
|
1417 |
+
#: ../cron/cron-add.php:99
|
1418 |
+
msgid ""
|
1419 |
+
"<a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-how-to-schedule-"
|
1420 |
+
"cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
|
1421 |
+
msgstr ""
|
1422 |
+
"<a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-how-to-schedule-"
|
1423 |
+
"cron-emails-in-parallels-plesk/\">Ustaw wyzwalacz CRON w Plesk</a>"
|
1424 |
|
1425 |
+
#: ../cron/cron-add.php:100
|
1426 |
+
msgid ""
|
1427 |
+
"<a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-how-to-schedule-"
|
1428 |
+
"cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
|
1429 |
+
msgstr ""
|
1430 |
+
"<a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-how-to-schedule-"
|
1431 |
+
"cron-emails-in-parallels-plesk/\">Ustaw wyzwalacz CRON w cPanl</a>"
|
1432 |
|
1433 |
+
#: ../cron/cron-add.php:101
|
1434 |
+
msgid ""
|
1435 |
+
"<a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-what-to-do-if-"
|
1436 |
+
"hosting-doesnt-support-cron-jobs/\">Hosting doesnt support cron jobs?</a>"
|
1437 |
+
msgstr ""
|
1438 |
+
"<a target=\"_blank\" href=\"http://www.storeapps.org/docs/es-what-to-do-if-"
|
1439 |
+
"hosting-doesnt-support-cron-jobs/\">Hosting nie umożliwia wyzwalania CRON?</a>"
|
1440 |
|
1441 |
+
#: ../compose/compose-edit.php:47 ../compose/compose-add.php:30
|
1442 |
msgid "Please enter template heading."
|
1443 |
msgstr "Proszę podać nagłówek szablonu."
|
1444 |
|
1445 |
+
#: ../compose/compose-edit.php:85 ../compose/compose-add.php:75 ..
|
1446 |
+
#: compose/compose-show.php:65
|
|
|
|
|
|
|
|
|
1447 |
msgid "Compose Mail"
|
1448 |
msgstr "Skomponuj mail"
|
1449 |
|
1450 |
+
#: ../compose/compose-edit.php:92 ../compose/compose-add.php:81
|
|
|
|
|
|
|
|
|
|
|
1451 |
msgid "Static Template (For Newsletter Email)"
|
1452 |
msgstr "Statyczny szablon (dla biuletynu e-mail)"
|
1453 |
|
1454 |
+
#: ../compose/compose-edit.php:93 ../compose/compose-add.php:82
|
1455 |
msgid "Dynamic Template (For Notification Email)"
|
1456 |
msgstr "Dynamiczny szablon (dla biuletynu e-mail)"
|
1457 |
|
1458 |
+
#: ../compose/compose-edit.php:97 ../compose/compose-add.php:86
|
|
|
|
|
|
|
|
|
1459 |
msgid "Enter Mail Subject"
|
1460 |
msgstr "Wprowadź temat maila"
|
1461 |
|
1462 |
+
#: ../compose/compose-edit.php:111 ../compose/compose-add.php:100
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1463 |
msgid "Published"
|
1464 |
msgstr "Opublikowane"
|
1465 |
|
1466 |
+
#: ../compose/compose-edit.php:113 ../compose/compose-add.php:102
|
1467 |
msgid "Please select your mail status"
|
1468 |
msgstr "Proszę wybierz status twojego maila."
|
1469 |
|
1470 |
+
#: ../compose/compose-show.php:78 ../compose/compose-show.php:86
|
1471 |
msgid "Email subject"
|
1472 |
msgstr "Temat maila"
|
1473 |
|
1474 |
+
#: ../export/export-email-address.php:32 ../export/export-email-address.php:36 ..
|
1475 |
+
#: export/export-email-address.php:39
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1476 |
msgid "Unexpected url submit has been detected"
|
1477 |
msgstr "Zostało wykryte niespodziewane zgłoszenie URL"
|
1478 |
|
1479 |
+
#: ../job/es-unsubscribe.php:53 ../job/es-unsubscribe.php:60 ../job/es-optin.php:56
|
1480 |
+
#: ../job/es-optin.php:66
|
1481 |
+
msgid ""
|
1482 |
+
"Oops.. We are getting some technical error. Please try again or contact "
|
1483 |
+
"admin."
|
1484 |
+
msgstr ""
|
1485 |
+
"Ups... Pojawił się problem techniczny. Spróbuj raz jeszcze lub skontaktuj "
|
1486 |
+
"się z administratorem."
|
1487 |
|
1488 |
+
#: ../job/es-optin.php:59
|
1489 |
+
msgid "This email address has already been confirmed."
|
1490 |
+
msgstr "Ten adres jest już potwierdzony."
|
1491 |
|
1492 |
+
#: ../help/help.php:46
|
1493 |
+
msgid "Welcome to Email Subscribers!"
|
1494 |
+
msgstr "Witamy w Email Subscribers!"
|
1495 |
|
1496 |
+
#: ../help/help.php:47
|
1497 |
+
msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
|
1498 |
+
msgstr ""
|
1499 |
+
"Dziękujemy za zainstalowanie i mamy nadzieję, że będziesz zadowolony z "
|
1500 |
+
"używania Email Subscribers."
|
1501 |
+
|
1502 |
+
#: ../help/help.php:51
|
1503 |
+
msgid "For more help and tips..."
|
1504 |
+
msgstr "Aby uzyskać więcej pomocy i wskazówek…"
|
1505 |
+
|
1506 |
+
#: ../help/help.php:95
|
1507 |
+
msgid "Frequently Asked Questions"
|
1508 |
+
msgstr "Często zadawane pytania (FAQ)"
|
1509 |
|
1510 |
+
#: ../help/help.php:141
|
1511 |
msgid ""
|
1512 |
+
"How to Configure and Send notification emails to subscribers when new posts "
|
1513 |
+
"are published?"
|
1514 |
msgstr ""
|
1515 |
+
"Jak skonfigurować i wysyłać powiadomienia do subskrybentów maile gdy "
|
1516 |
+
"publikowane są nowe wpisy?"
|
1517 |
|
1518 |
+
#: ../help/help.php:147
|
1519 |
+
msgid "How to check Sent mails?"
|
1520 |
+
msgstr "Jak sprawdzić wysłane maile?"
|
1521 |
|
1522 |
+
#: ../help/help.php:150
|
1523 |
+
msgid "How to Add/Update Existing Subscribers Group?"
|
1524 |
+
msgstr "Jak dodać/uaktualnić istniejącą grupę subskrybentów?"
|
1525 |
+
|
1526 |
+
#: ../help/help.php:156
|
1527 |
+
msgid "How to show subscribe form inside a popup?"
|
1528 |
+
msgstr "Jak pokazać formularz subskrypcji wewnątrz popup?"
|
1529 |
+
|
1530 |
+
#: ../sendmail/sendmail.php:39
|
1531 |
+
msgid "Please select your mail subject."
|
1532 |
+
msgstr "Proszę wybierz temat twojego maila."
|
1533 |
+
|
1534 |
+
#: ../sendmail/sendmail.php:45
|
1535 |
+
msgid "Please select your mail type."
|
1536 |
+
msgstr "Proszę wybierz typ twojego maila."
|
1537 |
+
|
1538 |
+
#: ../sendmail/sendmail.php:68
|
1539 |
+
msgid "Oops.. We are getting some error. mail not sending."
|
1540 |
+
msgstr "Ups… Pojawił się jakiś błąd. Mail nie został wysłany."
|
1541 |
+
|
1542 |
+
#: ../sendmail/sendmail.php:95 ../sendmail/sendmail.php:193 ../sendmail/sendmail.
|
1543 |
+
#: php:195 ../classes/es-register.php:151 ../classes/es-register.php:152
|
1544 |
+
msgid "Send Email"
|
1545 |
+
msgstr "Wyślij mail"
|
1546 |
+
|
1547 |
+
#: ../sendmail/sendmail.php:137
|
1548 |
+
msgid "Send mail immediately"
|
1549 |
+
msgstr "Wyślij mail natychmiast"
|
1550 |
+
|
1551 |
+
#: ../sendmail/sendmail.php:138
|
1552 |
+
msgid "Send mail via cron job"
|
1553 |
+
msgstr "Wyślij mail przez Crona"
|
1554 |
+
|
1555 |
+
#: ../classes/es-common.php:8
|
1556 |
+
msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
|
1557 |
+
msgstr "<span style=\"color:#006600;font-weight:bold;\">Zatwierdzony</span>"
|
1558 |
+
|
1559 |
+
#: ../classes/es-common.php:11
|
1560 |
+
msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
|
1561 |
+
msgstr "<span style=\"color:#FF0000\">Niezatwierdzony</span>"
|
1562 |
+
|
1563 |
+
#: ../classes/es-common.php:14
|
1564 |
+
msgid "<span style=\"color:#999900\">Unsubscribed</span>"
|
1565 |
+
msgstr "<span style=\"color:#999900\">Odsubskrybowany</span>"
|
1566 |
+
|
1567 |
+
#: ../classes/es-common.php:17
|
1568 |
+
msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
|
1569 |
+
msgstr "<span style=\"color:#0000FF\">Pojedynczy Opt-In</span>"
|
1570 |
+
|
1571 |
+
#: ../classes/es-common.php:20
|
1572 |
+
msgid "<span style=\"color:#00CC00;font-weight:bold\">Viewed</span>"
|
1573 |
+
msgstr "<span style=\"color:#00CC00;font-weight:bold\">Przejrzane</span>"
|
1574 |
+
|
1575 |
+
#: ../classes/es-common.php:23
|
1576 |
+
msgid "<span style=\"color:#999900;\">Nodata</span>"
|
1577 |
+
msgstr "<span style=\"color:#999900;\">Brak danych</span>"
|
1578 |
+
|
1579 |
+
#: ../classes/es-common.php:26
|
1580 |
+
msgid "<span style=\"color:#FF0000\">Disable</span>"
|
1581 |
+
msgstr "<span style=\"color:#FF0000\">Wyłacz</span>"
|
1582 |
+
|
1583 |
+
#: ../classes/es-common.php:29
|
1584 |
+
msgid "<span style=\"color:#FF0000\">In Queue</span>"
|
1585 |
+
msgstr "<span style=\"color:#FF0000\">W kolejce</span>"
|
1586 |
+
|
1587 |
+
#: ../classes/es-common.php:32
|
1588 |
+
msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
|
1589 |
+
msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Wyślij</span>"
|
1590 |
+
|
1591 |
+
#: ../classes/es-common.php:35
|
1592 |
+
msgid "<span style=\"color:#ffd700;font-weight:bold;\">Cron Mail</span>"
|
1593 |
+
msgstr "<span style=\"color:#ffd700;font-weight:bold;\">Cron Mail</span>"
|
1594 |
+
|
1595 |
+
#: ../classes/es-common.php:38
|
1596 |
+
msgid "<span style=\"color:#993399;\">Instant Mail</span>"
|
1597 |
+
msgstr "<span style=\"color:#993399;\">Szybki Mail</span>"
|
1598 |
+
|
1599 |
+
#. Name of the plugin
|
1600 |
+
#: ../classes/es-register.php:139 ../classes/es-register.php:140
|
1601 |
+
msgid "Email Subscribers"
|
1602 |
+
msgstr "Email Subscribers"
|
1603 |
+
|
1604 |
+
#: ../classes/es-register.php:142 ../classes/es-register.php:143
|
1605 |
+
msgid "Subscribers"
|
1606 |
+
msgstr "Subskrybujący"
|
1607 |
+
|
1608 |
+
#: ../classes/es-register.php:145 ../classes/es-register.php:146
|
1609 |
+
msgid "Compose"
|
1610 |
+
msgstr "Układ"
|
1611 |
+
|
1612 |
+
#: ../classes/es-register.php:154
|
1613 |
+
msgid "Cron"
|
1614 |
+
msgstr "Cron"
|
1615 |
+
|
1616 |
+
#: ../classes/es-register.php:155
|
1617 |
+
msgid "Cron Mail"
|
1618 |
+
msgstr "Cron Mail"
|
1619 |
+
|
1620 |
+
#: ../classes/es-register.php:160 ../classes/es-register.php:161
|
1621 |
+
msgid "Roles"
|
1622 |
+
msgstr "Uprawnienia"
|
1623 |
+
|
1624 |
+
#: ../classes/es-register.php:166
|
1625 |
+
msgid "Help & Info"
|
1626 |
+
msgstr "Pomoc i Informacje"
|
1627 |
+
|
1628 |
+
#: ../classes/es-register.php:167
|
1629 |
+
msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info"
|
1630 |
+
msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Pomoc i Informacje "
|
1631 |
+
|
1632 |
+
#: ../classes/es-register.php:178
|
1633 |
+
msgctxt "view-subscriber-enhanced-select"
|
1634 |
+
msgid "Please enter subscriber email address."
|
1635 |
+
msgstr "Proszę wprowadź adres e-mail subskrybenta."
|
1636 |
+
|
1637 |
+
#: ../classes/es-register.php:179
|
1638 |
+
msgctxt "view-subscriber-enhanced-select"
|
1639 |
+
msgid "Please select subscriber email status."
|
1640 |
+
msgstr "Proszę wybierz status e-maila subskrybenta."
|
1641 |
|
1642 |
+
#: ../classes/es-register.php:180
|
1643 |
+
msgctxt "view-subscriber-enhanced-select"
|
1644 |
+
msgid "Please select or create group for this subscriber."
|
1645 |
+
msgstr "Proszę wybrać lub utworzyć grupę dla tego subskrybenta."
|
1646 |
|
1647 |
+
#: ../classes/es-register.php:181
|
1648 |
+
msgctxt "view-subscriber-enhanced-select"
|
1649 |
+
msgid "Do you want to delete this record?"
|
1650 |
+
msgstr "Czy chcesz usunąć ten rekord?"
|
|
|
|
|
|
|
1651 |
|
1652 |
+
#: ../classes/es-register.php:182
|
1653 |
+
msgctxt "view-subscriber-enhanced-select"
|
1654 |
+
msgid "Please select the bulk action."
|
1655 |
+
msgstr "Proszę wybierz masowe działanie."
|
1656 |
|
1657 |
+
#: ../classes/es-register.php:183
|
1658 |
+
msgctxt "view-subscriber-enhanced-select"
|
1659 |
+
msgid "Do you want to delete selected record(s)?"
|
1660 |
+
msgstr "Czy chcesz usunąć zaznaczony(-e) rekord(-y)?"
|
|
|
|
|
|
|
1661 |
|
1662 |
+
#: ../classes/es-register.php:184
|
1663 |
+
msgctxt "view-subscriber-enhanced-select"
|
1664 |
+
msgid "Are you sure you want to delete?"
|
1665 |
+
msgstr "Czy na pewno chcesz usunąć?"
|
|
|
|
|
|
|
1666 |
|
1667 |
+
#: ../classes/es-register.php:185
|
1668 |
+
msgctxt "view-subscriber-enhanced-select"
|
1669 |
msgid ""
|
1670 |
+
"Do you want to resend confirmation email? \\nAlso please note, this will "
|
1671 |
+
"update subscriber current status to 'Unconfirmed'."
|
1672 |
msgstr ""
|
1673 |
+
"Czy chcesz, aby ponownie wysłać e-mail potwierdzający? \\nZaktualizuje to "
|
1674 |
+
"aktualny status subskrybenta na \"Niepotwierdzone\"."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1675 |
|
1676 |
+
#: ../classes/es-register.php:186
|
1677 |
+
msgctxt "view-subscriber-enhanced-select"
|
1678 |
+
msgid "Please select new subscriber group."
|
1679 |
+
msgstr "Proszę wybrać nową grupę subskrybenta."
|
1680 |
|
1681 |
+
#: ../classes/es-register.php:187
|
1682 |
+
msgctxt "view-subscriber-enhanced-select"
|
1683 |
+
msgid "Do you want to update subscribers group?"
|
1684 |
+
msgstr "Czy chcesz zaktualizować grupę subskrybentów?"
|
1685 |
|
1686 |
+
#: ../classes/es-register.php:188
|
1687 |
+
msgctxt "view-subscriber-enhanced-select"
|
1688 |
+
msgid "Do you want to export the emails?"
|
1689 |
+
msgstr "Czy chcesz wyeksportować wiadomości e-mail?"
|
1690 |
|
1691 |
+
#: ../classes/es-register.php:189
|
1692 |
+
msgctxt "view-subscriber-enhanced-select"
|
1693 |
msgid ""
|
1694 |
+
"Please select only csv file. Please check official website for csv structure."
|
1695 |
+
"."
|
1696 |
msgstr ""
|
1697 |
+
"Proszę wybrać tylko plik CSV. Proszę sprawdzić strukturę pliku CSV na "
|
1698 |
+
"oficjalnej stronie."
|
1699 |
|
1700 |
+
#: ../classes/es-register.php:197
|
1701 |
+
msgctxt "compose-enhanced-select"
|
1702 |
+
msgid "Please enter name for configuration."
|
1703 |
+
msgstr "Proszę podać nazwę dla konfiguracji."
|
1704 |
|
1705 |
+
#: ../classes/es-register.php:198
|
1706 |
+
msgctxt "compose-enhanced-select"
|
1707 |
+
msgid "Please select template for this configuration."
|
1708 |
+
msgstr "Proszę wybrać szablon dla tej konfiguracji."
|
1709 |
|
1710 |
+
#: ../classes/es-register.php:199
|
1711 |
+
msgctxt "compose-enhanced-select"
|
1712 |
+
msgid "Do you want to delete this record?"
|
1713 |
+
msgstr "Czy chcesz usunąć ten rekord?"
|
1714 |
|
1715 |
+
#: ../classes/es-register.php:207
|
1716 |
+
msgctxt "notification-enhanced-select"
|
1717 |
+
msgid "Please select subscribers group."
|
1718 |
+
msgstr "Proszę wybrać grupę subskrybentów."
|
|
|
1719 |
|
1720 |
+
#: ../classes/es-register.php:208
|
1721 |
+
msgctxt "notification-enhanced-select"
|
1722 |
+
msgid "Please select notification mail subject. Use compose menu to create new."
|
1723 |
+
msgstr "Wybierz powiadomienia e-mail. Użyj menu tworzenia, aby stworzyć nowe."
|
|
|
1724 |
|
1725 |
+
#: ../classes/es-register.php:209
|
1726 |
+
msgctxt "notification-enhanced-select"
|
1727 |
+
msgid "Please select notification status."
|
1728 |
+
msgstr "Proszę wybierz stan powiadomienia."
|
|
|
1729 |
|
1730 |
+
#: ../classes/es-register.php:210
|
1731 |
+
msgctxt "notification-enhanced-select"
|
1732 |
+
msgid "Do you want to delete this record?"
|
1733 |
+
msgstr "Czy chcesz usunąć ten rekord?"
|
|
|
|
|
|
|
1734 |
|
1735 |
+
#: ../classes/es-register.php:218
|
1736 |
+
msgctxt "sendmail-enhanced-select"
|
1737 |
+
msgid "Please select your mail subject."
|
1738 |
+
msgstr "Proszę wybierz temat twojego maila."
|
1739 |
|
1740 |
+
#: ../classes/es-register.php:220
|
1741 |
+
msgctxt "sendmail-enhanced-select"
|
1742 |
+
msgid "Are you sure you want to send email to all selected email address?"
|
|
|
1743 |
msgstr ""
|
1744 |
+
"Czy jesteś pewien, że chcesz wysłać e-mail na wszystkie wybrane adresy e-"
|
1745 |
+
"mail?"
|
1746 |
|
1747 |
+
#: ../classes/es-register.php:228
|
1748 |
+
msgctxt "sentmail-enhanced-select"
|
1749 |
+
msgid "Do you want to delete this record?"
|
1750 |
+
msgstr "Czy chcesz usunąć ten rekord?"
|
1751 |
|
1752 |
+
#: ../classes/es-register.php:229
|
1753 |
+
msgctxt "sentmail-enhanced-select"
|
1754 |
+
msgid "Do you want to delete all records except latest 10?"
|
1755 |
+
msgstr "Czy chcesz usunąć wszystkie rekordy, za wyjątkiem ostatnich 10-iu?"
|
|
|
|
|
|
|
1756 |
|
1757 |
+
#: ../classes/es-register.php:237
|
1758 |
+
msgctxt "cron-enhanced-select"
|
1759 |
+
msgid "Please select enter number of mails you want to send per hour/trigger."
|
1760 |
+
msgstr "Proszę wprowadzić ilość maili, które chcesz wysłać na godzinę/wyzwolenie."
|
1761 |
|
1762 |
+
#: ../classes/es-register.php:238
|
1763 |
+
msgctxt "cron-enhanced-select"
|
1764 |
+
msgid "Please enter the mail count, only number."
|
1765 |
+
msgstr "Proszę podać liczbę maili, tylko numer."
|
|
|
|
|
|
|
1766 |
|
1767 |
+
#: ../classes/es-register.php:251
|
1768 |
+
msgctxt "widget-enhanced-select"
|
1769 |
+
msgid "Please enter email address."
|
1770 |
+
msgstr "Proszę podaj adres e-mail."
|
1771 |
|
1772 |
+
#: ../classes/es-register.php:252
|
1773 |
+
msgctxt "widget-enhanced-select"
|
1774 |
+
msgid "Please provide a valid email address."
|
1775 |
+
msgstr "Prosimy o wprowadzenie poprawnego adresu e-mail."
|
|
|
|
|
|
|
1776 |
|
1777 |
+
#: ../classes/es-register.php:253
|
1778 |
+
msgctxt "widget-enhanced-select"
|
1779 |
+
msgid "loading..."
|
1780 |
+
msgstr "ładuję…"
|
1781 |
|
1782 |
+
#: ../classes/es-register.php:254
|
1783 |
+
msgctxt "widget-enhanced-select"
|
1784 |
+
msgid "Cannot create XMLHTTP instance"
|
1785 |
+
msgstr "Nie można utworzyć instancji XMLHTTP"
|
|
|
|
|
|
|
1786 |
|
1787 |
+
#: ../classes/es-register.php:255
|
1788 |
+
msgctxt "widget-enhanced-select"
|
1789 |
+
msgid "Subscribed successfully."
|
1790 |
+
msgstr "Subskrypcja przebiegła pomyślnie."
|
1791 |
|
1792 |
+
#: ../classes/es-register.php:257
|
1793 |
+
msgctxt "widget-enhanced-select"
|
1794 |
+
msgid "Email Address already exists."
|
1795 |
+
msgstr "Adres e-mail już istnieje."
|
|
|
|
|
|
|
1796 |
|
1797 |
+
#: ../classes/es-register.php:258
|
1798 |
+
msgctxt "widget-enhanced-select"
|
1799 |
+
msgid "Oops.. Unexpected error occurred."
|
1800 |
+
msgstr "Ups… Wystąpił nieoczekiwany błąd."
|
1801 |
|
1802 |
+
#: ../classes/es-register.php:259
|
1803 |
+
msgctxt "widget-enhanced-select"
|
1804 |
+
msgid "Invalid email address."
|
1805 |
+
msgstr "Błędny adres e-mail."
|
|
|
1806 |
|
1807 |
+
#: ../classes/es-register.php:260
|
1808 |
+
msgctxt "widget-enhanced-select"
|
1809 |
+
msgid "Please try after some time."
|
1810 |
+
msgstr "Spróbuj proszę za jakiś czas."
|
1811 |
|
1812 |
+
#: ../classes/es-register.php:261
|
1813 |
+
msgctxt "widget-enhanced-select"
|
1814 |
+
msgid "There was a problem with the request."
|
1815 |
+
msgstr "Wystąpił problem z żądaniem."
|
1816 |
|
1817 |
+
#: ../classes/es-register.php:268
|
1818 |
+
msgctxt "widget-page-enhanced-select"
|
1819 |
+
msgid "Please enter email address."
|
1820 |
+
msgstr "Proszę podaj adres e-mail."
|
1821 |
|
1822 |
+
#: ../classes/es-register.php:269
|
1823 |
+
msgctxt "widget-page-enhanced-select"
|
1824 |
+
msgid "Please provide a valid email address."
|
1825 |
+
msgstr "Proszę wprowadź poprawny adres e-mail."
|
1826 |
|
1827 |
+
#: ../classes/es-register.php:270
|
1828 |
+
msgctxt "widget-page-enhanced-select"
|
1829 |
+
msgid "loading..."
|
1830 |
+
msgstr "wczytuję…"
|
1831 |
|
1832 |
+
#: ../classes/es-register.php:271
|
1833 |
+
msgctxt "widget-page-enhanced-select"
|
1834 |
+
msgid "Cannot create XMLHTTP instance"
|
1835 |
+
msgstr "Nie można utworzyć instancji XMLHTTP"
|
|
|
|
|
|
|
1836 |
|
1837 |
+
#: ../classes/es-register.php:272
|
1838 |
+
msgctxt "widget-page-enhanced-select"
|
1839 |
+
msgid "Subscribed successfully."
|
1840 |
+
msgstr "Subskrypcja przebiegła pomyślnie."
|
1841 |
|
1842 |
+
#: ../classes/es-register.php:274
|
1843 |
+
msgctxt "widget-page-enhanced-select"
|
1844 |
+
msgid "Email Address already exists."
|
1845 |
+
msgstr "Adres e-mail już istnieje."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1846 |
|
1847 |
+
#: ../classes/es-register.php:275
|
1848 |
+
msgctxt "widget-page-enhanced-select"
|
1849 |
+
msgid "Oops.. Unexpected error occurred."
|
1850 |
+
msgstr "Ups… Wystąpił nieoczekiwany błąd."
|
1851 |
|
1852 |
+
#: ../classes/es-register.php:276
|
1853 |
+
msgctxt "widget-page-enhanced-select"
|
1854 |
+
msgid "Invalid email address."
|
1855 |
+
msgstr "Błędny adres e-mail."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1856 |
|
1857 |
+
#: ../classes/es-register.php:277
|
1858 |
+
msgctxt "widget-page-enhanced-select"
|
1859 |
+
msgid "Please try after some time."
|
1860 |
+
msgstr "Spróbuj proszę za jakiś czas."
|
1861 |
|
1862 |
+
#: ../classes/es-register.php:278
|
1863 |
+
msgctxt "widget-page-enhanced-select"
|
1864 |
+
msgid "There was a problem with the request."
|
1865 |
+
msgstr "Wystąpił problem z żądaniem."
|
|
|
|
|
|
|
1866 |
|
1867 |
+
#: ../classes/es-register.php:499 ../classes/es-loadwidget.php:29
|
1868 |
+
msgid "Email *"
|
1869 |
+
msgstr "e-mail *"
|
|
|
1870 |
|
1871 |
+
#: ../classes/es-register.php:504 ../classes/es-loadwidget.php:34
|
1872 |
+
msgid "Subscribe"
|
1873 |
+
msgstr "Subskrypcja"
|
|
|
1874 |
|
1875 |
+
#: ../classes/es-register.php:539
|
1876 |
+
msgid "Widget Title"
|
1877 |
+
msgstr "Tytuł "
|
1878 |
|
1879 |
+
#: ../classes/es-register.php:543
|
1880 |
+
msgid "Display Name Field"
|
1881 |
+
msgstr "Wyświetl nazwę pola"
|
1882 |
|
1883 |
+
#: ../classes/es-register.php:550
|
1884 |
+
msgid "Short Description"
|
1885 |
+
msgstr "Krótki opis"
|
1886 |
|
1887 |
+
#: ../classes/es-register.php:552
|
1888 |
+
msgid "Short description about your subscription form."
|
1889 |
+
msgstr "Krótki opis twojego formularza subskrypcji."
|
1890 |
|
1891 |
+
#: ../classes/es-register.php:555
|
1892 |
+
msgid "Subscriber Group"
|
1893 |
+
msgstr "Grupa subskrybenta."
|
|
languages/email-subscribers.pot
CHANGED
@@ -5,7 +5,7 @@ msgstr ""
|
|
5 |
"Project-Id-Version: Email Subscribers\n"
|
6 |
"Report-Msgid-Bugs-To: \n"
|
7 |
"POT-Creation-Date: Tue Feb 09 2016 16:21:13 GMT+0530 (IST)\n"
|
8 |
-
"POT-Revision-Date:
|
9 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
@@ -36,7 +36,7 @@ msgstr ""
|
|
36 |
msgid "Please select notification mail subject. Use compose menu to create new."
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: ../notification/notification-add.php:50 ../notification/notification-edit.php:
|
40 |
msgid "Please select post categories."
|
41 |
msgstr ""
|
42 |
|
@@ -49,7 +49,7 @@ msgid "Add Notification"
|
|
49 |
msgstr ""
|
50 |
|
51 |
#: ../notification/notification-add.php:108 ../notification/notification-show.php:
|
52 |
-
#: 55 ../notification/notification-edit.php:
|
53 |
#: /settings/settings-edit.php:199 ../sentmail/sentmail-preview.php:29 ..
|
54 |
#: /sentmail/sentmail-show.php:98 ../sentmail/deliverreport-show.php:62 ..
|
55 |
#: /subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
|
@@ -66,8 +66,8 @@ msgid "Select Subscribers Group"
|
|
66 |
msgstr ""
|
67 |
|
68 |
#: ../notification/notification-add.php:119 ../notification/notification-add.php:
|
69 |
-
#: 143 ../notification/notification-edit.php:
|
70 |
-
#: edit.php:
|
71 |
#: subscriber-add.php:163 ../subscribers/view-subscriber-edit.php:163 ..
|
72 |
#: /subscribers/view-subscriber-sync.php:120 ../sendmail/sendmail.php:109 ..
|
73 |
#: /sendmail/sendmail.php:136 ../sendmail/sendmail.php:150
|
@@ -75,67 +75,67 @@ msgid "Select"
|
|
75 |
msgstr ""
|
76 |
|
77 |
#: ../notification/notification-add.php:137 ../notification/notification-edit.php:
|
78 |
-
#:
|
79 |
msgid "Select Notification Mail Subject"
|
80 |
msgstr ""
|
81 |
|
82 |
#: ../notification/notification-add.php:138 ../notification/notification-edit.php:
|
83 |
-
#:
|
84 |
msgid "(Use compose menu to create new)"
|
85 |
msgstr ""
|
86 |
|
87 |
#: ../notification/notification-add.php:162 ../notification/notification-edit.php:
|
88 |
-
#:
|
89 |
msgid "Select Post Categories"
|
90 |
msgstr ""
|
91 |
|
92 |
#: ../notification/notification-add.php:189 ../notification/notification-edit.php:
|
93 |
-
#:
|
94 |
msgid "Check All"
|
95 |
msgstr ""
|
96 |
|
97 |
#: ../notification/notification-add.php:190 ../notification/notification-edit.php:
|
98 |
-
#:
|
99 |
msgid "Uncheck All"
|
100 |
msgstr ""
|
101 |
|
102 |
#: ../notification/notification-add.php:196 ../notification/notification-edit.php:
|
103 |
-
#:
|
104 |
msgid "Select your Custom Post Type"
|
105 |
msgstr ""
|
106 |
|
107 |
#: ../notification/notification-add.php:197 ../notification/notification-edit.php:
|
108 |
-
#:
|
109 |
msgid "(Optional)"
|
110 |
msgstr ""
|
111 |
|
112 |
#: ../notification/notification-add.php:226 ../notification/notification-edit.php:
|
113 |
-
#:
|
114 |
msgid "No Custom Post Types Available"
|
115 |
msgstr ""
|
116 |
|
117 |
#: ../notification/notification-add.php:233 ../notification/notification-edit.php:
|
118 |
-
#:
|
119 |
msgid "Select Notification Status"
|
120 |
msgstr ""
|
121 |
|
122 |
#: ../notification/notification-add.php:237 ../notification/notification-edit.php:
|
123 |
-
#:
|
124 |
msgid "Send mail immediately when new post is published"
|
125 |
msgstr ""
|
126 |
|
127 |
#: ../notification/notification-add.php:238 ../notification/notification-edit.php:
|
128 |
-
#:
|
129 |
msgid "Add to cron when new post is published and send via cron job"
|
130 |
msgstr ""
|
131 |
|
132 |
#: ../notification/notification-add.php:239 ../notification/notification-edit.php:
|
133 |
-
#:
|
134 |
msgid "Disable notification"
|
135 |
msgstr ""
|
136 |
|
137 |
#: ../notification/notification-add.php:247 ../notification/notification-edit.php:
|
138 |
-
#:
|
139 |
#: /cron/cron-add.php:91 ../compose/compose-edit.php:118 ../compose/compose-add.
|
140 |
#: php:106
|
141 |
msgid "Save"
|
@@ -160,7 +160,7 @@ msgid "Notification"
|
|
160 |
msgstr ""
|
161 |
|
162 |
#: ../notification/notification-show.php:54 ../notification/notification-edit.php:
|
163 |
-
#:
|
164 |
msgid "Add New"
|
165 |
msgstr ""
|
166 |
|
@@ -217,15 +217,15 @@ msgstr ""
|
|
217 |
msgid "Please select notification status"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: ../notification/notification-edit.php:
|
221 |
msgid "Notification successfully updated. "
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: ../notification/notification-edit.php:
|
225 |
msgid "Edit Notification"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: ../notification/notification-edit.php:
|
229 |
#: php:246
|
230 |
msgid "Update Subscribers Group"
|
231 |
msgstr ""
|
@@ -673,11 +673,11 @@ msgstr ""
|
|
673 |
msgid "Action"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: ../sentmail/sentmail-show.php:
|
677 |
msgid "Optimize Table & Delete Records"
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: ../sentmail/sentmail-show.php:
|
681 |
msgid ""
|
682 |
"Note: Please click on <strong>Optimize Table & Delete Records</strong> "
|
683 |
"button to delete all reports except latest 10."
|
@@ -934,7 +934,7 @@ msgid "Email Address"
|
|
934 |
msgstr ""
|
935 |
|
936 |
#: ../subscribers/view-subscriber-show.php:312 ../subscribers/view-subscriber-
|
937 |
-
#: show.php:326 ../classes/es-register.php:
|
938 |
msgid "Name"
|
939 |
msgstr ""
|
940 |
|
@@ -1612,7 +1612,9 @@ msgstr ""
|
|
1612 |
|
1613 |
#: ../classes/es-register.php:220
|
1614 |
msgctxt "sendmail-enhanced-select"
|
1615 |
-
msgid "
|
|
|
|
|
1616 |
msgstr ""
|
1617 |
|
1618 |
#: ../classes/es-register.php:228
|
@@ -1765,30 +1767,30 @@ msgstr ""
|
|
1765 |
msgid "No, I don't want it"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
-
#: ../classes/es-register.php:
|
1769 |
msgid "Email *"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
-
#: ../classes/es-register.php:
|
1773 |
msgid "Subscribe"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
-
#: ../classes/es-register.php:
|
1777 |
msgid "Widget Title"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
-
#: ../classes/es-register.php:
|
1781 |
msgid "Display Name Field"
|
1782 |
msgstr ""
|
1783 |
|
1784 |
-
#: ../classes/es-register.php:
|
1785 |
msgid "Short Description"
|
1786 |
msgstr ""
|
1787 |
|
1788 |
-
#: ../classes/es-register.php:
|
1789 |
msgid "Short description about your subscription form."
|
1790 |
msgstr ""
|
1791 |
|
1792 |
-
#: ../classes/es-register.php:
|
1793 |
msgid "Subscriber Group"
|
1794 |
msgstr ""
|
5 |
"Project-Id-Version: Email Subscribers\n"
|
6 |
"Report-Msgid-Bugs-To: \n"
|
7 |
"POT-Creation-Date: Tue Feb 09 2016 16:21:13 GMT+0530 (IST)\n"
|
8 |
+
"POT-Revision-Date: Wed Oct 05 2016 17:14:16 GMT+0530 (IST)\n"
|
9 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
36 |
msgid "Please select notification mail subject. Use compose menu to create new."
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: ../notification/notification-add.php:50 ../notification/notification-edit.php:66
|
40 |
msgid "Please select post categories."
|
41 |
msgstr ""
|
42 |
|
49 |
msgstr ""
|
50 |
|
51 |
#: ../notification/notification-add.php:108 ../notification/notification-show.php:
|
52 |
+
#: 55 ../notification/notification-edit.php:119 ../roles/roles-add.php:106 ..
|
53 |
#: /settings/settings-edit.php:199 ../sentmail/sentmail-preview.php:29 ..
|
54 |
#: /sentmail/sentmail-show.php:98 ../sentmail/deliverreport-show.php:62 ..
|
55 |
#: /subscribers/view-subscriber-import.php:147 ../subscribers/view-subscriber-
|
66 |
msgstr ""
|
67 |
|
68 |
#: ../notification/notification-add.php:119 ../notification/notification-add.php:
|
69 |
+
#: 143 ../notification/notification-edit.php:130 ../notification/notification-
|
70 |
+
#: edit.php:163 ../subscribers/view-subscriber-import.php:191 ../subscribers/view-
|
71 |
#: subscriber-add.php:163 ../subscribers/view-subscriber-edit.php:163 ..
|
72 |
#: /subscribers/view-subscriber-sync.php:120 ../sendmail/sendmail.php:109 ..
|
73 |
#: /sendmail/sendmail.php:136 ../sendmail/sendmail.php:150
|
75 |
msgstr ""
|
76 |
|
77 |
#: ../notification/notification-add.php:137 ../notification/notification-edit.php:
|
78 |
+
#: 157
|
79 |
msgid "Select Notification Mail Subject"
|
80 |
msgstr ""
|
81 |
|
82 |
#: ../notification/notification-add.php:138 ../notification/notification-edit.php:
|
83 |
+
#: 158
|
84 |
msgid "(Use compose menu to create new)"
|
85 |
msgstr ""
|
86 |
|
87 |
#: ../notification/notification-add.php:162 ../notification/notification-edit.php:
|
88 |
+
#: 185
|
89 |
msgid "Select Post Categories"
|
90 |
msgstr ""
|
91 |
|
92 |
#: ../notification/notification-add.php:189 ../notification/notification-edit.php:
|
93 |
+
#: 220
|
94 |
msgid "Check All"
|
95 |
msgstr ""
|
96 |
|
97 |
#: ../notification/notification-add.php:190 ../notification/notification-edit.php:
|
98 |
+
#: 221
|
99 |
msgid "Uncheck All"
|
100 |
msgstr ""
|
101 |
|
102 |
#: ../notification/notification-add.php:196 ../notification/notification-edit.php:
|
103 |
+
#: 228
|
104 |
msgid "Select your Custom Post Type"
|
105 |
msgstr ""
|
106 |
|
107 |
#: ../notification/notification-add.php:197 ../notification/notification-edit.php:
|
108 |
+
#: 229
|
109 |
msgid "(Optional)"
|
110 |
msgstr ""
|
111 |
|
112 |
#: ../notification/notification-add.php:226 ../notification/notification-edit.php:
|
113 |
+
#: 263
|
114 |
msgid "No Custom Post Types Available"
|
115 |
msgstr ""
|
116 |
|
117 |
#: ../notification/notification-add.php:233 ../notification/notification-edit.php:
|
118 |
+
#: 271
|
119 |
msgid "Select Notification Status"
|
120 |
msgstr ""
|
121 |
|
122 |
#: ../notification/notification-add.php:237 ../notification/notification-edit.php:
|
123 |
+
#: 276
|
124 |
msgid "Send mail immediately when new post is published"
|
125 |
msgstr ""
|
126 |
|
127 |
#: ../notification/notification-add.php:238 ../notification/notification-edit.php:
|
128 |
+
#: 277
|
129 |
msgid "Add to cron when new post is published and send via cron job"
|
130 |
msgstr ""
|
131 |
|
132 |
#: ../notification/notification-add.php:239 ../notification/notification-edit.php:
|
133 |
+
#: 278
|
134 |
msgid "Disable notification"
|
135 |
msgstr ""
|
136 |
|
137 |
#: ../notification/notification-add.php:247 ../notification/notification-edit.php:
|
138 |
+
#: 287 ../roles/roles-add.php:202 ../subscribers/view-subscriber-edit.php:192 ..
|
139 |
#: /cron/cron-add.php:91 ../compose/compose-edit.php:118 ../compose/compose-add.
|
140 |
#: php:106
|
141 |
msgid "Save"
|
160 |
msgstr ""
|
161 |
|
162 |
#: ../notification/notification-show.php:54 ../notification/notification-edit.php:
|
163 |
+
#: 118 ../compose/compose-edit.php:86 ../compose/compose-show.php:66
|
164 |
msgid "Add New"
|
165 |
msgstr ""
|
166 |
|
217 |
msgid "Please select notification status"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: ../notification/notification-edit.php:88
|
221 |
msgid "Notification successfully updated. "
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: ../notification/notification-edit.php:117
|
225 |
msgid "Edit Notification"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: ../notification/notification-edit.php:126 ../subscribers/view-subscriber-show.
|
229 |
#: php:246
|
230 |
msgid "Update Subscribers Group"
|
231 |
msgstr ""
|
673 |
msgid "Action"
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: ../sentmail/sentmail-show.php:175
|
677 |
msgid "Optimize Table & Delete Records"
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: ../sentmail/sentmail-show.php:184
|
681 |
msgid ""
|
682 |
"Note: Please click on <strong>Optimize Table & Delete Records</strong> "
|
683 |
"button to delete all reports except latest 10."
|
934 |
msgstr ""
|
935 |
|
936 |
#: ../subscribers/view-subscriber-show.php:312 ../subscribers/view-subscriber-
|
937 |
+
#: show.php:326 ../classes/es-register.php:498 ../classes/es-loadwidget.php:24
|
938 |
msgid "Name"
|
939 |
msgstr ""
|
940 |
|
1612 |
|
1613 |
#: ../classes/es-register.php:220
|
1614 |
msgctxt "sendmail-enhanced-select"
|
1615 |
+
msgid ""
|
1616 |
+
"Have you double checked your selected group? If so, let's go ahead and send "
|
1617 |
+
"this."
|
1618 |
msgstr ""
|
1619 |
|
1620 |
#: ../classes/es-register.php:228
|
1767 |
msgid "No, I don't want it"
|
1768 |
msgstr ""
|
1769 |
|
1770 |
+
#: ../classes/es-register.php:503 ../classes/es-loadwidget.php:29
|
1771 |
msgid "Email *"
|
1772 |
msgstr ""
|
1773 |
|
1774 |
+
#: ../classes/es-register.php:508 ../classes/es-loadwidget.php:34
|
1775 |
msgid "Subscribe"
|
1776 |
msgstr ""
|
1777 |
|
1778 |
+
#: ../classes/es-register.php:543
|
1779 |
msgid "Widget Title"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
+
#: ../classes/es-register.php:547
|
1783 |
msgid "Display Name Field"
|
1784 |
msgstr ""
|
1785 |
|
1786 |
+
#: ../classes/es-register.php:554
|
1787 |
msgid "Short Description"
|
1788 |
msgstr ""
|
1789 |
|
1790 |
+
#: ../classes/es-register.php:556
|
1791 |
msgid "Short description about your subscription form."
|
1792 |
msgstr ""
|
1793 |
|
1794 |
+
#: ../classes/es-register.php:559
|
1795 |
msgid "Subscriber Group"
|
1796 |
msgstr ""
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Plugin URI: http://www.storeapps.org/
|
|
6 |
Tags: email, email sign-up, email marketing, email newsletter form, email signup, email widget, email newsletter, newsletter, newsletter form, newsletter marketing, newsletter plugin, newsletter sending, newsletter signup, newsletter widget, subscribe, subscribers, subscribe form, subscription, subscription form, subscription, plugin, send, sendmail, marketing, registration form, bulk, feedburner, form, iscrizione, list, mailup, signup, smtp, widget
|
7 |
Requires at least: 3.4
|
8 |
Tested up to: 4.6.1
|
9 |
-
Stable tag: 3.2.
|
10 |
License: GPLv3
|
11 |
|
12 |
Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it gets published.
|
@@ -138,6 +138,8 @@ If you like Email Subscribers, please leave a [5 star](https://wordpress.org/sup
|
|
138 |
|
139 |
### Translators
|
140 |
|
|
|
|
|
141 |
* Czech (cs_CZ) - Martin
|
142 |
* Spanish (es_ES) - David Bravo (bohemme)
|
143 |
* Dutch (nl_NL) - John van Halderen, Paul't Hoen
|
@@ -145,6 +147,12 @@ If you like Email Subscribers, please leave a [5 star](https://wordpress.org/sup
|
|
145 |
* Russian (ru_RU) - Grishin Alexander
|
146 |
* Serbian (sr_RS) - Ogi Djuraskovic
|
147 |
* Turkish (tr_TR) - [Erkan ORUÇ](http://designerkan.com/)
|
|
|
|
|
|
|
|
|
|
|
|
|
148 |
|
149 |
== Installation ==
|
150 |
|
@@ -297,6 +305,13 @@ Use [Email Subscribers - Group Selector](https://wordpress.org/plugins/email-sub
|
|
297 |
|
298 |
== Changelog ==
|
299 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
300 |
= 3.2.1 (29.09.2016) =
|
301 |
|
302 |
* Fix: Optimize Table & Delete Records button not working
|
@@ -532,6 +547,13 @@ Use [Email Subscribers - Group Selector](https://wordpress.org/plugins/email-sub
|
|
532 |
|
533 |
== Upgrade Notice ==
|
534 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
535 |
= 3.2.1 (29.09.2016) =
|
536 |
|
537 |
* Fix: Optimize Table & Delete Records button not working
|
6 |
Tags: email, email sign-up, email marketing, email newsletter form, email signup, email widget, email newsletter, newsletter, newsletter form, newsletter marketing, newsletter plugin, newsletter sending, newsletter signup, newsletter widget, subscribe, subscribers, subscribe form, subscription, subscription form, subscription, plugin, send, sendmail, marketing, registration form, bulk, feedburner, form, iscrizione, list, mailup, signup, smtp, widget
|
7 |
Requires at least: 3.4
|
8 |
Tested up to: 4.6.1
|
9 |
+
Stable tag: 3.2.2
|
10 |
License: GPLv3
|
11 |
|
12 |
Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it gets published.
|
138 |
|
139 |
### Translators
|
140 |
|
141 |
+
**Translations inside plugin**
|
142 |
+
|
143 |
* Czech (cs_CZ) - Martin
|
144 |
* Spanish (es_ES) - David Bravo (bohemme)
|
145 |
* Dutch (nl_NL) - John van Halderen, Paul't Hoen
|
147 |
* Russian (ru_RU) - Grishin Alexander
|
148 |
* Serbian (sr_RS) - Ogi Djuraskovic
|
149 |
* Turkish (tr_TR) - [Erkan ORUÇ](http://designerkan.com/)
|
150 |
+
* French (fr_FR) - [Serge](https://profiles.wordpress.org/kalyx)
|
151 |
+
|
152 |
+
**Translations on [translate.wordpress.org](https://translate.wordpress.org/)**
|
153 |
+
|
154 |
+
* Italian - [daepa](https://profiles.wordpress.org/daepa/) ([it_IT](https://translate.wordpress.org/locale/it/default/wp-plugins/email-subscribers))
|
155 |
+
* Lithuanian - [kubandrius](https://profiles.wordpress.org/kubandrius/) ([lt_LT](https://translate.wordpress.org/locale/lt/default/wp-plugins/email-subscribers))
|
156 |
|
157 |
== Installation ==
|
158 |
|
305 |
|
306 |
== Changelog ==
|
307 |
|
308 |
+
= 3.2.2 (06.10.2016) =
|
309 |
+
|
310 |
+
* Fix: Illegal string offset 'es_registered' when syncing existing WordPress Subscribers
|
311 |
+
* Fix: Confirmation text for static newsletters on Send Mail page
|
312 |
+
* New: Translation for French (fr_FR) language added (Thanks to Serge)
|
313 |
+
* Update: Translation for Polish (pl_PL) language updated (Thanks to Witold)
|
314 |
+
|
315 |
= 3.2.1 (29.09.2016) =
|
316 |
|
317 |
* Fix: Optimize Table & Delete Records button not working
|
547 |
|
548 |
== Upgrade Notice ==
|
549 |
|
550 |
+
= 3.2.2 (06.10.2016) =
|
551 |
+
|
552 |
+
* Fix: Illegal string offset 'es_registered' when syncing existing WordPress Subscribers
|
553 |
+
* Fix: Confirmation text for static newsletters on Send Mail page
|
554 |
+
* New: Translation for French (fr_FR) language added (Thanks to Serge)
|
555 |
+
* Update: Translation for Polish (pl_PL) language updated (Thanks to Witold)
|
556 |
+
|
557 |
= 3.2.1 (29.09.2016) =
|
558 |
|
559 |
* Fix: Optimize Table & Delete Records button not working
|