Version Description
- New: Added form tag to subscribe form
- Fix: Added missing charset to meta tag
- Update: Moved javascripts to footer
- Update: Translation for Serbian (sr_RS) language updated (Thanks to Ogi Djuraskovic)
- Update: Updated POT file
Download this release
Release Info
Developer | storeapps |
Plugin | Email Subscribers & Newsletters |
Version | 3.1.3 |
Comparing to | |
See all releases |
Code changes from version 3.1.2 to 3.1.3
- base/es-defined.php +1 -1
- changelog.txt +8 -0
- classes/es-loadwidget.php +5 -2
- classes/es-register.php +33 -31
- email-subscribers.php +2 -2
- help/help.php +2 -2
- job/es-optin.php +2 -2
- job/es-unsubscribe.php +2 -2
- languages/email-subscribers-ru_RU.po +5 -0
- languages/email-subscribers-sr_RS.mo +0 -0
- languages/email-subscribers-sr_RS.po +1533 -1026
- languages/email-subscribers.pot +14 -12
- readme.txt +30 -16
base/es-defined.php
CHANGED
@@ -23,7 +23,7 @@ if(!defined('ES_FAV')) define('ES_FAV', admin_url( 'admin.php?page=es-general-in
|
|
23 |
|
24 |
if(!defined('ES_ADMINURL')) define( 'ES_ADMINURL', site_url( '/wp-admin/admin.php' ) );
|
25 |
|
26 |
-
define('ES_OFFICIAL', 'If you like <strong>Email Subscribers</strong>, please consider leaving us <a target="_blank" href="https://wordpress.org/support/view/plugin-reviews/email-subscribers?filter=5#postform">★★★★★</a>
|
27 |
|
28 |
global $es_includes;
|
29 |
?>
|
23 |
|
24 |
if(!defined('ES_ADMINURL')) define( 'ES_ADMINURL', site_url( '/wp-admin/admin.php' ) );
|
25 |
|
26 |
+
define('ES_OFFICIAL', 'If you like <strong>Email Subscribers</strong>, please consider leaving us a <a target="_blank" href="https://wordpress.org/support/view/plugin-reviews/email-subscribers?filter=5#postform">★★★★★</a> rating. A huge thank you from StoreApps in advance!');
|
27 |
|
28 |
global $es_includes;
|
29 |
?>
|
changelog.txt
CHANGED
@@ -4,6 +4,14 @@ Author : Store Apps
|
|
4 |
Author URI : http://www.storeapps.org/
|
5 |
License : GPLv3
|
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
********************************Version 3.1.2************************************************************
|
8 |
|
9 |
* New: You can now include Unsubscribe link in Welcome Email (Email Subscribers v3.1.2+)
|
4 |
Author URI : http://www.storeapps.org/
|
5 |
License : GPLv3
|
6 |
|
7 |
+
********************************Version 3.1.3************************************************************
|
8 |
+
|
9 |
+
* New: Added <form> tag to subscribe form
|
10 |
+
* Fix: Added missing charset to <meta> tag
|
11 |
+
* Update: Moved javascripts to footer
|
12 |
+
* Update: Translation for Serbian (sr_RS) language updated (Thanks to Ogi Djuraskovic)
|
13 |
+
* Update: Updated POT file
|
14 |
+
|
15 |
********************************Version 3.1.2************************************************************
|
16 |
|
17 |
* New: You can now include Unsubscribe link in Welcome Email (Email Subscribers v3.1.2+)
|
classes/es-loadwidget.php
CHANGED
@@ -8,13 +8,14 @@ class es_cls_widget
|
|
8 |
$es_group = trim($arr['es_group']);
|
9 |
$url = "'" . home_url() . "'";
|
10 |
$es = "";
|
11 |
-
|
12 |
global $es_includes;
|
13 |
if (!isset($es_includes) || $es_includes !== true) {
|
14 |
$es_includes = true;
|
15 |
}
|
16 |
|
17 |
-
$es = $es .
|
|
|
18 |
|
19 |
if( $es_desc <> "" ) {
|
20 |
$es = $es . '<div class="es_caption">'.$es_desc.'</div>';
|
@@ -37,6 +38,8 @@ class es_cls_widget
|
|
37 |
$es = $es . '<input name="es_txt_name_pg" id="es_txt_name_pg" value="" type="hidden">';
|
38 |
}
|
39 |
$es = $es . '<input name="es_txt_group_pg" id="es_txt_group_pg" value="'.$es_group.'" type="hidden">';
|
|
|
|
|
40 |
$es = $es . '</div>';
|
41 |
return $es;
|
42 |
}
|
8 |
$es_group = trim($arr['es_group']);
|
9 |
$url = "'" . home_url() . "'";
|
10 |
$es = "";
|
11 |
+
|
12 |
global $es_includes;
|
13 |
if (!isset($es_includes) || $es_includes !== true) {
|
14 |
$es_includes = true;
|
15 |
}
|
16 |
|
17 |
+
$es = $es . '<div>';
|
18 |
+
$es = $es . '<form class="es_shortcode_form">';
|
19 |
|
20 |
if( $es_desc <> "" ) {
|
21 |
$es = $es . '<div class="es_caption">'.$es_desc.'</div>';
|
38 |
$es = $es . '<input name="es_txt_name_pg" id="es_txt_name_pg" value="" type="hidden">';
|
39 |
}
|
40 |
$es = $es . '<input name="es_txt_group_pg" id="es_txt_group_pg" value="'.$es_group.'" type="hidden">';
|
41 |
+
|
42 |
+
$es = $es . '</form>';
|
43 |
$es = $es . '</div>';
|
44 |
return $es;
|
45 |
}
|
classes/es-register.php
CHANGED
@@ -187,7 +187,7 @@ class es_cls_registerhook
|
|
187 |
if( !empty( $_GET['page'] ) ) {
|
188 |
switch ( $_GET['page'] ) {
|
189 |
case 'es-view-subscribers':
|
190 |
-
wp_register_script( 'es-view-subscribers', ES_URL . 'subscribers/view-subscriber.js' );
|
191 |
wp_enqueue_script( 'es-view-subscribers', ES_URL . 'subscribers/view-subscriber.js' );
|
192 |
$es_select_params = array(
|
193 |
'es_subscriber_email' => _x( 'Please enter subscriber email address.', 'view-subscriber-enhanced-select', 'email-subscribers' ),
|
@@ -206,7 +206,7 @@ class es_cls_registerhook
|
|
206 |
wp_localize_script( 'es-view-subscribers', 'es_view_subscriber_notices', $es_select_params );
|
207 |
break;
|
208 |
case 'es-compose':
|
209 |
-
wp_register_script( 'es-compose', ES_URL . 'compose/compose.js' );
|
210 |
wp_enqueue_script( 'es-compose', ES_URL . 'compose/compose.js' );
|
211 |
$es_select_params = array(
|
212 |
'es_configuration_name' => _x( 'Please enter name for configuration.', 'compose-enhanced-select', 'email-subscribers' ),
|
@@ -216,7 +216,7 @@ class es_cls_registerhook
|
|
216 |
wp_localize_script( 'es-compose', 'es_compose_notices', $es_select_params );
|
217 |
break;
|
218 |
case 'es-notification':
|
219 |
-
wp_register_script( 'es-notification', ES_URL . 'notification/notification.js' );
|
220 |
wp_enqueue_script( 'es-notification', ES_URL . 'notification/notification.js' );
|
221 |
$es_select_params = array(
|
222 |
'es_notification_select_group' => _x( 'Please select subscribers group.', 'notification-enhanced-select', 'email-subscribers' ),
|
@@ -227,7 +227,7 @@ class es_cls_registerhook
|
|
227 |
wp_localize_script( 'es-notification', 'es_notification_notices', $es_select_params );
|
228 |
break;
|
229 |
case 'es-sendemail':
|
230 |
-
wp_register_script( 'sendmail', ES_URL . 'sendmail/sendmail.js' );
|
231 |
wp_enqueue_script( 'sendmail', ES_URL . 'sendmail/sendmail.js' );
|
232 |
$es_select_params = array(
|
233 |
'es_sendmail_subject' => _x( 'Please select your mail subject.', 'sendmail-enhanced-select', 'email-subscribers' ),
|
@@ -237,11 +237,11 @@ class es_cls_registerhook
|
|
237 |
wp_localize_script( 'sendmail', 'es_sendmail_notices', $es_select_params );
|
238 |
break;
|
239 |
case 'es-settings':
|
240 |
-
wp_register_script( 'settings', ES_URL . 'settings/settings.js' );
|
241 |
wp_enqueue_script( 'settings', ES_URL . 'settings/settings.js' );
|
242 |
break;
|
243 |
case 'es-sentmail':
|
244 |
-
wp_register_script( 'es-sentmail', ES_URL . 'sentmail/sentmail.js' );
|
245 |
wp_enqueue_script( 'es-sentmail', ES_URL . 'sentmail/sentmail.js' );
|
246 |
$es_select_params = array(
|
247 |
'es_sentmail_delete' => _x( 'Do you want to delete this record?', 'sentmail-enhanced-select', 'email-subscribers' ),
|
@@ -250,7 +250,7 @@ class es_cls_registerhook
|
|
250 |
wp_localize_script( 'es-sentmail', 'es_sentmail_notices', $es_select_params );
|
251 |
break;
|
252 |
case 'es-roles':
|
253 |
-
wp_register_script( 'roles', ES_URL . 'roles/roles.js' );
|
254 |
wp_enqueue_script( 'roles', ES_URL . 'roles/roles.js' );
|
255 |
$es_select_params = array(
|
256 |
'es_roles_email_address' => _x( 'Please enter subscriber email address.', 'roles-enhanced-select', 'email-subscribers' ),
|
@@ -260,7 +260,7 @@ class es_cls_registerhook
|
|
260 |
wp_localize_script( 'roles', 'es_roles_notices', $es_select_params );
|
261 |
break;
|
262 |
case 'es-cron':
|
263 |
-
wp_register_script( 'cron', ES_URL . 'cron/cron.js' );
|
264 |
wp_enqueue_script( 'cron', ES_URL . 'cron/cron.js' );
|
265 |
$es_select_params = array(
|
266 |
'es_cron_number' => _x( 'Please select enter number of mails you want to send per hour/trigger.', 'cron-enhanced-select', 'email-subscribers' ),
|
@@ -273,7 +273,7 @@ class es_cls_registerhook
|
|
273 |
}
|
274 |
|
275 |
public static function es_load_widget_scripts_styles() {
|
276 |
-
wp_register_script( 'es-widget', ES_URL . 'widget/es-widget.js' );
|
277 |
wp_enqueue_script( 'es-widget', ES_URL . 'widget/es-widget.js' );
|
278 |
$es_select_params = array(
|
279 |
'es_email_notice' => _x( 'Please enter email address.', 'widget-enhanced-select', 'email-subscribers' ),
|
@@ -290,7 +290,7 @@ class es_cls_registerhook
|
|
290 |
);
|
291 |
wp_localize_script( 'es-widget', 'es_widget_notices', $es_select_params );
|
292 |
|
293 |
-
wp_register_script( 'es-widget-page', ES_URL . 'widget/es-widget-page.js' );
|
294 |
wp_enqueue_script( 'es-widget-page', ES_URL . 'widget/es-widget-page.js' );
|
295 |
$es_select_params = array(
|
296 |
'es_email_notice' => _x( 'Please enter email address.', 'widget-page-enhanced-select', 'email-subscribers' ),
|
@@ -407,7 +407,7 @@ class es_widget_register extends WP_Widget
|
|
407 |
function widget( $args, $instance )
|
408 |
{
|
409 |
extract( $args, EXTR_SKIP );
|
410 |
-
|
411 |
$es_title = apply_filters( 'widget_title', empty( $instance['es_title'] ) ? '' : $instance['es_title'], $instance, $this->id_base );
|
412 |
$es_desc = $instance['es_desc'];
|
413 |
$es_name = $instance['es_name'];
|
@@ -428,27 +428,29 @@ class es_widget_register extends WP_Widget
|
|
428 |
?>
|
429 |
|
430 |
<div>
|
|
|
431 |
<?php if( $es_desc <> "" ) { ?>
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
|
|
452 |
</div>
|
453 |
<?php
|
454 |
echo $args['after_widget'];
|
187 |
if( !empty( $_GET['page'] ) ) {
|
188 |
switch ( $_GET['page'] ) {
|
189 |
case 'es-view-subscribers':
|
190 |
+
wp_register_script( 'es-view-subscribers', ES_URL . 'subscribers/view-subscriber.js', '', '', true );
|
191 |
wp_enqueue_script( 'es-view-subscribers', ES_URL . 'subscribers/view-subscriber.js' );
|
192 |
$es_select_params = array(
|
193 |
'es_subscriber_email' => _x( 'Please enter subscriber email address.', 'view-subscriber-enhanced-select', 'email-subscribers' ),
|
206 |
wp_localize_script( 'es-view-subscribers', 'es_view_subscriber_notices', $es_select_params );
|
207 |
break;
|
208 |
case 'es-compose':
|
209 |
+
wp_register_script( 'es-compose', ES_URL . 'compose/compose.js', '', '', true );
|
210 |
wp_enqueue_script( 'es-compose', ES_URL . 'compose/compose.js' );
|
211 |
$es_select_params = array(
|
212 |
'es_configuration_name' => _x( 'Please enter name for configuration.', 'compose-enhanced-select', 'email-subscribers' ),
|
216 |
wp_localize_script( 'es-compose', 'es_compose_notices', $es_select_params );
|
217 |
break;
|
218 |
case 'es-notification':
|
219 |
+
wp_register_script( 'es-notification', ES_URL . 'notification/notification.js', '', '', true );
|
220 |
wp_enqueue_script( 'es-notification', ES_URL . 'notification/notification.js' );
|
221 |
$es_select_params = array(
|
222 |
'es_notification_select_group' => _x( 'Please select subscribers group.', 'notification-enhanced-select', 'email-subscribers' ),
|
227 |
wp_localize_script( 'es-notification', 'es_notification_notices', $es_select_params );
|
228 |
break;
|
229 |
case 'es-sendemail':
|
230 |
+
wp_register_script( 'sendmail', ES_URL . 'sendmail/sendmail.js', '', '', true );
|
231 |
wp_enqueue_script( 'sendmail', ES_URL . 'sendmail/sendmail.js' );
|
232 |
$es_select_params = array(
|
233 |
'es_sendmail_subject' => _x( 'Please select your mail subject.', 'sendmail-enhanced-select', 'email-subscribers' ),
|
237 |
wp_localize_script( 'sendmail', 'es_sendmail_notices', $es_select_params );
|
238 |
break;
|
239 |
case 'es-settings':
|
240 |
+
wp_register_script( 'settings', ES_URL . 'settings/settings.js', '', '', true );
|
241 |
wp_enqueue_script( 'settings', ES_URL . 'settings/settings.js' );
|
242 |
break;
|
243 |
case 'es-sentmail':
|
244 |
+
wp_register_script( 'es-sentmail', ES_URL . 'sentmail/sentmail.js', '', '', true );
|
245 |
wp_enqueue_script( 'es-sentmail', ES_URL . 'sentmail/sentmail.js' );
|
246 |
$es_select_params = array(
|
247 |
'es_sentmail_delete' => _x( 'Do you want to delete this record?', 'sentmail-enhanced-select', 'email-subscribers' ),
|
250 |
wp_localize_script( 'es-sentmail', 'es_sentmail_notices', $es_select_params );
|
251 |
break;
|
252 |
case 'es-roles':
|
253 |
+
wp_register_script( 'roles', ES_URL . 'roles/roles.js', '', '', true );
|
254 |
wp_enqueue_script( 'roles', ES_URL . 'roles/roles.js' );
|
255 |
$es_select_params = array(
|
256 |
'es_roles_email_address' => _x( 'Please enter subscriber email address.', 'roles-enhanced-select', 'email-subscribers' ),
|
260 |
wp_localize_script( 'roles', 'es_roles_notices', $es_select_params );
|
261 |
break;
|
262 |
case 'es-cron':
|
263 |
+
wp_register_script( 'cron', ES_URL . 'cron/cron.js', '', '', true );
|
264 |
wp_enqueue_script( 'cron', ES_URL . 'cron/cron.js' );
|
265 |
$es_select_params = array(
|
266 |
'es_cron_number' => _x( 'Please select enter number of mails you want to send per hour/trigger.', 'cron-enhanced-select', 'email-subscribers' ),
|
273 |
}
|
274 |
|
275 |
public static function es_load_widget_scripts_styles() {
|
276 |
+
wp_register_script( 'es-widget', ES_URL . 'widget/es-widget.js', '', '', true );
|
277 |
wp_enqueue_script( 'es-widget', ES_URL . 'widget/es-widget.js' );
|
278 |
$es_select_params = array(
|
279 |
'es_email_notice' => _x( 'Please enter email address.', 'widget-enhanced-select', 'email-subscribers' ),
|
290 |
);
|
291 |
wp_localize_script( 'es-widget', 'es_widget_notices', $es_select_params );
|
292 |
|
293 |
+
wp_register_script( 'es-widget-page', ES_URL . 'widget/es-widget-page.js', '', '', true );
|
294 |
wp_enqueue_script( 'es-widget-page', ES_URL . 'widget/es-widget-page.js' );
|
295 |
$es_select_params = array(
|
296 |
'es_email_notice' => _x( 'Please enter email address.', 'widget-page-enhanced-select', 'email-subscribers' ),
|
407 |
function widget( $args, $instance )
|
408 |
{
|
409 |
extract( $args, EXTR_SKIP );
|
410 |
+
|
411 |
$es_title = apply_filters( 'widget_title', empty( $instance['es_title'] ) ? '' : $instance['es_title'], $instance, $this->id_base );
|
412 |
$es_desc = $instance['es_desc'];
|
413 |
$es_name = $instance['es_name'];
|
428 |
?>
|
429 |
|
430 |
<div>
|
431 |
+
<form class="es_widget_form">
|
432 |
<?php if( $es_desc <> "" ) { ?>
|
433 |
+
<div class="es_caption"><?php echo $es_desc; ?></div>
|
434 |
+
<?php } ?>
|
435 |
+
<div class="es_msg"><span id="es_msg"></span></div>
|
436 |
+
<?php if( $es_name == "YES" ) { ?>
|
437 |
+
<div class="es_lablebox"><?php _e('Name', 'email-subscribers'); ?></div>
|
438 |
+
<div class="es_textbox">
|
439 |
+
<input class="es_textbox_class" name="es_txt_name" id="es_txt_name" value="" maxlength="225" type="text">
|
440 |
+
</div>
|
441 |
+
<?php } ?>
|
442 |
+
<div class="es_lablebox"><?php _e('Email *', 'email-subscribers'); ?></div>
|
443 |
+
<div class="es_textbox">
|
444 |
+
<input class="es_textbox_class" name="es_txt_email" id="es_txt_email" onkeypress="if(event.keyCode==13) es_submit_page('<?php echo $url; ?>')" value="" maxlength="225" type="text">
|
445 |
+
</div>
|
446 |
+
<div class="es_button">
|
447 |
+
<input class="es_textbox_button" name="es_txt_button" id="es_txt_button" onClick="return es_submit_page('<?php echo $url; ?>')" value="<?php _e('Subscribe', 'email-subscribers'); ?>" type="button">
|
448 |
+
</div>
|
449 |
+
<?php if( $es_name != "YES" ) { ?>
|
450 |
+
<input name="es_txt_name" id="es_txt_name" value="" type="hidden">
|
451 |
+
<?php } ?>
|
452 |
+
<input name="es_txt_group" id="es_txt_group" value="<?php echo $es_group; ?>" type="hidden">
|
453 |
+
</form>
|
454 |
</div>
|
455 |
<?php
|
456 |
echo $args['after_widget'];
|
email-subscribers.php
CHANGED
@@ -3,12 +3,12 @@
|
|
3 |
* Plugin Name: Email Subscribers
|
4 |
* Plugin URI: http://www.storeapps.org/
|
5 |
* Description: Email subscribers plugin has options to send newsletters to subscribers. It has a separate page with HTML editor to create a HTML newsletter. Also have options to send notification email to subscribers when new posts are published to your blog. Separate page available to include and exclude categories to send notifications.
|
6 |
-
* Version: 3.1.
|
7 |
* Author: Store Apps
|
8 |
* Author URI: http://www.storeapps.org/
|
9 |
* Donate link: http://www.storeapps.org/
|
10 |
* Requires at least: 3.4
|
11 |
-
* Tested up to: 4.
|
12 |
* Text Domain: email-subscribers
|
13 |
* Domain Path: /languages/
|
14 |
* License: GPLv3
|
3 |
* Plugin Name: Email Subscribers
|
4 |
* Plugin URI: http://www.storeapps.org/
|
5 |
* Description: Email subscribers plugin has options to send newsletters to subscribers. It has a separate page with HTML editor to create a HTML newsletter. Also have options to send notification email to subscribers when new posts are published to your blog. Separate page available to include and exclude categories to send notifications.
|
6 |
+
* Version: 3.1.3
|
7 |
* Author: Store Apps
|
8 |
* Author URI: http://www.storeapps.org/
|
9 |
* Donate link: http://www.storeapps.org/
|
10 |
* Requires at least: 3.4
|
11 |
+
* Tested up to: 4.5.1
|
12 |
* Text Domain: email-subscribers
|
13 |
* Domain Path: /languages/
|
14 |
* License: GPLv3
|
help/help.php
CHANGED
@@ -100,8 +100,8 @@
|
|
100 |
& then click on Save Settings button.', 'email-subscribers' ),
|
101 |
),
|
102 |
array(
|
103 |
-
'que' => __( 'How to change/update any
|
104 |
-
'ans' => __( 'Use <strong>Loco Translate</strong> plugin and translate
|
105 |
Refer steps from <a target="_blank" href="http://www.storeapps.org/support/documentation/translating-storeapps-plugins/">here</a>.<br>', 'email-subscribers' )
|
106 |
),
|
107 |
array(
|
100 |
& then click on Save Settings button.', 'email-subscribers' ),
|
101 |
),
|
102 |
array(
|
103 |
+
'que' => __( 'How to change/update/translate any text from the plugin?', 'email-subscribers' ),
|
104 |
+
'ans' => __( 'Email Subscribers has a POT file named <code>email-subscribers.pot</code> present at /wp-content/plugins/email-subscribers/languages/. Use that with <strong>Loco Translate</strong> plugin and change/update/translate any text that you want.<br>
|
105 |
Refer steps from <a target="_blank" href="http://www.storeapps.org/support/documentation/translating-storeapps-plugins/">here</a>.<br>', 'email-subscribers' )
|
106 |
),
|
107 |
array(
|
job/es-optin.php
CHANGED
@@ -10,8 +10,8 @@ if(isset($_GET['es']))
|
|
10 |
?>
|
11 |
<html>
|
12 |
<head>
|
13 |
-
|
14 |
-
|
15 |
</head>
|
16 |
<body>
|
17 |
<?php
|
10 |
?>
|
11 |
<html>
|
12 |
<head>
|
13 |
+
<title><?php echo $blogname; ?></title>
|
14 |
+
<meta http-equiv="refresh" content="10; url=<?php echo $home_url; ?>" charset="<?php echo esc_attr( get_option( 'blog_charset' ) ); ?>" />
|
15 |
</head>
|
16 |
<body>
|
17 |
<?php
|
job/es-unsubscribe.php
CHANGED
@@ -10,8 +10,8 @@ if(isset($_GET['es']))
|
|
10 |
?>
|
11 |
<html>
|
12 |
<head>
|
13 |
-
|
14 |
-
|
15 |
</head>
|
16 |
<body>
|
17 |
<?php
|
10 |
?>
|
11 |
<html>
|
12 |
<head>
|
13 |
+
<title><?php echo $blogname; ?></title>
|
14 |
+
<meta http-equiv="refresh" content="10; url=<?php echo $home_url; ?>" charset="<?php echo esc_attr( get_option( 'blog_charset' ) ); ?>" />
|
15 |
</head>
|
16 |
<body>
|
17 |
<?php
|
languages/email-subscribers-ru_RU.po
CHANGED
@@ -26,6 +26,11 @@ msgstr "Имя"
|
|
26 |
msgid "Email *"
|
27 |
msgstr "E-mail*"
|
28 |
|
|
|
|
|
|
|
|
|
|
|
29 |
#: ../classes/es-loadwidget.php:38 ../classes/es-register.php:260
|
30 |
msgid "Subscribe"
|
31 |
msgstr "Подписаться"
|
26 |
msgid "Email *"
|
27 |
msgstr "E-mail*"
|
28 |
|
29 |
+
#: ../classes/es-register.php:284
|
30 |
+
#: ../classes/es-register.php:301
|
31 |
+
msgid "You have successfully subscribed to the newsletter. You will receive a confirmation email in a few minutes. Please follow the link in it to confirm your subscription. If the email takes more than 15 minutes to appear in your mailbox, please check your spam folder."
|
32 |
+
msgstr "Вы успешно подписались на рассылку новостей. Вы получите подтверждение по электронной почте через несколько минут. Пожалуйста, перейдите по ссылке в этом письме для подтверждения подписки. Если письмо не пришло в течении 15 минут, проверьте папку спам."
|
33 |
+
|
34 |
#: ../classes/es-loadwidget.php:38 ../classes/es-register.php:260
|
35 |
msgid "Subscribe"
|
36 |
msgstr "Подписаться"
|
languages/email-subscribers-sr_RS.mo
CHANGED
Binary file
|
languages/email-subscribers-sr_RS.po
CHANGED
@@ -1,651 +1,505 @@
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email
|
4 |
-
"
|
5 |
-
"
|
6 |
-
"
|
|
|
|
|
7 |
"Language-Team: \n"
|
8 |
-
"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-
|
13 |
-
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
-
"
|
|
|
|
|
|
|
|
|
|
|
16 |
"X-Poedit-SearchPath-0: ..\n"
|
17 |
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
msgid "Name"
|
22 |
-
msgstr "Ime"
|
23 |
|
24 |
-
|
25 |
-
msgid "
|
26 |
-
msgstr "
|
27 |
|
28 |
-
|
29 |
-
msgid "
|
30 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
|
32 |
-
#: ../
|
33 |
-
msgid "
|
34 |
-
msgstr "
|
35 |
|
36 |
-
#: ../
|
37 |
-
msgid "
|
38 |
-
msgstr "
|
39 |
|
40 |
-
#: ../
|
41 |
-
msgid "
|
42 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
|
44 |
-
#: ../
|
45 |
-
msgid "
|
46 |
-
msgstr "
|
47 |
|
48 |
-
#: ../
|
49 |
-
|
50 |
-
|
51 |
-
msgstr "Obaveštenje"
|
52 |
|
53 |
-
#: ../
|
54 |
-
|
55 |
-
|
56 |
-
msgid "Send Email"
|
57 |
-
msgstr "Pošalji email"
|
58 |
|
59 |
-
#: ../
|
60 |
-
msgid "
|
61 |
-
msgstr ""
|
62 |
|
63 |
-
#: ../
|
64 |
-
|
65 |
-
|
66 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
|
68 |
-
#: ../
|
69 |
-
#: ../
|
70 |
msgid "Settings"
|
71 |
msgstr "Postavke"
|
72 |
|
73 |
-
#: ../
|
74 |
-
msgid "
|
75 |
-
msgstr ""
|
76 |
-
|
77 |
-
#: ../classes/es-register.php:157 ../classes/es-register.php:158
|
78 |
-
#: ../sentmail/sentmail-show.php:54
|
79 |
-
msgid "Sent Mails"
|
80 |
-
msgstr "Poslato"
|
81 |
-
|
82 |
-
#: ../classes/es-register.php:160 ../classes/es-register.php:161
|
83 |
-
msgid "Help & Info"
|
84 |
-
msgstr "Pomoć & informacije"
|
85 |
-
|
86 |
-
#: ../classes/es-register.php:296
|
87 |
-
msgid "Widget Title"
|
88 |
-
msgstr "Naziv widget-a"
|
89 |
-
|
90 |
-
#: ../classes/es-register.php:300
|
91 |
-
msgid "Display Name Field"
|
92 |
-
msgstr "Prikaži polje sa nazivom"
|
93 |
|
94 |
-
#: ../
|
95 |
-
msgid "
|
96 |
-
|
|
|
|
|
|
|
|
|
97 |
|
98 |
-
#: ../
|
99 |
-
|
100 |
-
|
|
|
101 |
|
102 |
-
#: ../
|
103 |
-
msgid "
|
104 |
-
|
|
|
|
|
|
|
|
|
105 |
|
106 |
-
#: ../
|
107 |
-
msgid "
|
108 |
-
msgstr "
|
109 |
|
110 |
-
#: ../
|
111 |
-
msgid "
|
112 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
113 |
|
114 |
-
#: ../
|
115 |
-
|
116 |
-
|
117 |
-
#: ../notification/notification-edit.php:100 ../roles/roles-add.php:81
|
118 |
-
#: ../settings/settings-edit.php:173 ../subscribers/view-subscriber-add.php:92
|
119 |
-
#: ../subscribers/view-subscriber-add.php:101
|
120 |
-
#: ../subscribers/view-subscriber-edit.php:86
|
121 |
-
#: ../subscribers/view-subscriber-import.php:107
|
122 |
-
#: ../subscribers/view-subscriber-import.php:138
|
123 |
-
msgid "Click here"
|
124 |
-
msgstr "Kliknite ovde"
|
125 |
|
126 |
-
#: ../
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
#: ../subscribers/view-subscriber-import.php:138
|
134 |
-
msgid " to view the details"
|
135 |
-
msgstr "da biste videli detalje"
|
136 |
|
137 |
-
#: ../
|
138 |
-
|
139 |
-
|
140 |
-
msgstr "Sastavi email"
|
141 |
|
142 |
-
#: ../
|
143 |
-
|
144 |
-
|
145 |
-
|
|
|
|
|
|
|
146 |
|
147 |
-
#: ../
|
148 |
-
|
149 |
-
|
150 |
-
msgstr "Odaberite vrstu email-a"
|
151 |
|
152 |
-
#: ../
|
153 |
-
msgid "
|
154 |
-
msgstr "
|
155 |
|
156 |
-
#: ../
|
157 |
-
msgid "
|
158 |
-
msgstr "
|
159 |
|
160 |
-
#: ../
|
161 |
-
msgid "
|
162 |
-
|
|
|
|
|
|
|
|
|
163 |
|
164 |
-
#: ../
|
165 |
-
msgid "
|
166 |
-
msgstr "
|
167 |
-
|
168 |
-
#: ../compose/compose-add.php:91 ../compose/compose-edit.php:103
|
169 |
-
#: ../compose/compose-show.php:71 ../compose/compose-show.php:79
|
170 |
-
#: ../sentmail/deliverreport-show.php:40 ../sentmail/deliverreport-show.php:52
|
171 |
-
#: ../sentmail/sentmail-show.php:75 ../sentmail/sentmail-show.php:88
|
172 |
-
#: ../subscribers/view-subscriber-add.php:122
|
173 |
-
#: ../subscribers/view-subscriber-edit.php:106
|
174 |
-
#: ../subscribers/view-subscriber-import.php:156
|
175 |
-
#: ../subscribers/view-subscriber-show.php:327
|
176 |
-
#: ../subscribers/view-subscriber-show.php:340
|
177 |
-
msgid "Status"
|
178 |
-
msgstr "Status"
|
179 |
|
180 |
-
#: ../
|
181 |
-
msgid "
|
182 |
-
msgstr "
|
183 |
-
|
184 |
-
|
185 |
-
#: ../cron/cron-add.php:90 ../notification/notification-add.php:216
|
186 |
-
#: ../notification/notification-edit.php:237 ../roles/roles-add.php:154
|
187 |
-
#: ../subscribers/view-subscriber-add.php:154
|
188 |
-
#: ../subscribers/view-subscriber-edit.php:147
|
189 |
-
#: ../subscribers/view-subscriber-sync.php:156
|
190 |
-
msgid "Submit"
|
191 |
-
msgstr "Podnesi"
|
192 |
|
193 |
-
#: ../
|
194 |
-
|
195 |
-
|
196 |
-
#: ../sendmail/sendmail.php:261 ../settings/settings-edit.php:381
|
197 |
-
#: ../subscribers/view-subscriber-add.php:155
|
198 |
-
#: ../subscribers/view-subscriber-edit.php:148
|
199 |
-
#: ../subscribers/view-subscriber-sync.php:157
|
200 |
-
msgid "Cancel"
|
201 |
-
msgstr "Otkaži"
|
202 |
-
|
203 |
-
#: ../compose/compose-add.php:101 ../compose/compose-edit.php:114
|
204 |
-
#: ../compose/compose-preview.php:31 ../compose/compose-show.php:121
|
205 |
-
#: ../cron/cron-add.php:92 ../notification/notification-add.php:218
|
206 |
-
#: ../notification/notification-edit.php:239
|
207 |
-
#: ../notification/notification-show.php:153 ../roles/roles-add.php:156
|
208 |
-
#: ../sendmail/sendmail.php:262 ../sentmail/deliverreport-show.php:120
|
209 |
-
#: ../sentmail/sentmail-preview.php:33 ../settings/settings-edit.php:382
|
210 |
-
#: ../subscribers/view-subscriber-add.php:156
|
211 |
-
#: ../subscribers/view-subscriber-edit.php:149
|
212 |
-
#: ../subscribers/view-subscriber-export.php:70
|
213 |
-
#: ../subscribers/view-subscriber-import.php:190
|
214 |
-
#: ../subscribers/view-subscriber-show.php:448
|
215 |
-
#: ../subscribers/view-subscriber-sync.php:158
|
216 |
-
msgid "Help"
|
217 |
-
msgstr "Pomoć"
|
218 |
-
|
219 |
-
#: ../compose/compose-edit.php:11 ../compose/compose-preview.php:10
|
220 |
-
#: ../compose/compose-show.php:30 ../notification/notification-edit.php:11
|
221 |
-
#: ../notification/notification-show.php:16
|
222 |
-
#: ../sentmail/sentmail-preview.php:12 ../sentmail/sentmail-show.php:18
|
223 |
-
#: ../settings/settings-edit.php:11 ../subscribers/view-subscriber-edit.php:12
|
224 |
-
#: ../subscribers/view-subscriber-show.php:46
|
225 |
-
msgid "Oops, selected details doesnt exist."
|
226 |
-
msgstr "Ups, odabrani detalji ne postoje"
|
227 |
|
228 |
-
#: ../
|
229 |
-
msgid "
|
230 |
-
|
|
|
|
|
|
|
|
|
231 |
|
232 |
-
#: ../
|
233 |
-
msgid "
|
234 |
-
msgstr "
|
235 |
|
236 |
-
#: ../
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
|
|
242 |
|
243 |
-
#: ../
|
244 |
-
|
245 |
-
|
246 |
-
msgid "Edit"
|
247 |
-
msgstr "Uredi"
|
248 |
|
249 |
-
#: ../
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
msgstr "
|
|
|
|
|
254 |
|
255 |
-
#: ../
|
256 |
-
|
257 |
-
|
258 |
-
msgid "Selected record was successfully deleted."
|
259 |
-
msgstr "Odabrani zapis uspešno je obrisan."
|
260 |
|
261 |
-
#: ../
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
msgstr "Dodaj novi"
|
268 |
|
269 |
-
#: ../
|
270 |
-
msgid "
|
271 |
-
msgstr "Naslov
|
272 |
|
273 |
-
#: ../
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
msgstr "
|
278 |
-
|
279 |
-
|
280 |
-
#: ../sentmail/sentmail-show.php:80 ../sentmail/sentmail-show.php:93
|
281 |
-
#: ../subscribers/view-subscriber-export.php:32
|
282 |
-
#: ../subscribers/view-subscriber-export.php:40
|
283 |
-
#: ../subscribers/view-subscriber-show.php:330
|
284 |
-
#: ../subscribers/view-subscriber-show.php:343
|
285 |
-
msgid "Action"
|
286 |
-
msgstr "Aktivnost"
|
287 |
|
288 |
-
#: ../
|
289 |
-
|
290 |
-
|
291 |
-
msgid "Delete"
|
292 |
-
msgstr "Obriši"
|
293 |
|
294 |
-
#: ../
|
295 |
-
|
296 |
-
|
297 |
-
|
|
|
|
|
|
|
298 |
|
299 |
-
#: ../
|
300 |
-
|
301 |
-
|
302 |
-
msgstr "Nema raspoloživih zapisa"
|
303 |
|
304 |
-
#: ../
|
305 |
-
|
306 |
-
|
307 |
-
msgstr "Molimo vas da unesete naslov email-a"
|
308 |
|
309 |
-
#: ../
|
310 |
-
|
311 |
-
|
312 |
-
msgstr "Detalji su uspešno ažurirani."
|
313 |
|
314 |
-
#: ../
|
315 |
-
msgid "
|
|
|
|
|
316 |
msgstr ""
|
|
|
|
|
317 |
|
318 |
-
#: ../
|
319 |
-
msgid "
|
320 |
-
msgstr ""
|
321 |
|
322 |
-
#: ../
|
323 |
msgid ""
|
324 |
-
"
|
325 |
-
"
|
326 |
msgstr ""
|
|
|
|
|
327 |
|
328 |
-
#: ../
|
329 |
-
|
330 |
-
|
331 |
-
msgstr "Sadržaj email-a"
|
332 |
|
333 |
-
#: ../
|
334 |
-
msgid "
|
335 |
msgstr ""
|
|
|
336 |
|
337 |
-
#: ../
|
338 |
-
|
339 |
-
|
340 |
-
msgstr "Pregledaj izveštaje"
|
341 |
|
342 |
-
#: ../
|
343 |
-
msgid "
|
344 |
msgstr ""
|
|
|
|
|
345 |
|
346 |
-
#: ../
|
347 |
-
msgid "
|
348 |
-
msgstr ""
|
349 |
|
350 |
-
#: ../
|
351 |
-
msgid ""
|
352 |
-
|
353 |
-
"your newsletters and notification. The following link explains how to create "
|
354 |
-
"a CRON job through the cPanel or Plesk."
|
355 |
-
msgstr ""
|
356 |
|
357 |
-
#: ../
|
358 |
-
msgid "
|
359 |
-
msgstr ""
|
360 |
|
361 |
-
#: ../
|
362 |
-
msgid "
|
363 |
-
msgstr ""
|
364 |
|
365 |
-
#: ../
|
366 |
-
msgid "
|
367 |
-
msgstr ""
|
368 |
|
369 |
-
#: ../
|
370 |
-
#: ../
|
371 |
-
|
372 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
373 |
|
374 |
#: ../job/es-optin.php:64 ../job/es-optin.php:79 ../job/es-unsubscribe.php:60
|
375 |
-
#:
|
376 |
msgid ""
|
377 |
"Oops.. We are getting some technical error. Please try again or contact "
|
378 |
"admin."
|
379 |
msgstr ""
|
380 |
-
"Ups
|
381 |
-
"
|
382 |
|
383 |
#: ../job/es-optin.php:69
|
384 |
msgid "This email address has already been confirmed."
|
385 |
-
msgstr "Ova
|
386 |
|
387 |
-
#: ../
|
388 |
-
#:
|
389 |
-
#: ../notification/notification-
|
390 |
-
msgid "
|
391 |
-
msgstr "
|
392 |
|
393 |
-
#: ../
|
394 |
-
|
395 |
-
|
396 |
-
#: ../notification/notification-edit.php:232
|
397 |
-
msgid "Please select notification status."
|
398 |
-
msgstr "Odaberite status obaveštenja."
|
399 |
|
400 |
-
#: ../
|
401 |
-
#: ../
|
402 |
-
|
403 |
-
|
404 |
-
msgid ""
|
405 |
-
"Please select notification mail subject. Use compose menu to create new."
|
406 |
-
msgstr ""
|
407 |
-
"Odaberite naslov email-a obaveštenja.Za kreiranje novog, koristite meni za "
|
408 |
-
"sastavljanje."
|
409 |
|
410 |
-
#: ../
|
411 |
-
|
412 |
-
|
413 |
-
#: ../notification/notification-edit.php:183
|
414 |
-
msgid "Please select post categories."
|
415 |
-
msgstr "Odaberite kategorije posta."
|
416 |
|
417 |
-
#: ../
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
#: ../notification/notification-add.php:101
|
422 |
-
msgid "Add Notification"
|
423 |
-
msgstr "Dodaj obaveštenje"
|
424 |
-
|
425 |
-
#: ../notification/notification-add.php:104
|
426 |
-
#: ../notification/notification-edit.php:115
|
427 |
-
#: ../notification/notification-show.php:57
|
428 |
-
#: ../notification/notification-show.php:65
|
429 |
-
msgid "Subscribers Group"
|
430 |
-
msgstr "Grupe pretplatnika"
|
431 |
-
|
432 |
-
#: ../notification/notification-add.php:106
|
433 |
-
#: ../notification/notification-add.php:124
|
434 |
-
#: ../notification/notification-edit.php:123 ../sendmail/sendmail.php:108
|
435 |
-
#: ../sendmail/sendmail.php:154 ../subscribers/view-subscriber-add.php:133
|
436 |
-
#: ../subscribers/view-subscriber-edit.php:117
|
437 |
-
#: ../subscribers/view-subscriber-import.php:167
|
438 |
-
#: ../subscribers/view-subscriber-sync.php:99
|
439 |
-
#: ../subscribers/view-subscriber-sync.php:130
|
440 |
-
msgid "Select"
|
441 |
-
msgstr "Odaberi"
|
442 |
-
|
443 |
-
#: ../notification/notification-add.php:122
|
444 |
-
#: ../notification/notification-edit.php:121
|
445 |
-
msgid "Notification Mail"
|
446 |
-
msgstr "Email obaveštenja"
|
447 |
-
|
448 |
-
#: ../notification/notification-add.php:141
|
449 |
-
#: ../notification/notification-edit.php:145
|
450 |
-
msgid "Post Categories"
|
451 |
-
msgstr "Kategorije posta"
|
452 |
-
|
453 |
-
#: ../notification/notification-add.php:173
|
454 |
-
#: ../notification/notification-edit.php:185
|
455 |
-
msgid "Custom post type"
|
456 |
-
msgstr ""
|
457 |
-
|
458 |
-
#: ../notification/notification-add.php:204
|
459 |
-
#: ../notification/notification-edit.php:224
|
460 |
-
#, fuzzy
|
461 |
-
msgid "Please select your custom post type (Optional)."
|
462 |
-
msgstr "Odaberite vrstu email-a"
|
463 |
-
|
464 |
-
#: ../notification/notification-add.php:206
|
465 |
-
#: ../notification/notification-edit.php:226
|
466 |
-
#: ../notification/notification-show.php:59
|
467 |
-
#: ../notification/notification-show.php:67
|
468 |
-
msgid "Notification Status"
|
469 |
-
msgstr "Status obaveštenja"
|
470 |
-
|
471 |
-
#: ../notification/notification-edit.php:84
|
472 |
-
msgid "Notification was successfully updated."
|
473 |
-
msgstr "Obaveštenje je uspešno ažurirano."
|
474 |
-
|
475 |
-
#: ../notification/notification-edit.php:112
|
476 |
-
msgid "Edit Notification"
|
477 |
-
msgstr "Uredi obaveštenje"
|
478 |
-
|
479 |
-
#: ../notification/notification-edit.php:119
|
480 |
-
msgid "Not allowed to update the subscribers group in edit page."
|
481 |
-
msgstr ""
|
482 |
-
"Ažuriranje grupe pretplatnika nije dozvoljeno na stranici za uređivanje."
|
483 |
-
|
484 |
-
#: ../notification/notification-show.php:56
|
485 |
-
#: ../notification/notification-show.php:64
|
486 |
-
msgid "Mail Subject"
|
487 |
-
msgstr "Naslov email-a"
|
488 |
-
|
489 |
-
#: ../notification/notification-show.php:58
|
490 |
-
#: ../notification/notification-show.php:66
|
491 |
-
msgid "Categories / Custom Post"
|
492 |
-
msgstr ""
|
493 |
-
|
494 |
-
#: ../roles/roles-add.php:92
|
495 |
-
msgid "Roles and Capabilities"
|
496 |
-
msgstr ""
|
497 |
-
|
498 |
-
#: ../roles/roles-add.php:94
|
499 |
-
#, fuzzy
|
500 |
-
msgid "Subscribers Menu"
|
501 |
-
msgstr "Pretplatnici"
|
502 |
-
|
503 |
-
#: ../roles/roles-add.php:100
|
504 |
-
msgid ""
|
505 |
-
"Select user role to access plugin Subscribers Menu. Only Admin user can "
|
506 |
-
"change this value."
|
507 |
-
msgstr ""
|
508 |
-
|
509 |
-
#: ../roles/roles-add.php:103
|
510 |
-
#, fuzzy
|
511 |
-
msgid "Compose Menu"
|
512 |
-
msgstr "Sastavi email"
|
513 |
-
|
514 |
-
#: ../roles/roles-add.php:109
|
515 |
-
msgid ""
|
516 |
-
"Select user role to access plugin Compose Menu. Only Admin user can change "
|
517 |
-
"this value."
|
518 |
-
msgstr ""
|
519 |
-
|
520 |
-
#: ../roles/roles-add.php:111
|
521 |
-
#, fuzzy
|
522 |
-
msgid "Notification Menu"
|
523 |
-
msgstr "Obaveštenje"
|
524 |
-
|
525 |
-
#: ../roles/roles-add.php:117
|
526 |
-
msgid ""
|
527 |
-
"Select user role to access plugin Notification Menu. Only Admin user can "
|
528 |
-
"change this value."
|
529 |
-
msgstr ""
|
530 |
-
|
531 |
-
#: ../roles/roles-add.php:119
|
532 |
-
msgid "Send Email Menu/Cron Menu"
|
533 |
-
msgstr ""
|
534 |
-
|
535 |
-
#: ../roles/roles-add.php:125
|
536 |
-
msgid ""
|
537 |
-
"Select user role to access plugin Send Email Menu. Only Admin user can "
|
538 |
-
"change this value."
|
539 |
-
msgstr ""
|
540 |
-
|
541 |
-
#: ../roles/roles-add.php:127
|
542 |
-
#, fuzzy
|
543 |
-
msgid "Settings Menu"
|
544 |
-
msgstr "Postavke"
|
545 |
-
|
546 |
-
#: ../roles/roles-add.php:133
|
547 |
-
msgid ""
|
548 |
-
"Select user role to access plugin Settings Menu. Only Admin user can change "
|
549 |
-
"this value."
|
550 |
-
msgstr ""
|
551 |
|
552 |
-
#: ../
|
553 |
-
|
554 |
-
|
555 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
556 |
|
557 |
-
#: ../
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
msgstr ""
|
562 |
|
563 |
-
#: ../
|
564 |
-
|
565 |
-
|
566 |
-
msgstr "Pomoć & informacije"
|
567 |
|
568 |
-
#: ../
|
569 |
-
msgid ""
|
570 |
-
"
|
571 |
-
"change this value."
|
572 |
-
msgstr ""
|
573 |
|
574 |
-
#: ../
|
575 |
-
msgid "
|
576 |
-
msgstr "
|
577 |
|
578 |
-
#: ../
|
579 |
-
|
580 |
-
|
|
|
|
|
|
|
|
|
581 |
|
582 |
-
#: ../
|
583 |
-
|
584 |
-
|
|
|
585 |
|
586 |
-
#: ../
|
587 |
-
msgid "
|
588 |
-
msgstr "
|
589 |
|
590 |
-
#: ../
|
591 |
-
msgid "
|
592 |
-
msgstr "
|
593 |
|
594 |
-
#: ../
|
595 |
-
msgid "
|
596 |
-
msgstr "
|
597 |
|
598 |
-
#: ../
|
599 |
msgid ""
|
600 |
-
"
|
601 |
-
"
|
602 |
msgstr ""
|
603 |
-
"
|
604 |
-
"
|
605 |
-
|
606 |
-
#: ../sendmail/sendmail.php:133
|
607 |
-
#, fuzzy
|
608 |
-
msgid "Mail Type"
|
609 |
-
msgstr "Vrsta email-a"
|
610 |
-
|
611 |
-
#: ../sendmail/sendmail.php:134
|
612 |
-
#, fuzzy
|
613 |
-
msgid "Select your mail type."
|
614 |
-
msgstr "Odaberite vrstu email-a"
|
615 |
-
|
616 |
-
#: ../sendmail/sendmail.php:148
|
617 |
-
msgid "Select subscriber group"
|
618 |
-
msgstr "Odaberite grupu pretplatnika"
|
619 |
-
|
620 |
-
#: ../sendmail/sendmail.php:149
|
621 |
-
msgid "Select your subscriber group to send email."
|
622 |
-
msgstr "Odaberite grupu svojih pretplatnika da biste poslali email."
|
623 |
-
|
624 |
-
#: ../sendmail/sendmail.php:174
|
625 |
-
msgid "Check All"
|
626 |
-
msgstr "Štikliraj sve"
|
627 |
|
628 |
-
#: ../
|
629 |
-
msgid "
|
630 |
-
msgstr "
|
631 |
|
632 |
-
#: ../
|
633 |
-
|
634 |
-
|
|
|
|
|
|
|
635 |
|
636 |
#: ../sentmail/deliverreport-show.php:11
|
637 |
msgid "Oops.. Unexpected error occurred. Please try again."
|
638 |
-
msgstr "Ups
|
639 |
|
640 |
#: ../sentmail/deliverreport-show.php:19
|
641 |
msgid "Delivery Report"
|
642 |
-
msgstr "
|
643 |
|
644 |
#: ../sentmail/deliverreport-show.php:37 ../sentmail/deliverreport-show.php:49
|
645 |
-
#:
|
646 |
-
#: ../subscribers/view-subscriber-export.php:
|
647 |
-
#: ../subscribers/view-subscriber-show.php:324
|
648 |
-
#:
|
649 |
msgid "Sno"
|
650 |
msgstr "Sno"
|
651 |
|
@@ -659,644 +513,1297 @@ msgstr "Datum slanja"
|
|
659 |
|
660 |
#: ../sentmail/deliverreport-show.php:42 ../sentmail/deliverreport-show.php:54
|
661 |
msgid "Viewed Status"
|
662 |
-
msgstr "Status
|
663 |
|
664 |
#: ../sentmail/deliverreport-show.php:43 ../sentmail/deliverreport-show.php:55
|
665 |
msgid "Viewed Date"
|
666 |
msgstr "Datum pregleda"
|
667 |
|
668 |
#: ../sentmail/deliverreport-show.php:44 ../sentmail/deliverreport-show.php:56
|
669 |
-
#:
|
670 |
-
#: ../subscribers/view-subscriber-show.php:342
|
671 |
msgid "Database ID"
|
672 |
-
msgstr "ID
|
673 |
|
674 |
-
#: ../
|
675 |
-
|
676 |
-
|
|
|
|
|
677 |
|
678 |
-
#: ../
|
679 |
-
msgid "
|
680 |
-
msgstr "
|
681 |
|
682 |
-
#: ../
|
683 |
-
msgid "
|
684 |
-
msgstr "
|
685 |
|
686 |
-
#: ../
|
687 |
-
msgid "
|
688 |
-
msgstr "
|
689 |
|
690 |
-
#: ../
|
691 |
-
|
692 |
-
|
693 |
-
msgstr "Poslati izvor"
|
694 |
|
695 |
-
#: ../
|
696 |
-
|
697 |
-
msgid "
|
698 |
-
msgstr "
|
699 |
|
700 |
-
#: ../
|
701 |
-
|
702 |
-
|
703 |
-
|
|
|
704 |
|
705 |
-
#: ../
|
706 |
-
|
707 |
-
|
708 |
-
msgstr "Ukupno email-ova"
|
709 |
|
710 |
-
#: ../
|
711 |
-
msgid "
|
712 |
-
msgstr "
|
713 |
|
714 |
-
#: ../
|
715 |
-
msgid ""
|
716 |
-
|
717 |
-
"reports except latest 10."
|
718 |
-
msgstr ""
|
719 |
-
"Napomena: Kliknite na taster <strong>Poboljšaj tabelu</strong> da biste "
|
720 |
-
"izbrisali sve izveštaje, osim poslednjih 10. "
|
721 |
|
722 |
-
#: ../
|
723 |
-
|
724 |
-
|
725 |
-
msgstr "Email uspešno poslat."
|
726 |
|
727 |
-
#: ../
|
728 |
-
msgid "
|
729 |
-
msgstr ""
|
730 |
|
731 |
-
#: ../
|
732 |
-
|
733 |
-
|
|
|
734 |
|
735 |
-
#: ../
|
736 |
-
|
737 |
-
|
|
|
738 |
|
739 |
-
#: ../
|
740 |
-
|
741 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
742 |
|
743 |
-
#: ../
|
744 |
-
|
745 |
-
|
|
|
746 |
|
747 |
-
#: ../
|
748 |
-
|
749 |
-
|
|
|
750 |
|
751 |
-
#: ../
|
752 |
-
|
753 |
-
|
|
|
754 |
|
755 |
-
#: ../
|
|
|
756 |
msgid ""
|
757 |
-
"
|
758 |
-
"
|
759 |
msgstr ""
|
760 |
-
"
|
761 |
|
762 |
-
#: ../
|
763 |
-
|
764 |
-
"
|
765 |
-
"
|
766 |
-
msgstr ""
|
767 |
-
"Opcije 1 i 2 omogućavaju vam da šaljete email-ove podrazumevanom Wordpress "
|
768 |
-
"metodom wp_mail(). Opcije 3 i 4 su za slanje PHP mail() metodom. "
|
769 |
|
770 |
-
#: ../
|
771 |
-
|
772 |
-
|
|
|
773 |
|
774 |
-
#: ../
|
775 |
-
|
776 |
-
"
|
777 |
-
"
|
778 |
-
"means subscribers do not need to confirm their email address."
|
779 |
-
msgstr ""
|
780 |
-
"Double Opt In opcija znači da pretplatnici moraju da potvrde svoje mail "
|
781 |
-
"adrese tako što će kliknuti na aktivacioni link koji im je poslat u "
|
782 |
-
"aktivacionom email-u. Single Opt In opcija znači da pretplatnici ne moraju "
|
783 |
-
"da potvrđuju svoje email adrese. "
|
784 |
|
785 |
-
#: ../
|
786 |
-
|
787 |
-
|
|
|
788 |
|
789 |
-
#: ../
|
|
|
790 |
msgid ""
|
791 |
-
"
|
792 |
-
"added email into our database."
|
793 |
msgstr ""
|
794 |
-
"
|
795 |
-
"
|
796 |
|
797 |
-
#: ../
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
#: ../settings/settings-edit.php:241
|
802 |
-
msgid ""
|
803 |
-
"Enter the content for Double Opt In mail. This will send whenever subscriber "
|
804 |
-
"added email into our database."
|
805 |
-
msgstr ""
|
806 |
-
"Unesite sadržaj za Double Opt In email. Biće poslat kad god pretplatnik "
|
807 |
-
"unese amail u našu bazu podataka."
|
808 |
|
809 |
-
#: ../
|
810 |
-
|
811 |
-
|
|
|
812 |
|
813 |
-
#: ../
|
814 |
-
|
815 |
-
|
|
|
816 |
|
817 |
-
#: ../
|
818 |
-
|
819 |
-
|
|
|
820 |
|
821 |
-
#: ../
|
822 |
-
|
823 |
-
"
|
824 |
-
"(confirmation) email content."
|
825 |
msgstr ""
|
826 |
-
"
|
827 |
-
"
|
828 |
-
|
829 |
-
#: ../settings/settings-edit.php:262
|
830 |
-
msgid "Subscriber welcome email"
|
831 |
-
msgstr "Email dobrodošlice pretplatniku."
|
832 |
|
833 |
-
#: ../
|
834 |
-
|
835 |
-
|
836 |
-
"Da
|
837 |
-
"podešena na DA."
|
838 |
|
839 |
-
#: ../
|
840 |
-
|
841 |
-
|
|
|
842 |
|
843 |
-
#: ../
|
844 |
-
|
845 |
-
"
|
846 |
-
"
|
847 |
-
msgstr ""
|
848 |
-
"Unesite naslov za email dobrodošlice pretplatniku. Biće poslat kad god se "
|
849 |
-
"neko uspešno pretplati (i kad potvrdi pretplatu) na email."
|
850 |
|
851 |
-
#: ../
|
852 |
-
|
853 |
-
|
|
|
854 |
|
855 |
-
#: ../
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
856 |
msgid ""
|
857 |
-
"
|
858 |
-
"
|
859 |
-
|
860 |
-
"
|
861 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
862 |
|
863 |
-
#: ../
|
864 |
-
msgid "
|
865 |
-
msgstr "
|
|
|
|
|
|
|
|
|
866 |
|
867 |
-
#: ../
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
868 |
msgid ""
|
869 |
-
"
|
870 |
-
"
|
871 |
msgstr ""
|
872 |
-
"
|
873 |
-
"
|
874 |
|
875 |
-
#: ../
|
876 |
-
msgid "
|
877 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
878 |
|
879 |
-
#: ../
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
880 |
msgid ""
|
881 |
-
"
|
882 |
-
"by comma)."
|
883 |
msgstr ""
|
884 |
-
"
|
885 |
-
"
|
886 |
|
887 |
-
#: ../
|
888 |
-
|
889 |
-
|
|
|
890 |
|
891 |
-
#: ../
|
|
|
|
|
|
|
|
|
892 |
msgid ""
|
893 |
-
"
|
894 |
-
"
|
895 |
msgstr ""
|
896 |
-
"
|
897 |
-
"
|
898 |
|
899 |
-
#: ../
|
900 |
-
msgid "
|
901 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
902 |
|
903 |
-
#: ../
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
904 |
msgid ""
|
905 |
-
"
|
906 |
-
"
|
907 |
msgstr ""
|
908 |
-
"
|
909 |
-
"dodat i potvrđen u našoj bazi podataka."
|
910 |
|
911 |
-
#: ../
|
912 |
-
msgid "
|
913 |
-
msgstr "
|
914 |
|
915 |
-
#: ../
|
916 |
-
|
917 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
918 |
|
919 |
-
#: ../
|
920 |
-
msgid "
|
921 |
-
msgstr "
|
922 |
|
923 |
-
#: ../
|
924 |
-
msgid ""
|
925 |
-
"
|
926 |
-
"with newsletter."
|
927 |
-
msgstr ""
|
928 |
-
"Unesite tekst linka za otkazivanje pretplate. Ovaj tekst je za dodavanje "
|
929 |
-
"linka za otkazivanje pretplate na novosti."
|
930 |
|
931 |
-
#: ../
|
932 |
-
msgid "
|
933 |
-
msgstr "
|
934 |
|
935 |
-
#: ../
|
936 |
msgid ""
|
937 |
-
"
|
938 |
-
"
|
939 |
msgstr ""
|
940 |
-
"
|
941 |
-
"
|
942 |
|
943 |
-
#: ../
|
944 |
-
msgid "
|
945 |
-
msgstr "
|
946 |
-
|
947 |
-
#: ../settings/settings-edit.php:347
|
948 |
-
msgid "Default message to display if any issue on confirmation link."
|
949 |
-
msgstr ""
|
950 |
-
"Podrazumevana poruka za prikazivanje u slučaju da dođe do problema sa linkom "
|
951 |
-
"za potvrdu."
|
952 |
|
953 |
-
#: ../
|
954 |
-
msgid "
|
955 |
-
msgstr "
|
956 |
|
957 |
-
#: ../
|
958 |
-
msgid "
|
959 |
-
msgstr ""
|
960 |
-
"Podrazumevana poruka koja će biti prikazana ako se pojavi problem sa linkom "
|
961 |
-
"za otkazivanje pretplate."
|
962 |
|
963 |
-
#: ../
|
964 |
-
msgid "
|
965 |
msgstr ""
|
|
|
966 |
|
967 |
-
#: ../
|
968 |
-
msgid "
|
969 |
msgstr ""
|
|
|
|
|
970 |
|
971 |
-
#: ../
|
972 |
-
msgid "
|
|
|
|
|
|
|
973 |
msgstr ""
|
|
|
|
|
|
|
974 |
|
975 |
-
#: ../
|
976 |
-
msgid "
|
|
|
|
|
|
|
977 |
msgstr ""
|
|
|
|
|
|
|
978 |
|
979 |
-
#: ../
|
980 |
-
msgid "Save Settings"
|
981 |
-
msgstr "Sačuvaj izmene."
|
982 |
-
|
983 |
-
#: ../subscribers/view-subscriber-add.php:28
|
984 |
-
#: ../subscribers/view-subscriber-add.php:120
|
985 |
-
#: ../subscribers/view-subscriber-edit.php:43
|
986 |
-
#: ../subscribers/view-subscriber-edit.php:104
|
987 |
-
msgid "Please enter subscriber email address."
|
988 |
-
msgstr "Unesite email adresu pretplatnika."
|
989 |
-
|
990 |
-
#: ../subscribers/view-subscriber-add.php:45
|
991 |
-
msgid "Please select or create your group for this email."
|
992 |
-
msgstr "Odaberite ili kreirajte svoju grupu za ovaj email."
|
993 |
-
|
994 |
-
#: ../subscribers/view-subscriber-add.php:54
|
995 |
-
#: ../subscribers/view-subscriber-import.php:45
|
996 |
msgid ""
|
997 |
-
"
|
998 |
-
"
|
|
|
999 |
msgstr ""
|
|
|
|
|
|
|
1000 |
|
1001 |
-
#: ../
|
1002 |
-
msgid "
|
1003 |
-
msgstr "
|
1004 |
-
|
1005 |
-
#: ../subscribers/view-subscriber-add.php:70
|
1006 |
-
msgid "Email already exist in our list."
|
1007 |
-
msgstr "Email već postoji na našoj listi."
|
1008 |
-
|
1009 |
-
#: ../subscribers/view-subscriber-add.php:75
|
1010 |
-
msgid "Email is invalid."
|
1011 |
-
msgstr "Email je nevažeći."
|
1012 |
-
|
1013 |
-
#: ../subscribers/view-subscriber-add.php:112
|
1014 |
-
msgid "Add email"
|
1015 |
-
msgstr "Dodaj email."
|
1016 |
-
|
1017 |
-
#: ../subscribers/view-subscriber-add.php:114
|
1018 |
-
#: ../subscribers/view-subscriber-edit.php:98
|
1019 |
-
msgid "Enter full name"
|
1020 |
-
msgstr "Unesi puno ime"
|
1021 |
-
|
1022 |
-
#: ../subscribers/view-subscriber-add.php:116
|
1023 |
-
#: ../subscribers/view-subscriber-edit.php:100
|
1024 |
-
msgid "Please enter subscriber full name."
|
1025 |
-
msgstr "Unesite puno ime pretplatnika"
|
1026 |
-
|
1027 |
-
#: ../subscribers/view-subscriber-add.php:118
|
1028 |
-
#: ../subscribers/view-subscriber-edit.php:102
|
1029 |
-
msgid "Enter email address."
|
1030 |
-
msgstr "Unesite mail adresu."
|
1031 |
|
1032 |
-
#: ../
|
1033 |
-
|
1034 |
-
|
1035 |
-
msgid "Please select subscriber email status."
|
1036 |
-
msgstr "Odaberite email status pretplatnika"
|
1037 |
|
1038 |
-
#: ../
|
1039 |
-
|
1040 |
-
|
1041 |
-
msgstr "Odaberi (ili) kreiraj grupu"
|
1042 |
|
1043 |
-
#: ../
|
1044 |
-
|
1045 |
-
|
1046 |
-
msgid "Please select or create group for this subscriber."
|
1047 |
-
msgstr "Odaberite ili kreirajte grupu za datog pretplatnika."
|
1048 |
|
1049 |
-
#: ../
|
1050 |
-
msgid "
|
1051 |
msgstr ""
|
|
|
|
|
1052 |
|
1053 |
-
#: ../
|
1054 |
-
msgid "
|
1055 |
-
msgstr "
|
1056 |
-
|
1057 |
-
#: ../subscribers/view-subscriber-edit.php:70
|
1058 |
-
#, fuzzy
|
1059 |
-
msgid "Email already exist for this group."
|
1060 |
-
msgstr "Email već postoji na našoj listi."
|
1061 |
|
1062 |
-
#: ../
|
1063 |
-
msgid "
|
1064 |
-
|
|
|
|
|
|
|
|
|
1065 |
|
1066 |
-
#: ../
|
1067 |
-
|
1068 |
-
|
1069 |
-
msgid "Group"
|
1070 |
-
msgstr "Grupa"
|
1071 |
|
1072 |
-
#: ../
|
1073 |
-
msgid "
|
1074 |
-
msgstr "
|
1075 |
|
1076 |
-
#: ../
|
1077 |
-
|
1078 |
-
|
1079 |
-
msgstr "Opcija izvoza"
|
1080 |
|
1081 |
-
#: ../
|
1082 |
-
|
1083 |
-
|
1084 |
-
msgstr "Ukupan broj email-ova"
|
1085 |
|
1086 |
-
#: ../
|
1087 |
-
msgid "
|
1088 |
-
msgstr "
|
1089 |
|
1090 |
-
#: ../
|
1091 |
-
|
1092 |
-
|
1093 |
-
msgid "Click to export csv"
|
1094 |
-
msgstr "Kliknite da biste izvezli csv"
|
1095 |
|
1096 |
-
#: ../
|
1097 |
-
msgid "
|
1098 |
-
msgstr "
|
1099 |
|
1100 |
-
#: ../
|
1101 |
-
msgid "
|
1102 |
-
msgstr "
|
1103 |
|
1104 |
-
#: ../
|
1105 |
-
msgid "
|
1106 |
-
msgstr "
|
1107 |
|
1108 |
-
#: ../
|
1109 |
-
|
1110 |
-
|
1111 |
-
|
|
|
|
|
|
|
1112 |
|
1113 |
-
#: ../
|
1114 |
-
msgid "
|
1115 |
-
msgstr "
|
1116 |
|
1117 |
-
#: ../
|
1118 |
-
msgid "
|
1119 |
-
|
|
|
|
|
|
|
|
|
1120 |
|
1121 |
-
#: ../
|
1122 |
-
msgid "
|
1123 |
-
msgstr "
|
1124 |
|
1125 |
-
#: ../
|
1126 |
-
msgid "
|
|
|
|
|
1127 |
msgstr ""
|
1128 |
-
"
|
1129 |
-
|
1130 |
-
#: ../subscribers/view-subscriber-import.php:150
|
1131 |
-
msgid "Upload email"
|
1132 |
-
msgstr "Otpremi email"
|
1133 |
|
1134 |
-
#: ../
|
1135 |
-
msgid "
|
1136 |
-
msgstr "
|
1137 |
|
1138 |
-
#: ../
|
1139 |
msgid ""
|
1140 |
-
"
|
1141 |
-
"
|
1142 |
msgstr ""
|
1143 |
-
"
|
|
|
1144 |
|
1145 |
-
#: ../
|
1146 |
-
msgid "
|
1147 |
-
msgstr "
|
1148 |
|
1149 |
-
#: ../
|
1150 |
-
#: ../subscribers/view-subscriber-show.php:125
|
1151 |
msgid ""
|
1152 |
-
"
|
|
|
1153 |
msgstr ""
|
1154 |
-
"
|
|
|
1155 |
|
1156 |
-
#: ../
|
1157 |
-
msgid "
|
1158 |
-
msgstr "
|
1159 |
|
1160 |
-
#: ../
|
1161 |
-
|
1162 |
-
|
1163 |
-
|
1164 |
-
msgstr "
|
|
|
|
|
1165 |
|
1166 |
-
#: ../
|
1167 |
-
msgid "
|
1168 |
-
msgstr "
|
1169 |
|
1170 |
-
#: ../
|
1171 |
-
msgid "
|
1172 |
-
|
|
|
|
|
|
|
|
|
1173 |
|
1174 |
-
#: ../
|
1175 |
-
msgid "
|
1176 |
-
msgstr "
|
1177 |
|
1178 |
-
#: ../
|
1179 |
-
msgid "
|
1180 |
-
msgstr "
|
1181 |
|
1182 |
-
#: ../
|
1183 |
-
|
1184 |
-
|
1185 |
-
msgstr "Grupa"
|
1186 |
|
1187 |
-
#: ../
|
1188 |
-
|
1189 |
-
|
1190 |
-
msgstr "Status"
|
1191 |
|
1192 |
-
#: ../
|
1193 |
-
msgid "
|
|
|
|
|
1194 |
msgstr ""
|
|
|
|
|
1195 |
|
1196 |
-
#: ../
|
1197 |
-
msgid "
|
|
|
|
|
1198 |
msgstr ""
|
|
|
|
|
1199 |
|
1200 |
-
#: ../
|
1201 |
-
msgid "
|
|
|
|
|
1202 |
msgstr ""
|
|
|
|
|
|
|
1203 |
|
1204 |
-
#: ../
|
1205 |
-
msgid "
|
|
|
|
|
1206 |
msgstr ""
|
|
|
|
|
1207 |
|
1208 |
-
#: ../
|
1209 |
-
#: ../subscribers/view-subscriber-show.php:338
|
1210 |
-
msgid "Email address"
|
1211 |
-
msgstr "Email adresa"
|
1212 |
-
|
1213 |
-
#: ../subscribers/view-subscriber-show.php:385
|
1214 |
-
#: ../subscribers/view-subscriber-show.php:423
|
1215 |
-
msgid "Resend Confirmation"
|
1216 |
-
msgstr "Ponovo pošalji potvrdu"
|
1217 |
-
|
1218 |
-
#: ../subscribers/view-subscriber-show.php:401
|
1219 |
msgid ""
|
1220 |
-
"
|
|
|
|
|
1221 |
msgstr ""
|
1222 |
-
"
|
1223 |
-
"
|
1224 |
-
|
1225 |
-
#: ../subscribers/view-subscriber-show.php:421
|
1226 |
-
msgid "Bulk Actions"
|
1227 |
-
msgstr "Grupne akcije"
|
1228 |
-
|
1229 |
-
#: ../subscribers/view-subscriber-show.php:424
|
1230 |
-
msgid "Update Subscribers Group"
|
1231 |
-
msgstr "Ažuriraj grupu pretplatnika"
|
1232 |
-
|
1233 |
-
#: ../subscribers/view-subscriber-show.php:427
|
1234 |
-
msgid "Select Group"
|
1235 |
-
msgstr "Odaberi grupu"
|
1236 |
|
1237 |
-
#: ../
|
1238 |
-
msgid "
|
1239 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1240 |
|
1241 |
-
#: ../
|
1242 |
-
|
1243 |
-
|
1244 |
-
|
|
|
|
|
|
|
1245 |
|
1246 |
-
#: ../
|
1247 |
-
|
1248 |
-
|
1249 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1250 |
|
1251 |
-
#: ../
|
1252 |
-
|
1253 |
-
|
1254 |
-
|
1255 |
-
|
|
|
|
|
|
|
|
|
1256 |
|
1257 |
-
#: ../
|
1258 |
-
|
1259 |
-
|
1260 |
-
|
1261 |
-
|
|
|
|
|
|
|
|
|
1262 |
|
1263 |
-
#: ../
|
1264 |
-
|
1265 |
-
|
1266 |
-
|
|
|
|
|
|
|
|
|
|
|
1267 |
|
1268 |
-
#: ../
|
1269 |
-
|
1270 |
-
|
1271 |
-
|
|
|
|
|
|
|
|
|
|
|
1272 |
|
1273 |
-
#: ../
|
1274 |
-
msgid "
|
|
|
|
|
|
|
1275 |
msgstr ""
|
|
|
|
|
|
|
1276 |
|
1277 |
-
#: ../
|
1278 |
msgid ""
|
1279 |
-
"
|
|
|
|
|
1280 |
msgstr ""
|
|
|
|
|
|
|
1281 |
|
1282 |
-
#: ../
|
1283 |
-
|
1284 |
-
|
1285 |
-
|
1286 |
-
|
|
|
|
|
|
|
|
|
1287 |
|
1288 |
-
#: ../
|
1289 |
-
msgid "
|
|
|
|
|
|
|
|
|
1290 |
msgstr ""
|
|
|
|
|
|
|
|
|
1291 |
|
1292 |
-
#: ../
|
1293 |
msgid ""
|
1294 |
-
"
|
1295 |
-
"
|
|
|
1296 |
msgstr ""
|
|
|
|
|
|
|
1297 |
|
1298 |
-
|
1299 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1300 |
|
1301 |
-
|
1302 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Loco Gettext template
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
+
"Project-Id-Version: Email Subscribers\n"
|
5 |
+
"Report-Msgid-Bugs-To: \n"
|
6 |
+
"POT-Creation-Date: Tue Feb 09 2016 16:21:13 GMT+0530 (IST)\n"
|
7 |
+
"POT-Revision-Date: Fri Mar 18 2016 14:56:24 GMT+0530 (IST)\n"
|
8 |
+
"PO-Revision-Date: 2016-04-08 14:52+0100\n"
|
9 |
+
"Last-Translator: Borisa Djuraskovic <borisad@webhostinghub.com>\n"
|
10 |
"Language-Team: \n"
|
11 |
+
"Plural-Forms: nplurals=2; plural=n == 1;\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: Poedit 1.5.7\n"
|
23 |
"X-Poedit-SearchPath-0: ..\n"
|
24 |
|
25 |
+
#. Name of the plugin
|
26 |
+
msgid "Email Subscribers"
|
27 |
+
msgstr "Email Subscribers"
|
|
|
|
|
28 |
|
29 |
+
#. URI of the plugin
|
30 |
+
msgid "http://www.storeapps.org"
|
31 |
+
msgstr "http://www.storeapps.org"
|
32 |
|
33 |
+
#. Description of the plugin
|
34 |
+
msgid ""
|
35 |
+
"Email subscribers plugin has options to send newsletters to subscribers. It "
|
36 |
+
"has a separate page with HTML editor to create a HTML newsletter. Also have "
|
37 |
+
"options to send notification email to subscribers when new posts are "
|
38 |
+
"published to your blog. Separate page available to include and exclude "
|
39 |
+
"categories to send notifications."
|
40 |
+
msgstr ""
|
41 |
+
"Email subscribers plugin ima opcju da salje novosti pretplatnicima. Ima "
|
42 |
+
"odvojenu stranicu sa HTML editorom za stvaranje HTML novosti. Takodje ima "
|
43 |
+
"opciju za slanje notifikacija mejlom pretplatnicima kad god se novi postovi "
|
44 |
+
"objave na vasem blogu.Odvojenim stranicama je dozvoljeno da ukljuce i "
|
45 |
+
"iskljuce kategorije za slanje notifikacija."
|
46 |
+
|
47 |
+
#. Author of the plugin
|
48 |
+
msgid "Store Apps"
|
49 |
+
msgstr "Aplikacije iz radnje"
|
50 |
|
51 |
+
#: ../settings/setting-sync.php:8
|
52 |
+
msgid "Table sync completed successfully."
|
53 |
+
msgstr "Sinhronizacija tabele je uspesno zavrsena"
|
54 |
|
55 |
+
#: ../settings/setting-sync.php:21
|
56 |
+
msgid "Sync plugin tables"
|
57 |
+
msgstr "Sinhronizacija plugin tabela"
|
58 |
|
59 |
+
#: ../settings/setting-sync.php:25
|
60 |
+
msgid "Click to sync tables"
|
61 |
+
msgstr "Kliknite ovde za sinhronizaciju tabela"
|
62 |
+
|
63 |
+
#: ../settings/settings-edit.php:11 ../sentmail/sentmail-show.php:18 ..
|
64 |
+
#: /sentmail/sentmail-preview.php:12
|
65 |
+
#: ../subscribers/view-subscriber-edit.php:12
|
66 |
+
#: /subscribers/view-subscriber-show.php:46
|
67 |
+
#: ../notification/notification-edit.php:11
|
68 |
+
#: ../notification/notification-show.php:16 ../compose/compose-edit.php:11
|
69 |
+
#: /compose/compose-show.php:30 ../compose/compose-preview.php:10
|
70 |
+
msgid "Oops, selected details doesnt exist."
|
71 |
+
msgstr "Ups, selektovani detalji ne postoje"
|
72 |
|
73 |
+
#: ../settings/settings-edit.php:102
|
74 |
+
msgid "Please enter sender of notifications from name."
|
75 |
+
msgstr "Unesite ime posaljioca notifikacije."
|
76 |
|
77 |
+
#: ../settings/settings-edit.php:108
|
78 |
+
msgid "Please enter sender of notifications from email."
|
79 |
+
msgstr "Unesite posaljioca notifikacije sa mejla."
|
|
|
80 |
|
81 |
+
#: ../settings/settings-edit.php:143
|
82 |
+
msgid "Details was successfully updated."
|
83 |
+
msgstr "Detalji su uspesno azurirani."
|
|
|
|
|
84 |
|
85 |
+
#: ../settings/settings-edit.php:148
|
86 |
+
msgid "Oops, details not update."
|
87 |
+
msgstr "Ups, detalji nisu azurirani."
|
88 |
|
89 |
+
#: ../settings/settings-edit.php:173 ../subscribers/view-subscriber-add.php:92
|
90 |
+
#: .. /subscribers/view-subscriber-add.php:101
|
91 |
+
#: ../subscribers/view-subscriber-edit. php:86
|
92 |
+
#: ../subscribers/view-subscriber-import.php:107 ../subscribers/view-
|
93 |
+
#: subscriber-import.php:138 ../notification/notification-edit.php:100
|
94 |
+
#: /notification/notification-add.php:91 ../compose/compose-edit.php:71
|
95 |
+
#: /compose/compose-add.php:60 ../roles/roles-add.php:81
|
96 |
+
msgid "Click here"
|
97 |
+
msgstr "Kliknite ovde"
|
98 |
+
|
99 |
+
#: ../settings/settings-edit.php:174 ../subscribers/view-subscriber-add.php:92
|
100 |
+
#: .. /subscribers/view-subscriber-add.php:101
|
101 |
+
#: ../subscribers/view-subscriber-edit. php:86
|
102 |
+
#: ../subscribers/view-subscriber-import.php:107 ../subscribers/view-
|
103 |
+
#: subscriber-import.php:138 ../notification/notification-edit.php:101
|
104 |
+
#: /notification/notification-add.php:92 ../compose/compose-edit.php:72
|
105 |
+
#: /compose/compose-add.php:61 ../roles/roles-add.php:81
|
106 |
+
msgid " to view the details"
|
107 |
+
msgstr "Da biste videli detalje"
|
108 |
|
109 |
+
#: ../settings/settings-edit.php:189 ../classes/es-register.php:151
|
110 |
+
#: ../classes/es- register.php:152
|
111 |
msgid "Settings"
|
112 |
msgstr "Postavke"
|
113 |
|
114 |
+
#: ../settings/settings-edit.php:195
|
115 |
+
msgid "Sender of notifications"
|
116 |
+
msgstr "Posaljilac notifikacija"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
|
118 |
+
#: ../settings/settings-edit.php:196
|
119 |
+
msgid ""
|
120 |
+
"Choose a FROM name and FROM email address for all notifications emails from "
|
121 |
+
"this plugin."
|
122 |
+
msgstr ""
|
123 |
+
"Izberite IZ imena i IZ mejl adrese za sve mejlove sa notifikacijama za ovaj "
|
124 |
+
"plugin."
|
125 |
|
126 |
+
#: ../settings/settings-edit.php:205 ../compose/compose-edit.php:85 ..
|
127 |
+
#: /compose/compose-add.php:72
|
128 |
+
msgid "Mail type"
|
129 |
+
msgstr "Tip mejla"
|
130 |
|
131 |
+
#: ../settings/settings-edit.php:206
|
132 |
+
msgid ""
|
133 |
+
"Option 1 & 2 is to send mails with default Wordpress method wp_mail(). "
|
134 |
+
"Option 3 & 4 is to send mails with PHP method mail()"
|
135 |
+
msgstr ""
|
136 |
+
"Opcija 1 & 2 su slanje mejlova sa default Wordpress metodom wp_mail(). "
|
137 |
+
"Opcija 3 & 4 je za slanje mejlova PHP metodom mail()"
|
138 |
|
139 |
+
#: ../settings/settings-edit.php:220
|
140 |
+
msgid "Opt-in option"
|
141 |
+
msgstr "Opt-in opcija"
|
142 |
|
143 |
+
#: ../settings/settings-edit.php:221
|
144 |
+
msgid ""
|
145 |
+
"Double Opt In, means subscribers need to confirm their email address by an "
|
146 |
+
"activation link sent them on a activation email message. Single Opt In, "
|
147 |
+
"means subscribers do not need to confirm their email address."
|
148 |
+
msgstr ""
|
149 |
+
"Double Opt In, znaci da pretplatnici moraju da potvrde svoju emejl adresu "
|
150 |
+
"aktivacionim linkom koji im stize sa ativacionim mejlom. Single Opt In, "
|
151 |
+
"znaci da pretplatnici ne moraju da potvrde svoju emejl adresu."
|
152 |
|
153 |
+
#: ../settings/settings-edit.php:232
|
154 |
+
msgid "Opt-in mail subject (Confirmation mail)"
|
155 |
+
msgstr "Naslov Opt-in mejla (Konformacioni mejl)"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
156 |
|
157 |
+
#: ../settings/settings-edit.php:233
|
158 |
+
msgid ""
|
159 |
+
"Enter the subject for Double Opt In mail. This will send whenever subscriber "
|
160 |
+
"added email into our database."
|
161 |
+
msgstr ""
|
162 |
+
"Unesite naslov za Double Opt In mejl. Ovo ce se slati svaki put kada "
|
163 |
+
"pretplatnik ubaci svoju adresu u bazu podataka."
|
|
|
|
|
|
|
164 |
|
165 |
+
#: ../settings/settings-edit.php:239
|
166 |
+
msgid "Opt-in mail content (Confirmation mail)"
|
167 |
+
msgstr "Sadrzaj Opt-in mejla (Konformacioni mejl)"
|
|
|
168 |
|
169 |
+
#: ../settings/settings-edit.php:240
|
170 |
+
msgid ""
|
171 |
+
"Enter the content for Double Opt In mail. This will send whenever subscriber "
|
172 |
+
"added email into our database."
|
173 |
+
msgstr ""
|
174 |
+
"Unesite sadrzaj za Double Opt In mejl. Ovo ce se slati svaki put kada "
|
175 |
+
"pretplatnik ubaci svoju adresu u bazu podataka."
|
176 |
|
177 |
+
#: ../settings/settings-edit.php:246
|
178 |
+
msgid "Opt-in link (Confirmation link)"
|
179 |
+
msgstr "Opt-in link (Konformacioni link"
|
|
|
180 |
|
181 |
+
#: ../settings/settings-edit.php:247
|
182 |
+
msgid "Double Opt In confirmation link. You no need to change this value."
|
183 |
+
msgstr "Double Opt In konformacioni link. Ne treba da menjate ovu vrednost."
|
184 |
|
185 |
+
#: ../settings/settings-edit.php:253
|
186 |
+
msgid "Text to display after email subscribed successfully"
|
187 |
+
msgstr "Tekst koji ce se prikazati nakon uspesnog mejla pretplatnika"
|
188 |
|
189 |
+
#: ../settings/settings-edit.php:254
|
190 |
+
msgid ""
|
191 |
+
"This text will display once user clicked email confirmation link from opt-in "
|
192 |
+
"(confirmation) email content."
|
193 |
+
msgstr ""
|
194 |
+
"Ovaj tekst ce se prikazati kada korisnik klikne na mejl sa konformacionim "
|
195 |
+
"linkom iz opt-in (konformacionog) sadrzaja mejla"
|
196 |
|
197 |
+
#: ../settings/settings-edit.php:261
|
198 |
+
msgid "Subscriber welcome email"
|
199 |
+
msgstr "Mejl dobrodoslice za pretplatnike"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
200 |
|
201 |
+
#: ../settings/settings-edit.php:262
|
202 |
+
msgid "To send welcome mail to subscriber, This option must be set to YES."
|
203 |
+
msgstr ""
|
204 |
+
"Da biste poslali mejl dobrodoslice pretplatniku, Ova opcija mora da bude "
|
205 |
+
"podesena na DA."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
206 |
|
207 |
+
#: ../settings/settings-edit.php:273
|
208 |
+
msgid "Welcome mail subject"
|
209 |
+
msgstr "Naslov mejla dobrodoslice"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
210 |
|
211 |
+
#: ../settings/settings-edit.php:274
|
212 |
+
msgid ""
|
213 |
+
"Enter the subject for subscriber welcome mail. This will send whenever email "
|
214 |
+
"subscribed (confirmed) successfully."
|
215 |
+
msgstr ""
|
216 |
+
"Unesite naslov mejla dobrodoslice. Ovo ce se slati svaki put kada "
|
217 |
+
"pretplatnik potvrdi uspesnu pretplatu."
|
218 |
|
219 |
+
#: ../settings/settings-edit.php:280
|
220 |
+
msgid "Subscriber welcome mail content"
|
221 |
+
msgstr "Sadrzaj mejla dobrodorslice pretplatniku"
|
222 |
|
223 |
+
#: ../settings/settings-edit.php:281
|
224 |
+
msgid ""
|
225 |
+
"Enter the content for subscriber welcome mail. This will send whenever email "
|
226 |
+
"subscribed (confirmed) successfully."
|
227 |
+
msgstr ""
|
228 |
+
"Unesite sadrzaj mejla dobrodorslice pretplatniku. Ovo ce se slati svaki put "
|
229 |
+
"kada pretplatnik potvrdi uspesnu pretplatu."
|
230 |
|
231 |
+
#: ../settings/settings-edit.php:289
|
232 |
+
msgid "Mail to admin"
|
233 |
+
msgstr "Mejl adminu"
|
|
|
|
|
234 |
|
235 |
+
#: ../settings/settings-edit.php:290
|
236 |
+
msgid ""
|
237 |
+
"To send admin notifications for new subscriber, This option must be set to "
|
238 |
+
"YES."
|
239 |
+
msgstr ""
|
240 |
+
"Da biste poslali notifikaciju od admina novom pretplatniku, Ova opcija mora "
|
241 |
+
"da bude podesena na DA."
|
242 |
|
243 |
+
#: ../settings/settings-edit.php:301
|
244 |
+
msgid "Admin email addresses"
|
245 |
+
msgstr "Emjel adresa admina"
|
|
|
|
|
246 |
|
247 |
+
#: ../settings/settings-edit.php:302
|
248 |
+
msgid ""
|
249 |
+
"Enter the admin email addresses that should receive notifications (separate "
|
250 |
+
"by comma)."
|
251 |
+
msgstr ""
|
252 |
+
"Unesite mejla admina koji zelite da primi notifikaciju (razdvojite zarezima)"
|
|
|
253 |
|
254 |
+
#: ../settings/settings-edit.php:308
|
255 |
+
msgid "Admin mail subject"
|
256 |
+
msgstr "Naslov mejla admina"
|
257 |
|
258 |
+
#: ../settings/settings-edit.php:309
|
259 |
+
msgid ""
|
260 |
+
"Enter the subject for admin mail. This will send whenever new email added "
|
261 |
+
"and confirmed into our database."
|
262 |
+
msgstr ""
|
263 |
+
"Unesite naslov mejla za admina. Ovo ce se slati svaki put kada novi "
|
264 |
+
"pretplatnik bude dodat i potvrdjen u nasoj bazi podataka.."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
265 |
|
266 |
+
#: ../settings/settings-edit.php:315
|
267 |
+
msgid "Admin mail content"
|
268 |
+
msgstr "Sadrzaj mejla admina"
|
|
|
|
|
269 |
|
270 |
+
#: ../settings/settings-edit.php:316
|
271 |
+
msgid ""
|
272 |
+
"Enter the mail content for admin. This will send whenever new email added "
|
273 |
+
"and confirmed into our database."
|
274 |
+
msgstr ""
|
275 |
+
"Unesite sadrzaj mejla za admina. Ovo ce se slati svaki put kada novi mejl "
|
276 |
+
"bude dodat i potvrdjen u nasoj bazi podataka.."
|
277 |
|
278 |
+
#: ../settings/settings-edit.php:323
|
279 |
+
msgid "Unsubscribe link"
|
280 |
+
msgstr "Link za ukidanje pretplate"
|
|
|
281 |
|
282 |
+
#: ../settings/settings-edit.php:324
|
283 |
+
msgid "Unsubscribe link. You no need to change this value."
|
284 |
+
msgstr "Link za ukidanje pretplate. Treba da promenite ovu vrednost."
|
|
|
285 |
|
286 |
+
#: ../settings/settings-edit.php:330
|
287 |
+
msgid "Unsubscribe text in mail"
|
288 |
+
msgstr "Tekst za mejl ukidanja pretplate"
|
|
|
289 |
|
290 |
+
#: ../settings/settings-edit.php:331
|
291 |
+
msgid ""
|
292 |
+
"Enter the text for unsubscribe link. This text is to add unsubscribe link "
|
293 |
+
"with newsletter."
|
294 |
msgstr ""
|
295 |
+
"Unesite tekst za link za ukidanje pretplate. Ovaj tekst treba da doda link "
|
296 |
+
"za ukidanje pretplate sa novostima."
|
297 |
|
298 |
+
#: ../settings/settings-edit.php:337
|
299 |
+
msgid "Text to display after email unsubscribed"
|
300 |
+
msgstr "Tekst koji ce se prikazati nakon mejla ukidanja pretplate"
|
301 |
|
302 |
+
#: ../settings/settings-edit.php:338
|
303 |
msgid ""
|
304 |
+
"This text will display once user clicked unsubscribed link from our "
|
305 |
+
"newsletter."
|
306 |
msgstr ""
|
307 |
+
"Ovaj tekst ce se prikazati kada korisnik klikne na link za ukidanje "
|
308 |
+
"pretplate nasih novosti."
|
309 |
|
310 |
+
#: ../settings/settings-edit.php:345
|
311 |
+
msgid "Message 1"
|
312 |
+
msgstr "Poruka 1"
|
|
|
313 |
|
314 |
+
#: ../settings/settings-edit.php:346
|
315 |
+
msgid "Default message to display if any issue on confirmation link."
|
316 |
msgstr ""
|
317 |
+
"Default poruka za pokaz ako bude neki problem sa linkom za konformaciju."
|
318 |
|
319 |
+
#: ../settings/settings-edit.php:352
|
320 |
+
msgid "Message 2"
|
321 |
+
msgstr "Poruka 2"
|
|
|
322 |
|
323 |
+
#: ../settings/settings-edit.php:353
|
324 |
+
msgid "Default message to display if any issue on unsubscribe link."
|
325 |
msgstr ""
|
326 |
+
"Default poruka za pokaz ako bude neki problem sa linkom za ukidanje "
|
327 |
+
"pretplate."
|
328 |
|
329 |
+
#: ../settings/settings-edit.php:360
|
330 |
+
msgid "Sent report subject"
|
331 |
+
msgstr "Naslov poslatog izvestaja"
|
332 |
|
333 |
+
#: ../settings/settings-edit.php:361
|
334 |
+
msgid "Mail subject for sent mail report."
|
335 |
+
msgstr "Naslov mejla za poslati izvestaj mejla"
|
|
|
|
|
|
|
336 |
|
337 |
+
#: ../settings/settings-edit.php:367
|
338 |
+
msgid "Sent report content"
|
339 |
+
msgstr "Izvestaj poslatog sadrzaja"
|
340 |
|
341 |
+
#: ../settings/settings-edit.php:368
|
342 |
+
msgid "Mail content for sent mail report."
|
343 |
+
msgstr "Sadrzaj mejla za slanje izvestaja mejla."
|
344 |
|
345 |
+
#: ../settings/settings-edit.php:379
|
346 |
+
msgid "Save Settings"
|
347 |
+
msgstr "Sacuvati postavke"
|
348 |
|
349 |
+
#: ../settings/settings-edit.php:380
|
350 |
+
#: ../subscribers/view-subscriber-add.php:154 ..
|
351 |
+
#: /subscribers/view-subscriber-sync.php:157
|
352 |
+
#: ../subscribers/view-subscriber-edit. php:147
|
353 |
+
#: ../notification/notification-edit.php:237 ../notification/notification-
|
354 |
+
#: add.php:216 ../compose/compose-edit.php:112 ../compose/compose-add.php:99
|
355 |
+
#: /cron/cron-add.php:90 ../sendmail/sendmail.php:260
|
356 |
+
#: ../roles/roles-add.php:154
|
357 |
+
msgid "Cancel"
|
358 |
+
msgstr "Ukinuti"
|
359 |
+
|
360 |
+
#: ../settings/settings-edit.php:381 ../sentmail/sentmail-preview.php:33 ..
|
361 |
+
#: /sentmail/deliverreport-show.php:120
|
362 |
+
#: ../subscribers/view-subscriber-add.php:155
|
363 |
+
#: ../subscribers/view-subscriber-sync.php:158 ../subscribers/view-subscriber-
|
364 |
+
#: export.php:68 ../subscribers/view-subscriber-edit.php:148
|
365 |
+
#: ../subscribers/view- subscriber-import.php:189
|
366 |
+
#: ../subscribers/view-subscriber-show.php:448
|
367 |
+
#: /notification/notification-edit.php:238
|
368 |
+
#: ../notification/notification-add.php:217
|
369 |
+
#: ../notification/notification-show.php:152 ../compose/compose-edit.php:113 .
|
370 |
+
#: compose/compose-show.php:120 ../compose/compose-preview.php:30
|
371 |
+
#: /compose/compose-add.php:100 ../cron/cron-add.php:91
|
372 |
+
#: ../sendmail/sendmail.php:261 ../roles/roles-add.php:155
|
373 |
+
msgid "Help"
|
374 |
+
msgstr "Pomoc"
|
375 |
|
376 |
#: ../job/es-optin.php:64 ../job/es-optin.php:79 ../job/es-unsubscribe.php:60
|
377 |
+
#: .. /job/es-unsubscribe.php:70
|
378 |
msgid ""
|
379 |
"Oops.. We are getting some technical error. Please try again or contact "
|
380 |
"admin."
|
381 |
msgstr ""
|
382 |
+
"Ups..Naisli smo na tehnicku gresku. Pokusajte ponovo ili kontaktirajjte "
|
383 |
+
"admina."
|
384 |
|
385 |
#: ../job/es-optin.php:69
|
386 |
msgid "This email address has already been confirmed."
|
387 |
+
msgstr "Ova mejl adresa je vec potvrdjena."
|
388 |
|
389 |
+
#: ../sentmail/sentmail-show.php:33 ../subscribers/view-subscriber-show.php:60
|
390 |
+
#: .. /subscribers/view-subscriber-show.php:104
|
391 |
+
#: ../notification/notification-show. php:31 ../compose/compose-show.php:45
|
392 |
+
msgid "Selected record was successfully deleted."
|
393 |
+
msgstr "Selekovani zapis i uspesno obrisan."
|
394 |
|
395 |
+
#: ../sentmail/sentmail-show.php:42
|
396 |
+
msgid "Successfully deleted all reports except latest 10."
|
397 |
+
msgstr "Uspesno obrisani svi izvestaji osim poslednjih 10."
|
|
|
|
|
|
|
398 |
|
399 |
+
#: ../sentmail/sentmail-show.php:53 ../classes/es-register.php:157
|
400 |
+
#: ../classes/es- register.php:158
|
401 |
+
msgid "Sent Mails"
|
402 |
+
msgstr "Poslati mejlovi"
|
|
|
|
|
|
|
|
|
|
|
403 |
|
404 |
+
#: ../sentmail/sentmail-show.php:71 ../sentmail/sentmail-show.php:84
|
405 |
+
msgid "View Reports"
|
406 |
+
msgstr "Pregled izvestaja"
|
|
|
|
|
|
|
407 |
|
408 |
+
#: ../sentmail/sentmail-show.php:72 ../sentmail/sentmail-show.php:85 ..
|
409 |
+
#: /compose/compose-show.php:100
|
410 |
+
msgid "Preview"
|
411 |
+
msgstr "Pregled"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
412 |
|
413 |
+
#: ../sentmail/sentmail-show.php:73 ../sentmail/sentmail-show.php:86
|
414 |
+
msgid "Source"
|
415 |
+
msgstr "Izvor"
|
416 |
+
|
417 |
+
#: ../sentmail/sentmail-show.php:74 ../sentmail/sentmail-show.php:87 ..
|
418 |
+
#: /sentmail/deliverreport-show.php:40 ../sentmail/deliverreport-show.php:52
|
419 |
+
#: /subscribers/view-subscriber-add.php:121
|
420 |
+
#: ../subscribers/view-subscriber-edit. php:105
|
421 |
+
#: ../subscribers/view-subscriber-import.php:155 ../subscribers/view-
|
422 |
+
#: subscriber-show.php:327 ../subscribers/view-subscriber-show.php:340
|
423 |
+
#: /compose/compose-edit.php:102 ../compose/compose-show.php:70
|
424 |
+
#: /compose/compose-show.php:78 ../compose/compose-add.php:90
|
425 |
+
msgid "Status"
|
426 |
+
msgstr "Status"
|
427 |
|
428 |
+
#: ../sentmail/sentmail-show.php:75 ../sentmail/sentmail-show.php:88 ..
|
429 |
+
#: /sentmail/deliverreport-show.php:41 ../sentmail/deliverreport-show.php:53
|
430 |
+
#: /compose/compose-show.php:71 ../compose/compose-show.php:79
|
431 |
+
msgid "Type"
|
432 |
+
msgstr "Tip"
|
433 |
|
434 |
+
#: ../sentmail/sentmail-show.php:76 ../sentmail/sentmail-show.php:89
|
435 |
+
msgid "Start Date"
|
436 |
+
msgstr "Datum pocetka"
|
|
|
437 |
|
438 |
+
#: ../sentmail/sentmail-show.php:77 ../sentmail/sentmail-show.php:90
|
439 |
+
msgid "End Date"
|
440 |
+
msgstr "Zavrsni datum"
|
|
|
|
|
441 |
|
442 |
+
#: ../sentmail/sentmail-show.php:78 ../sentmail/sentmail-show.php:91
|
443 |
+
msgid "Total"
|
444 |
+
msgstr "Ukupno"
|
445 |
|
446 |
+
#: ../sentmail/sentmail-show.php:79 ../sentmail/sentmail-show.php:92 ..
|
447 |
+
#: /subscribers/view-subscriber-export.php:30 ../subscribers/view-subscriber-
|
448 |
+
#: export.php:38 ../subscribers/view-subscriber-show.php:330
|
449 |
+
#: ../subscribers/view- subscriber-show.php:343 ../compose/compose-show.php:72
|
450 |
+
#: ../compose/compose-show. php:80
|
451 |
+
msgid "Action"
|
452 |
+
msgstr "Akcija"
|
453 |
|
454 |
+
#: ../sentmail/sentmail-show.php:131 ../sentmail/deliverreport-show.php:84 ..
|
455 |
+
#: /notification/notification-show.php:141 ../compose/compose-show.php:109
|
456 |
+
msgid "No records available."
|
457 |
+
msgstr "Nema dostupnih zapisa"
|
458 |
|
459 |
+
#: ../sentmail/sentmail-show.php:143 ../sentmail/deliverreport-show.php:96
|
460 |
+
msgid " << "
|
461 |
+
msgstr " << "
|
462 |
|
463 |
+
#: ../sentmail/sentmail-show.php:144 ../sentmail/deliverreport-show.php:97
|
464 |
+
msgid " >> "
|
465 |
+
msgstr " >> "
|
466 |
|
467 |
+
#: ../sentmail/sentmail-show.php:167 ../sentmail/sentmail-show.php:169
|
468 |
+
msgid "Optimize Table"
|
469 |
+
msgstr "Optimiziraj tabelu"
|
470 |
|
471 |
+
#: ../sentmail/sentmail-show.php:179
|
472 |
msgid ""
|
473 |
+
"Note: Please click <strong>Optimize Table</strong> button to delete all "
|
474 |
+
"reports except latest 10."
|
475 |
msgstr ""
|
476 |
+
"Beleska: Kliknite na<strong>Optimiziraj tabelu</strong> dugme da biste "
|
477 |
+
"obrisali sve izvestaje osim poslednjih 10."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
478 |
|
479 |
+
#: ../sentmail/sentmail-preview.php:19 ../compose/compose-preview.php:16
|
480 |
+
msgid "Preview Mail"
|
481 |
+
msgstr "Prethodni mejl"
|
482 |
|
483 |
+
#: ../sentmail/sentmail-preview.php:32 ../sentmail/deliverreport-show.php:119
|
484 |
+
#: .. /subscribers/view-subscriber-export.php:67
|
485 |
+
#: ../subscribers/view-subscriber- import.php:188
|
486 |
+
#: ../compose/compose-preview.php:28
|
487 |
+
msgid "Back"
|
488 |
+
msgstr "Nazada"
|
489 |
|
490 |
#: ../sentmail/deliverreport-show.php:11
|
491 |
msgid "Oops.. Unexpected error occurred. Please try again."
|
492 |
+
msgstr "Ups..Neocekivana greska je nastala. Pokusajte ponovo."
|
493 |
|
494 |
#: ../sentmail/deliverreport-show.php:19
|
495 |
msgid "Delivery Report"
|
496 |
+
msgstr "Izvestaj o dostavljanju"
|
497 |
|
498 |
#: ../sentmail/deliverreport-show.php:37 ../sentmail/deliverreport-show.php:49
|
499 |
+
#: .. /subscribers/view-subscriber-export.php:27
|
500 |
+
#: ../subscribers/view-subscriber- export.php:35
|
501 |
+
#: ../subscribers/view-subscriber-show.php:324 ../subscribers/view-
|
502 |
+
#: subscriber-show.php:337
|
503 |
msgid "Sno"
|
504 |
msgstr "Sno"
|
505 |
|
513 |
|
514 |
#: ../sentmail/deliverreport-show.php:42 ../sentmail/deliverreport-show.php:54
|
515 |
msgid "Viewed Status"
|
516 |
+
msgstr "Status pregled"
|
517 |
|
518 |
#: ../sentmail/deliverreport-show.php:43 ../sentmail/deliverreport-show.php:55
|
519 |
msgid "Viewed Date"
|
520 |
msgstr "Datum pregleda"
|
521 |
|
522 |
#: ../sentmail/deliverreport-show.php:44 ../sentmail/deliverreport-show.php:56
|
523 |
+
#: .. /subscribers/view-subscriber-show.php:329
|
524 |
+
#: ../subscribers/view-subscriber-show. php:342
|
525 |
msgid "Database ID"
|
526 |
+
msgstr "ID baza podataka"
|
527 |
|
528 |
+
#: ../classes/es-loadwidget.php:24 ../classes/es-register.php:415 ..
|
529 |
+
#: /subscribers/view-subscriber-show.php:326
|
530 |
+
#: ../subscribers/view-subscriber-show. php:339
|
531 |
+
msgid "Name"
|
532 |
+
msgstr "Ime"
|
533 |
|
534 |
+
#: ../classes/es-loadwidget.php:29 ../classes/es-register.php:420
|
535 |
+
msgid "Email *"
|
536 |
+
msgstr "Email *"
|
537 |
|
538 |
+
#: ../classes/es-loadwidget.php:34 ../classes/es-register.php:425
|
539 |
+
msgid "Subscribe"
|
540 |
+
msgstr "Pretplati se"
|
541 |
|
542 |
+
#: ../classes/es-register.php:136 ../classes/es-register.php:137
|
543 |
+
msgid "Subscribers"
|
544 |
+
msgstr "Pretplatnici"
|
545 |
|
546 |
+
#: ../classes/es-register.php:139 ../classes/es-register.php:140
|
547 |
+
msgid "Compose"
|
548 |
+
msgstr "Komponuj"
|
|
|
549 |
|
550 |
+
#: ../classes/es-register.php:142 ../classes/es-register.php:143 ..
|
551 |
+
#: /notification/notification-show.php:44
|
552 |
+
msgid "Notification"
|
553 |
+
msgstr "Notifikacija"
|
554 |
|
555 |
+
#: ../classes/es-register.php:145 ../classes/es-register.php:146 ..
|
556 |
+
#: /sendmail/sendmail.php:94 ../sendmail/sendmail.php:256
|
557 |
+
#: ../sendmail/sendmail. php:258
|
558 |
+
msgid "Send Email"
|
559 |
+
msgstr "Posalji emejl"
|
560 |
|
561 |
+
#: ../classes/es-register.php:148
|
562 |
+
msgid "Cron"
|
563 |
+
msgstr "Cron"
|
|
|
564 |
|
565 |
+
#: ../classes/es-register.php:149
|
566 |
+
msgid "Cron Mail"
|
567 |
+
msgstr "Cron mejl"
|
568 |
|
569 |
+
#: ../classes/es-register.php:154 ../classes/es-register.php:155
|
570 |
+
msgid "Roles"
|
571 |
+
msgstr "Uloge"
|
|
|
|
|
|
|
|
|
572 |
|
573 |
+
#: ../classes/es-register.php:160
|
574 |
+
msgid "Help & Info"
|
575 |
+
msgstr "Pomoc i informacije"
|
|
|
576 |
|
577 |
+
#: ../classes/es-register.php:161
|
578 |
+
msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info"
|
579 |
+
msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Pomoc i informacije"
|
580 |
|
581 |
+
#: ../classes/es-register.php:172
|
582 |
+
msgctxt "view-subscriber-enhanced-select"
|
583 |
+
msgid "Please enter subscriber email address."
|
584 |
+
msgstr "Unesite emejl adresu pretplatnika."
|
585 |
|
586 |
+
#: ../classes/es-register.php:173
|
587 |
+
msgctxt "view-subscriber-enhanced-select"
|
588 |
+
msgid "Please select subscriber email status."
|
589 |
+
msgstr "Selektujte status mejla pretplatnicima."
|
590 |
|
591 |
+
#: ../classes/es-register.php:174
|
592 |
+
msgctxt "view-subscriber-enhanced-select"
|
593 |
+
msgid "Please select or create group for this subscriber."
|
594 |
+
msgstr "Selektujte ili napravite grupu za ovog pretplatnika."
|
595 |
+
|
596 |
+
#: ../classes/es-register.php:175
|
597 |
+
msgctxt "view-subscriber-enhanced-select"
|
598 |
+
msgid "Do you want to delete this record?"
|
599 |
+
msgstr "Da li zelite da obrisete ovaj zapis?"
|
600 |
+
|
601 |
+
#: ../classes/es-register.php:176
|
602 |
+
msgctxt "view-subscriber-enhanced-select"
|
603 |
+
msgid "Please select the bulk action."
|
604 |
+
msgstr "Selektujte bulk akciju."
|
605 |
+
|
606 |
+
#: ../classes/es-register.php:177
|
607 |
+
msgctxt "view-subscriber-enhanced-select"
|
608 |
+
msgid "Do you want to delete selected record(s)?"
|
609 |
+
msgstr "Da li zelite da obriste selektovane zapis(e)?"
|
610 |
+
|
611 |
+
#: ../classes/es-register.php:178
|
612 |
+
msgctxt "view-subscriber-enhanced-select"
|
613 |
+
msgid "Are you sure you want to delete?"
|
614 |
+
msgstr "Da li ste sigurni da zelite da obrisete?"
|
615 |
+
|
616 |
+
#: ../classes/es-register.php:179
|
617 |
+
msgctxt "view-subscriber-enhanced-select"
|
618 |
+
msgid ""
|
619 |
+
"Do you want to resend confirmation email? \\nAlso please note, this will "
|
620 |
+
"update subscriber current status to 'Unconfirmed'."
|
621 |
+
msgstr ""
|
622 |
+
"Da li zelite da posaljete ponovo konformacioni emejl? \\nTakodje imajte na "
|
623 |
+
"umu da ce ovo azurirati trenutni statu pretplatnika u ‘Nepotvrdjeno’"
|
624 |
|
625 |
+
#: ../classes/es-register.php:180
|
626 |
+
msgctxt "view-subscriber-enhanced-select"
|
627 |
+
msgid "Please select new subscriber group."
|
628 |
+
msgstr "Izaberite novu grupu pretplatnika."
|
629 |
|
630 |
+
#: ../classes/es-register.php:181
|
631 |
+
msgctxt "view-subscriber-enhanced-select"
|
632 |
+
msgid "Do you want to update subscribers group?"
|
633 |
+
msgstr "Da li zelite da azurirate grupu pretplatnika?"
|
634 |
|
635 |
+
#: ../classes/es-register.php:182
|
636 |
+
msgctxt "view-subscriber-enhanced-select"
|
637 |
+
msgid "Do you want to export the emails?"
|
638 |
+
msgstr "Da li zelite da eksportujete mejlove?"
|
639 |
|
640 |
+
#: ../classes/es-register.php:183
|
641 |
+
msgctxt "view-subscriber-enhanced-select"
|
642 |
msgid ""
|
643 |
+
"Please select only csv file. Please check official website for csv "
|
644 |
+
"structure.."
|
645 |
msgstr ""
|
646 |
+
"Selektujte samo csv fajl. Proverite oficijalni sajt za csv strukturu.."
|
647 |
|
648 |
+
#: ../classes/es-register.php:191
|
649 |
+
msgctxt "compose-enhanced-select"
|
650 |
+
msgid "Please enter name for configuration."
|
651 |
+
msgstr "Unesite ime za konfiguraciju."
|
|
|
|
|
|
|
652 |
|
653 |
+
#: ../classes/es-register.php:192
|
654 |
+
msgctxt "compose-enhanced-select"
|
655 |
+
msgid "Please select template for this configuration."
|
656 |
+
msgstr "Izaberite template za ovu konfiguraciju."
|
657 |
|
658 |
+
#: ../classes/es-register.php:193
|
659 |
+
msgctxt "compose-enhanced-select"
|
660 |
+
msgid "Do you want to delete this record?"
|
661 |
+
msgstr "Da li zelite da obrisete ovaj zapis?"
|
|
|
|
|
|
|
|
|
|
|
|
|
662 |
|
663 |
+
#: ../classes/es-register.php:201
|
664 |
+
msgctxt "notification-enhanced-select"
|
665 |
+
msgid "Please select subscribers group."
|
666 |
+
msgstr "Izaberite grupu pretplatnika."
|
667 |
|
668 |
+
#: ../classes/es-register.php:202
|
669 |
+
msgctxt "notification-enhanced-select"
|
670 |
msgid ""
|
671 |
+
"Please select notification mail subject. Use compose menu to create new."
|
|
|
672 |
msgstr ""
|
673 |
+
"Izaberie naslov mejla notifikacije. Koristite meni za komponovanje da "
|
674 |
+
"stvorite novi."
|
675 |
|
676 |
+
#: ../classes/es-register.php:203
|
677 |
+
msgctxt "notification-enhanced-select"
|
678 |
+
msgid "Please select notification status."
|
679 |
+
msgstr "Izaberite status notifikacije."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
680 |
|
681 |
+
#: ../classes/es-register.php:204
|
682 |
+
msgctxt "notification-enhanced-select"
|
683 |
+
msgid "Do you want to delete this record?"
|
684 |
+
msgstr "Da li zelite da obrisete ovaj zapis?"
|
685 |
|
686 |
+
#: ../classes/es-register.php:212
|
687 |
+
msgctxt "sendmail-enhanced-select"
|
688 |
+
msgid "Please select your mail subject."
|
689 |
+
msgstr "Izaberite naslov vaseg mejla."
|
690 |
|
691 |
+
#: ../classes/es-register.php:213
|
692 |
+
msgctxt "sendmail-enhanced-select"
|
693 |
+
msgid "Please select subscriber email status."
|
694 |
+
msgstr "Izaberite status mejla pretplatnika."
|
695 |
|
696 |
+
#: ../classes/es-register.php:214
|
697 |
+
msgctxt "sendmail-enhanced-select"
|
698 |
+
msgid "Are you sure you want to send email to all selected email address?"
|
|
|
699 |
msgstr ""
|
700 |
+
"Da li ste sigurni da zelite da posaljete mejl svim emejl adresama koje ste "
|
701 |
+
"selektovali?"
|
|
|
|
|
|
|
|
|
702 |
|
703 |
+
#: ../classes/es-register.php:226
|
704 |
+
msgctxt "sentmail-enhanced-select"
|
705 |
+
msgid "Do you want to delete this record?"
|
706 |
+
msgstr "Da li zelite da obrisete ovaj zapis?"
|
|
|
707 |
|
708 |
+
#: ../classes/es-register.php:227
|
709 |
+
msgctxt "sentmail-enhanced-select"
|
710 |
+
msgid "Do you want to delete all records except latest 10?"
|
711 |
+
msgstr "Da li zelite da obrisete sve zapise sem poslednih 10?"
|
712 |
|
713 |
+
#: ../classes/es-register.php:235
|
714 |
+
msgctxt "roles-enhanced-select"
|
715 |
+
msgid "Please enter subscriber email address."
|
716 |
+
msgstr "Unesite emejl adresu retplatnika"
|
|
|
|
|
|
|
717 |
|
718 |
+
#: ../classes/es-register.php:236
|
719 |
+
msgctxt "roles-enhanced-select"
|
720 |
+
msgid "Please select subscriber email status."
|
721 |
+
msgstr "Unesite status mejla pretplatnika"
|
722 |
|
723 |
+
#: ../classes/es-register.php:237
|
724 |
+
msgctxt "roles-enhanced-select"
|
725 |
+
msgid "Please select or create group for this subscriber."
|
726 |
+
msgstr "Izaberite ili kreirajte grupu za ovog pretplatnika."
|
727 |
+
|
728 |
+
#: ../classes/es-register.php:245
|
729 |
+
msgctxt "cron-enhanced-select"
|
730 |
+
msgid "Please select enter number of mails you want to send per hour/trigger."
|
731 |
+
msgstr ""
|
732 |
+
"Izaberite broj za unos mejlova koje hocete da posaljete po satu/okidac."
|
733 |
+
|
734 |
+
#: ../classes/es-register.php:246
|
735 |
+
msgctxt "cron-enhanced-select"
|
736 |
+
msgid "Please enter the mail count, only number."
|
737 |
+
msgstr "Unesite samo broj mejlova."
|
738 |
+
|
739 |
+
#: ../classes/es-register.php:258
|
740 |
+
msgctxt "widget-enhanced-select"
|
741 |
+
msgid "Please enter email address."
|
742 |
+
msgstr "Unesite emejl adresu"
|
743 |
+
|
744 |
+
#: ../classes/es-register.php:259
|
745 |
+
msgctxt "widget-enhanced-select"
|
746 |
+
msgid "Please provide a valid email address."
|
747 |
+
msgstr "Omogucite validnu emejl adresu."
|
748 |
+
|
749 |
+
#: ../classes/es-register.php:260
|
750 |
+
msgctxt "widget-enhanced-select"
|
751 |
+
msgid "loading..."
|
752 |
+
msgstr "ucitavanje..."
|
753 |
+
|
754 |
+
#: ../classes/es-register.php:261
|
755 |
+
msgctxt "widget-enhanced-select"
|
756 |
+
msgid "Cannot create XMLHTTP instance"
|
757 |
+
msgstr "Ne moze da se stvori XMLHTTP instance"
|
758 |
+
|
759 |
+
#: ../classes/es-register.php:262
|
760 |
+
msgctxt "widget-enhanced-select"
|
761 |
+
msgid "Subscribed successfully."
|
762 |
+
msgstr "Pretplaceni uspesno."
|
763 |
+
|
764 |
+
#: ../classes/es-register.php:263
|
765 |
+
msgctxt "widget-enhanced-select"
|
766 |
msgid ""
|
767 |
+
"You have successfully subscribed to the newsletter. You will receive a "
|
768 |
+
"confirmation email in a few minutes. Please follow the link in it to confirm "
|
769 |
+
"your subscription. If the email takes more than 15 minutes to appear in your "
|
770 |
+
"mailbox, please check your spam folder."
|
771 |
+
msgstr ""
|
772 |
+
"Uspesno ste se pretplatili na novosti. Primicete konformacioni mejl kroz "
|
773 |
+
"nekoliko minuta. Pratite link u njemu da biste potvrdili vasu pretplatu. Ako "
|
774 |
+
"mejlu treba vise od 15 minuta da se pojavi u inboxu, proverite vas Spam "
|
775 |
+
"folder."
|
776 |
+
|
777 |
+
#: ../classes/es-register.php:264
|
778 |
+
msgctxt "widget-enhanced-select"
|
779 |
+
msgid "Email already exist."
|
780 |
+
msgstr "Emejl vec postoji."
|
781 |
+
|
782 |
+
#: ../classes/es-register.php:265
|
783 |
+
msgctxt "widget-enhanced-select"
|
784 |
+
msgid "Oops.. Unexpected error occurred."
|
785 |
+
msgstr "Ups.. Neocokivana greska se pojavila."
|
786 |
+
|
787 |
+
#: ../classes/es-register.php:266
|
788 |
+
msgctxt "widget-enhanced-select"
|
789 |
+
msgid "Invalid email address."
|
790 |
+
msgstr "Nepostojeca emejl adresa"
|
791 |
+
|
792 |
+
#: ../classes/es-register.php:267
|
793 |
+
msgctxt "widget-enhanced-select"
|
794 |
+
msgid "Please try after some time."
|
795 |
+
msgstr "Pokusajte opet nakon nekog vremena."
|
796 |
+
|
797 |
+
#: ../classes/es-register.php:268
|
798 |
+
msgctxt "widget-enhanced-select"
|
799 |
+
msgid "There was a problem with the request."
|
800 |
+
msgstr "Nastao je problem sa zahtevom."
|
801 |
+
|
802 |
+
#: ../classes/es-register.php:275
|
803 |
+
msgctxt "widget-page-enhanced-select"
|
804 |
+
msgid "Please enter email address."
|
805 |
+
msgstr "Unesite emejl adresu."
|
806 |
+
|
807 |
+
#: ../classes/es-register.php:276
|
808 |
+
msgctxt "widget-page-enhanced-select"
|
809 |
+
msgid "Please provide a valid email address."
|
810 |
+
msgstr "Omogicite validnu emejl adresu."
|
811 |
+
|
812 |
+
#: ../classes/es-register.php:277
|
813 |
+
msgctxt "widget-page-enhanced-select"
|
814 |
+
msgid "loading..."
|
815 |
+
msgstr "ucitavanje..."
|
816 |
+
|
817 |
+
#: ../classes/es-register.php:278
|
818 |
+
msgctxt "widget-page-enhanced-select"
|
819 |
+
msgid "Cannot create XMLHTTP instance"
|
820 |
+
msgstr "Ne moze da se stvori XMLHTTP instance"
|
821 |
+
|
822 |
+
#: ../classes/es-register.php:279
|
823 |
+
msgctxt "widget-page-enhanced-select"
|
824 |
+
msgid "Subscribed successfully."
|
825 |
+
msgstr "Pretplaceni uspesno."
|
826 |
+
|
827 |
+
#: ../classes/es-register.php:280
|
828 |
+
msgctxt "widget-page-enhanced-select"
|
829 |
+
msgid ""
|
830 |
+
"You have successfully subscribed to the newsletter. You will receive a "
|
831 |
+
"confirmation email in a few minutes. Please follow the link in it to confirm "
|
832 |
+
"your subscription. If the email takes more than 15 minutes to appear in your "
|
833 |
+
"mailbox, please check your spam folder."
|
834 |
+
msgstr ""
|
835 |
+
"Uspesno ste se pretplatili na novosti. Primicete konformacioni mejl kroz "
|
836 |
+
"nekoliko minuta. Pratite link u njemu da biste potvrdili vasu pretplatu. Ako "
|
837 |
+
"mejlu treba vise od 15 minuta da se pojavi u inboxu, proverite vas Spam "
|
838 |
+
"folder."
|
839 |
+
|
840 |
+
#: ../classes/es-register.php:281
|
841 |
+
msgctxt "widget-page-enhanced-select"
|
842 |
+
msgid "Email already exist."
|
843 |
+
msgstr "Emejl vec postoji."
|
844 |
+
|
845 |
+
#: ../classes/es-register.php:282
|
846 |
+
msgctxt "widget-page-enhanced-select"
|
847 |
+
msgid "Oops.. Unexpected error occurred."
|
848 |
+
msgstr "Ups.. Neocokivana greska se pojavila."
|
849 |
+
|
850 |
+
#: ../classes/es-register.php:283
|
851 |
+
msgctxt "widget-page-enhanced-select"
|
852 |
+
msgid "Invalid email address."
|
853 |
+
msgstr "Nepostijeca emejl adresa."
|
854 |
+
|
855 |
+
#: ../classes/es-register.php:284
|
856 |
+
msgctxt "widget-page-enhanced-select"
|
857 |
+
msgid "Please try after some time."
|
858 |
+
msgstr "Pokusajte ponovo kasnije."
|
859 |
+
|
860 |
+
#: ../classes/es-register.php:285
|
861 |
+
msgctxt "widget-page-enhanced-select"
|
862 |
+
msgid "There was a problem with the request."
|
863 |
+
msgstr "Nastao je problem sa zahtevom."
|
864 |
+
|
865 |
+
#: ../classes/es-register.php:461
|
866 |
+
msgid "Widget Title"
|
867 |
+
msgstr "Naslov widget-a"
|
868 |
|
869 |
+
#: ../classes/es-register.php:465
|
870 |
+
msgid "Display Name Field"
|
871 |
+
msgstr "Prikazi ime polja"
|
872 |
+
|
873 |
+
#: ../classes/es-register.php:472
|
874 |
+
msgid "Short Description"
|
875 |
+
msgstr "Kratak opis"
|
876 |
|
877 |
+
#: ../classes/es-register.php:474
|
878 |
+
msgid "Short description about your subscription form."
|
879 |
+
msgstr "Kratak opis vase forme pretplatnika."
|
880 |
+
|
881 |
+
#: ../classes/es-register.php:477
|
882 |
+
msgid "Subscriber Group"
|
883 |
+
msgstr "Grupa pretplatnika."
|
884 |
+
|
885 |
+
#: ../subscribers/view-subscriber-add.php:28
|
886 |
+
#: ../subscribers/view-subscriber-add. php:119
|
887 |
+
#: ../subscribers/view-subscriber-edit.php:43 ../subscribers/view-
|
888 |
+
#: subscriber-edit.php:103
|
889 |
+
msgid "Please enter subscriber email address."
|
890 |
+
msgstr "Unesite emejl adresu pretplatnika."
|
891 |
+
|
892 |
+
#: ../subscribers/view-subscriber-add.php:45
|
893 |
+
msgid "Please select or create your group for this email."
|
894 |
+
msgstr "Izaberite ili kreirajte grupu za ovaj emejl."
|
895 |
+
|
896 |
+
#: ../subscribers/view-subscriber-add.php:54 ../subscribers/view-subscriber-
|
897 |
+
#: import.php:45
|
898 |
msgid ""
|
899 |
+
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
900 |
+
"the group name."
|
901 |
msgstr ""
|
902 |
+
"Greska: Posebni karakteri (['^$%&*()}{@#~?><>,|=_+\\\"]) nisu dozvoljeni u "
|
903 |
+
"imenu grupe."
|
904 |
|
905 |
+
#: ../subscribers/view-subscriber-add.php:66
|
906 |
+
msgid "Email was successfully inserted."
|
907 |
+
msgstr "Emejl je uspesno unet."
|
908 |
+
|
909 |
+
#: ../subscribers/view-subscriber-add.php:70
|
910 |
+
msgid "Email already exist in our list."
|
911 |
+
msgstr "Emejl vec postoji u listi."
|
912 |
+
|
913 |
+
#: ../subscribers/view-subscriber-add.php:75
|
914 |
+
msgid "Email is invalid."
|
915 |
+
msgstr "Emejjl nije validan."
|
916 |
+
|
917 |
+
#: ../subscribers/view-subscriber-add.php:111
|
918 |
+
msgid "Add email"
|
919 |
+
msgstr "Dodajte emejl"
|
920 |
+
|
921 |
+
#: ../subscribers/view-subscriber-add.php:113
|
922 |
+
#: ../subscribers/view-subscriber-edit. php:97
|
923 |
+
msgid "Enter full name"
|
924 |
+
msgstr "Unesite celo ime"
|
925 |
+
|
926 |
+
#: ../subscribers/view-subscriber-add.php:115
|
927 |
+
#: ../subscribers/view-subscriber-edit. php:99
|
928 |
+
msgid "Please enter subscriber full name."
|
929 |
+
msgstr "Unesite puno ime pretplatnika."
|
930 |
+
|
931 |
+
#: ../subscribers/view-subscriber-add.php:117
|
932 |
+
#: ../subscribers/view-subscriber-edit. php:101
|
933 |
+
msgid "Enter email address."
|
934 |
+
msgstr "Unesite mejl adresu"
|
935 |
|
936 |
+
#: ../subscribers/view-subscriber-add.php:128
|
937 |
+
#: ../subscribers/view-subscriber-edit. php:112
|
938 |
+
#: ../subscribers/view-subscriber-import.php:162
|
939 |
+
msgid "Please select subscriber email status."
|
940 |
+
msgstr "Unesite status za mejl pretplatnika."
|
941 |
+
|
942 |
+
#: ../subscribers/view-subscriber-add.php:130 ../subscribers/view-subscriber-
|
943 |
+
#: import.php:164
|
944 |
+
msgid "Select (or) Create Group"
|
945 |
+
msgstr "Izaberite (ili) Kreirajte grupu"
|
946 |
+
|
947 |
+
#: ../subscribers/view-subscriber-add.php:132
|
948 |
+
#: ../subscribers/view-subscriber-sync. php:99
|
949 |
+
#: ../subscribers/view-subscriber-sync.php:130 ../subscribers/view-
|
950 |
+
#: subscriber-edit.php:116 ../subscribers/view-subscriber-import.php:166 ..
|
951 |
+
#: /notification/notification-edit.php:122
|
952 |
+
#: ../notification/notification-add.php:105
|
953 |
+
#: ../notification/notification-add.php:123 ../sendmail/sendmail.php:107
|
954 |
+
#: /sendmail/sendmail.php:153
|
955 |
+
msgid "Select"
|
956 |
+
msgstr "Izaberite"
|
957 |
+
|
958 |
+
#: ../subscribers/view-subscriber-add.php:148
|
959 |
+
#: ../subscribers/view-subscriber-edit. php:140
|
960 |
+
#: ../subscribers/view-subscriber-import.php:182
|
961 |
+
msgid "Please select or create group for this subscriber."
|
962 |
+
msgstr "Izaberite ili kreirajte grupu za ove pretplatnike."
|
963 |
+
|
964 |
+
#: ../subscribers/view-subscriber-add.php:153
|
965 |
+
#: ../subscribers/view-subscriber-sync. php:156
|
966 |
+
#: ../subscribers/view-subscriber-edit.php:146 ..
|
967 |
+
#: /notification/notification-edit.php:236
|
968 |
+
#: ../notification/notification-add.php:215 ../compose/compose-edit.php:111
|
969 |
+
#: ../compose/compose-add.php:98 ../cron/cron- add.php:89
|
970 |
+
#: ../roles/roles-add.php:153
|
971 |
+
msgid "Submit"
|
972 |
+
msgstr "Podnesi"
|
973 |
+
|
974 |
+
#: ../subscribers/view-subscriber-sync.php:33
|
975 |
+
#: ../subscribers/view-subscriber-sync. php:119
|
976 |
+
msgid "Please select default group to newly registered user."
|
977 |
+
msgstr "Izaberite opstu grupu novije registrovanih korisnika."
|
978 |
+
|
979 |
+
#: ../subscribers/view-subscriber-sync.php:39
|
980 |
+
#: ../subscribers/view-subscriber-sync. php:150
|
981 |
+
msgid "Please select default group to newly commented user."
|
982 |
+
msgstr "Selektujte opstu grupu novijih korisnika koji su komentarisali."
|
983 |
+
|
984 |
+
#: ../subscribers/view-subscriber-sync.php:56
|
985 |
+
msgid "Sync email successfully updated."
|
986 |
+
msgstr "Sinhronizovane mejla je uspesno azurirano."
|
987 |
+
|
988 |
+
#: ../subscribers/view-subscriber-sync.php:88
|
989 |
+
msgid "Sync email"
|
990 |
+
msgstr "Sinhronizuj emejl"
|
991 |
+
|
992 |
+
#: ../subscribers/view-subscriber-sync.php:90
|
993 |
+
msgid "Sync newly registered user"
|
994 |
+
msgstr "Sinhronizovati novog registrovanog korisnika "
|
995 |
+
|
996 |
+
#: ../subscribers/view-subscriber-sync.php:95
|
997 |
msgid ""
|
998 |
+
"Automatically add a newly registered user email address to subscribers list."
|
|
|
999 |
msgstr ""
|
1000 |
+
"Automatski dodati mejl adresu novog registrovanog korisnika na listu "
|
1001 |
+
"pretplatnika."
|
1002 |
|
1003 |
+
#: ../subscribers/view-subscriber-sync.php:97
|
1004 |
+
#: ../subscribers/view-subscriber-sync. php:128
|
1005 |
+
msgid "Select default group"
|
1006 |
+
msgstr "Izabrati osnovnu grupu"
|
1007 |
|
1008 |
+
#: ../subscribers/view-subscriber-sync.php:121
|
1009 |
+
msgid "Sync newly commented user"
|
1010 |
+
msgstr "Sinhronizovati novog korisnika koji je komentarisao"
|
1011 |
+
|
1012 |
+
#: ../subscribers/view-subscriber-sync.php:126
|
1013 |
msgid ""
|
1014 |
+
"Automatically add a newly commented (who posted comments) user email address "
|
1015 |
+
"to subscribers list."
|
1016 |
msgstr ""
|
1017 |
+
"Automatski dodaj mejl adrese sa novijih komentaria (ko je postovao "
|
1018 |
+
"komentare) u listu pretplatnika."
|
1019 |
|
1020 |
+
#: ../subscribers/view-subscriber-export.php:22
|
1021 |
+
msgid "Export email address in csv format"
|
1022 |
+
msgstr "Eksportuj mejl adrese u csv format"
|
1023 |
+
|
1024 |
+
#: ../subscribers/view-subscriber-export.php:28
|
1025 |
+
#: ../subscribers/view-subscriber- export.php:36
|
1026 |
+
msgid "Export option"
|
1027 |
+
msgstr "Opcija eksportovanja"
|
1028 |
+
|
1029 |
+
#: ../subscribers/view-subscriber-export.php:29
|
1030 |
+
#: ../subscribers/view-subscriber- export.php:37
|
1031 |
+
msgid "Total email"
|
1032 |
+
msgstr "Total mejl"
|
1033 |
+
|
1034 |
+
#: ../subscribers/view-subscriber-export.php:44
|
1035 |
+
msgid "Subscriber email address"
|
1036 |
+
msgstr "Emejl adresa pretplatnika"
|
1037 |
+
|
1038 |
+
#: ../subscribers/view-subscriber-export.php:46
|
1039 |
+
#: ../subscribers/view-subscriber- export.php:52
|
1040 |
+
#: ../subscribers/view-subscriber-export.php:58
|
1041 |
+
msgid "Click to export csv"
|
1042 |
+
msgstr "Kliknite ovde za eksportovanje csv"
|
1043 |
+
|
1044 |
+
#: ../subscribers/view-subscriber-export.php:50
|
1045 |
+
msgid "Registered email address"
|
1046 |
+
msgstr "Registrovana emejl adresa"
|
1047 |
+
|
1048 |
+
#: ../subscribers/view-subscriber-export.php:56
|
1049 |
+
msgid "Comments author email address"
|
1050 |
+
msgstr "Komentari autora mejl adrese"
|
1051 |
+
|
1052 |
+
#: ../subscribers/view-subscriber-export.php:65
|
1053 |
+
msgid "Add Email"
|
1054 |
+
msgstr "Dodaj mejl"
|
1055 |
+
|
1056 |
+
#: ../subscribers/view-subscriber-export.php:66
|
1057 |
+
#: ../subscribers/view-subscriber- show.php:445
|
1058 |
+
msgid "Import Email"
|
1059 |
+
msgstr "Unesi mejl"
|
1060 |
+
|
1061 |
+
#: ../subscribers/view-subscriber-edit.php:54
|
1062 |
+
msgid "Error: Special characters are not allowed in the group name."
|
1063 |
+
msgstr "Greska: Posebni karakteri nisu dozvoljeni u imenu grupe."
|
1064 |
+
|
1065 |
+
#: ../subscribers/view-subscriber-edit.php:66
|
1066 |
+
msgid "Email was successfully updated."
|
1067 |
+
msgstr "Emejl je uspesno update-ovan."
|
1068 |
+
|
1069 |
+
#: ../subscribers/view-subscriber-edit.php:70
|
1070 |
+
msgid "Email already exist for this group."
|
1071 |
+
msgstr "Emejl vec postoji za ovu grupu."
|
1072 |
+
|
1073 |
+
#: ../subscribers/view-subscriber-edit.php:95
|
1074 |
+
msgid "Edit email"
|
1075 |
+
msgstr "Edituj mejl"
|
1076 |
|
1077 |
+
#: ../subscribers/view-subscriber-edit.php:114 ../subscribers/view-subscriber-
|
1078 |
+
#: show.php:328 ../subscribers/view-subscriber-show.php:341
|
1079 |
+
msgid "Group"
|
1080 |
+
msgstr "Grupa"
|
1081 |
+
|
1082 |
+
#: ../subscribers/view-subscriber-import.php:103
|
1083 |
+
msgid "Email(s) was successfully imported."
|
1084 |
+
msgstr "Mejl(ovi) su uspesno azurirani."
|
1085 |
+
|
1086 |
+
#: ../subscribers/view-subscriber-import.php:104
|
1087 |
+
msgid "Email(s) are already in our database."
|
1088 |
+
msgstr "Mejl(ovi) su vec u bazi podataka."
|
1089 |
+
|
1090 |
+
#: ../subscribers/view-subscriber-import.php:105
|
1091 |
+
msgid "Email(s) are invalid."
|
1092 |
+
msgstr "Mejl(ovi) su nevazeci"
|
1093 |
+
|
1094 |
+
#: ../subscribers/view-subscriber-import.php:115
|
1095 |
+
msgid "File upload failed or no data available in the csv file."
|
1096 |
+
msgstr "Uload fajla nije uspeo ili podaci nisu dostupni u csv fajlu."
|
1097 |
+
|
1098 |
+
#: ../subscribers/view-subscriber-import.php:149
|
1099 |
+
msgid "Upload email"
|
1100 |
+
msgstr "Upload-uj mejl"
|
1101 |
+
|
1102 |
+
#: ../subscribers/view-subscriber-import.php:150
|
1103 |
+
msgid "Select csv file"
|
1104 |
+
msgstr "Selektujete csv fajl"
|
1105 |
+
|
1106 |
+
#: ../subscribers/view-subscriber-import.php:152
|
1107 |
msgid ""
|
1108 |
+
"Please select the input csv file. Please check official website for csv "
|
1109 |
+
"structure."
|
1110 |
msgstr ""
|
1111 |
+
"Selektujte input od csv fajla. Proverite oficijalni sajt za csv strukturu."
|
|
|
1112 |
|
1113 |
+
#: ../subscribers/view-subscriber-import.php:187
|
1114 |
+
msgid "Upload CSV"
|
1115 |
+
msgstr "Upload-uj CSV"
|
1116 |
|
1117 |
+
#: ../subscribers/view-subscriber-show.php:11 ../compose/compose-show.php:10
|
1118 |
+
#: .. /sendmail/sendmail.php:11
|
1119 |
+
msgid "Click Here"
|
1120 |
+
msgstr "Kliknite ovde"
|
1121 |
+
|
1122 |
+
#: ../subscribers/view-subscriber-show.php:72
|
1123 |
+
#: ../subscribers/view-subscriber-show. php:125
|
1124 |
+
msgid ""
|
1125 |
+
"To send confirmation mail, Please change the Opt-in option to Double Opt In."
|
1126 |
+
msgstr ""
|
1127 |
+
"Da biste poslali konformacioni mejl, promenite Opt-in opciju u Double Opt In."
|
1128 |
+
|
1129 |
+
#: ../subscribers/view-subscriber-show.php:81
|
1130 |
+
msgid "Confirmation email resent successfully."
|
1131 |
+
msgstr "Konformacioni mejl je polat uspesno."
|
1132 |
+
|
1133 |
+
#: ../subscribers/view-subscriber-show.php:110 ../subscribers/view-subscriber-
|
1134 |
+
#: show.php:156 ../subscribers/view-subscriber-show.php:201
|
1135 |
+
msgid "Oops, No record was selected."
|
1136 |
+
msgstr "Ups, nijedan posatak nije izabran"
|
1137 |
+
|
1138 |
+
#: ../subscribers/view-subscriber-show.php:150
|
1139 |
+
msgid "Confirmation email(s) resent successfully."
|
1140 |
+
msgstr "Konformacioni mejl(ovi) uspesno poslati"
|
1141 |
+
|
1142 |
+
#: ../subscribers/view-subscriber-show.php:186
|
1143 |
+
msgid "Selected subscribers group was successfully updated."
|
1144 |
+
msgstr "Selektovane grupe pretplatnika su uspesno azurirane."
|
1145 |
+
|
1146 |
+
#: ../subscribers/view-subscriber-show.php:192
|
1147 |
+
msgid "Oops, New group name was not selected."
|
1148 |
+
msgstr "Ups, ime nove grupe nije izabrano."
|
1149 |
+
|
1150 |
+
#: ../subscribers/view-subscriber-show.php:232
|
1151 |
+
msgid "View subscriber"
|
1152 |
+
msgstr "Pregled pretplatnika"
|
1153 |
+
|
1154 |
+
#: ../subscribers/view-subscriber-show.php:233 ../subscribers/view-subscriber-
|
1155 |
+
#: show.php:444 ../notification/notification-show.php:45 ..
|
1156 |
+
#: /notification/notification-show.php:151 ../compose/compose-show.php:59
|
1157 |
+
#: /compose/compose-show.php:119
|
1158 |
+
msgid "Add New"
|
1159 |
+
msgstr "Dodaj novo"
|
1160 |
+
|
1161 |
+
#: ../subscribers/view-subscriber-show.php:280
|
1162 |
+
msgid "All Groups"
|
1163 |
+
msgstr "Sve grupe"
|
1164 |
+
|
1165 |
+
#: ../subscribers/view-subscriber-show.php:299
|
1166 |
+
msgid "All Status"
|
1167 |
+
msgstr "Svi statusi"
|
1168 |
+
|
1169 |
+
#: ../subscribers/view-subscriber-show.php:300
|
1170 |
+
msgid "Confirmed"
|
1171 |
+
msgstr "Potvrdjeno"
|
1172 |
+
|
1173 |
+
#: ../subscribers/view-subscriber-show.php:301
|
1174 |
+
msgid "Unconfirmed"
|
1175 |
+
msgstr "Nije potvdjeno"
|
1176 |
+
|
1177 |
+
#: ../subscribers/view-subscriber-show.php:302
|
1178 |
+
msgid "Unsubscribed"
|
1179 |
+
msgstr "Ukini pretplatu"
|
1180 |
+
|
1181 |
+
#: ../subscribers/view-subscriber-show.php:303
|
1182 |
+
msgid "Single Opt In"
|
1183 |
+
msgstr "Single Opt In"
|
1184 |
+
|
1185 |
+
#: ../subscribers/view-subscriber-show.php:325 ../subscribers/view-subscriber-
|
1186 |
+
#: show.php:338
|
1187 |
+
msgid "Email address"
|
1188 |
+
msgstr "Mejl adresa"
|
1189 |
+
|
1190 |
+
#: ../subscribers/view-subscriber-show.php:374
|
1191 |
+
#: ../notification/notification-show. php:90 ../compose/compose-show.php:98
|
1192 |
+
#: ../compose/compose-preview.php:29
|
1193 |
+
msgid "Edit"
|
1194 |
+
msgstr "Editovati"
|
1195 |
+
|
1196 |
+
#: ../subscribers/view-subscriber-show.php:377 ../subscribers/view-subscriber-
|
1197 |
+
#: show.php:422 ../notification/notification-show.php:93
|
1198 |
+
#: ../compose/compose-show. php:99
|
1199 |
+
msgid "Delete"
|
1200 |
+
msgstr "Odrisati"
|
1201 |
+
|
1202 |
+
#: ../subscribers/view-subscriber-show.php:385 ../subscribers/view-subscriber-
|
1203 |
+
#: show.php:423
|
1204 |
+
msgid "Resend Confirmation"
|
1205 |
+
msgstr "Ponovo posalji konformaciju"
|
1206 |
+
|
1207 |
+
#: ../subscribers/view-subscriber-show.php:401
|
1208 |
+
msgid ""
|
1209 |
+
"No records available. Please use the above alphabet search button to search."
|
1210 |
+
msgstr "Nema dostupnih podataka"
|
1211 |
+
|
1212 |
+
#: ../subscribers/view-subscriber-show.php:421
|
1213 |
+
msgid "Bulk Actions"
|
1214 |
+
msgstr "Bulk akcije"
|
1215 |
+
|
1216 |
+
#: ../subscribers/view-subscriber-show.php:424
|
1217 |
+
msgid "Update Subscribers Group"
|
1218 |
+
msgstr "Azuriraj grupu pretplatnika"
|
1219 |
+
|
1220 |
+
#: ../subscribers/view-subscriber-show.php:427
|
1221 |
+
msgid "Select Group"
|
1222 |
+
msgstr "Selektuj grupu"
|
1223 |
+
|
1224 |
+
#: ../subscribers/view-subscriber-show.php:441
|
1225 |
+
msgid "Apply"
|
1226 |
+
msgstr "Primeni"
|
1227 |
+
|
1228 |
+
#: ../subscribers/view-subscriber-show.php:446
|
1229 |
+
msgid "Export Email"
|
1230 |
+
msgstr "Eksportuj mejl"
|
1231 |
+
|
1232 |
+
#: ../subscribers/view-subscriber-show.php:447
|
1233 |
+
msgid "Sync Email"
|
1234 |
+
msgstr "Sinhronizuj mejl"
|
1235 |
+
|
1236 |
+
#: ../notification/notification-edit.php:40
|
1237 |
+
#: ../notification/notification-add.php:26
|
1238 |
+
#: ../notification/notification-add.php:119
|
1239 |
+
msgid "Please select subscribers group."
|
1240 |
+
msgstr "Selektuj grupu pretplatnika."
|
1241 |
+
|
1242 |
+
#: ../notification/notification-edit.php:46
|
1243 |
+
#: ../notification/notification-edit.php:231
|
1244 |
+
#: ../notification/notification-add.php:32 ../notification/notification-add.
|
1245 |
+
#: php:211
|
1246 |
+
msgid "Please select notification status."
|
1247 |
+
msgstr "Selektuj status notifikacije."
|
1248 |
+
|
1249 |
+
#: ../notification/notification-edit.php:52
|
1250 |
+
#: ../notification/notification-edit.php:142
|
1251 |
+
#: ../notification/notification-add.php:38 ../notification/notification-add.
|
1252 |
+
#: php:138
|
1253 |
+
msgid ""
|
1254 |
+
"Please select notification mail subject. Use compose menu to create new."
|
1255 |
+
msgstr ""
|
1256 |
+
"Selektujte naslov mejla sa notifikacijom, Koristite meni za komponovanje da "
|
1257 |
+
"napravite novi."
|
1258 |
+
|
1259 |
+
#: ../notification/notification-edit.php:58
|
1260 |
+
#: ../notification/notification-edit.php:182
|
1261 |
+
#: ../notification/notification-add.php:44 ../notification/notification-add.
|
1262 |
+
#: php:170
|
1263 |
+
msgid "Please select post categories."
|
1264 |
+
msgstr "Selektujte kategoriju posta."
|
1265 |
+
|
1266 |
+
#: ../notification/notification-edit.php:84
|
1267 |
+
msgid "Notification was successfully updated."
|
1268 |
+
msgstr "Notifikacije su uspesno azurirane."
|
1269 |
+
|
1270 |
+
#: ../notification/notification-edit.php:111
|
1271 |
+
msgid "Edit Notification"
|
1272 |
+
msgstr "Edituj notifikacije"
|
1273 |
+
|
1274 |
+
#: ../notification/notification-edit.php:114
|
1275 |
+
#: ../notification/notification-add.php:103
|
1276 |
+
#: ../notification/notification-show.php:56 ../notification/notification-show.
|
1277 |
+
#: php:64
|
1278 |
+
msgid "Subscribers Group"
|
1279 |
+
msgstr "Grupa pretplatnika"
|
1280 |
+
|
1281 |
+
#: ../notification/notification-edit.php:118
|
1282 |
+
msgid "Not allowed to update the subscribers group in edit page."
|
1283 |
+
msgstr "Nije dozvoljeno azurirati grupu pretplatnika u stranici za editovanje."
|
1284 |
+
|
1285 |
+
#: ../notification/notification-edit.php:120
|
1286 |
+
#: ../notification/notification-add.php:121
|
1287 |
+
msgid "Notification Mail"
|
1288 |
+
msgstr "Mejl notifikacije"
|
1289 |
+
|
1290 |
+
#: ../notification/notification-edit.php:144
|
1291 |
+
#: ../notification/notification-add.php:140
|
1292 |
+
msgid "Post Categories"
|
1293 |
+
msgstr "Kategorije posta"
|
1294 |
+
|
1295 |
+
#: ../notification/notification-edit.php:184
|
1296 |
+
#: ../notification/notification-add.php:172
|
1297 |
+
msgid "Custom post type"
|
1298 |
+
msgstr "Tip posta napravljenog po izboru"
|
1299 |
+
|
1300 |
+
#: ../notification/notification-edit.php:223
|
1301 |
+
#: ../notification/notification-add.php:203
|
1302 |
+
msgid "Please select your custom post type (Optional)."
|
1303 |
+
msgstr "Izaberite tip posta napravljenog po izboru (Opcionalno)"
|
1304 |
+
|
1305 |
+
#: ../notification/notification-edit.php:225
|
1306 |
+
#: ../notification/notification-add.php:205
|
1307 |
+
#: ../notification/notification-show.php:58 ../notification/notification-show.
|
1308 |
+
#: php:66
|
1309 |
+
msgid "Notification Status"
|
1310 |
+
msgstr "Status notifikacije."
|
1311 |
+
|
1312 |
+
#: ../notification/notification-add.php:69
|
1313 |
+
msgid "Notification was successfully created."
|
1314 |
+
msgstr "Notifikacija je uspesno kreirana."
|
1315 |
+
|
1316 |
+
#: ../notification/notification-add.php:100
|
1317 |
+
msgid "Add Notification"
|
1318 |
+
msgstr "Dodaj notifikaciju"
|
1319 |
+
|
1320 |
+
#: ../notification/notification-show.php:55
|
1321 |
+
#: ../notification/notification-show.php:63
|
1322 |
+
msgid "Mail Subject"
|
1323 |
+
msgstr "Naslov mejla"
|
1324 |
+
|
1325 |
+
#: ../notification/notification-show.php:57
|
1326 |
+
#: ../notification/notification-show.php:65
|
1327 |
+
msgid "Categories / Custom Post"
|
1328 |
+
msgstr "Kategorije / Post napravljen po izboru"
|
1329 |
+
|
1330 |
+
#: ../compose/compose-edit.php:40 ../compose/compose-add.php:25
|
1331 |
+
msgid "Please enter template heading."
|
1332 |
+
msgstr "Unesite heading template-a."
|
1333 |
+
|
1334 |
+
#: ../compose/compose-edit.php:55
|
1335 |
+
msgid "Template was successfully updated."
|
1336 |
+
msgstr "Template je uspesno azuriran."
|
1337 |
+
|
1338 |
+
#: ../compose/compose-edit.php:82 ../compose/compose-show.php:58 ..
|
1339 |
+
#: /compose/compose-add.php:69
|
1340 |
+
msgid "Compose Mail"
|
1341 |
+
msgstr "Napisi mejl"
|
1342 |
+
|
1343 |
+
#: ../compose/compose-edit.php:90 ../compose/compose-add.php:77 ..
|
1344 |
+
#: /sendmail/sendmail.php:50
|
1345 |
+
msgid "Please select your mail type."
|
1346 |
+
msgstr "Izaberite tip vaseg mejla."
|
1347 |
+
|
1348 |
+
#: ../compose/compose-edit.php:92 ../compose/compose-add.php:79
|
1349 |
+
msgid "Enter mail subject."
|
1350 |
+
msgstr "Unesite naslov mejla"
|
1351 |
+
|
1352 |
+
#: ../compose/compose-edit.php:94 ../compose/compose-add.php:81
|
1353 |
+
msgid "Please enter your mail subject."
|
1354 |
+
msgstr "Unesite naslov vaseg mejla."
|
1355 |
+
|
1356 |
+
#: ../compose/compose-edit.php:96 ../compose/compose-add.php:84
|
1357 |
+
msgid "Mail content"
|
1358 |
+
msgstr "Sadrzaj mejla"
|
1359 |
+
|
1360 |
+
#: ../compose/compose-edit.php:99 ../compose/compose-add.php:87
|
1361 |
+
msgid "Please enter content for your mail."
|
1362 |
+
msgstr "Unesite sadrzaj za vas mejl."
|
1363 |
+
|
1364 |
+
#: ../compose/compose-edit.php:106 ../compose/compose-add.php:94
|
1365 |
+
msgid "Please select your mail status."
|
1366 |
+
msgstr "Izaberite status vaseg mejla."
|
1367 |
+
|
1368 |
+
#: ../compose/compose-show.php:69 ../compose/compose-show.php:77
|
1369 |
+
msgid "Email subject"
|
1370 |
+
msgstr "Nalov mejla"
|
1371 |
+
|
1372 |
+
#: ../compose/compose-add.php:39
|
1373 |
+
msgid "Template was successfully created."
|
1374 |
+
msgstr "Template je uspesno kreiran."
|
1375 |
+
|
1376 |
+
#: ../export/export-email-address.php:39 ../export/export-email-address.php:45
|
1377 |
+
#: .. /export/export-email-address.php:50
|
1378 |
+
msgid "Unexpected url submit has been detected"
|
1379 |
+
msgstr "Neocekivano podnosenje url-a je detektovano."
|
1380 |
+
|
1381 |
+
#: ../cron/cron-add.php:18
|
1382 |
+
msgid "Please enter valid mail count."
|
1383 |
+
msgstr "Molimo vas unesite validan broj prebrojanih mejlova."
|
1384 |
|
1385 |
+
#: ../cron/cron-add.php:29
|
1386 |
+
msgid "Cron details successfully updated."
|
1387 |
+
msgstr "Cron detalji uspesno azurirani"
|
1388 |
|
1389 |
+
#: ../cron/cron-add.php:72
|
1390 |
+
msgid "Cron Details"
|
1391 |
+
msgstr "Cron detalji"
|
|
|
|
|
|
|
|
|
1392 |
|
1393 |
+
#: ../cron/cron-add.php:75
|
1394 |
+
msgid "Cron job URL"
|
1395 |
+
msgstr "URL Cron posla"
|
1396 |
|
1397 |
+
#: ../cron/cron-add.php:77
|
1398 |
msgid ""
|
1399 |
+
"Please find your cron job URL. This is read only field not able to modify "
|
1400 |
+
"from admin."
|
1401 |
msgstr ""
|
1402 |
+
"Molimo va s da nadjete URL vaseg cron posla. Ovo je polje samo za citanje "
|
1403 |
+
"koje admin ne moze da modifikuje."
|
1404 |
|
1405 |
+
#: ../cron/cron-add.php:79
|
1406 |
+
msgid "Mail Count"
|
1407 |
+
msgstr "Brojanje mejlova"
|
|
|
|
|
|
|
|
|
|
|
|
|
1408 |
|
1409 |
+
#: ../cron/cron-add.php:81
|
1410 |
+
msgid "Enter number of mails you want to send per hour/trigger."
|
1411 |
+
msgstr "Unesite broj mejlova koje zelite da posaljete po satu/okidac."
|
1412 |
|
1413 |
+
#: ../cron/cron-add.php:83
|
1414 |
+
msgid "Admin Report"
|
1415 |
+
msgstr "Admin izvestaj"
|
|
|
|
|
1416 |
|
1417 |
+
#: ../cron/cron-add.php:85
|
1418 |
+
msgid "Send above mail to admin whenever cron URL triggered in your server."
|
1419 |
msgstr ""
|
1420 |
+
"Posaljite mejl koji je iznad oznacen kadgod se cron URL udari vas serveru."
|
1421 |
|
1422 |
+
#: ../cron/cron-add.php:97 ../help/help.php:97
|
1423 |
+
msgid "How to setup auto emails using CRON Job through the cPanel or Plesk?"
|
1424 |
msgstr ""
|
1425 |
+
"Kako namestiti automatske mejlove koristeci CRON posao preko cPanel ili "
|
1426 |
+
"Plesk?"
|
1427 |
|
1428 |
+
#: ../cron/cron-add.php:98 ../help/help.php:99
|
1429 |
+
msgid ""
|
1430 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2015/08/02/how-to-"
|
1431 |
+
"schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-parallels-"
|
1432 |
+
"plesk/\">Setup cron job in Plesk</a>"
|
1433 |
msgstr ""
|
1434 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2015/08/02/how-to-"
|
1435 |
+
"schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-parallels-"
|
1436 |
+
"plesk/\">Namesti cron posao u Plesk</a>"
|
1437 |
|
1438 |
+
#: ../cron/cron-add.php:99 ../help/help.php:100
|
1439 |
+
msgid ""
|
1440 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2015/08/04/how-to-"
|
1441 |
+
"schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-cpanel/"
|
1442 |
+
"\">Setup cron job in cPanal</a>"
|
1443 |
msgstr ""
|
1444 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2015/08/04/how-to-"
|
1445 |
+
"schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-cpanel/"
|
1446 |
+
"\">Namesti cron posao u cPanal</a>"
|
1447 |
|
1448 |
+
#: ../cron/cron-add.php:100 ../help/help.php:101
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1449 |
msgid ""
|
1450 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2015/08/08/email-"
|
1451 |
+
"subscribers-wordpress-plugin-how-to-schedule-auto-mails-cron-mails/"
|
1452 |
+
"\">Hosting doesnt support cron jobs?</a>"
|
1453 |
msgstr ""
|
1454 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2015/08/08/email-"
|
1455 |
+
"subscribers-wordpress-plugin-how-to-schedule-auto-mails-cron-mails/"
|
1456 |
+
"\">Hosting ne podrzava cron poslove?</a>"
|
1457 |
|
1458 |
+
#: ../sendmail/sendmail.php:35
|
1459 |
+
msgid "Please select your mail subject."
|
1460 |
+
msgstr "Molimo vas izaberite naslov vaseg mejla."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1461 |
|
1462 |
+
#: ../sendmail/sendmail.php:43
|
1463 |
+
msgid "No email address selected."
|
1464 |
+
msgstr "Nijedna emejl adresa nije selektovana"
|
|
|
|
|
1465 |
|
1466 |
+
#: ../sendmail/sendmail.php:58
|
1467 |
+
msgid "Mail sent successfully"
|
1468 |
+
msgstr "Mejl je uspesno poslat"
|
|
|
1469 |
|
1470 |
+
#: ../sendmail/sendmail.php:64
|
1471 |
+
msgid "Click here for details"
|
1472 |
+
msgstr "Kliknite ovde za detalje"
|
|
|
|
|
1473 |
|
1474 |
+
#: ../sendmail/sendmail.php:73
|
1475 |
+
msgid "Oops.. We are getting some error. mail not sending."
|
1476 |
msgstr ""
|
1477 |
+
"Ups… Dobili smo obavestenje da je greska u pitanju. Mejl ne moze da se "
|
1478 |
+
"posalje"
|
1479 |
|
1480 |
+
#: ../sendmail/sendmail.php:101
|
1481 |
+
msgid "Select your mail subject"
|
1482 |
+
msgstr "Selektujte naslov vaseg mejla."
|
|
|
|
|
|
|
|
|
|
|
1483 |
|
1484 |
+
#: ../sendmail/sendmail.php:102
|
1485 |
+
msgid ""
|
1486 |
+
"Select a mail subject from available list. Go to Compose page to create new "
|
1487 |
+
"mail."
|
1488 |
+
msgstr ""
|
1489 |
+
"Selektovati naslov mejla iz dostupne liste. Idite na Napravi stranicu da "
|
1490 |
+
"biste kreirali novi mejl."
|
1491 |
|
1492 |
+
#: ../sendmail/sendmail.php:132
|
1493 |
+
msgid "Mail Type"
|
1494 |
+
msgstr "Tip mejla"
|
|
|
|
|
1495 |
|
1496 |
+
#: ../sendmail/sendmail.php:133
|
1497 |
+
msgid "Select your mail type."
|
1498 |
+
msgstr "Selektovati vas tip mejla."
|
1499 |
|
1500 |
+
#: ../sendmail/sendmail.php:147
|
1501 |
+
msgid "Select subscriber group"
|
1502 |
+
msgstr "Selektovati grupu pretplatnika"
|
|
|
1503 |
|
1504 |
+
#: ../sendmail/sendmail.php:148
|
1505 |
+
msgid "Select your subscriber group to send email."
|
1506 |
+
msgstr "Selektovati casu grupu pretplatnika za slanje mejlova"
|
|
|
1507 |
|
1508 |
+
#: ../sendmail/sendmail.php:173
|
1509 |
+
msgid "Check All"
|
1510 |
+
msgstr "Cekirati sve"
|
1511 |
|
1512 |
+
#: ../sendmail/sendmail.php:174
|
1513 |
+
msgid "Uncheck All"
|
1514 |
+
msgstr "Odcekirati sve"
|
|
|
|
|
1515 |
|
1516 |
+
#: ../sendmail/sendmail.php:237
|
1517 |
+
msgid "No subscribers available for this search criteria."
|
1518 |
+
msgstr "Pretplatnici nisu dostupni za ovaj kriterijum pretrage."
|
1519 |
|
1520 |
+
#: ../roles/roles-add.php:91
|
1521 |
+
msgid "Roles and Capabilities"
|
1522 |
+
msgstr "Uloge i mogucnosti"
|
1523 |
|
1524 |
+
#: ../roles/roles-add.php:93
|
1525 |
+
msgid "Subscribers Menu"
|
1526 |
+
msgstr "Meni sa pretplatnicima"
|
1527 |
|
1528 |
+
#: ../roles/roles-add.php:99
|
1529 |
+
msgid ""
|
1530 |
+
"Select user role to access plugin Subscribers Menu. Only Admin user can "
|
1531 |
+
"change this value."
|
1532 |
+
msgstr ""
|
1533 |
+
"Izaberite ulogu korisnika da biste pristupili meniju sa pretplatnicima "
|
1534 |
+
"plugin-a. Samo Admin moze da promeni ovu vrednost."
|
1535 |
|
1536 |
+
#: ../roles/roles-add.php:102
|
1537 |
+
msgid "Compose Menu"
|
1538 |
+
msgstr "Meni za komponovanje"
|
1539 |
|
1540 |
+
#: ../roles/roles-add.php:108
|
1541 |
+
msgid ""
|
1542 |
+
"Select user role to access plugin Compose Menu. Only Admin user can change "
|
1543 |
+
"this value."
|
1544 |
+
msgstr ""
|
1545 |
+
"Izaberite ulogu korisnika da biste pristupili meniju plugin-a za "
|
1546 |
+
"komponovanje. Samo Admin moze da promeni ovu vrednost."
|
1547 |
|
1548 |
+
#: ../roles/roles-add.php:110
|
1549 |
+
msgid "Notification Menu"
|
1550 |
+
msgstr "Meni sa notifikacijama"
|
1551 |
|
1552 |
+
#: ../roles/roles-add.php:116
|
1553 |
+
msgid ""
|
1554 |
+
"Select user role to access plugin Notification Menu. Only Admin user can "
|
1555 |
+
"change this value."
|
1556 |
msgstr ""
|
1557 |
+
"Izaberite ulogu korisnika da biste pristupili meniju sa notifikacijama "
|
1558 |
+
"plugin-a. Samo Admin moze da promeni ovu vrednost."
|
|
|
|
|
|
|
1559 |
|
1560 |
+
#: ../roles/roles-add.php:118
|
1561 |
+
msgid "Send Email Menu/Cron Menu"
|
1562 |
+
msgstr "Meni za slanje mejlova/Cron meni"
|
1563 |
|
1564 |
+
#: ../roles/roles-add.php:124
|
1565 |
msgid ""
|
1566 |
+
"Select user role to access plugin Send Email Menu. Only Admin user can "
|
1567 |
+
"change this value."
|
1568 |
msgstr ""
|
1569 |
+
"Izaberite ulogu korisnika da biste pristupili meniju plugin-a za slanje "
|
1570 |
+
"poruka. Samo Admin moze da promeni ovu vrednost."
|
1571 |
|
1572 |
+
#: ../roles/roles-add.php:126
|
1573 |
+
msgid "Settings Menu"
|
1574 |
+
msgstr "Meni sa postavkama"
|
1575 |
|
1576 |
+
#: ../roles/roles-add.php:132
|
|
|
1577 |
msgid ""
|
1578 |
+
"Select user role to access plugin Settings Menu. Only Admin user can change "
|
1579 |
+
"this value."
|
1580 |
msgstr ""
|
1581 |
+
"Izaberite ulogu korisnika da biste pristupili meniju sa postavkama plugin-a. "
|
1582 |
+
"Samo Admin moze da promeni ovu vrednost."
|
1583 |
|
1584 |
+
#: ../roles/roles-add.php:134
|
1585 |
+
msgid "Sent Mails Menu"
|
1586 |
+
msgstr "Meni sa poslatim porukama"
|
1587 |
|
1588 |
+
#: ../roles/roles-add.php:140
|
1589 |
+
msgid ""
|
1590 |
+
"Select user role to access plugin Sent Mails Menu. Only Admin user can "
|
1591 |
+
"change this value."
|
1592 |
+
msgstr ""
|
1593 |
+
"Izaberite ulogu korisnika da biste pristupili meniju plugin-a sa poslatim "
|
1594 |
+
"porukama. Samo Admin moze da promeni ovu vrednost."
|
1595 |
|
1596 |
+
#: ../roles/roles-add.php:142
|
1597 |
+
msgid "Help & Info Menu"
|
1598 |
+
msgstr "Meni pomoci i informacija"
|
1599 |
|
1600 |
+
#: ../roles/roles-add.php:148
|
1601 |
+
msgid ""
|
1602 |
+
"Select user role to access plugin Help & Info Menu. Only Admin user can "
|
1603 |
+
"change this value."
|
1604 |
+
msgstr ""
|
1605 |
+
"Izaberite ulogu korisnika da biste pristupili meniju sa pomoci i "
|
1606 |
+
"informacijama plugin-a. Samo Admin moze da promeni ovu vrednost."
|
1607 |
|
1608 |
+
#: ../help/help.php:23
|
1609 |
+
msgid "Welcome to Email Subscribers!"
|
1610 |
+
msgstr "Dobrodosli u Email Subscribers!"
|
1611 |
|
1612 |
+
#: ../help/help.php:25
|
1613 |
+
msgid "Thanks for installing! We hope you enjoy using it."
|
1614 |
+
msgstr "Hvala na instaliranju! Nadamo se da cete uzivati u koriscenju."
|
1615 |
|
1616 |
+
#: ../help/help.php:30
|
1617 |
+
msgid "For more help and tips..."
|
1618 |
+
msgstr "Za jos saveta i pomoc"
|
|
|
1619 |
|
1620 |
+
#: ../help/help.php:75
|
1621 |
+
msgid "Frequently Asked Questions"
|
1622 |
+
msgstr "Cesto postavljana pitanja"
|
|
|
1623 |
|
1624 |
+
#: ../help/help.php:77
|
1625 |
+
msgid ""
|
1626 |
+
"<strong>How to setup subscription box widget?</strong> - There are 3 ways to "
|
1627 |
+
"add Subscription box to your website:"
|
1628 |
msgstr ""
|
1629 |
+
"<strong>Kako pristupiti box-u widget-a za pretplatu ?</strong> - Postoje 3 "
|
1630 |
+
"nacina da se doda box za pretplatu na vas sajt:"
|
1631 |
|
1632 |
+
#: ../help/help.php:78
|
1633 |
+
msgid ""
|
1634 |
+
"(A) Use Shortcode <code>[email-subscribers namefield=\"YES\" desc=\"\" group="
|
1635 |
+
"\"Public\"]</code> in any page or post."
|
1636 |
msgstr ""
|
1637 |
+
"(A)Koristiti skraceni<code>[email-subscribers namefield=\"YES\" desc=\"\" "
|
1638 |
+
"group=\"Public\"]</code> kod na bilo kojoj stranici ili postu."
|
1639 |
|
1640 |
+
#: ../help/help.php:79
|
1641 |
+
msgid ""
|
1642 |
+
"(B) Go to Dashboard->Appearance->Widgets. You will see a widget called Email "
|
1643 |
+
"subscribers. Click Add Widget button or drag it to the sidebar on the right."
|
1644 |
msgstr ""
|
1645 |
+
"(B) Idi na Dashboard->Izgledi->Widgets. Videcete widget koji se zove Email "
|
1646 |
+
"pretplatnici. Klinite na Dodaj Widget dugme ili prenesi u sidebar sa desne "
|
1647 |
+
"strane."
|
1648 |
|
1649 |
+
#: ../help/help.php:80
|
1650 |
+
msgid ""
|
1651 |
+
"(C) Copy and past this php code to your desired template location : "
|
1652 |
+
"<code>es_subbox( $namefield = \"YES\", $desc = \"\", $group = \"\" );</code> "
|
1653 |
msgstr ""
|
1654 |
+
"(C) Kopiraj i prebaciti ovaj php code u zeljenu lokaciju template-a: "
|
1655 |
+
"<code>es_subbox( $namefield = \"YES\", $desc = \"\", $group = \"\" );</code> "
|
1656 |
|
1657 |
+
#: ../help/help.php:81
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1658 |
msgid ""
|
1659 |
+
"Read more from <a target=\"_blank\" href=\"http://www.gopiplus.com/"
|
1660 |
+
"work/2014/05/06/email-subscribers-wordpress-plugin-subscription-box/\">here</"
|
1661 |
+
"a>.<br>"
|
1662 |
msgstr ""
|
1663 |
+
"Procitaj jos < odavde<a target=\"_blank\" href=\"http://www.gopiplus.com/"
|
1664 |
+
"work/2014/05/06/email-subscribers-wordpress-plugin-subscription-box/\">here</"
|
1665 |
+
"a>.<br>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1666 |
|
1667 |
+
#: ../help/help.php:83
|
1668 |
+
msgid ""
|
1669 |
+
"<strong>How to update default alert message from subscription box?</strong> "
|
1670 |
+
"- Use any translation plugin (eg: <strong>Loco Translate</strong>) and "
|
1671 |
+
"translate the text that you want to update."
|
1672 |
+
msgstr ""
|
1673 |
+
"<strong>Kako azurirati default poruke upozorenja iz grupe pretplatnika?</"
|
1674 |
+
"strong> - Koristite bilo koji prevod plugina plugin (eg: <strong>Loco "
|
1675 |
+
"Translate</strong>) i prevedite tekst koji zelite da se azurira."
|
1676 |
|
1677 |
+
#: ../help/help.php:84
|
1678 |
+
msgid ""
|
1679 |
+
"<a target=\"_blank\" href=\"https://wordpress.org/plugins/email-subscribers/"
|
1680 |
+
"faq/\">Notifications are not getting send to subscriber list</a>"
|
1681 |
+
msgstr ""
|
1682 |
+
"<a target=\"_blank\" href=\"https://wordpress.org/plugins/email-subscribers/"
|
1683 |
+
"faq/\">Notifikacije se ne salju listi pretplatnika</a>"
|
1684 |
|
1685 |
+
#: ../help/help.php:85
|
1686 |
+
msgid ""
|
1687 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/05/06/email-"
|
1688 |
+
"subscribers-wordpress-plugin-subscriber-management-and-import-and-export-"
|
1689 |
+
"email-address/\">How to import and export email address to subscriber list?</"
|
1690 |
+
"a>"
|
1691 |
+
msgstr ""
|
1692 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/05/06/email-"
|
1693 |
+
"subscribers-wordpress-plugin-subscriber-management-and-import-and-export-"
|
1694 |
+
"email-address/\">Kako import-ovati i export-ovati emejl listu pretplatnika?</"
|
1695 |
+
"a>"
|
1696 |
|
1697 |
+
#: ../help/help.php:86
|
1698 |
+
msgid ""
|
1699 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/05/06/email-"
|
1700 |
+
"subscribers-wordpress-plugin-compose-html-emails/\">How to compose static "
|
1701 |
+
"newsletter?</a></a>"
|
1702 |
+
msgstr ""
|
1703 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/05/06/email-"
|
1704 |
+
"subscribers-wordpress-plugin-compose-html-emails/\">Kako napraviti staticne "
|
1705 |
+
"novosti?</a></a>"
|
1706 |
|
1707 |
+
#: ../help/help.php:87
|
1708 |
+
msgid ""
|
1709 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/05/06/email-"
|
1710 |
+
"subscribers-wordpress-plugin-subscription-box/\">How to add subscription box "
|
1711 |
+
"in posts?</a>"
|
1712 |
+
msgstr ""
|
1713 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/05/06/email-"
|
1714 |
+
"subscribers-wordpress-plugin-subscription-box/\">Kako dodati mogucnost "
|
1715 |
+
"preplate u postove?</a>"
|
1716 |
|
1717 |
+
#: ../help/help.php:88
|
1718 |
+
msgid ""
|
1719 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/05/06/email-"
|
1720 |
+
"subscribers-wordpress-plugin-general-settings/\">How to modify the existing "
|
1721 |
+
"mails (Opt-in mail, Welcome mail, Admin mails) content?</a>"
|
1722 |
+
msgstr ""
|
1723 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/05/06/email-"
|
1724 |
+
"subscribers-wordpress-plugin-general-settings/\">Kako modifikovati sadrzaj "
|
1725 |
+
"postojecih mejlova (Opt-in mejl, mejl dobrodoslice, Admin mejlove)?</a>"
|
1726 |
|
1727 |
+
#: ../help/help.php:89
|
1728 |
+
msgid ""
|
1729 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/05/06/email-"
|
1730 |
+
"subscribers-wordpress-plugin-send-email-newsletters/\">How to send static "
|
1731 |
+
"newsletter manually?</a>"
|
1732 |
+
msgstr ""
|
1733 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/05/06/email-"
|
1734 |
+
"subscribers-wordpress-plugin-send-email-newsletters/\">Kako poslati staticne "
|
1735 |
+
"novosti manuelno?</a>"
|
1736 |
|
1737 |
+
#: ../help/help.php:90
|
1738 |
+
msgid ""
|
1739 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/05/06/email-"
|
1740 |
+
"subscribers-wordpress-plugin-send-email-newsletters/\">Where to check sent "
|
1741 |
+
"mails?</a>"
|
1742 |
msgstr ""
|
1743 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/05/06/email-"
|
1744 |
+
"subscribers-wordpress-plugin-send-email-newsletters/\">Gde proveriti poslate "
|
1745 |
+
"mejlove?</a>"
|
1746 |
|
1747 |
+
#: ../help/help.php:91
|
1748 |
msgid ""
|
1749 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/05/06/email-"
|
1750 |
+
"subscribers-wordpress-plugin-notifications-settings/\">How to configure "
|
1751 |
+
"notification email to subscribers when new posts are published?</a>"
|
1752 |
msgstr ""
|
1753 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/05/06/email-"
|
1754 |
+
"subscribers-wordpress-plugin-notifications-settings/\">Kako konfigurisati "
|
1755 |
+
"mejl sa notifikacijom za pretplatnike kada se objavi novi post?</a>"
|
1756 |
|
1757 |
+
#: ../help/help.php:92
|
1758 |
+
msgid ""
|
1759 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/05/06/email-"
|
1760 |
+
"subscribers-wordpress-plugin-subscriber-management-and-import-and-export-"
|
1761 |
+
"email-address/\">How to add new subscribers group?</a>"
|
1762 |
+
msgstr ""
|
1763 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/05/06/email-"
|
1764 |
+
"subscribers-wordpress-plugin-subscriber-management-and-import-and-export-"
|
1765 |
+
"email-address/\">Kako dodati novu grupu pretplatnika?</a>"
|
1766 |
|
1767 |
+
#: ../help/help.php:93
|
1768 |
+
msgid ""
|
1769 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/05/06/email-"
|
1770 |
+
"subscribers-wordpress-plugin-subscriber-management-and-import-and-export-"
|
1771 |
+
"email-address/\">Is plugin contain bulk update option for subscribers group?"
|
1772 |
+
"</a>"
|
1773 |
msgstr ""
|
1774 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/05/06/email-"
|
1775 |
+
"subscribers-wordpress-plugin-subscriber-management-and-import-and-export-"
|
1776 |
+
"email-address/\">Da li lugin sadrzi bulk update opcije za grupu pretplatnika?"
|
1777 |
+
"</a>"
|
1778 |
|
1779 |
+
#: ../help/help.php:94
|
1780 |
msgid ""
|
1781 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/08/17/mail-not-"
|
1782 |
+
"working-on-email-subscribers-wordpress-plugin/\">Is Mail not working on "
|
1783 |
+
"Email Subscribers wordpress plugin?</a>"
|
1784 |
msgstr ""
|
1785 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/08/17/mail-not-"
|
1786 |
+
"working-on-email-subscribers-wordpress-plugin/\">Da li mejl ne radi na "
|
1787 |
+
"Wordpress pluginu emejl pretplatnika?</a>"
|
1788 |
|
1789 |
+
#: ../help/help.php:95
|
1790 |
+
msgid ""
|
1791 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/08/31/email-"
|
1792 |
+
"subscribers-wordpress-plugin-network-activation-for-multisite-installation/"
|
1793 |
+
"\">How to install and activate Email Subscribers on multisite installation "
|
1794 |
+
"blogs?</a>"
|
1795 |
+
msgstr ""
|
1796 |
+
"<a target=\"_blank\" href=\"http://www.gopiplus.com/work/2014/08/31/email-"
|
1797 |
+
"subscribers-wordpress-plugin-network-activation-for-multisite-installation/"
|
1798 |
+
"\">Kako instalirati i aktivirati emejl pretplatnike na multisajt "
|
1799 |
+
"instaliranim blogovima?</a>"
|
1800 |
|
1801 |
+
#: ../help/help.php:106
|
1802 |
+
msgid ""
|
1803 |
+
"If you still can't find solution even after checking in above links, click "
|
1804 |
+
"<a target=\"_blank\" href=\"http://www.storeapps.org/support/contact-us/\"> "
|
1805 |
+
"here</a>."
|
1806 |
+
msgstr ""
|
1807 |
+
"Ako i dalje ne mozete da nadjete resenje nakon sto ste cekirali sve iznad "
|
1808 |
+
"navedene predloge, kliknite ovde.<a target=\"_blank\" href=\"http://www."
|
1809 |
+
"storeapps.org/support/contact-us/\"> here</a>."
|
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"
|
@@ -472,17 +472,17 @@ msgstr ""
|
|
472 |
msgid "Database ID"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: ../classes/es-loadwidget.php:
|
476 |
#: /subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-show.
|
477 |
#: php:339
|
478 |
msgid "Name"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: ../classes/es-loadwidget.php:
|
482 |
msgid "Email *"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: ../classes/es-loadwidget.php:
|
486 |
msgid "Subscribe"
|
487 |
msgstr ""
|
488 |
|
@@ -792,23 +792,23 @@ msgctxt "widget-page-enhanced-select"
|
|
792 |
msgid "There was a problem with the request."
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: ../classes/es-register.php:
|
796 |
msgid "Widget Title"
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: ../classes/es-register.php:
|
800 |
msgid "Display Name Field"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: ../classes/es-register.php:
|
804 |
msgid "Short Description"
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: ../classes/es-register.php:
|
808 |
msgid "Short description about your subscription form."
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: ../classes/es-register.php:
|
812 |
msgid "Subscriber Group"
|
813 |
msgstr ""
|
814 |
|
@@ -1499,13 +1499,15 @@ msgid "How to add unsubscribe link in welcome email?"
|
|
1499 |
msgstr ""
|
1500 |
|
1501 |
#: ../help/help.php:103
|
1502 |
-
msgid "How to change/update any
|
1503 |
msgstr ""
|
1504 |
|
1505 |
#: ../help/help.php:104
|
1506 |
msgid ""
|
1507 |
-
"
|
1508 |
-
"
|
|
|
|
|
1509 |
" Refer steps from <a target=\"_blank\" href=\"http://www.storeapps."
|
1510 |
"org/support/documentation/translating-storeapps-plugins/\">here</a>.<br>"
|
1511 |
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 Apr 27 2016 12:13:25 GMT+0530 (IST)\n"
|
9 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
472 |
msgid "Database ID"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: ../classes/es-loadwidget.php:25 ../classes/es-register.php:437 ..
|
476 |
#: /subscribers/view-subscriber-show.php:326 ../subscribers/view-subscriber-show.
|
477 |
#: php:339
|
478 |
msgid "Name"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: ../classes/es-loadwidget.php:30 ../classes/es-register.php:442
|
482 |
msgid "Email *"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: ../classes/es-loadwidget.php:35 ../classes/es-register.php:447
|
486 |
msgid "Subscribe"
|
487 |
msgstr ""
|
488 |
|
792 |
msgid "There was a problem with the request."
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: ../classes/es-register.php:484
|
796 |
msgid "Widget Title"
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: ../classes/es-register.php:488
|
800 |
msgid "Display Name Field"
|
801 |
msgstr ""
|
802 |
|
803 |
+
#: ../classes/es-register.php:495
|
804 |
msgid "Short Description"
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: ../classes/es-register.php:497
|
808 |
msgid "Short description about your subscription form."
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: ../classes/es-register.php:500
|
812 |
msgid "Subscriber Group"
|
813 |
msgstr ""
|
814 |
|
1499 |
msgstr ""
|
1500 |
|
1501 |
#: ../help/help.php:103
|
1502 |
+
msgid "How to change/update/translate any text from the plugin?"
|
1503 |
msgstr ""
|
1504 |
|
1505 |
#: ../help/help.php:104
|
1506 |
msgid ""
|
1507 |
+
"Email Subscribers has a POT file named <code>email-subscribers.pot</code> "
|
1508 |
+
"present at /wp-content/plugins/email-subscribers/languages/. Use that with "
|
1509 |
+
"<strong>Loco Translate</strong> plugin and change/update/translate any text "
|
1510 |
+
"that you want.<br>\n"
|
1511 |
" Refer steps from <a target=\"_blank\" href=\"http://www.storeapps."
|
1512 |
"org/support/documentation/translating-storeapps-plugins/\">here</a>.<br>"
|
1513 |
msgstr ""
|
readme.txt
CHANGED
@@ -5,8 +5,8 @@ Author URI: http://www.storeapps.org/
|
|
5 |
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.
|
9 |
-
Stable tag: 3.1.
|
10 |
License: GPLv3
|
11 |
|
12 |
Add subscription form on website,send HTML newsletters to subscribers & automatically notify them about new blog posts once it gets published.
|
@@ -100,7 +100,7 @@ Option 1:
|
|
100 |
1. Go to WordPress Dashboard->Plugins->Add New
|
101 |
2. Search Email Subscribers plugin using search option
|
102 |
3. Find the plugin and click Install Now button
|
103 |
-
4. After
|
104 |
|
105 |
Option 2:
|
106 |
|
@@ -116,7 +116,7 @@ Option 3:
|
|
116 |
2. Go to WordPress Dashboard->Plugins->Add New
|
117 |
3. Click on Upload Plugin link from top
|
118 |
4. Upload the downloaded email-subscribers.zip file and click on Install Now
|
119 |
-
5. After
|
120 |
|
121 |
== Frequently Asked Questions ==
|
122 |
|
@@ -141,6 +141,8 @@ Sometimes, there is a delay of sending emails from the server due to excess numb
|
|
141 |
If your Host Provider is blocking the emails that you are sending, then try sending emails in Plain Text format instead of HTML format (setting available inside plugin) and check.
|
142 |
If your Host Provider is not blocking the emails that you are sending and you are getting emails successfully send notice and record of emails send in email log file also, then there is a possibility that your Subscriber's Host Provider is blocking the emails.
|
143 |
|
|
|
|
|
144 |
= 2. How to add unsubscribe link in welcome email? =
|
145 |
|
146 |
Please make sure Email Subscribers version is 3.1.2+. Then go to WordPress -> Email Subscribers -> Settings -> Subscriber welcome mail content.
|
@@ -150,9 +152,9 @@ Add the following code at the end of welcome email content :
|
|
150 |
|
151 |
& then click on Save Settings button.
|
152 |
|
153 |
-
= 3. How to update
|
154 |
|
155 |
-
Use [Loco Translate](https://wordpress.org/plugins/loco-translate/) plugin and translate
|
156 |
|
157 |
= 4. Add subscription box in your website =
|
158 |
|
@@ -188,29 +190,25 @@ Refer [here](http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress
|
|
188 |
|
189 |
= 12. Does plugin contain bulk update option for subscribers group? =
|
190 |
|
191 |
-
Refer [here](http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-subscriber-management-and-import-and-export-email-.address/)
|
192 |
-
|
193 |
-
= 13. Is Mail not working on Email Subscribers wordpress plugin? =
|
194 |
-
|
195 |
-
Refer [here](http://www.gopiplus.com/work/2014/08/17/mail-not-working-on-email-subscribers-wordpress-plugin/).
|
196 |
|
197 |
-
=
|
198 |
|
199 |
Refer [here](http://www.gopiplus.com/work/2014/08/31/email-subscribers-wordpress-plugin-network-activation-for-multisite-installation/).
|
200 |
|
201 |
-
=
|
202 |
|
203 |
Refer [here](http://www.gopiplus.com/work/2015/08/08/email-subscribers-wordpress-plugin-how-to-schedule-auto-mails-cron-mails/).
|
204 |
|
205 |
-
=
|
206 |
|
207 |
Refer [here](http://www.gopiplus.com/work/2015/08/04/how-to-schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-cpanel/)?.
|
208 |
|
209 |
-
=
|
210 |
|
211 |
Refer [here](http://www.gopiplus.com/work/2015/08/02/how-to-schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-parallels-plesk/).
|
212 |
|
213 |
-
=
|
214 |
|
215 |
Refer [here](http://www.gopiplus.com/work/2015/09/24/email-subscribers-advanced-form-wordpress-plugin/).
|
216 |
|
@@ -254,6 +252,14 @@ Refer [here](http://www.gopiplus.com/work/2015/09/24/email-subscribers-advanced-
|
|
254 |
|
255 |
== Changelog ==
|
256 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
257 |
= 3.1.2 =
|
258 |
|
259 |
* New: You can now include Unsubscribe link in Welcome Email (Email Subscribers v3.1.2+)
|
@@ -407,6 +413,14 @@ Refer [here](http://www.gopiplus.com/work/2015/09/24/email-subscribers-advanced-
|
|
407 |
|
408 |
== Upgrade Notice ==
|
409 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
410 |
= 3.1.2 =
|
411 |
|
412 |
* New: You can now include Unsubscribe link in Welcome Email (Email Subscribers v3.1.2+)
|
5 |
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.5.1
|
9 |
+
Stable tag: 3.1.3
|
10 |
License: GPLv3
|
11 |
|
12 |
Add subscription form on website,send HTML newsletters to subscribers & automatically notify them about new blog posts once it gets published.
|
100 |
1. Go to WordPress Dashboard->Plugins->Add New
|
101 |
2. Search Email Subscribers plugin using search option
|
102 |
3. Find the plugin and click Install Now button
|
103 |
+
4. After installation, click on Activate Plugin link to activate the plugin.
|
104 |
|
105 |
Option 2:
|
106 |
|
116 |
2. Go to WordPress Dashboard->Plugins->Add New
|
117 |
3. Click on Upload Plugin link from top
|
118 |
4. Upload the downloaded email-subscribers.zip file and click on Install Now
|
119 |
+
5. After installation, click on Activate Plugin link to activate the plugin.
|
120 |
|
121 |
== Frequently Asked Questions ==
|
122 |
|
141 |
If your Host Provider is blocking the emails that you are sending, then try sending emails in Plain Text format instead of HTML format (setting available inside plugin) and check.
|
142 |
If your Host Provider is not blocking the emails that you are sending and you are getting emails successfully send notice and record of emails send in email log file also, then there is a possibility that your Subscriber's Host Provider is blocking the emails.
|
143 |
|
144 |
+
Refer more from [here](http://www.gopiplus.com/work/2014/08/17/mail-not-working-on-email-subscribers-wordpress-plugin/).
|
145 |
+
|
146 |
= 2. How to add unsubscribe link in welcome email? =
|
147 |
|
148 |
Please make sure Email Subscribers version is 3.1.2+. Then go to WordPress -> Email Subscribers -> Settings -> Subscriber welcome mail content.
|
152 |
|
153 |
& then click on Save Settings button.
|
154 |
|
155 |
+
= 3. How to change/update/translate any strings from the plugin? =
|
156 |
|
157 |
+
Email Subscribers has a POT file named email-subscribers.pot present at /wp-content/plugins/email-subscribers/languages/. Use that with [Loco Translate](https://wordpress.org/plugins/loco-translate/) plugin and change/update/translate any text that you want. Refer steps from [here](http://www.storeapps.org/support/documentation/translating-storeapps-plugins/).
|
158 |
|
159 |
= 4. Add subscription box in your website =
|
160 |
|
190 |
|
191 |
= 12. Does plugin contain bulk update option for subscribers group? =
|
192 |
|
193 |
+
Refer [here](http://www.gopiplus.com/work/2014/05/06/email-subscribers-wordpress-plugin-subscriber-management-and-import-and-export-email-.address/).
|
|
|
|
|
|
|
|
|
194 |
|
195 |
+
= 13. How to install and activate Email Subscribers on multisite installation blogs? =
|
196 |
|
197 |
Refer [here](http://www.gopiplus.com/work/2014/08/31/email-subscribers-wordpress-plugin-network-activation-for-multisite-installation/).
|
198 |
|
199 |
+
= 14. Schedule auto mails/Cron mails =
|
200 |
|
201 |
Refer [here](http://www.gopiplus.com/work/2015/08/08/email-subscribers-wordpress-plugin-how-to-schedule-auto-mails-cron-mails/).
|
202 |
|
203 |
+
= 15. Schedule auto emails for Email Subscribers in cPanel =
|
204 |
|
205 |
Refer [here](http://www.gopiplus.com/work/2015/08/04/how-to-schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-cpanel/)?.
|
206 |
|
207 |
+
= 16. Schedule auto emails for Email Subscribers in Parallels Plesk =
|
208 |
|
209 |
Refer [here](http://www.gopiplus.com/work/2015/08/02/how-to-schedule-auto-emails-for-email-subscribers-wordpress-plugin-in-parallels-plesk/).
|
210 |
|
211 |
+
= 17. Add Group Selection in front end subscription box =
|
212 |
|
213 |
Refer [here](http://www.gopiplus.com/work/2015/09/24/email-subscribers-advanced-form-wordpress-plugin/).
|
214 |
|
252 |
|
253 |
== Changelog ==
|
254 |
|
255 |
+
= 3.1.3 =
|
256 |
+
|
257 |
+
* New: Added form tag to subscribe form
|
258 |
+
* Fix: Added missing charset to meta tag
|
259 |
+
* Update: Moved javascripts to footer
|
260 |
+
* Update: Translation for Serbian (sr_RS) language updated (Thanks to Ogi Djuraskovic)
|
261 |
+
* Update: Updated POT file
|
262 |
+
|
263 |
= 3.1.2 =
|
264 |
|
265 |
* New: You can now include Unsubscribe link in Welcome Email (Email Subscribers v3.1.2+)
|
413 |
|
414 |
== Upgrade Notice ==
|
415 |
|
416 |
+
= 3.1.3 =
|
417 |
+
|
418 |
+
* New: Added form tag to subscribe form
|
419 |
+
* Fix: Added missing charset to meta tag
|
420 |
+
* Update: Moved javascripts to footer
|
421 |
+
* Update: Translation for Serbian (sr_RS) language updated (Thanks to Ogi Djuraskovic)
|
422 |
+
* Update: Updated POT file
|
423 |
+
|
424 |
= 3.1.2 =
|
425 |
|
426 |
* New: You can now include Unsubscribe link in Welcome Email (Email Subscribers v3.1.2+)
|