Simple Membership - Version 4.0.6

Version Description

  • Added an option in the [swpm_paypal_subscription_cancel_link] shortcode to allow opening the window in a new tab.
  • Added an option in the [swpm_paypal_subscription_cancel_link] shortcode to add CSS class for customization purpose.
  • Added a new shortcode to display the total number of members (just display the total number). This shortcode is available in the free Miscellaneous Shortcodes addon.
  • Fixed a calculation in the auto delete pending email activation data function. Thanks to @satoshi for pointing it out.
  • Spelling fixes for some of the description field and error messages. Thanks to @Ronaldo for pointing it out.
  • Regenerated the language translation POT file.
  • Updated the Spanish language file.
  • Updated the Czech language file.
Download this release

Release Info

Developer wp.insider
Plugin Icon 128x128 Simple Membership
Version 4.0.6
Comparing to
See all releases

Code changes from version 4.0.5 to 4.0.6

classes/class.swpm-ajax.php CHANGED
@@ -11,7 +11,7 @@ class SwpmAjax {
11
  $field_id = filter_input(INPUT_GET, 'fieldId');
12
  $member_id = filter_input(INPUT_GET, 'member_id');
13
  if (!check_ajax_referer( 'swpm-rego-form-ajax-nonce', 'nonce', false )) {
14
- echo '[ "' . $field_id . '",false, "'.SwpmUtils::_('Nonce check failed. Please reload page.').'" ]' ;
15
  exit;
16
  }
17
  if (!is_email($field_value)){
@@ -31,7 +31,7 @@ class SwpmAjax {
31
  $field_value = filter_input(INPUT_GET, 'fieldValue');
32
  $field_id = filter_input(INPUT_GET, 'fieldId');
33
  if (!check_ajax_referer( 'swpm-rego-form-ajax-nonce', 'nonce', false )) {
34
- echo '[ "' . $field_id . '",false, "'.SwpmUtils::_('Nonce check failed. Please reload page.').'" ]' ;
35
  exit;
36
  }
37
  if (!SwpmMemberUtils::is_valid_user_name($field_value)){
11
  $field_id = filter_input(INPUT_GET, 'fieldId');
12
  $member_id = filter_input(INPUT_GET, 'member_id');
13
  if (!check_ajax_referer( 'swpm-rego-form-ajax-nonce', 'nonce', false )) {
14
+ echo '[ "' . $field_id . '",false, "'.SwpmUtils::_('Nonce check failed. Please reload the page.').'" ]' ;
15
  exit;
16
  }
17
  if (!is_email($field_value)){
31
  $field_value = filter_input(INPUT_GET, 'fieldValue');
32
  $field_id = filter_input(INPUT_GET, 'fieldId');
33
  if (!check_ajax_referer( 'swpm-rego-form-ajax-nonce', 'nonce', false )) {
34
+ echo '[ "' . $field_id . '",false, "'.SwpmUtils::_('Nonce check failed. Please reload the page.').'" ]' ;
35
  exit;
36
  }
37
  if (!SwpmMemberUtils::is_valid_user_name($field_value)){
classes/class.swpm-cronjob.php CHANGED
@@ -17,8 +17,8 @@ class SwpmCronJob {
17
  global $wpdb;
18
  for ($counter = 0;; $counter += 100) {
19
  $query = $wpdb->prepare("SELECT member_id, membership_level, subscription_starts, account_state
20
- FROM {$wpdb->prefix}swpm_members_tbl
21
- WHERE membership_level NOT IN ( SELECT id FROM {$wpdb->prefix}swpm_membership_tbl
22
  WHERE subscription_period = '' OR subscription_period = '0' )
23
  LIMIT %d, 100", $counter);
24
  $results = $wpdb->get_results($query);
@@ -33,7 +33,7 @@ class SwpmCronJob {
33
  }
34
  }
35
  if (count($expired) > 0) {
36
- $query = "UPDATE {$wpdb->prefix}swpm_members_tbl
37
  SET account_state='expired' WHERE member_id IN (" . implode(',', $expired) . ")";
38
  $wpdb->query($query);
39
  }
@@ -48,9 +48,9 @@ class SwpmCronJob {
48
  }
49
  for ($counter = 0;; $counter += 100) {
50
  $query = $wpdb->prepare("SELECT member_id
51
- FROM
52
- {$wpdb->prefix}swpm_members_tbl
53
- WHERE account_state='pending'
54
  AND subscription_starts < DATE_SUB(NOW(), INTERVAL %d MONTH) LIMIT %d, 100", $interval, $counter);
55
  $results = $wpdb->get_results($query);
56
  if (empty($results)) {
@@ -62,7 +62,7 @@ class SwpmCronJob {
62
  }
63
  if (count($to_delete) > 0) {
64
  SwpmLog::log_simple_debug("Auto deleting pending account.", true);
65
- $query = "DELETE FROM {$wpdb->prefix}swpm_members_tbl
66
  WHERE member_id IN (" . implode(',', $to_delete) . ")";
67
  $wpdb->query($query);
68
  }
@@ -70,6 +70,7 @@ class SwpmCronJob {
70
  }
71
 
72
  public function delete_pending_email_activation_data() {
 
73
  global $wpdb;
74
  $q = "SELECT * FROM {$wpdb->prefix}options WHERE option_name LIKE '%swpm_email_activation_data_usr_%'";
75
  $res = $wpdb->get_results($q);
@@ -80,7 +81,7 @@ class SwpmCronJob {
80
  $value = unserialize($data->option_value);
81
  $timestamp = isset($value['timestamp']) ? $value['timestamp'] : 0;
82
  $now = time();
83
- if ($now > $timestamp * 60 * 60 * 24) {
84
  delete_option($data->option_name);
85
  }
86
  }
17
  global $wpdb;
18
  for ($counter = 0;; $counter += 100) {
19
  $query = $wpdb->prepare("SELECT member_id, membership_level, subscription_starts, account_state
20
+ FROM {$wpdb->prefix}swpm_members_tbl
21
+ WHERE membership_level NOT IN ( SELECT id FROM {$wpdb->prefix}swpm_membership_tbl
22
  WHERE subscription_period = '' OR subscription_period = '0' )
23
  LIMIT %d, 100", $counter);
24
  $results = $wpdb->get_results($query);
33
  }
34
  }
35
  if (count($expired) > 0) {
36
+ $query = "UPDATE {$wpdb->prefix}swpm_members_tbl
37
  SET account_state='expired' WHERE member_id IN (" . implode(',', $expired) . ")";
38
  $wpdb->query($query);
39
  }
48
  }
49
  for ($counter = 0;; $counter += 100) {
50
  $query = $wpdb->prepare("SELECT member_id
51
+ FROM
52
+ {$wpdb->prefix}swpm_members_tbl
53
+ WHERE account_state='pending'
54
  AND subscription_starts < DATE_SUB(NOW(), INTERVAL %d MONTH) LIMIT %d, 100", $interval, $counter);
55
  $results = $wpdb->get_results($query);
56
  if (empty($results)) {
62
  }
63
  if (count($to_delete) > 0) {
64
  SwpmLog::log_simple_debug("Auto deleting pending account.", true);
65
+ $query = "DELETE FROM {$wpdb->prefix}swpm_members_tbl
66
  WHERE member_id IN (" . implode(',', $to_delete) . ")";
67
  $wpdb->query($query);
68
  }
70
  }
71
 
72
  public function delete_pending_email_activation_data() {
73
+ //Delete pending email activation data after 1 day (24 hours).
74
  global $wpdb;
75
  $q = "SELECT * FROM {$wpdb->prefix}options WHERE option_name LIKE '%swpm_email_activation_data_usr_%'";
76
  $res = $wpdb->get_results($q);
81
  $value = unserialize($data->option_value);
82
  $timestamp = isset($value['timestamp']) ? $value['timestamp'] : 0;
83
  $now = time();
84
+ if ($now > $timestamp + (60 * 60 * 24) ) {
85
  delete_option($data->option_name);
86
  }
87
  }
classes/class.swpm-form.php CHANGED
@@ -27,14 +27,14 @@ class SwpmForm {
27
 
28
  $user = get_user_by('login', $user_name);
29
  if ($user && ($user->user_email != $email)){
30
- $error_msg = SwpmUtils::_("Wordpress account exists with given username. But given email doesn't match.");
31
  $error_msg .= SwpmUtils::_(" Use a different username to complete the registration. If you want to use that username then you must enter the correct email address associated with the existing WP user to connect with that account.");
32
  $this->errors['wp_email'] = $error_msg;
33
  return;
34
  }
35
  $user = get_user_by('email', $email);
36
  if($user && ($user_name != $user->user_login)){
37
- $error_msg = SwpmUtils::_("Wordpress account exists with given email. But given username doesn't match.");
38
  $error_msg .= SwpmUtils::_(" Use a different email address to complete the registration. If you want to use that email then you must enter the correct username associated with the existing WP user to connect with that account.");
39
  $this->errors['wp_user'] = $error_msg;
40
  }
27
 
28
  $user = get_user_by('login', $user_name);
29
  if ($user && ($user->user_email != $email)){
30
+ $error_msg = SwpmUtils::_("Wordpress account exists with given username. But the given email doesn't match.");
31
  $error_msg .= SwpmUtils::_(" Use a different username to complete the registration. If you want to use that username then you must enter the correct email address associated with the existing WP user to connect with that account.");
32
  $this->errors['wp_email'] = $error_msg;
33
  return;
34
  }
35
  $user = get_user_by('email', $email);
36
  if($user && ($user_name != $user->user_login)){
37
+ $error_msg = SwpmUtils::_("Wordpress account exists with given email. But the given username doesn't match.");
38
  $error_msg .= SwpmUtils::_(" Use a different email address to complete the registration. If you want to use that email then you must enter the correct username associated with the existing WP user to connect with that account.");
39
  $this->errors['wp_user'] = $error_msg;
40
  }
classes/class.swpm-members.php CHANGED
@@ -666,7 +666,7 @@ class SwpmMembers extends WP_List_Table {
666
  <strong>Access Starts Date: </strong>
667
  </td><td align="left">
668
  <input name="swpm_bulk_user_start_date_change_date" id="swpm_bulk_user_start_date_change_date" class="swpm-select-date" type="text" size="20" value="<?php echo ( date( 'Y-m-d' ) ); ?>" />
669
- <p class="description"><?php SwpmUtils::e( 'Specify the access starts date value.' ); ?></p>
670
  </td>
671
  </tr>
672
 
666
  <strong>Access Starts Date: </strong>
667
  </td><td align="left">
668
  <input name="swpm_bulk_user_start_date_change_date" id="swpm_bulk_user_start_date_change_date" class="swpm-select-date" type="text" size="20" value="<?php echo ( date( 'Y-m-d' ) ); ?>" />
669
+ <p class="description"><?php SwpmUtils::e( 'Specify the Access Starts date value.' ); ?></p>
670
  </td>
671
  </tr>
672
 
classes/class.swpm-settings.php CHANGED
@@ -114,7 +114,7 @@ class SwpmSettings {
114
  'general-settings',
115
  array(
116
  'item' => 'disable-access-to-wp-dashboard',
117
- 'message' => SwpmUtils::_( 'WordPress allows a standard wp user to be able to go to the wp-admin URL and access his profile from the wp dashbaord. Using this option will prevent any non admin users from going to the wp dashboard.' ),
118
  )
119
  );
120
 
@@ -709,7 +709,7 @@ class SwpmSettings {
709
  'edit_posts' => translate_user_role( 'Contributor' ),
710
  ),
711
  'default' => 'manage_options',
712
- 'message' => SwpmUtils::_( 'SWPM admin dashboard is accessible to admin users only (just like any other plugin). You can allow users with other WP user role to access the SWPM admin dashboard by selecting a value here. Note that this option cannot work if you enabled the "Disable Access to WP Dashboard" option in General Settings.' ),
713
  )
714
  );
715
 
@@ -973,7 +973,7 @@ class SwpmSettings {
973
  public function email_settings_overview_callback() {
974
  echo '<div class="swpm-grey-box">';
975
  echo '<p>';
976
- SwpmUtils::e( 'This interface lets you custsomize the various emails that gets sent to your members for various actions. The default settings should be good to get your started.' );
977
  echo '</p>';
978
 
979
  echo '<p>';
114
  'general-settings',
115
  array(
116
  'item' => 'disable-access-to-wp-dashboard',
117
+ 'message' => SwpmUtils::_( 'WordPress allows a standard wp user to be able to go to the wp-admin URL and access his profile from the wp dashboard. Using this option will prevent any non-admin users from going to the wp dashboard.' ),
118
  )
119
  );
120
 
709
  'edit_posts' => translate_user_role( 'Contributor' ),
710
  ),
711
  'default' => 'manage_options',
712
+ 'message' => SwpmUtils::_( 'SWPM admin dashboard is accessible to admin users only (just like any other plugin). You can allow users with other WP user roles to access the SWPM admin dashboard by selecting a value here. Note that this option cannot work if you enabled the "Disable Access to WP Dashboard" option in General Settings.' ),
713
  )
714
  );
715
 
973
  public function email_settings_overview_callback() {
974
  echo '<div class="swpm-grey-box">';
975
  echo '<p>';
976
+ SwpmUtils::e( 'This interface lets you customize the various emails that get sent to your members for various actions. The default settings should be good to get your started.' );
977
  echo '</p>';
978
 
979
  echo '<p>';
classes/shortcode-related/class.swpm-shortcodes-handler.php CHANGED
@@ -177,6 +177,8 @@ class SwpmShortcodesHandler {
177
  array(
178
  'merchant_id' => '',
179
  'anchor_text' => '',
 
 
180
  ),
181
  $args
182
  )
@@ -197,21 +199,35 @@ class SwpmShortcodesHandler {
197
  if ( ! empty( $user_id ) ) {
198
  //The user is logged-in
199
 
200
- //Set the default anchor text (if one is provided via teh shortcode).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
201
  if ( empty( $anchor_text ) ) {
202
  $anchor_text = SwpmUtils::_( 'Unsubscribe from PayPal' );
203
  }
204
 
205
- $output .= '<div class="swpm-paypal-subscription-cancel-link">';
206
  $sandbox_enabled = $settings->get_value( 'enable-sandbox-testing' );
207
  if ( $sandbox_enabled ) {
208
  //Sandbox mode
209
- $output .= '<a href="https://www.sandbox.paypal.com/cgi-bin/webscr?cmd=_subscr-find&alias=' . $merchant_id . '" _fcksavedurl="https://www.sandbox.paypal.com/cgi-bin/webscr?cmd=_subscr-find&alias=' . $merchant_id . '">';
210
  $output .= $anchor_text;
211
  $output .= '</a>';
212
  } else {
213
  //Live mode
214
- $output .= '<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_subscr-find&alias=' . $merchant_id . '" _fcksavedurl="https://www.paypal.com/cgi-bin/webscr?cmd=_subscr-find&alias=' . $merchant_id . '">';
215
  $output .= $anchor_text;
216
  $output .= '</a>';
217
  }
177
  array(
178
  'merchant_id' => '',
179
  'anchor_text' => '',
180
+ 'new_window' => '',
181
+ 'css_class' => '',
182
  ),
183
  $args
184
  )
199
  if ( ! empty( $user_id ) ) {
200
  //The user is logged-in
201
 
202
+ //Set the default window target (if it is set via the shortcode).
203
+ if ( empty( $new_window ) ) {
204
+ $window_target = '';
205
+ } else {
206
+ $window_target = ' target="_blank"';
207
+ }
208
+
209
+ //Set the CSS class (if it is set via the shortcode).
210
+ if ( empty( $css_class ) ) {
211
+ $link_css_class = '';
212
+ } else {
213
+ $link_css_class = ' class="' . $css_class . '"';
214
+ }
215
+
216
+ //Set the default anchor text (if one is provided via the shortcode).
217
  if ( empty( $anchor_text ) ) {
218
  $anchor_text = SwpmUtils::_( 'Unsubscribe from PayPal' );
219
  }
220
 
221
+ $output .= '<div class="swpm-paypal-subscription-cancel-link">';
222
  $sandbox_enabled = $settings->get_value( 'enable-sandbox-testing' );
223
  if ( $sandbox_enabled ) {
224
  //Sandbox mode
225
+ $output .= '<a href="https://www.sandbox.paypal.com/cgi-bin/webscr?cmd=_subscr-find&alias=' . $merchant_id . '" _fcksavedurl="https://www.sandbox.paypal.com/cgi-bin/webscr?cmd=_subscr-find&alias=' . $merchant_id . '" '. $window_target . $link_css_class .'>';
226
  $output .= $anchor_text;
227
  $output .= '</a>';
228
  } else {
229
  //Live mode
230
+ $output .= '<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_subscr-find&alias=' . $merchant_id . '" _fcksavedurl="https://www.paypal.com/cgi-bin/webscr?cmd=_subscr-find&alias=' . $merchant_id . '" '.$window_target . $link_css_class .'>';
231
  $output .= $anchor_text;
232
  $output .= '</a>';
233
  }
ipn/swpm-smart-checkout-ipn.php CHANGED
@@ -323,7 +323,7 @@ function swpm_pp_smart_checkout_ajax_hanlder() {
323
  array(
324
  'success' => false,
325
  'errMsg' => __(
326
- 'Nonce check failed. Please reload page.',
327
  'simple-membership'
328
  ),
329
  )
@@ -397,7 +397,7 @@ function swpm_pp_smart_checkout_ajax_hanlder() {
397
  array(
398
  'success' => false,
399
  'errMsg' => __(
400
- 'IPN product validation failed. Check debug log for more details.',
401
  'simple-membership'
402
  ),
403
  )
323
  array(
324
  'success' => false,
325
  'errMsg' => __(
326
+ 'Nonce check failed. Please reload the page.',
327
  'simple-membership'
328
  ),
329
  )
397
  array(
398
  'success' => false,
399
  'errMsg' => __(
400
+ 'IPN product validation failed. Check the debug log for more details.',
401
  'simple-membership'
402
  ),
403
  )
languages/simple-membership-cs_CZ.mo CHANGED
Binary file
languages/simple-membership-cs_CZ.po CHANGED
@@ -1,1324 +1,2150 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Simple Membership Plugin\n"
4
- "POT-Creation-Date: 2017-05-10 12:56+0200\n"
5
- "PO-Revision-Date: 2017-05-11 16:10+0200\n"
 
6
  "Language-Team: \n"
 
7
  "MIME-Version: 1.0\n"
8
  "Content-Type: text/plain; charset=UTF-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
10
- "X-Generator: Poedit 1.8.11\n"
11
  "X-Poedit-KeywordsList: __;_e;e\n"
12
  "X-Poedit-Basepath: .\n"
13
- "Last-Translator: \n"
14
  "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
15
- "Language: cs_CZ\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: classes/class.simple-wp-membership.php:172
19
  msgid "The admin of this site does not allow users to access the wp dashboard."
20
- msgstr ""
21
 
22
- #: classes/class.simple-wp-membership.php:173
23
  msgid "Go back to the home page by "
24
- msgstr ""
25
 
26
- #: classes/class.simple-wp-membership.php:173
27
  msgid "clicking here"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  msgstr ""
 
29
 
30
- #: classes/class.simple-wp-membership.php:311
31
  msgid "You are not logged in."
32
- msgstr "Nejste přihlášen/a"
33
 
34
- #: classes/class.simple-wp-membership.php:358
35
  msgid ""
36
  "You have the sandbox payment mode enabled in plugin settings. Make sure to "
37
  "turn off the sandbox mode when you want to do live transactions."
38
  msgstr ""
 
 
39
 
40
- #: classes/class.simple-wp-membership.php:373
41
  msgid "Simple WP Membership Protection"
42
- msgstr ""
43
 
44
- #: classes/class.simple-wp-membership.php:385
45
  msgid "Simple Membership Protection options"
46
- msgstr ""
47
 
48
- #: classes/class.simple-wp-membership.php:403
49
  msgid "Do you want to protect this content?"
50
- msgstr ""
 
 
 
 
 
 
 
 
51
 
52
- #: classes/class.simple-wp-membership.php:408
53
  msgid "Select the membership level that can access this content:"
54
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
55
 
56
- #: classes/class.simple-wp-membership.php:543
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
57
  msgid "WP Membership"
58
- msgstr ""
59
 
60
- #: classes/class.simple-wp-membership.php:544 classes/class.swpm-members.php:11
61
- #: classes/class.swpm-members.php:575
62
  msgid "Members"
63
- msgstr ""
64
 
65
- #: classes/class.simple-wp-membership.php:545
66
  #: classes/class.swpm-category-list.php:20
67
  #: classes/class.swpm-membership-levels.php:12
68
- #: classes/class.swpm-membership-levels.php:257
 
69
  msgid "Membership Levels"
70
- msgstr ""
71
 
72
- #: classes/class.simple-wp-membership.php:546
73
  msgid "Settings"
74
- msgstr ""
75
 
76
- #: classes/class.simple-wp-membership.php:547
77
  msgid "Payments"
78
- msgstr ""
79
 
80
- #: classes/class.simple-wp-membership.php:548
81
  msgid "Add-ons"
82
- msgstr ""
83
 
84
  #: classes/class.swpm-access-control.php:47
85
  #: classes/class.swpm-access-control.php:120
86
  msgid "You need to login to view this content. "
87
- msgstr "Pro zobrazení této stránky musíte být přihlášen/a."
88
 
89
  #: classes/class.swpm-access-control.php:56
90
  #: classes/class.swpm-access-control.php:128
91
  #: classes/class.swpm-access-control.php:212
92
  msgid "Your account has expired. "
93
- msgstr ""
94
 
95
  #: classes/class.swpm-access-control.php:66
96
  #: classes/class.swpm-access-control.php:138
97
  msgid "This content can only be viewed by members who joined on or before "
98
- msgstr ""
99
 
100
  #: classes/class.swpm-access-control.php:79
101
  #: classes/class.swpm-access-control.php:148
102
  msgid "This content is not permitted for your membership level."
103
- msgstr ""
104
 
105
  #: classes/class.swpm-access-control.php:204
106
  msgid "You need to login to view the rest of the content. "
107
- msgstr "Pro zobrazení této stránky musíte být přihlášen/a."
108
 
109
  #: classes/class.swpm-access-control.php:217
110
  msgid " The rest of the content is not permitted for your membership level."
111
- msgstr ""
112
 
113
  #: classes/class.swpm-admin-registration.php:25
114
  msgid "Error! Nonce verification failed for user registration from admin end."
115
  msgstr ""
 
 
116
 
117
- #: classes/class.swpm-admin-registration.php:66
118
  msgid "Member record added successfully."
119
- msgstr ""
120
 
121
- #: classes/class.swpm-admin-registration.php:71
122
- #: classes/class.swpm-admin-registration.php:102
123
- #: classes/class.swpm-admin-registration.php:126
124
- #: classes/class.swpm-membership-level.php:69
125
- #: classes/class.swpm-membership-level.php:97
126
  msgid "Please correct the following:"
127
- msgstr ""
128
 
129
- #: classes/class.swpm-admin-registration.php:82
130
  msgid "Error! Nonce verification failed for user edit from admin end."
131
  msgstr ""
 
 
132
 
133
- #: classes/class.swpm-admin-registration.php:117
134
  msgid "Your current password"
135
  msgstr "Vaše současné heslo"
136
 
137
  #: classes/class.swpm-ajax.php:14
138
  msgid "Invalid Email Address"
139
- msgstr ""
140
 
141
  #: classes/class.swpm-ajax.php:21 classes/class.swpm-ajax.php:36
142
  msgid "Already taken"
143
- msgstr ""
144
 
145
  #: classes/class.swpm-ajax.php:30
146
  msgid "Name contains invalid character"
147
- msgstr ""
148
 
149
  #: classes/class.swpm-ajax.php:37
150
  msgid "Available"
151
- msgstr ""
152
 
153
- #: classes/class.swpm-auth.php:46
154
  msgid ""
155
  "Warning! Simple Membership plugin cannot process this login request to "
156
  "prevent you from getting logged out of WP Admin accidentally."
157
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
158
 
159
- #: classes/class.swpm-auth.php:47
160
  msgid ""
161
  "You are logged into the site as an ADMIN user in this browser. First, logout "
162
- "from WP Admin then you will be able to log in as a member."
163
  msgstr ""
 
 
164
 
165
- #: classes/class.swpm-auth.php:48
166
  msgid ""
167
  "Alternatively, you can use a different browser (where you are not logged-in "
168
  "as ADMIN) to test the membership login."
169
  msgstr ""
 
 
170
 
171
- #: classes/class.swpm-auth.php:49
172
  msgid ""
173
  "Your normal visitors or members will never see this message. This message is "
174
  "ONLY for ADMIN user."
175
  msgstr ""
 
 
176
 
177
- #: classes/class.swpm-auth.php:56
178
  msgid "Captcha validation failed on login form."
179
- msgstr ""
180
 
181
- #: classes/class.swpm-auth.php:81
182
  msgid "User Not Found."
183
- msgstr ""
184
 
185
- #: classes/class.swpm-auth.php:88
186
  msgid "Password Empty or Invalid."
187
- msgstr "Špatné heslo"
188
 
189
- #: classes/class.swpm-auth.php:125
190
  msgid "Account is inactive."
191
- msgstr ""
192
 
193
- #: classes/class.swpm-auth.php:128 classes/class.swpm-auth.php:146
194
  msgid "Account has expired."
195
- msgstr ""
196
 
197
- #: classes/class.swpm-auth.php:131
198
  msgid "Account is pending."
 
 
 
 
 
 
 
199
  msgstr ""
 
 
200
 
201
- #: classes/class.swpm-auth.php:154
 
 
 
 
 
 
 
202
  msgid "You are logged in as:"
203
- msgstr "Jste přihlášen/a jako:"
204
 
205
- #: classes/class.swpm-auth.php:200
206
  msgid "Logged Out Successfully."
207
- msgstr ""
208
 
209
- #: classes/class.swpm-auth.php:252
210
  msgid "Session Expired."
211
- msgstr ""
212
-
213
- #: classes/class.swpm-auth.php:261
214
- msgid "Invalid Username"
215
- msgstr "Neplatné uživatelské jméno"
216
 
217
- #: classes/class.swpm-auth.php:269
218
  msgid "Please login again."
219
- msgstr "Prosím, přihlaste se znovu."
220
 
221
  #: classes/class.swpm-category-list.php:19 classes/class.swpm-members.php:24
222
  #: classes/class.swpm-membership-levels.php:11
223
  #: classes/class.swpm-membership-levels.php:21
 
224
  #: classes/admin-includes/class.swpm-payments-list-table.php:85
225
- #: views/add.php:30 views/admin_member_form_common_part.php:2 views/edit.php:62
226
  #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:50
227
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:34
228
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:217
 
229
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:35
230
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:307
231
  #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:47
232
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:259
 
233
  msgid "Membership Level"
234
- msgstr ""
235
 
236
  #: classes/class.swpm-category-list.php:33
237
  msgid "Category ID"
238
- msgstr ""
239
 
240
  #: classes/class.swpm-category-list.php:34
241
  msgid "Category Name"
242
- msgstr ""
243
 
244
  #: classes/class.swpm-category-list.php:35
245
  msgid "Category Type (Taxonomy)"
246
- msgstr ""
247
 
248
  #: classes/class.swpm-category-list.php:36
249
  msgid "Description"
250
- msgstr ""
251
 
252
  #: classes/class.swpm-category-list.php:37
253
  msgid "Count"
254
- msgstr ""
255
 
256
  #: classes/class.swpm-category-list.php:92
257
  msgid "Category protection updated!"
258
- msgstr ""
259
 
260
  #: classes/class.swpm-category-list.php:130
261
  msgid "No category found."
262
- msgstr ""
263
 
264
  #: classes/class.swpm-comment-form-related.php:15
265
  msgid "Please login to comment."
266
- msgstr "Prosím, pro komentování se přihlaste."
267
 
268
  #: classes/class.swpm-comment-form-related.php:40
269
  msgid "Please Login to Comment."
270
- msgstr "Prosím, pro komentování se přihlaste."
271
 
272
  #: classes/class.swpm-comment-form-related.php:79
273
  msgid "Comments not allowed by a non-member."
274
- msgstr ""
275
 
276
- #: classes/class.swpm-form.php:29
277
  msgid ""
278
  "Wordpress account exists with given username. But given email doesn't match."
279
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
280
 
281
- #: classes/class.swpm-form.php:34
282
  msgid ""
283
  "Wordpress account exists with given email. But given username doesn't match."
284
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
285
 
286
- #: classes/class.swpm-form.php:43
287
  msgid "Username is required"
288
  msgstr "Uživatelské jméno je vyžadováno"
289
 
290
- #: classes/class.swpm-form.php:47
291
  msgid "Username contains invalid character"
292
- msgstr ""
293
 
294
- #: classes/class.swpm-form.php:55
295
  msgid "Username already exists."
296
- msgstr ""
297
 
298
- #: classes/class.swpm-form.php:78
299
  msgid "Password is required"
300
- msgstr "Heslo je vyžadováno"
301
 
302
- #: classes/class.swpm-form.php:85
303
  msgid "Password mismatch"
304
- msgstr "Špatné heslo"
305
 
306
- #: classes/class.swpm-form.php:96
307
  msgid "Email is required"
308
- msgstr ""
309
 
310
- #: classes/class.swpm-form.php:100
311
  msgid "Email is invalid"
312
- msgstr ""
313
 
314
- #: classes/class.swpm-form.php:116
315
  msgid "Email is already used."
316
- msgstr ""
317
 
318
- #: classes/class.swpm-form.php:173
319
  msgid "Member since field is invalid"
320
- msgstr ""
321
 
322
- #: classes/class.swpm-form.php:184
323
  msgid "Access starts field is invalid"
324
- msgstr ""
325
 
326
- #: classes/class.swpm-form.php:194
327
  msgid "Gender field is invalid"
328
- msgstr ""
329
 
330
- #: classes/class.swpm-form.php:205
331
  msgid "Account state field is invalid"
332
- msgstr ""
333
 
334
- #: classes/class.swpm-form.php:212
335
  msgid "Invalid membership level"
336
- msgstr ""
337
 
338
  #: classes/class.swpm-front-registration.php:33
339
  msgid ""
340
  "Error! Invalid Request. Could not find a match for the given security code "
341
  "and the user ID."
342
  msgstr ""
 
 
343
 
 
344
  #: classes/class.swpm-front-registration.php:45
345
- #: classes/class.swpm-utils-misc.php:219 views/login.php:36
346
  msgid "Join Us"
347
- msgstr "Registrace"
348
 
349
  #: classes/class.swpm-front-registration.php:47
350
  msgid ""
351
  "Free membership is disabled on this site. Please make a payment from the "
352
  msgstr ""
 
353
 
354
  #: classes/class.swpm-front-registration.php:49
 
 
 
 
355
  msgid ""
356
  "You will receive a unique link via email after the payment. You will be able "
357
  "to use that link to complete the premium membership registration."
358
  msgstr ""
 
 
359
 
360
- #: classes/class.swpm-front-registration.php:77
361
  msgid "Security check: captcha validation failed."
362
- msgstr ""
 
 
 
 
363
 
364
  #: classes/class.swpm-front-registration.php:100
365
- msgid "Registration Successful. "
 
 
 
 
 
 
366
  msgstr ""
 
 
367
 
368
- #: classes/class.swpm-front-registration.php:100
369
- #: classes/class.swpm-utils-misc.php:218 classes/class.swpm-utils-misc.php:230
 
 
 
 
370
  msgid "Please"
371
- msgstr "Prosím"
372
 
373
- #: classes/class.swpm-front-registration.php:100
374
- #: classes/class.swpm-utils-misc.php:218 views/login.php:30
375
  msgid "Login"
376
- msgstr "Přihlásit se"
377
 
378
- #: classes/class.swpm-front-registration.php:113
379
- #: classes/class.swpm-front-registration.php:236
380
  msgid "Please correct the following"
381
- msgstr ""
382
 
383
- #: classes/class.swpm-front-registration.php:158
384
  msgid "Membership Level Couldn't be found."
385
- msgstr ""
386
 
387
- #: classes/class.swpm-front-registration.php:209
388
  msgid "Error! Nonce verification failed for front end profile edit."
389
  msgstr ""
 
 
390
 
391
- #: classes/class.swpm-front-registration.php:217
392
  msgid "Profile updated successfully."
393
- msgstr ""
394
 
395
- #: classes/class.swpm-front-registration.php:225
396
  msgid ""
397
  "Profile updated successfully. You will need to re-login since you changed "
398
  "your password."
399
  msgstr ""
 
 
 
 
 
 
 
 
 
 
400
 
401
- #: classes/class.swpm-front-registration.php:246
402
  msgid "Email address not valid."
403
- msgstr ""
404
 
405
- #: classes/class.swpm-front-registration.php:257
406
  msgid "No user found with that email address."
407
- msgstr ""
408
 
409
- #: classes/class.swpm-front-registration.php:258
410
- #: classes/class.swpm-front-registration.php:284
411
  msgid "Email Address: "
412
- msgstr ""
413
 
414
- #: classes/class.swpm-front-registration.php:283
415
  msgid "New password has been sent to your email address."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
416
  msgstr ""
 
 
417
 
418
- #: classes/class.swpm-init-time-tasks.php:112
419
- msgid "Sorry, Nonce verification failed."
 
 
 
 
 
 
 
 
 
 
420
  msgstr ""
 
 
 
 
 
 
421
 
422
- #: classes/class.swpm-init-time-tasks.php:119
423
  msgid "Sorry, Password didn't match."
424
- msgstr "Heslo nesouhlasí"
425
 
426
- #: classes/class.swpm-level-form.php:47
427
  msgid "Date format is not valid."
428
- msgstr ""
429
 
430
- #: classes/class.swpm-level-form.php:55
431
  msgid "Access duration must be > 0."
432
- msgstr ""
433
 
434
  #: classes/class.swpm-members.php:10
435
  msgid "Member"
436
- msgstr ""
437
 
438
  #: classes/class.swpm-members.php:19
439
  #: classes/class.swpm-membership-levels.php:20
440
  msgid "ID"
441
- msgstr ""
442
 
443
- #: classes/class.swpm-members.php:20 views/add.php:6 views/admin_add.php:10
444
- #: views/admin_edit.php:13 views/edit.php:14
 
445
  msgid "Username"
446
- msgstr "Přihlašovací jméno"
447
 
448
  #: classes/class.swpm-members.php:21
449
  #: classes/admin-includes/class.swpm-payments-list-table.php:78
450
- #: views/add.php:22 views/admin_member_form_common_part.php:15
451
- #: views/edit.php:30
452
  msgid "First Name"
453
- msgstr ""
454
 
455
  #: classes/class.swpm-members.php:22
456
  #: classes/admin-includes/class.swpm-payments-list-table.php:79
457
- #: views/add.php:26 views/admin_member_form_common_part.php:19
458
- #: views/edit.php:34
459
  msgid "Last Name"
460
- msgstr ""
461
 
462
- #: classes/class.swpm-members.php:23 views/add.php:10 views/edit.php:18
 
463
  msgid "Email"
464
- msgstr ""
465
 
466
  #: classes/class.swpm-members.php:25 views/admin_member_form_common_part.php:11
467
  msgid "Access Starts"
468
- msgstr ""
469
 
470
- #: classes/class.swpm-members.php:26
471
  msgid "Account State"
472
- msgstr ""
473
 
474
- #: classes/class.swpm-members.php:42
 
 
 
 
475
  #: classes/class.swpm-membership-levels.php:36
476
  #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:94
477
  #: classes/admin-includes/class.swpm-payments-list-table.php:102
478
  msgid "Delete"
479
- msgstr ""
480
 
481
- #: classes/class.swpm-members.php:43
482
  msgid "Set Status to Active"
483
- msgstr ""
484
 
485
- #: classes/class.swpm-members.php:44
486
  msgid "Set Status to Active and Notify"
487
- msgstr ""
488
 
489
- #: classes/class.swpm-members.php:45
490
  msgid "Set Status to Inactive"
491
- msgstr ""
492
 
493
- #: classes/class.swpm-members.php:46
494
  msgid "Set Status to Pending"
495
- msgstr ""
496
 
497
- #: classes/class.swpm-members.php:47
498
  msgid "Set Status to Expired"
499
- msgstr ""
500
 
501
- #: classes/class.swpm-members.php:68
502
  msgid "incomplete"
503
- msgstr ""
504
 
505
- #: classes/class.swpm-members.php:187
506
  msgid "No member found."
507
- msgstr ""
508
 
509
- #: classes/class.swpm-members.php:331
510
  msgid "Error! Nonce verification failed for user delete from admin end."
511
  msgstr ""
 
 
512
 
513
- #: classes/class.swpm-members.php:400 classes/class.swpm-members.php:430
514
  msgid "Error! Please select a membership level first."
515
- msgstr ""
516
 
517
- #: classes/class.swpm-members.php:417
518
  msgid "Membership level change operation completed successfully."
519
- msgstr ""
520
 
521
- #: classes/class.swpm-members.php:447
522
  msgid "Access starts date change operation successfully completed."
523
- msgstr ""
524
 
525
- #: classes/class.swpm-members.php:456
526
  msgid "Bulk Update Membership Level of Members"
527
- msgstr ""
528
 
529
- #: classes/class.swpm-members.php:459
530
  msgid ""
531
  "You can manually change the membership level of any member by editing the "
532
  "record from the members menu. "
533
  msgstr ""
 
 
534
 
535
- #: classes/class.swpm-members.php:460
536
  msgid ""
537
  "You can use the following option to bulk update the membership level of "
538
  "users who belong to the level you select below."
539
  msgstr ""
 
 
540
 
541
- #: classes/class.swpm-members.php:466 classes/class.swpm-members.php:514
542
  msgid "Membership Level: "
543
- msgstr ""
544
 
545
- #: classes/class.swpm-members.php:470
546
  msgid "Select Current Level"
547
- msgstr ""
548
 
549
- #: classes/class.swpm-members.php:473
550
  msgid ""
551
  "Select the current membership level (the membership level of all members who "
552
  "are in this level will be updated)."
553
  msgstr ""
 
 
554
 
555
- #: classes/class.swpm-members.php:479
556
  msgid "Level to Change to: "
557
- msgstr ""
558
 
559
- #: classes/class.swpm-members.php:483
560
  msgid "Select Target Level"
561
- msgstr ""
562
 
563
- #: classes/class.swpm-members.php:486
564
  msgid "Select the new membership level."
565
- msgstr ""
566
 
567
- #: classes/class.swpm-members.php:492
568
  msgid "Bulk Change Membership Level"
569
- msgstr ""
570
 
571
- #: classes/class.swpm-members.php:502
572
  msgid "Bulk Update Access Starts Date of Members"
573
- msgstr ""
574
 
575
- #: classes/class.swpm-members.php:506
576
  msgid ""
577
  "The access starts date of a member is set to the day the user registers. "
578
  "This date value is used to calculate how long the member can access your "
579
  "content that are protected with a duration type protection in the membership "
580
  "level. "
581
  msgstr ""
 
 
 
582
 
583
- #: classes/class.swpm-members.php:507
584
  msgid ""
585
  "You can manually set a specific access starts date value of all members who "
586
  "belong to a particular level using the following option."
587
  msgstr ""
 
 
588
 
589
- #: classes/class.swpm-members.php:517
590
  msgid "Select Level"
591
- msgstr ""
592
 
593
- #: classes/class.swpm-members.php:520
594
  msgid ""
595
  "Select the Membership level (the access start date of all members who are in "
596
  "this level will be updated)."
597
  msgstr ""
 
 
598
 
599
- #: classes/class.swpm-members.php:529
600
  msgid "Specify the access starts date value."
601
- msgstr ""
602
 
603
- #: classes/class.swpm-members.php:535
604
  msgid "Bulk Change Access Starts Date"
605
- msgstr ""
606
 
607
- #: classes/class.swpm-members.php:570
608
  msgid "Simple WP Membership::Members"
609
- msgstr ""
610
 
611
- #: classes/class.swpm-members.php:571
612
- #: classes/class.swpm-membership-levels.php:225 views/admin_members_list.php:43
613
  msgid "Add New"
614
- msgstr ""
615
 
616
- #: classes/class.swpm-members.php:576 views/admin_add.php:5
617
  msgid "Add Member"
618
- msgstr ""
619
 
620
- #: classes/class.swpm-members.php:577
621
  msgid "Bulk Operation"
622
- msgstr ""
623
 
624
  #: classes/class.swpm-membership-level.php:52
625
  msgid ""
626
  "Error! Nonce verification failed for membership level creation from admin "
627
  "end."
628
  msgstr ""
 
 
629
 
630
- #: classes/class.swpm-membership-level.php:64
631
  msgid "Membership Level Creation Successful."
632
- msgstr ""
633
 
634
- #: classes/class.swpm-membership-level.php:80
635
  msgid ""
636
  "Error! Nonce verification failed for membership level edit from admin end."
637
  msgstr ""
 
 
638
 
639
- #: classes/class.swpm-membership-level.php:92
640
  msgid "Membership Level Updated Successfully."
641
- msgstr ""
642
 
643
  #: classes/class.swpm-membership-levels.php:22
644
  msgid "Role"
645
- msgstr ""
646
 
647
  #: classes/class.swpm-membership-levels.php:23
648
  msgid "Access Valid For/Until"
649
- msgstr ""
650
 
651
  #: classes/class.swpm-membership-levels.php:133
652
  msgid "No membership levels found."
653
- msgstr ""
654
 
655
- #: classes/class.swpm-membership-levels.php:196
656
  msgid ""
657
  "Error! Nonce verification failed for membership level delete from admin end."
658
  msgstr ""
 
 
659
 
660
- #: classes/class.swpm-membership-levels.php:215 views/admin_members_list.php:30
661
- #: views/payments/admin_all_payment_transactions.php:16
 
662
  msgid "Search"
663
- msgstr ""
664
 
665
- #: classes/class.swpm-membership-levels.php:253
666
  msgid "Simple WP Membership::Membership Levels"
667
- msgstr ""
668
 
669
- #: classes/class.swpm-membership-levels.php:258
670
  msgid "Add Level"
671
- msgstr ""
672
 
673
- #: classes/class.swpm-membership-levels.php:259
674
  msgid "Manage Content Protection"
675
- msgstr ""
676
 
677
- #: classes/class.swpm-membership-levels.php:260
678
  msgid "Category Protection"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
679
  msgstr ""
 
 
 
 
 
 
680
 
681
- #: classes/class.swpm-settings.php:27 classes/class.swpm-settings.php:55
682
  msgid "General Settings"
683
- msgstr ""
684
 
685
- #: classes/class.swpm-settings.php:28
686
  msgid "Payment Settings"
687
- msgstr ""
688
 
689
- #: classes/class.swpm-settings.php:29
690
  msgid "Email Settings"
691
- msgstr ""
692
 
693
- #: classes/class.swpm-settings.php:30
694
  msgid "Tools"
695
- msgstr ""
696
 
697
- #: classes/class.swpm-settings.php:31 classes/class.swpm-settings.php:184
698
  msgid "Advanced Settings"
699
- msgstr ""
700
 
701
- #: classes/class.swpm-settings.php:32
702
  msgid "Addons Settings"
703
- msgstr ""
704
 
705
- #: classes/class.swpm-settings.php:54
706
  msgid "Plugin Documentation"
707
- msgstr ""
708
 
709
- #: classes/class.swpm-settings.php:56
710
  msgid "Enable Free Membership"
711
- msgstr ""
712
 
713
- #: classes/class.swpm-settings.php:57
714
  msgid ""
715
  "Enable/disable registration for free membership level. When you enable this "
716
  "option, make sure to specify a free membership level ID in the field below."
717
  msgstr ""
 
 
718
 
719
- #: classes/class.swpm-settings.php:58
720
  msgid "Free Membership Level ID"
721
- msgstr ""
722
 
723
- #: classes/class.swpm-settings.php:59
724
  msgid "Assign free membership level ID"
725
- msgstr ""
726
 
727
- #: classes/class.swpm-settings.php:60
728
  msgid "Enable More Tag Protection"
729
- msgstr ""
730
 
731
- #: classes/class.swpm-settings.php:61
732
  msgid ""
733
  "Enables or disables \"more\" tag protection in the posts and pages. Anything "
734
  "after the More tag is protected. Anything before the more tag is teaser "
735
  "content."
736
  msgstr ""
 
 
 
737
 
738
- #: classes/class.swpm-settings.php:62
739
  msgid "Hide Adminbar"
740
- msgstr ""
741
 
742
- #: classes/class.swpm-settings.php:63
743
  msgid ""
744
  "WordPress shows an admin toolbar to the logged in users of the site. Check "
745
  "this if you want to hide that admin toolbar in the frontend of your site."
746
  msgstr ""
 
 
 
747
 
748
- #: classes/class.swpm-settings.php:64
749
  msgid "Show Adminbar to Admin"
750
- msgstr ""
751
 
752
- #: classes/class.swpm-settings.php:65
753
  msgid ""
754
  "Use this option if you want to show the admin toolbar to admin users only. "
755
  "The admin toolbar will be hidden for all other users."
756
  msgstr ""
 
 
757
 
758
- #: classes/class.swpm-settings.php:66
759
  msgid "Disable Access to WP Dashboard"
760
- msgstr ""
761
 
762
- #: classes/class.swpm-settings.php:67
763
  msgid ""
764
- "WordPress allows a sandard wp user to be able to go to the wp-admin URL and "
765
  "access his profile from the wp dashbaord. Using this option will prevent any "
766
  "non admin users from going to the wp dashboard."
767
  msgstr ""
 
 
 
768
 
769
- #: classes/class.swpm-settings.php:69
770
  msgid "Default Account Status"
771
  msgstr "Výchozí stav účtu"
772
 
773
- #: classes/class.swpm-settings.php:72
774
  msgid ""
775
  "Select the default account status for newly registered users. If you want to "
776
  "manually approve the members then you can set the status to \"Pending\"."
777
  msgstr ""
 
 
778
 
779
- #: classes/class.swpm-settings.php:74
780
  msgid "Members Must be Logged in to Comment"
781
- msgstr ""
782
 
783
- #: classes/class.swpm-settings.php:75
784
  msgid ""
785
  "Enable this option if you only want the members of the site to be able to "
786
  "post a comment."
787
  msgstr ""
 
 
788
 
789
- #: classes/class.swpm-settings.php:84
790
  msgid "Pages Settings"
791
- msgstr ""
792
 
793
- #: classes/class.swpm-settings.php:85
794
  msgid "Login Page URL"
795
- msgstr ""
796
 
797
- #: classes/class.swpm-settings.php:87
798
  msgid "Registration Page URL"
799
- msgstr ""
800
 
801
- #: classes/class.swpm-settings.php:89
802
  msgid "Join Us Page URL"
803
- msgstr ""
804
 
805
- #: classes/class.swpm-settings.php:91
806
  msgid "Edit Profile Page URL"
807
- msgstr ""
808
 
809
- #: classes/class.swpm-settings.php:93
810
  msgid "Password Reset Page URL"
811
- msgstr ""
812
 
813
- #: classes/class.swpm-settings.php:96
814
  msgid "Test & Debug Settings"
815
- msgstr ""
816
 
817
- #: classes/class.swpm-settings.php:98
818
  msgid "Check this option to enable debug logging."
 
 
 
 
 
 
819
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
820
 
821
  #: classes/class.swpm-settings.php:103
 
 
 
 
822
  msgid "Enable Sandbox Testing"
823
- msgstr ""
824
 
825
- #: classes/class.swpm-settings.php:104
826
  msgid "Enable this option if you want to do sandbox payment testing."
827
- msgstr ""
828
 
829
- #: classes/class.swpm-settings.php:117 classes/class.swpm-settings.php:179
830
- #: classes/class.swpm-settings.php:296
831
- msgid "Settings updated!"
832
- msgstr ""
833
 
834
- #: classes/class.swpm-settings.php:122
835
  msgid "Email Misc. Settings"
836
- msgstr ""
837
 
838
- #: classes/class.swpm-settings.php:123
839
  msgid "From Email Address"
840
- msgstr ""
841
 
842
- #: classes/class.swpm-settings.php:127
843
  msgid "Email Settings (Prompt to Complete Registration )"
844
- msgstr ""
845
 
846
- #: classes/class.swpm-settings.php:128 classes/class.swpm-settings.php:138
847
- #: classes/class.swpm-settings.php:154 classes/class.swpm-settings.php:159
848
- #: classes/class.swpm-settings.php:164
849
  msgid "Email Subject"
850
- msgstr ""
851
 
852
- #: classes/class.swpm-settings.php:130 classes/class.swpm-settings.php:140
853
- #: classes/class.swpm-settings.php:155 classes/class.swpm-settings.php:160
854
- #: classes/class.swpm-settings.php:165
855
  msgid "Email Body"
856
- msgstr ""
857
 
858
- #: classes/class.swpm-settings.php:134
859
  msgid ""
860
  "Enter the email address where you want the admin notification email to be "
861
  "sent to."
862
  msgstr ""
 
 
863
 
864
- #: classes/class.swpm-settings.php:135
865
  msgid ""
866
  " You can put multiple email addresses separated by comma (,) in the above "
867
  "field to send the notification to multiple email addresses."
868
  msgstr ""
 
 
869
 
870
  #: classes/class.swpm-settings.php:136
 
 
 
 
871
  msgid ""
872
  "This email will be sent to the admin when a new user completes the "
873
  "membership registration. Only works if you have enabled the \"Send "
874
  "Notification to Admin\" option above."
875
  msgstr ""
 
 
876
 
877
- #: classes/class.swpm-settings.php:137
878
  msgid "Email Settings (Registration Complete)"
879
- msgstr ""
880
 
881
- #: classes/class.swpm-settings.php:142
882
  msgid "Send Notification to Admin"
883
- msgstr ""
884
 
885
- #: classes/class.swpm-settings.php:143
886
  msgid ""
887
  "Enable this option if you want the admin to receive a notification when a "
888
  "member registers."
889
  msgstr ""
 
 
890
 
891
- #: classes/class.swpm-settings.php:144
892
  msgid "Admin Email Address"
893
- msgstr ""
894
 
895
- #: classes/class.swpm-settings.php:146
 
 
 
 
896
  msgid "Admin Notification Email Body"
897
- msgstr ""
898
 
899
- #: classes/class.swpm-settings.php:149
900
  msgid "Send Email to Member When Added via Admin Dashboard"
901
- msgstr ""
902
 
903
- #: classes/class.swpm-settings.php:153
904
  msgid "Email Settings (Password Reset)"
905
- msgstr ""
906
 
907
- #: classes/class.swpm-settings.php:158
908
  msgid " Email Settings (Account Upgrade Notification)"
909
- msgstr ""
910
 
911
- #: classes/class.swpm-settings.php:163
912
  msgid " Email Settings (Bulk Account Activate Notification)"
913
- msgstr ""
914
 
915
- #: classes/class.swpm-settings.php:186
 
 
 
 
916
  msgid "Enable Expired Account Login"
917
- msgstr ""
918
 
919
- #: classes/class.swpm-settings.php:187
920
  msgid ""
921
  "When enabled, expired members will be able to log into the system but won't "
922
  "be able to view any protected content. This allows them to easily renew "
923
  "their account by making another payment."
924
  msgstr ""
 
 
 
925
 
926
- #: classes/class.swpm-settings.php:189
927
  msgid "Membership Renewal URL"
928
- msgstr ""
929
 
930
- #: classes/class.swpm-settings.php:190
931
  msgid ""
932
  "You can create a renewal page for your site. Read <a href=\"https://simple-"
933
  "membership-plugin.com/creating-membership-renewal-button/\" target=\"_blank"
934
  "\">this documentation</a> to learn how to create a renewal page."
935
  msgstr ""
 
 
 
 
936
 
937
- #: classes/class.swpm-settings.php:192
938
- msgid "Allow Account Deletion"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
939
  msgstr ""
 
 
940
 
941
- #: classes/class.swpm-settings.php:193
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
942
  msgid "Allow users to delete their accounts."
 
 
 
 
 
 
 
 
 
 
943
  msgstr ""
 
 
944
 
945
- #: classes/class.swpm-settings.php:195
946
  msgid "Use WordPress Timezone"
947
- msgstr ""
948
 
949
- #: classes/class.swpm-settings.php:196
950
  msgid ""
951
  "Use this option if you want to use the timezone value specified in your "
952
  "WordPress General Settings interface."
953
  msgstr ""
 
 
954
 
955
- #: classes/class.swpm-settings.php:198
956
  msgid "Auto Delete Pending Account"
957
- msgstr ""
958
 
959
- #: classes/class.swpm-settings.php:201
960
  msgid "Select how long you want to keep \"pending\" account."
961
  msgstr ""
 
 
962
 
963
- #: classes/class.swpm-settings.php:203
964
  msgid "Admin Dashboard Access Permission"
965
- msgstr ""
966
 
967
- #: classes/class.swpm-settings.php:206
968
  msgid ""
969
  "SWPM admin dashboard is accessible to admin users only (just like any other "
970
  "plugin). You can allow users with other WP user role to access the SWPM "
971
- "admin dashboard by selecting a value here."
 
 
972
  msgstr ""
 
 
 
 
 
973
 
974
- #: classes/class.swpm-settings.php:301
975
- msgid "General Plugin Settings."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
976
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
977
 
978
- #: classes/class.swpm-settings.php:305
979
  msgid "Page Setup and URL Related settings."
 
 
 
 
 
 
980
  msgstr ""
 
 
981
 
982
- #: classes/class.swpm-settings.php:309
983
  msgid "Testing and Debug Related Settings."
984
- msgstr ""
985
 
986
- #: classes/class.swpm-settings.php:313
987
  msgid ""
988
  "This email will be sent to your users when they complete the registration "
989
  "and become a member."
990
  msgstr ""
 
 
991
 
992
- #: classes/class.swpm-settings.php:317
993
  msgid ""
994
  "This email will be sent to your users when they use the password reset "
995
  "functionality."
996
  msgstr ""
 
997
 
998
- #: classes/class.swpm-settings.php:321
999
- msgid "Settings in this section apply to all emails."
 
 
 
1000
  msgstr ""
 
 
 
1001
 
1002
- #: classes/class.swpm-settings.php:325
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1003
  msgid ""
1004
  "This email will be sent to your users after account upgrade (when an "
1005
  "existing member pays for a new membership level)."
1006
  msgstr ""
 
 
1007
 
1008
- #: classes/class.swpm-settings.php:329
1009
  msgid ""
1010
  "This email will be sent to your members when you use the bulk account "
1011
  "activate and notify action."
1012
  msgstr ""
 
 
1013
 
1014
- #: classes/class.swpm-settings.php:333
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1015
  msgid ""
1016
  "This email will be sent to prompt users to complete registration after the "
1017
  "payment."
1018
  msgstr ""
 
 
1019
 
1020
- #: classes/class.swpm-settings.php:337
1021
  msgid "This page allows you to configure some advanced features of the plugin."
 
 
 
 
 
 
 
 
1022
  msgstr ""
 
 
 
 
1023
 
1024
- #: classes/class.swpm-settings.php:445
1025
- msgid "Simple WP Membership::Settings"
 
 
1026
  msgstr ""
 
 
 
 
 
 
1027
 
1028
- #: classes/class.swpm-utils-member.php:21
1029
- #: classes/class.swpm-utils-member.php:29
1030
- #: classes/class.swpm-utils-member.php:37
1031
- #: classes/class.swpm-utils-member.php:47
1032
  msgid "User is not logged in."
1033
  msgstr "Uživatel není přihlášen."
1034
 
 
 
 
 
1035
  #: classes/class.swpm-utils-misc.php:50
1036
  msgid "Registration"
1037
- msgstr ""
1038
 
1039
  #: classes/class.swpm-utils-misc.php:73
1040
  msgid "Member Login"
1041
- msgstr ""
1042
 
1043
  #: classes/class.swpm-utils-misc.php:96
 
1044
  msgid "Profile"
1045
- msgstr ""
1046
 
1047
  #: classes/class.swpm-utils-misc.php:119
1048
  msgid "Password Reset"
1049
- msgstr "Restartovat heslo"
1050
 
1051
- #: classes/class.swpm-utils-misc.php:219
 
 
 
 
 
 
 
 
 
 
 
1052
  msgid "Not a Member?"
1053
- msgstr "Nemáte přihlašovací údaje?"
1054
 
1055
- #: classes/class.swpm-utils-misc.php:230
1056
  msgid "renew"
1057
- msgstr ""
1058
 
1059
- #: classes/class.swpm-utils-misc.php:230
1060
  msgid " your account to gain access to this content."
1061
- msgstr ""
1062
 
1063
- #: classes/class.swpm-utils-misc.php:272 classes/class.swpm-utils-misc.php:278
1064
  msgid "Error! This action ("
1065
- msgstr ""
 
 
 
 
1066
 
1067
  #: classes/class.swpm-utils-template.php:38
1068
  msgid "Error! Failed to find a template path for the specified template: "
1069
- msgstr ""
1070
 
1071
- #: classes/class.swpm-utils.php:100
1072
  msgid "Never"
1073
  msgstr "Nikdy"
1074
 
1075
- #: classes/class.swpm-utils.php:115
1076
  msgid "Active"
1077
  msgstr "Aktivní"
1078
 
1079
- #: classes/class.swpm-utils.php:116
1080
  msgid "Inactive"
1081
  msgstr "Neaktivní"
1082
 
1083
- #: classes/class.swpm-utils.php:117
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1084
  msgid "Pending"
1085
- msgstr ""
1086
 
1087
- #: classes/class.swpm-utils.php:118
1088
  msgid "Expired"
1089
- msgstr ""
1090
 
1091
- #: classes/class.swpm-utils.php:450
1092
  msgid "Delete Account"
1093
- msgstr ""
1094
 
1095
  #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:75
1096
  msgid "Payment Button ID"
1097
- msgstr ""
1098
 
1099
  #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:76
1100
  msgid "Payment Button Title"
1101
- msgstr ""
1102
 
1103
  #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:77
1104
  msgid "Membership Level ID"
1105
- msgstr ""
1106
 
1107
  #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:78
1108
  msgid "Button Type"
1109
- msgstr ""
1110
 
1111
  #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:79
1112
  msgid "Button Shortcode"
1113
- msgstr ""
1114
 
1115
  #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:127
1116
  #: views/admin_members_list.php:9
1117
  #: views/payments/admin_all_payment_transactions.php:32
1118
  msgid "The selected entry was deleted!"
1119
- msgstr ""
1120
 
1121
  #: classes/admin-includes/class.swpm-payments-admin-menu.php:21
1122
  msgid "Simple Membership::Payments"
1123
- msgstr ""
1124
 
1125
  #: classes/admin-includes/class.swpm-payments-admin-menu.php:25
1126
  msgid "Transactions"
1127
- msgstr ""
1128
 
1129
  #: classes/admin-includes/class.swpm-payments-admin-menu.php:26
1130
  msgid "Manage Payment Buttons"
1131
- msgstr ""
1132
 
1133
  #: classes/admin-includes/class.swpm-payments-admin-menu.php:27
1134
  #: views/payments/admin_payment_buttons.php:27
1135
  msgid "Create New Button"
1136
- msgstr ""
1137
 
1138
  #: classes/admin-includes/class.swpm-payments-list-table.php:57
 
1139
  msgid "View Profile"
1140
- msgstr ""
1141
 
1142
  #: classes/admin-includes/class.swpm-payments-list-table.php:76
1143
  msgid "Row ID"
1144
- msgstr ""
1145
 
1146
  #: classes/admin-includes/class.swpm-payments-list-table.php:77
1147
  #: views/forgot_password.php:5
1148
  msgid "Email Address"
1149
- msgstr ""
1150
 
1151
  #: classes/admin-includes/class.swpm-payments-list-table.php:80
1152
  msgid "Member Profile"
1153
- msgstr ""
1154
-
1155
- #: classes/admin-includes/class.swpm-payments-list-table.php:81
1156
- msgid "Date"
1157
- msgstr ""
1158
 
1159
  #: classes/admin-includes/class.swpm-payments-list-table.php:82
1160
  msgid "Transaction ID"
1161
- msgstr ""
1162
 
1163
  #: classes/admin-includes/class.swpm-payments-list-table.php:83
1164
  msgid "Subscriber ID"
1165
- msgstr ""
1166
 
1167
  #: classes/admin-includes/class.swpm-payments-list-table.php:84
1168
  msgid "Amount"
1169
- msgstr ""
1170
 
1171
- #: classes/shortcode-related/class.swpm-shortcodes-handler.php:56
1172
  msgid "Your membership profile will be updated to reflect the payment."
1173
  msgstr ""
 
1174
 
1175
- #: classes/shortcode-related/class.swpm-shortcodes-handler.php:57
1176
  msgid "Your profile username: "
1177
- msgstr "Vaše přihlašovací jméno"
1178
 
1179
- #: classes/shortcode-related/class.swpm-shortcodes-handler.php:69
1180
  msgid "Click on the following link to complete the registration."
1181
- msgstr ""
1182
 
1183
- #: classes/shortcode-related/class.swpm-shortcodes-handler.php:70
1184
  msgid "Click here to complete your paid registration"
1185
- msgstr ""
1186
 
1187
- #: classes/shortcode-related/class.swpm-shortcodes-handler.php:75
1188
  msgid ""
1189
  "If you have just made a membership payment then your payment is yet to be "
1190
  "processed. Please check back in a few minutes. An email will be sent to you "
1191
  "with the details shortly."
1192
  msgstr ""
 
 
 
1193
 
1194
- #: classes/shortcode-related/class.swpm-shortcodes-handler.php:89
1195
  msgid "Expiry: "
1196
- msgstr ""
1197
 
1198
- #: classes/shortcode-related/class.swpm-shortcodes-handler.php:91
1199
  msgid "You are not logged-in as a member"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1200
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1201
 
1202
- #: views/add.php:14 views/admin_add.php:18 views/admin_edit.php:38
1203
- #: views/edit.php:22 views/login.php:17
 
 
 
 
 
 
 
 
1204
  msgid "Password"
1205
  msgstr "Heslo"
1206
 
1207
- #: views/add.php:18 views/edit.php:26
1208
  msgid "Repeat Password"
1209
  msgstr "Zopakovat heslo"
1210
 
1211
- #: views/add.php:52
 
 
 
 
 
 
 
 
 
 
 
 
1212
  msgid "Register"
1213
- msgstr ""
1214
 
1215
- #: views/admin_add.php:6
1216
  msgid "Create a brand new user and add it to this site."
1217
- msgstr ""
1218
 
1219
- #: views/admin_add.php:10 views/admin_add.php:14 views/admin_add_level.php:11
1220
- #: views/admin_add_level.php:15 views/admin_add_level.php:19
1221
- #: views/admin_edit.php:13 views/admin_edit.php:34
1222
- #: views/admin_edit_level.php:15 views/admin_edit_level.php:19
1223
- #: views/admin_edit_level.php:23
1224
  msgid "(required)"
1225
- msgstr ""
1226
 
1227
- #: views/admin_add.php:14 views/admin_edit.php:34
1228
  msgid "E-mail"
1229
- msgstr ""
1230
 
1231
- #: views/admin_add.php:18
1232
  msgid "(twice, required)"
1233
- msgstr ""
1234
 
1235
- #: views/admin_add.php:23 views/admin_edit.php:42
1236
  msgid "Strength indicator"
1237
- msgstr ""
1238
 
1239
- #: views/admin_add.php:24 views/admin_edit.php:43
1240
  msgid ""
1241
  "Hint: The password should be at least seven characters long. To make it "
1242
  "stronger, use upper and lower case letters, numbers and symbols like ! \" ? "
1243
  "$ % ^ &amp; )."
1244
  msgstr ""
 
 
1245
 
1246
- #: views/admin_add.php:28 views/admin_edit.php:47 views/loggedin.php:10
1247
  msgid "Account Status"
1248
  msgstr "Stav účtu"
1249
 
1250
- #: views/admin_add.php:38
1251
  msgid "Add New Member "
1252
- msgstr ""
1253
 
1254
  #: views/admin_addon_settings.php:3
1255
  msgid ""
1256
  "Some of the simple membership plugin's addon settings and options will be "
1257
  "displayed here (if you have them)"
1258
  msgstr ""
 
 
1259
 
1260
  #: views/admin_addon_settings.php:8
1261
  msgid "Save Changes"
1262
- msgstr ""
1263
 
1264
  #: views/admin_add_level.php:6
 
 
 
 
1265
  msgid "Create new membership level."
1266
- msgstr ""
1267
 
1268
- #: views/admin_add_level.php:11 views/admin_edit_level.php:15
1269
  msgid "Membership Level Name"
1270
- msgstr ""
1271
 
1272
- #: views/admin_add_level.php:15 views/admin_edit_level.php:19
1273
  msgid "Default WordPress Role"
1274
- msgstr ""
1275
 
1276
- #: views/admin_add_level.php:19 views/admin_edit_level.php:23
1277
  msgid "Access Duration"
1278
- msgstr ""
1279
 
1280
- #: views/admin_add_level.php:22
1281
  msgid "No Expiry (Access for this level will not expire until cancelled"
1282
  msgstr ""
 
1283
 
1284
- #: views/admin_add_level.php:23 views/admin_add_level.php:25
1285
- #: views/admin_add_level.php:27 views/admin_add_level.php:29
1286
- #: views/admin_edit_level.php:27 views/admin_edit_level.php:30
1287
- #: views/admin_edit_level.php:33 views/admin_edit_level.php:36
1288
  msgid "Expire After"
1289
- msgstr ""
1290
 
1291
- #: views/admin_add_level.php:24 views/admin_edit_level.php:28
1292
  msgid "Days (Access expires after given number of days)"
1293
- msgstr ""
1294
 
1295
- #: views/admin_add_level.php:26
1296
  msgid "Weeks (Access expires after given number of weeks"
1297
- msgstr ""
1298
 
1299
- #: views/admin_add_level.php:28 views/admin_edit_level.php:34
1300
  msgid "Months (Access expires after given number of months)"
1301
- msgstr ""
1302
 
1303
- #: views/admin_add_level.php:30 views/admin_edit_level.php:37
1304
  msgid "Years (Access expires after given number of years)"
1305
- msgstr ""
1306
 
1307
- #: views/admin_add_level.php:31 views/admin_edit_level.php:39
1308
  msgid "Fixed Date Expiry"
1309
- msgstr ""
1310
 
1311
- #: views/admin_add_level.php:32 views/admin_edit_level.php:40
1312
  msgid "(Access expires on a fixed date)"
 
 
 
 
 
 
 
 
 
 
 
1313
  msgstr ""
 
 
 
1314
 
1315
- #: views/admin_add_level.php:38
1316
- msgid "Add New Membership Level "
 
 
 
 
 
 
 
 
 
 
1317
  msgstr ""
 
 
 
 
 
 
1318
 
1319
  #: views/admin_add_ons_page.php:7
1320
  msgid "Simple WP Membership::Add-ons"
1321
- msgstr ""
1322
 
1323
  #: views/admin_category_list.php:5
1324
  msgid ""
@@ -1326,6 +2152,9 @@ msgid ""
1326
  "\"General Protection\" from the drop-down box below and then select the "
1327
  "categories that should be protected from non-logged in users."
1328
  msgstr ""
 
 
 
1329
 
1330
  #: views/admin_category_list.php:8
1331
  msgid ""
@@ -1333,500 +2162,917 @@ msgid ""
1333
  "then select the categories you want to grant access to (for that particular "
1334
  "membership level)."
1335
  msgstr ""
 
 
 
1336
 
1337
- #: views/admin_category_list.php:17
 
 
 
 
 
 
 
 
1338
  msgid "Membership Level:"
1339
- msgstr "Typ účtu:"
1340
 
1341
- #: views/admin_category_list.php:23 views/edit.php:69
 
 
 
 
 
1342
  msgid "Update"
1343
- msgstr ""
1344
 
1345
- #: views/admin_edit.php:5
1346
  msgid "Edit Member"
1347
- msgstr ""
1348
 
1349
- #: views/admin_edit.php:7
1350
  msgid "Edit existing member details."
1351
- msgstr ""
1352
 
1353
- #: views/admin_edit.php:8
1354
  msgid " You are currenty editing member with member ID: "
1355
- msgstr ""
1356
 
1357
- #: views/admin_edit.php:38
1358
  msgid "(twice, leave empty to retain old password)"
 
 
 
 
 
 
1359
  msgstr ""
 
 
1360
 
1361
- #: views/admin_edit.php:54
 
 
 
 
 
 
 
 
1362
  msgid "Notify User"
 
 
 
 
 
 
1363
  msgstr ""
 
 
1364
 
1365
- #: views/admin_edit.php:61
1366
  msgid "Subscriber ID/Reference"
1367
- msgstr ""
1368
 
1369
- #: views/admin_edit.php:65
1370
  msgid "Last Accessed Date"
1371
- msgstr ""
1372
 
1373
- #: views/admin_edit.php:68 views/admin_edit.php:75
1374
  msgid "This value gets updated when this member logs into your site."
1375
- msgstr ""
1376
 
1377
- #: views/admin_edit.php:72
1378
  msgid "Last Accessed From IP"
1379
- msgstr ""
1380
 
1381
- #: views/admin_edit.php:83
1382
- msgid "Edit User "
1383
- msgstr ""
1384
 
1385
- #: views/admin_edit.php:88
1386
  msgid "Delete User Profile"
1387
- msgstr ""
1388
 
1389
- #: views/admin_edit_level.php:5
1390
  msgid "Edit membership level"
1391
- msgstr ""
1392
 
1393
- #: views/admin_edit_level.php:8
1394
  msgid ""
1395
  "You can edit details of a selected membership level from this interface. "
1396
  msgstr ""
 
1397
 
1398
- #: views/admin_edit_level.php:9
1399
  msgid "You are currently editing: "
1400
- msgstr ""
1401
 
1402
- #: views/admin_edit_level.php:26
1403
  msgid "No Expiry (Access for this level will not expire until cancelled)"
1404
  msgstr ""
 
 
1405
 
1406
- #: views/admin_edit_level.php:31
1407
  msgid "Weeks (Access expires after given number of weeks)"
1408
- msgstr ""
1409
 
1410
- #: views/admin_edit_level.php:46
1411
- msgid "Edit Membership Level "
 
 
 
1412
  msgstr ""
 
 
 
 
 
 
 
1413
 
1414
  #: views/admin_membership_manage.php:18
1415
  msgid "Example Content Protection Settings"
1416
- msgstr ""
 
 
 
 
 
 
 
 
1417
 
1418
  #: views/admin_member_form_common_part.php:23
 
1419
  msgid "Gender"
1420
- msgstr ""
1421
 
1422
- #: views/admin_member_form_common_part.php:30 views/edit.php:38
 
1423
  msgid "Phone"
1424
- msgstr ""
1425
 
1426
- #: views/admin_member_form_common_part.php:34 views/edit.php:42
1427
  msgid "Street"
1428
- msgstr ""
1429
 
1430
- #: views/admin_member_form_common_part.php:38 views/edit.php:46
1431
  msgid "City"
1432
- msgstr ""
1433
 
1434
- #: views/admin_member_form_common_part.php:42 views/edit.php:50
1435
  msgid "State"
1436
- msgstr ""
1437
 
1438
- #: views/admin_member_form_common_part.php:46 views/edit.php:54
1439
  msgid "Zipcode"
1440
- msgstr ""
1441
 
1442
- #: views/admin_member_form_common_part.php:50 views/edit.php:58
 
1443
  msgid "Country"
1444
- msgstr ""
1445
 
1446
  #: views/admin_member_form_common_part.php:54
 
1447
  msgid "Company"
1448
- msgstr ""
1449
 
1450
  #: views/admin_member_form_common_part.php:58
 
1451
  msgid "Member Since"
 
 
 
 
 
 
 
1452
  msgstr ""
 
 
 
1453
 
1454
- #: views/admin_tools_settings.php:6
1455
- msgid "Generate a Registration Completion link"
 
 
 
1456
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1457
 
1458
- #: views/admin_tools_settings.php:9
 
 
 
 
 
 
 
 
 
 
 
 
1459
  msgid ""
1460
  "You can manually generate a registration completion link here and give it to "
1461
  "your customer if they have missed the email that was automatically sent out "
1462
  "to them after the payment."
1463
  msgstr ""
 
 
 
1464
 
1465
- #: views/admin_tools_settings.php:14
1466
  msgid "Generate Registration Completion Link"
1467
- msgstr ""
1468
 
1469
- #: views/admin_tools_settings.php:15
1470
  msgid "For a Particular Member ID"
1471
- msgstr ""
1472
 
1473
- #: views/admin_tools_settings.php:17
1474
  msgid "OR"
1475
- msgstr ""
1476
 
1477
- #: views/admin_tools_settings.php:18
1478
  msgid "For All Incomplete Registrations"
1479
- msgstr ""
1480
 
1481
- #: views/admin_tools_settings.php:23
1482
  msgid "Send Registration Reminder Email Too"
1483
- msgstr ""
1484
 
1485
- #: views/admin_tools_settings.php:29
1486
  msgid "Submit"
1487
- msgstr ""
1488
 
1489
- #: views/admin_tools_settings.php:38
1490
  msgid ""
1491
  "Link(s) generated successfully. The following link(s) can be used to "
1492
  "complete the registration."
1493
  msgstr ""
 
 
1494
 
1495
- #: views/admin_tools_settings.php:40
1496
  msgid "Registration completion links will appear below"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1497
  msgstr ""
 
 
 
 
 
 
1498
 
1499
- #: views/forgot_password.php:11
 
 
 
 
 
 
 
 
1500
  msgid "Reset Password"
1501
- msgstr "Restartovat heslo"
1502
 
1503
  #: views/loggedin.php:6
1504
  msgid "Logged in as"
1505
- msgstr "Přihlášen/a jako"
1506
 
1507
  #: views/loggedin.php:14
1508
  msgid "Membership"
1509
- msgstr "Typ účtu"
1510
 
1511
  #: views/loggedin.php:18
1512
  msgid "Account Expiry"
1513
  msgstr "Expirace účtu"
1514
 
1515
- #: views/loggedin.php:22
1516
- msgid "Logout"
1517
- msgstr "Odhlásit se"
1518
 
1519
  #: views/login.php:11
1520
  msgid "Username or Email"
1521
- msgstr "Přihlašovací jméno nebo email"
1522
 
1523
  #: views/login.php:24
1524
  msgid "Remember Me"
1525
  msgstr "Zapamatovat si mě"
1526
 
1527
  #: views/login.php:33
1528
- msgid "Forgot Password"
1529
- msgstr "Zapomenuté heslo"
1530
 
1531
  #: views/payments/admin_all_payment_transactions.php:6
1532
  msgid "All the payments/transactions of your members are recorded here."
1533
- msgstr ""
1534
 
1535
  #: views/payments/admin_all_payment_transactions.php:12
1536
  msgid "Search for a transaction by using email or name"
1537
- msgstr ""
1538
 
1539
  #: views/payments/admin_create_payment_buttons.php:15
1540
  msgid ""
1541
  "You can create new payment button for your memberships using this interface."
1542
- msgstr ""
1543
 
1544
  #: views/payments/admin_create_payment_buttons.php:23
1545
  msgid "Select Payment Button Type"
1546
- msgstr ""
1547
 
1548
  #: views/payments/admin_create_payment_buttons.php:26
1549
  msgid "PayPal Buy Now"
1550
- msgstr ""
1551
 
1552
  #: views/payments/admin_create_payment_buttons.php:28
1553
  msgid "PayPal Subscription"
1554
- msgstr ""
1555
 
1556
  #: views/payments/admin_create_payment_buttons.php:30
1557
- msgid "Stripe Buy Now"
1558
- msgstr ""
1559
 
1560
  #: views/payments/admin_create_payment_buttons.php:32
 
 
 
 
 
 
 
 
1561
  msgid "Braintree Buy Now"
1562
- msgstr ""
1563
 
1564
- #: views/payments/admin_create_payment_buttons.php:39
1565
  msgid "Next"
1566
  msgstr "Další"
1567
 
1568
- #: views/payments/admin_edit_payment_buttons.php:13
1569
  msgid "You can edit a payment button using this interface."
1570
- msgstr ""
1571
 
1572
  #: views/payments/admin_payment_buttons.php:6
1573
  msgid ""
1574
  "All the membership buttons that you created in the plugin are displayed here."
1575
  msgstr ""
 
1576
 
1577
  #: views/payments/admin_payment_settings.php:21
1578
  msgid "Error! The membership level ID ("
 
 
 
 
 
 
1579
  msgstr ""
 
 
1580
 
1581
- #: views/payments/admin_payment_settings.php:27
1582
  msgid "PayPal Integration Settings"
1583
- msgstr ""
1584
 
1585
- #: views/payments/admin_payment_settings.php:30
1586
  msgid "Generate the \"Advanced Variables\" Code for your PayPal button"
1587
- msgstr ""
1588
 
1589
- #: views/payments/admin_payment_settings.php:33
1590
  msgid "Enter the Membership Level ID"
1591
- msgstr ""
1592
 
1593
- #: views/payments/admin_payment_settings.php:35
1594
  msgid "Generate Code"
1595
- msgstr ""
1596
 
1597
  #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:22
1598
  msgid "Braintree Buy Now Button Configuration"
1599
- msgstr ""
1600
 
1601
  #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:34
1602
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:201
1603
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:291
1604
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:245
 
 
1605
  msgid "Button ID"
1606
- msgstr ""
1607
 
1608
  #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:42
1609
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:26
1610
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:209
 
1611
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:27
1612
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:299
1613
  #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:39
1614
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:252
 
1615
  msgid "Button Title"
1616
- msgstr ""
1617
 
1618
  #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:60
1619
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:44
1620
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:227
 
1621
  #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:57
1622
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:268
1623
  msgid "Payment Amount"
1624
- msgstr ""
1625
 
1626
  #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:68
1627
  msgid ""
1628
  "Braintree API key and account details. You can get this from your Braintree "
1629
  "account."
1630
  msgstr ""
 
 
1631
 
1632
  #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:72
1633
  msgid "Merchant ID"
1634
- msgstr ""
1635
 
1636
  #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:80
1637
  msgid "Public Key"
1638
- msgstr ""
1639
 
1640
  #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:87
1641
  msgid "Private Key"
1642
- msgstr ""
1643
 
1644
  #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:95
1645
  msgid "Merchant Account ID"
1646
- msgstr ""
1647
 
1648
  #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:113
1649
  #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:137
1650
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:347
1651
  msgid "The following details are optional."
1652
- msgstr ""
1653
 
1654
  #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:117
1655
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:91
1656
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:274
1657
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:171
1658
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:443
1659
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:141
1660
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:351
 
 
1661
  msgid "Return URL"
1662
- msgstr ""
1663
 
1664
  #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:127
1665
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:117
1666
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:300
1667
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:191
1668
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:463
1669
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:151
1670
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:361
 
 
1671
  msgid "Save Payment Data"
1672
- msgstr ""
1673
 
1674
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:16
1675
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:192
1676
  msgid "PayPal Buy Now Button Configuration"
1677
- msgstr ""
1678
 
1679
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:52
1680
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:235
 
1681
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:45
1682
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:317
1683
  #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:65
1684
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:275
1685
  msgid "Payment Currency"
1686
- msgstr ""
1687
 
1688
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:99
1689
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:282
1690
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:84
1691
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:356
1692
  msgid "PayPal Email"
1693
- msgstr ""
1694
 
1695
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:107
1696
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:290
1697
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:179
1698
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:451
 
1699
  msgid "Button Image URL"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1700
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1701
 
1702
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:18
1703
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:285
1704
  msgid "PayPal Subscription Button Configuration"
1705
- msgstr ""
1706
 
1707
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:92
1708
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:364
1709
  msgid "Billing Amount Each Cycle"
1710
- msgstr ""
1711
 
1712
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:100
1713
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:372
1714
  msgid "Billing Cycle"
1715
- msgstr ""
1716
 
1717
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:113
1718
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:385
1719
  msgid "Billing Cycle Count"
1720
- msgstr ""
1721
 
1722
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:121
1723
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:393
1724
  msgid "Re-attempt on Failure"
1725
- msgstr ""
1726
 
1727
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:134
1728
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:406
1729
  msgid ""
1730
  "Trial Billing Details (Leave empty if you are not offering a trial period)"
1731
  msgstr ""
 
 
1732
 
1733
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:140
1734
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:412
1735
  msgid "Trial Billing Amount"
1736
- msgstr ""
1737
 
1738
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:148
1739
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:420
1740
  msgid "Trial Billing Period"
1741
- msgstr ""
1742
 
1743
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:165
1744
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:437
 
1745
  msgid "Optional Details"
1746
- msgstr ""
1747
 
1748
  #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:29
1749
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:236
1750
  msgid "Stripe Buy Now Button Configuration"
1751
- msgstr ""
1752
 
1753
  #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:104
1754
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:314
1755
  msgid "Stripe API keys. You can get this from your Stripe account."
1756
  msgstr ""
 
1757
 
1758
  #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:108
1759
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:318
1760
- msgid "Test Secret Key"
1761
- msgstr ""
 
1762
 
1763
  #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:115
1764
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:325
1765
- msgid "Test Publishable Key"
1766
- msgstr ""
 
1767
 
1768
  #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:122
1769
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:332
1770
- msgid "Live Secret Key"
1771
- msgstr ""
 
1772
 
1773
  #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:129
1774
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:339
1775
- msgid "Live Publishable Key"
1776
- msgstr ""
 
1777
 
1778
- #: views/payments/payment-gateway/braintree_button_shortcode_view.php:17
1779
- #: views/payments/payment-gateway/paypal_button_shortcode_view.php:85
1780
- #: views/payments/payment-gateway/paypal_button_shortcode_view.php:87
1781
- #: views/payments/payment-gateway/stripe_button_shortcode_view.php:17
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1782
  msgid "Buy Now"
1783
- msgstr ""
1784
 
1785
- #: views/payments/payment-gateway/paypal_button_shortcode_view.php:213
1786
- #: views/payments/payment-gateway/paypal_button_shortcode_view.php:215
1787
  msgid "Subscribe Now"
1788
- msgstr ""
1789
 
1790
- msgid "Leave empty to keep the current password"
1791
- msgstr ""
 
 
 
 
 
1792
 
1793
- #: Translation strings from addons Form builder addon
1794
- msgid "Type password Here"
1795
- msgstr "Zde napiš heslo"
1796
 
1797
- msgid "Retype password Here"
1798
- msgstr "Zde napiš heslo znovu"
1799
 
1800
  msgid "Registration is complete. You can now log into the site."
1801
- msgstr ""
1802
 
1803
  msgid " Field has invalid character"
1804
- msgstr ""
1805
 
1806
  msgid " Password does not match"
1807
- msgstr "Špatné heslo"
1808
 
1809
  msgid "Already taken."
1810
- msgstr ""
1811
 
1812
  msgid "Street Address"
1813
- msgstr ""
1814
 
1815
  msgid "Apt, Suite, Bldg. (optional)"
1816
- msgstr ""
1817
 
1818
  msgid "State / Province / Region"
1819
- msgstr ""
1820
 
1821
  msgid "Postal / Zip Code"
 
 
 
 
 
1822
  msgstr ""
 
 
1823
 
1824
- #: Partial protection addon strings
1825
- msgid "You do not have permission to view this content."
 
 
 
1826
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1827
 
1828
  msgid "Your membership level does not have permission to view this content."
1829
- msgstr ""
1830
 
1831
  msgid "This content is for members only."
1832
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Simple Membership Plugin\n"
4
+ "POT-Creation-Date: 2019-05-26 13:48+0600\n"
5
+ "PO-Revision-Date: 2021-06-24 00:01+0200\n"
6
+ "Last-Translator: \n"
7
  "Language-Team: \n"
8
+ "Language: cs_CZ\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 3.0\n"
13
  "X-Poedit-KeywordsList: __;_e;e\n"
14
  "X-Poedit-Basepath: .\n"
 
15
  "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: classes/class.simple-wp-membership.php:180
19
  msgid "The admin of this site does not allow users to access the wp dashboard."
20
+ msgstr "Správce tohoto webu neumožnil uživatelům přístup k řídicímu panelu WP."
21
 
22
+ #: classes/class.simple-wp-membership.php:181
23
  msgid "Go back to the home page by "
24
+ msgstr "Vrátit se na domovskou stránku "
25
 
26
+ #: classes/class.simple-wp-membership.php:181
27
  msgid "clicking here"
28
+ msgstr "kliknutím sem"
29
+
30
+ #: classes/class.simple-wp-membership.php:242
31
+ msgid ""
32
+ "Error! This site has the force WP user login feature enabled in the "
33
+ "settings. We could not find a WP user record for the given username: "
34
+ msgstr ""
35
+ "Chyba! Tato stránka má v nastavení zapnutou funkci vynucení přihlášení "
36
+ "uživatele WP. Pro zadané uživatelské jméno nebyl nalezen záznam uživatele "
37
+ "WP: "
38
+
39
+ #: classes/class.simple-wp-membership.php:243
40
+ msgid ""
41
+ "This error is triggered when a member account doesn't have a corresponding "
42
+ "WP user account. So the plugin fails to log the user into the WP User system."
43
+ msgstr ""
44
+ "Tato chyba se zobrazí, když členský účet nemá odpovídající uživatelský účet "
45
+ "WP. Plugin pak nemůže přihlásit uživatele do systému WP."
46
+
47
+ #: classes/class.simple-wp-membership.php:244
48
+ msgid ""
49
+ "Contact the site admin and request them to check your username in the WP "
50
+ "Users menu to see what happened with the WP user entry of your account."
51
+ msgstr ""
52
+ "Obraťte se na správce webu a požádejte jej, aby zkontroloval vaše "
53
+ "uživatelské jméno v nabídce Uživatelé WP a zjistil, co se stalo se záznamem "
54
+ "uživatele u vašeho účtu."
55
+
56
+ #: classes/class.simple-wp-membership.php:245
57
+ msgid ""
58
+ "The site admin can disable the Force WP User Synchronization feature in the "
59
+ "settings to disable this feature and this error will go away."
60
+ msgstr ""
61
+ "Správce webu může v nastavení deaktivovat funkci Vynutit synchronizaci "
62
+ "uživatelů WP, po deaktivaci tato chyba zmizí."
63
+
64
+ #: classes/class.simple-wp-membership.php:246
65
+ msgid "You can use the back button of your browser to go back to the site."
66
  msgstr ""
67
+ "Pro návrat na webovou stránku můžete v prohlížeči použít tlačítko Zpět."
68
 
69
+ #: classes/class.simple-wp-membership.php:407
70
  msgid "You are not logged in."
71
+ msgstr "Nejste přihlášeni."
72
 
73
+ #: classes/class.simple-wp-membership.php:458
74
  msgid ""
75
  "You have the sandbox payment mode enabled in plugin settings. Make sure to "
76
  "turn off the sandbox mode when you want to do live transactions."
77
  msgstr ""
78
+ "V nastavení pluginu máte zapnutý režim plateb v sandboxu. Pokud chcete "
79
+ "provádět živé transakce, nezapomeňte tento režim vypnout."
80
 
81
+ #: classes/class.simple-wp-membership.php:473
82
  msgid "Simple WP Membership Protection"
83
+ msgstr "Ochrana Simple WP Membership"
84
 
85
+ #: classes/class.simple-wp-membership.php:485
86
  msgid "Simple Membership Protection options"
87
+ msgstr "Možnosti ochrany Simple Membership"
88
 
89
+ #: classes/class.simple-wp-membership.php:503
90
  msgid "Do you want to protect this content?"
91
+ msgstr "Chcete chránit tento obsah?"
92
+
93
+ #: classes/class.simple-wp-membership.php:504
94
+ msgid "No, Do not protect this content."
95
+ msgstr "Ne, nechránit tento obsah."
96
+
97
+ #: classes/class.simple-wp-membership.php:505
98
+ msgid "Yes, Protect this content."
99
+ msgstr "Ano, chránit tento obsah."
100
 
101
+ #: classes/class.simple-wp-membership.php:508
102
  msgid "Select the membership level that can access this content:"
103
+ msgstr "Vyberte členské úrovně, které mají přístup k tomuto obsahu:"
104
+
105
+ #: classes/class.simple-wp-membership.php:646
106
+ #: classes/class.simple-wp-membership.php:650
107
+ msgid "Validating, please wait"
108
+ msgstr "Ověřování, prosím čekejte"
109
+
110
+ #: classes/class.simple-wp-membership.php:653
111
+ msgid "Invalid email address"
112
+ msgstr "Neplatná e-mailová adresa"
113
+
114
+ #: classes/class.simple-wp-membership.php:656
115
+ msgid "This field is required"
116
+ msgstr "Toto pole je vyžadováno"
117
+
118
+ msgid "Password must contain at least:"
119
+ msgstr "Heslo musí obsahovat nejméně:"
120
+
121
+ msgid "- a digit"
122
+ msgstr "- číslo"
123
+
124
+ msgid "- an uppercase letter"
125
+ msgstr "- velké písmeno"
126
+
127
+ msgid "- a lowercase letter"
128
+ msgstr "- malé písmeno"
129
 
130
+ #: classes/class.simple-wp-membership.php:659 classes/class.swpm-auth.php:296
131
+ msgid "Invalid Username"
132
+ msgstr "Neplatné uživatelské jméno"
133
+
134
+ #: classes/class.simple-wp-membership.php:659
135
+ msgid "Usernames can only contain: letters, numbers and .-_*@"
136
+ msgstr "Uživatelské jméno může obsahovat pouze písmena, čísla a znaky .-_*@"
137
+
138
+ #: classes/class.simple-wp-membership.php:662
139
+ msgid "Minimum "
140
+ msgstr "Jsou vyžadovány minimálně "
141
+
142
+ #: classes/class.simple-wp-membership.php:663
143
+ msgid " characters required"
144
+ msgstr " znaky"
145
+
146
+ #: classes/class.simple-wp-membership.php:666
147
+ msgid "Apostrophe character is not allowed"
148
+ msgstr "Znak apostrofu není povolen"
149
+
150
+ #: classes/class.simple-wp-membership.php:697
151
  msgid "WP Membership"
152
+ msgstr "WP Membership"
153
 
154
+ #: classes/class.simple-wp-membership.php:698 classes/class.swpm-members.php:11
155
+ #: classes/class.swpm-members.php:581
156
  msgid "Members"
157
+ msgstr "Členové"
158
 
159
+ #: classes/class.simple-wp-membership.php:699
160
  #: classes/class.swpm-category-list.php:20
161
  #: classes/class.swpm-membership-levels.php:12
162
+ #: classes/class.swpm-membership-levels.php:265
163
+ #: classes/class.swpm-post-list.php:21
164
  msgid "Membership Levels"
165
+ msgstr "Členské úrovně"
166
 
167
+ #: classes/class.simple-wp-membership.php:700
168
  msgid "Settings"
169
+ msgstr "Nastavení"
170
 
171
+ #: classes/class.simple-wp-membership.php:701
172
  msgid "Payments"
173
+ msgstr "Platby"
174
 
175
+ #: classes/class.simple-wp-membership.php:702
176
  msgid "Add-ons"
177
+ msgstr "Doplňky"
178
 
179
  #: classes/class.swpm-access-control.php:47
180
  #: classes/class.swpm-access-control.php:120
181
  msgid "You need to login to view this content. "
182
+ msgstr "Pro zobrazení této stránky musíte být přihlášeni. "
183
 
184
  #: classes/class.swpm-access-control.php:56
185
  #: classes/class.swpm-access-control.php:128
186
  #: classes/class.swpm-access-control.php:212
187
  msgid "Your account has expired. "
188
+ msgstr "Platnost účtu vypršela. "
189
 
190
  #: classes/class.swpm-access-control.php:66
191
  #: classes/class.swpm-access-control.php:138
192
  msgid "This content can only be viewed by members who joined on or before "
193
+ msgstr "Tento obsah mohou zobrazit pouze členové, kteří se již připojili "
194
 
195
  #: classes/class.swpm-access-control.php:79
196
  #: classes/class.swpm-access-control.php:148
197
  msgid "This content is not permitted for your membership level."
198
+ msgstr "Zobrazení obsahu není povoleno pro tuto členskou úroveň."
199
 
200
  #: classes/class.swpm-access-control.php:204
201
  msgid "You need to login to view the rest of the content. "
202
+ msgstr "Pro zobrazení zbývající části obsahu musíte být přihlášeni. "
203
 
204
  #: classes/class.swpm-access-control.php:217
205
  msgid " The rest of the content is not permitted for your membership level."
206
+ msgstr " Zobrazení zbývajícího obsahu není pro tuto členskou úroveň povoleno."
207
 
208
  #: classes/class.swpm-admin-registration.php:25
209
  msgid "Error! Nonce verification failed for user registration from admin end."
210
  msgstr ""
211
+ "Chyba! Pro registraci uživatele z rozhraní správce se nepodařilo provést "
212
+ "ověření Nonce."
213
 
214
+ #: classes/class.swpm-admin-registration.php:71
215
  msgid "Member record added successfully."
216
+ msgstr "Záznam člena byl úspěšně přidán."
217
 
218
+ #: classes/class.swpm-admin-registration.php:76
219
+ #: classes/class.swpm-admin-registration.php:124
220
+ #: classes/class.swpm-admin-registration.php:151
221
+ #: classes/class.swpm-membership-level.php:73
222
+ #: classes/class.swpm-membership-level.php:105
223
  msgid "Please correct the following:"
224
+ msgstr "Prosím opravte následující:"
225
 
226
+ #: classes/class.swpm-admin-registration.php:87
227
  msgid "Error! Nonce verification failed for user edit from admin end."
228
  msgstr ""
229
+ "Chyba! Pro úpravy uživatele z rozhraní správce se nepodařilo provést ověření "
230
+ "Nonce."
231
 
232
+ #: classes/class.swpm-admin-registration.php:139
233
  msgid "Your current password"
234
  msgstr "Vaše současné heslo"
235
 
236
  #: classes/class.swpm-ajax.php:14
237
  msgid "Invalid Email Address"
238
+ msgstr "Neplatná e-mailová adresa"
239
 
240
  #: classes/class.swpm-ajax.php:21 classes/class.swpm-ajax.php:36
241
  msgid "Already taken"
242
+ msgstr "Již použito"
243
 
244
  #: classes/class.swpm-ajax.php:30
245
  msgid "Name contains invalid character"
246
+ msgstr "Jméno obsahuje nepovolené znaky"
247
 
248
  #: classes/class.swpm-ajax.php:37
249
  msgid "Available"
250
+ msgstr "Dostupné"
251
 
252
+ #: classes/class.swpm-auth.php:57
253
  msgid ""
254
  "Warning! Simple Membership plugin cannot process this login request to "
255
  "prevent you from getting logged out of WP Admin accidentally."
256
  msgstr ""
257
+ "Varování! Plugin Simple Membership nemůže zpracovat aktuální požadavek na "
258
+ "přihlášení, aby nedošlo k nechtěnému odhlášení z WP Admin."
259
+
260
+ #: classes/class.swpm-auth.php:58
261
+ msgid "Click here"
262
+ msgstr "Klikněte sem"
263
+
264
+ #: classes/class.swpm-auth.php:58
265
+ msgid " to see the profile you are currently logged into in this browser."
266
+ msgstr ""
267
+ " pro zobrazení profilu, ke kterému jste aktuálně přihlášeni v tomto "
268
+ "prohlížeči."
269
 
270
+ #: classes/class.swpm-auth.php:59
271
  msgid ""
272
  "You are logged into the site as an ADMIN user in this browser. First, logout "
273
+ "from WP Admin then you will be able to log in as a normal member."
274
  msgstr ""
275
+ "V tomto prohlížeči jste přihlášeni jako uživatel ADMIN. Nejprve se odhlaste "
276
+ "z WP Admin, poté se budete moci přihlásit jako normální člen."
277
 
278
+ #: classes/class.swpm-auth.php:60
279
  msgid ""
280
  "Alternatively, you can use a different browser (where you are not logged-in "
281
  "as ADMIN) to test the membership login."
282
  msgstr ""
283
+ "Alternativně můžete k přihlášení člena použít jiný prohlížeč (ve kterém "
284
+ "nejste přihlášeni jako ADMIN)."
285
 
286
+ #: classes/class.swpm-auth.php:61
287
  msgid ""
288
  "Your normal visitors or members will never see this message. This message is "
289
  "ONLY for ADMIN user."
290
  msgstr ""
291
+ "Běžní návštěvníci nebo členové tuto zprávu nikdy neuvidí. Je určena POUZE "
292
+ "pro uživatele ADMIN."
293
 
294
+ #: classes/class.swpm-auth.php:68
295
  msgid "Captcha validation failed on login form."
296
+ msgstr "Ověření Captcha na přihlašovacím formuláři se nezdařilo."
297
 
298
+ #: classes/class.swpm-auth.php:93
299
  msgid "User Not Found."
300
+ msgstr "Uživatel nenalezen."
301
 
302
+ #: classes/class.swpm-auth.php:100
303
  msgid "Password Empty or Invalid."
304
+ msgstr "Neplatné nebo prázdné heslo."
305
 
306
+ #: classes/class.swpm-auth.php:133
307
  msgid "Account is inactive."
308
+ msgstr "Účet není aktivní."
309
 
310
+ #: classes/class.swpm-auth.php:136 classes/class.swpm-auth.php:162
311
  msgid "Account has expired."
312
+ msgstr "Platnost účtu vypršela."
313
 
314
+ #: classes/class.swpm-auth.php:139
315
  msgid "Account is pending."
316
+ msgstr "Účet čeká na schválení."
317
+
318
+ #: classes/class.swpm-auth.php:146
319
+ #, php-format
320
+ msgid ""
321
+ "You need to activate your account. If you didn't receive an email then %s to "
322
+ "resend the activation email."
323
  msgstr ""
324
+ "Účet je nutné aktivovat. Pokud jste neobdrželi e-mail, %s pro nové odeslání "
325
+ "aktivační e-mailu."
326
 
327
+ #: classes/class.swpm-auth.php:146
328
+ #: classes/class.swpm-front-registration.php:376
329
+ #: classes/class.swpm-front-registration.php:426
330
+ #: classes/class.swpm-utils-misc.php:169
331
+ msgid "click here"
332
+ msgstr "klikněte sem"
333
+
334
+ #: classes/class.swpm-auth.php:170
335
  msgid "You are logged in as:"
336
+ msgstr "Jste přihlášeni jako:"
337
 
338
+ #: classes/class.swpm-auth.php:234
339
  msgid "Logged Out Successfully."
340
+ msgstr "Odhlášení bylo úspěšné."
341
 
342
+ #: classes/class.swpm-auth.php:287
343
  msgid "Session Expired."
344
+ msgstr "Platnost relace vypršela."
 
 
 
 
345
 
346
+ #: classes/class.swpm-auth.php:304
347
  msgid "Please login again."
348
+ msgstr "Přihlaste se prosím znovu."
349
 
350
  #: classes/class.swpm-category-list.php:19 classes/class.swpm-members.php:24
351
  #: classes/class.swpm-membership-levels.php:11
352
  #: classes/class.swpm-membership-levels.php:21
353
+ #: classes/class.swpm-post-list.php:20
354
  #: classes/admin-includes/class.swpm-payments-list-table.php:85
355
+ #: views/add.php:40 views/admin_member_form_common_part.php:2 views/edit.php:75
356
  #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:50
357
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:34
358
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:229
359
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:49
360
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:35
361
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:317
362
  #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:47
363
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:273
364
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:99
365
  msgid "Membership Level"
366
+ msgstr "Členská úroveň"
367
 
368
  #: classes/class.swpm-category-list.php:33
369
  msgid "Category ID"
370
+ msgstr "ID kategorie"
371
 
372
  #: classes/class.swpm-category-list.php:34
373
  msgid "Category Name"
374
+ msgstr "Název kategorie"
375
 
376
  #: classes/class.swpm-category-list.php:35
377
  msgid "Category Type (Taxonomy)"
378
+ msgstr "Typ kategorie (Taxonomie)"
379
 
380
  #: classes/class.swpm-category-list.php:36
381
  msgid "Description"
382
+ msgstr "Popis"
383
 
384
  #: classes/class.swpm-category-list.php:37
385
  msgid "Count"
386
+ msgstr "Počet"
387
 
388
  #: classes/class.swpm-category-list.php:92
389
  msgid "Category protection updated!"
390
+ msgstr "Ochrana kategorie aktualizována!"
391
 
392
  #: classes/class.swpm-category-list.php:130
393
  msgid "No category found."
394
+ msgstr "Nebyla nalezena žádná kategorie."
395
 
396
  #: classes/class.swpm-comment-form-related.php:15
397
  msgid "Please login to comment."
398
+ msgstr "Pro komentování se prosím přihlaste."
399
 
400
  #: classes/class.swpm-comment-form-related.php:40
401
  msgid "Please Login to Comment."
402
+ msgstr "Pro komentování se prosím přihlaste."
403
 
404
  #: classes/class.swpm-comment-form-related.php:79
405
  msgid "Comments not allowed by a non-member."
406
+ msgstr "Nečlenům není povoleno odesílání komentářů."
407
 
408
+ #: classes/class.swpm-form.php:30
409
  msgid ""
410
  "Wordpress account exists with given username. But given email doesn't match."
411
  msgstr ""
412
+ "Pro zadané uživatelské jméno existuje WordPress účet, ale e-mail se "
413
+ "neshoduje."
414
+
415
+ #: classes/class.swpm-form.php:31
416
+ msgid ""
417
+ " Use a different username to complete the registration. If you want to use "
418
+ "that username then you must enter the correct email address associated with "
419
+ "the existing WP user to connect with that account."
420
+ msgstr ""
421
+ " Pro dokončení registrace použijte jiné uživatelské jméno. Chcete-li "
422
+ "uživatelské jméno použít, musíte pro připojení k tomuto účtu zadat správnou "
423
+ "e-mailovou adresu přidruženou k existujícímu uživateli WP."
424
 
425
+ #: classes/class.swpm-form.php:37
426
  msgid ""
427
  "Wordpress account exists with given email. But given username doesn't match."
428
  msgstr ""
429
+ "Pro zadanou e-mailovu adresu existuje WordPress účet, ale uživatelské jméno "
430
+ "se neshoduje."
431
+
432
+ #: classes/class.swpm-form.php:38
433
+ msgid ""
434
+ " Use a different email address to complete the registration. If you want to "
435
+ "use that email then you must enter the correct username associated with the "
436
+ "existing WP user to connect with that account."
437
+ msgstr ""
438
+ " Pro dokončení registrace použijte jinou e-mailovou adresu. Chcete-li e-"
439
+ "mailovou adresu použít, musíte pro připojení k tomuto účtu zadat správné "
440
+ "uživatelské jméno přidružené k existujícímu uživateli WP."
441
 
442
+ #: classes/class.swpm-form.php:48
443
  msgid "Username is required"
444
  msgstr "Uživatelské jméno je vyžadováno"
445
 
446
+ #: classes/class.swpm-form.php:52
447
  msgid "Username contains invalid character"
448
+ msgstr "Uživatelské jméno obsahuje nepovolené znaky"
449
 
450
+ #: classes/class.swpm-form.php:60
451
  msgid "Username already exists."
452
+ msgstr "Uživatelské jméno již existuje."
453
 
454
+ #: classes/class.swpm-form.php:83
455
  msgid "Password is required"
456
+ msgstr "Heslo je povinné"
457
 
458
+ #: classes/class.swpm-form.php:90
459
  msgid "Password mismatch"
460
+ msgstr "Hesla nesouhlasí"
461
 
462
+ #: classes/class.swpm-form.php:101
463
  msgid "Email is required"
464
+ msgstr "E-mail je povinný"
465
 
466
+ #: classes/class.swpm-form.php:105
467
  msgid "Email is invalid"
468
+ msgstr "Neplatný e-mail"
469
 
470
+ #: classes/class.swpm-form.php:121
471
  msgid "Email is already used."
472
+ msgstr "E-mailová adresa je již použita."
473
 
474
+ #: classes/class.swpm-form.php:179
475
  msgid "Member since field is invalid"
476
+ msgstr "Hodnota v poli „Člen od“ je neplatná"
477
 
478
+ #: classes/class.swpm-form.php:190
479
  msgid "Access starts field is invalid"
480
+ msgstr "Hodnota v poli Počátek přístupu je neplatná"
481
 
482
+ #: classes/class.swpm-form.php:200
483
  msgid "Gender field is invalid"
484
+ msgstr "Hodnota v poli „Pohlaví“ je neplatná"
485
 
486
+ #: classes/class.swpm-form.php:211
487
  msgid "Account state field is invalid"
488
+ msgstr "Hodnota v poli „Stav účtu“ je neplatná"
489
 
490
+ #: classes/class.swpm-form.php:218
491
  msgid "Invalid membership level"
492
+ msgstr "Neplatná členská úroveň"
493
 
494
  #: classes/class.swpm-front-registration.php:33
495
  msgid ""
496
  "Error! Invalid Request. Could not find a match for the given security code "
497
  "and the user ID."
498
  msgstr ""
499
+ "Chyba! Neplatný požadavek. Nebyla nalezana shoda pro daný bezpečnostní kód a "
500
+ "ID uživatele."
501
 
502
+ # Připojte se k nám
503
  #: classes/class.swpm-front-registration.php:45
504
+ #: classes/class.swpm-utils-misc.php:274 views/login.php:36
505
  msgid "Join Us"
506
+ msgstr "Vytvořit účet"
507
 
508
  #: classes/class.swpm-front-registration.php:47
509
  msgid ""
510
  "Free membership is disabled on this site. Please make a payment from the "
511
  msgstr ""
512
+ "Bezplatné členství není na tomto webu povoleno. Proveďte prosím úhradu ze "
513
 
514
  #: classes/class.swpm-front-registration.php:49
515
+ msgid " page to pay for a premium membership."
516
+ msgstr " stránky pro zaplacení prémiového členství."
517
+
518
+ #: classes/class.swpm-front-registration.php:51
519
  msgid ""
520
  "You will receive a unique link via email after the payment. You will be able "
521
  "to use that link to complete the premium membership registration."
522
  msgstr ""
523
+ "Po provedení platby obdržíte e-mailem jedinečný odkaz, pomocí kterého "
524
+ "dokončíte registraci prémiového členství."
525
 
526
+ #: classes/class.swpm-front-registration.php:79
527
  msgid "Security check: captcha validation failed."
528
+ msgstr "Kontrola zabezpečení: Ověření captcha se nezdařilo."
529
+
530
+ #: classes/class.swpm-front-registration.php:89
531
+ msgid "You must accept the terms and conditions."
532
+ msgstr "Musíte vyjádřit souhlas s podmínkami a ujednáními."
533
 
534
  #: classes/class.swpm-front-registration.php:100
535
+ msgid "You must agree to the privacy policy."
536
+ msgstr "Musíte vyjádřit souhlasit se zásadami ochrany osobních údajů."
537
+
538
+ #: classes/class.swpm-front-registration.php:140
539
+ msgid ""
540
+ "You need to confirm your email address. Please check your email and follow "
541
+ "instructions to complete your registration."
542
  msgstr ""
543
+ "Je vyžadováno potvrzení e-mailovou adresy. Zkontrolujte prosím svůj e-mail a "
544
+ "dokončete registraci podle obdržených pokynů."
545
 
546
+ #: classes/class.swpm-front-registration.php:145
547
+ msgid "Registration Successful. "
548
+ msgstr "Registrace byla úspěšná. "
549
+
550
+ #: classes/class.swpm-front-registration.php:145
551
+ #: classes/class.swpm-utils-misc.php:273 classes/class.swpm-utils-misc.php:285
552
  msgid "Please"
553
+ msgstr " "
554
 
555
+ #: classes/class.swpm-front-registration.php:145
556
+ #: classes/class.swpm-utils-misc.php:273 views/login.php:30
557
  msgid "Login"
558
+ msgstr "Přihlásit se "
559
 
560
+ #: classes/class.swpm-front-registration.php:159
 
561
  msgid "Please correct the following"
562
+ msgstr "Opravte prosím následující"
563
 
564
+ #: classes/class.swpm-front-registration.php:207
565
  msgid "Membership Level Couldn't be found."
566
+ msgstr "Členskou úroveň se nepodařilo najít."
567
 
568
+ #: classes/class.swpm-front-registration.php:258
569
  msgid "Error! Nonce verification failed for front end profile edit."
570
  msgstr ""
571
+ "Chyba! Pro úpravu profilu z koncového rozhraní se nepodařilo provést ověření "
572
+ "Nonce."
573
 
574
+ #: classes/class.swpm-front-registration.php:266
575
  msgid "Profile updated successfully."
576
+ msgstr "Profil byl úspěšně aktualizován."
577
 
578
+ #: classes/class.swpm-front-registration.php:275
579
  msgid ""
580
  "Profile updated successfully. You will need to re-login since you changed "
581
  "your password."
582
  msgstr ""
583
+ "Profil byl úspěšně aktualizován. Protože došlo ke změně hesla, je nutné se "
584
+ "znovu přihlásit."
585
+
586
+ #: classes/class.swpm-front-registration.php:289
587
+ msgid "Please correct the following."
588
+ msgstr "Opravte prosím následující."
589
+
590
+ #: classes/class.swpm-front-registration.php:301
591
+ msgid "Captcha validation failed."
592
+ msgstr "Ověření Captcha se nezdařilo."
593
 
594
+ #: classes/class.swpm-front-registration.php:309
595
  msgid "Email address not valid."
596
+ msgstr "E-mailová adresa je neplatná."
597
 
598
+ #: classes/class.swpm-front-registration.php:320
599
  msgid "No user found with that email address."
600
+ msgstr "Pro zadanou e-mailovou adresu nebyl nalezen žádný uživatel."
601
 
602
+ #: classes/class.swpm-front-registration.php:321
603
+ #: classes/class.swpm-front-registration.php:350
604
  msgid "Email Address: "
605
+ msgstr "E-mailová adresa: "
606
 
607
+ #: classes/class.swpm-front-registration.php:349
608
  msgid "New password has been sent to your email address."
609
+ msgstr "Na Vaši e-mailovou adresu bylo zasláno nové heslo."
610
+
611
+ #: classes/class.swpm-front-registration.php:371
612
+ msgid "Can't find member account."
613
+ msgstr "Členský účet nelze najít."
614
+
615
+ #: classes/class.swpm-front-registration.php:376
616
+ #: classes/class.swpm-front-registration.php:426
617
+ msgid "Account already active. "
618
+ msgstr "Účet je již aktivní. "
619
+
620
+ #: classes/class.swpm-front-registration.php:376
621
+ #: classes/class.swpm-front-registration.php:426
622
+ msgid " to login."
623
+ msgstr " pro přihlášení."
624
+
625
+ #: classes/class.swpm-front-registration.php:383
626
+ msgid ""
627
+ "Activation code mismatch. Cannot activate this account. Please contact the "
628
+ "site admin."
629
  msgstr ""
630
+ "Aktivační kód se neshoduje, účet nelze aktivovat. Kontaktujte prosím správce "
631
+ "webu."
632
 
633
+ #: classes/class.swpm-front-registration.php:397
634
+ msgid "Success! Your account has been activated successfully."
635
+ msgstr "Váš účet byl úspěšně aktivován."
636
+
637
+ #: classes/class.swpm-front-registration.php:421
638
+ msgid "Cannot find member account."
639
+ msgstr "Nelze najít členský účet."
640
+
641
+ #: classes/class.swpm-front-registration.php:443
642
+ msgid ""
643
+ "Activation email has been sent. Please check your email and activate your "
644
+ "account."
645
  msgstr ""
646
+ "Aktivační e-mail byl odeslán. Zkontrolujte prosím doručenou poštu a proveďte "
647
+ "aktivaci svého účtu."
648
+
649
+ #: classes/class.swpm-init-time-tasks.php:118
650
+ msgid "Sorry, Nonce verification failed."
651
+ msgstr "Litujeme, ověření Nonce se nezdařilo."
652
 
653
+ #: classes/class.swpm-init-time-tasks.php:125
654
  msgid "Sorry, Password didn't match."
655
+ msgstr "Heslo nesouhlasí."
656
 
657
+ #: classes/class.swpm-level-form.php:50
658
  msgid "Date format is not valid."
659
+ msgstr "Neplatný formát kalendářního data."
660
 
661
+ #: classes/class.swpm-level-form.php:58
662
  msgid "Access duration must be > 0."
663
+ msgstr "Doba trvání přístupu musí být > 0."
664
 
665
  #: classes/class.swpm-members.php:10
666
  msgid "Member"
667
+ msgstr "Člen"
668
 
669
  #: classes/class.swpm-members.php:19
670
  #: classes/class.swpm-membership-levels.php:20
671
  msgid "ID"
672
+ msgstr "ID"
673
 
674
+ #: classes/class.swpm-members.php:20 views/add.php:16 views/admin_add.php:11
675
+ #: views/admin_edit.php:19 views/edit.php:23
676
+ #: includes/swpm_mda_show_profile.php:27
677
  msgid "Username"
678
+ msgstr "Uživatelské jméno"
679
 
680
  #: classes/class.swpm-members.php:21
681
  #: classes/admin-includes/class.swpm-payments-list-table.php:78
682
+ #: views/add.php:32 views/admin_member_form_common_part.php:15
683
+ #: views/edit.php:39 includes/swpm_mda_show_profile.php:28
684
  msgid "First Name"
685
+ msgstr "Křestní jméno"
686
 
687
  #: classes/class.swpm-members.php:22
688
  #: classes/admin-includes/class.swpm-payments-list-table.php:79
689
+ #: views/add.php:36 views/admin_member_form_common_part.php:19
690
+ #: views/edit.php:43 includes/swpm_mda_show_profile.php:29
691
  msgid "Last Name"
692
+ msgstr "Příjmení"
693
 
694
+ #: classes/class.swpm-members.php:23 views/add.php:20 views/edit.php:27
695
+ #: includes/swpm_mda_show_profile.php:35
696
  msgid "Email"
697
+ msgstr "E-mail"
698
 
699
  #: classes/class.swpm-members.php:25 views/admin_member_form_common_part.php:11
700
  msgid "Access Starts"
701
+ msgstr "Počátek přístupu"
702
 
703
+ #: classes/class.swpm-members.php:26 includes/swpm_mda_show_profile.php:31
704
  msgid "Account State"
705
+ msgstr "Stav účtu"
706
 
707
+ #: classes/class.swpm-members.php:27
708
+ msgid "Last Login Date"
709
+ msgstr "Datum posledního přihlášení"
710
+
711
+ #: classes/class.swpm-members.php:46
712
  #: classes/class.swpm-membership-levels.php:36
713
  #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:94
714
  #: classes/admin-includes/class.swpm-payments-list-table.php:102
715
  msgid "Delete"
716
+ msgstr "Odstranit"
717
 
718
+ #: classes/class.swpm-members.php:47
719
  msgid "Set Status to Active"
720
+ msgstr "Nastavit stav na Aktivní"
721
 
722
+ #: classes/class.swpm-members.php:48
723
  msgid "Set Status to Active and Notify"
724
+ msgstr "Nastavit stav na Aktivní a upozornit"
725
 
726
+ #: classes/class.swpm-members.php:49
727
  msgid "Set Status to Inactive"
728
+ msgstr "Nastavit stav na Neaktivní"
729
 
730
+ #: classes/class.swpm-members.php:50
731
  msgid "Set Status to Pending"
732
+ msgstr "Nastavit stav na Čeká na vyřízení"
733
 
734
+ #: classes/class.swpm-members.php:51
735
  msgid "Set Status to Expired"
736
+ msgstr "Nastavit stav na Platnost vypršela"
737
 
738
+ #: classes/class.swpm-members.php:72
739
  msgid "incomplete"
740
+ msgstr "nekompletní"
741
 
742
+ #: classes/class.swpm-members.php:191
743
  msgid "No member found."
744
+ msgstr "Nebyl nalezen žádný člen."
745
 
746
+ #: classes/class.swpm-members.php:337
747
  msgid "Error! Nonce verification failed for user delete from admin end."
748
  msgstr ""
749
+ "Chyba! Pro odstranění uživatele z rozhraní správce se nepodařilo provést "
750
+ "ověření Nonce."
751
 
752
+ #: classes/class.swpm-members.php:406 classes/class.swpm-members.php:436
753
  msgid "Error! Please select a membership level first."
754
+ msgstr "Chyba! Nejprve vyberte členskou úroveň."
755
 
756
+ #: classes/class.swpm-members.php:423
757
  msgid "Membership level change operation completed successfully."
758
+ msgstr "Změna členské úrovně byla úspěšně dokončena."
759
 
760
+ #: classes/class.swpm-members.php:453
761
  msgid "Access starts date change operation successfully completed."
762
+ msgstr "Změna data „Počátek přístupu“ byla úspěšně dokončena."
763
 
764
+ #: classes/class.swpm-members.php:462
765
  msgid "Bulk Update Membership Level of Members"
766
+ msgstr "Hromadná aktualizace členských úrovní"
767
 
768
+ #: classes/class.swpm-members.php:465
769
  msgid ""
770
  "You can manually change the membership level of any member by editing the "
771
  "record from the members menu. "
772
  msgstr ""
773
+ "Členskou úroveň libovolného člena můžete ručně změnit úpravou jeho záznamu v "
774
+ "seznamu členů. "
775
 
776
+ #: classes/class.swpm-members.php:466
777
  msgid ""
778
  "You can use the following option to bulk update the membership level of "
779
  "users who belong to the level you select below."
780
  msgstr ""
781
+ "Pomocí následující volby můžete hromadně změnit členskou úroveň u všech "
782
+ "členů, kteří patří do níže vybrané úrovně."
783
 
784
+ #: classes/class.swpm-members.php:472 classes/class.swpm-members.php:520
785
  msgid "Membership Level: "
786
+ msgstr "Členská úroveň: "
787
 
788
+ #: classes/class.swpm-members.php:476
789
  msgid "Select Current Level"
790
+ msgstr "Vybrat zdrojovou úroveň"
791
 
792
+ #: classes/class.swpm-members.php:479
793
  msgid ""
794
  "Select the current membership level (the membership level of all members who "
795
  "are in this level will be updated)."
796
  msgstr ""
797
+ "Vyberte zdrojovou členskou úroveň (členská úroveň bude aktualizována u všech "
798
+ "členů, kteří jsou na této úrovni)."
799
 
800
+ #: classes/class.swpm-members.php:485
801
  msgid "Level to Change to: "
802
+ msgstr "Změna úrovně na: "
803
 
804
+ #: classes/class.swpm-members.php:489
805
  msgid "Select Target Level"
806
+ msgstr "Vybrat cílovou úroveň"
807
 
808
+ #: classes/class.swpm-members.php:492
809
  msgid "Select the new membership level."
810
+ msgstr "Vyberte novou členskou úroveň."
811
 
812
+ #: classes/class.swpm-members.php:498
813
  msgid "Bulk Change Membership Level"
814
+ msgstr "Hromadná změna členských úrovní"
815
 
816
+ #: classes/class.swpm-members.php:508
817
  msgid "Bulk Update Access Starts Date of Members"
818
+ msgstr "Hromadná aktualizace data počátku přístupu"
819
 
820
+ #: classes/class.swpm-members.php:512
821
  msgid ""
822
  "The access starts date of a member is set to the day the user registers. "
823
  "This date value is used to calculate how long the member can access your "
824
  "content that are protected with a duration type protection in the membership "
825
  "level. "
826
  msgstr ""
827
+ "Datum počátku přístupu člena je standardně nastaveno na den registrace. "
828
+ "Zadaná hodnota se používá k výpočtu, jak dlouho může člen přistupovat k "
829
+ "obsahu, který je chráněn časovou ochranou pro danou členskou úroveň. "
830
 
831
+ #: classes/class.swpm-members.php:513
832
  msgid ""
833
  "You can manually set a specific access starts date value of all members who "
834
  "belong to a particular level using the following option."
835
  msgstr ""
836
+ "Pomocí následující volby můžete hromadně nastavit hodnotu data „Počátek "
837
+ "přístupu“ u všech členů, kteří patří do níže vybrané úrovně."
838
 
839
+ #: classes/class.swpm-members.php:523
840
  msgid "Select Level"
841
+ msgstr "Vybrat úroveň"
842
 
843
+ #: classes/class.swpm-members.php:526
844
  msgid ""
845
  "Select the Membership level (the access start date of all members who are in "
846
  "this level will be updated)."
847
  msgstr ""
848
+ "Vyberte členskou úroveň (datum počáteku přístupu bude aktualizován u všech "
849
+ "členů, kteří jsou na této úrovni)."
850
 
851
+ #: classes/class.swpm-members.php:535
852
  msgid "Specify the access starts date value."
853
+ msgstr "Zadejte datum požadovaného počátku přístupu."
854
 
855
+ #: classes/class.swpm-members.php:541
856
  msgid "Bulk Change Access Starts Date"
857
+ msgstr "Hromadná změna data počátku přístupu"
858
 
859
+ #: classes/class.swpm-members.php:576
860
  msgid "Simple WP Membership::Members"
861
+ msgstr "Simple WP Membership::Členové"
862
 
863
+ #: classes/class.swpm-members.php:577
864
+ #: classes/class.swpm-membership-levels.php:226 views/admin_members_list.php:44
865
  msgid "Add New"
866
+ msgstr "Přidat nový záznam"
867
 
868
+ #: classes/class.swpm-members.php:582 views/admin_add.php:6
869
  msgid "Add Member"
870
+ msgstr "Přidat člena"
871
 
872
+ #: classes/class.swpm-members.php:583
873
  msgid "Bulk Operation"
874
+ msgstr "Hromadné operace"
875
 
876
  #: classes/class.swpm-membership-level.php:52
877
  msgid ""
878
  "Error! Nonce verification failed for membership level creation from admin "
879
  "end."
880
  msgstr ""
881
+ "Chyba! Pro přidání členské úrovně z rozhraní správce se nepodařilo provést "
882
+ "ověření Nonce."
883
 
884
+ #: classes/class.swpm-membership-level.php:68
885
  msgid "Membership Level Creation Successful."
886
+ msgstr "Vytvoření členské úrovně proběhlo úspěšně."
887
 
888
+ #: classes/class.swpm-membership-level.php:84
889
  msgid ""
890
  "Error! Nonce verification failed for membership level edit from admin end."
891
  msgstr ""
892
+ "Chyba! Pro úpravu členské úrovně z rozhraní správce se nepodařilo provést "
893
+ "ověření Nonce."
894
 
895
+ #: classes/class.swpm-membership-level.php:100
896
  msgid "Membership Level Updated Successfully."
897
+ msgstr "Členská úroveň byla úspěšně aktualizována."
898
 
899
  #: classes/class.swpm-membership-levels.php:22
900
  msgid "Role"
901
+ msgstr "Role"
902
 
903
  #: classes/class.swpm-membership-levels.php:23
904
  msgid "Access Valid For/Until"
905
+ msgstr "Přístup platný pro/do"
906
 
907
  #: classes/class.swpm-membership-levels.php:133
908
  msgid "No membership levels found."
909
+ msgstr "Nebyly nalezeny žádné členské úrovně."
910
 
911
+ #: classes/class.swpm-membership-levels.php:197
912
  msgid ""
913
  "Error! Nonce verification failed for membership level delete from admin end."
914
  msgstr ""
915
+ "Chyba! Pro odsranění členské úrovně z rozhraní správce se nepodařilo provést "
916
+ "ověření Nonce."
917
 
918
+ #: classes/class.swpm-membership-levels.php:216 views/admin_members_list.php:31
919
+ #: views/payments/admin_all_payment_transactions.php:16 views/template-1.php:53
920
+ #: views/template-2.php:54
921
  msgid "Search"
922
+ msgstr "Hledat"
923
 
924
+ #: classes/class.swpm-membership-levels.php:261
925
  msgid "Simple WP Membership::Membership Levels"
926
+ msgstr "Simple WP Membership::Členské úrovně"
927
 
928
+ #: classes/class.swpm-membership-levels.php:266
929
  msgid "Add Level"
930
+ msgstr "Přidat úroveň"
931
 
932
+ #: classes/class.swpm-membership-levels.php:267
933
  msgid "Manage Content Protection"
934
+ msgstr "Správa ochrany obsahu"
935
 
936
+ #: classes/class.swpm-membership-levels.php:268
937
  msgid "Category Protection"
938
+ msgstr "Ochrana kategorií"
939
+
940
+ #: classes/class.swpm-membership-levels.php:269
941
+ msgid "Post and Page Protection"
942
+ msgstr "Ochrana příspěvků a stránek"
943
+
944
+ #: classes/class.swpm-post-list.php:43 classes/class.swpm-post-list.php:52
945
+ #: classes/class.swpm-post-list.php:62
946
+ #: classes/admin-includes/class.swpm-payments-list-table.php:81
947
+ msgid "Date"
948
+ msgstr "Datum"
949
+
950
+ #: classes/class.swpm-post-list.php:44 classes/class.swpm-post-list.php:53
951
+ #: classes/class.swpm-post-list.php:63
952
+ msgid "Title"
953
+ msgstr "Název"
954
+
955
+ #: classes/class.swpm-post-list.php:45 classes/class.swpm-post-list.php:54
956
+ #: classes/class.swpm-post-list.php:64
957
+ msgid "Author"
958
+ msgstr "Autor"
959
+
960
+ #: classes/class.swpm-post-list.php:46 classes/class.swpm-post-list.php:56
961
+ #: classes/class.swpm-post-list.php:66
962
+ msgid "Status"
963
+ msgstr "Stav"
964
+
965
+ #: classes/class.swpm-post-list.php:55
966
+ msgid "Categories"
967
+ msgstr "Kategorie"
968
+
969
+ #: classes/class.swpm-post-list.php:65
970
+ msgid "Type"
971
+ msgstr "Typ"
972
+
973
+ #: classes/class.swpm-post-list.php:125
974
+ msgid "Protection settings updated!"
975
+ msgstr "Nastavení ochrany aktualizováno!"
976
+
977
+ #: classes/class.swpm-post-list.php:230
978
+ msgid "No items found."
979
+ msgstr "Nebyly nalezeny žádné položky."
980
+
981
+ #: classes/class.swpm-protection.php:22
982
+ msgid ""
983
+ "The category or parent category of this post is protected. You can change "
984
+ "the category protection settings from the "
985
  msgstr ""
986
+ "Kategorie nebo nadřazená kategorie tohoto příspěvku je chráněna. Nastavení "
987
+ "ochrany kategorie můžete změnit v "
988
+
989
+ #: classes/class.swpm-protection.php:23
990
+ msgid "category protection menu"
991
+ msgstr "nabídce Ochrany kategorií"
992
 
993
+ #: classes/class.swpm-settings.php:26 classes/class.swpm-settings.php:54
994
  msgid "General Settings"
995
+ msgstr "Obecná nastavení"
996
 
997
+ #: classes/class.swpm-settings.php:27
998
  msgid "Payment Settings"
999
+ msgstr "Nastavení plateb"
1000
 
1001
+ #: classes/class.swpm-settings.php:28
1002
  msgid "Email Settings"
1003
+ msgstr "Nastavení e-mailu"
1004
 
1005
+ #: classes/class.swpm-settings.php:29
1006
  msgid "Tools"
1007
+ msgstr "Nástroje"
1008
 
1009
+ #: classes/class.swpm-settings.php:30 classes/class.swpm-settings.php:187
1010
  msgid "Advanced Settings"
1011
+ msgstr "Rozšířená nastavení"
1012
 
1013
+ #: classes/class.swpm-settings.php:31
1014
  msgid "Addons Settings"
1015
+ msgstr "Nastavení doplňků"
1016
 
1017
+ #: classes/class.swpm-settings.php:53
1018
  msgid "Plugin Documentation"
1019
+ msgstr "Dokumentace pluginu"
1020
 
1021
+ #: classes/class.swpm-settings.php:55
1022
  msgid "Enable Free Membership"
1023
+ msgstr "Povolit bezplatné členství"
1024
 
1025
+ #: classes/class.swpm-settings.php:56
1026
  msgid ""
1027
  "Enable/disable registration for free membership level. When you enable this "
1028
  "option, make sure to specify a free membership level ID in the field below."
1029
  msgstr ""
1030
+ "Povolit / zakázat registraci pro bezplatnou členskou úroveň. Při povolení "
1031
+ "této možnosti nezapomeňte zadat do pole níže ID bezplatné členské úrovně."
1032
 
1033
+ #: classes/class.swpm-settings.php:57
1034
  msgid "Free Membership Level ID"
1035
+ msgstr "ID bezplatné členské úrovně"
1036
 
1037
+ #: classes/class.swpm-settings.php:58
1038
  msgid "Assign free membership level ID"
1039
+ msgstr "Přiřazené ID bezplatné členské úrovně"
1040
 
1041
+ #: classes/class.swpm-settings.php:59
1042
  msgid "Enable More Tag Protection"
1043
+ msgstr "Povolit ochranu značkou More"
1044
 
1045
+ #: classes/class.swpm-settings.php:60
1046
  msgid ""
1047
  "Enables or disables \"more\" tag protection in the posts and pages. Anything "
1048
  "after the More tag is protected. Anything before the more tag is teaser "
1049
  "content."
1050
  msgstr ""
1051
+ "Povolit / zakázat ochranu značkou „more“ v příspěvcích a stránkách. Cokoliv "
1052
+ "před značkou „more“ je upoutávkovým obsahem, veškerý obsah za značkou „more“ "
1053
+ "chráněn."
1054
 
1055
+ #: classes/class.swpm-settings.php:61
1056
  msgid "Hide Adminbar"
1057
+ msgstr "Skrýt lištu správce"
1058
 
1059
+ #: classes/class.swpm-settings.php:62
1060
  msgid ""
1061
  "WordPress shows an admin toolbar to the logged in users of the site. Check "
1062
  "this if you want to hide that admin toolbar in the frontend of your site."
1063
  msgstr ""
1064
+ "WordPress zobrazuje přihlášeným uživatelům webu panel nástrojů pro správu. "
1065
+ "Po zaškrtnutí této volby nebude panel nástrojů pro správu v rozhraní webu "
1066
+ "zobrazen."
1067
 
1068
+ #: classes/class.swpm-settings.php:63
1069
  msgid "Show Adminbar to Admin"
1070
+ msgstr "Zobrazit lištu správce u správce"
1071
 
1072
+ #: classes/class.swpm-settings.php:64
1073
  msgid ""
1074
  "Use this option if you want to show the admin toolbar to admin users only. "
1075
  "The admin toolbar will be hidden for all other users."
1076
  msgstr ""
1077
+ "Po zaškrtnutí této volby bude panel nástrojů pro správu zobrazen pouze "
1078
+ "uživatelům s oprávněním správce, pro ostatní uživatele zůstane panel skrytý."
1079
 
1080
+ #: classes/class.swpm-settings.php:65
1081
  msgid "Disable Access to WP Dashboard"
1082
+ msgstr "Zakázat přístup k panelu WP"
1083
 
1084
+ #: classes/class.swpm-settings.php:66
1085
  msgid ""
1086
+ "WordPress allows a standard wp user to be able to go to the wp-admin URL and "
1087
  "access his profile from the wp dashbaord. Using this option will prevent any "
1088
  "non admin users from going to the wp dashboard."
1089
  msgstr ""
1090
+ "WordPress umožňuje standardním uživatelům přejít na adresu wp-admin URL a "
1091
+ "získat přístup k profilu z řídicího panelu wp. Zaškrtnutí této volby zabrání "
1092
+ "všem uživatelům, kteří nemají oprávnění správce, přejít na řídicí panel wp."
1093
 
1094
+ #: classes/class.swpm-settings.php:68 classes/class.swpm-settings.php:242
1095
  msgid "Default Account Status"
1096
  msgstr "Výchozí stav účtu"
1097
 
1098
+ #: classes/class.swpm-settings.php:71
1099
  msgid ""
1100
  "Select the default account status for newly registered users. If you want to "
1101
  "manually approve the members then you can set the status to \"Pending\"."
1102
  msgstr ""
1103
+ "Výběr výchozího stavu účtu pro nově registrované uživatele. Pro ruční "
1104
+ "schvalování nových členů nastavte volbu na „Čeká na vyřízení“."
1105
 
1106
+ #: classes/class.swpm-settings.php:73
1107
  msgid "Members Must be Logged in to Comment"
1108
+ msgstr "Vyžadovat přihlášení člana pro odesílání komentářů"
1109
 
1110
+ #: classes/class.swpm-settings.php:74
1111
  msgid ""
1112
  "Enable this option if you only want the members of the site to be able to "
1113
  "post a comment."
1114
  msgstr ""
1115
+ "Zaškrtnutí této volby povolí zasílání komentářů pouze registrovaným členům "
1116
+ "webu."
1117
 
1118
+ #: classes/class.swpm-settings.php:83
1119
  msgid "Pages Settings"
1120
+ msgstr "Nastavení stránek"
1121
 
1122
+ #: classes/class.swpm-settings.php:84
1123
  msgid "Login Page URL"
1124
+ msgstr "URL přihlašovací stránky"
1125
 
1126
+ #: classes/class.swpm-settings.php:86
1127
  msgid "Registration Page URL"
1128
+ msgstr "URL registrační stránky"
1129
 
1130
+ #: classes/class.swpm-settings.php:88
1131
  msgid "Join Us Page URL"
1132
+ msgstr "URL stránky Přidejte se k nám"
1133
 
1134
+ #: classes/class.swpm-settings.php:90
1135
  msgid "Edit Profile Page URL"
1136
+ msgstr "URL stránky Upravit profil"
1137
 
1138
+ #: classes/class.swpm-settings.php:92
1139
  msgid "Password Reset Page URL"
1140
+ msgstr "URL stránky pro obnovení hesla"
1141
 
1142
+ #: classes/class.swpm-settings.php:95
1143
  msgid "Test & Debug Settings"
1144
+ msgstr "Nastavení testování a ladění"
1145
 
1146
+ #: classes/class.swpm-settings.php:97
1147
  msgid "Check this option to enable debug logging."
1148
+ msgstr "Zaškrtnutí této volby povolí protokolování ladění."
1149
+
1150
+ #: classes/class.swpm-settings.php:98
1151
+ msgid ""
1152
+ " This can be useful when troubleshooting an issue. Turn it off and reset the "
1153
+ "log files after the troubleshooting is complete."
1154
  msgstr ""
1155
+ " Vhodné při řešení problémů. Po vyřešení potíží volbu vypněte a resetujte "
1156
+ "protokolovací soubory."
1157
+
1158
+ #: classes/class.swpm-settings.php:100
1159
+ msgid "View general debug log file by clicking "
1160
+ msgstr "Zobrazit obecný soubor protokolu ladění kliknutím "
1161
+
1162
+ #: classes/class.swpm-settings.php:100 classes/class.swpm-settings.php:101
1163
+ #: classes/class.swpm-settings.php:102
1164
+ msgid "here"
1165
+ msgstr "sem"
1166
+
1167
+ #: classes/class.swpm-settings.php:101
1168
+ msgid "View login related debug log file by clicking "
1169
+ msgstr "Zobrazit soubor protokolu související s přihlašováním kliknutím "
1170
+
1171
+ #: classes/class.swpm-settings.php:102
1172
+ msgid "Reset debug log files by clicking "
1173
+ msgstr "Resetovat soubory protokolů kliknutím "
1174
 
1175
  #: classes/class.swpm-settings.php:103
1176
+ msgid "Enable Debug"
1177
+ msgstr "Povolit ladění"
1178
+
1179
+ #: classes/class.swpm-settings.php:105
1180
  msgid "Enable Sandbox Testing"
1181
+ msgstr "Povolit testování v sandboxu"
1182
 
1183
+ #: classes/class.swpm-settings.php:106
1184
  msgid "Enable this option if you want to do sandbox payment testing."
1185
+ msgstr "Zaškrtnutí této volby povolí testování plateb v sandboxu."
1186
 
1187
+ #: classes/class.swpm-settings.php:119
1188
+ msgid "Email Settings Overview"
1189
+ msgstr "Přehled nastavení e-mailu"
 
1190
 
1191
+ #: classes/class.swpm-settings.php:120
1192
  msgid "Email Misc. Settings"
1193
+ msgstr "Nastavení e-mailu společné"
1194
 
1195
+ #: classes/class.swpm-settings.php:122
1196
  msgid "From Email Address"
1197
+ msgstr "Adresa odesílatele"
1198
 
1199
+ #: classes/class.swpm-settings.php:126
1200
  msgid "Email Settings (Prompt to Complete Registration )"
1201
+ msgstr "Nastavení e-mailu (Výzva k dokončení registrace)"
1202
 
1203
+ #: classes/class.swpm-settings.php:127 classes/class.swpm-settings.php:140
1204
+ #: classes/class.swpm-settings.php:158 classes/class.swpm-settings.php:163
1205
+ #: classes/class.swpm-settings.php:168 classes/class.swpm-settings.php:173
1206
  msgid "Email Subject"
1207
+ msgstr "Předmět zprávy"
1208
 
1209
+ #: classes/class.swpm-settings.php:129 classes/class.swpm-settings.php:142
1210
+ #: classes/class.swpm-settings.php:159 classes/class.swpm-settings.php:164
1211
+ #: classes/class.swpm-settings.php:169 classes/class.swpm-settings.php:174
1212
  msgid "Email Body"
1213
+ msgstr "Tělo zprávy"
1214
 
1215
+ #: classes/class.swpm-settings.php:133
1216
  msgid ""
1217
  "Enter the email address where you want the admin notification email to be "
1218
  "sent to."
1219
  msgstr ""
1220
+ "Zadejte e-mailovou adresu, na kterou mají být zasílány zprávy s oznámeními "
1221
+ "pro správce."
1222
 
1223
+ #: classes/class.swpm-settings.php:134
1224
  msgid ""
1225
  " You can put multiple email addresses separated by comma (,) in the above "
1226
  "field to send the notification to multiple email addresses."
1227
  msgstr ""
1228
+ " Pro zasílání oznámení na více adres najednou oddělte jednotlivé e-mailové "
1229
+ "adresy čárkou (,)."
1230
 
1231
  #: classes/class.swpm-settings.php:136
1232
+ msgid "Enter the subject for the admin notification email."
1233
+ msgstr "Zadejte předmět zprávy s oznámením pro správce."
1234
+
1235
+ #: classes/class.swpm-settings.php:137
1236
  msgid ""
1237
  "This email will be sent to the admin when a new user completes the "
1238
  "membership registration. Only works if you have enabled the \"Send "
1239
  "Notification to Admin\" option above."
1240
  msgstr ""
1241
+ "Tato zpráva bude zaslána správci po dokončení registrace novým uživatelem. "
1242
+ "Pro její funkčnost je nutné výše aktivovat volbu „Odeslat oznámení správci“."
1243
 
1244
+ #: classes/class.swpm-settings.php:139
1245
  msgid "Email Settings (Registration Complete)"
1246
+ msgstr "Nastavení e-mailu (Registrace dokončena)"
1247
 
1248
+ #: classes/class.swpm-settings.php:144
1249
  msgid "Send Notification to Admin"
1250
+ msgstr "Odeslat oznámení správci"
1251
 
1252
+ #: classes/class.swpm-settings.php:145
1253
  msgid ""
1254
  "Enable this option if you want the admin to receive a notification when a "
1255
  "member registers."
1256
  msgstr ""
1257
+ "Po zaškrtnutí této volby budou správci zasílány oznámení po každé provedené "
1258
+ "registraci člena."
1259
 
1260
+ #: classes/class.swpm-settings.php:146
1261
  msgid "Admin Email Address"
1262
+ msgstr "E-mailová adresa správce"
1263
 
1264
+ #: classes/class.swpm-settings.php:148
1265
+ msgid "Admin Notification Email Subject"
1266
+ msgstr "Předmět zprávy s oznámením pro správce"
1267
+
1268
+ #: classes/class.swpm-settings.php:150
1269
  msgid "Admin Notification Email Body"
1270
+ msgstr "Tělo zprávy s oznámením pro správce"
1271
 
1272
+ #: classes/class.swpm-settings.php:153
1273
  msgid "Send Email to Member When Added via Admin Dashboard"
1274
+ msgstr "Odeslat e-mail členovi, pokud je přidán přes administrátorský panel"
1275
 
1276
+ #: classes/class.swpm-settings.php:157
1277
  msgid "Email Settings (Password Reset)"
1278
+ msgstr "Nastavení e-mailu (Obnovení hesla)"
1279
 
1280
+ #: classes/class.swpm-settings.php:162
1281
  msgid " Email Settings (Account Upgrade Notification)"
1282
+ msgstr " Nastavení e-mailu (Oznámení o upgradu účtu)"
1283
 
1284
+ #: classes/class.swpm-settings.php:167
1285
  msgid " Email Settings (Bulk Account Activate Notification)"
1286
+ msgstr " Nastavení e-mailu (Oznámení o hromadné aktivaci účtů)"
1287
 
1288
+ #: classes/class.swpm-settings.php:172
1289
+ msgid " Email Settings (Email Activation)"
1290
+ msgstr " Nastavení e-mailu (Aktivace přes e-mail)"
1291
+
1292
+ #: classes/class.swpm-settings.php:189
1293
  msgid "Enable Expired Account Login"
1294
+ msgstr "Povolit přihlášení u účtů s vypršenou platností"
1295
 
1296
+ #: classes/class.swpm-settings.php:190
1297
  msgid ""
1298
  "When enabled, expired members will be able to log into the system but won't "
1299
  "be able to view any protected content. This allows them to easily renew "
1300
  "their account by making another payment."
1301
  msgstr ""
1302
+ "Je-li tato volba zapnuta, uživatelé, jejichž členství již vypršelo, se mohu "
1303
+ "přihlásit do systému, ale nemohou zobrazit žádný chráněný obsah. Přihlášení "
1304
+ "do systému umožňuje snadné obnovení účtu zasláním další platby."
1305
 
1306
+ #: classes/class.swpm-settings.php:192
1307
  msgid "Membership Renewal URL"
1308
+ msgstr "URL pro obnovení členství"
1309
 
1310
+ #: classes/class.swpm-settings.php:193
1311
  msgid ""
1312
  "You can create a renewal page for your site. Read <a href=\"https://simple-"
1313
  "membership-plugin.com/creating-membership-renewal-button/\" target=\"_blank"
1314
  "\">this documentation</a> to learn how to create a renewal page."
1315
  msgstr ""
1316
+ "Na svém webu si můžete vytvořit stránku pro obnovení. Další informace "
1317
+ "naleznete <a href=\"https://simple-membership-plugin.com/creating-membership-"
1318
+ "renewal-button/\" target=\"_blank\">v této dokumentaci</a>, kde je popsáno, "
1319
+ "jak stránku pro obnovení vytvořit."
1320
 
1321
+ #: classes/class.swpm-settings.php:195
1322
+ msgid "After Registration Redirect URL"
1323
+ msgstr "Adresa URL pro přesměrování po registraci"
1324
+
1325
+ #: classes/class.swpm-settings.php:196
1326
+ msgid ""
1327
+ "You can enter an URL here to redirect the members to this page after they "
1328
+ "submit the registration form. Read <a href=\"https://simple-membership-"
1329
+ "plugin.com/configure-after-registration-redirect-for-members/\" target="
1330
+ "\"_blank\">this documentation</a> to learn how to setup after registration "
1331
+ "redirect."
1332
+ msgstr ""
1333
+ "Zde můžete zadat adresu URL stránky, na kterou budou členové přesměrováni po "
1334
+ "odeslání registračního formuláře. Další informace naleznete <a href="
1335
+ "\"https://simple-membership-plugin.com/configure-after-registration-redirect-"
1336
+ "for-members/\" target=\"_blank\">v této dokumentaci</a>, kde je popsáno, jak "
1337
+ "nastavit přesměrování po registraci."
1338
+
1339
+ #: classes/class.swpm-settings.php:198
1340
+ msgid "Enable Auto Login After Registration"
1341
+ msgstr "Povolit automatické přihlášení po registraci"
1342
+
1343
+ #: classes/class.swpm-settings.php:199
1344
+ msgid ""
1345
+ "Use this option if you want the members to be automatically logged into your "
1346
+ "site right after they complete the registration. This option will override "
1347
+ "any after registration redirection and instead it will trigger the after "
1348
+ "login redirection. Read <a href=\"https://simple-membership-plugin.com/"
1349
+ "configure-auto-login-after-registration-members/\" target=\"_blank\">this "
1350
+ "documentation</a> to learn more."
1351
+ msgstr ""
1352
+ "Zapněte tuto volbu pokud chcete, aby došlo k automatickému přihlášení členů "
1353
+ "na stránky ihned po dokončení registrace. Tato volba přepíše jakákoli jiná "
1354
+ "přesměrování po registraci a zapne přesměrování po přihlášení. Další "
1355
+ "informace naleznete <a href=\"https://simple-membership-plugin.com/configure-"
1356
+ "auto-login-after-registration-members/\" target=\"_blank\">v této "
1357
+ "dokumentaci</a>."
1358
+
1359
+ #: classes/class.swpm-settings.php:201
1360
+ msgid "After Logout Redirect URL"
1361
+ msgstr "Adresa URL pro přesměrování po odhlášení"
1362
+
1363
+ #: classes/class.swpm-settings.php:202
1364
+ msgid ""
1365
+ "You can enter an URL here to redirect the members to this page after they "
1366
+ "click the logout link to logout from your site."
1367
  msgstr ""
1368
+ "Zde můžete zadat adresu URL stránky, na kterou budou členové přesměrováni "
1369
+ "poté, co kliknou na odhlášení se z vašeho webu."
1370
 
1371
+ #: classes/class.swpm-settings.php:204
1372
+ msgid "Logout Member on Browser Close"
1373
+ msgstr "Odhlásit člena při zavření prohlížeče"
1374
+
1375
+ #: classes/class.swpm-settings.php:205
1376
+ msgid ""
1377
+ "Enable this option if you want the member to be logged out of the account "
1378
+ "when he closes the browser."
1379
+ msgstr ""
1380
+ "Zapněte tuto volbu pokud chcete, aby byl člen odhlášen z účtu při zavření "
1381
+ "prohlížeče."
1382
+
1383
+ #: classes/class.swpm-settings.php:207
1384
+ msgid "Allow Account Deletion"
1385
+ msgstr "Povolit smazání účtu"
1386
+
1387
+ #: classes/class.swpm-settings.php:208
1388
  msgid "Allow users to delete their accounts."
1389
+ msgstr "Povolí uživatelům smazání jejich účtů."
1390
+
1391
+ #: classes/class.swpm-settings.php:210
1392
+ msgid "Force Strong Password for Members"
1393
+ msgstr "Vynutit používání silných hesel"
1394
+
1395
+ #: classes/class.swpm-settings.php:211
1396
+ msgid ""
1397
+ "Enable this if you want the users to be forced to use a strong password for "
1398
+ "their accounts."
1399
  msgstr ""
1400
+ "Zapněte tuto volbu pokud chcete vynutit, aby uživatelé používali u svých "
1401
+ "účtů silná hesla."
1402
 
1403
+ #: classes/class.swpm-settings.php:213
1404
  msgid "Use WordPress Timezone"
1405
+ msgstr "Použít časové pásmo WordPress"
1406
 
1407
+ #: classes/class.swpm-settings.php:214
1408
  msgid ""
1409
  "Use this option if you want to use the timezone value specified in your "
1410
  "WordPress General Settings interface."
1411
  msgstr ""
1412
+ "Zapněte tuto volbu pokud chcete používat časové pásmo specifikované v "
1413
+ "základním nastavení WordPressu."
1414
 
1415
+ #: classes/class.swpm-settings.php:216
1416
  msgid "Auto Delete Pending Account"
1417
+ msgstr "Automatické mazání účtů čekajících na vyřízení"
1418
 
1419
+ #: classes/class.swpm-settings.php:219
1420
  msgid "Select how long you want to keep \"pending\" account."
1421
  msgstr ""
1422
+ "Vyberte, jak dlouho chcete zachovat v seznamu účet se stavem „Čeká na "
1423
+ "vyřízení“."
1424
 
1425
+ #: classes/class.swpm-settings.php:221
1426
  msgid "Admin Dashboard Access Permission"
1427
+ msgstr "Přístupové oprávnění k panelu správce"
1428
 
1429
+ #: classes/class.swpm-settings.php:224
1430
  msgid ""
1431
  "SWPM admin dashboard is accessible to admin users only (just like any other "
1432
  "plugin). You can allow users with other WP user role to access the SWPM "
1433
+ "admin dashboard by selecting a value here. Note that this option cannot work "
1434
+ "if you enabled the \"Disable Access to WP Dashboard\" option in General "
1435
+ "Settings."
1436
  msgstr ""
1437
+ "Řídicí panel správce SWPM je přístupný pouze uživatelům s oprávněním správce "
1438
+ "(stejně jako u ostatních pluginů). Výběrem jiné hodnoty můžete povolit "
1439
+ "přístup k řídicímu panelu správce SWPM i uživatelům WP s odlišnými "
1440
+ "přístupovými právy. Pozor, toto nastavení nebude fungovat, jestliže je v "
1441
+ "Obecném nastavení zapnuta volba „Zakázat přístup k panelu WP“."
1442
 
1443
+ #: classes/class.swpm-settings.php:226
1444
+ msgid "Force WP User Synchronization"
1445
+ msgstr "Vynutit synchronizaci uživatelů WP"
1446
+
1447
+ #: classes/class.swpm-settings.php:227
1448
+ msgid ""
1449
+ "Enable this option if you want to force the member login to be synchronized "
1450
+ "with WP user account. This can be useful if you are using another plugin "
1451
+ "that uses WP user records. For example: bbPress plugin."
1452
+ msgstr ""
1453
+ "Zapnutím této volby dojde při přihlášení člena k vynucené synchronizaci s "
1454
+ "uživatelským účtem WP. Tato možnost je užitečná v případě, když jsou "
1455
+ "používány pluginy, které používají uživatelské záznamy WP (např. bbPress "
1456
+ "plugin)."
1457
+
1458
+ #: classes/class.swpm-settings.php:230
1459
+ msgid "Create Member Accounts for New WP Users"
1460
+ msgstr "Vytvoření členských účtů pro nové uživatele WP"
1461
+
1462
+ #: classes/class.swpm-settings.php:232
1463
+ msgid "Enable Auto Create Member Accounts"
1464
+ msgstr "Zapnout automatické vytváření členských účtů"
1465
+
1466
+ #: classes/class.swpm-settings.php:233
1467
+ msgid ""
1468
+ "Enable this option to automatically create member accounts for any new WP "
1469
+ "user that is created by another plugin."
1470
+ msgstr ""
1471
+ "Zapněte tuto volbu pokud chcete automaticky vytvářet členské účty i pro "
1472
+ "všechny nové uživatele WP, jejich účet byl vytvořen jiným pluginem."
1473
+
1474
+ #: classes/class.swpm-settings.php:236
1475
+ msgid "Default Membership Level"
1476
+ msgstr "Výchozí členská úroveň"
1477
+
1478
+ #: classes/class.swpm-settings.php:239
1479
+ msgid ""
1480
+ "When automatically creating a member account using this feature, the "
1481
+ "membership level of the user will be set to the one you specify here."
1482
+ msgstr ""
1483
+ "Při automatickém vytváření členského účtu pomocí této funkce bude členská "
1484
+ "úroveň uživatele nastavena na zadanou hodnotu."
1485
+
1486
+ #: classes/class.swpm-settings.php:245
1487
+ msgid ""
1488
+ "When automatically creating a member account using this feature, the "
1489
+ "membership account status of the user will be set to the one you specify "
1490
+ "here."
1491
+ msgstr ""
1492
+ "Při automatickém vytváření členského účtu pomocí této funkce bude stav účtu "
1493
+ "uživatele nastaven na zadanou hodnotu."
1494
+
1495
+ #: classes/class.swpm-settings.php:247
1496
+ msgid "Payment Notification Forward URL"
1497
+ msgstr "URL pro přeposlání oznámení o platbě"
1498
+
1499
+ #: classes/class.swpm-settings.php:248
1500
+ msgid ""
1501
+ "You can enter an URL here to forward the payment notification after the "
1502
+ "membership payment has been processed by this plugin. Useful if you want to "
1503
+ "forward the payment notification to an external script for further "
1504
+ "processing."
1505
  msgstr ""
1506
+ "Zde je možné zadat adresu URL, na kterou je přeposláno oznámení o platbě, "
1507
+ "poté co je platba za členství tímto pluginem zpracována. Tato funkcionalita "
1508
+ "je užitečná v případě, kdy je vyžadováno zpracování oznámení o platbě "
1509
+ "externím skriptem."
1510
+
1511
+ #: classes/class.swpm-settings.php:251 views/add.php:65
1512
+ msgid "Terms and Conditions"
1513
+ msgstr "Podmínky a ujednání"
1514
+
1515
+ #: classes/class.swpm-settings.php:253
1516
+ msgid "Enable Terms and Conditions"
1517
+ msgstr "Zapnout podmínky a ujednání"
1518
+
1519
+ #: classes/class.swpm-settings.php:254
1520
+ msgid "Users must accept the terms before they can complete the registration."
1521
+ msgstr ""
1522
+ "Pro dokončení registrace musí uživatel vyjádřit souhlasit s podmínkami a "
1523
+ "ujednáními."
1524
+
1525
+ #: classes/class.swpm-settings.php:255
1526
+ msgid "Terms and Conditions Page URL"
1527
+ msgstr "Stránka s podmínkami a ujednáními"
1528
+
1529
+ #: classes/class.swpm-settings.php:256
1530
+ msgid ""
1531
+ "Enter the URL of your terms and conditions page. You can create a WordPress "
1532
+ "page and specify your terms in there then specify the URL of that page in "
1533
+ "the above field."
1534
+ msgstr ""
1535
+ "Adresa URL pro stránku s podmínkami a ujednáními. Stránka může být vytvořena "
1536
+ "ve WordPressu, ve výše uvedeném poli je možné zadat její URL adresu."
1537
+
1538
+ #: classes/class.swpm-settings.php:257
1539
+ msgid "Enable Privacy Policy"
1540
+ msgstr "Zapnout zásady ochrany osobních údajů"
1541
+
1542
+ #: classes/class.swpm-settings.php:258
1543
+ msgid "Users must accept it before they can complete the registration."
1544
+ msgstr ""
1545
+ "Pro dokončení registrace musí uživatel vyjádřit souhlasit se zásadami "
1546
+ "ochrany osobních údajů."
1547
+
1548
+ #: classes/class.swpm-settings.php:259
1549
+ msgid "Privacy Policy Page URL"
1550
+ msgstr "Stránka se zásadami ochrany osobních údajů"
1551
+
1552
+ #: classes/class.swpm-settings.php:260
1553
+ msgid "Enter the URL of your privacy policy page."
1554
+ msgstr "Adresa URL pro stránku se zásadami ochrany osobních údajů."
1555
+
1556
+ #: classes/class.swpm-settings.php:350 classes/class.swpm-settings.php:396
1557
+ #: classes/class.swpm-settings.php:425
1558
+ msgid "Settings updated!"
1559
+ msgstr "Nastavení aktualizováno!"
1560
+
1561
+ #: classes/class.swpm-settings.php:355
1562
+ msgid "General Plugin Settings."
1563
+ msgstr "Obecná nastavení pluginu."
1564
 
1565
+ #: classes/class.swpm-settings.php:359
1566
  msgid "Page Setup and URL Related settings."
1567
+ msgstr "Nastavení stránek a souvisejících adres URL."
1568
+
1569
+ #: classes/class.swpm-settings.php:362
1570
+ msgid ""
1571
+ "The following pages are required for the plugin to function correctly. These "
1572
+ "pages were automatically created by the plugin at install time."
1573
  msgstr ""
1574
+ "Pro správnou funkci pluginu jsou vyžadovány následující stránky. K jejich "
1575
+ "automatickému vytvoření došlo v průběhu instalace."
1576
 
1577
+ #: classes/class.swpm-settings.php:367
1578
  msgid "Testing and Debug Related Settings."
1579
+ msgstr "Nastavení související s testováním a laděním."
1580
 
1581
+ #: classes/class.swpm-settings.php:371
1582
  msgid ""
1583
  "This email will be sent to your users when they complete the registration "
1584
  "and become a member."
1585
  msgstr ""
1586
+ "Tento e-mail bude zaslán uživatelům, jakmile dokončí registraci a stanou se "
1587
+ "členy."
1588
 
1589
+ #: classes/class.swpm-settings.php:375
1590
  msgid ""
1591
  "This email will be sent to your users when they use the password reset "
1592
  "functionality."
1593
  msgstr ""
1594
+ "Tento e-mail bude zaslán uživatelům, pokud použijí funkci pro obnovení hesla."
1595
 
1596
+ #: classes/class.swpm-settings.php:381
1597
+ msgid ""
1598
+ "This interface lets you custsomize the various emails that gets sent to your "
1599
+ "members for various actions. The default settings should be good to get your "
1600
+ "started."
1601
  msgstr ""
1602
+ "Toto rozhraní slouží k přizpůsobení e-mailových zpráv, které jsou zasílány "
1603
+ "členům po různých akcích. Výchozí nastavení by mělo pomoci ke snadnějšímu "
1604
+ "začátku."
1605
 
1606
+ #: classes/class.swpm-settings.php:385 views/admin_tools_settings.php:82
1607
+ msgid "This documentation"
1608
+ msgstr "Tato dokumentace"
1609
+
1610
+ #: classes/class.swpm-settings.php:386
1611
+ msgid ""
1612
+ " explains what email merge tags you can use in the email body field to "
1613
+ "customize it (if you want to)."
1614
+ msgstr ""
1615
+ " obsahuje seznam značek / kódů polí pro hromadnou korespondenci, které lze "
1616
+ "použít k přizpůsobení těla zprávy."
1617
+
1618
+ #: classes/class.swpm-settings.php:399
1619
+ msgid "Settings in this section apply to all emails."
1620
+ msgstr "Nastavení v této části je platné pro všechny e-maily."
1621
+
1622
+ #: classes/class.swpm-settings.php:403
1623
  msgid ""
1624
  "This email will be sent to your users after account upgrade (when an "
1625
  "existing member pays for a new membership level)."
1626
  msgstr ""
1627
+ "Tento e-mail bude zaslán uživatelům zaslán po upgradu účtu (jestliže "
1628
+ "stávající člen zaplatí za novou členskou úroveň)."
1629
 
1630
+ #: classes/class.swpm-settings.php:407
1631
  msgid ""
1632
  "This email will be sent to your members when you use the bulk account "
1633
  "activate and notify action."
1634
  msgstr ""
1635
+ "Tento e-mail bude zaslán členům při hromadné aktivaci účtů a volbě oznámit "
1636
+ "akci."
1637
 
1638
+ #: classes/class.swpm-settings.php:408
1639
+ msgid ""
1640
+ " You cannot use email merge tags in this email. You can only use generic "
1641
+ "text."
1642
+ msgstr ""
1643
+ " V tomto typu zprávy nelze používat značky / kódy polí pro hromadnou "
1644
+ "korespondenci, povolen je pouze prostý text."
1645
+
1646
+ #: classes/class.swpm-settings.php:413
1647
+ msgid ""
1648
+ "This email will be sent if Email Activation is enabled for a Membership "
1649
+ "Level."
1650
+ msgstr ""
1651
+ "Tento e-mail bude odeslán, pokud je pro členskou úroveň povolena aktivace "
1652
+ "přes e-mail."
1653
+
1654
+ #: classes/class.swpm-settings.php:417
1655
  msgid ""
1656
  "This email will be sent to prompt users to complete registration after the "
1657
  "payment."
1658
  msgstr ""
1659
+ "Tento e-mail bude zaslán k vyzvání uživatele, aby dokončil registraci (po "
1660
+ "provedení platby)."
1661
 
1662
+ #: classes/class.swpm-settings.php:428
1663
  msgid "This page allows you to configure some advanced features of the plugin."
1664
+ msgstr "Tato záložka slouží k nastavení některých pokročilých funkcí pluginu."
1665
+
1666
+ #: classes/class.swpm-settings.php:432
1667
+ msgid ""
1668
+ "This section allows you to configure automatic creation of member accounts "
1669
+ "when new WP User records are created by another plugin. It can be useful if "
1670
+ "you are using another plugin that creates WP user records and you want them "
1671
+ "to be recognized in the membership plugin."
1672
  msgstr ""
1673
+ "Tato část slouží nastavení automatického vytváření členských účtů, jestliže "
1674
+ "jsou nové záznamy uživatelů WP vytvářeny jiným pluginem. Tato funkcionalita "
1675
+ "je užitečná pro rozpoznání záznamů uživatelů WP v pluginu WP Membership, "
1676
+ "pokud byly vytvořeny v některém z jiných pluginů."
1677
 
1678
+ #: classes/class.swpm-settings.php:436
1679
+ msgid ""
1680
+ "This section allows you to configure terms and conditions and privacy policy "
1681
+ "that users must accept at registration time."
1682
  msgstr ""
1683
+ "Tato část umožňuje nastavení podmínek a ujednání a zásad ochrany osobních "
1684
+ "údajů, které musí uživatelé přijmout v průběhu registrace."
1685
+
1686
+ #: classes/class.swpm-settings.php:565
1687
+ msgid "Simple WP Membership::Settings"
1688
+ msgstr "Simple WP Membership::Nastavení"
1689
 
1690
+ #: classes/class.swpm-utils-member.php:36
1691
+ #: classes/class.swpm-utils-member.php:44
1692
+ #: classes/class.swpm-utils-member.php:52
1693
+ #: classes/class.swpm-utils-member.php:62
1694
  msgid "User is not logged in."
1695
  msgstr "Uživatel není přihlášen."
1696
 
1697
+ #: classes/class.swpm-utils-member.php:80
1698
+ msgid "No Expiry"
1699
+ msgstr "Bez vypršení platnosti"
1700
+
1701
  #: classes/class.swpm-utils-misc.php:50
1702
  msgid "Registration"
1703
+ msgstr "Registrace"
1704
 
1705
  #: classes/class.swpm-utils-misc.php:73
1706
  msgid "Member Login"
1707
+ msgstr "Přihlášení"
1708
 
1709
  #: classes/class.swpm-utils-misc.php:96
1710
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:117
1711
  msgid "Profile"
1712
+ msgstr "Profil"
1713
 
1714
  #: classes/class.swpm-utils-misc.php:119
1715
  msgid "Password Reset"
1716
+ msgstr "Obnovení hesla"
1717
 
1718
+ #: classes/class.swpm-utils-misc.php:168
1719
+ #, php-format
1720
+ msgid ""
1721
+ "You will be automatically redirected in a few seconds. If not, please %s."
1722
+ msgstr ""
1723
+ "Během několika sekund budete automaticky přesměrováni. Pokud ne, prosím% s."
1724
+
1725
+ #: classes/class.swpm-utils-misc.php:172
1726
+ msgid "Action Status"
1727
+ msgstr "Stav akce"
1728
+
1729
+ #: classes/class.swpm-utils-misc.php:274
1730
  msgid "Not a Member?"
1731
+ msgstr "Nejste členem?"
1732
 
1733
+ #: classes/class.swpm-utils-misc.php:285
1734
  msgid "renew"
1735
+ msgstr "obnovit"
1736
 
1737
+ #: classes/class.swpm-utils-misc.php:285
1738
  msgid " your account to gain access to this content."
1739
+ msgstr " svůj účet pro získání přístupu k tomuto obsahu."
1740
 
1741
+ #: classes/class.swpm-utils-misc.php:343 classes/class.swpm-utils-misc.php:349
1742
  msgid "Error! This action ("
1743
+ msgstr "Chyba! Tato akce ("
1744
+
1745
+ #: classes/class.swpm-utils-misc.php:421
1746
+ msgid "(Please Select)"
1747
+ msgstr "(Vyberte prosím)"
1748
 
1749
  #: classes/class.swpm-utils-template.php:38
1750
  msgid "Error! Failed to find a template path for the specified template: "
1751
+ msgstr "Chyba! Nelze najít cestu k zadané šabloně: "
1752
 
1753
+ #: classes/class.swpm-utils.php:101
1754
  msgid "Never"
1755
  msgstr "Nikdy"
1756
 
1757
+ #: classes/class.swpm-utils.php:116 views/admin_members_list.php:19
1758
  msgid "Active"
1759
  msgstr "Aktivní"
1760
 
1761
+ #: classes/class.swpm-utils.php:117 views/admin_members_list.php:20
1762
  msgid "Inactive"
1763
  msgstr "Neaktivní"
1764
 
1765
+ #: classes/class.swpm-utils.php:118 views/admin_members_list.php:21
1766
+ msgid "Activation Required"
1767
+ msgstr "Vyžadována aktivace"
1768
+
1769
+ #: classes/class.swpm-utils.php:119
1770
+ msgid "Male"
1771
+ msgstr "Muž"
1772
+
1773
+ #: classes/class.swpm-utils.php:120
1774
+ msgid "Female"
1775
+ msgstr "Žena"
1776
+
1777
+ #: classes/class.swpm-utils.php:121
1778
+ msgid "Not Specified"
1779
+ msgstr "Nespecifikováno"
1780
+
1781
+ #: classes/class.swpm-utils.php:119 views/admin_members_list.php:22
1782
  msgid "Pending"
1783
+ msgstr "Čeká na vyřízení"
1784
 
1785
+ #: classes/class.swpm-utils.php:120 views/admin_members_list.php:24
1786
  msgid "Expired"
1787
+ msgstr "Platnost vypršela"
1788
 
1789
+ #: classes/class.swpm-utils.php:414 views/account_delete_warning.php:3
1790
  msgid "Delete Account"
1791
+ msgstr "Odstranit účet"
1792
 
1793
  #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:75
1794
  msgid "Payment Button ID"
1795
+ msgstr "ID tlačítka platby"
1796
 
1797
  #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:76
1798
  msgid "Payment Button Title"
1799
+ msgstr "Název tlačítka platby"
1800
 
1801
  #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:77
1802
  msgid "Membership Level ID"
1803
+ msgstr "ID členské úrovně"
1804
 
1805
  #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:78
1806
  msgid "Button Type"
1807
+ msgstr "Typ tlačítka"
1808
 
1809
  #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:79
1810
  msgid "Button Shortcode"
1811
+ msgstr "Shortcode tlačítka"
1812
 
1813
  #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:127
1814
  #: views/admin_members_list.php:9
1815
  #: views/payments/admin_all_payment_transactions.php:32
1816
  msgid "The selected entry was deleted!"
1817
+ msgstr "Vybraný záznam byl smazán!"
1818
 
1819
  #: classes/admin-includes/class.swpm-payments-admin-menu.php:21
1820
  msgid "Simple Membership::Payments"
1821
+ msgstr "Simple Membership::Platby"
1822
 
1823
  #: classes/admin-includes/class.swpm-payments-admin-menu.php:25
1824
  msgid "Transactions"
1825
+ msgstr "Transakce"
1826
 
1827
  #: classes/admin-includes/class.swpm-payments-admin-menu.php:26
1828
  msgid "Manage Payment Buttons"
1829
+ msgstr "Správa platebních tlačítek"
1830
 
1831
  #: classes/admin-includes/class.swpm-payments-admin-menu.php:27
1832
  #: views/payments/admin_payment_buttons.php:27
1833
  msgid "Create New Button"
1834
+ msgstr "Vytvořit nové tlačítko"
1835
 
1836
  #: classes/admin-includes/class.swpm-payments-list-table.php:57
1837
+ #: views/template-1.php:95 views/template-2.php:97
1838
  msgid "View Profile"
1839
+ msgstr "Zobrazit profil"
1840
 
1841
  #: classes/admin-includes/class.swpm-payments-list-table.php:76
1842
  msgid "Row ID"
1843
+ msgstr "Řádek ID"
1844
 
1845
  #: classes/admin-includes/class.swpm-payments-list-table.php:77
1846
  #: views/forgot_password.php:5
1847
  msgid "Email Address"
1848
+ msgstr "E-mailová adresa"
1849
 
1850
  #: classes/admin-includes/class.swpm-payments-list-table.php:80
1851
  msgid "Member Profile"
1852
+ msgstr "Profil člena"
 
 
 
 
1853
 
1854
  #: classes/admin-includes/class.swpm-payments-list-table.php:82
1855
  msgid "Transaction ID"
1856
+ msgstr "ID transakce"
1857
 
1858
  #: classes/admin-includes/class.swpm-payments-list-table.php:83
1859
  msgid "Subscriber ID"
1860
+ msgstr "ID odběratele"
1861
 
1862
  #: classes/admin-includes/class.swpm-payments-list-table.php:84
1863
  msgid "Amount"
1864
+ msgstr "Částka"
1865
 
1866
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:60
1867
  msgid "Your membership profile will be updated to reflect the payment."
1868
  msgstr ""
1869
+ "Váš členský profil bude aktualizován tak, aby reflektoval přijatou platbu."
1870
 
1871
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:61
1872
  msgid "Your profile username: "
1873
+ msgstr "Vaše uživatelské jméno: "
1874
 
1875
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:73
1876
  msgid "Click on the following link to complete the registration."
1877
+ msgstr "Registraci dokončíte kliknutím na následující odkaz."
1878
 
1879
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:74
1880
  msgid "Click here to complete your paid registration"
1881
+ msgstr "Klikněte sem pro dokončení placené registrace"
1882
 
1883
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:79
1884
  msgid ""
1885
  "If you have just made a membership payment then your payment is yet to be "
1886
  "processed. Please check back in a few minutes. An email will be sent to you "
1887
  "with the details shortly."
1888
  msgstr ""
1889
+ "Pokud jste právě provedli platbu za členství, probíhá její zpracování. "
1890
+ "Zkuste to prosím znovu za několik minut. Na e-mail vám bude v krátké době "
1891
+ "zaslána zpráva s podrobnostmi."
1892
 
1893
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:93
1894
  msgid "Expiry: "
1895
+ msgstr "Konec platnosti: "
1896
 
1897
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:95
1898
  msgid "You are not logged-in as a member"
1899
+ msgstr "Nejste přihlášeni jako člen"
1900
+
1901
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:115
1902
+ msgid "Logged in as: "
1903
+ msgstr "Uživatel přihlášen jako: "
1904
+
1905
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:118
1906
+ #: views/loggedin.php:31
1907
+ msgid "Logout"
1908
+ msgstr "Odhlásit se"
1909
+
1910
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:121
1911
+ msgid "Login Here"
1912
+ msgstr "Přihlášení"
1913
+
1914
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:122
1915
+ msgid "Not a member? "
1916
+ msgstr "Nemáte přihlašovací údaje? "
1917
+
1918
+ # Připojit se
1919
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:123
1920
+ msgid "Join Now"
1921
+ msgstr "Připojit se"
1922
+
1923
+ #: ipn/swpm-smart-checkout-ipn.php:260 ipn/swpm-smart-checkout-ipn.php:285
1924
+ #, php-format
1925
+ msgid "Error occured during payment verification. Error code: %d. Message: %s"
1926
+ msgstr "Během ověřování platby došlo k chybě. Chybový kód: %d. Zpráva: %s"
1927
+
1928
+ #: ipn/swpm-smart-checkout-ipn.php:298
1929
+ #, php-format
1930
+ msgid ""
1931
+ "Payment check failed: invalid amount received. Expected %s %s, got %s %s."
1932
+ msgstr ""
1933
+ "Kontrola platby se nezdařila: byla přijata neplatná částka. Očekáváno: %s "
1934
+ "%s, obdrženo: %s %s."
1935
+
1936
+ #: ipn/swpm-smart-checkout-ipn.php:315
1937
+ msgid "Empty payment data received."
1938
+ msgstr "Byla obdržena prázdná platební data."
1939
+
1940
+ #: ipn/swpm-smart-checkout-ipn.php:355
1941
+ msgid "IPN product validation failed. Check debug log for more details."
1942
+ msgstr ""
1943
+ "Ověření produktu IPN se nezdařilo. Podrobnosti najdete v protokolu ladění."
1944
+
1945
+ #: views/account_delete_warning.php:7
1946
+ msgid ""
1947
+ "You are about to delete an account. This will delete user data associated "
1948
+ "with this account. "
1949
  msgstr ""
1950
+ "Chystáte se odstranit účet, smazána budou i uživatelská data spojená s tímto "
1951
+ "účtem. "
1952
+
1953
+ #: views/account_delete_warning.php:8
1954
+ msgid "It will also delete associated WordPress user account."
1955
+ msgstr "Odstraněn bude také přidružený uživatelský účet WordPress."
1956
+
1957
+ #: views/account_delete_warning.php:9
1958
+ msgid ""
1959
+ "(NOTE: for safety, we do not allow deletion of any associated WordPress "
1960
+ "account with administrator role)."
1961
+ msgstr ""
1962
+ "(POZNÁMKA: Z bezpečnostních důvodů není dovoleno odstranění WordPress účtů s "
1963
+ "administrátorskými právy)."
1964
+
1965
+ #: views/account_delete_warning.php:10
1966
+ msgid "Continue?"
1967
+ msgstr "Pokračovat?"
1968
 
1969
+ #: views/account_delete_warning.php:13
1970
+ msgid "Password: "
1971
+ msgstr "Heslo: "
1972
+
1973
+ #: views/account_delete_warning.php:14
1974
+ msgid "Confirm Account Deletion"
1975
+ msgstr "Potvrdit odstranění účtu"
1976
+
1977
+ #: views/add.php:24 views/admin_add.php:19 views/admin_edit.php:44
1978
+ #: views/edit.php:31 views/login.php:17
1979
  msgid "Password"
1980
  msgstr "Heslo"
1981
 
1982
+ #: views/add.php:28 views/edit.php:35
1983
  msgid "Repeat Password"
1984
  msgstr "Zopakovat heslo"
1985
 
1986
+ #: views/add.php:65
1987
+ msgid "I accept the "
1988
+ msgstr "Přijímám "
1989
+
1990
+ #: views/add.php:77
1991
+ msgid "I agree to the "
1992
+ msgstr "Souhlasím s "
1993
+
1994
+ #: views/add.php:77
1995
+ msgid "Privacy Policy"
1996
+ msgstr "Zásady ochrany osobních údajů"
1997
+
1998
+ #: views/add.php:88
1999
  msgid "Register"
2000
+ msgstr "Registrovat"
2001
 
2002
+ #: views/admin_add.php:7
2003
  msgid "Create a brand new user and add it to this site."
2004
+ msgstr "Vytvoření nového uživatele a zřízení přístupu na tento web."
2005
 
2006
+ #: views/admin_add.php:11 views/admin_add.php:15 views/admin_add_level.php:12
2007
+ #: views/admin_add_level.php:16 views/admin_add_level.php:20
2008
+ #: views/admin_edit.php:19 views/admin_edit.php:40
2009
+ #: views/admin_edit_level.php:16 views/admin_edit_level.php:20
2010
+ #: views/admin_edit_level.php:24
2011
  msgid "(required)"
2012
+ msgstr "(vyžadováno)"
2013
 
2014
+ #: views/admin_add.php:15 views/admin_edit.php:40
2015
  msgid "E-mail"
2016
+ msgstr "E-mail"
2017
 
2018
+ #: views/admin_add.php:19
2019
  msgid "(twice, required)"
2020
+ msgstr "(dvakrát, vyžadováno)"
2021
 
2022
+ #: views/admin_add.php:24 views/admin_edit.php:48
2023
  msgid "Strength indicator"
2024
+ msgstr "Indikátor síly hesla"
2025
 
2026
+ #: views/admin_add.php:25 views/admin_edit.php:49
2027
  msgid ""
2028
  "Hint: The password should be at least seven characters long. To make it "
2029
  "stronger, use upper and lower case letters, numbers and symbols like ! \" ? "
2030
  "$ % ^ &amp; )."
2031
  msgstr ""
2032
+ "Tip: Heslo by mělo mít alespoň sedm znaků. Chcete-li jej zesílit, používejte "
2033
+ "velká a malá písmena, číslice a symboly, např. ! \" ? $ % ^ &amp;)."
2034
 
2035
+ #: views/admin_add.php:29 views/admin_edit.php:53 views/loggedin.php:10
2036
  msgid "Account Status"
2037
  msgstr "Stav účtu"
2038
 
2039
+ #: views/admin_add.php:39
2040
  msgid "Add New Member "
2041
+ msgstr "Přidat nového člena "
2042
 
2043
  #: views/admin_addon_settings.php:3
2044
  msgid ""
2045
  "Some of the simple membership plugin's addon settings and options will be "
2046
  "displayed here (if you have them)"
2047
  msgstr ""
2048
+ "Zde se zobrazí některá nastavení a možnosti doplňků pluginu Simple WP "
2049
+ "Membership (pokud jsou nainstalovány)"
2050
 
2051
  #: views/admin_addon_settings.php:8
2052
  msgid "Save Changes"
2053
+ msgstr "Uložit změny"
2054
 
2055
  #: views/admin_add_level.php:6
2056
+ msgid "Add Membership Level"
2057
+ msgstr "Přidat členskou úroveň"
2058
+
2059
+ #: views/admin_add_level.php:7
2060
  msgid "Create new membership level."
2061
+ msgstr "Vytvořit novou členskou úroveň."
2062
 
2063
+ #: views/admin_add_level.php:12 views/admin_edit_level.php:16
2064
  msgid "Membership Level Name"
2065
+ msgstr "Název členské úrovně"
2066
 
2067
+ #: views/admin_add_level.php:16 views/admin_edit_level.php:20
2068
  msgid "Default WordPress Role"
2069
+ msgstr "Výchozí uživatelská úroveň WordPress"
2070
 
2071
+ #: views/admin_add_level.php:20 views/admin_edit_level.php:24
2072
  msgid "Access Duration"
2073
+ msgstr "Doba trvání přístupu"
2074
 
2075
+ #: views/admin_add_level.php:23
2076
  msgid "No Expiry (Access for this level will not expire until cancelled"
2077
  msgstr ""
2078
+ "Bez vypršení platnosti (Přístup pro tuto úroveň nevyprší, dokud nebude zrušen"
2079
 
2080
+ #: views/admin_add_level.php:24 views/admin_add_level.php:26
2081
+ #: views/admin_add_level.php:28 views/admin_add_level.php:30
2082
+ #: views/admin_edit_level.php:28 views/admin_edit_level.php:31
2083
+ #: views/admin_edit_level.php:34 views/admin_edit_level.php:37
2084
  msgid "Expire After"
2085
+ msgstr "Vyprší po"
2086
 
2087
+ #: views/admin_add_level.php:25 views/admin_edit_level.php:29
2088
  msgid "Days (Access expires after given number of days)"
2089
+ msgstr "dnech (přístup vyprší po zadaném počtu dní)"
2090
 
2091
+ #: views/admin_add_level.php:27
2092
  msgid "Weeks (Access expires after given number of weeks"
2093
+ msgstr "týdnech (přístup vyprší po zadaném počtu týdnů"
2094
 
2095
+ #: views/admin_add_level.php:29 views/admin_edit_level.php:35
2096
  msgid "Months (Access expires after given number of months)"
2097
+ msgstr "měsících (přístup vyprší po zadaném počtu měsíců)"
2098
 
2099
+ #: views/admin_add_level.php:31 views/admin_edit_level.php:38
2100
  msgid "Years (Access expires after given number of years)"
2101
+ msgstr "rocích (přístup vyprší po zadaném počtu roků)"
2102
 
2103
+ #: views/admin_add_level.php:32 views/admin_edit_level.php:40
2104
  msgid "Fixed Date Expiry"
2105
+ msgstr "Datum vypršení platnosti"
2106
 
2107
+ #: views/admin_add_level.php:33 views/admin_edit_level.php:41
2108
  msgid "(Access expires on a fixed date)"
2109
+ msgstr "(Přístup vyprší k pevně zadanému datu)"
2110
+
2111
+ #: views/admin_add_level.php:38 views/admin_edit_level.php:46
2112
+ msgid "Email Activation"
2113
+ msgstr "Aktivace e-mailem"
2114
+
2115
+ #: views/admin_add_level.php:43
2116
+ msgid ""
2117
+ "Enable new user activation via email. When enabled, members will need to "
2118
+ "click on an activation link that is sent to their email address to activate "
2119
+ "the account. Useful for free membership. "
2120
  msgstr ""
2121
+ "Povolit aktivaci nového uživatele prostřednictvím e-mailu. Při zaškrtnutí "
2122
+ "této volby musí členové aktivovat svůj účet kliknutím na aktivační odkaz "
2123
+ "odeslaný na jejich e-mailovou adresu. Užitečné při bezplatném členství. "
2124
 
2125
+ #: views/admin_add_level.php:44 views/admin_edit_level.php:52
2126
+ msgid "View Documentation"
2127
+ msgstr "Zobrazit dokumentaci"
2128
+
2129
+ #: views/admin_add_level.php:45 views/admin_edit_level.php:53
2130
+ msgid "Note:"
2131
+ msgstr "Poznámka:"
2132
+
2133
+ #: views/admin_add_level.php:45 views/admin_edit_level.php:53
2134
+ msgid ""
2135
+ "If enabled, decryptable member password is temporarily stored in the "
2136
+ "database until the account is activated."
2137
  msgstr ""
2138
+ "Pokud je volba zapnuta, je v databázi dočasně uloženo dešifrovatelné heslo "
2139
+ "člena, a to do doby, než je účet aktivován."
2140
+
2141
+ #: views/admin_add_level.php:52
2142
+ msgid "Add New Membership Level "
2143
+ msgstr "Přidat novou členskou úroveň "
2144
 
2145
  #: views/admin_add_ons_page.php:7
2146
  msgid "Simple WP Membership::Add-ons"
2147
+ msgstr "Simple WP Membership::Doplňky"
2148
 
2149
  #: views/admin_category_list.php:5
2150
  msgid ""
2152
  "\"General Protection\" from the drop-down box below and then select the "
2153
  "categories that should be protected from non-logged in users."
2154
  msgstr ""
2155
+ "Nejdříve zapněte globální ochranu kategorií na svém webu tím, že v "
2156
+ "rozevíracím seznamu níže vyberete možnost „Obecná ochrana“ a poté vyberte "
2157
+ "kategorie, které mají být chráněny před nepřihlášenými uživateli."
2158
 
2159
  #: views/admin_category_list.php:8
2160
  msgid ""
2162
  "then select the categories you want to grant access to (for that particular "
2163
  "membership level)."
2164
  msgstr ""
2165
+ "Poté v rozevíracím seznamu níže vyberte existující členskou úroveň a "
2166
+ "následně vyberte kategorie, ke kterým chcete udělit přístup (pro konkrétní "
2167
+ "členskou úroveň)."
2168
 
2169
+ #: views/admin_category_list.php:11 views/admin_post_list.php:11
2170
+ msgid "Read the "
2171
+ msgstr "Přečtěte si "
2172
+
2173
+ #: views/admin_category_list.php:11
2174
+ msgid "category protection documentation"
2175
+ msgstr "dokumentaci k ochraně kategorií"
2176
+
2177
+ #: views/admin_category_list.php:17 views/admin_post_list.php:27
2178
  msgid "Membership Level:"
2179
+ msgstr "Členská úroveň:"
2180
 
2181
+ #: views/admin_category_list.php:19 views/admin_post_list.php:29
2182
+ msgid "General Protection"
2183
+ msgstr "Obecná ochrana"
2184
+
2185
+ #: views/admin_category_list.php:23 views/admin_post_list.php:33
2186
+ #: views/edit.php:83
2187
  msgid "Update"
2188
+ msgstr "Aktualizovat"
2189
 
2190
+ #: views/admin_edit.php:11
2191
  msgid "Edit Member"
2192
+ msgstr "Upravit členské údaje"
2193
 
2194
+ #: views/admin_edit.php:13
2195
  msgid "Edit existing member details."
2196
+ msgstr "Upravit údaje u existujícího člena."
2197
 
2198
+ #: views/admin_edit.php:14
2199
  msgid " You are currenty editing member with member ID: "
2200
+ msgstr " Aktuálně je upravován člen s členským ID: "
2201
 
2202
+ #: views/admin_edit.php:44
2203
  msgid "(twice, leave empty to retain old password)"
2204
+ msgstr "(dvakrát, nechte prázdné pro zachování stávajícího hesla)"
2205
+
2206
+ #: views/admin_edit.php:59
2207
+ msgid ""
2208
+ "This is the member's account status. If you want to manually activate an "
2209
+ "expired member's account then read"
2210
  msgstr ""
2211
+ "Toto je stav účtu vybraného člena. Pokud chcete ručně aktivovat členský "
2212
+ "účet, jehož platnost vypršela, přečtěte si"
2213
 
2214
+ #: views/admin_edit.php:60
2215
+ msgid "this documentation"
2216
+ msgstr "tuto dokumentaci"
2217
+
2218
+ #: views/admin_edit.php:61
2219
+ msgid " to learn how to do it."
2220
+ msgstr " k získání dalších informací."
2221
+
2222
+ #: views/admin_edit.php:66
2223
  msgid "Notify User"
2224
+ msgstr "Upozornit uživatele"
2225
+
2226
+ #: views/admin_edit.php:69
2227
+ msgid ""
2228
+ "You can use this option to send a quick notification email to this member "
2229
+ "(the email will be sent when you hit the save button below)."
2230
  msgstr ""
2231
+ "Po zaškrtnutí políčka bude aktuálnímu členovi zasláno e-mailem upozornění "
2232
+ "(zpráva bude odeslána po stisknutí tlačítka „Uložit data“ )."
2233
 
2234
+ #: views/admin_edit.php:75
2235
  msgid "Subscriber ID/Reference"
2236
+ msgstr "ID odběratele / Reference"
2237
 
2238
+ #: views/admin_edit.php:79
2239
  msgid "Last Accessed Date"
2240
+ msgstr "Datum posledního přístupu"
2241
 
2242
+ #: views/admin_edit.php:82 views/admin_edit.php:89
2243
  msgid "This value gets updated when this member logs into your site."
2244
+ msgstr "Hodnota je aktualizována při přihlášení člena k tomuto webu."
2245
 
2246
+ #: views/admin_edit.php:86
2247
  msgid "Last Accessed From IP"
2248
+ msgstr "Poslední přístup z IP"
2249
 
2250
+ #: views/admin_edit.php:97
2251
+ msgid "Save Data"
2252
+ msgstr "Uložit data"
2253
 
2254
+ #: views/admin_edit.php:102
2255
  msgid "Delete User Profile"
2256
+ msgstr "Odstranit profil uživatele"
2257
 
2258
+ #: views/admin_edit_level.php:6
2259
  msgid "Edit membership level"
2260
+ msgstr "Upravit členskou úroveň"
2261
 
2262
+ #: views/admin_edit_level.php:9
2263
  msgid ""
2264
  "You can edit details of a selected membership level from this interface. "
2265
  msgstr ""
2266
+ "V tomto rozhraní je možné upravovat podrobnosti vybrané členské úrovně. "
2267
 
2268
+ #: views/admin_edit_level.php:10
2269
  msgid "You are currently editing: "
2270
+ msgstr "Právě je upravována úroveň: "
2271
 
2272
+ #: views/admin_edit_level.php:27
2273
  msgid "No Expiry (Access for this level will not expire until cancelled)"
2274
  msgstr ""
2275
+ "Bez vypršení platnosti (přístup pro tuto úroveň nevyprší, dokud nebude "
2276
+ "zrušen)"
2277
 
2278
+ #: views/admin_edit_level.php:32
2279
  msgid "Weeks (Access expires after given number of weeks)"
2280
+ msgstr "týdnech (přístup vyprší po zadaném počtu týdnů)"
2281
 
2282
+ #: views/admin_edit_level.php:51
2283
+ msgid ""
2284
+ "Enable new user activation via email. When enabled, members will need to "
2285
+ "click on an activation link that is sent to their email address to activate "
2286
+ "the account. Useful for free membership."
2287
  msgstr ""
2288
+ "Povolit aktivaci nového uživatele prostřednictvím e-mailu. Při zaškrtnutí "
2289
+ "této volby musí členové aktivovat svůj účet kliknutím na aktivační odkaz "
2290
+ "odeslaný na jejich e-mailovou adresu. Užitečné při bezplatném členství."
2291
+
2292
+ #: views/admin_edit_level.php:60
2293
+ msgid "Save Membership Level "
2294
+ msgstr "Uložit členskou úroveň "
2295
 
2296
  #: views/admin_membership_manage.php:18
2297
  msgid "Example Content Protection Settings"
2298
+ msgstr "Příklad nastavení ochrany obsahu"
2299
+
2300
+ #: views/admin_members_list.php:18
2301
+ msgid "All"
2302
+ msgstr "Vše"
2303
+
2304
+ #: views/admin_members_list.php:23
2305
+ msgid "Incomplete"
2306
+ msgstr "Nekompletní"
2307
 
2308
  #: views/admin_member_form_common_part.php:23
2309
+ #: includes/swpm_mda_show_profile.php:37
2310
  msgid "Gender"
2311
+ msgstr "Pohlaví"
2312
 
2313
+ #: views/admin_member_form_common_part.php:30 views/edit.php:47
2314
+ #: includes/swpm_mda_show_profile.php:34
2315
  msgid "Phone"
2316
+ msgstr "Telefon"
2317
 
2318
+ #: views/admin_member_form_common_part.php:34 views/edit.php:51
2319
  msgid "Street"
2320
+ msgstr "Ulice"
2321
 
2322
+ #: views/admin_member_form_common_part.php:38 views/edit.php:55
2323
  msgid "City"
2324
+ msgstr "Město"
2325
 
2326
+ #: views/admin_member_form_common_part.php:42 views/edit.php:59
2327
  msgid "State"
2328
+ msgstr "Stát"
2329
 
2330
+ #: views/admin_member_form_common_part.php:46 views/edit.php:63
2331
  msgid "Zipcode"
2332
+ msgstr "PSČ"
2333
 
2334
+ #: views/admin_member_form_common_part.php:50 views/edit.php:67
2335
+ #: includes/swpm_mda_show_profile.php:33
2336
  msgid "Country"
2337
+ msgstr "Stát"
2338
 
2339
  #: views/admin_member_form_common_part.php:54
2340
+ #: includes/swpm_mda_show_profile.php:38
2341
  msgid "Company"
2342
+ msgstr "Společnost"
2343
 
2344
  #: views/admin_member_form_common_part.php:58
2345
+ #: includes/swpm_mda_show_profile.php:36
2346
  msgid "Member Since"
2347
+ msgstr "Člen od"
2348
+
2349
+ #: views/admin_post_list.php:5
2350
+ msgid ""
2351
+ "First of all, globally protect posts and pages on your site by selecting "
2352
+ "\"General Protection\" from the drop-down box below and then select posts "
2353
+ "and pages that should be protected from non-logged in users."
2354
  msgstr ""
2355
+ "Nejdříve zapněte globální ochranu příspěvků a stránek na svém webu tím, že v "
2356
+ "rozevíracím seznamu níže vyberete možnost „Obecná ochrana“ a poté vyberte "
2357
+ "příspěvky a stránky, které mají být chráněny před nepřihlášenými uživateli."
2358
 
2359
+ #: views/admin_post_list.php:8
2360
+ msgid ""
2361
+ "Next, select an existing membership level from the drop-down box below and "
2362
+ "then select posts and pages you want to grant access to (for that particular "
2363
+ "membership level)."
2364
  msgstr ""
2365
+ "Poté v rozevíracím seznamu níže vyberte existující členskou úroveň a "
2366
+ "následně vyberte příspěvky a stránky, ke kterým chcete udělit přístup (pro "
2367
+ "konkrétní členskou úroveň)."
2368
+
2369
+ #: views/admin_post_list.php:11
2370
+ msgid "bulk protect posts and pages documentation"
2371
+ msgstr "dokumentaci ke hromadné ochraně příspěvků a stránek"
2372
+
2373
+ #: views/admin_post_list.php:11
2374
+ msgid " to learn how to use it."
2375
+ msgstr " pro získání dalších informací."
2376
+
2377
+ #: views/admin_post_list.php:21
2378
+ msgid "Posts"
2379
+ msgstr "Příspěvky"
2380
+
2381
+ #: views/admin_post_list.php:22
2382
+ msgid "Pages"
2383
+ msgstr "Stránky"
2384
 
2385
+ #: views/admin_post_list.php:23
2386
+ msgid "Custom Posts"
2387
+ msgstr "Vlastní příspěvky"
2388
+
2389
+ #: views/admin_tools_settings.php:14
2390
+ msgid "The required pages have been re-created."
2391
+ msgstr "Vyžadované stránky byly znovu vytvořeny."
2392
+
2393
+ #: views/admin_tools_settings.php:21
2394
+ msgid "Generate a Registration Completion link"
2395
+ msgstr "Generování odkazů pro dokončení registrace"
2396
+
2397
+ #: views/admin_tools_settings.php:24
2398
  msgid ""
2399
  "You can manually generate a registration completion link here and give it to "
2400
  "your customer if they have missed the email that was automatically sent out "
2401
  "to them after the payment."
2402
  msgstr ""
2403
+ "Zde je možné ručně vygenerovat odkaz pro dokončení registrace a přeposlat "
2404
+ "jej zákazníkovi, pokud mu nedorazil e-mail, který je automaticky zasílán po "
2405
+ "obdržení platby."
2406
 
2407
+ #: views/admin_tools_settings.php:29
2408
  msgid "Generate Registration Completion Link"
2409
+ msgstr "Generovat odkaz pro dokončení registrace"
2410
 
2411
+ #: views/admin_tools_settings.php:30
2412
  msgid "For a Particular Member ID"
2413
+ msgstr "Pro konkrétní členské ID"
2414
 
2415
+ #: views/admin_tools_settings.php:32
2416
  msgid "OR"
2417
+ msgstr "NEBO"
2418
 
2419
+ #: views/admin_tools_settings.php:33
2420
  msgid "For All Incomplete Registrations"
2421
+ msgstr "Pro všechny neúplné registrace"
2422
 
2423
+ #: views/admin_tools_settings.php:38
2424
  msgid "Send Registration Reminder Email Too"
2425
+ msgstr "Odeslat e-mailem také upomínku k registraci"
2426
 
2427
+ #: views/admin_tools_settings.php:44
2428
  msgid "Submit"
2429
+ msgstr "Odeslat"
2430
 
2431
+ #: views/admin_tools_settings.php:53
2432
  msgid ""
2433
  "Link(s) generated successfully. The following link(s) can be used to "
2434
  "complete the registration."
2435
  msgstr ""
2436
+ "Generování odkazu(ů) proběhlo úspěšně. Následující odkaz(y) použijte pro "
2437
+ "dokončení registrace."
2438
 
2439
+ #: views/admin_tools_settings.php:55
2440
  msgid "Registration completion links will appear below"
2441
+ msgstr "Odkazy pro dokončení registrace se zobrazí níže"
2442
+
2443
+ #: views/admin_tools_settings.php:65
2444
+ msgid "A prompt to complete registration email was also sent."
2445
+ msgstr "E-mailem byla také odeslána výzva pro dokončení registrace."
2446
+
2447
+ #: views/admin_tools_settings.php:78 views/admin_tools_settings.php:88
2448
+ msgid "Re-create the Required Pages"
2449
+ msgstr "Znovu vytvořit vyžadované stránky"
2450
+
2451
+ #: views/admin_tools_settings.php:81
2452
+ msgid ""
2453
+ "If you have accidentally deleted the required pages that this plugin creates "
2454
+ "at install time, you can use this option to re-create them."
2455
  msgstr ""
2456
+ "Pokud jste omylem smazali vyžadované stránky, které byly vytvořeny pluginem "
2457
+ "během instalace, můžete je pomocí tohoto nástroje znovu vytvořit."
2458
+
2459
+ #: views/admin_tools_settings.php:82
2460
+ msgid " has full explanation."
2461
+ msgstr " obsahuje detailní popis."
2462
 
2463
+ #: views/edit.php:32 views/edit.php:36
2464
+ msgid "Leave empty to keep the current password"
2465
+ msgstr "Nevyplňovat pro zachování stávajícího hesla"
2466
+
2467
+ #: views/edit.php:71
2468
+ msgid "Company Name"
2469
+ msgstr "Název společnosti"
2470
+
2471
+ #: views/forgot_password.php:12
2472
  msgid "Reset Password"
2473
+ msgstr "Obnovení hesla"
2474
 
2475
  #: views/loggedin.php:6
2476
  msgid "Logged in as"
2477
+ msgstr "Uživatel přihlášen jako"
2478
 
2479
  #: views/loggedin.php:14
2480
  msgid "Membership"
2481
+ msgstr "Členství"
2482
 
2483
  #: views/loggedin.php:18
2484
  msgid "Account Expiry"
2485
  msgstr "Expirace účtu"
2486
 
2487
+ #: views/loggedin.php:26
2488
+ msgid "Edit Profile"
2489
+ msgstr "Upravit profil"
2490
 
2491
  #: views/login.php:11
2492
  msgid "Username or Email"
2493
+ msgstr "Uživatelské jméno nebo e-mail"
2494
 
2495
  #: views/login.php:24
2496
  msgid "Remember Me"
2497
  msgstr "Zapamatovat si mě"
2498
 
2499
  #: views/login.php:33
2500
+ msgid "Forgot Password?"
2501
+ msgstr "Zapomenuté heslo?"
2502
 
2503
  #: views/payments/admin_all_payment_transactions.php:6
2504
  msgid "All the payments/transactions of your members are recorded here."
2505
+ msgstr "Zde se zaznamenávají veškeré platby/transakce členů."
2506
 
2507
  #: views/payments/admin_all_payment_transactions.php:12
2508
  msgid "Search for a transaction by using email or name"
2509
+ msgstr "Vyhledat transakci pomocí e-mailu nebo jména"
2510
 
2511
  #: views/payments/admin_create_payment_buttons.php:15
2512
  msgid ""
2513
  "You can create new payment button for your memberships using this interface."
2514
+ msgstr "Pomocí tohoto rozhraní je možné vytvářet nová platební tlačítka."
2515
 
2516
  #: views/payments/admin_create_payment_buttons.php:23
2517
  msgid "Select Payment Button Type"
2518
+ msgstr "Vyberte typ platebního tlačítka"
2519
 
2520
  #: views/payments/admin_create_payment_buttons.php:26
2521
  msgid "PayPal Buy Now"
2522
+ msgstr "PayPal Buy Now"
2523
 
2524
  #: views/payments/admin_create_payment_buttons.php:28
2525
  msgid "PayPal Subscription"
2526
+ msgstr "PayPal Subscription"
2527
 
2528
  #: views/payments/admin_create_payment_buttons.php:30
2529
+ msgid "PayPal Smart Checkout"
2530
+ msgstr "PayPal Smart Checkout"
2531
 
2532
  #: views/payments/admin_create_payment_buttons.php:32
2533
+ msgid "Stripe Buy Now"
2534
+ msgstr "Stripe Buy Now"
2535
+
2536
+ #: views/payments/admin_create_payment_buttons.php:34
2537
+ msgid "Stripe Subscription"
2538
+ msgstr "Stripe Subscription"
2539
+
2540
+ #: views/payments/admin_create_payment_buttons.php:36
2541
  msgid "Braintree Buy Now"
2542
+ msgstr "Braintree Buy Now"
2543
 
2544
+ #: views/payments/admin_create_payment_buttons.php:43
2545
  msgid "Next"
2546
  msgstr "Další"
2547
 
2548
+ #: views/payments/admin_edit_payment_buttons.php:15
2549
  msgid "You can edit a payment button using this interface."
2550
+ msgstr "Pomocí tohoto rozhraní je možné upravovat platební tlačítka."
2551
 
2552
  #: views/payments/admin_payment_buttons.php:6
2553
  msgid ""
2554
  "All the membership buttons that you created in the plugin are displayed here."
2555
  msgstr ""
2556
+ "Zde se zobrazují všechna tlačítka, která byla vytvořena v tomto pluginu."
2557
 
2558
  #: views/payments/admin_payment_settings.php:21
2559
  msgid "Error! The membership level ID ("
2560
+ msgstr "Chyba! ID členské úrovně ("
2561
+
2562
+ #: views/payments/admin_payment_settings.php:28
2563
+ msgid ""
2564
+ "You can create membership payment buttons from the payments menu of this "
2565
+ "plugin (useful if you want to offer paid membership on the site)."
2566
  msgstr ""
2567
+ "Tlačítka pro platby za členství můžete vytvořit v tomto pluginu v nabídce "
2568
+ "Platby (užitečné v případě, že budete na webu nabízet placené členství)."
2569
 
2570
+ #: views/payments/admin_payment_settings.php:33
2571
  msgid "PayPal Integration Settings"
2572
+ msgstr "Nastavení integrace PayPal"
2573
 
2574
+ #: views/payments/admin_payment_settings.php:36
2575
  msgid "Generate the \"Advanced Variables\" Code for your PayPal button"
2576
+ msgstr "Generovat kód pro „Rozšířené proměnné“ u tlačítka PayPal"
2577
 
2578
+ #: views/payments/admin_payment_settings.php:39
2579
  msgid "Enter the Membership Level ID"
2580
+ msgstr "Zadejte ID členské úrovně"
2581
 
2582
+ #: views/payments/admin_payment_settings.php:41
2583
  msgid "Generate Code"
2584
+ msgstr "Generovat kód"
2585
 
2586
  #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:22
2587
  msgid "Braintree Buy Now Button Configuration"
2588
+ msgstr "Nastavení tlačítka Braintree Buy Now"
2589
 
2590
  #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:34
2591
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:213
2592
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:33
2593
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:301
2594
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:259
2595
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:83
2596
  msgid "Button ID"
2597
+ msgstr "ID tlačítka"
2598
 
2599
  #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:42
2600
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:26
2601
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:221
2602
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:41
2603
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:27
2604
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:309
2605
  #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:39
2606
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:266
2607
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:91
2608
  msgid "Button Title"
2609
+ msgstr "Název tlačítka"
2610
 
2611
  #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:60
2612
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:44
2613
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:239
2614
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:59
2615
  #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:57
2616
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:282
2617
  msgid "Payment Amount"
2618
+ msgstr "Částka k úhradě"
2619
 
2620
  #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:68
2621
  msgid ""
2622
  "Braintree API key and account details. You can get this from your Braintree "
2623
  "account."
2624
  msgstr ""
2625
+ "Klíč API Braintree a detaily k účtu (Požadované informace můžete získat ve "
2626
+ "svém účtu Braintree.)"
2627
 
2628
  #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:72
2629
  msgid "Merchant ID"
2630
+ msgstr "ID obchodníka"
2631
 
2632
  #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:80
2633
  msgid "Public Key"
2634
+ msgstr "Veřejný klíč"
2635
 
2636
  #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:87
2637
  msgid "Private Key"
2638
+ msgstr "Privátní klíč"
2639
 
2640
  #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:95
2641
  msgid "Merchant Account ID"
2642
+ msgstr "ID účtu obchodníka"
2643
 
2644
  #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:113
2645
  #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:137
2646
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:361
2647
  msgid "The following details are optional."
2648
+ msgstr "Následující údaje jsou volitelné."
2649
 
2650
  #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:117
2651
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:92
2652
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:287
2653
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:204
2654
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:172
2655
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:456
2656
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:149
2657
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:373
2658
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:191
2659
  msgid "Return URL"
2660
+ msgstr "Návratová adresa URL"
2661
 
2662
  #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:127
2663
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:126
2664
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:321
2665
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:214
2666
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:200
2667
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:484
2668
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:159
2669
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:383
2670
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:212
2671
  msgid "Save Payment Data"
2672
+ msgstr "Uložit údaje o platbě"
2673
 
2674
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:16
2675
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:204
2676
  msgid "PayPal Buy Now Button Configuration"
2677
+ msgstr "Nastavení tlačítka PayPal Buy Now"
2678
 
2679
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:52
2680
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:247
2681
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:67
2682
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:45
2683
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:327
2684
  #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:65
2685
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:289
2686
  msgid "Payment Currency"
2687
+ msgstr "Měna platby"
2688
 
2689
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:100
2690
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:295
2691
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:85
2692
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:367
2693
  msgid "PayPal Email"
2694
+ msgstr "PayPal e-mail"
2695
 
2696
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:108
2697
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:303
2698
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:180
2699
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:464
2700
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:199
2701
  msgid "Button Image URL"
2702
+ msgstr "URL obrázku tlačítka"
2703
+
2704
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:116
2705
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:311
2706
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:188
2707
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:472
2708
+ msgid "Custom Checkout Page Logo Image"
2709
+ msgstr "Obrázek loga vlastní stránky pokladny"
2710
+
2711
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:21
2712
+ msgid "PayPal Smart Checkout Button Configuration"
2713
+ msgstr "Nastavení tlačítka PayPal Smart Checkout"
2714
+
2715
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:107
2716
+ msgid ""
2717
+ "PayPal Smart Checkout API Credentials (you can get this from your PayPal "
2718
+ "account)"
2719
  msgstr ""
2720
+ "Přihlašovací údaje PayPal Smart Checkout API (Požadované informace můžete "
2721
+ "získat ve svém účtu PayPal.)"
2722
+
2723
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:111
2724
+ msgid "Live Client ID"
2725
+ msgstr "Live Client ID"
2726
+
2727
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:119
2728
+ msgid "Live Secret"
2729
+ msgstr "Live Secret"
2730
+
2731
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:127
2732
+ msgid "Sandbox Client ID"
2733
+ msgstr "Sandbox Client ID"
2734
+
2735
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:135
2736
+ msgid "Sandbox Secret"
2737
+ msgstr "Sandbox Secret"
2738
+
2739
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:143
2740
+ msgid "Button Appearance Settings"
2741
+ msgstr "Nastavení vzhledu tlačítka"
2742
+
2743
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:147
2744
+ msgid "Size"
2745
+ msgstr "Velikost"
2746
+
2747
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:150
2748
+ msgid "Medium"
2749
+ msgstr "Střední"
2750
+
2751
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:151
2752
+ msgid "Large"
2753
+ msgstr "Velké"
2754
+
2755
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:152
2756
+ msgid "Repsonsive"
2757
+ msgstr "Přizpůsobitelné"
2758
+
2759
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:154
2760
+ msgid "Select button size."
2761
+ msgstr "Vyberte velikost tlačítka."
2762
+
2763
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:158
2764
+ msgid "Color"
2765
+ msgstr "Barva"
2766
+
2767
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:161
2768
+ msgid "Gold"
2769
+ msgstr "Zlatá"
2770
+
2771
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:162
2772
+ msgid "Blue"
2773
+ msgstr "Modrá"
2774
+
2775
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:163
2776
+ msgid "Silver"
2777
+ msgstr "Stříbrná"
2778
+
2779
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:164
2780
+ msgid "Black"
2781
+ msgstr "Černá"
2782
+
2783
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:166
2784
+ msgid "Select button color."
2785
+ msgstr "Vyberte barvu tlačítka."
2786
+
2787
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:170
2788
+ msgid "Shape"
2789
+ msgstr "Tvar"
2790
+
2791
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:172
2792
+ msgid "Rectangular"
2793
+ msgstr "Obdélníkové"
2794
+
2795
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:173
2796
+ msgid "Pill"
2797
+ msgstr "Zaoblené"
2798
+
2799
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:174
2800
+ msgid "Select button shape."
2801
+ msgstr "Vyberte tvar tlačítka."
2802
+
2803
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:178
2804
+ msgid "Layout"
2805
+ msgstr "Rozložení"
2806
+
2807
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:180
2808
+ msgid "Vertical"
2809
+ msgstr "Svislé"
2810
+
2811
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:181
2812
+ msgid "Horizontal"
2813
+ msgstr "Vodorovné"
2814
+
2815
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:182
2816
+ msgid "Select button layout."
2817
+ msgstr "Vyberte rozložení tlačítka."
2818
+
2819
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:187
2820
+ msgid "Additional Settings"
2821
+ msgstr "Další nastavení"
2822
+
2823
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:191
2824
+ msgid "Payment Methods"
2825
+ msgstr "Způsoby platby"
2826
+
2827
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:193
2828
+ msgid "PayPal Credit"
2829
+ msgstr "PayPal Credit"
2830
+
2831
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:194
2832
+ msgid "ELV"
2833
+ msgstr "ELV"
2834
+
2835
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:195
2836
+ msgid ""
2837
+ "Select payment methods that could be used by customers. Note that payment "
2838
+ "with cards is always enabled."
2839
+ msgstr ""
2840
+ "Vyberte způsoby plateb, které mohou zákazníci používat. Vezměte prosím na "
2841
+ "vědomí, že platba kartou je vždy povolena."
2842
+
2843
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:200
2844
+ msgid "The following details are optional"
2845
+ msgstr "Následující údaje jsou volitelné"
2846
 
2847
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:18
2848
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:295
2849
  msgid "PayPal Subscription Button Configuration"
2850
+ msgstr "Nastavení tlačítka předplatného PayPal"
2851
 
2852
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:93
2853
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:375
2854
  msgid "Billing Amount Each Cycle"
2855
+ msgstr "Fakturační částka v každém cyklu"
2856
 
2857
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:101
2858
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:383
2859
  msgid "Billing Cycle"
2860
+ msgstr "Fakturační cyklus"
2861
 
2862
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:114
2863
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:396
2864
  msgid "Billing Cycle Count"
2865
+ msgstr "Počet fakturakčních cyklů"
2866
 
2867
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:122
2868
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:404
2869
  msgid "Re-attempt on Failure"
2870
+ msgstr "Opakovaný pokus při selhání"
2871
 
2872
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:135
2873
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:419
2874
  msgid ""
2875
  "Trial Billing Details (Leave empty if you are not offering a trial period)"
2876
  msgstr ""
2877
+ "Nastavení fakturace pro zkušební období (ponechte prázdné, pokud není "
2878
+ "nabízena zkušební doba)"
2879
 
2880
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:141
2881
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:425
2882
  msgid "Trial Billing Amount"
2883
+ msgstr "Fakturační částka za zkušební období"
2884
 
2885
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:149
2886
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:433
2887
  msgid "Trial Billing Period"
2888
+ msgstr "Zkušební fakturační období"
2889
 
2890
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:166
2891
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:450
2892
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:177
2893
  msgid "Optional Details"
2894
+ msgstr "Volitelné podrobnosti"
2895
 
2896
  #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:29
2897
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:250
2898
  msgid "Stripe Buy Now Button Configuration"
2899
+ msgstr "Nastavení tlačítka Stripe Buy Now"
2900
 
2901
  #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:104
2902
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:328
2903
  msgid "Stripe API keys. You can get this from your Stripe account."
2904
  msgstr ""
2905
+ "Klíč API Stripe (Požadované informace můžete získat ve svém účtu Stripe.)"
2906
 
2907
  #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:108
2908
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:332
2909
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:131
2910
+ msgid "Test Publishable Key"
2911
+ msgstr "Test Publishable Key"
2912
 
2913
  #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:115
2914
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:339
2915
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:139
2916
+ msgid "Test Secret Key"
2917
+ msgstr "Test Secret Key"
2918
 
2919
  #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:122
2920
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:346
2921
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:147
2922
+ msgid "Live Publishable Key"
2923
+ msgstr "Live Publishable Key"
2924
 
2925
  #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:129
2926
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:353
2927
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:155
2928
+ msgid "Live Secret Key"
2929
+ msgstr "Live Secret Key"
2930
 
2931
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:141
2932
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:365
2933
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:183
2934
+ msgid "Collect Customer Address"
2935
+ msgstr "Shromažďovat adresu zákazníka"
2936
+
2937
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:75
2938
+ msgid "Stripe Subscription Button Configuration"
2939
+ msgstr "Nastavení tlačítka Stripe Subscription"
2940
+
2941
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:109
2942
+ msgid "Stripe API ID"
2943
+ msgstr "ID rozhraní Stripe API"
2944
+
2945
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:125
2946
+ msgid "Stripe API Settings"
2947
+ msgstr "Nastavení rozhraní Stripe API"
2948
+
2949
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:163
2950
+ msgid "Webook Endpoint URL"
2951
+ msgstr "URL koncového bodu Webhook"
2952
+
2953
+ #: views/payments/payment-gateway/braintree_button_shortcode_view.php:20
2954
+ #: views/payments/payment-gateway/paypal_button_shortcode_view.php:91
2955
+ #: views/payments/payment-gateway/paypal_button_shortcode_view.php:93
2956
+ #: views/payments/payment-gateway/paypal_smart_checkout_button_shortcode_view.php:15
2957
+ #: views/payments/payment-gateway/stripe_button_shortcode_view.php:20
2958
+ #: views/payments/payment-gateway/stripe_button_shortcode_view.php:150
2959
  msgid "Buy Now"
2960
+ msgstr "Koupit"
2961
 
2962
+ #: views/payments/payment-gateway/paypal_button_shortcode_view.php:226
2963
+ #: views/payments/payment-gateway/paypal_button_shortcode_view.php:228
2964
  msgid "Subscribe Now"
2965
+ msgstr "Předplatit hned"
2966
 
2967
+ #: views/payments/payment-gateway/paypal_smart_checkout_button_shortcode_view.php:137
2968
+ msgid "Error occured during PayPal Smart Checkout process."
2969
+ msgstr "Během procesu PayPal Smart Checkout došlo k chybě."
2970
+
2971
+ #: views/payments/payment-gateway/paypal_smart_checkout_button_shortcode_view.php:165
2972
+ msgid "HTTP error occured during payment process:"
2973
+ msgstr "Během procesu platby došlo k chybě HTTP:"
2974
 
2975
+ #: Translation strings from addons === Form builder addon
2976
+ msgid "Type password here"
2977
+ msgstr "Zde zadejte heslo"
2978
 
2979
+ msgid "Retype password here"
2980
+ msgstr "Zde zadejte heslo znovu"
2981
 
2982
  msgid "Registration is complete. You can now log into the site."
2983
+ msgstr "Registrace je dokončena. Nyní se můžete přihlásit na web."
2984
 
2985
  msgid " Field has invalid character"
2986
+ msgstr " V poli je zadán nepovolený znak"
2987
 
2988
  msgid " Password does not match"
2989
+ msgstr " Heslo se neshoduje"
2990
 
2991
  msgid "Already taken."
2992
+ msgstr "Již obsazeno."
2993
 
2994
  msgid "Street Address"
2995
+ msgstr "Ulice"
2996
 
2997
  msgid "Apt, Suite, Bldg. (optional)"
2998
+ msgstr "Budova, apartmán (volitelné)"
2999
 
3000
  msgid "State / Province / Region"
3001
+ msgstr "Stát / Provincie / Region"
3002
 
3003
  msgid "Postal / Zip Code"
3004
+ msgstr "PSČ"
3005
+
3006
+ msgid ""
3007
+ "Check this box to delete the image. The image will be deleted when you save "
3008
+ "the profile."
3009
  msgstr ""
3010
+ "Zaškrtněte políčko pro odstranění obrázku. Obrázek bude odstraněn po uložení "
3011
+ "profilu."
3012
 
3013
+ msgid "You will need to re-login since you changed your password."
3014
+ msgstr "Heslo bylo změněno, je nutné se znovu přihlásit."
3015
+
3016
+ msgid ""
3017
+ "Please enter any two digits with <strong>no</strong> spaces (Example: 12)"
3018
  msgstr ""
3019
+ "Zadejte prosím libovolné dvě číslice <strong>bez mezer</strong> (např. : 12)"
3020
+
3021
+ msgid "Verification"
3022
+ msgstr "Ověření"
3023
+
3024
+ msgid "Please enter any two digits with no spaces (Example: 12)*"
3025
+ msgstr "Zadejte prosím libovolné dvě číslice bez mezer (např. : 12)*"
3026
+
3027
+ msgid "Username can only contain: letters, numbers and .-*@"
3028
+ msgstr "Uživatelské jméno může obsahovat pouze: písmena, čísla a .-*@"
3029
+
3030
+ msgid "Allowed characters are: letters, numbers and .-_*@"
3031
+ msgstr "Povolené znaky jsou: písmena, čísla a .-_*@"
3032
+
3033
+ #: === Partial protection addon strings
3034
+ msgid "You do not have permission to view this content."
3035
+ msgstr "K prohlížení tohoto obsahu nemáte oprávnění."
3036
 
3037
  msgid "Your membership level does not have permission to view this content."
3038
+ msgstr "K prohlížení tohoto obsahu nemáte dostatečnou úroveň oprávnění."
3039
 
3040
  msgid "This content is for members only."
3041
+ msgstr "Tento obsah je určen pouze pro členy."
3042
+
3043
+ msgid "Please check at least one."
3044
+ msgstr "Zkontrolujte prosím alespoň jednu."
3045
+
3046
+ #: === Member Directory Listing addon strings swpm-member-directory-admin.php:9
3047
+ msgid "Member Directory"
3048
+ msgstr "Adresář členů"
3049
+
3050
+ #: includes/swpm_mda_show_profile.php:26
3051
+ msgid "Member ID"
3052
+ msgstr "Členské ID"
3053
+
3054
+ #: includes/swpm_mda_show_profile.php:30
3055
+ msgid "Level"
3056
+ msgstr "Úroveň"
3057
+
3058
+ #: includes/swpm_mda_show_profile.php:32
3059
+ msgid "Address"
3060
+ msgstr "Adresa"
3061
+
3062
+ #: views/template-1.php:52 views/template-2.php:53
3063
+ msgid "Search..."
3064
+ msgstr "Hledání..."
3065
+
3066
+ #: views/template-1.php:60 views/template-2.php:62
3067
+ msgid "Clear Search"
3068
+ msgstr "Vymazat hledání"
3069
+
3070
+ # === Misc Shortcodes Addon ===
3071
+ msgid "You must be logged in to upgrade a membership."
3072
+ msgstr "Pro upgrade členství musíte být přihlášeni."
3073
+
3074
+ msgid "Membership level has been updated."
3075
+ msgstr "Členská úroveň byla aktualizována."
3076
+
3077
+ msgid "Already a member of this level."
3078
+ msgstr "Členství je již na této úrovni."
languages/simple-membership-es_ES.mo CHANGED
Binary file
languages/simple-membership-es_ES.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Plugins - Simple Membership - Development (trunk)\n"
6
  "POT-Creation-Date: 2019-05-26 13:48+0600\n"
7
- "PO-Revision-Date: 2020-09-09 14:14+1000\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "Language: es\n"
@@ -12,7 +12,7 @@ msgstr ""
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
- "X-Generator: Poedit 2.4.1\n"
16
 
17
  #: classes/class.simple-wp-membership.php:180
18
  msgid "The admin of this site does not allow users to access the wp dashboard."
@@ -1799,6 +1799,18 @@ msgstr "Inactivo"
1799
  msgid "Activation Required"
1800
  msgstr "Activación obligatoria"
1801
 
 
 
 
 
 
 
 
 
 
 
 
 
1802
  #: classes/class.swpm-utils.php:119 views/admin_members_list.php:22
1803
  msgid "Pending"
1804
  msgstr "Pendiente"
4
  msgstr ""
5
  "Project-Id-Version: Plugins - Simple Membership - Development (trunk)\n"
6
  "POT-Creation-Date: 2019-05-26 13:48+0600\n"
7
+ "PO-Revision-Date: 2021-06-16 12:04+1000\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "Language: es\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
+ "X-Generator: Poedit 3.0\n"
16
 
17
  #: classes/class.simple-wp-membership.php:180
18
  msgid "The admin of this site does not allow users to access the wp dashboard."
1799
  msgid "Activation Required"
1800
  msgstr "Activación obligatoria"
1801
 
1802
+ #: classes/class.swpm-utils.php:119
1803
+ msgid "Male"
1804
+ msgstr "Masculino"
1805
+
1806
+ #: classes/class.swpm-utils.php:120
1807
+ msgid "Female"
1808
+ msgstr "Femenino"
1809
+
1810
+ #: classes/class.swpm-utils.php:121
1811
+ msgid "Not Specified"
1812
+ msgstr "No especificado"
1813
+
1814
  #: classes/class.swpm-utils.php:119 views/admin_members_list.php:22
1815
  msgid "Pending"
1816
  msgstr "Pendiente"
languages/simple-membership.pot CHANGED
@@ -1,164 +1,307 @@
1
  #, fuzzy
2
  msgid ""
3
  msgstr ""
4
- "Project-Id-Version: Simple Membership\n"
5
- "POT-Creation-Date: 2019-05-26 13:48+0600\n"
6
- "PO-Revision-Date: 2019-05-25 22:38+0600\n"
 
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.2.3\n"
13
- "X-Poedit-KeywordsList: __;_e;e\n"
14
- "X-Poedit-Basepath: .\n"
 
 
 
 
 
15
  "X-Poedit-SearchPath-0: .\n"
 
16
 
17
- #: classes/class.simple-wp-membership.php:180
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  msgid "The admin of this site does not allow users to access the wp dashboard."
19
  msgstr ""
20
 
21
- #: classes/class.simple-wp-membership.php:181
22
  msgid "Go back to the home page by "
23
  msgstr ""
24
 
25
- #: classes/class.simple-wp-membership.php:181
26
  msgid "clicking here"
27
  msgstr ""
28
 
29
- #: classes/class.simple-wp-membership.php:242
30
  msgid ""
31
  "Error! This site has the force WP user login feature enabled in the "
32
  "settings. We could not find a WP user record for the given username: "
33
  msgstr ""
34
 
35
- #: classes/class.simple-wp-membership.php:243
36
  msgid ""
37
  "This error is triggered when a member account doesn't have a corresponding "
38
  "WP user account. So the plugin fails to log the user into the WP User system."
39
  msgstr ""
40
 
41
- #: classes/class.simple-wp-membership.php:244
42
  msgid ""
43
  "Contact the site admin and request them to check your username in the WP "
44
  "Users menu to see what happened with the WP user entry of your account."
45
  msgstr ""
46
 
47
- #: classes/class.simple-wp-membership.php:245
48
  msgid ""
49
  "The site admin can disable the Force WP User Synchronization feature in the "
50
  "settings to disable this feature and this error will go away."
51
  msgstr ""
52
 
53
- #: classes/class.simple-wp-membership.php:246
54
  msgid "You can use the back button of your browser to go back to the site."
55
  msgstr ""
56
 
57
- #: classes/class.simple-wp-membership.php:407
 
58
  msgid "You are not logged in."
59
  msgstr ""
60
 
61
- #: classes/class.simple-wp-membership.php:458
62
  msgid ""
63
  "You have the sandbox payment mode enabled in plugin settings. Make sure to "
64
  "turn off the sandbox mode when you want to do live transactions."
65
  msgstr ""
66
 
67
- #: classes/class.simple-wp-membership.php:473
68
  msgid "Simple WP Membership Protection"
69
  msgstr ""
70
 
71
- #: classes/class.simple-wp-membership.php:485
72
  msgid "Simple Membership Protection options"
73
  msgstr ""
74
 
75
- #: classes/class.simple-wp-membership.php:503
76
  msgid "Do you want to protect this content?"
77
  msgstr ""
78
 
79
- #: classes/class.simple-wp-membership.php:504
80
  msgid "No, Do not protect this content."
81
  msgstr ""
82
 
83
- #: classes/class.simple-wp-membership.php:505
84
  msgid "Yes, Protect this content."
85
  msgstr ""
86
 
87
- #: classes/class.simple-wp-membership.php:508
88
  msgid "Select the membership level that can access this content:"
89
  msgstr ""
90
 
91
- #: classes/class.simple-wp-membership.php:646
92
- #: classes/class.simple-wp-membership.php:650
93
  msgid "Validating, please wait"
94
  msgstr ""
95
 
96
- #: classes/class.simple-wp-membership.php:653
97
  msgid "Invalid email address"
98
  msgstr ""
99
 
100
- #: classes/class.simple-wp-membership.php:656
101
  msgid "This field is required"
102
  msgstr ""
103
 
 
104
  msgid "Password must contain at least:"
105
  msgstr ""
106
 
 
107
  msgid "- a digit"
108
  msgstr ""
109
 
 
110
  msgid "- an uppercase letter"
111
  msgstr ""
112
 
 
113
  msgid "- a lowercase letter"
114
  msgstr ""
115
 
116
- #: classes/class.simple-wp-membership.php:659 classes/class.swpm-auth.php:296
117
  msgid "Invalid Username"
118
  msgstr ""
119
 
120
- #: classes/class.simple-wp-membership.php:659
121
  msgid "Usernames can only contain: letters, numbers and .-_*@"
122
  msgstr ""
123
 
124
- #: classes/class.simple-wp-membership.php:662
125
  msgid "Minimum "
126
  msgstr ""
127
 
128
- #: classes/class.simple-wp-membership.php:663
129
  msgid " characters required"
130
  msgstr ""
131
 
132
- #: classes/class.simple-wp-membership.php:666
133
  msgid "Apostrophe character is not allowed"
134
  msgstr ""
135
 
136
- #: classes/class.simple-wp-membership.php:697
137
  msgid "WP Membership"
138
  msgstr ""
139
 
140
- #: classes/class.simple-wp-membership.php:698 classes/class.swpm-members.php:11
141
- #: classes/class.swpm-members.php:581
142
  msgid "Members"
143
  msgstr ""
144
 
145
- #: classes/class.simple-wp-membership.php:699
146
  #: classes/class.swpm-category-list.php:20
147
  #: classes/class.swpm-membership-levels.php:12
148
- #: classes/class.swpm-membership-levels.php:265
149
  #: classes/class.swpm-post-list.php:21
150
  msgid "Membership Levels"
151
  msgstr ""
152
 
153
- #: classes/class.simple-wp-membership.php:700
154
  msgid "Settings"
155
  msgstr ""
156
 
157
- #: classes/class.simple-wp-membership.php:701
158
  msgid "Payments"
159
  msgstr ""
160
 
161
- #: classes/class.simple-wp-membership.php:702
162
  msgid "Add-ons"
163
  msgstr ""
164
 
@@ -195,146 +338,133 @@ msgstr ""
195
  msgid "Error! Nonce verification failed for user registration from admin end."
196
  msgstr ""
197
 
198
- #: classes/class.swpm-admin-registration.php:71
199
  msgid "Member record added successfully."
200
  msgstr ""
201
 
202
- #: classes/class.swpm-admin-registration.php:76
203
- #: classes/class.swpm-admin-registration.php:124
204
- #: classes/class.swpm-admin-registration.php:151
205
  #: classes/class.swpm-membership-level.php:73
206
  #: classes/class.swpm-membership-level.php:105
207
  msgid "Please correct the following:"
208
  msgstr ""
209
 
210
- #: classes/class.swpm-admin-registration.php:87
211
  msgid "Error! Nonce verification failed for user edit from admin end."
212
  msgstr ""
213
 
214
- #: classes/class.swpm-admin-registration.php:139
215
  msgid "Your current password"
216
  msgstr ""
217
 
218
- #: classes/class.swpm-ajax.php:14
 
 
 
 
 
219
  msgid "Invalid Email Address"
220
  msgstr ""
221
 
222
- #: classes/class.swpm-ajax.php:21 classes/class.swpm-ajax.php:36
223
  msgid "Already taken"
224
  msgstr ""
225
 
226
- #: classes/class.swpm-ajax.php:30
227
- msgid "Name contains invalid character"
228
  msgstr ""
229
 
230
- #: classes/class.swpm-ajax.php:37
231
- msgid "Available"
232
  msgstr ""
233
 
234
- #: classes/class.swpm-auth.php:57
235
  msgid ""
236
  "Warning! Simple Membership plugin cannot process this login request to "
237
  "prevent you from getting logged out of WP Admin accidentally."
238
  msgstr ""
239
 
240
- #: classes/class.swpm-auth.php:58
241
  msgid "Click here"
242
  msgstr ""
243
 
244
- #: classes/class.swpm-auth.php:58
245
  msgid " to see the profile you are currently logged into in this browser."
246
  msgstr ""
247
 
248
- #: classes/class.swpm-auth.php:59
249
  msgid ""
250
  "You are logged into the site as an ADMIN user in this browser. First, logout "
251
  "from WP Admin then you will be able to log in as a normal member."
252
  msgstr ""
253
 
254
- #: classes/class.swpm-auth.php:60
255
  msgid ""
256
  "Alternatively, you can use a different browser (where you are not logged-in "
257
  "as ADMIN) to test the membership login."
258
  msgstr ""
259
 
260
- #: classes/class.swpm-auth.php:61
261
  msgid ""
262
  "Your normal visitors or members will never see this message. This message is "
263
  "ONLY for ADMIN user."
264
  msgstr ""
265
 
266
- #: classes/class.swpm-auth.php:68
267
  msgid "Captcha validation failed on login form."
268
  msgstr ""
269
 
270
- #: classes/class.swpm-auth.php:93
271
  msgid "User Not Found."
272
  msgstr ""
273
 
274
- #: classes/class.swpm-auth.php:100
275
  msgid "Password Empty or Invalid."
276
  msgstr ""
277
 
278
- #: classes/class.swpm-auth.php:133
279
  msgid "Account is inactive."
280
  msgstr ""
281
 
282
- #: classes/class.swpm-auth.php:136 classes/class.swpm-auth.php:162
283
  msgid "Account has expired."
284
  msgstr ""
285
 
286
- #: classes/class.swpm-auth.php:139
287
  msgid "Account is pending."
288
  msgstr ""
289
 
290
- #: classes/class.swpm-auth.php:146
291
  #, php-format
292
  msgid ""
293
  "You need to activate your account. If you didn't receive an email then %s to "
294
  "resend the activation email."
295
  msgstr ""
296
 
297
- #: classes/class.swpm-auth.php:146
298
- #: classes/class.swpm-front-registration.php:376
299
- #: classes/class.swpm-front-registration.php:426
300
- #: classes/class.swpm-utils-misc.php:169
301
  msgid "click here"
302
  msgstr ""
303
 
304
- #: classes/class.swpm-auth.php:170
305
  msgid "You are logged in as:"
306
  msgstr ""
307
 
308
- #: classes/class.swpm-auth.php:234
309
  msgid "Logged Out Successfully."
310
  msgstr ""
311
 
312
- #: classes/class.swpm-auth.php:287
313
  msgid "Session Expired."
314
  msgstr ""
315
 
316
- #: classes/class.swpm-auth.php:304
317
  msgid "Please login again."
318
  msgstr ""
319
 
320
- #: classes/class.swpm-category-list.php:19 classes/class.swpm-members.php:24
321
- #: classes/class.swpm-membership-levels.php:11
322
- #: classes/class.swpm-membership-levels.php:21
323
- #: classes/class.swpm-post-list.php:20
324
- #: classes/admin-includes/class.swpm-payments-list-table.php:85
325
- #: views/add.php:40 views/admin_member_form_common_part.php:2 views/edit.php:75
326
- #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:50
327
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:34
328
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:229
329
- #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:49
330
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:35
331
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:317
332
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:47
333
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:273
334
- #: views/payments/payment-gateway/admin_stripe_subscription_button.php:99
335
- msgid "Membership Level"
336
- msgstr ""
337
-
338
  #: classes/class.swpm-category-list.php:33
339
  msgid "Category ID"
340
  msgstr ""
@@ -355,12 +485,14 @@ msgstr ""
355
  msgid "Count"
356
  msgstr ""
357
 
358
- #: classes/class.swpm-category-list.php:92
359
- msgid "Category protection updated!"
 
 
360
  msgstr ""
361
 
362
- #: classes/class.swpm-category-list.php:130
363
- msgid "No category found."
364
  msgstr ""
365
 
366
  #: classes/class.swpm-comment-form-related.php:15
@@ -377,7 +509,8 @@ msgstr ""
377
 
378
  #: classes/class.swpm-form.php:30
379
  msgid ""
380
- "Wordpress account exists with given username. But given email doesn't match."
 
381
  msgstr ""
382
 
383
  #: classes/class.swpm-form.php:31
@@ -389,7 +522,8 @@ msgstr ""
389
 
390
  #: classes/class.swpm-form.php:37
391
  msgid ""
392
- "Wordpress account exists with given email. But given username doesn't match."
 
393
  msgstr ""
394
 
395
  #: classes/class.swpm-form.php:38
@@ -411,188 +545,190 @@ msgstr ""
411
  msgid "Username already exists."
412
  msgstr ""
413
 
414
- #: classes/class.swpm-form.php:83
415
  msgid "Password is required"
416
  msgstr ""
417
 
418
- #: classes/class.swpm-form.php:90
419
  msgid "Password mismatch"
420
  msgstr ""
421
 
422
- #: classes/class.swpm-form.php:101
423
  msgid "Email is required"
424
  msgstr ""
425
 
426
- #: classes/class.swpm-form.php:105
427
  msgid "Email is invalid"
428
  msgstr ""
429
 
430
- #: classes/class.swpm-form.php:121
431
  msgid "Email is already used."
432
  msgstr ""
433
 
434
- #: classes/class.swpm-form.php:179
435
  msgid "Member since field is invalid"
436
  msgstr ""
437
 
438
- #: classes/class.swpm-form.php:190
439
  msgid "Access starts field is invalid"
440
  msgstr ""
441
 
442
- #: classes/class.swpm-form.php:200
443
  msgid "Gender field is invalid"
444
  msgstr ""
445
 
446
- #: classes/class.swpm-form.php:211
447
  msgid "Account state field is invalid"
448
  msgstr ""
449
 
450
- #: classes/class.swpm-form.php:218
451
  msgid "Invalid membership level"
452
  msgstr ""
453
 
454
- #: classes/class.swpm-front-registration.php:33
455
  msgid ""
456
- "Error! Invalid Request. Could not find a match for the given security code "
457
- "and the user ID."
458
  msgstr ""
459
 
460
- #: classes/class.swpm-front-registration.php:45
461
- #: classes/class.swpm-utils-misc.php:274 views/login.php:36
462
  msgid "Join Us"
463
  msgstr ""
464
 
465
- #: classes/class.swpm-front-registration.php:47
466
  msgid ""
467
  "Free membership is disabled on this site. Please make a payment from the "
468
  msgstr ""
469
 
470
- #: classes/class.swpm-front-registration.php:49
471
  msgid " page to pay for a premium membership."
472
  msgstr ""
473
 
474
- #: classes/class.swpm-front-registration.php:51
475
  msgid ""
476
  "You will receive a unique link via email after the payment. You will be able "
477
  "to use that link to complete the premium membership registration."
478
  msgstr ""
479
 
480
- #: classes/class.swpm-front-registration.php:79
481
  msgid "Security check: captcha validation failed."
482
  msgstr ""
483
 
484
- #: classes/class.swpm-front-registration.php:89
485
  msgid "You must accept the terms and conditions."
486
  msgstr ""
487
 
488
- #: classes/class.swpm-front-registration.php:100
489
  msgid "You must agree to the privacy policy."
490
  msgstr ""
491
 
492
- #: classes/class.swpm-front-registration.php:140
493
- msgid "You need to confirm your email address. Please check your email and follow instructions to complete your registration."
 
 
494
  msgstr ""
495
 
496
- #: classes/class.swpm-front-registration.php:145
497
  msgid "Registration Successful. "
498
  msgstr ""
499
 
500
- #: classes/class.swpm-front-registration.php:145
501
- #: classes/class.swpm-utils-misc.php:273 classes/class.swpm-utils-misc.php:285
502
  msgid "Please"
503
  msgstr ""
504
 
505
- #: classes/class.swpm-front-registration.php:145
506
- #: classes/class.swpm-utils-misc.php:273 views/login.php:30
507
  msgid "Login"
508
  msgstr ""
509
 
510
- #: classes/class.swpm-front-registration.php:159
511
  msgid "Please correct the following"
512
  msgstr ""
513
 
514
- #: classes/class.swpm-front-registration.php:207
515
  msgid "Membership Level Couldn't be found."
516
  msgstr ""
517
 
518
- #: classes/class.swpm-front-registration.php:258
519
  msgid "Error! Nonce verification failed for front end profile edit."
520
  msgstr ""
521
 
522
- #: classes/class.swpm-front-registration.php:266
523
  msgid "Profile updated successfully."
524
  msgstr ""
525
 
526
- #: classes/class.swpm-front-registration.php:275
527
  msgid ""
528
  "Profile updated successfully. You will need to re-login since you changed "
529
  "your password."
530
  msgstr ""
531
 
532
- #: classes/class.swpm-front-registration.php:289
533
  msgid "Please correct the following."
534
  msgstr ""
535
 
536
- #: classes/class.swpm-front-registration.php:301
537
  msgid "Captcha validation failed."
538
  msgstr ""
539
 
540
- #: classes/class.swpm-front-registration.php:309
541
  msgid "Email address not valid."
542
  msgstr ""
543
 
544
- #: classes/class.swpm-front-registration.php:320
545
  msgid "No user found with that email address."
546
  msgstr ""
547
 
548
- #: classes/class.swpm-front-registration.php:321
549
- #: classes/class.swpm-front-registration.php:350
550
  msgid "Email Address: "
551
  msgstr ""
552
 
553
- #: classes/class.swpm-front-registration.php:349
554
  msgid "New password has been sent to your email address."
555
  msgstr ""
556
 
557
- #: classes/class.swpm-front-registration.php:371
558
  msgid "Can't find member account."
559
  msgstr ""
560
 
561
- #: classes/class.swpm-front-registration.php:376
562
- #: classes/class.swpm-front-registration.php:426
563
  msgid "Account already active. "
564
  msgstr ""
565
 
566
- #: classes/class.swpm-front-registration.php:376
567
- #: classes/class.swpm-front-registration.php:426
568
  msgid " to login."
569
  msgstr ""
570
 
571
- #: classes/class.swpm-front-registration.php:383
572
  msgid ""
573
  "Activation code mismatch. Cannot activate this account. Please contact the "
574
  "site admin."
575
  msgstr ""
576
 
577
- #: classes/class.swpm-front-registration.php:397
578
  msgid "Success! Your account has been activated successfully."
579
  msgstr ""
580
 
581
- #: classes/class.swpm-front-registration.php:421
582
  msgid "Cannot find member account."
583
  msgstr ""
584
 
585
- #: classes/class.swpm-front-registration.php:443
586
  msgid ""
587
  "Activation email has been sent. Please check your email and activate your "
588
  "account."
589
  msgstr ""
590
 
591
- #: classes/class.swpm-init-time-tasks.php:118
592
  msgid "Sorry, Nonce verification failed."
593
  msgstr ""
594
 
595
- #: classes/class.swpm-init-time-tasks.php:125
596
  msgid "Sorry, Password didn't match."
597
  msgstr ""
598
 
@@ -604,199 +740,105 @@ msgstr ""
604
  msgid "Access duration must be > 0."
605
  msgstr ""
606
 
607
- #: classes/class.swpm-members.php:10
608
  msgid "Member"
609
  msgstr ""
610
 
611
- #: classes/class.swpm-members.php:19
612
  #: classes/class.swpm-membership-levels.php:20
613
  msgid "ID"
614
  msgstr ""
615
 
616
- #: classes/class.swpm-members.php:20 views/add.php:16 views/admin_add.php:11
617
  #: views/admin_edit.php:19 views/edit.php:23
618
- #: includes/swpm_mda_show_profile.php:27
619
  msgid "Username"
620
  msgstr ""
621
 
622
- #: classes/class.swpm-members.php:21
623
- #: classes/admin-includes/class.swpm-payments-list-table.php:78
624
- #: views/add.php:32 views/admin_member_form_common_part.php:15
625
- #: views/edit.php:39 includes/swpm_mda_show_profile.php:28
626
- msgid "First Name"
627
- msgstr ""
628
-
629
- #: classes/class.swpm-members.php:22
630
- #: classes/admin-includes/class.swpm-payments-list-table.php:79
631
- #: views/add.php:36 views/admin_member_form_common_part.php:19
632
- #: views/edit.php:43 includes/swpm_mda_show_profile.php:29
633
- msgid "Last Name"
634
- msgstr ""
635
-
636
- #: classes/class.swpm-members.php:23 views/add.php:20 views/edit.php:27
637
- #: includes/swpm_mda_show_profile.php:35
638
  msgid "Email"
639
  msgstr ""
640
 
641
- #: classes/class.swpm-members.php:25 views/admin_member_form_common_part.php:11
642
  msgid "Access Starts"
643
  msgstr ""
644
 
645
- #: classes/class.swpm-members.php:26 includes/swpm_mda_show_profile.php:31
646
  msgid "Account State"
647
  msgstr ""
648
 
649
- #: classes/class.swpm-members.php:27
650
  msgid "Last Login Date"
651
  msgstr ""
652
 
653
- #: classes/class.swpm-members.php:46
654
- #: classes/class.swpm-membership-levels.php:36
655
- #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:94
656
- #: classes/admin-includes/class.swpm-payments-list-table.php:102
657
- msgid "Delete"
658
- msgstr ""
659
-
660
- #: classes/class.swpm-members.php:47
661
  msgid "Set Status to Active"
662
  msgstr ""
663
 
664
- #: classes/class.swpm-members.php:48
665
  msgid "Set Status to Active and Notify"
666
  msgstr ""
667
 
668
- #: classes/class.swpm-members.php:49
669
  msgid "Set Status to Inactive"
670
  msgstr ""
671
 
672
- #: classes/class.swpm-members.php:50
673
  msgid "Set Status to Pending"
674
  msgstr ""
675
 
676
- #: classes/class.swpm-members.php:51
677
  msgid "Set Status to Expired"
678
  msgstr ""
679
 
680
- #: classes/class.swpm-members.php:72
681
  msgid "incomplete"
682
  msgstr ""
683
 
684
- #: classes/class.swpm-members.php:191
685
  msgid "No member found."
686
  msgstr ""
687
 
688
- #: classes/class.swpm-members.php:337
689
  msgid "Error! Nonce verification failed for user delete from admin end."
690
  msgstr ""
691
 
692
- #: classes/class.swpm-members.php:406 classes/class.swpm-members.php:436
693
- msgid "Error! Please select a membership level first."
694
- msgstr ""
695
-
696
- #: classes/class.swpm-members.php:423
697
- msgid "Membership level change operation completed successfully."
698
- msgstr ""
699
-
700
- #: classes/class.swpm-members.php:453
701
- msgid "Access starts date change operation successfully completed."
702
- msgstr ""
703
-
704
- #: classes/class.swpm-members.php:462
705
- msgid "Bulk Update Membership Level of Members"
706
- msgstr ""
707
-
708
- #: classes/class.swpm-members.php:465
709
- msgid ""
710
- "You can manually change the membership level of any member by editing the "
711
- "record from the members menu. "
712
- msgstr ""
713
-
714
- #: classes/class.swpm-members.php:466
715
- msgid ""
716
- "You can use the following option to bulk update the membership level of "
717
- "users who belong to the level you select below."
718
- msgstr ""
719
-
720
- #: classes/class.swpm-members.php:472 classes/class.swpm-members.php:520
721
- msgid "Membership Level: "
722
- msgstr ""
723
-
724
- #: classes/class.swpm-members.php:476
725
- msgid "Select Current Level"
726
- msgstr ""
727
-
728
- #: classes/class.swpm-members.php:479
729
- msgid ""
730
- "Select the current membership level (the membership level of all members who "
731
- "are in this level will be updated)."
732
- msgstr ""
733
-
734
- #: classes/class.swpm-members.php:485
735
- msgid "Level to Change to: "
736
- msgstr ""
737
-
738
- #: classes/class.swpm-members.php:489
739
- msgid "Select Target Level"
740
- msgstr ""
741
-
742
- #: classes/class.swpm-members.php:492
743
- msgid "Select the new membership level."
744
- msgstr ""
745
-
746
- #: classes/class.swpm-members.php:498
747
- msgid "Bulk Change Membership Level"
748
- msgstr ""
749
-
750
- #: classes/class.swpm-members.php:508
751
- msgid "Bulk Update Access Starts Date of Members"
752
- msgstr ""
753
-
754
- #: classes/class.swpm-members.php:512
755
  msgid ""
756
- "The access starts date of a member is set to the day the user registers. "
757
- "This date value is used to calculate how long the member can access your "
758
- "content that are protected with a duration type protection in the membership "
759
- "level. "
760
  msgstr ""
761
 
762
- #: classes/class.swpm-members.php:513
763
- msgid ""
764
- "You can manually set a specific access starts date value of all members who "
765
- "belong to a particular level using the following option."
766
  msgstr ""
767
 
768
- #: classes/class.swpm-members.php:523
769
- msgid "Select Level"
770
  msgstr ""
771
 
772
- #: classes/class.swpm-members.php:526
773
  msgid ""
774
- "Select the Membership level (the access start date of all members who are in "
775
- "this level will be updated)."
776
- msgstr ""
777
-
778
- #: classes/class.swpm-members.php:535
779
- msgid "Specify the access starts date value."
780
  msgstr ""
781
 
782
- #: classes/class.swpm-members.php:541
783
- msgid "Bulk Change Access Starts Date"
784
  msgstr ""
785
 
786
- #: classes/class.swpm-members.php:576
787
  msgid "Simple WP Membership::Members"
788
  msgstr ""
789
 
790
- #: classes/class.swpm-members.php:577
791
- #: classes/class.swpm-membership-levels.php:226 views/admin_members_list.php:44
792
  msgid "Add New"
793
  msgstr ""
794
 
795
- #: classes/class.swpm-members.php:582 views/admin_add.php:6
796
  msgid "Add Member"
797
  msgstr ""
798
 
799
- #: classes/class.swpm-members.php:583
800
  msgid "Bulk Operation"
801
  msgstr ""
802
 
@@ -827,47 +869,36 @@ msgstr ""
827
  msgid "Access Valid For/Until"
828
  msgstr ""
829
 
830
- #: classes/class.swpm-membership-levels.php:133
831
- msgid "No membership levels found."
832
- msgstr ""
833
-
834
- #: classes/class.swpm-membership-levels.php:197
835
  msgid ""
836
  "Error! Nonce verification failed for membership level delete from admin end."
837
  msgstr ""
838
 
839
- #: classes/class.swpm-membership-levels.php:216 views/admin_members_list.php:31
840
- #: views/payments/admin_all_payment_transactions.php:16 views/template-1.php:53
841
- #: views/template-2.php:54
842
  msgid "Search"
843
  msgstr ""
844
 
845
- #: classes/class.swpm-membership-levels.php:261
846
  msgid "Simple WP Membership::Membership Levels"
847
  msgstr ""
848
 
849
- #: classes/class.swpm-membership-levels.php:266
850
  msgid "Add Level"
851
  msgstr ""
852
 
853
- #: classes/class.swpm-membership-levels.php:267
854
  msgid "Manage Content Protection"
855
  msgstr ""
856
 
857
- #: classes/class.swpm-membership-levels.php:268
858
  msgid "Category Protection"
859
  msgstr ""
860
 
861
- #: classes/class.swpm-membership-levels.php:269
862
  msgid "Post and Page Protection"
863
  msgstr ""
864
 
865
- #: classes/class.swpm-post-list.php:43 classes/class.swpm-post-list.php:52
866
- #: classes/class.swpm-post-list.php:62
867
- #: classes/admin-includes/class.swpm-payments-list-table.php:81
868
- msgid "Date"
869
- msgstr ""
870
-
871
  #: classes/class.swpm-post-list.php:44 classes/class.swpm-post-list.php:53
872
  #: classes/class.swpm-post-list.php:63
873
  msgid "Title"
@@ -891,12 +922,14 @@ msgstr ""
891
  msgid "Type"
892
  msgstr ""
893
 
894
- #: classes/class.swpm-post-list.php:125
895
- msgid "Protection settings updated!"
 
 
896
  msgstr ""
897
 
898
- #: classes/class.swpm-post-list.php:230
899
- msgid "No items found."
900
  msgstr ""
901
 
902
  #: classes/class.swpm-protection.php:22
@@ -909,305 +942,389 @@ msgstr ""
909
  msgid "category protection menu"
910
  msgstr ""
911
 
912
- #: classes/class.swpm-settings.php:26 classes/class.swpm-settings.php:54
913
  msgid "General Settings"
914
  msgstr ""
915
 
916
- #: classes/class.swpm-settings.php:27
917
  msgid "Payment Settings"
918
  msgstr ""
919
 
920
- #: classes/class.swpm-settings.php:28
921
  msgid "Email Settings"
922
  msgstr ""
923
 
924
- #: classes/class.swpm-settings.php:29
925
  msgid "Tools"
926
  msgstr ""
927
 
928
- #: classes/class.swpm-settings.php:30 classes/class.swpm-settings.php:187
929
  msgid "Advanced Settings"
930
  msgstr ""
931
 
932
- #: classes/class.swpm-settings.php:31
933
  msgid "Addons Settings"
934
  msgstr ""
935
 
936
- #: classes/class.swpm-settings.php:53
937
  msgid "Plugin Documentation"
938
  msgstr ""
939
 
940
- #: classes/class.swpm-settings.php:55
941
  msgid "Enable Free Membership"
942
  msgstr ""
943
 
944
- #: classes/class.swpm-settings.php:56
945
  msgid ""
946
  "Enable/disable registration for free membership level. When you enable this "
947
  "option, make sure to specify a free membership level ID in the field below."
948
  msgstr ""
949
 
950
- #: classes/class.swpm-settings.php:57
951
  msgid "Free Membership Level ID"
952
  msgstr ""
953
 
954
- #: classes/class.swpm-settings.php:58
955
  msgid "Assign free membership level ID"
956
  msgstr ""
957
 
958
- #: classes/class.swpm-settings.php:59
959
  msgid "Enable More Tag Protection"
960
  msgstr ""
961
 
962
- #: classes/class.swpm-settings.php:60
963
  msgid ""
964
  "Enables or disables \"more\" tag protection in the posts and pages. Anything "
965
  "after the More tag is protected. Anything before the more tag is teaser "
966
  "content."
967
  msgstr ""
968
 
969
- #: classes/class.swpm-settings.php:61
970
  msgid "Hide Adminbar"
971
  msgstr ""
972
 
973
- #: classes/class.swpm-settings.php:62
974
  msgid ""
975
  "WordPress shows an admin toolbar to the logged in users of the site. Check "
976
  "this if you want to hide that admin toolbar in the frontend of your site."
977
  msgstr ""
978
 
979
- #: classes/class.swpm-settings.php:63
980
  msgid "Show Adminbar to Admin"
981
  msgstr ""
982
 
983
- #: classes/class.swpm-settings.php:64
984
  msgid ""
985
  "Use this option if you want to show the admin toolbar to admin users only. "
986
  "The admin toolbar will be hidden for all other users."
987
  msgstr ""
988
 
989
- #: classes/class.swpm-settings.php:65
990
  msgid "Disable Access to WP Dashboard"
991
  msgstr ""
992
 
993
- #: classes/class.swpm-settings.php:66
994
  msgid ""
995
  "WordPress allows a standard wp user to be able to go to the wp-admin URL and "
996
- "access his profile from the wp dashbaord. Using this option will prevent any "
997
- "non admin users from going to the wp dashboard."
998
  msgstr ""
999
 
1000
- #: classes/class.swpm-settings.php:68 classes/class.swpm-settings.php:242
1001
  msgid "Default Account Status"
1002
  msgstr ""
1003
 
1004
- #: classes/class.swpm-settings.php:71
1005
  msgid ""
1006
  "Select the default account status for newly registered users. If you want to "
1007
  "manually approve the members then you can set the status to \"Pending\"."
1008
  msgstr ""
1009
 
1010
- #: classes/class.swpm-settings.php:73
1011
  msgid "Members Must be Logged in to Comment"
1012
  msgstr ""
1013
 
1014
- #: classes/class.swpm-settings.php:74
1015
  msgid ""
1016
  "Enable this option if you only want the members of the site to be able to "
1017
  "post a comment."
1018
  msgstr ""
1019
 
1020
- #: classes/class.swpm-settings.php:83
1021
  msgid "Pages Settings"
1022
  msgstr ""
1023
 
1024
- #: classes/class.swpm-settings.php:84
1025
  msgid "Login Page URL"
1026
  msgstr ""
1027
 
1028
- #: classes/class.swpm-settings.php:86
1029
  msgid "Registration Page URL"
1030
  msgstr ""
1031
 
1032
- #: classes/class.swpm-settings.php:88
1033
  msgid "Join Us Page URL"
1034
  msgstr ""
1035
 
1036
- #: classes/class.swpm-settings.php:90
1037
  msgid "Edit Profile Page URL"
1038
  msgstr ""
1039
 
1040
- #: classes/class.swpm-settings.php:92
1041
  msgid "Password Reset Page URL"
1042
  msgstr ""
1043
 
1044
- #: classes/class.swpm-settings.php:95
1045
  msgid "Test & Debug Settings"
1046
  msgstr ""
1047
 
1048
- #: classes/class.swpm-settings.php:97
1049
  msgid "Check this option to enable debug logging."
1050
  msgstr ""
1051
 
1052
- #: classes/class.swpm-settings.php:98
1053
  msgid ""
1054
  " This can be useful when troubleshooting an issue. Turn it off and reset the "
1055
  "log files after the troubleshooting is complete."
1056
  msgstr ""
1057
 
1058
- #: classes/class.swpm-settings.php:100
1059
  msgid "View general debug log file by clicking "
1060
  msgstr ""
1061
 
1062
- #: classes/class.swpm-settings.php:100 classes/class.swpm-settings.php:101
1063
- #: classes/class.swpm-settings.php:102
1064
  msgid "here"
1065
  msgstr ""
1066
 
1067
- #: classes/class.swpm-settings.php:101
1068
  msgid "View login related debug log file by clicking "
1069
  msgstr ""
1070
 
1071
- #: classes/class.swpm-settings.php:102
1072
  msgid "Reset debug log files by clicking "
1073
  msgstr ""
1074
 
1075
- #: classes/class.swpm-settings.php:103
1076
  msgid "Enable Debug"
1077
  msgstr ""
1078
 
1079
- #: classes/class.swpm-settings.php:105
1080
  msgid "Enable Sandbox Testing"
1081
  msgstr ""
1082
 
1083
- #: classes/class.swpm-settings.php:106
1084
  msgid "Enable this option if you want to do sandbox payment testing."
1085
  msgstr ""
1086
 
1087
- #: classes/class.swpm-settings.php:119
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1088
  msgid "Email Settings Overview"
1089
  msgstr ""
1090
 
1091
- #: classes/class.swpm-settings.php:120
1092
  msgid "Email Misc. Settings"
1093
  msgstr ""
1094
 
1095
- #: classes/class.swpm-settings.php:122
1096
  msgid "From Email Address"
1097
  msgstr ""
1098
 
1099
- #: classes/class.swpm-settings.php:126
 
 
 
 
1100
  msgid "Email Settings (Prompt to Complete Registration )"
1101
  msgstr ""
1102
 
1103
- #: classes/class.swpm-settings.php:127 classes/class.swpm-settings.php:140
1104
- #: classes/class.swpm-settings.php:158 classes/class.swpm-settings.php:163
1105
- #: classes/class.swpm-settings.php:168 classes/class.swpm-settings.php:173
1106
  msgid "Email Subject"
1107
  msgstr ""
1108
 
1109
- #: classes/class.swpm-settings.php:129 classes/class.swpm-settings.php:142
1110
- #: classes/class.swpm-settings.php:159 classes/class.swpm-settings.php:164
1111
- #: classes/class.swpm-settings.php:169 classes/class.swpm-settings.php:174
1112
  msgid "Email Body"
1113
  msgstr ""
1114
 
1115
- #: classes/class.swpm-settings.php:133
1116
  msgid ""
1117
  "Enter the email address where you want the admin notification email to be "
1118
  "sent to."
1119
  msgstr ""
1120
 
1121
- #: classes/class.swpm-settings.php:134
1122
  msgid ""
1123
  " You can put multiple email addresses separated by comma (,) in the above "
1124
  "field to send the notification to multiple email addresses."
1125
  msgstr ""
1126
 
1127
- #: classes/class.swpm-settings.php:136
1128
  msgid "Enter the subject for the admin notification email."
1129
  msgstr ""
1130
 
1131
- #: classes/class.swpm-settings.php:137
1132
  msgid ""
1133
  "This email will be sent to the admin when a new user completes the "
1134
  "membership registration. Only works if you have enabled the \"Send "
1135
  "Notification to Admin\" option above."
1136
  msgstr ""
1137
 
1138
- #: classes/class.swpm-settings.php:139
1139
  msgid "Email Settings (Registration Complete)"
1140
  msgstr ""
1141
 
1142
- #: classes/class.swpm-settings.php:144
1143
  msgid "Send Notification to Admin"
1144
  msgstr ""
1145
 
1146
- #: classes/class.swpm-settings.php:145
1147
  msgid ""
1148
  "Enable this option if you want the admin to receive a notification when a "
1149
  "member registers."
1150
  msgstr ""
1151
 
1152
- #: classes/class.swpm-settings.php:146
1153
  msgid "Admin Email Address"
1154
  msgstr ""
1155
 
1156
- #: classes/class.swpm-settings.php:148
1157
  msgid "Admin Notification Email Subject"
1158
  msgstr ""
1159
 
1160
- #: classes/class.swpm-settings.php:150
1161
  msgid "Admin Notification Email Body"
1162
  msgstr ""
1163
 
1164
- #: classes/class.swpm-settings.php:153
1165
  msgid "Send Email to Member When Added via Admin Dashboard"
1166
  msgstr ""
1167
 
1168
- #: classes/class.swpm-settings.php:157
1169
  msgid "Email Settings (Password Reset)"
1170
  msgstr ""
1171
 
1172
- #: classes/class.swpm-settings.php:162
1173
  msgid " Email Settings (Account Upgrade Notification)"
1174
  msgstr ""
1175
 
1176
- #: classes/class.swpm-settings.php:167
 
 
 
 
 
 
 
 
 
 
1177
  msgid " Email Settings (Bulk Account Activate Notification)"
1178
  msgstr ""
1179
 
1180
- #: classes/class.swpm-settings.php:172
1181
  msgid " Email Settings (Email Activation)"
1182
  msgstr ""
1183
 
1184
- #: classes/class.swpm-settings.php:189
1185
  msgid "Enable Expired Account Login"
1186
  msgstr ""
1187
 
1188
- #: classes/class.swpm-settings.php:190
1189
  msgid ""
1190
  "When enabled, expired members will be able to log into the system but won't "
1191
  "be able to view any protected content. This allows them to easily renew "
1192
  "their account by making another payment."
1193
  msgstr ""
1194
 
1195
- #: classes/class.swpm-settings.php:192
1196
  msgid "Membership Renewal URL"
1197
  msgstr ""
1198
 
1199
- #: classes/class.swpm-settings.php:193
1200
  msgid ""
1201
  "You can create a renewal page for your site. Read <a href=\"https://simple-"
1202
  "membership-plugin.com/creating-membership-renewal-button/\" target=\"_blank"
1203
  "\">this documentation</a> to learn how to create a renewal page."
1204
  msgstr ""
1205
 
1206
- #: classes/class.swpm-settings.php:195
1207
  msgid "After Registration Redirect URL"
1208
  msgstr ""
1209
 
1210
- #: classes/class.swpm-settings.php:196
1211
  msgid ""
1212
  "You can enter an URL here to redirect the members to this page after they "
1213
  "submit the registration form. Read <a href=\"https://simple-membership-"
@@ -1216,11 +1333,11 @@ msgid ""
1216
  "redirect."
1217
  msgstr ""
1218
 
1219
- #: classes/class.swpm-settings.php:198
1220
  msgid "Enable Auto Login After Registration"
1221
  msgstr ""
1222
 
1223
- #: classes/class.swpm-settings.php:199
1224
  msgid ""
1225
  "Use this option if you want the members to be automatically logged into your "
1226
  "site right after they complete the registration. This option will override "
@@ -1230,120 +1347,123 @@ msgid ""
1230
  "documentation</a> to learn more."
1231
  msgstr ""
1232
 
1233
- #: classes/class.swpm-settings.php:201
 
 
 
 
 
 
 
 
 
 
 
1234
  msgid "After Logout Redirect URL"
1235
  msgstr ""
1236
 
1237
- #: classes/class.swpm-settings.php:202
1238
  msgid ""
1239
  "You can enter an URL here to redirect the members to this page after they "
1240
  "click the logout link to logout from your site."
1241
  msgstr ""
1242
 
1243
- #: classes/class.swpm-settings.php:204
1244
  msgid "Logout Member on Browser Close"
1245
  msgstr ""
1246
 
1247
- #: classes/class.swpm-settings.php:205
1248
  msgid ""
1249
  "Enable this option if you want the member to be logged out of the account "
1250
  "when he closes the browser."
1251
  msgstr ""
1252
 
1253
- #: classes/class.swpm-settings.php:207
1254
  msgid "Allow Account Deletion"
1255
  msgstr ""
1256
 
1257
- #: classes/class.swpm-settings.php:208
1258
  msgid "Allow users to delete their accounts."
1259
  msgstr ""
1260
 
1261
- #: classes/class.swpm-settings.php:210
1262
  msgid "Force Strong Password for Members"
1263
  msgstr ""
1264
 
1265
- #: classes/class.swpm-settings.php:211
1266
  msgid ""
1267
  "Enable this if you want the users to be forced to use a strong password for "
1268
  "their accounts."
1269
  msgstr ""
1270
 
1271
- #: classes/class.swpm-settings.php:213
1272
- msgid "Use WordPress Timezone"
1273
- msgstr ""
1274
-
1275
- #: classes/class.swpm-settings.php:214
1276
- msgid ""
1277
- "Use this option if you want to use the timezone value specified in your "
1278
- "WordPress General Settings interface."
1279
- msgstr ""
1280
-
1281
- #: classes/class.swpm-settings.php:216
1282
  msgid "Auto Delete Pending Account"
1283
  msgstr ""
1284
 
1285
- #: classes/class.swpm-settings.php:219
1286
  msgid "Select how long you want to keep \"pending\" account."
1287
  msgstr ""
1288
 
1289
- #: classes/class.swpm-settings.php:221
1290
  msgid "Admin Dashboard Access Permission"
1291
  msgstr ""
1292
 
1293
- #: classes/class.swpm-settings.php:224
1294
  msgid ""
1295
  "SWPM admin dashboard is accessible to admin users only (just like any other "
1296
- "plugin). You can allow users with other WP user role to access the SWPM "
1297
- "admin dashboard by selecting a value here. Note that this option cannot work if you enabled the \"Disable Access to WP Dashboard\" option in General Settings."
 
 
1298
  msgstr ""
1299
 
1300
- #: classes/class.swpm-settings.php:226
1301
  msgid "Force WP User Synchronization"
1302
  msgstr ""
1303
 
1304
- #: classes/class.swpm-settings.php:227
1305
  msgid ""
1306
  "Enable this option if you want to force the member login to be synchronized "
1307
  "with WP user account. This can be useful if you are using another plugin "
1308
  "that uses WP user records. For example: bbPress plugin."
1309
  msgstr ""
1310
 
1311
- #: classes/class.swpm-settings.php:230
1312
  msgid "Create Member Accounts for New WP Users"
1313
  msgstr ""
1314
 
1315
- #: classes/class.swpm-settings.php:232
1316
  msgid "Enable Auto Create Member Accounts"
1317
  msgstr ""
1318
 
1319
- #: classes/class.swpm-settings.php:233
1320
  msgid ""
1321
  "Enable this option to automatically create member accounts for any new WP "
1322
  "user that is created by another plugin."
1323
  msgstr ""
1324
 
1325
- #: classes/class.swpm-settings.php:236
1326
  msgid "Default Membership Level"
1327
  msgstr ""
1328
 
1329
- #: classes/class.swpm-settings.php:239
1330
  msgid ""
1331
  "When automatically creating a member account using this feature, the "
1332
  "membership level of the user will be set to the one you specify here."
1333
  msgstr ""
1334
 
1335
- #: classes/class.swpm-settings.php:245
1336
  msgid ""
1337
  "When automatically creating a member account using this feature, the "
1338
  "membership account status of the user will be set to the one you specify "
1339
  "here."
1340
  msgstr ""
1341
 
1342
- #: classes/class.swpm-settings.php:247
1343
  msgid "Payment Notification Forward URL"
1344
  msgstr ""
1345
 
1346
- #: classes/class.swpm-settings.php:248
1347
  msgid ""
1348
  "You can enter an URL here to forward the payment notification after the "
1349
  "membership payment has been processed by this plugin. Useful if you want to "
@@ -1351,150 +1471,80 @@ msgid ""
1351
  "processing."
1352
  msgstr ""
1353
 
1354
- #: classes/class.swpm-settings.php:251 views/add.php:65
1355
  msgid "Terms and Conditions"
1356
  msgstr ""
1357
 
1358
- #: classes/class.swpm-settings.php:253
1359
  msgid "Enable Terms and Conditions"
1360
  msgstr ""
1361
 
1362
- #: classes/class.swpm-settings.php:254
1363
  msgid "Users must accept the terms before they can complete the registration."
1364
  msgstr ""
1365
 
1366
- #: classes/class.swpm-settings.php:255
1367
  msgid "Terms and Conditions Page URL"
1368
  msgstr ""
1369
 
1370
- #: classes/class.swpm-settings.php:256
1371
  msgid ""
1372
  "Enter the URL of your terms and conditions page. You can create a WordPress "
1373
  "page and specify your terms in there then specify the URL of that page in "
1374
  "the above field."
1375
  msgstr ""
1376
 
1377
- #: classes/class.swpm-settings.php:257
1378
  msgid "Enable Privacy Policy"
1379
  msgstr ""
1380
 
1381
- #: classes/class.swpm-settings.php:258
1382
  msgid "Users must accept it before they can complete the registration."
1383
  msgstr ""
1384
 
1385
- #: classes/class.swpm-settings.php:259
1386
  msgid "Privacy Policy Page URL"
1387
  msgstr ""
1388
 
1389
- #: classes/class.swpm-settings.php:260
1390
  msgid "Enter the URL of your privacy policy page."
1391
  msgstr ""
1392
 
1393
- #: classes/class.swpm-settings.php:350 classes/class.swpm-settings.php:396
1394
- #: classes/class.swpm-settings.php:425
1395
- msgid "Settings updated!"
1396
- msgstr ""
1397
-
1398
- #: classes/class.swpm-settings.php:355
1399
- msgid "General Plugin Settings."
1400
- msgstr ""
1401
-
1402
- #: classes/class.swpm-settings.php:359
1403
- msgid "Page Setup and URL Related settings."
1404
- msgstr ""
1405
-
1406
- #: classes/class.swpm-settings.php:362
1407
- msgid ""
1408
- "The following pages are required for the plugin to function correctly. These "
1409
- "pages were automatically created by the plugin at install time."
1410
- msgstr ""
1411
-
1412
- #: classes/class.swpm-settings.php:367
1413
- msgid "Testing and Debug Related Settings."
1414
- msgstr ""
1415
-
1416
- #: classes/class.swpm-settings.php:371
1417
- msgid ""
1418
- "This email will be sent to your users when they complete the registration "
1419
- "and become a member."
1420
- msgstr ""
1421
-
1422
- #: classes/class.swpm-settings.php:375
1423
- msgid ""
1424
- "This email will be sent to your users when they use the password reset "
1425
- "functionality."
1426
- msgstr ""
1427
-
1428
- #: classes/class.swpm-settings.php:381
1429
- msgid ""
1430
- "This interface lets you custsomize the various emails that gets sent to your "
1431
- "members for various actions. The default settings should be good to get your "
1432
- "started."
1433
- msgstr ""
1434
-
1435
- #: classes/class.swpm-settings.php:385 views/admin_tools_settings.php:82
1436
- msgid "This documentation"
1437
- msgstr ""
1438
-
1439
- #: classes/class.swpm-settings.php:386
1440
- msgid ""
1441
- " explains what email merge tags you can use in the email body field to "
1442
- "customize it (if you want to)."
1443
- msgstr ""
1444
-
1445
- #: classes/class.swpm-settings.php:399
1446
- msgid "Settings in this section apply to all emails."
1447
- msgstr ""
1448
-
1449
- #: classes/class.swpm-settings.php:403
1450
- msgid ""
1451
- "This email will be sent to your users after account upgrade (when an "
1452
- "existing member pays for a new membership level)."
1453
- msgstr ""
1454
-
1455
- #: classes/class.swpm-settings.php:407
1456
- msgid ""
1457
- "This email will be sent to your members when you use the bulk account "
1458
- "activate and notify action."
1459
  msgstr ""
1460
 
1461
- #: classes/class.swpm-settings.php:408
1462
- msgid ""
1463
- " You cannot use email merge tags in this email. You can only use generic "
1464
- "text."
1465
  msgstr ""
1466
 
1467
- #: classes/class.swpm-settings.php:413
1468
- msgid ""
1469
- "This email will be sent if Email Activation is enabled for a Membership "
1470
- "Level."
1471
  msgstr ""
1472
 
1473
- #: classes/class.swpm-settings.php:417
1474
- msgid ""
1475
- "This email will be sent to prompt users to complete registration after the "
1476
- "payment."
1477
  msgstr ""
1478
 
1479
- #: classes/class.swpm-settings.php:428
1480
- msgid "This page allows you to configure some advanced features of the plugin."
 
1481
  msgstr ""
1482
 
1483
- #: classes/class.swpm-settings.php:432
1484
- msgid ""
1485
- "This section allows you to configure automatic creation of member accounts "
1486
- "when new WP User records are created by another plugin. It can be useful if "
1487
- "you are using another plugin that creates WP user records and you want them "
1488
- "to be recognized in the membership plugin."
1489
  msgstr ""
1490
 
1491
- #: classes/class.swpm-settings.php:436
1492
  msgid ""
1493
- "This section allows you to configure terms and conditions and privacy policy "
1494
- "that users must accept at registration time."
 
1495
  msgstr ""
1496
 
1497
- #: classes/class.swpm-settings.php:565
1498
  msgid "Simple WP Membership::Settings"
1499
  msgstr ""
1500
 
@@ -1502,246 +1552,238 @@ msgstr ""
1502
  #: classes/class.swpm-utils-member.php:44
1503
  #: classes/class.swpm-utils-member.php:52
1504
  #: classes/class.swpm-utils-member.php:62
 
1505
  msgid "User is not logged in."
1506
  msgstr ""
1507
 
1508
- #: classes/class.swpm-utils-member.php:80
1509
  msgid "No Expiry"
1510
  msgstr ""
1511
 
1512
- #: classes/class.swpm-utils-misc.php:50
1513
  msgid "Registration"
1514
  msgstr ""
1515
 
1516
- #: classes/class.swpm-utils-misc.php:73
1517
  msgid "Member Login"
1518
  msgstr ""
1519
 
1520
- #: classes/class.swpm-utils-misc.php:96
1521
- #: classes/shortcode-related/class.swpm-shortcodes-handler.php:117
1522
  msgid "Profile"
1523
  msgstr ""
1524
 
1525
- #: classes/class.swpm-utils-misc.php:119
1526
  msgid "Password Reset"
1527
  msgstr ""
1528
 
1529
- #: classes/class.swpm-utils-misc.php:168
1530
  #, php-format
1531
  msgid ""
1532
  "You will be automatically redirected in a few seconds. If not, please %s."
1533
  msgstr ""
1534
 
1535
- #: classes/class.swpm-utils-misc.php:172
1536
  msgid "Action Status"
1537
  msgstr ""
1538
 
1539
- #: classes/class.swpm-utils-misc.php:274
1540
  msgid "Not a Member?"
1541
  msgstr ""
1542
 
1543
- #: classes/class.swpm-utils-misc.php:285
1544
  msgid "renew"
1545
  msgstr ""
1546
 
1547
- #: classes/class.swpm-utils-misc.php:285
1548
  msgid " your account to gain access to this content."
1549
  msgstr ""
1550
 
1551
- #: classes/class.swpm-utils-misc.php:343 classes/class.swpm-utils-misc.php:349
1552
  msgid "Error! This action ("
1553
  msgstr ""
1554
 
1555
- #: classes/class.swpm-utils-misc.php:421
1556
  msgid "(Please Select)"
1557
  msgstr ""
1558
 
1559
- #: classes/class.swpm-utils-template.php:38
1560
- msgid "Error! Failed to find a template path for the specified template: "
1561
- msgstr ""
1562
-
1563
- #: classes/class.swpm-utils.php:101
1564
- msgid "Never"
1565
- msgstr ""
1566
-
1567
- #: classes/class.swpm-utils.php:116 views/admin_members_list.php:19
1568
- msgid "Active"
1569
- msgstr ""
1570
-
1571
- #: classes/class.swpm-utils.php:117 views/admin_members_list.php:20
1572
- msgid "Inactive"
1573
- msgstr ""
1574
-
1575
- #: classes/class.swpm-utils.php:118 views/admin_members_list.php:21
1576
- msgid "Activation Required"
1577
  msgstr ""
1578
 
1579
- #: classes/class.swpm-utils.php:119
1580
- msgid "Male"
1581
  msgstr ""
1582
 
1583
- #: classes/class.swpm-utils.php:120
1584
- msgid "Female"
1585
  msgstr ""
1586
 
1587
- #: classes/class.swpm-utils.php:121
1588
- msgid "Not Specified"
1589
  msgstr ""
1590
 
1591
- #: classes/class.swpm-utils.php:119 views/admin_members_list.php:22
1592
- msgid "Pending"
1593
  msgstr ""
1594
 
1595
- #: classes/class.swpm-utils.php:120 views/admin_members_list.php:24
1596
- msgid "Expired"
1597
  msgstr ""
1598
 
1599
- #: classes/class.swpm-utils.php:414 views/account_delete_warning.php:3
1600
- msgid "Delete Account"
1601
  msgstr ""
1602
 
1603
- #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:75
1604
- msgid "Payment Button ID"
1605
  msgstr ""
1606
 
1607
- #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:76
1608
- msgid "Payment Button Title"
1609
  msgstr ""
1610
 
1611
- #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:77
1612
- msgid "Membership Level ID"
1613
  msgstr ""
1614
 
1615
- #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:78
1616
- msgid "Button Type"
1617
  msgstr ""
1618
 
1619
- #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:79
1620
- msgid "Button Shortcode"
1621
  msgstr ""
1622
 
1623
- #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:127
1624
- #: views/admin_members_list.php:9
1625
- #: views/payments/admin_all_payment_transactions.php:32
1626
- msgid "The selected entry was deleted!"
1627
  msgstr ""
1628
 
1629
- #: classes/admin-includes/class.swpm-payments-admin-menu.php:21
1630
- msgid "Simple Membership::Payments"
1631
  msgstr ""
1632
 
1633
- #: classes/admin-includes/class.swpm-payments-admin-menu.php:25
1634
- msgid "Transactions"
1635
  msgstr ""
1636
 
1637
- #: classes/admin-includes/class.swpm-payments-admin-menu.php:26
1638
- msgid "Manage Payment Buttons"
1639
  msgstr ""
1640
 
1641
- #: classes/admin-includes/class.swpm-payments-admin-menu.php:27
1642
- #: views/payments/admin_payment_buttons.php:27
1643
- msgid "Create New Button"
1644
  msgstr ""
1645
 
1646
- #: classes/admin-includes/class.swpm-payments-list-table.php:57
1647
- #: views/template-1.php:95 views/template-2.php:97
1648
- msgid "View Profile"
1649
  msgstr ""
1650
 
1651
- #: classes/admin-includes/class.swpm-payments-list-table.php:76
1652
- msgid "Row ID"
1653
  msgstr ""
1654
 
1655
- #: classes/admin-includes/class.swpm-payments-list-table.php:77
1656
- #: views/forgot_password.php:5
1657
- msgid "Email Address"
 
1658
  msgstr ""
1659
 
1660
- #: classes/admin-includes/class.swpm-payments-list-table.php:80
1661
- msgid "Member Profile"
1662
  msgstr ""
1663
 
1664
- #: classes/admin-includes/class.swpm-payments-list-table.php:82
1665
- msgid "Transaction ID"
1666
  msgstr ""
1667
 
1668
- #: classes/admin-includes/class.swpm-payments-list-table.php:83
1669
- msgid "Subscriber ID"
1670
  msgstr ""
1671
 
1672
- #: classes/admin-includes/class.swpm-payments-list-table.php:84
1673
- msgid "Amount"
1674
  msgstr ""
1675
 
1676
- #: classes/shortcode-related/class.swpm-shortcodes-handler.php:60
1677
  msgid "Your membership profile will be updated to reflect the payment."
1678
  msgstr ""
1679
 
1680
- #: classes/shortcode-related/class.swpm-shortcodes-handler.php:61
1681
  msgid "Your profile username: "
1682
  msgstr ""
1683
 
1684
- #: classes/shortcode-related/class.swpm-shortcodes-handler.php:73
1685
  msgid "Click on the following link to complete the registration."
1686
  msgstr ""
1687
 
1688
- #: classes/shortcode-related/class.swpm-shortcodes-handler.php:74
1689
  msgid "Click here to complete your paid registration"
1690
  msgstr ""
1691
 
1692
- #: classes/shortcode-related/class.swpm-shortcodes-handler.php:79
1693
  msgid ""
1694
  "If you have just made a membership payment then your payment is yet to be "
1695
  "processed. Please check back in a few minutes. An email will be sent to you "
1696
  "with the details shortly."
1697
  msgstr ""
1698
 
1699
- #: classes/shortcode-related/class.swpm-shortcodes-handler.php:93
1700
  msgid "Expiry: "
1701
  msgstr ""
1702
 
1703
- #: classes/shortcode-related/class.swpm-shortcodes-handler.php:95
 
 
1704
  msgid "You are not logged-in as a member"
1705
  msgstr ""
1706
 
1707
- #: classes/shortcode-related/class.swpm-shortcodes-handler.php:115
1708
  msgid "Logged in as: "
1709
  msgstr ""
1710
 
1711
- #: classes/shortcode-related/class.swpm-shortcodes-handler.php:118
1712
  #: views/loggedin.php:31
1713
  msgid "Logout"
1714
  msgstr ""
1715
 
1716
- #: classes/shortcode-related/class.swpm-shortcodes-handler.php:121
1717
  msgid "Login Here"
1718
  msgstr ""
1719
 
1720
- #: classes/shortcode-related/class.swpm-shortcodes-handler.php:122
1721
  msgid "Not a member? "
1722
  msgstr ""
1723
 
1724
- #: classes/shortcode-related/class.swpm-shortcodes-handler.php:123
1725
  msgid "Join Now"
1726
  msgstr ""
1727
 
1728
- #: ipn/swpm-smart-checkout-ipn.php:260 ipn/swpm-smart-checkout-ipn.php:285
 
 
 
 
 
1729
  #, php-format
1730
- msgid "Error occured during payment verification. Error code: %d. Message: %s"
 
1731
  msgstr ""
1732
 
1733
- #: ipn/swpm-smart-checkout-ipn.php:298
 
1734
  #, php-format
1735
  msgid ""
1736
- "Payment check failed: invalid amount received. Expected %s %s, got %s %s."
 
1737
  msgstr ""
1738
 
1739
- #: ipn/swpm-smart-checkout-ipn.php:315
1740
  msgid "Empty payment data received."
1741
  msgstr ""
1742
 
1743
- #: ipn/swpm-smart-checkout-ipn.php:355
1744
- msgid "IPN product validation failed. Check debug log for more details."
1745
  msgstr ""
1746
 
1747
  #: views/account_delete_warning.php:7
@@ -1751,7 +1793,7 @@ msgid ""
1751
  msgstr ""
1752
 
1753
  #: views/account_delete_warning.php:8
1754
- msgid "It will also delete associated WordPress user account."
1755
  msgstr ""
1756
 
1757
  #: views/account_delete_warning.php:9
@@ -1772,36 +1814,36 @@ msgstr ""
1772
  msgid "Confirm Account Deletion"
1773
  msgstr ""
1774
 
1775
- #: views/add.php:24 views/admin_add.php:19 views/admin_edit.php:44
1776
- #: views/edit.php:31 views/login.php:17
1777
  msgid "Password"
1778
  msgstr ""
1779
 
1780
- #: views/add.php:28 views/edit.php:35
1781
  msgid "Repeat Password"
1782
  msgstr ""
1783
 
1784
- #: views/add.php:65
1785
  msgid "I accept the "
1786
  msgstr ""
1787
 
1788
- #: views/add.php:77
1789
  msgid "I agree to the "
1790
  msgstr ""
1791
 
1792
- #: views/add.php:77
1793
  msgid "Privacy Policy"
1794
  msgstr ""
1795
 
1796
- #: views/add.php:88
1797
  msgid "Register"
1798
  msgstr ""
1799
 
1800
- #: views/admin_add.php:7
1801
  msgid "Create a brand new user and add it to this site."
1802
  msgstr ""
1803
 
1804
- #: views/admin_add.php:11 views/admin_add.php:15 views/admin_add_level.php:12
1805
  #: views/admin_add_level.php:16 views/admin_add_level.php:20
1806
  #: views/admin_edit.php:19 views/admin_edit.php:40
1807
  #: views/admin_edit_level.php:16 views/admin_edit_level.php:20
@@ -1809,43 +1851,33 @@ msgstr ""
1809
  msgid "(required)"
1810
  msgstr ""
1811
 
1812
- #: views/admin_add.php:15 views/admin_edit.php:40
1813
  msgid "E-mail"
1814
  msgstr ""
1815
 
1816
- #: views/admin_add.php:19
1817
  msgid "(twice, required)"
1818
  msgstr ""
1819
 
1820
- #: views/admin_add.php:24 views/admin_edit.php:48
1821
  msgid "Strength indicator"
1822
  msgstr ""
1823
 
1824
- #: views/admin_add.php:25 views/admin_edit.php:49
1825
  msgid ""
1826
  "Hint: The password should be at least seven characters long. To make it "
1827
  "stronger, use upper and lower case letters, numbers and symbols like ! \" ? "
1828
  "$ % ^ &amp; )."
1829
  msgstr ""
1830
 
1831
- #: views/admin_add.php:29 views/admin_edit.php:53 views/loggedin.php:10
1832
  msgid "Account Status"
1833
  msgstr ""
1834
 
1835
- #: views/admin_add.php:39
1836
  msgid "Add New Member "
1837
  msgstr ""
1838
 
1839
- #: views/admin_addon_settings.php:3
1840
- msgid ""
1841
- "Some of the simple membership plugin's addon settings and options will be "
1842
- "displayed here (if you have them)"
1843
- msgstr ""
1844
-
1845
- #: views/admin_addon_settings.php:8
1846
- msgid "Save Changes"
1847
- msgstr ""
1848
-
1849
  #: views/admin_add_level.php:6
1850
  msgid "Add Membership Level"
1851
  msgstr ""
@@ -1920,9 +1952,9 @@ msgstr ""
1920
  msgid "Note:"
1921
  msgstr ""
1922
 
1923
- #: views/admin_add_level.php:45 views/admin_edit_level.php:53
1924
  msgid ""
1925
- "If enabled, decryptable member password is temporarily stored in the "
1926
  "database until the account is activated."
1927
  msgstr ""
1928
 
@@ -1930,10 +1962,20 @@ msgstr ""
1930
  msgid "Add New Membership Level "
1931
  msgstr ""
1932
 
1933
- #: views/admin_add_ons_page.php:7
1934
  msgid "Simple WP Membership::Add-ons"
1935
  msgstr ""
1936
 
 
 
 
 
 
 
 
 
 
 
1937
  #: views/admin_category_list.php:5
1938
  msgid ""
1939
  "First of all, globally protect the category on your site by selecting "
@@ -1956,19 +1998,14 @@ msgstr ""
1956
  msgid "category protection documentation"
1957
  msgstr ""
1958
 
1959
- #: views/admin_category_list.php:17 views/admin_post_list.php:27
1960
- msgid "Membership Level:"
1961
  msgstr ""
1962
 
1963
- #: views/admin_category_list.php:19 views/admin_post_list.php:29
1964
  msgid "General Protection"
1965
  msgstr ""
1966
 
1967
- #: views/admin_category_list.php:23 views/admin_post_list.php:33
1968
- #: views/edit.php:83
1969
- msgid "Update"
1970
- msgstr ""
1971
-
1972
  #: views/admin_edit.php:11
1973
  msgid "Edit Member"
1974
  msgstr ""
@@ -1978,7 +2015,7 @@ msgid "Edit existing member details."
1978
  msgstr ""
1979
 
1980
  #: views/admin_edit.php:14
1981
- msgid " You are currenty editing member with member ID: "
1982
  msgstr ""
1983
 
1984
  #: views/admin_edit.php:44
@@ -2014,22 +2051,32 @@ msgid "Subscriber ID/Reference"
2014
  msgstr ""
2015
 
2016
  #: views/admin_edit.php:79
 
 
 
 
 
 
 
 
 
 
2017
  msgid "Last Accessed Date"
2018
  msgstr ""
2019
 
2020
- #: views/admin_edit.php:82 views/admin_edit.php:89
2021
  msgid "This value gets updated when this member logs into your site."
2022
  msgstr ""
2023
 
2024
- #: views/admin_edit.php:86
2025
  msgid "Last Accessed From IP"
2026
  msgstr ""
2027
 
2028
- #: views/admin_edit.php:97
2029
  msgid "Save Data"
2030
  msgstr ""
2031
 
2032
- #: views/admin_edit.php:102
2033
  msgid "Delete User Profile"
2034
  msgstr ""
2035
 
@@ -2061,29 +2108,21 @@ msgid ""
2061
  "the account. Useful for free membership."
2062
  msgstr ""
2063
 
2064
- #: views/admin_edit_level.php:60
2065
- msgid "Save Membership Level "
2066
- msgstr ""
2067
-
2068
- #: views/admin_membership_manage.php:18
2069
- msgid "Example Content Protection Settings"
2070
- msgstr ""
2071
-
2072
- #: views/admin_members_list.php:18
2073
- msgid "All"
2074
  msgstr ""
2075
 
2076
- #: views/admin_members_list.php:23
2077
- msgid "Incomplete"
2078
  msgstr ""
2079
 
2080
  #: views/admin_member_form_common_part.php:23
2081
- #: includes/swpm_mda_show_profile.php:37
2082
  msgid "Gender"
2083
  msgstr ""
2084
 
2085
  #: views/admin_member_form_common_part.php:30 views/edit.php:47
2086
- #: includes/swpm_mda_show_profile.php:34
2087
  msgid "Phone"
2088
  msgstr ""
2089
 
@@ -2104,20 +2143,29 @@ msgid "Zipcode"
2104
  msgstr ""
2105
 
2106
  #: views/admin_member_form_common_part.php:50 views/edit.php:67
2107
- #: includes/swpm_mda_show_profile.php:33
2108
  msgid "Country"
2109
  msgstr ""
2110
 
2111
  #: views/admin_member_form_common_part.php:54
2112
- #: includes/swpm_mda_show_profile.php:38
2113
  msgid "Company"
2114
  msgstr ""
2115
 
2116
  #: views/admin_member_form_common_part.php:58
2117
- #: includes/swpm_mda_show_profile.php:36
2118
  msgid "Member Since"
2119
  msgstr ""
2120
 
 
 
 
 
 
 
 
 
 
 
 
 
2121
  #: views/admin_post_list.php:5
2122
  msgid ""
2123
  "First of all, globally protect posts and pages on your site by selecting "
@@ -2140,18 +2188,6 @@ msgstr ""
2140
  msgid " to learn how to use it."
2141
  msgstr ""
2142
 
2143
- #: views/admin_post_list.php:21
2144
- msgid "Posts"
2145
- msgstr ""
2146
-
2147
- #: views/admin_post_list.php:22
2148
- msgid "Pages"
2149
- msgstr ""
2150
-
2151
- #: views/admin_post_list.php:23
2152
- msgid "Custom Posts"
2153
- msgstr ""
2154
-
2155
  #: views/admin_tools_settings.php:14
2156
  msgid "The required pages have been re-created."
2157
  msgstr ""
@@ -2171,10 +2207,6 @@ msgstr ""
2171
  msgid "Generate Registration Completion Link"
2172
  msgstr ""
2173
 
2174
- #: views/admin_tools_settings.php:30
2175
- msgid "For a Particular Member ID"
2176
- msgstr ""
2177
-
2178
  #: views/admin_tools_settings.php:32
2179
  msgid "OR"
2180
  msgstr ""
@@ -2227,6 +2259,10 @@ msgstr ""
2227
  msgid "Company Name"
2228
  msgstr ""
2229
 
 
 
 
 
2230
  #: views/forgot_password.php:12
2231
  msgid "Reset Password"
2232
  msgstr ""
@@ -2247,64 +2283,53 @@ msgstr ""
2247
  msgid "Edit Profile"
2248
  msgstr ""
2249
 
2250
- #: views/login.php:11
2251
- msgid "Username or Email"
2252
- msgstr ""
2253
-
2254
- #: views/login.php:24
2255
  msgid "Remember Me"
2256
  msgstr ""
2257
 
2258
- #: views/login.php:33
2259
  msgid "Forgot Password?"
2260
  msgstr ""
2261
 
2262
- #: views/payments/admin_all_payment_transactions.php:6
2263
- msgid "All the payments/transactions of your members are recorded here."
2264
- msgstr ""
2265
-
2266
- #: views/payments/admin_all_payment_transactions.php:12
2267
- msgid "Search for a transaction by using email or name"
2268
- msgstr ""
2269
-
2270
- #: views/payments/admin_create_payment_buttons.php:15
2271
- msgid ""
2272
- "You can create new payment button for your memberships using this interface."
2273
  msgstr ""
2274
 
2275
- #: views/payments/admin_create_payment_buttons.php:23
2276
- msgid "Select Payment Button Type"
2277
  msgstr ""
2278
 
2279
- #: views/payments/admin_create_payment_buttons.php:26
2280
- msgid "PayPal Buy Now"
2281
  msgstr ""
2282
 
2283
- #: views/payments/admin_create_payment_buttons.php:28
2284
- msgid "PayPal Subscription"
2285
  msgstr ""
2286
 
2287
- #: views/payments/admin_create_payment_buttons.php:30
2288
- msgid "PayPal Smart Checkout"
2289
  msgstr ""
2290
 
2291
- #: views/payments/admin_create_payment_buttons.php:32
2292
- msgid "Stripe Buy Now"
2293
  msgstr ""
2294
 
2295
- #: views/payments/admin_create_payment_buttons.php:34
2296
- msgid "Stripe Subscription"
 
 
2297
  msgstr ""
2298
 
2299
- #: views/payments/admin_create_payment_buttons.php:36
2300
- msgid "Braintree Buy Now"
2301
  msgstr ""
2302
 
2303
- #: views/payments/admin_create_payment_buttons.php:43
2304
  msgid "Next"
2305
  msgstr ""
2306
 
2307
- #: views/payments/admin_edit_payment_buttons.php:15
2308
  msgid "You can edit a payment button using this interface."
2309
  msgstr ""
2310
 
@@ -2313,16 +2338,6 @@ msgid ""
2313
  "All the membership buttons that you created in the plugin are displayed here."
2314
  msgstr ""
2315
 
2316
- #: views/payments/admin_payment_settings.php:21
2317
- msgid "Error! The membership level ID ("
2318
- msgstr ""
2319
-
2320
- #: views/payments/admin_payment_settings.php:28
2321
- msgid ""
2322
- "You can create membership payment buttons from the payments menu of this "
2323
- "plugin (useful if you want to offer paid membership on the site)."
2324
- msgstr ""
2325
-
2326
  #: views/payments/admin_payment_settings.php:33
2327
  msgid "PayPal Integration Settings"
2328
  msgstr ""
@@ -2344,32 +2359,39 @@ msgid "Braintree Buy Now Button Configuration"
2344
  msgstr ""
2345
 
2346
  #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:34
2347
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:213
2348
  #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:33
2349
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:301
2350
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:259
2351
- #: views/payments/payment-gateway/admin_stripe_subscription_button.php:83
 
 
2352
  msgid "Button ID"
2353
  msgstr ""
2354
 
2355
  #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:42
2356
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:26
2357
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:221
2358
  #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:41
2359
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:27
2360
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:309
2361
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:39
2362
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:266
2363
- #: views/payments/payment-gateway/admin_stripe_subscription_button.php:91
 
 
 
2364
  msgid "Button Title"
2365
  msgstr ""
2366
 
2367
  #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:60
2368
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:44
2369
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:239
2370
  #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:59
2371
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:57
2372
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:282
 
 
2373
  msgid "Payment Amount"
2374
  msgstr ""
2375
 
@@ -2396,69 +2418,84 @@ msgid "Merchant Account ID"
2396
  msgstr ""
2397
 
2398
  #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:113
2399
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:137
2400
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:361
 
 
2401
  msgid "The following details are optional."
2402
  msgstr ""
2403
 
2404
  #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:117
2405
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:92
2406
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:287
2407
  #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:204
2408
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:172
2409
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:456
2410
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:149
2411
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:373
2412
- #: views/payments/payment-gateway/admin_stripe_subscription_button.php:191
 
 
 
2413
  msgid "Return URL"
2414
  msgstr ""
2415
 
2416
- #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:127
2417
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:126
2418
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:321
2419
- #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:214
2420
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:200
2421
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:484
2422
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:159
2423
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:383
2424
- #: views/payments/payment-gateway/admin_stripe_subscription_button.php:212
 
 
 
2425
  msgid "Save Payment Data"
2426
  msgstr ""
2427
 
2428
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:16
2429
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:204
2430
  msgid "PayPal Buy Now Button Configuration"
2431
  msgstr ""
2432
 
2433
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:52
2434
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:247
2435
  #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:67
2436
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:45
2437
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:327
2438
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:65
2439
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:289
 
 
2440
  msgid "Payment Currency"
2441
  msgstr ""
2442
 
2443
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:100
2444
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:295
2445
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:85
2446
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:367
2447
  msgid "PayPal Email"
2448
  msgstr ""
2449
 
2450
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:108
2451
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:303
2452
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:180
2453
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:464
2454
- #: views/payments/payment-gateway/admin_stripe_subscription_button.php:199
 
 
 
 
 
2455
  msgid "Button Image URL"
2456
  msgstr ""
2457
 
2458
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:116
2459
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:311
2460
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:188
2461
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:472
2462
  msgid "Custom Checkout Page Logo Image"
2463
  msgstr ""
2464
 
@@ -2595,131 +2632,154 @@ msgid "The following details are optional"
2595
  msgstr ""
2596
 
2597
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:18
2598
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:295
2599
  msgid "PayPal Subscription Button Configuration"
2600
  msgstr ""
2601
 
2602
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:93
2603
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:375
2604
  msgid "Billing Amount Each Cycle"
2605
  msgstr ""
2606
 
2607
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:101
2608
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:383
2609
  msgid "Billing Cycle"
2610
  msgstr ""
2611
 
2612
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:114
2613
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:396
2614
  msgid "Billing Cycle Count"
2615
  msgstr ""
2616
 
2617
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:122
2618
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:404
2619
  msgid "Re-attempt on Failure"
2620
  msgstr ""
2621
 
2622
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:135
2623
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:419
2624
  msgid ""
2625
  "Trial Billing Details (Leave empty if you are not offering a trial period)"
2626
  msgstr ""
2627
 
2628
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:141
2629
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:425
2630
  msgid "Trial Billing Amount"
2631
  msgstr ""
2632
 
2633
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:149
2634
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:433
2635
  msgid "Trial Billing Period"
2636
  msgstr ""
2637
 
2638
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:166
2639
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:450
2640
- #: views/payments/payment-gateway/admin_stripe_subscription_button.php:177
 
2641
  msgid "Optional Details"
2642
  msgstr ""
2643
 
2644
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:29
2645
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:250
 
2646
  msgid "Stripe Buy Now Button Configuration"
2647
  msgstr ""
2648
 
2649
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:104
2650
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:328
 
 
2651
  msgid "Stripe API keys. You can get this from your Stripe account."
2652
  msgstr ""
2653
 
2654
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:108
2655
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:332
2656
- #: views/payments/payment-gateway/admin_stripe_subscription_button.php:131
2657
- msgid "Test Publishable Key"
2658
- msgstr ""
2659
-
2660
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:115
2661
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:339
2662
- #: views/payments/payment-gateway/admin_stripe_subscription_button.php:139
2663
- msgid "Test Secret Key"
2664
  msgstr ""
2665
 
2666
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:122
2667
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:346
2668
- #: views/payments/payment-gateway/admin_stripe_subscription_button.php:147
2669
- msgid "Live Publishable Key"
 
 
 
 
 
 
2670
  msgstr ""
2671
 
2672
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:129
2673
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:353
2674
- #: views/payments/payment-gateway/admin_stripe_subscription_button.php:155
2675
- msgid "Live Secret Key"
 
 
 
2676
  msgstr ""
2677
 
2678
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:141
2679
- #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:365
2680
- #: views/payments/payment-gateway/admin_stripe_subscription_button.php:183
2681
- msgid "Collect Customer Address"
2682
  msgstr ""
2683
 
2684
- #: views/payments/payment-gateway/admin_stripe_subscription_button.php:75
 
2685
  msgid "Stripe Subscription Button Configuration"
2686
  msgstr ""
2687
 
2688
- #: views/payments/payment-gateway/admin_stripe_subscription_button.php:109
 
2689
  msgid "Stripe API ID"
2690
  msgstr ""
2691
 
2692
- #: views/payments/payment-gateway/admin_stripe_subscription_button.php:125
 
 
 
 
 
2693
  msgid "Stripe API Settings"
2694
  msgstr ""
2695
 
2696
- #: views/payments/payment-gateway/admin_stripe_subscription_button.php:163
 
 
 
 
2697
  msgid "Webook Endpoint URL"
2698
  msgstr ""
2699
 
2700
- #: views/payments/payment-gateway/braintree_button_shortcode_view.php:20
2701
- #: views/payments/payment-gateway/paypal_button_shortcode_view.php:91
2702
- #: views/payments/payment-gateway/paypal_button_shortcode_view.php:93
2703
  #: views/payments/payment-gateway/paypal_smart_checkout_button_shortcode_view.php:15
2704
  #: views/payments/payment-gateway/stripe_button_shortcode_view.php:20
2705
- #: views/payments/payment-gateway/stripe_button_shortcode_view.php:150
 
 
2706
  msgid "Buy Now"
2707
  msgstr ""
2708
 
2709
- #: views/payments/payment-gateway/paypal_button_shortcode_view.php:226
2710
- #: views/payments/payment-gateway/paypal_button_shortcode_view.php:228
2711
  msgid "Subscribe Now"
2712
  msgstr ""
2713
 
2714
- #: views/payments/payment-gateway/paypal_smart_checkout_button_shortcode_view.php:137
2715
- msgid "Error occured during PayPal Smart Checkout process."
2716
  msgstr ""
2717
 
2718
- #: views/payments/payment-gateway/paypal_smart_checkout_button_shortcode_view.php:165
2719
- msgid "HTTP error occured during payment process:"
2720
  msgstr ""
2721
 
2722
- #: Translation strings from addons === Form builder addon
 
 
2723
  msgid "Type password here"
2724
  msgstr ""
2725
 
@@ -2750,16 +2810,13 @@ msgstr ""
2750
  msgid "Postal / Zip Code"
2751
  msgstr ""
2752
 
2753
- msgid ""
2754
- "Check this box to delete the image. The image will be deleted when you save "
2755
- "the profile."
2756
  msgstr ""
2757
 
2758
  msgid "You will need to re-login since you changed your password."
2759
  msgstr ""
2760
 
2761
- msgid ""
2762
- "Please enter any two digits with <strong>no</strong> spaces (Example: 12)"
2763
  msgstr ""
2764
 
2765
  msgid "Verification"
@@ -2768,13 +2825,19 @@ msgstr ""
2768
  msgid "Please enter any two digits with no spaces (Example: 12)*"
2769
  msgstr ""
2770
 
 
 
 
2771
  msgid "Username can only contain: letters, numbers and .-*@"
2772
  msgstr ""
2773
 
2774
  msgid "Allowed characters are: letters, numbers and .-_*@"
2775
  msgstr ""
2776
 
2777
- #: === Partial protection addon strings
 
 
 
2778
  msgid "You do not have permission to view this content."
2779
  msgstr ""
2780
 
@@ -2784,10 +2847,8 @@ msgstr ""
2784
  msgid "This content is for members only."
2785
  msgstr ""
2786
 
2787
- msgid "Please check at least one."
2788
- msgstr ""
2789
-
2790
- #: === Member Directory Listing addon strings swpm-member-directory-admin.php:9
2791
  msgid "Member Directory"
2792
  msgstr ""
2793
 
@@ -2795,22 +2856,70 @@ msgstr ""
2795
  msgid "Member ID"
2796
  msgstr ""
2797
 
 
 
 
 
 
 
 
 
 
 
 
 
2798
  #: includes/swpm_mda_show_profile.php:30
2799
  msgid "Level"
2800
  msgstr ""
2801
 
 
 
 
 
2802
  #: includes/swpm_mda_show_profile.php:32
2803
  msgid "Address"
2804
  msgstr ""
2805
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2806
  #: views/template-1.php:52 views/template-2.php:53
2807
  msgid "Search..."
2808
  msgstr ""
2809
 
 
 
 
 
2810
  #: views/template-1.php:60 views/template-2.php:62
2811
  msgid "Clear Search"
2812
  msgstr ""
2813
 
 
 
 
 
2814
  # === Misc Shortcodes Addon ===
2815
  msgid "You must be logged in to upgrade a membership."
2816
  msgstr ""
@@ -2819,4 +2928,4 @@ msgid "Membership level has been updated."
2819
  msgstr ""
2820
 
2821
  msgid "Already a member of this level."
2822
- msgstr ""
1
  #, fuzzy
2
  msgid ""
3
  msgstr ""
4
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
+ "Project-Id-Version: Simple WordPress Membership\n"
6
+ "POT-Creation-Date: 2021-07-07 13:25+1000\n"
7
+ "PO-Revision-Date: 2021-07-07 13:25+1000\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 2.2.4\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
16
+ "X-Poedit-WPHeader: simple-wp-membership.php\n"
17
+ "X-Poedit-SourceCharset: UTF-8\n"
18
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
19
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
20
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
+ "X-Poedit-SearchPathExcluded-0: *.min.js\n"
23
 
24
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:76
25
+ msgid "Payment Button ID"
26
+ msgstr ""
27
+
28
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:77
29
+ msgid "Payment Button Title"
30
+ msgstr ""
31
+
32
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:78
33
+ msgid "Membership Level ID"
34
+ msgstr ""
35
+
36
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:79
37
+ msgid "Button Type"
38
+ msgstr ""
39
+
40
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:80
41
+ msgid "Button Shortcode"
42
+ msgstr ""
43
+
44
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:95
45
+ #: classes/admin-includes/class.swpm-payments-list-table.php:110
46
+ #: classes/class.swpm-members.php:49
47
+ #: classes/class.swpm-membership-levels.php:36
48
+ msgid "Delete"
49
+ msgstr ""
50
+
51
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:128
52
+ #: views/admin_members_list.php:8
53
+ #: views/payments/admin_all_payment_transactions.php:32
54
+ msgid "The selected entry was deleted!"
55
+ msgstr ""
56
+
57
+ #: classes/admin-includes/class.swpm-payments-admin-menu.php:23
58
+ msgid "Simple Membership::Payments"
59
+ msgstr ""
60
+
61
+ #: classes/admin-includes/class.swpm-payments-list-table.php:65
62
+ msgid "View Profile"
63
+ msgstr ""
64
+
65
+ #: classes/admin-includes/class.swpm-payments-list-table.php:83
66
+ msgid "Row ID"
67
+ msgstr ""
68
+
69
+ #: classes/admin-includes/class.swpm-payments-list-table.php:84
70
+ #: views/forgot_password.php:5
71
+ #: views/payments/admin_add_edit_transaction_manually.php:75
72
+ msgid "Email Address"
73
+ msgstr ""
74
+
75
+ #: classes/admin-includes/class.swpm-payments-list-table.php:85
76
+ #: classes/class.swpm-members.php:23 views/add.php:34
77
+ #: views/admin_member_form_common_part.php:15 views/edit.php:39
78
+ #: views/payments/admin_add_edit_transaction_manually.php:83
79
+ msgid "First Name"
80
+ msgstr ""
81
+
82
+ #: classes/admin-includes/class.swpm-payments-list-table.php:86
83
+ #: classes/class.swpm-members.php:24 views/add.php:38
84
+ #: views/admin_member_form_common_part.php:19 views/edit.php:43
85
+ #: views/payments/admin_add_edit_transaction_manually.php:91
86
+ msgid "Last Name"
87
+ msgstr ""
88
+
89
+ #: classes/admin-includes/class.swpm-payments-list-table.php:87
90
+ msgid "Member Profile"
91
+ msgstr ""
92
+
93
+ #: classes/admin-includes/class.swpm-payments-list-table.php:88
94
+ #: classes/class.swpm-post-list.php:43 classes/class.swpm-post-list.php:52
95
+ #: classes/class.swpm-post-list.php:62
96
+ #: views/payments/admin_add_edit_transaction_manually.php:125
97
+ msgid "Date"
98
+ msgstr ""
99
+
100
+ #: classes/admin-includes/class.swpm-payments-list-table.php:89
101
+ #: views/payments/admin_add_edit_transaction_manually.php:133
102
+ msgid "Transaction ID"
103
+ msgstr ""
104
+
105
+ #: classes/admin-includes/class.swpm-payments-list-table.php:90
106
+ #: views/payments/admin_add_edit_transaction_manually.php:141
107
+ msgid "Subscriber ID"
108
+ msgstr ""
109
+
110
+ #: classes/admin-includes/class.swpm-payments-list-table.php:91
111
+ #: views/payments/admin_add_edit_transaction_manually.php:117
112
+ msgid "Amount"
113
+ msgstr ""
114
+
115
+ #: classes/admin-includes/class.swpm-payments-list-table.php:92
116
+ #: classes/class.swpm-category-list.php:19 classes/class.swpm-members.php:26
117
+ #: classes/class.swpm-membership-levels.php:11
118
+ #: classes/class.swpm-membership-levels.php:21
119
+ #: classes/class.swpm-post-list.php:20 views/add.php:42
120
+ #: views/admin_member_form_common_part.php:2 views/admin_members_list.php:50
121
+ #: views/edit.php:75 views/payments/admin_add_edit_transaction_manually.php:107
122
+ #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:50
123
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:34
124
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:232
125
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:49
126
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:35
127
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:320
128
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:44
129
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:330
130
+ #: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:44
131
+ #: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:312
132
+ #: views/payments/payment-gateway/admin_stripe_sca_subscription_button.php:108
133
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:108
134
+ msgid "Membership Level"
135
+ msgstr ""
136
+
137
+ #: classes/admin-includes/class.swpm-payments-list-table.php:93
138
+ #: views/payments/admin_add_edit_transaction_manually.php:149
139
+ msgid "Status/Note"
140
+ msgstr ""
141
+
142
+ #: classes/class-swpm-member-subscriptions.php:121
143
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:164
144
+ msgid "No active subscriptions"
145
+ msgstr ""
146
+
147
+ #: classes/class-swpm-member-subscriptions.php:132
148
+ msgid "Cancel Subscription"
149
+ msgstr ""
150
+
151
+ #: classes/class-swpm-member-subscriptions.php:134
152
+ msgid "Are you sure that you want to cancel the subscription?"
153
+ msgstr ""
154
+
155
+ #: classes/class.simple-wp-membership.php:189
156
  msgid "The admin of this site does not allow users to access the wp dashboard."
157
  msgstr ""
158
 
159
+ #: classes/class.simple-wp-membership.php:190
160
  msgid "Go back to the home page by "
161
  msgstr ""
162
 
163
+ #: classes/class.simple-wp-membership.php:190
164
  msgid "clicking here"
165
  msgstr ""
166
 
167
+ #: classes/class.simple-wp-membership.php:255
168
  msgid ""
169
  "Error! This site has the force WP user login feature enabled in the "
170
  "settings. We could not find a WP user record for the given username: "
171
  msgstr ""
172
 
173
+ #: classes/class.simple-wp-membership.php:256
174
  msgid ""
175
  "This error is triggered when a member account doesn't have a corresponding "
176
  "WP user account. So the plugin fails to log the user into the WP User system."
177
  msgstr ""
178
 
179
+ #: classes/class.simple-wp-membership.php:257
180
  msgid ""
181
  "Contact the site admin and request them to check your username in the WP "
182
  "Users menu to see what happened with the WP user entry of your account."
183
  msgstr ""
184
 
185
+ #: classes/class.simple-wp-membership.php:258
186
  msgid ""
187
  "The site admin can disable the Force WP User Synchronization feature in the "
188
  "settings to disable this feature and this error will go away."
189
  msgstr ""
190
 
191
+ #: classes/class.simple-wp-membership.php:259
192
  msgid "You can use the back button of your browser to go back to the site."
193
  msgstr ""
194
 
195
+ #: classes/class.simple-wp-membership.php:431
196
+ #: classes/class.swpm-wp-loaded-tasks.php:141
197
  msgid "You are not logged in."
198
  msgstr ""
199
 
200
+ #: classes/class.simple-wp-membership.php:482
201
  msgid ""
202
  "You have the sandbox payment mode enabled in plugin settings. Make sure to "
203
  "turn off the sandbox mode when you want to do live transactions."
204
  msgstr ""
205
 
206
+ #: classes/class.simple-wp-membership.php:497
207
  msgid "Simple WP Membership Protection"
208
  msgstr ""
209
 
210
+ #: classes/class.simple-wp-membership.php:509
211
  msgid "Simple Membership Protection options"
212
  msgstr ""
213
 
214
+ #: classes/class.simple-wp-membership.php:527
215
  msgid "Do you want to protect this content?"
216
  msgstr ""
217
 
218
+ #: classes/class.simple-wp-membership.php:528
219
  msgid "No, Do not protect this content."
220
  msgstr ""
221
 
222
+ #: classes/class.simple-wp-membership.php:529
223
  msgid "Yes, Protect this content."
224
  msgstr ""
225
 
226
+ #: classes/class.simple-wp-membership.php:532
227
  msgid "Select the membership level that can access this content:"
228
  msgstr ""
229
 
230
+ #: classes/class.simple-wp-membership.php:673
231
+ #: classes/class.simple-wp-membership.php:677
232
  msgid "Validating, please wait"
233
  msgstr ""
234
 
235
+ #: classes/class.simple-wp-membership.php:680
236
  msgid "Invalid email address"
237
  msgstr ""
238
 
239
+ #: classes/class.simple-wp-membership.php:683
240
  msgid "This field is required"
241
  msgstr ""
242
 
243
+ #: classes/class.simple-wp-membership.php:686
244
  msgid "Password must contain at least:"
245
  msgstr ""
246
 
247
+ #: classes/class.simple-wp-membership.php:686
248
  msgid "- a digit"
249
  msgstr ""
250
 
251
+ #: classes/class.simple-wp-membership.php:686
252
  msgid "- an uppercase letter"
253
  msgstr ""
254
 
255
+ #: classes/class.simple-wp-membership.php:686
256
  msgid "- a lowercase letter"
257
  msgstr ""
258
 
259
+ #: classes/class.simple-wp-membership.php:689 classes/class.swpm-auth.php:310
260
  msgid "Invalid Username"
261
  msgstr ""
262
 
263
+ #: classes/class.simple-wp-membership.php:689
264
  msgid "Usernames can only contain: letters, numbers and .-_*@"
265
  msgstr ""
266
 
267
+ #: classes/class.simple-wp-membership.php:692
268
  msgid "Minimum "
269
  msgstr ""
270
 
271
+ #: classes/class.simple-wp-membership.php:693
272
  msgid " characters required"
273
  msgstr ""
274
 
275
+ #: classes/class.simple-wp-membership.php:696
276
  msgid "Apostrophe character is not allowed"
277
  msgstr ""
278
 
279
+ #: classes/class.simple-wp-membership.php:736
280
  msgid "WP Membership"
281
  msgstr ""
282
 
283
+ #: classes/class.simple-wp-membership.php:737 classes/class.swpm-members.php:12
284
+ #: classes/class.swpm-members.php:718
285
  msgid "Members"
286
  msgstr ""
287
 
288
+ #: classes/class.simple-wp-membership.php:738
289
  #: classes/class.swpm-category-list.php:20
290
  #: classes/class.swpm-membership-levels.php:12
291
+ #: classes/class.swpm-membership-levels.php:269
292
  #: classes/class.swpm-post-list.php:21
293
  msgid "Membership Levels"
294
  msgstr ""
295
 
296
+ #: classes/class.simple-wp-membership.php:739
297
  msgid "Settings"
298
  msgstr ""
299
 
300
+ #: classes/class.simple-wp-membership.php:740
301
  msgid "Payments"
302
  msgstr ""
303
 
304
+ #: classes/class.simple-wp-membership.php:741
305
  msgid "Add-ons"
306
  msgstr ""
307
 
338
  msgid "Error! Nonce verification failed for user registration from admin end."
339
  msgstr ""
340
 
341
+ #: classes/class.swpm-admin-registration.php:79
342
  msgid "Member record added successfully."
343
  msgstr ""
344
 
345
+ #: classes/class.swpm-admin-registration.php:87
346
+ #: classes/class.swpm-admin-registration.php:149
347
+ #: classes/class.swpm-admin-registration.php:187
348
  #: classes/class.swpm-membership-level.php:73
349
  #: classes/class.swpm-membership-level.php:105
350
  msgid "Please correct the following:"
351
  msgstr ""
352
 
353
+ #: classes/class.swpm-admin-registration.php:100
354
  msgid "Error! Nonce verification failed for user edit from admin end."
355
  msgstr ""
356
 
357
+ #: classes/class.swpm-admin-registration.php:166
358
  msgid "Your current password"
359
  msgstr ""
360
 
361
+ #: classes/class.swpm-ajax.php:14 classes/class.swpm-ajax.php:34
362
+ #: ipn/swpm-smart-checkout-ipn.php:326
363
+ msgid "Nonce check failed. Please reload the page."
364
+ msgstr ""
365
+
366
+ #: classes/class.swpm-ajax.php:18
367
  msgid "Invalid Email Address"
368
  msgstr ""
369
 
370
+ #: classes/class.swpm-ajax.php:25 classes/class.swpm-ajax.php:44
371
  msgid "Already taken"
372
  msgstr ""
373
 
374
+ #: classes/class.swpm-ajax.php:25 classes/class.swpm-ajax.php:45
375
+ msgid "Available"
376
  msgstr ""
377
 
378
+ #: classes/class.swpm-ajax.php:38
379
+ msgid "Name contains invalid character"
380
  msgstr ""
381
 
382
+ #: classes/class.swpm-auth.php:60
383
  msgid ""
384
  "Warning! Simple Membership plugin cannot process this login request to "
385
  "prevent you from getting logged out of WP Admin accidentally."
386
  msgstr ""
387
 
388
+ #: classes/class.swpm-auth.php:61
389
  msgid "Click here"
390
  msgstr ""
391
 
392
+ #: classes/class.swpm-auth.php:61
393
  msgid " to see the profile you are currently logged into in this browser."
394
  msgstr ""
395
 
396
+ #: classes/class.swpm-auth.php:62
397
  msgid ""
398
  "You are logged into the site as an ADMIN user in this browser. First, logout "
399
  "from WP Admin then you will be able to log in as a normal member."
400
  msgstr ""
401
 
402
+ #: classes/class.swpm-auth.php:63
403
  msgid ""
404
  "Alternatively, you can use a different browser (where you are not logged-in "
405
  "as ADMIN) to test the membership login."
406
  msgstr ""
407
 
408
+ #: classes/class.swpm-auth.php:64
409
  msgid ""
410
  "Your normal visitors or members will never see this message. This message is "
411
  "ONLY for ADMIN user."
412
  msgstr ""
413
 
414
+ #: classes/class.swpm-auth.php:71
415
  msgid "Captcha validation failed on login form."
416
  msgstr ""
417
 
418
+ #: classes/class.swpm-auth.php:96
419
  msgid "User Not Found."
420
  msgstr ""
421
 
422
+ #: classes/class.swpm-auth.php:103
423
  msgid "Password Empty or Invalid."
424
  msgstr ""
425
 
426
+ #: classes/class.swpm-auth.php:144
427
  msgid "Account is inactive."
428
  msgstr ""
429
 
430
+ #: classes/class.swpm-auth.php:147 classes/class.swpm-auth.php:176
431
  msgid "Account has expired."
432
  msgstr ""
433
 
434
+ #: classes/class.swpm-auth.php:150
435
  msgid "Account is pending."
436
  msgstr ""
437
 
438
+ #: classes/class.swpm-auth.php:160
439
  #, php-format
440
  msgid ""
441
  "You need to activate your account. If you didn't receive an email then %s to "
442
  "resend the activation email."
443
  msgstr ""
444
 
445
+ #: classes/class.swpm-auth.php:160
446
+ #: classes/class.swpm-front-registration.php:451
447
+ #: classes/class.swpm-front-registration.php:504
448
+ #: classes/class.swpm-utils-misc.php:196
449
  msgid "click here"
450
  msgstr ""
451
 
452
+ #: classes/class.swpm-auth.php:184
453
  msgid "You are logged in as:"
454
  msgstr ""
455
 
456
+ #: classes/class.swpm-auth.php:248
457
  msgid "Logged Out Successfully."
458
  msgstr ""
459
 
460
+ #: classes/class.swpm-auth.php:301
461
  msgid "Session Expired."
462
  msgstr ""
463
 
464
+ #: classes/class.swpm-auth.php:318
465
  msgid "Please login again."
466
  msgstr ""
467
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
468
  #: classes/class.swpm-category-list.php:33
469
  msgid "Category ID"
470
  msgstr ""
485
  msgid "Count"
486
  msgstr ""
487
 
488
+ #: classes/class.swpm-category-list.php:78
489
+ msgid ""
490
+ "Error! Nonce security verification failed for Category Protection Update "
491
+ "action. Clear cache and try again."
492
  msgstr ""
493
 
494
+ #: classes/class.swpm-category-list.php:99
495
+ msgid "Category protection updated!"
496
  msgstr ""
497
 
498
  #: classes/class.swpm-comment-form-related.php:15
509
 
510
  #: classes/class.swpm-form.php:30
511
  msgid ""
512
+ "Wordpress account exists with given username. But the given email doesn't "
513
+ "match."
514
  msgstr ""
515
 
516
  #: classes/class.swpm-form.php:31
522
 
523
  #: classes/class.swpm-form.php:37
524
  msgid ""
525
+ "Wordpress account exists with given email. But the given username doesn't "
526
+ "match."
527
  msgstr ""
528
 
529
  #: classes/class.swpm-form.php:38
545
  msgid "Username already exists."
546
  msgstr ""
547
 
548
+ #: classes/class.swpm-form.php:81
549
  msgid "Password is required"
550
  msgstr ""
551
 
552
+ #: classes/class.swpm-form.php:88
553
  msgid "Password mismatch"
554
  msgstr ""
555
 
556
+ #: classes/class.swpm-form.php:99
557
  msgid "Email is required"
558
  msgstr ""
559
 
560
+ #: classes/class.swpm-form.php:103
561
  msgid "Email is invalid"
562
  msgstr ""
563
 
564
+ #: classes/class.swpm-form.php:119
565
  msgid "Email is already used."
566
  msgstr ""
567
 
568
+ #: classes/class.swpm-form.php:171
569
  msgid "Member since field is invalid"
570
  msgstr ""
571
 
572
+ #: classes/class.swpm-form.php:182
573
  msgid "Access starts field is invalid"
574
  msgstr ""
575
 
576
+ #: classes/class.swpm-form.php:192
577
  msgid "Gender field is invalid"
578
  msgstr ""
579
 
580
+ #: classes/class.swpm-form.php:203
581
  msgid "Account state field is invalid"
582
  msgstr ""
583
 
584
+ #: classes/class.swpm-form.php:210
585
  msgid "Invalid membership level"
586
  msgstr ""
587
 
588
+ #: classes/class.swpm-front-registration.php:26
589
  msgid ""
590
+ "You are already logged in. You don't need to create another account. So the "
591
+ "registration form is hidden."
592
  msgstr ""
593
 
594
+ #: classes/class.swpm-front-registration.php:59
595
+ #: classes/class.swpm-utils-misc.php:364 views/login.php:38
596
  msgid "Join Us"
597
  msgstr ""
598
 
599
+ #: classes/class.swpm-front-registration.php:61
600
  msgid ""
601
  "Free membership is disabled on this site. Please make a payment from the "
602
  msgstr ""
603
 
604
+ #: classes/class.swpm-front-registration.php:63
605
  msgid " page to pay for a premium membership."
606
  msgstr ""
607
 
608
+ #: classes/class.swpm-front-registration.php:65
609
  msgid ""
610
  "You will receive a unique link via email after the payment. You will be able "
611
  "to use that link to complete the premium membership registration."
612
  msgstr ""
613
 
614
+ #: classes/class.swpm-front-registration.php:95
615
  msgid "Security check: captcha validation failed."
616
  msgstr ""
617
 
618
+ #: classes/class.swpm-front-registration.php:108
619
  msgid "You must accept the terms and conditions."
620
  msgstr ""
621
 
622
+ #: classes/class.swpm-front-registration.php:122
623
  msgid "You must agree to the privacy policy."
624
  msgstr ""
625
 
626
+ #: classes/class.swpm-front-registration.php:163
627
+ msgid ""
628
+ "You need to confirm your email address. Please check your email and follow "
629
+ "instructions to complete your registration."
630
  msgstr ""
631
 
632
+ #: classes/class.swpm-front-registration.php:176
633
  msgid "Registration Successful. "
634
  msgstr ""
635
 
636
+ #: classes/class.swpm-front-registration.php:176
637
+ #: classes/class.swpm-utils-misc.php:363 classes/class.swpm-utils-misc.php:375
638
  msgid "Please"
639
  msgstr ""
640
 
641
+ #: classes/class.swpm-front-registration.php:176
642
+ #: classes/class.swpm-utils-misc.php:363 views/login.php:32
643
  msgid "Login"
644
  msgstr ""
645
 
646
+ #: classes/class.swpm-front-registration.php:195
647
  msgid "Please correct the following"
648
  msgstr ""
649
 
650
+ #: classes/class.swpm-front-registration.php:243
651
  msgid "Membership Level Couldn't be found."
652
  msgstr ""
653
 
654
+ #: classes/class.swpm-front-registration.php:295
655
  msgid "Error! Nonce verification failed for front end profile edit."
656
  msgstr ""
657
 
658
+ #: classes/class.swpm-front-registration.php:303
659
  msgid "Profile updated successfully."
660
  msgstr ""
661
 
662
+ #: classes/class.swpm-front-registration.php:316
663
  msgid ""
664
  "Profile updated successfully. You will need to re-login since you changed "
665
  "your password."
666
  msgstr ""
667
 
668
+ #: classes/class.swpm-front-registration.php:344
669
  msgid "Please correct the following."
670
  msgstr ""
671
 
672
+ #: classes/class.swpm-front-registration.php:360
673
  msgid "Captcha validation failed."
674
  msgstr ""
675
 
676
+ #: classes/class.swpm-front-registration.php:371
677
  msgid "Email address not valid."
678
  msgstr ""
679
 
680
+ #: classes/class.swpm-front-registration.php:385
681
  msgid "No user found with that email address."
682
  msgstr ""
683
 
684
+ #: classes/class.swpm-front-registration.php:386
685
+ #: classes/class.swpm-front-registration.php:418
686
  msgid "Email Address: "
687
  msgstr ""
688
 
689
+ #: classes/class.swpm-front-registration.php:417
690
  msgid "New password has been sent to your email address."
691
  msgstr ""
692
 
693
+ #: classes/class.swpm-front-registration.php:446
694
  msgid "Can't find member account."
695
  msgstr ""
696
 
697
+ #: classes/class.swpm-front-registration.php:451
698
+ #: classes/class.swpm-front-registration.php:504
699
  msgid "Account already active. "
700
  msgstr ""
701
 
702
+ #: classes/class.swpm-front-registration.php:451
703
+ #: classes/class.swpm-front-registration.php:504
704
  msgid " to login."
705
  msgstr ""
706
 
707
+ #: classes/class.swpm-front-registration.php:458
708
  msgid ""
709
  "Activation code mismatch. Cannot activate this account. Please contact the "
710
  "site admin."
711
  msgstr ""
712
 
713
+ #: classes/class.swpm-front-registration.php:472
714
  msgid "Success! Your account has been activated successfully."
715
  msgstr ""
716
 
717
+ #: classes/class.swpm-front-registration.php:499
718
  msgid "Cannot find member account."
719
  msgstr ""
720
 
721
+ #: classes/class.swpm-front-registration.php:521
722
  msgid ""
723
  "Activation email has been sent. Please check your email and activate your "
724
  "account."
725
  msgstr ""
726
 
727
+ #: classes/class.swpm-init-time-tasks.php:137
728
  msgid "Sorry, Nonce verification failed."
729
  msgstr ""
730
 
731
+ #: classes/class.swpm-init-time-tasks.php:144
732
  msgid "Sorry, Password didn't match."
733
  msgstr ""
734
 
740
  msgid "Access duration must be > 0."
741
  msgstr ""
742
 
743
+ #: classes/class.swpm-members.php:11
744
  msgid "Member"
745
  msgstr ""
746
 
747
+ #: classes/class.swpm-members.php:21
748
  #: classes/class.swpm-membership-levels.php:20
749
  msgid "ID"
750
  msgstr ""
751
 
752
+ #: classes/class.swpm-members.php:22 views/add.php:18 views/admin_add.php:12
753
  #: views/admin_edit.php:19 views/edit.php:23
 
754
  msgid "Username"
755
  msgstr ""
756
 
757
+ #: classes/class.swpm-members.php:25 views/add.php:22 views/edit.php:27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
758
  msgid "Email"
759
  msgstr ""
760
 
761
+ #: classes/class.swpm-members.php:27 views/admin_member_form_common_part.php:11
762
  msgid "Access Starts"
763
  msgstr ""
764
 
765
+ #: classes/class.swpm-members.php:28 views/admin_members_list.php:45
766
  msgid "Account State"
767
  msgstr ""
768
 
769
+ #: classes/class.swpm-members.php:29
770
  msgid "Last Login Date"
771
  msgstr ""
772
 
773
+ #: classes/class.swpm-members.php:50
 
 
 
 
 
 
 
774
  msgid "Set Status to Active"
775
  msgstr ""
776
 
777
+ #: classes/class.swpm-members.php:51
778
  msgid "Set Status to Active and Notify"
779
  msgstr ""
780
 
781
+ #: classes/class.swpm-members.php:52
782
  msgid "Set Status to Inactive"
783
  msgstr ""
784
 
785
+ #: classes/class.swpm-members.php:53
786
  msgid "Set Status to Pending"
787
  msgstr ""
788
 
789
+ #: classes/class.swpm-members.php:54
790
  msgid "Set Status to Expired"
791
  msgstr ""
792
 
793
+ #: classes/class.swpm-members.php:80
794
  msgid "incomplete"
795
  msgstr ""
796
 
797
+ #: classes/class.swpm-members.php:221
798
  msgid "No member found."
799
  msgstr ""
800
 
801
+ #: classes/class.swpm-members.php:376
802
  msgid "Error! Nonce verification failed for user delete from admin end."
803
  msgstr ""
804
 
805
+ #: classes/class.swpm-members.php:522
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
806
  msgid ""
807
+ "Error! Nonce security verification failed for Bulk Change Membership Level "
808
+ "action. Clear cache and try again."
 
 
809
  msgstr ""
810
 
811
+ #: classes/class.swpm-members.php:530 classes/class.swpm-members.php:567
812
+ msgid "Error! Please select a membership level first."
 
 
813
  msgstr ""
814
 
815
+ #: classes/class.swpm-members.php:547
816
+ msgid "Membership level change operation completed successfully."
817
  msgstr ""
818
 
819
+ #: classes/class.swpm-members.php:559
820
  msgid ""
821
+ "Error! Nonce security verification failed for Bulk Change Access Starts Date "
822
+ "action. Clear cache and try again."
 
 
 
 
823
  msgstr ""
824
 
825
+ #: classes/class.swpm-members.php:584
826
+ msgid "Access starts date change operation successfully completed."
827
  msgstr ""
828
 
829
+ #: classes/class.swpm-members.php:713
830
  msgid "Simple WP Membership::Members"
831
  msgstr ""
832
 
833
+ #: classes/class.swpm-members.php:714 views/admin_members_list.php:69
 
834
  msgid "Add New"
835
  msgstr ""
836
 
837
+ #: classes/class.swpm-members.php:719 views/admin_add.php:7
838
  msgid "Add Member"
839
  msgstr ""
840
 
841
+ #: classes/class.swpm-members.php:720
842
  msgid "Bulk Operation"
843
  msgstr ""
844
 
869
  msgid "Access Valid For/Until"
870
  msgstr ""
871
 
872
+ #: classes/class.swpm-membership-levels.php:199
 
 
 
 
873
  msgid ""
874
  "Error! Nonce verification failed for membership level delete from admin end."
875
  msgstr ""
876
 
877
+ #: classes/class.swpm-membership-levels.php:218 views/admin_members_list.php:56
878
+ #: views/payments/admin_all_payment_transactions.php:16
 
879
  msgid "Search"
880
  msgstr ""
881
 
882
+ #: classes/class.swpm-membership-levels.php:265
883
  msgid "Simple WP Membership::Membership Levels"
884
  msgstr ""
885
 
886
+ #: classes/class.swpm-membership-levels.php:270
887
  msgid "Add Level"
888
  msgstr ""
889
 
890
+ #: classes/class.swpm-membership-levels.php:271
891
  msgid "Manage Content Protection"
892
  msgstr ""
893
 
894
+ #: classes/class.swpm-membership-levels.php:272
895
  msgid "Category Protection"
896
  msgstr ""
897
 
898
+ #: classes/class.swpm-membership-levels.php:273
899
  msgid "Post and Page Protection"
900
  msgstr ""
901
 
 
 
 
 
 
 
902
  #: classes/class.swpm-post-list.php:44 classes/class.swpm-post-list.php:53
903
  #: classes/class.swpm-post-list.php:63
904
  msgid "Title"
922
  msgid "Type"
923
  msgstr ""
924
 
925
+ #: classes/class.swpm-post-list.php:109
926
+ msgid ""
927
+ "Error! Nonce security verification failed for Post Protection Update action. "
928
+ "Clear cache and try again."
929
  msgstr ""
930
 
931
+ #: classes/class.swpm-post-list.php:132
932
+ msgid "Protection settings updated!"
933
  msgstr ""
934
 
935
  #: classes/class.swpm-protection.php:22
942
  msgid "category protection menu"
943
  msgstr ""
944
 
945
+ #: classes/class.swpm-settings.php:25 classes/class.swpm-settings.php:53
946
  msgid "General Settings"
947
  msgstr ""
948
 
949
+ #: classes/class.swpm-settings.php:26
950
  msgid "Payment Settings"
951
  msgstr ""
952
 
953
+ #: classes/class.swpm-settings.php:27
954
  msgid "Email Settings"
955
  msgstr ""
956
 
957
+ #: classes/class.swpm-settings.php:28
958
  msgid "Tools"
959
  msgstr ""
960
 
961
+ #: classes/class.swpm-settings.php:29 classes/class.swpm-settings.php:569
962
  msgid "Advanced Settings"
963
  msgstr ""
964
 
965
+ #: classes/class.swpm-settings.php:30
966
  msgid "Addons Settings"
967
  msgstr ""
968
 
969
+ #: classes/class.swpm-settings.php:52
970
  msgid "Plugin Documentation"
971
  msgstr ""
972
 
973
+ #: classes/class.swpm-settings.php:56
974
  msgid "Enable Free Membership"
975
  msgstr ""
976
 
977
+ #: classes/class.swpm-settings.php:62
978
  msgid ""
979
  "Enable/disable registration for free membership level. When you enable this "
980
  "option, make sure to specify a free membership level ID in the field below."
981
  msgstr ""
982
 
983
+ #: classes/class.swpm-settings.php:67
984
  msgid "Free Membership Level ID"
985
  msgstr ""
986
 
987
+ #: classes/class.swpm-settings.php:73
988
  msgid "Assign free membership level ID"
989
  msgstr ""
990
 
991
+ #: classes/class.swpm-settings.php:78
992
  msgid "Enable More Tag Protection"
993
  msgstr ""
994
 
995
+ #: classes/class.swpm-settings.php:84
996
  msgid ""
997
  "Enables or disables \"more\" tag protection in the posts and pages. Anything "
998
  "after the More tag is protected. Anything before the more tag is teaser "
999
  "content."
1000
  msgstr ""
1001
 
1002
+ #: classes/class.swpm-settings.php:89
1003
  msgid "Hide Adminbar"
1004
  msgstr ""
1005
 
1006
+ #: classes/class.swpm-settings.php:95
1007
  msgid ""
1008
  "WordPress shows an admin toolbar to the logged in users of the site. Check "
1009
  "this if you want to hide that admin toolbar in the frontend of your site."
1010
  msgstr ""
1011
 
1012
+ #: classes/class.swpm-settings.php:100
1013
  msgid "Show Adminbar to Admin"
1014
  msgstr ""
1015
 
1016
+ #: classes/class.swpm-settings.php:106
1017
  msgid ""
1018
  "Use this option if you want to show the admin toolbar to admin users only. "
1019
  "The admin toolbar will be hidden for all other users."
1020
  msgstr ""
1021
 
1022
+ #: classes/class.swpm-settings.php:111
1023
  msgid "Disable Access to WP Dashboard"
1024
  msgstr ""
1025
 
1026
+ #: classes/class.swpm-settings.php:117
1027
  msgid ""
1028
  "WordPress allows a standard wp user to be able to go to the wp-admin URL and "
1029
+ "access his profile from the wp dashboard. Using this option will prevent any "
1030
+ "non-admin users from going to the wp dashboard."
1031
  msgstr ""
1032
 
1033
+ #: classes/class.swpm-settings.php:123 classes/class.swpm-settings.php:761
1034
  msgid "Default Account Status"
1035
  msgstr ""
1036
 
1037
+ #: classes/class.swpm-settings.php:131
1038
  msgid ""
1039
  "Select the default account status for newly registered users. If you want to "
1040
  "manually approve the members then you can set the status to \"Pending\"."
1041
  msgstr ""
1042
 
1043
+ #: classes/class.swpm-settings.php:137
1044
  msgid "Members Must be Logged in to Comment"
1045
  msgstr ""
1046
 
1047
+ #: classes/class.swpm-settings.php:143
1048
  msgid ""
1049
  "Enable this option if you only want the members of the site to be able to "
1050
  "post a comment."
1051
  msgstr ""
1052
 
1053
+ #: classes/class.swpm-settings.php:154
1054
  msgid "Pages Settings"
1055
  msgstr ""
1056
 
1057
+ #: classes/class.swpm-settings.php:157
1058
  msgid "Login Page URL"
1059
  msgstr ""
1060
 
1061
+ #: classes/class.swpm-settings.php:168
1062
  msgid "Registration Page URL"
1063
  msgstr ""
1064
 
1065
+ #: classes/class.swpm-settings.php:179
1066
  msgid "Join Us Page URL"
1067
  msgstr ""
1068
 
1069
+ #: classes/class.swpm-settings.php:190
1070
  msgid "Edit Profile Page URL"
1071
  msgstr ""
1072
 
1073
+ #: classes/class.swpm-settings.php:201
1074
  msgid "Password Reset Page URL"
1075
  msgstr ""
1076
 
1077
+ #: classes/class.swpm-settings.php:211
1078
  msgid "Test & Debug Settings"
1079
  msgstr ""
1080
 
1081
+ #: classes/class.swpm-settings.php:213
1082
  msgid "Check this option to enable debug logging."
1083
  msgstr ""
1084
 
1085
+ #: classes/class.swpm-settings.php:214
1086
  msgid ""
1087
  " This can be useful when troubleshooting an issue. Turn it off and reset the "
1088
  "log files after the troubleshooting is complete."
1089
  msgstr ""
1090
 
1091
+ #: classes/class.swpm-settings.php:216
1092
  msgid "View general debug log file by clicking "
1093
  msgstr ""
1094
 
1095
+ #: classes/class.swpm-settings.php:216 classes/class.swpm-settings.php:217
1096
+ #: classes/class.swpm-settings.php:218
1097
  msgid "here"
1098
  msgstr ""
1099
 
1100
+ #: classes/class.swpm-settings.php:217
1101
  msgid "View login related debug log file by clicking "
1102
  msgstr ""
1103
 
1104
+ #: classes/class.swpm-settings.php:218
1105
  msgid "Reset debug log files by clicking "
1106
  msgstr ""
1107
 
1108
+ #: classes/class.swpm-settings.php:221
1109
  msgid "Enable Debug"
1110
  msgstr ""
1111
 
1112
+ #: classes/class.swpm-settings.php:232
1113
  msgid "Enable Sandbox Testing"
1114
  msgstr ""
1115
 
1116
+ #: classes/class.swpm-settings.php:238
1117
  msgid "Enable this option if you want to do sandbox payment testing."
1118
  msgstr ""
1119
 
1120
+ #: classes/class.swpm-settings.php:246
1121
+ msgid "Stripe Global Settings"
1122
+ msgstr ""
1123
+
1124
+ #: classes/class.swpm-settings.php:249
1125
+ msgid "Pre-fill Member Email Address"
1126
+ msgstr ""
1127
+
1128
+ #: classes/class.swpm-settings.php:255
1129
+ msgid ""
1130
+ "Pre-fills the email address of the logged-in member on the Stripe checkout "
1131
+ "form when possible"
1132
+ msgstr ""
1133
+
1134
+ #: classes/class.swpm-settings.php:260
1135
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:115
1136
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:399
1137
+ #: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:115
1138
+ #: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:381
1139
+ #: views/payments/payment-gateway/admin_stripe_sca_subscription_button.php:156
1140
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:148
1141
+ msgid "Test Publishable Key"
1142
+ msgstr ""
1143
+
1144
+ #: classes/class.swpm-settings.php:266
1145
+ msgid "Stripe API Test publishable key"
1146
+ msgstr ""
1147
+
1148
+ #: classes/class.swpm-settings.php:271
1149
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:122
1150
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:406
1151
+ #: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:122
1152
+ #: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:388
1153
+ #: views/payments/payment-gateway/admin_stripe_sca_subscription_button.php:164
1154
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:156
1155
+ msgid "Test Secret Key"
1156
+ msgstr ""
1157
+
1158
+ #: classes/class.swpm-settings.php:277
1159
+ msgid "Stripe API Test secret key"
1160
+ msgstr ""
1161
+
1162
+ #: classes/class.swpm-settings.php:282
1163
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:129
1164
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:413
1165
+ #: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:129
1166
+ #: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:395
1167
+ #: views/payments/payment-gateway/admin_stripe_sca_subscription_button.php:172
1168
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:164
1169
+ msgid "Live Publishable Key"
1170
+ msgstr ""
1171
+
1172
+ #: classes/class.swpm-settings.php:288
1173
+ msgid "Stripe API Live publishable key"
1174
+ msgstr ""
1175
+
1176
+ #: classes/class.swpm-settings.php:293
1177
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:136
1178
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:420
1179
+ #: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:136
1180
+ #: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:402
1181
+ #: views/payments/payment-gateway/admin_stripe_sca_subscription_button.php:180
1182
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:172
1183
+ msgid "Live Secret Key"
1184
+ msgstr ""
1185
+
1186
+ #: classes/class.swpm-settings.php:299
1187
+ msgid "Stripe API Live secret key"
1188
+ msgstr ""
1189
+
1190
+ #: classes/class.swpm-settings.php:309
1191
  msgid "Email Settings Overview"
1192
  msgstr ""
1193
 
1194
+ #: classes/class.swpm-settings.php:310
1195
  msgid "Email Misc. Settings"
1196
  msgstr ""
1197
 
1198
+ #: classes/class.swpm-settings.php:314
1199
  msgid "From Email Address"
1200
  msgstr ""
1201
 
1202
+ #: classes/class.swpm-settings.php:326
1203
+ msgid "Allow HTML in Emails"
1204
+ msgstr ""
1205
+
1206
+ #: classes/class.swpm-settings.php:337
1207
  msgid "Email Settings (Prompt to Complete Registration )"
1208
  msgstr ""
1209
 
1210
+ #: classes/class.swpm-settings.php:340 classes/class.swpm-settings.php:371
1211
+ #: classes/class.swpm-settings.php:452 classes/class.swpm-settings.php:477
1212
+ #: classes/class.swpm-settings.php:513 classes/class.swpm-settings.php:538
1213
  msgid "Email Subject"
1214
  msgstr ""
1215
 
1216
+ #: classes/class.swpm-settings.php:351 classes/class.swpm-settings.php:382
1217
+ #: classes/class.swpm-settings.php:463 classes/class.swpm-settings.php:488
1218
+ #: classes/class.swpm-settings.php:524 classes/class.swpm-settings.php:549
1219
  msgid "Email Body"
1220
  msgstr ""
1221
 
1222
+ #: classes/class.swpm-settings.php:362
1223
  msgid ""
1224
  "Enter the email address where you want the admin notification email to be "
1225
  "sent to."
1226
  msgstr ""
1227
 
1228
+ #: classes/class.swpm-settings.php:363
1229
  msgid ""
1230
  " You can put multiple email addresses separated by comma (,) in the above "
1231
  "field to send the notification to multiple email addresses."
1232
  msgstr ""
1233
 
1234
+ #: classes/class.swpm-settings.php:365
1235
  msgid "Enter the subject for the admin notification email."
1236
  msgstr ""
1237
 
1238
+ #: classes/class.swpm-settings.php:366
1239
  msgid ""
1240
  "This email will be sent to the admin when a new user completes the "
1241
  "membership registration. Only works if you have enabled the \"Send "
1242
  "Notification to Admin\" option above."
1243
  msgstr ""
1244
 
1245
+ #: classes/class.swpm-settings.php:368
1246
  msgid "Email Settings (Registration Complete)"
1247
  msgstr ""
1248
 
1249
+ #: classes/class.swpm-settings.php:393
1250
  msgid "Send Notification to Admin"
1251
  msgstr ""
1252
 
1253
+ #: classes/class.swpm-settings.php:399
1254
  msgid ""
1255
  "Enable this option if you want the admin to receive a notification when a "
1256
  "member registers."
1257
  msgstr ""
1258
 
1259
+ #: classes/class.swpm-settings.php:404
1260
  msgid "Admin Email Address"
1261
  msgstr ""
1262
 
1263
+ #: classes/class.swpm-settings.php:415
1264
  msgid "Admin Notification Email Subject"
1265
  msgstr ""
1266
 
1267
+ #: classes/class.swpm-settings.php:426
1268
  msgid "Admin Notification Email Body"
1269
  msgstr ""
1270
 
1271
+ #: classes/class.swpm-settings.php:438
1272
  msgid "Send Email to Member When Added via Admin Dashboard"
1273
  msgstr ""
1274
 
1275
+ #: classes/class.swpm-settings.php:449
1276
  msgid "Email Settings (Password Reset)"
1277
  msgstr ""
1278
 
1279
+ #: classes/class.swpm-settings.php:474
1280
  msgid " Email Settings (Account Upgrade Notification)"
1281
  msgstr ""
1282
 
1283
+ #: classes/class.swpm-settings.php:499
1284
+ msgid "Disable Email Notification After Upgrade"
1285
+ msgstr ""
1286
+
1287
+ #: classes/class.swpm-settings.php:505
1288
+ msgid ""
1289
+ "You can use this option to disable the email notification that gets sent to "
1290
+ "the members when they make a payment for upgrade or renewal."
1291
+ msgstr ""
1292
+
1293
+ #: classes/class.swpm-settings.php:510
1294
  msgid " Email Settings (Bulk Account Activate Notification)"
1295
  msgstr ""
1296
 
1297
+ #: classes/class.swpm-settings.php:535
1298
  msgid " Email Settings (Email Activation)"
1299
  msgstr ""
1300
 
1301
+ #: classes/class.swpm-settings.php:573
1302
  msgid "Enable Expired Account Login"
1303
  msgstr ""
1304
 
1305
+ #: classes/class.swpm-settings.php:579
1306
  msgid ""
1307
  "When enabled, expired members will be able to log into the system but won't "
1308
  "be able to view any protected content. This allows them to easily renew "
1309
  "their account by making another payment."
1310
  msgstr ""
1311
 
1312
+ #: classes/class.swpm-settings.php:585
1313
  msgid "Membership Renewal URL"
1314
  msgstr ""
1315
 
1316
+ #: classes/class.swpm-settings.php:591
1317
  msgid ""
1318
  "You can create a renewal page for your site. Read <a href=\"https://simple-"
1319
  "membership-plugin.com/creating-membership-renewal-button/\" target=\"_blank"
1320
  "\">this documentation</a> to learn how to create a renewal page."
1321
  msgstr ""
1322
 
1323
+ #: classes/class.swpm-settings.php:597
1324
  msgid "After Registration Redirect URL"
1325
  msgstr ""
1326
 
1327
+ #: classes/class.swpm-settings.php:603
1328
  msgid ""
1329
  "You can enter an URL here to redirect the members to this page after they "
1330
  "submit the registration form. Read <a href=\"https://simple-membership-"
1333
  "redirect."
1334
  msgstr ""
1335
 
1336
+ #: classes/class.swpm-settings.php:609
1337
  msgid "Enable Auto Login After Registration"
1338
  msgstr ""
1339
 
1340
+ #: classes/class.swpm-settings.php:615
1341
  msgid ""
1342
  "Use this option if you want the members to be automatically logged into your "
1343
  "site right after they complete the registration. This option will override "
1347
  "documentation</a> to learn more."
1348
  msgstr ""
1349
 
1350
+ #: classes/class.swpm-settings.php:621
1351
+ msgid "Hide Registration Form to Logged Users"
1352
+ msgstr ""
1353
+
1354
+ #: classes/class.swpm-settings.php:627
1355
+ msgid ""
1356
+ "Use this option if you want to hide the registration form to the logged-in "
1357
+ "members. If logged-in members visit the registration page, they will see a "
1358
+ "message instead of the registration form."
1359
+ msgstr ""
1360
+
1361
+ #: classes/class.swpm-settings.php:633
1362
  msgid "After Logout Redirect URL"
1363
  msgstr ""
1364
 
1365
+ #: classes/class.swpm-settings.php:639
1366
  msgid ""
1367
  "You can enter an URL here to redirect the members to this page after they "
1368
  "click the logout link to logout from your site."
1369
  msgstr ""
1370
 
1371
+ #: classes/class.swpm-settings.php:645
1372
  msgid "Logout Member on Browser Close"
1373
  msgstr ""
1374
 
1375
+ #: classes/class.swpm-settings.php:651
1376
  msgid ""
1377
  "Enable this option if you want the member to be logged out of the account "
1378
  "when he closes the browser."
1379
  msgstr ""
1380
 
1381
+ #: classes/class.swpm-settings.php:657
1382
  msgid "Allow Account Deletion"
1383
  msgstr ""
1384
 
1385
+ #: classes/class.swpm-settings.php:663
1386
  msgid "Allow users to delete their accounts."
1387
  msgstr ""
1388
 
1389
+ #: classes/class.swpm-settings.php:669
1390
  msgid "Force Strong Password for Members"
1391
  msgstr ""
1392
 
1393
+ #: classes/class.swpm-settings.php:675
1394
  msgid ""
1395
  "Enable this if you want the users to be forced to use a strong password for "
1396
  "their accounts."
1397
  msgstr ""
1398
 
1399
+ #: classes/class.swpm-settings.php:681
 
 
 
 
 
 
 
 
 
 
1400
  msgid "Auto Delete Pending Account"
1401
  msgstr ""
1402
 
1403
+ #: classes/class.swpm-settings.php:693
1404
  msgid "Select how long you want to keep \"pending\" account."
1405
  msgstr ""
1406
 
1407
+ #: classes/class.swpm-settings.php:699
1408
  msgid "Admin Dashboard Access Permission"
1409
  msgstr ""
1410
 
1411
+ #: classes/class.swpm-settings.php:712
1412
  msgid ""
1413
  "SWPM admin dashboard is accessible to admin users only (just like any other "
1414
+ "plugin). You can allow users with other WP user roles to access the SWPM "
1415
+ "admin dashboard by selecting a value here. Note that this option cannot work "
1416
+ "if you enabled the \"Disable Access to WP Dashboard\" option in General "
1417
+ "Settings."
1418
  msgstr ""
1419
 
1420
+ #: classes/class.swpm-settings.php:718
1421
  msgid "Force WP User Synchronization"
1422
  msgstr ""
1423
 
1424
+ #: classes/class.swpm-settings.php:724
1425
  msgid ""
1426
  "Enable this option if you want to force the member login to be synchronized "
1427
  "with WP user account. This can be useful if you are using another plugin "
1428
  "that uses WP user records. For example: bbPress plugin."
1429
  msgstr ""
1430
 
1431
+ #: classes/class.swpm-settings.php:729
1432
  msgid "Create Member Accounts for New WP Users"
1433
  msgstr ""
1434
 
1435
+ #: classes/class.swpm-settings.php:733
1436
  msgid "Enable Auto Create Member Accounts"
1437
  msgstr ""
1438
 
1439
+ #: classes/class.swpm-settings.php:739
1440
  msgid ""
1441
  "Enable this option to automatically create member accounts for any new WP "
1442
  "user that is created by another plugin."
1443
  msgstr ""
1444
 
1445
+ #: classes/class.swpm-settings.php:746
1446
  msgid "Default Membership Level"
1447
  msgstr ""
1448
 
1449
+ #: classes/class.swpm-settings.php:754
1450
  msgid ""
1451
  "When automatically creating a member account using this feature, the "
1452
  "membership level of the user will be set to the one you specify here."
1453
  msgstr ""
1454
 
1455
+ #: classes/class.swpm-settings.php:769
1456
  msgid ""
1457
  "When automatically creating a member account using this feature, the "
1458
  "membership account status of the user will be set to the one you specify "
1459
  "here."
1460
  msgstr ""
1461
 
1462
+ #: classes/class.swpm-settings.php:775
1463
  msgid "Payment Notification Forward URL"
1464
  msgstr ""
1465
 
1466
+ #: classes/class.swpm-settings.php:781
1467
  msgid ""
1468
  "You can enter an URL here to forward the payment notification after the "
1469
  "membership payment has been processed by this plugin. Useful if you want to "
1471
  "processing."
1472
  msgstr ""
1473
 
1474
+ #: classes/class.swpm-settings.php:786 views/add.php:68
1475
  msgid "Terms and Conditions"
1476
  msgstr ""
1477
 
1478
+ #: classes/class.swpm-settings.php:790
1479
  msgid "Enable Terms and Conditions"
1480
  msgstr ""
1481
 
1482
+ #: classes/class.swpm-settings.php:796
1483
  msgid "Users must accept the terms before they can complete the registration."
1484
  msgstr ""
1485
 
1486
+ #: classes/class.swpm-settings.php:801
1487
  msgid "Terms and Conditions Page URL"
1488
  msgstr ""
1489
 
1490
+ #: classes/class.swpm-settings.php:807
1491
  msgid ""
1492
  "Enter the URL of your terms and conditions page. You can create a WordPress "
1493
  "page and specify your terms in there then specify the URL of that page in "
1494
  "the above field."
1495
  msgstr ""
1496
 
1497
+ #: classes/class.swpm-settings.php:812
1498
  msgid "Enable Privacy Policy"
1499
  msgstr ""
1500
 
1501
+ #: classes/class.swpm-settings.php:818
1502
  msgid "Users must accept it before they can complete the registration."
1503
  msgstr ""
1504
 
1505
+ #: classes/class.swpm-settings.php:823
1506
  msgid "Privacy Policy Page URL"
1507
  msgstr ""
1508
 
1509
+ #: classes/class.swpm-settings.php:829
1510
  msgid "Enter the URL of your privacy policy page."
1511
  msgstr ""
1512
 
1513
+ #: classes/class.swpm-settings.php:927
1514
+ #, php-format
1515
+ msgid "Visit the %s to read setup and configuration documentation."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1516
  msgstr ""
1517
 
1518
+ #: classes/class.swpm-settings.php:927
1519
+ msgid "Simple Membership Plugin Site"
 
 
1520
  msgstr ""
1521
 
1522
+ #: classes/class.swpm-settings.php:928
1523
+ #, php-format
1524
+ msgid "Please %s if you like the plugin."
 
1525
  msgstr ""
1526
 
1527
+ #: classes/class.swpm-settings.php:928
1528
+ msgid "give us a rating"
 
 
1529
  msgstr ""
1530
 
1531
+ #: classes/class.swpm-settings.php:945 classes/class.swpm-settings.php:991
1532
+ #: classes/class.swpm-settings.php:1019
1533
+ msgid "Settings updated!"
1534
  msgstr ""
1535
 
1536
+ #: classes/class.swpm-settings.php:980 views/admin_tools_settings.php:82
1537
+ msgid "This documentation"
 
 
 
 
1538
  msgstr ""
1539
 
1540
+ #: classes/class.swpm-settings.php:1034
1541
  msgid ""
1542
+ "Note: You cannot enable both the \"Disable Access to WP Dashboard\" and "
1543
+ "\"Admin Dashboard Access Permission\" options at the same time. Only use one "
1544
+ "of those options."
1545
  msgstr ""
1546
 
1547
+ #: classes/class.swpm-settings.php:1200
1548
  msgid "Simple WP Membership::Settings"
1549
  msgstr ""
1550
 
1552
  #: classes/class.swpm-utils-member.php:44
1553
  #: classes/class.swpm-utils-member.php:52
1554
  #: classes/class.swpm-utils-member.php:62
1555
+ #: classes/class.swpm-utils-member.php:68
1556
  msgid "User is not logged in."
1557
  msgstr ""
1558
 
1559
+ #: classes/class.swpm-utils-member.php:88
1560
  msgid "No Expiry"
1561
  msgstr ""
1562
 
1563
+ #: classes/class.swpm-utils-misc.php:57
1564
  msgid "Registration"
1565
  msgstr ""
1566
 
1567
+ #: classes/class.swpm-utils-misc.php:85
1568
  msgid "Member Login"
1569
  msgstr ""
1570
 
1571
+ #: classes/class.swpm-utils-misc.php:113
1572
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:135
1573
  msgid "Profile"
1574
  msgstr ""
1575
 
1576
+ #: classes/class.swpm-utils-misc.php:141
1577
  msgid "Password Reset"
1578
  msgstr ""
1579
 
1580
+ #: classes/class.swpm-utils-misc.php:195
1581
  #, php-format
1582
  msgid ""
1583
  "You will be automatically redirected in a few seconds. If not, please %s."
1584
  msgstr ""
1585
 
1586
+ #: classes/class.swpm-utils-misc.php:199
1587
  msgid "Action Status"
1588
  msgstr ""
1589
 
1590
+ #: classes/class.swpm-utils-misc.php:364
1591
  msgid "Not a Member?"
1592
  msgstr ""
1593
 
1594
+ #: classes/class.swpm-utils-misc.php:375
1595
  msgid "renew"
1596
  msgstr ""
1597
 
1598
+ #: classes/class.swpm-utils-misc.php:375
1599
  msgid " your account to gain access to this content."
1600
  msgstr ""
1601
 
1602
+ #: classes/class.swpm-utils-misc.php:433 classes/class.swpm-utils-misc.php:439
1603
  msgid "Error! This action ("
1604
  msgstr ""
1605
 
1606
+ #: classes/class.swpm-utils-misc.php:680
1607
  msgid "(Please Select)"
1608
  msgstr ""
1609
 
1610
+ #: classes/class.swpm-utils-misc.php:696
1611
+ msgid "PayPal Buy Now"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1612
  msgstr ""
1613
 
1614
+ #: classes/class.swpm-utils-misc.php:697
1615
+ msgid "PayPal Subscription"
1616
  msgstr ""
1617
 
1618
+ #: classes/class.swpm-utils-misc.php:698
1619
+ msgid "PayPal Smart Checkout"
1620
  msgstr ""
1621
 
1622
+ #: classes/class.swpm-utils-misc.php:699
1623
+ msgid "Stripe Buy Now"
1624
  msgstr ""
1625
 
1626
+ #: classes/class.swpm-utils-misc.php:700
1627
+ msgid "Stripe Subscription"
1628
  msgstr ""
1629
 
1630
+ #: classes/class.swpm-utils-misc.php:701
1631
+ msgid "Stripe SCA Buy Now"
1632
  msgstr ""
1633
 
1634
+ #: classes/class.swpm-utils-misc.php:702
1635
+ msgid "Stripe SCA Subscription"
1636
  msgstr ""
1637
 
1638
+ #: classes/class.swpm-utils-misc.php:703
1639
+ msgid "Braintree Buy Now"
1640
  msgstr ""
1641
 
1642
+ #: classes/class.swpm-utils-template.php:38
1643
+ msgid "Error! Failed to find a template path for the specified template: "
1644
  msgstr ""
1645
 
1646
+ #: classes/class.swpm-utils.php:111
1647
+ msgid "Never"
1648
  msgstr ""
1649
 
1650
+ #: classes/class.swpm-utils.php:119
1651
+ msgid "Male"
1652
  msgstr ""
1653
 
1654
+ #: classes/class.swpm-utils.php:120
1655
+ msgid "Female"
1656
  msgstr ""
1657
 
1658
+ #: classes/class.swpm-utils.php:121
1659
+ msgid "Not Specified"
 
 
1660
  msgstr ""
1661
 
1662
+ #: classes/class.swpm-utils.php:126 views/admin_members_list.php:33
1663
+ msgid "Active"
1664
  msgstr ""
1665
 
1666
+ #: classes/class.swpm-utils.php:127 views/admin_members_list.php:34
1667
+ msgid "Inactive"
1668
  msgstr ""
1669
 
1670
+ #: classes/class.swpm-utils.php:128 views/admin_members_list.php:35
1671
+ msgid "Activation Required"
1672
  msgstr ""
1673
 
1674
+ #: classes/class.swpm-utils.php:129 views/admin_members_list.php:36
1675
+ msgid "Pending"
 
1676
  msgstr ""
1677
 
1678
+ #: classes/class.swpm-utils.php:130 views/admin_members_list.php:38
1679
+ msgid "Expired"
 
1680
  msgstr ""
1681
 
1682
+ #: classes/class.swpm-utils.php:481 views/account_delete_warning.php:3
1683
+ msgid "Delete Account"
1684
  msgstr ""
1685
 
1686
+ #: classes/class.swpm-wp-loaded-tasks.php:118
1687
+ msgid ""
1688
+ "You will be redirected to the previous page in a few seconds. If not, please "
1689
+ "<a href=\"\">click here</a>."
1690
  msgstr ""
1691
 
1692
+ #: classes/class.swpm-wp-loaded-tasks.php:121
1693
+ msgid "Success!"
1694
  msgstr ""
1695
 
1696
+ #: classes/class.swpm-wp-loaded-tasks.php:129
1697
+ msgid "No token provided."
1698
  msgstr ""
1699
 
1700
+ #: classes/class.swpm-wp-loaded-tasks.php:136
1701
+ msgid "Nonce check failed."
1702
  msgstr ""
1703
 
1704
+ #: classes/class.swpm-wp-loaded-tasks.php:161
1705
+ msgid "Subscription has been cancelled."
1706
  msgstr ""
1707
 
1708
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:70
1709
  msgid "Your membership profile will be updated to reflect the payment."
1710
  msgstr ""
1711
 
1712
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:71
1713
  msgid "Your profile username: "
1714
  msgstr ""
1715
 
1716
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:89
1717
  msgid "Click on the following link to complete the registration."
1718
  msgstr ""
1719
 
1720
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:90
1721
  msgid "Click here to complete your paid registration"
1722
  msgstr ""
1723
 
1724
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:95
1725
  msgid ""
1726
  "If you have just made a membership payment then your payment is yet to be "
1727
  "processed. Please check back in a few minutes. An email will be sent to you "
1728
  "with the details shortly."
1729
  msgstr ""
1730
 
1731
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:109
1732
  msgid "Expiry: "
1733
  msgstr ""
1734
 
1735
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:111
1736
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:156
1737
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:238
1738
  msgid "You are not logged-in as a member"
1739
  msgstr ""
1740
 
1741
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:133
1742
  msgid "Logged in as: "
1743
  msgstr ""
1744
 
1745
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:136
1746
  #: views/loggedin.php:31
1747
  msgid "Logout"
1748
  msgstr ""
1749
 
1750
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:139
1751
  msgid "Login Here"
1752
  msgstr ""
1753
 
1754
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:140
1755
  msgid "Not a member? "
1756
  msgstr ""
1757
 
1758
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:141
1759
  msgid "Join Now"
1760
  msgstr ""
1761
 
1762
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:218
1763
+ msgid "Unsubscribe from PayPal"
1764
+ msgstr ""
1765
+
1766
+ #. translators: %1$d is error code; %2$s is error message.
1767
+ #: ipn/swpm-smart-checkout-ipn.php:264 ipn/swpm-smart-checkout-ipn.php:291
1768
  #, php-format
1769
+ msgid ""
1770
+ "Error occured during payment verification. Error code: %1$d. Message: %2$s"
1771
  msgstr ""
1772
 
1773
+ #. translators: %1$s is expected amount, %2$s is expected currency.
1774
+ #: ipn/swpm-smart-checkout-ipn.php:305
1775
  #, php-format
1776
  msgid ""
1777
+ "Payment check failed: invalid amount received. Expected %1$s %2$s, got %3$s "
1778
+ "%4$s."
1779
  msgstr ""
1780
 
1781
+ #: ipn/swpm-smart-checkout-ipn.php:341
1782
  msgid "Empty payment data received."
1783
  msgstr ""
1784
 
1785
+ #: ipn/swpm-smart-checkout-ipn.php:400
1786
+ msgid "IPN product validation failed. Check the debug log for more details."
1787
  msgstr ""
1788
 
1789
  #: views/account_delete_warning.php:7
1793
  msgstr ""
1794
 
1795
  #: views/account_delete_warning.php:8
1796
+ msgid "It will also delete the associated WordPress user account."
1797
  msgstr ""
1798
 
1799
  #: views/account_delete_warning.php:9
1814
  msgid "Confirm Account Deletion"
1815
  msgstr ""
1816
 
1817
+ #: views/add.php:26 views/admin_add.php:20 views/admin_edit.php:44
1818
+ #: views/edit.php:31 views/login.php:19
1819
  msgid "Password"
1820
  msgstr ""
1821
 
1822
+ #: views/add.php:30 views/edit.php:35
1823
  msgid "Repeat Password"
1824
  msgstr ""
1825
 
1826
+ #: views/add.php:68
1827
  msgid "I accept the "
1828
  msgstr ""
1829
 
1830
+ #: views/add.php:80
1831
  msgid "I agree to the "
1832
  msgstr ""
1833
 
1834
+ #: views/add.php:80
1835
  msgid "Privacy Policy"
1836
  msgstr ""
1837
 
1838
+ #: views/add.php:91
1839
  msgid "Register"
1840
  msgstr ""
1841
 
1842
+ #: views/admin_add.php:8
1843
  msgid "Create a brand new user and add it to this site."
1844
  msgstr ""
1845
 
1846
+ #: views/admin_add.php:12 views/admin_add.php:16 views/admin_add_level.php:12
1847
  #: views/admin_add_level.php:16 views/admin_add_level.php:20
1848
  #: views/admin_edit.php:19 views/admin_edit.php:40
1849
  #: views/admin_edit_level.php:16 views/admin_edit_level.php:20
1851
  msgid "(required)"
1852
  msgstr ""
1853
 
1854
+ #: views/admin_add.php:16 views/admin_edit.php:40
1855
  msgid "E-mail"
1856
  msgstr ""
1857
 
1858
+ #: views/admin_add.php:20
1859
  msgid "(twice, required)"
1860
  msgstr ""
1861
 
1862
+ #: views/admin_add.php:25 views/admin_edit.php:48
1863
  msgid "Strength indicator"
1864
  msgstr ""
1865
 
1866
+ #: views/admin_add.php:26 views/admin_edit.php:49
1867
  msgid ""
1868
  "Hint: The password should be at least seven characters long. To make it "
1869
  "stronger, use upper and lower case letters, numbers and symbols like ! \" ? "
1870
  "$ % ^ &amp; )."
1871
  msgstr ""
1872
 
1873
+ #: views/admin_add.php:30 views/admin_edit.php:53 views/loggedin.php:10
1874
  msgid "Account Status"
1875
  msgstr ""
1876
 
1877
+ #: views/admin_add.php:40
1878
  msgid "Add New Member "
1879
  msgstr ""
1880
 
 
 
 
 
 
 
 
 
 
 
1881
  #: views/admin_add_level.php:6
1882
  msgid "Add Membership Level"
1883
  msgstr ""
1952
  msgid "Note:"
1953
  msgstr ""
1954
 
1955
+ #: views/admin_add_level.php:45
1956
  msgid ""
1957
+ "If enabled, the member's decryptable password is temporarily stored in the "
1958
  "database until the account is activated."
1959
  msgstr ""
1960
 
1962
  msgid "Add New Membership Level "
1963
  msgstr ""
1964
 
1965
+ #: views/admin_add_ons_page.php:11
1966
  msgid "Simple WP Membership::Add-ons"
1967
  msgstr ""
1968
 
1969
+ #: views/admin_addon_settings.php:3
1970
+ msgid ""
1971
+ "Some of the simple membership plugin's addon settings and options will be "
1972
+ "displayed here (if you have them)"
1973
+ msgstr ""
1974
+
1975
+ #: views/admin_addon_settings.php:9
1976
+ msgid "Save Changes"
1977
+ msgstr ""
1978
+
1979
  #: views/admin_category_list.php:5
1980
  msgid ""
1981
  "First of all, globally protect the category on your site by selecting "
1998
  msgid "category protection documentation"
1999
  msgstr ""
2000
 
2001
+ #: views/admin_category_list.php:11
2002
+ msgid "to learn more."
2003
  msgstr ""
2004
 
2005
+ #: views/admin_category_list.php:21 views/admin_post_list.php:34
2006
  msgid "General Protection"
2007
  msgstr ""
2008
 
 
 
 
 
 
2009
  #: views/admin_edit.php:11
2010
  msgid "Edit Member"
2011
  msgstr ""
2015
  msgstr ""
2016
 
2017
  #: views/admin_edit.php:14
2018
+ msgid " You are currently editing member with member ID: "
2019
  msgstr ""
2020
 
2021
  #: views/admin_edit.php:44
2051
  msgstr ""
2052
 
2053
  #: views/admin_edit.php:79
2054
+ msgid "Expiry Date"
2055
+ msgstr ""
2056
+
2057
+ #: views/admin_edit.php:86
2058
+ msgid ""
2059
+ "This is calculated based on the current membership level assigned to this "
2060
+ "member and the expiry condition that you have set for that membership level."
2061
+ msgstr ""
2062
+
2063
+ #: views/admin_edit.php:91
2064
  msgid "Last Accessed Date"
2065
  msgstr ""
2066
 
2067
+ #: views/admin_edit.php:94 views/admin_edit.php:101
2068
  msgid "This value gets updated when this member logs into your site."
2069
  msgstr ""
2070
 
2071
+ #: views/admin_edit.php:98
2072
  msgid "Last Accessed From IP"
2073
  msgstr ""
2074
 
2075
+ #: views/admin_edit.php:109
2076
  msgid "Save Data"
2077
  msgstr ""
2078
 
2079
+ #: views/admin_edit.php:114
2080
  msgid "Delete User Profile"
2081
  msgstr ""
2082
 
2108
  "the account. Useful for free membership."
2109
  msgstr ""
2110
 
2111
+ #: views/admin_edit_level.php:53
2112
+ msgid ""
2113
+ "If enabled, decryptable member password is temporarily stored in the "
2114
+ "database until the account is activated."
 
 
 
 
 
 
2115
  msgstr ""
2116
 
2117
+ #: views/admin_edit_level.php:60
2118
+ msgid "Save Membership Level "
2119
  msgstr ""
2120
 
2121
  #: views/admin_member_form_common_part.php:23
 
2122
  msgid "Gender"
2123
  msgstr ""
2124
 
2125
  #: views/admin_member_form_common_part.php:30 views/edit.php:47
 
2126
  msgid "Phone"
2127
  msgstr ""
2128
 
2143
  msgstr ""
2144
 
2145
  #: views/admin_member_form_common_part.php:50 views/edit.php:67
 
2146
  msgid "Country"
2147
  msgstr ""
2148
 
2149
  #: views/admin_member_form_common_part.php:54
 
2150
  msgid "Company"
2151
  msgstr ""
2152
 
2153
  #: views/admin_member_form_common_part.php:58
 
2154
  msgid "Member Since"
2155
  msgstr ""
2156
 
2157
+ #: views/admin_members_list.php:32
2158
+ msgid "All"
2159
+ msgstr ""
2160
+
2161
+ #: views/admin_members_list.php:37 views/admin_members_list.php:47
2162
+ msgid "Incomplete"
2163
+ msgstr ""
2164
+
2165
+ #: views/admin_membership_manage.php:19
2166
+ msgid "Example Content Protection Settings"
2167
+ msgstr ""
2168
+
2169
  #: views/admin_post_list.php:5
2170
  msgid ""
2171
  "First of all, globally protect posts and pages on your site by selecting "
2188
  msgid " to learn how to use it."
2189
  msgstr ""
2190
 
 
 
 
 
 
 
 
 
 
 
 
 
2191
  #: views/admin_tools_settings.php:14
2192
  msgid "The required pages have been re-created."
2193
  msgstr ""
2207
  msgid "Generate Registration Completion Link"
2208
  msgstr ""
2209
 
 
 
 
 
2210
  #: views/admin_tools_settings.php:32
2211
  msgid "OR"
2212
  msgstr ""
2259
  msgid "Company Name"
2260
  msgstr ""
2261
 
2262
+ #: views/edit.php:84
2263
+ msgid "Update"
2264
+ msgstr ""
2265
+
2266
  #: views/forgot_password.php:12
2267
  msgid "Reset Password"
2268
  msgstr ""
2283
  msgid "Edit Profile"
2284
  msgstr ""
2285
 
2286
+ #: views/login.php:26
 
 
 
 
2287
  msgid "Remember Me"
2288
  msgstr ""
2289
 
2290
+ #: views/login.php:35
2291
  msgid "Forgot Password?"
2292
  msgstr ""
2293
 
2294
+ #: views/payments/admin_add_edit_transaction_manually.php:68
2295
+ msgid "Add New Transaction"
 
 
 
 
 
 
 
 
 
2296
  msgstr ""
2297
 
2298
+ #: views/payments/admin_add_edit_transaction_manually.php:99
2299
+ msgid "Member ID"
2300
  msgstr ""
2301
 
2302
+ #: views/payments/admin_add_edit_transaction_manually.php:160
2303
+ msgid "Save Transaction Data"
2304
  msgstr ""
2305
 
2306
+ #: views/payments/admin_all_payment_transactions.php:6
2307
+ msgid "All the payments/transactions of your members are recorded here."
2308
  msgstr ""
2309
 
2310
+ #: views/payments/admin_all_payment_transactions.php:12
2311
+ msgid "Search for a transaction by using email or name"
2312
  msgstr ""
2313
 
2314
+ #: views/payments/admin_all_payment_transactions.php:49
2315
+ msgid "Add a Transaction Manually"
2316
  msgstr ""
2317
 
2318
+ #: views/payments/admin_create_payment_buttons.php:17
2319
+ msgid ""
2320
+ "You can create a new payment button for your memberships using this "
2321
+ "interface."
2322
  msgstr ""
2323
 
2324
+ #: views/payments/admin_create_payment_buttons.php:25
2325
+ msgid "Select Payment Button Type"
2326
  msgstr ""
2327
 
2328
+ #: views/payments/admin_create_payment_buttons.php:58
2329
  msgid "Next"
2330
  msgstr ""
2331
 
2332
+ #: views/payments/admin_edit_payment_buttons.php:17
2333
  msgid "You can edit a payment button using this interface."
2334
  msgstr ""
2335
 
2338
  "All the membership buttons that you created in the plugin are displayed here."
2339
  msgstr ""
2340
 
 
 
 
 
 
 
 
 
 
 
2341
  #: views/payments/admin_payment_settings.php:33
2342
  msgid "PayPal Integration Settings"
2343
  msgstr ""
2359
  msgstr ""
2360
 
2361
  #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:34
2362
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:216
2363
  #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:33
2364
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:304
2365
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:316
2366
+ #: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:298
2367
+ #: views/payments/payment-gateway/admin_stripe_sca_subscription_button.php:92
2368
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:92
2369
  msgid "Button ID"
2370
  msgstr ""
2371
 
2372
  #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:42
2373
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:26
2374
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:224
2375
  #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:41
2376
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:27
2377
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:312
2378
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:36
2379
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:323
2380
+ #: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:36
2381
+ #: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:305
2382
+ #: views/payments/payment-gateway/admin_stripe_sca_subscription_button.php:100
2383
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:100
2384
  msgid "Button Title"
2385
  msgstr ""
2386
 
2387
  #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:60
2388
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:44
2389
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:242
2390
  #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:59
2391
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:54
2392
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:339
2393
+ #: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:54
2394
+ #: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:321
2395
  msgid "Payment Amount"
2396
  msgstr ""
2397
 
2418
  msgstr ""
2419
 
2420
  #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:113
2421
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:145
2422
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:429
2423
+ #: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:145
2424
+ #: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:411
2425
  msgid "The following details are optional."
2426
  msgstr ""
2427
 
2428
  #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:117
2429
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:92
2430
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:290
2431
  #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:204
2432
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:172
2433
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:459
2434
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:158
2435
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:442
2436
+ #: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:158
2437
+ #: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:424
2438
+ #: views/payments/payment-gateway/admin_stripe_sca_subscription_button.php:227
2439
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:219
2440
  msgid "Return URL"
2441
  msgstr ""
2442
 
2443
+ #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:128
2444
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:127
2445
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:325
2446
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:215
2447
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:201
2448
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:488
2449
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:188
2450
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:472
2451
+ #: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:188
2452
+ #: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:454
2453
+ #: views/payments/payment-gateway/admin_stripe_sca_subscription_button.php:248
2454
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:240
2455
  msgid "Save Payment Data"
2456
  msgstr ""
2457
 
2458
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:16
2459
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:207
2460
  msgid "PayPal Buy Now Button Configuration"
2461
  msgstr ""
2462
 
2463
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:52
2464
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:250
2465
  #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:67
2466
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:45
2467
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:330
2468
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:62
2469
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:346
2470
+ #: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:62
2471
+ #: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:328
2472
  msgid "Payment Currency"
2473
  msgstr ""
2474
 
2475
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:100
2476
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:298
2477
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:85
2478
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:370
2479
  msgid "PayPal Email"
2480
  msgstr ""
2481
 
2482
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:108
2483
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:306
2484
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:180
2485
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:467
2486
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:166
2487
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:450
2488
+ #: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:166
2489
+ #: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:432
2490
+ #: views/payments/payment-gateway/admin_stripe_sca_subscription_button.php:235
2491
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:227
2492
  msgid "Button Image URL"
2493
  msgstr ""
2494
 
2495
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:116
2496
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:314
2497
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:188
2498
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:475
2499
  msgid "Custom Checkout Page Logo Image"
2500
  msgstr ""
2501
 
2632
  msgstr ""
2633
 
2634
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:18
2635
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:298
2636
  msgid "PayPal Subscription Button Configuration"
2637
  msgstr ""
2638
 
2639
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:93
2640
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:378
2641
  msgid "Billing Amount Each Cycle"
2642
  msgstr ""
2643
 
2644
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:101
2645
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:386
2646
  msgid "Billing Cycle"
2647
  msgstr ""
2648
 
2649
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:114
2650
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:399
2651
  msgid "Billing Cycle Count"
2652
  msgstr ""
2653
 
2654
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:122
2655
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:407
2656
  msgid "Re-attempt on Failure"
2657
  msgstr ""
2658
 
2659
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:135
2660
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:422
2661
  msgid ""
2662
  "Trial Billing Details (Leave empty if you are not offering a trial period)"
2663
  msgstr ""
2664
 
2665
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:141
2666
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:428
2667
  msgid "Trial Billing Amount"
2668
  msgstr ""
2669
 
2670
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:149
2671
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:436
2672
  msgid "Trial Billing Period"
2673
  msgstr ""
2674
 
2675
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:166
2676
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:453
2677
+ #: views/payments/payment-gateway/admin_stripe_sca_subscription_button.php:213
2678
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:205
2679
  msgid "Optional Details"
2680
  msgstr ""
2681
 
2682
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:26
2683
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:307
2684
+ #: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:289
2685
  msgid "Stripe Buy Now Button Configuration"
2686
  msgstr ""
2687
 
2688
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:102
2689
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:386
2690
+ #: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:102
2691
+ #: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:368
2692
  msgid "Stripe API keys. You can get this from your Stripe account."
2693
  msgstr ""
2694
 
2695
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:107
2696
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:391
2697
+ #: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:107
2698
+ #: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:373
2699
+ #: views/payments/payment-gateway/admin_stripe_sca_subscription_button.php:148
2700
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:140
2701
+ msgid "Use Global API Keys Settings"
 
 
 
2702
  msgstr ""
2703
 
2704
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:110
2705
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:394
2706
+ #: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:110
2707
+ #: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:376
2708
+ #: views/payments/payment-gateway/admin_stripe_sca_subscription_button.php:151
2709
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:143
2710
+ msgid ""
2711
+ "Use API keys from <a href=\"admin.php?"
2712
+ "page=simple_wp_membership_settings&tab=2\" target=\"_blank\">Payment "
2713
+ "Settings</a> tab."
2714
  msgstr ""
2715
 
2716
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:150
2717
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:434
2718
+ #: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:150
2719
+ #: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:416
2720
+ #: views/payments/payment-gateway/admin_stripe_sca_subscription_button.php:219
2721
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:211
2722
+ msgid "Collect Customer Address"
2723
  msgstr ""
2724
 
2725
+ #: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:26
2726
+ msgid "Stripe SCA Buy Now Button Configuration"
 
 
2727
  msgstr ""
2728
 
2729
+ #: views/payments/payment-gateway/admin_stripe_sca_subscription_button.php:84
2730
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:84
2731
  msgid "Stripe Subscription Button Configuration"
2732
  msgstr ""
2733
 
2734
+ #: views/payments/payment-gateway/admin_stripe_sca_subscription_button.php:118
2735
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:118
2736
  msgid "Stripe API ID"
2737
  msgstr ""
2738
 
2739
+ #: views/payments/payment-gateway/admin_stripe_sca_subscription_button.php:129
2740
+ msgid "Trial Period"
2741
+ msgstr ""
2742
+
2743
+ #: views/payments/payment-gateway/admin_stripe_sca_subscription_button.php:142
2744
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:134
2745
  msgid "Stripe API Settings"
2746
  msgstr ""
2747
 
2748
+ #: views/payments/payment-gateway/admin_stripe_sca_subscription_button.php:188
2749
+ msgid "Webhook Endpoint URL"
2750
+ msgstr ""
2751
+
2752
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:180
2753
  msgid "Webook Endpoint URL"
2754
  msgstr ""
2755
 
2756
+ #: views/payments/payment-gateway/braintree_button_shortcode_view.php:21
2757
+ #: views/payments/payment-gateway/paypal_button_shortcode_view.php:100
2758
+ #: views/payments/payment-gateway/paypal_button_shortcode_view.php:102
2759
  #: views/payments/payment-gateway/paypal_smart_checkout_button_shortcode_view.php:15
2760
  #: views/payments/payment-gateway/stripe_button_shortcode_view.php:20
2761
+ #: views/payments/payment-gateway/stripe_button_shortcode_view.php:161
2762
+ #: views/payments/payment-gateway/stripe_sca_button_shortcode_view.php:20
2763
+ #: views/payments/payment-gateway/stripe_sca_button_shortcode_view.php:144
2764
  msgid "Buy Now"
2765
  msgstr ""
2766
 
2767
+ #: views/payments/payment-gateway/paypal_button_shortcode_view.php:235
2768
+ #: views/payments/payment-gateway/paypal_button_shortcode_view.php:237
2769
  msgid "Subscribe Now"
2770
  msgstr ""
2771
 
2772
+ #: views/payments/payment-gateway/paypal_smart_checkout_button_shortcode_view.php:149
2773
+ msgid "Error occurred during PayPal Smart Checkout process."
2774
  msgstr ""
2775
 
2776
+ #: views/payments/payment-gateway/paypal_smart_checkout_button_shortcode_view.php:178
2777
+ msgid "HTTP error occurred during payment process:"
2778
  msgstr ""
2779
 
2780
+ #: Translation strings from addons
2781
+
2782
+ #: === Form builder addon strings ===
2783
  msgid "Type password here"
2784
  msgstr ""
2785
 
2810
  msgid "Postal / Zip Code"
2811
  msgstr ""
2812
 
2813
+ msgid "Check this box to delete the image. The image will be deleted when you save the profile."
 
 
2814
  msgstr ""
2815
 
2816
  msgid "You will need to re-login since you changed your password."
2817
  msgstr ""
2818
 
2819
+ msgid "Please enter any two digits with <strong>no</strong> spaces (Example: 12)"
 
2820
  msgstr ""
2821
 
2822
  msgid "Verification"
2825
  msgid "Please enter any two digits with no spaces (Example: 12)*"
2826
  msgstr ""
2827
 
2828
+ msgid "Submit"
2829
+ msgstr ""
2830
+
2831
  msgid "Username can only contain: letters, numbers and .-*@"
2832
  msgstr ""
2833
 
2834
  msgid "Allowed characters are: letters, numbers and .-_*@"
2835
  msgstr ""
2836
 
2837
+ msgid "Please check at least one."
2838
+ msgstr ""
2839
+
2840
+ #: === Partial protection addon strings ===
2841
  msgid "You do not have permission to view this content."
2842
  msgstr ""
2843
 
2847
  msgid "This content is for members only."
2848
  msgstr ""
2849
 
2850
+ #: === Member Directory Listing addon strings ===
2851
+ #: swpm-member-directory-admin.php:9
 
 
2852
  msgid "Member Directory"
2853
  msgstr ""
2854
 
2856
  msgid "Member ID"
2857
  msgstr ""
2858
 
2859
+ #: includes/swpm_mda_show_profile.php:27
2860
+ msgid "Username"
2861
+ msgstr ""
2862
+
2863
+ #: includes/swpm_mda_show_profile.php:28
2864
+ msgid "First Name"
2865
+ msgstr ""
2866
+
2867
+ #: includes/swpm_mda_show_profile.php:29
2868
+ msgid "Last Name"
2869
+ msgstr ""
2870
+
2871
  #: includes/swpm_mda_show_profile.php:30
2872
  msgid "Level"
2873
  msgstr ""
2874
 
2875
+ #: includes/swpm_mda_show_profile.php:31
2876
+ msgid "Account State"
2877
+ msgstr ""
2878
+
2879
  #: includes/swpm_mda_show_profile.php:32
2880
  msgid "Address"
2881
  msgstr ""
2882
 
2883
+ #: includes/swpm_mda_show_profile.php:33
2884
+ msgid "Country"
2885
+ msgstr ""
2886
+
2887
+ #: includes/swpm_mda_show_profile.php:34
2888
+ msgid "Phone"
2889
+ msgstr ""
2890
+
2891
+ #: includes/swpm_mda_show_profile.php:35
2892
+ msgid "Email"
2893
+ msgstr ""
2894
+
2895
+ #: includes/swpm_mda_show_profile.php:36
2896
+ msgid "Member Since"
2897
+ msgstr ""
2898
+
2899
+ #: includes/swpm_mda_show_profile.php:37
2900
+ msgid "Gender"
2901
+ msgstr ""
2902
+
2903
+ #: includes/swpm_mda_show_profile.php:38
2904
+ msgid "Company"
2905
+ msgstr ""
2906
+
2907
  #: views/template-1.php:52 views/template-2.php:53
2908
  msgid "Search..."
2909
  msgstr ""
2910
 
2911
+ #: views/template-1.php:53 views/template-2.php:54
2912
+ msgid "Search"
2913
+ msgstr ""
2914
+
2915
  #: views/template-1.php:60 views/template-2.php:62
2916
  msgid "Clear Search"
2917
  msgstr ""
2918
 
2919
+ #: views/template-1.php:95 views/template-2.php:97
2920
+ msgid "View Profile"
2921
+ msgstr ""
2922
+
2923
  # === Misc Shortcodes Addon ===
2924
  msgid "You must be logged in to upgrade a membership."
2925
  msgstr ""
2928
  msgstr ""
2929
 
2930
  msgid "Already a member of this level."
2931
+ msgstr ""
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: member, members, members only, membership, memberships, register, WordPres
5
  Requires at least: 5.0
6
  Requires PHP: 5.6
7
  Tested up to: 5.7
8
- Stable tag: 4.0.5
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -159,6 +159,16 @@ https://simple-membership-plugin.com/
159
 
160
  == Changelog ==
161
 
 
 
 
 
 
 
 
 
 
 
162
  = 4.0.5 =
163
  - Added a new filter hook to allow overriding of the display_name field when adding a member via the admin interface.
164
  - Added a new filter hook to allow overriding of the account status value when a subscription renewal payment comes in. The filter name is: swpm_account_status_for_subscription_start_date_update
5
  Requires at least: 5.0
6
  Requires PHP: 5.6
7
  Tested up to: 5.7
8
+ Stable tag: 4.0.6
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
159
 
160
  == Changelog ==
161
 
162
+ = 4.0.6 =
163
+ - Added an option in the [swpm_paypal_subscription_cancel_link] shortcode to allow opening the window in a new tab.
164
+ - Added an option in the [swpm_paypal_subscription_cancel_link] shortcode to add CSS class for customization purpose.
165
+ - Added a new shortcode to display the total number of members (just display the total number). This shortcode is available in the free Miscellaneous Shortcodes addon.
166
+ - Fixed a calculation in the auto delete pending email activation data function. Thanks to @satoshi for pointing it out.
167
+ - Spelling fixes for some of the description field and error messages. Thanks to @Ronaldo for pointing it out.
168
+ - Regenerated the language translation POT file.
169
+ - Updated the Spanish language file.
170
+ - Updated the Czech language file.
171
+
172
  = 4.0.5 =
173
  - Added a new filter hook to allow overriding of the display_name field when adding a member via the admin interface.
174
  - Added a new filter hook to allow overriding of the account status value when a subscription renewal payment comes in. The filter name is: swpm_account_status_for_subscription_start_date_update
simple-wp-membership.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  Plugin Name: Simple WordPress Membership
4
- Version: 4.0.5
5
  Plugin URI: https://simple-membership-plugin.com/
6
  Author: smp7, wp.insider
7
  Author URI: https://simple-membership-plugin.com/
@@ -20,7 +20,7 @@ include_once('classes/class.simple-wp-membership.php');
20
  include_once('classes/class.swpm-cronjob.php');
21
  include_once('swpm-compat.php');
22
 
23
- define('SIMPLE_WP_MEMBERSHIP_VER', '4.0.5');
24
  define('SIMPLE_WP_MEMBERSHIP_DB_VER', '1.3');
25
  define('SIMPLE_WP_MEMBERSHIP_SITE_HOME_URL', home_url());
26
  define('SIMPLE_WP_MEMBERSHIP_PATH', dirname(__FILE__) . '/');
1
  <?php
2
  /*
3
  Plugin Name: Simple WordPress Membership
4
+ Version: 4.0.6
5
  Plugin URI: https://simple-membership-plugin.com/
6
  Author: smp7, wp.insider
7
  Author URI: https://simple-membership-plugin.com/
20
  include_once('classes/class.swpm-cronjob.php');
21
  include_once('swpm-compat.php');
22
 
23
+ define('SIMPLE_WP_MEMBERSHIP_VER', '4.0.6');
24
  define('SIMPLE_WP_MEMBERSHIP_DB_VER', '1.3');
25
  define('SIMPLE_WP_MEMBERSHIP_SITE_HOME_URL', home_url());
26
  define('SIMPLE_WP_MEMBERSHIP_PATH', dirname(__FILE__) . '/');
views/account_delete_warning.php CHANGED
@@ -5,7 +5,7 @@
5
  <?php if (!empty($msg)) echo '<p>' . $msg . '</p>'; ?>
6
  <p style="color:red;">
7
  <?php echo SwpmUtils::_('You are about to delete an account. This will delete user data associated with this account. '); ?>
8
- <?php echo SwpmUtils::_('It will also delete associated WordPress user account.'); ?>
9
  <?php echo SwpmUtils::_('(NOTE: for safety, we do not allow deletion of any associated WordPress account with administrator role).'); ?>
10
  <?php echo SwpmUtils::_('Continue?'); ?>
11
  </p>
5
  <?php if (!empty($msg)) echo '<p>' . $msg . '</p>'; ?>
6
  <p style="color:red;">
7
  <?php echo SwpmUtils::_('You are about to delete an account. This will delete user data associated with this account. '); ?>
8
+ <?php echo SwpmUtils::_('It will also delete the associated WordPress user account.'); ?>
9
  <?php echo SwpmUtils::_('(NOTE: for safety, we do not allow deletion of any associated WordPress account with administrator role).'); ?>
10
  <?php echo SwpmUtils::_('Continue?'); ?>
11
  </p>
views/admin_add_level.php CHANGED
@@ -20,18 +20,18 @@
20
  <th scope="row"><label for="subscription_period"><?php echo SwpmUtils::_('Access Duration'); ?> <span class="description"><?php echo SwpmUtils::_('(required)'); ?></span></label>
21
  </th>
22
  <td>
23
- <p><input type="radio" checked="checked" value="<?php echo SwpmMembershipLevel::NO_EXPIRY?>" name="subscription_duration_type" /> <?php echo SwpmUtils::_('No Expiry (Access for this level will not expire until cancelled')?>)</p>
24
- <p><input type="radio" value="<?php echo SwpmMembershipLevel::DAYS ?>" name="subscription_duration_type" /> <?php echo SwpmUtils::_('Expire After')?>
25
  <input type="text" value="" name="subscription_period_<?php echo SwpmMembershipLevel::DAYS ?>"> <?php echo SwpmUtils::_('Days (Access expires after given number of days)')?></p>
26
- <p><input type="radio" value="<?php echo SwpmMembershipLevel::WEEKS?>" name="subscription_duration_type" /> <?php echo SwpmUtils::_('Expire After')?>
27
  <input type="text" value="" name="subscription_period_<?php echo SwpmMembershipLevel::WEEKS ?>"> <?php echo SwpmUtils::_('Weeks (Access expires after given number of weeks')?></p>
28
- <p><input type="radio" value="<?php echo SwpmMembershipLevel::MONTHS?>" name="subscription_duration_type" /> <?php echo SwpmUtils::_('Expire After')?>
29
  <input type="text" value="" name="subscription_period_<?php echo SwpmMembershipLevel::MONTHS?>"> <?php echo SwpmUtils::_('Months (Access expires after given number of months)')?></p>
30
- <p><input type="radio" value="<?php echo SwpmMembershipLevel::YEARS?>" name="subscription_duration_type" /> <?php echo SwpmUtils::_('Expire After')?>
31
- <input type="text" value="" name="subscription_period_<?php echo SwpmMembershipLevel::YEARS?>"> <?php echo SwpmUtils::_('Years (Access expires after given number of years)')?></p>
32
- <p><input type="radio" value="<?php echo SwpmMembershipLevel::FIXED_DATE?>" name="subscription_duration_type" /> <?php echo SwpmUtils::_('Fixed Date Expiry')?>
33
  <input type="text" class="swpm-date-picker" value="<?php echo date('Y-m-d');?>" name="subscription_period_<?php echo SwpmMembershipLevel::FIXED_DATE?>"> <?php echo SwpmUtils::_('(Access expires on a fixed date)')?></p>
34
- </td>
35
  </tr>
36
  <tr>
37
  <th scope="row">
@@ -42,7 +42,7 @@
42
  <p class="description">
43
  <?php echo SwpmUtils::_('Enable new user activation via email. When enabled, members will need to click on an activation link that is sent to their email address to activate the account. Useful for free membership. '); ?>
44
  <?php echo '<a href="https://simple-membership-plugin.com/email-activation-for-members/" target="_blank">' . SwpmUtils::_('View Documentation') . '.</a>'; ?>
45
- <?php echo '<br><strong>'.SwpmUtils::_('Note:').'</strong> '.SwpmUtils::_('If enabled, decryptable member password is temporarily stored in the database until the account is activated.'); ?>
46
  </p>
47
  </td>
48
  </tr>
20
  <th scope="row"><label for="subscription_period"><?php echo SwpmUtils::_('Access Duration'); ?> <span class="description"><?php echo SwpmUtils::_('(required)'); ?></span></label>
21
  </th>
22
  <td>
23
+ <p><input type="radio" checked="checked" value="<?php echo SwpmMembershipLevel::NO_EXPIRY?>" name="subscription_duration_type" /> <?php echo SwpmUtils::_('No Expiry (Access for this level will not expire until cancelled')?>)</p>
24
+ <p><input type="radio" value="<?php echo SwpmMembershipLevel::DAYS ?>" name="subscription_duration_type" /> <?php echo SwpmUtils::_('Expire After')?>
25
  <input type="text" value="" name="subscription_period_<?php echo SwpmMembershipLevel::DAYS ?>"> <?php echo SwpmUtils::_('Days (Access expires after given number of days)')?></p>
26
+ <p><input type="radio" value="<?php echo SwpmMembershipLevel::WEEKS?>" name="subscription_duration_type" /> <?php echo SwpmUtils::_('Expire After')?>
27
  <input type="text" value="" name="subscription_period_<?php echo SwpmMembershipLevel::WEEKS ?>"> <?php echo SwpmUtils::_('Weeks (Access expires after given number of weeks')?></p>
28
+ <p><input type="radio" value="<?php echo SwpmMembershipLevel::MONTHS?>" name="subscription_duration_type" /> <?php echo SwpmUtils::_('Expire After')?>
29
  <input type="text" value="" name="subscription_period_<?php echo SwpmMembershipLevel::MONTHS?>"> <?php echo SwpmUtils::_('Months (Access expires after given number of months)')?></p>
30
+ <p><input type="radio" value="<?php echo SwpmMembershipLevel::YEARS?>" name="subscription_duration_type" /> <?php echo SwpmUtils::_('Expire After')?>
31
+ <input type="text" value="" name="subscription_period_<?php echo SwpmMembershipLevel::YEARS?>"> <?php echo SwpmUtils::_('Years (Access expires after given number of years)')?></p>
32
+ <p><input type="radio" value="<?php echo SwpmMembershipLevel::FIXED_DATE?>" name="subscription_duration_type" /> <?php echo SwpmUtils::_('Fixed Date Expiry')?>
33
  <input type="text" class="swpm-date-picker" value="<?php echo date('Y-m-d');?>" name="subscription_period_<?php echo SwpmMembershipLevel::FIXED_DATE?>"> <?php echo SwpmUtils::_('(Access expires on a fixed date)')?></p>
34
+ </td>
35
  </tr>
36
  <tr>
37
  <th scope="row">
42
  <p class="description">
43
  <?php echo SwpmUtils::_('Enable new user activation via email. When enabled, members will need to click on an activation link that is sent to their email address to activate the account. Useful for free membership. '); ?>
44
  <?php echo '<a href="https://simple-membership-plugin.com/email-activation-for-members/" target="_blank">' . SwpmUtils::_('View Documentation') . '.</a>'; ?>
45
+ <?php echo '<br><strong>'.SwpmUtils::_('Note:').'</strong> '.SwpmUtils::_('If enabled, the member\'s decryptable password is temporarily stored in the database until the account is activated.'); ?>
46
  </p>
47
  </td>
48
  </tr>
views/admin_edit.php CHANGED
@@ -1,8 +1,8 @@
1
- <?php
2
  //This file is used to edit member's profile from the admin dashboard of the plugin.
3
 
4
  //The admin ajax causes an issue with the JS validation if done on form submission. The edit profile doesn't need JS validation on email. There is PHP validation which will catch any email error.
5
- //SimpleWpMembership::enqueue_validation_scripts(array('ajaxEmailCall' => array('extraData'=>'&action=swpm_validate_email&member_id='.$member_id)));
6
  ?>
7
  <div class="wrap" id="swpm-profile-page" type="edit">
8
  <form action="" method="post" name="swpm-edit-user" id="swpm-edit-user" enctype="multipart/form-data" class="validate swpm-validate-form"<?php do_action('user_new_form_tag');?>>
@@ -11,14 +11,14 @@
11
  <h3><?php echo SwpmUtils::_('Edit Member') ?></h3>
12
  <p>
13
  <?php echo SwpmUtils::_('Edit existing member details.'); ?>
14
- <?php echo SwpmUtils::_(' You are currenty editing member with member ID: '); ?>
15
  <?php echo esc_attr($member_id); ?>
16
  </p>
17
  <table class="form-table">
18
  <tr class="form-field form-required swpm-admin-edit-username">
19
  <th scope="row"><label for="user_name"><?php echo SwpmUtils::_('Username'); ?> <span class="description"><?php echo SwpmUtils::_('(required)'); ?></span></label></th>
20
  <td>
21
- <?php
22
  if (empty($user_name)) {
23
  //This is a record with incomplete registration. The member need to complete the registration by clicking on the unique link sent to them
24
  ?>
@@ -30,8 +30,8 @@
30
  <p>If you suspect that this user has lost interest in becoming a member then you can delete this member record.</p>
31
  </div>
32
  <?php
33
- } else {
34
- echo esc_attr($user_name);
35
  }
36
  ?>
37
  </td>
@@ -48,7 +48,7 @@
48
  <div id="pass-strength-result"><?php echo SwpmUtils::_('Strength indicator'); ?></div>
49
  <p class="description indicator-hint"><?php echo SwpmUtils::_('Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ &amp; ).'); ?></p>
50
  </td>
51
- </tr>
52
  <tr class="swpm-admin-edit-account-state">
53
  <th scope="row"><label for="account_state"><?php echo SwpmUtils::_('Account Status'); ?></label></th>
54
  <td>
@@ -56,12 +56,12 @@
56
  <?php echo SwpmUtils::account_state_dropdown($account_state);?>
57
  </select>
58
  <p class="description">
59
- <?php echo SwpmUtils::_("This is the member's account status. If you want to manually activate an expired member's account then read"); ?>
60
  <a href="https://simple-membership-plugin.com/manually-activating-expired-members-account/" target="_blank"><?php echo SwpmUtils::_("this documentation"); ?></a>
61
  <?php echo SwpmUtils::_(" to learn how to do it."); ?>
62
  </p>
63
  </td>
64
- </tr>
65
  <tr class="swpm-admin-edit-notify-user">
66
  <th scope="row"><label for="account_state_change"><?php echo SwpmUtils::_('Notify User'); ?></label></th>
67
  <td><input type="checkbox" id="account_status_change" name="account_status_change" />
@@ -78,7 +78,7 @@
78
  <tr class="swpm-admin-edit-expiry-date">
79
  <th scope="row"><label for="member_expiry_date"><?php echo SwpmUtils::_('Expiry Date') ?> </label></th>
80
  <td>
81
- <?php
82
  $member_current_expiry_date = SwpmMemberUtils::get_formatted_expiry_date_by_user_id($member_id);
83
  echo esc_attr($member_current_expiry_date);
84
  ?>
@@ -86,7 +86,7 @@
86
  <?php echo SwpmUtils::_('This is calculated based on the current membership level assigned to this member and the expiry condition that you have set for that membership level.') ?>
87
  </p>
88
  </td>
89
- </tr>
90
  <tr class="swpm-admin-edit-last-accessed">
91
  <th scope="row"><label for="last_accessed"><?php echo SwpmUtils::_('Last Accessed Date') ?> </label></th>
92
  <td>
@@ -100,10 +100,10 @@
100
  <?php echo esc_attr($last_accessed_from_ip); ?>
101
  <p class="description indicator-hint"><?php echo SwpmUtils::_('This value gets updated when this member logs into your site.') ?></p>
102
  </td>
103
- </tr>
104
-
105
  </table>
106
-
107
  <?php include('admin_member_form_common_js.php'); ?>
108
  <?php echo apply_filters('swpm_admin_custom_fields', '',$membership_level); ?>
109
  <?php submit_button( SwpmUtils::_('Save Data'), 'primary', 'editswpmuser', true, array( 'id' => 'createswpmusersub' ) ); ?>
@@ -117,7 +117,7 @@
117
  </form>
118
  </div>
119
  <script>
120
- jQuery(document).ready(function($){
121
  $('#account_status_change').change(function(){
122
  var target = $(this).closest('tr');
123
  var $body = '<textarea rows="5" cols="60" id="notificationmailbody" name="notificationmailbody">' + SwpmSettings.statusChangeEmailBody + '</textarea>';
1
+ <?php
2
  //This file is used to edit member's profile from the admin dashboard of the plugin.
3
 
4
  //The admin ajax causes an issue with the JS validation if done on form submission. The edit profile doesn't need JS validation on email. There is PHP validation which will catch any email error.
5
+ //SimpleWpMembership::enqueue_validation_scripts(array('ajaxEmailCall' => array('extraData'=>'&action=swpm_validate_email&member_id='.$member_id)));
6
  ?>
7
  <div class="wrap" id="swpm-profile-page" type="edit">
8
  <form action="" method="post" name="swpm-edit-user" id="swpm-edit-user" enctype="multipart/form-data" class="validate swpm-validate-form"<?php do_action('user_new_form_tag');?>>
11
  <h3><?php echo SwpmUtils::_('Edit Member') ?></h3>
12
  <p>
13
  <?php echo SwpmUtils::_('Edit existing member details.'); ?>
14
+ <?php echo SwpmUtils::_(' You are currently editing member with member ID: '); ?>
15
  <?php echo esc_attr($member_id); ?>
16
  </p>
17
  <table class="form-table">
18
  <tr class="form-field form-required swpm-admin-edit-username">
19
  <th scope="row"><label for="user_name"><?php echo SwpmUtils::_('Username'); ?> <span class="description"><?php echo SwpmUtils::_('(required)'); ?></span></label></th>
20
  <td>
21
+ <?php
22
  if (empty($user_name)) {
23
  //This is a record with incomplete registration. The member need to complete the registration by clicking on the unique link sent to them
24
  ?>
30
  <p>If you suspect that this user has lost interest in becoming a member then you can delete this member record.</p>
31
  </div>
32
  <?php
33
+ } else {
34
+ echo esc_attr($user_name);
35
  }
36
  ?>
37
  </td>
48
  <div id="pass-strength-result"><?php echo SwpmUtils::_('Strength indicator'); ?></div>
49
  <p class="description indicator-hint"><?php echo SwpmUtils::_('Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ &amp; ).'); ?></p>
50
  </td>
51
+ </tr>
52
  <tr class="swpm-admin-edit-account-state">
53
  <th scope="row"><label for="account_state"><?php echo SwpmUtils::_('Account Status'); ?></label></th>
54
  <td>
56
  <?php echo SwpmUtils::account_state_dropdown($account_state);?>
57
  </select>
58
  <p class="description">
59
+ <?php echo SwpmUtils::_("This is the member's account status. If you want to manually activate an expired member's account then read"); ?>
60
  <a href="https://simple-membership-plugin.com/manually-activating-expired-members-account/" target="_blank"><?php echo SwpmUtils::_("this documentation"); ?></a>
61
  <?php echo SwpmUtils::_(" to learn how to do it."); ?>
62
  </p>
63
  </td>
64
+ </tr>
65
  <tr class="swpm-admin-edit-notify-user">
66
  <th scope="row"><label for="account_state_change"><?php echo SwpmUtils::_('Notify User'); ?></label></th>
67
  <td><input type="checkbox" id="account_status_change" name="account_status_change" />
78
  <tr class="swpm-admin-edit-expiry-date">
79
  <th scope="row"><label for="member_expiry_date"><?php echo SwpmUtils::_('Expiry Date') ?> </label></th>
80
  <td>
81
+ <?php
82
  $member_current_expiry_date = SwpmMemberUtils::get_formatted_expiry_date_by_user_id($member_id);
83
  echo esc_attr($member_current_expiry_date);
84
  ?>
86
  <?php echo SwpmUtils::_('This is calculated based on the current membership level assigned to this member and the expiry condition that you have set for that membership level.') ?>
87
  </p>
88
  </td>
89
+ </tr>
90
  <tr class="swpm-admin-edit-last-accessed">
91
  <th scope="row"><label for="last_accessed"><?php echo SwpmUtils::_('Last Accessed Date') ?> </label></th>
92
  <td>
100
  <?php echo esc_attr($last_accessed_from_ip); ?>
101
  <p class="description indicator-hint"><?php echo SwpmUtils::_('This value gets updated when this member logs into your site.') ?></p>
102
  </td>
103
+ </tr>
104
+
105
  </table>
106
+
107
  <?php include('admin_member_form_common_js.php'); ?>
108
  <?php echo apply_filters('swpm_admin_custom_fields', '',$membership_level); ?>
109
  <?php submit_button( SwpmUtils::_('Save Data'), 'primary', 'editswpmuser', true, array( 'id' => 'createswpmusersub' ) ); ?>
117
  </form>
118
  </div>
119
  <script>
120
+ jQuery(document).ready(function($){
121
  $('#account_status_change').change(function(){
122
  var target = $(this).closest('tr');
123
  var $body = '<textarea rows="5" cols="60" id="notificationmailbody" name="notificationmailbody">' + SwpmSettings.statusChangeEmailBody + '</textarea>';
views/payments/admin_create_payment_buttons.php CHANGED
@@ -14,7 +14,7 @@ do_action( 'swpm_create_new_button_process_submission' ); //Addons can use this
14
  ?>
15
 
16
  <div class="swpm-grey-box">
17
- <?php echo SwpmUtils::_( 'You can create new payment button for your memberships using this interface.' ); ?>
18
  </div>
19
 
20
  <?php
14
  ?>
15
 
16
  <div class="swpm-grey-box">
17
+ <?php echo SwpmUtils::_( 'You can create a new payment button for your memberships using this interface.' ); ?>
18
  </div>
19
 
20
  <?php
views/payments/payment-gateway/paypal_smart_checkout_button_shortcode_view.php CHANGED
@@ -146,7 +146,7 @@ function swpm_render_pp_smart_checkout_button_sc_output($button_code, $args) {
146
  commit: true,
147
  onError: function (error) {
148
  console.log(error);
149
- alert('<?php echo esc_js(__("Error occured during PayPal Smart Checkout process.", "simple-membership")); ?>\n\n' + error);
150
  },
151
  onAuthorize: function (data, actions) {
152
  var paymentBtnCont = jQuery('.swpm-pp-smart-checkout-btn-<?php echo $uniqid; ?>');
@@ -175,7 +175,7 @@ function swpm_render_pp_smart_checkout_button_sc_output($button_code, $args) {
175
  console.log(result);
176
  paymentBtnCont.show();
177
  paymentBtnSpinner.hide();
178
- alert('<?php echo esc_js(__("HTTP error occured during payment process:", "simple-membership")); ?>' + ' ' + result.status + ' ' + result.statusText);
179
  });
180
  }
181
  );
146
  commit: true,
147
  onError: function (error) {
148
  console.log(error);
149
+ alert('<?php echo esc_js(__("Error occurred during PayPal Smart Checkout process.", "simple-membership")); ?>\n\n' + error);
150
  },
151
  onAuthorize: function (data, actions) {
152
  var paymentBtnCont = jQuery('.swpm-pp-smart-checkout-btn-<?php echo $uniqid; ?>');
175
  console.log(result);
176
  paymentBtnCont.show();
177
  paymentBtnSpinner.hide();
178
+ alert('<?php echo esc_js(__("HTTP error occurred during payment process:", "simple-membership")); ?>' + ' ' + result.status + ' ' + result.statusText);
179
  });
180
  }
181
  );