Simple Membership - Version 3.3.2

Version Description

  • You can now view a member's last accessed date and time value by editing the member's profile from the admin dashboard.
  • The "Registration Successful" message can now be customized using the custom messages addon.
  • The edit profile template file can now also be overridden using the swpm_load_template_files filter.
  • Updated the Dutch language translation file.
  • Added Estonian language translation file.
  • Updated the Stripe payment gateway library to the latest version.
Download this release

Release Info

Developer mra13
Plugin Icon 128x128 Simple Membership
Version 3.3.2
Comparing to
See all releases

Code changes from version 3.3.1 to 3.3.2

Files changed (59) hide show
  1. classes/class.simple-wp-membership.php +2 -4
  2. classes/class.swpm-auth.php +13 -5
  3. classes/class.swpm-front-registration.php +1 -0
  4. classes/class.swpm-settings.php +10 -10
  5. languages/swpm-et_EE.mo +0 -0
  6. languages/swpm-et_EE.po +1342 -0
  7. languages/swpm-nl_NL.mo +0 -0
  8. languages/swpm-nl_NL.po +247 -324
  9. languages/swpm.pot +638 -426
  10. lib/stripe-gateway/init.php +2 -0
  11. lib/stripe-gateway/lib/Account.php +44 -0
  12. lib/stripe-gateway/lib/AlipayAccount.php +5 -0
  13. lib/stripe-gateway/lib/ApiRequestor.php +5 -0
  14. lib/stripe-gateway/lib/ApiResource.php +34 -3
  15. lib/stripe-gateway/lib/ApiResponse.php +5 -0
  16. lib/stripe-gateway/lib/ApplicationFee.php +17 -0
  17. lib/stripe-gateway/lib/ApplicationFeeRefund.php +5 -0
  18. lib/stripe-gateway/lib/AttachedObject.php +7 -1
  19. lib/stripe-gateway/lib/Balance.php +10 -0
  20. lib/stripe-gateway/lib/BalanceTransaction.php +20 -0
  21. lib/stripe-gateway/lib/BankAccount.php +5 -0
  22. lib/stripe-gateway/lib/BitcoinReceiver.php +5 -0
  23. lib/stripe-gateway/lib/BitcoinTransaction.php +5 -0
  24. lib/stripe-gateway/lib/Card.php +5 -0
  25. lib/stripe-gateway/lib/Charge.php +48 -0
  26. lib/stripe-gateway/lib/Collection.php +10 -0
  27. lib/stripe-gateway/lib/CountrySpec.php +5 -0
  28. lib/stripe-gateway/lib/Coupon.php +17 -0
  29. lib/stripe-gateway/lib/Customer.php +34 -0
  30. lib/stripe-gateway/lib/Dispute.php +32 -0
  31. lib/stripe-gateway/lib/Error/Card.php +11 -0
  32. lib/stripe-gateway/lib/Event.php +15 -0
  33. lib/stripe-gateway/lib/ExternalAccount.php +5 -0
  34. lib/stripe-gateway/lib/FileUpload.php +12 -0
  35. lib/stripe-gateway/lib/HttpClient/CurlClient.php +40 -6
  36. lib/stripe-gateway/lib/Invoice.php +17 -0
  37. lib/stripe-gateway/lib/InvoiceItem.php +17 -0
  38. lib/stripe-gateway/lib/Order.php +17 -0
  39. lib/stripe-gateway/lib/OrderReturn.php +5 -0
  40. lib/stripe-gateway/lib/Plan.php +17 -0
  41. lib/stripe-gateway/lib/Product.php +17 -0
  42. lib/stripe-gateway/lib/Recipient.php +17 -0
  43. lib/stripe-gateway/lib/Refund.php +29 -0
  44. lib/stripe-gateway/lib/SKU.php +17 -0
  45. lib/stripe-gateway/lib/SingletonApiResource.php +5 -0
  46. lib/stripe-gateway/lib/Source.php +44 -0
  47. lib/stripe-gateway/lib/Stripe.php +6 -1
  48. lib/stripe-gateway/lib/StripeObject.php +5 -0
  49. lib/stripe-gateway/lib/Subscription.php +28 -0
  50. lib/stripe-gateway/lib/ThreeDSecure.php +25 -0
  51. lib/stripe-gateway/lib/Token.php +15 -0
  52. lib/stripe-gateway/lib/Transfer.php +44 -0
  53. lib/stripe-gateway/lib/TransferReversal.php +14 -0
  54. lib/stripe-gateway/lib/Util/AutoPagingIterator.php +5 -1
  55. lib/stripe-gateway/lib/Util/Util.php +2 -0
  56. readme.txt +9 -1
  57. simple-wp-membership.php +2 -2
  58. views/admin_edit.php +13 -3
  59. views/edit.php +8 -0
classes/class.simple-wp-membership.php CHANGED
@@ -285,11 +285,9 @@ class SimpleWpMembership {
285
  if (!empty($out)) {
286
  return $out;
287
  }
288
- $user_data = (array) $auth->userData;
289
- $user_data['membership_level_alias'] = $auth->get('alias');
290
  ob_start();
291
- extract($user_data, EXTR_SKIP);
292
- include(SIMPLE_WP_MEMBERSHIP_PATH . 'views/edit.php');
293
  return ob_get_clean();
294
  }
295
  return SwpmUtils::_('You are not logged in.');
285
  if (!empty($out)) {
286
  return $out;
287
  }
 
 
288
  ob_start();
289
+ //Load the edit profile template
290
+ SwpmUtilsTemplate::swpm_load_template('edit.php', false);
291
  return ob_get_clean();
292
  }
293
  return SwpmUtils::_('You are not logged in.');
classes/class.swpm-auth.php CHANGED
@@ -89,9 +89,20 @@ class SwpmAuth {
89
  if (empty($this->userData)) {
90
  return false;
91
  }
92
-
93
  $enable_expired_login = SwpmSettings::get_instance()->get_value('enable-expired-account-login', '');
94
 
 
 
 
 
 
 
 
 
 
 
 
95
  $can_login = true;
96
  if ($this->userData->account_state == 'inactive' && empty($enable_expired_login)) {
97
  $this->lastStatusMsg = SwpmUtils::_('Account is inactive.');
@@ -112,10 +123,7 @@ class SwpmAuth {
112
 
113
  if (SwpmUtils::is_subscription_expired($this->userData)) {
114
  if ($this->userData->account_state == 'active') {
115
- global $wpdb;
116
- $wpdb->update(
117
- $wpdb->prefix . 'swpm_members_tbl', array('account_state' => 'expired'), array('member_id' => $this->userData->member_id), array('%s'), array('%d')
118
- );
119
  }
120
  if (empty($enable_expired_login)) {
121
  $this->lastStatusMsg = SwpmUtils::_('Account has expired.');
89
  if (empty($this->userData)) {
90
  return false;
91
  }
92
+ global $wpdb;
93
  $enable_expired_login = SwpmSettings::get_instance()->get_value('enable-expired-account-login', '');
94
 
95
+ //Update the last accessed date and IP address for this login attempt. $wpdb->update(table, data, where, format, where format)
96
+ $last_accessed_date = current_time('mysql');
97
+ $last_accessed_ip = SwpmUtils::get_user_ip_address();
98
+ $wpdb->update($wpdb->prefix . 'swpm_members_tbl',
99
+ array('last_accessed' => $last_accessed_date, 'last_accessed_from_ip' => $last_accessed_ip),
100
+ array('member_id' => $this->userData->member_id),
101
+ array('%s', '%s'),
102
+ array('%d')
103
+ );
104
+
105
+ //Check the member's account status.
106
  $can_login = true;
107
  if ($this->userData->account_state == 'inactive' && empty($enable_expired_login)) {
108
  $this->lastStatusMsg = SwpmUtils::_('Account is inactive.');
123
 
124
  if (SwpmUtils::is_subscription_expired($this->userData)) {
125
  if ($this->userData->account_state == 'active') {
126
+ $wpdb->update($wpdb->prefix . 'swpm_members_tbl', array('account_state' => 'expired'), array('member_id' => $this->userData->member_id), array('%s'), array('%d'));
 
 
 
127
  }
128
  if (empty($enable_expired_login)) {
129
  $this->lastStatusMsg = SwpmUtils::_('Account has expired.');
classes/class.swpm-front-registration.php CHANGED
@@ -84,6 +84,7 @@ class SwpmFrontRegistration extends SwpmRegistration {
84
 
85
  $login_page_url = SwpmSettings::get_instance()->get_value('login-page-url');
86
  $after_rego_msg = '<div class="swpm-registration-success-msg">' . SwpmUtils::_('Registration Successful. ') . SwpmUtils::_('Please') . ' <a href="' . $login_page_url . '">' . SwpmUtils::_('Login') . '</a></div>';
 
87
  $message = array('succeeded' => true, 'message' => $after_rego_msg);
88
  SwpmTransfer::get_instance()->set('status', $message);
89
  return;
84
 
85
  $login_page_url = SwpmSettings::get_instance()->get_value('login-page-url');
86
  $after_rego_msg = '<div class="swpm-registration-success-msg">' . SwpmUtils::_('Registration Successful. ') . SwpmUtils::_('Please') . ' <a href="' . $login_page_url . '">' . SwpmUtils::_('Login') . '</a></div>';
87
+ $after_rego_msg = apply_filters ('swpm_registration_success_msg', $after_rego_msg);
88
  $message = array('succeeded' => true, 'message' => $after_rego_msg);
89
  SwpmTransfer::get_instance()->set('status', $message);
90
  return;
classes/class.swpm-settings.php CHANGED
@@ -292,43 +292,43 @@ class SwpmSettings {
292
  }
293
 
294
  public function general_settings_callback() {
295
- SwpmUtils::e('General Plugin Settings.');
296
  }
297
 
298
  public function pages_settings_callback() {
299
- SwpmUtils::e('Page Setup and URL Related settings.');
300
  }
301
 
302
  public function testndebug_settings_callback() {
303
- SwpmUtils::e('Testing and Debug Related Settings.');
304
  }
305
 
306
  public function reg_email_settings_callback() {
307
- SwpmUtils::e('This email will be sent to your users when they complete the registration and become a member.');
308
  }
309
 
310
  public function reset_password_settings_callback() {
311
- SwpmUtils::e('This email will be sent to your users when they use the password reset functionality.');
312
  }
313
 
314
  public function email_misc_settings_callback() {
315
- SwpmUtils::e('Settings in this section apply to all emails.');
316
  }
317
 
318
  public function upgrade_email_settings_callback() {
319
- SwpmUtils::e('This email will be sent to your users after account upgrade (when an existing member pays for a new membership level).');
320
  }
321
 
322
  public function bulk_activate_email_settings_callback() {
323
- SwpmUtils::e('This email will be sent to your members when you use the bulk account activate and notify action.');
324
  }
325
 
326
  public function reg_prompt_email_settings_callback() {
327
- SwpmUtils::e('This email will be sent to prompt users to complete registration after the payment.');
328
  }
329
 
330
  public function advanced_settings_callback() {
331
- SwpmUtils::e('This page allows you to configure some advanced features of the plugin.');
332
  }
333
 
334
  public function sanitize_tab_1($input) {
292
  }
293
 
294
  public function general_settings_callback() {
295
+ _e('General Plugin Settings.', 'swpm');
296
  }
297
 
298
  public function pages_settings_callback() {
299
+ _e('Page Setup and URL Related settings.', 'swpm');
300
  }
301
 
302
  public function testndebug_settings_callback() {
303
+ _e('Testing and Debug Related Settings.', 'swpm');
304
  }
305
 
306
  public function reg_email_settings_callback() {
307
+ _e('This email will be sent to your users when they complete the registration and become a member.', 'swpm');
308
  }
309
 
310
  public function reset_password_settings_callback() {
311
+ _e('This email will be sent to your users when they use the password reset functionality.', 'swpm');
312
  }
313
 
314
  public function email_misc_settings_callback() {
315
+ _e('Settings in this section apply to all emails.', 'swpm');
316
  }
317
 
318
  public function upgrade_email_settings_callback() {
319
+ _e('This email will be sent to your users after account upgrade (when an existing member pays for a new membership level).', 'swpm');
320
  }
321
 
322
  public function bulk_activate_email_settings_callback() {
323
+ _e('This email will be sent to your members when you use the bulk account activate and notify action.', 'swpm');
324
  }
325
 
326
  public function reg_prompt_email_settings_callback() {
327
+ _e('This email will be sent to prompt users to complete registration after the payment.', 'swpm');
328
  }
329
 
330
  public function advanced_settings_callback() {
331
+ _e('This page allows you to configure some advanced features of the plugin.', 'swpm');
332
  }
333
 
334
  public function sanitize_tab_1($input) {
languages/swpm-et_EE.mo ADDED
Binary file
languages/swpm-et_EE.po ADDED
@@ -0,0 +1,1342 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: simple membership\n"
4
+ "POT-Creation-Date: 2016-08-23 22:57+0300\n"
5
+ "PO-Revision-Date: 2016-08-25 20:14+0300\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.8\n"
11
+ "X-Poedit-KeywordsList: __;_e\n"
12
+ "X-Poedit-Basepath: .\n"
13
+ "Last-Translator: \n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "Language: et\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: classes/class.simple-wp-membership.php:264
19
+ msgid "You are not logged in."
20
+ msgstr "Sa ei ole sisseloginud."
21
+
22
+ #: classes/class.simple-wp-membership.php:298
23
+ msgid "Simple WP Membership Protection"
24
+ msgstr "Simple WP Membership Protection"
25
+
26
+ #: classes/class.simple-wp-membership.php:310
27
+ msgid "Simple Membership Protection options"
28
+ msgstr "Simple Membership Protection valikud"
29
+
30
+ #: classes/class.simple-wp-membership.php:326
31
+ msgid "Do you want to protect this content?"
32
+ msgstr "Kas tahad seda sisu kaitsta?"
33
+
34
+ #: classes/class.simple-wp-membership.php:331
35
+ msgid "Select the membership level that can access this content:"
36
+ msgstr "Vali kasutajate tase, kes saavad sellele sisule ligi:"
37
+
38
+ #: classes/class.simple-wp-membership.php:464
39
+ msgid "WP Membership"
40
+ msgstr "WP Membership"
41
+
42
+ #: classes/class.simple-wp-membership.php:465 classes/class.swpm-members.php:10
43
+ #: views/admin_members_menu.php:2
44
+ msgid "Members"
45
+ msgstr "Kasutajad"
46
+
47
+ #: classes/class.simple-wp-membership.php:466
48
+ #: classes/class.swpm-category-list.php:20
49
+ #: classes/class.swpm-membership-levels.php:11
50
+ msgid "Membership Levels"
51
+ msgstr "Kasutajate tasemed"
52
+
53
+ #: classes/class.simple-wp-membership.php:467
54
+ msgid "Settings"
55
+ msgstr "Seaded"
56
+
57
+ #: classes/class.simple-wp-membership.php:468
58
+ msgid "Payments"
59
+ msgstr "Maksed"
60
+
61
+ #: classes/class.simple-wp-membership.php:469
62
+ msgid "Add-ons"
63
+ msgstr "Lisandid"
64
+
65
+ #: classes/class.swpm-access-control.php:21
66
+ #: classes/class.swpm-access-control.php:28
67
+ #: classes/class.swpm-access-control.php:55
68
+ msgid "You need to login to view this content. "
69
+ msgstr "Selle lehekülje sisu nägemiseks pead olema sisseloginud.<br />"
70
+
71
+ #: classes/class.swpm-access-control.php:34
72
+ #: classes/class.swpm-access-control.php:60
73
+ msgid ""
74
+ "Your account has expired. Please renew your account to gain access to this "
75
+ "content."
76
+ msgstr ""
77
+ "Sinu konto on aegunud. Palun uuenda oma kontot, et saada ligi sellele sisule."
78
+
79
+ #: classes/class.swpm-access-control.php:41
80
+ msgid "This content can only be viewed by members who joined on or before "
81
+ msgstr "See sisu on nähtav ainult kasutajatele, kes on varasemalt liitunud "
82
+
83
+ #: classes/class.swpm-access-control.php:46
84
+ #: classes/class.swpm-access-control.php:66
85
+ msgid "This content is not permitted for your membership level."
86
+ msgstr "See sisu ei ole kättesaadav sinu kasutaja tasemele."
87
+
88
+ #: classes/class.swpm-access-control.php:84
89
+ msgid " The rest of the content is not permitted for your membership level."
90
+ msgstr " Ülejäänud sisu ei ole kättesaadav sinu kasutaja tasemele."
91
+
92
+ #: classes/class.swpm-access-control.php:88
93
+ #: classes/class.swpm-access-control.php:106
94
+ msgid "You need to login to view the rest of the content. "
95
+ msgstr "Pead olema sisse loginud, et näha järgnevat sisu. "
96
+
97
+ #: classes/class.swpm-admin-registration.php:54
98
+ msgid "Member record added successfully."
99
+ msgstr "Kasutaja kanne lisati edukalt."
100
+
101
+ #: classes/class.swpm-admin-registration.php:59
102
+ #: classes/class.swpm-admin-registration.php:81
103
+ #: classes/class.swpm-admin-registration.php:105
104
+ #: classes/class.swpm-membership-level.php:43
105
+ #: classes/class.swpm-membership-level.php:62
106
+ msgid "Please correct the following:"
107
+ msgstr "Palun korrigeeri järgnevat:"
108
+
109
+ #: classes/class.swpm-admin-registration.php:96
110
+ msgid "Your current password"
111
+ msgstr "Sinu kehtiv parool"
112
+
113
+ #: classes/class.swpm-ajax.php:14
114
+ msgid "Invalid Email Address"
115
+ msgstr "Vigane e-posti aadress"
116
+
117
+ #: classes/class.swpm-ajax.php:21 classes/class.swpm-ajax.php:36
118
+ msgid "Aready taken"
119
+ msgstr "Juba võetud"
120
+
121
+ #: classes/class.swpm-ajax.php:30
122
+ msgid "Name contains invalid character"
123
+ msgstr "Nimi sisaldab lubamatut tähemärki"
124
+
125
+ #: classes/class.swpm-ajax.php:37
126
+ msgid "Available"
127
+ msgstr "Saadaval"
128
+
129
+ #: classes/class.swpm-auth.php:50
130
+ msgid "User Not Found."
131
+ msgstr "Kasutajat ei leitud."
132
+
133
+ #: classes/class.swpm-auth.php:57
134
+ msgid "Password Empty or Invalid."
135
+ msgstr "Parool on täitmata või vigane."
136
+
137
+ #: classes/class.swpm-auth.php:82
138
+ msgid "Account is inactive."
139
+ msgstr "Konto ei ole aktiivne."
140
+
141
+ #: classes/class.swpm-auth.php:85
142
+ msgid "Account is pending."
143
+ msgstr "Konto on kinnituse ootel."
144
+
145
+ #: classes/class.swpm-auth.php:88 classes/class.swpm-auth.php:106
146
+ msgid "Account has expired."
147
+ msgstr "Konto on aegunud."
148
+
149
+ #: classes/class.swpm-auth.php:114
150
+ msgid "You are logged in as:"
151
+ msgstr "Oled sisseloginud, kui: "
152
+
153
+ #: classes/class.swpm-auth.php:160
154
+ msgid "Logged Out Successfully."
155
+ msgstr "Edukalt välja logitud."
156
+
157
+ #: classes/class.swpm-auth.php:210
158
+ msgid "Session Expired."
159
+ msgstr "Sessioon aegus."
160
+
161
+ #: classes/class.swpm-auth.php:219
162
+ msgid "Invalid Username"
163
+ msgstr "Vigane kasutajanimi"
164
+
165
+ #: classes/class.swpm-auth.php:227
166
+ msgid "Please login again."
167
+ msgstr "Palun logi uuesti sisse."
168
+
169
+ #: classes/class.swpm-category-list.php:19 classes/class.swpm-members.php:23
170
+ #: classes/class.swpm-membership-levels.php:10
171
+ #: classes/class.swpm-membership-levels.php:20
172
+ #: classes/admin-includes/class.swpm-payments-list-table.php:80
173
+ #: views/add.php:30 views/admin_member_form_common_part.php:2 views/edit.php:53
174
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:36
175
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:217
176
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:37
177
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:310
178
+ msgid "Membership Level"
179
+ msgstr "Kasutaja tase"
180
+
181
+ #: classes/class.swpm-category-list.php:33 classes/class.swpm-members.php:18
182
+ #: classes/class.swpm-membership-levels.php:19
183
+ msgid "ID"
184
+ msgstr "ID"
185
+
186
+ #: classes/class.swpm-category-list.php:34
187
+ msgid "Name"
188
+ msgstr "Nimi"
189
+
190
+ #: classes/class.swpm-category-list.php:35
191
+ msgid "Description"
192
+ msgstr "Kirjeldus"
193
+
194
+ #: classes/class.swpm-category-list.php:36
195
+ msgid "Count"
196
+ msgstr "Hulk"
197
+
198
+ #: classes/class.swpm-category-list.php:80
199
+ msgid "Category protection updated!"
200
+ msgstr "Kategooria kaitse uuendatud!"
201
+
202
+ #: classes/class.swpm-form.php:26
203
+ msgid ""
204
+ "Wordpress account exists with given username. But given email doesn't match."
205
+ msgstr ""
206
+ "Sellise kasutajanimega konto on Wordpressis olemas. Aga sisestatud e-posti "
207
+ "aadress ei kattu."
208
+
209
+ #: classes/class.swpm-form.php:31
210
+ msgid ""
211
+ "Wordpress account exists with given email. But given username doesn't match."
212
+ msgstr ""
213
+ "Sellise e-posti aadressiga konto on Wordpressis olemas. Aga sisestatud "
214
+ "kasutajanimi ei kattu."
215
+
216
+ #: classes/class.swpm-form.php:40
217
+ msgid "Username is required"
218
+ msgstr "Kasutajanimi on nõutav"
219
+
220
+ #: classes/class.swpm-form.php:44
221
+ msgid "Username contains invalid character"
222
+ msgstr "Kasutajanimi sisaldab lubamatuid tähemärke"
223
+
224
+ #: classes/class.swpm-form.php:52
225
+ msgid "Username already exists."
226
+ msgstr "Kasutajanimi on juba kasutusel."
227
+
228
+ #: classes/class.swpm-form.php:75
229
+ msgid "Password is required"
230
+ msgstr "Parool on nõutav"
231
+
232
+ #: classes/class.swpm-form.php:82
233
+ msgid "Password mismatch"
234
+ msgstr "Paroolid ei kattu"
235
+
236
+ #: classes/class.swpm-form.php:93
237
+ msgid "Email is required"
238
+ msgstr "E-posti aadress on nõutav"
239
+
240
+ #: classes/class.swpm-form.php:97
241
+ msgid "Email is invalid"
242
+ msgstr "E-posti aadress on vigane"
243
+
244
+ #: classes/class.swpm-form.php:113
245
+ msgid "Email is already used."
246
+ msgstr "E-posti aadress on juba kasutusel."
247
+
248
+ #: classes/class.swpm-form.php:170
249
+ msgid "Member since field is invalid"
250
+ msgstr "Kasutaja liikmelisuse algus on vigane"
251
+
252
+ #: classes/class.swpm-form.php:181
253
+ msgid "Access starts field is invalid"
254
+ msgstr "Kasutusõiguse algus on vigane"
255
+
256
+ #: classes/class.swpm-form.php:191
257
+ msgid "Gender field is invalid"
258
+ msgstr "Soo väli on vigane"
259
+
260
+ #: classes/class.swpm-form.php:202
261
+ msgid "Account state field is invalid"
262
+ msgstr "Konto staatuse väli on vigane"
263
+
264
+ #: classes/class.swpm-form.php:209
265
+ msgid "Invalid membership level"
266
+ msgstr "Vigane kasutaja tase"
267
+
268
+ #: classes/class.swpm-front-registration.php:71
269
+ msgid "Security check: captcha validation failed."
270
+ msgstr "Turvakontroll: captcha valideerimine ebaõnnestus."
271
+
272
+ #: classes/class.swpm-front-registration.php:80
273
+ msgid "Registration Successful. "
274
+ msgstr "registreerimine õnnestus. "
275
+
276
+ #: classes/class.swpm-front-registration.php:80
277
+ #: classes/class.swpm-settings.php:377
278
+ msgid "Please"
279
+ msgstr "Palun"
280
+
281
+ #: classes/class.swpm-front-registration.php:80
282
+ #: classes/class.swpm-settings.php:377 views/login.php:21
283
+ msgid "Login"
284
+ msgstr "Logi sisse"
285
+
286
+ #: classes/class.swpm-front-registration.php:92
287
+ #: classes/class.swpm-front-registration.php:179
288
+ msgid "Please correct the following"
289
+ msgstr "Palun korrigeeri järgnevat"
290
+
291
+ #: classes/class.swpm-front-registration.php:123
292
+ msgid "Membership Level Couldn't be found."
293
+ msgstr "Kasutaja taset ei leitud."
294
+
295
+ #: classes/class.swpm-front-registration.php:162
296
+ msgid "Profile updated successfully."
297
+ msgstr "Profiil uuendati edukalt."
298
+
299
+ #: classes/class.swpm-front-registration.php:170
300
+ msgid ""
301
+ "Profile updated successfully. You will need to re-login since you changed "
302
+ "your password."
303
+ msgstr ""
304
+ "Profiil uuendati edukalt. Sa pead uuesti sisselogima, sest sa muutsid oma "
305
+ "parooli."
306
+
307
+ #: classes/class.swpm-front-registration.php:189
308
+ msgid "Email address not valid."
309
+ msgstr "E-posti aadress ei ole korrektne."
310
+
311
+ #: classes/class.swpm-front-registration.php:200
312
+ msgid "No user found with that email address."
313
+ msgstr "Sellise e-posti aadressiga kasutajat ei leitud."
314
+
315
+ #: classes/class.swpm-front-registration.php:201
316
+ #: classes/class.swpm-front-registration.php:225
317
+ msgid "Email Address: "
318
+ msgstr "E-posti aadress: "
319
+
320
+ #: classes/class.swpm-front-registration.php:224
321
+ msgid "New password has been sent to your email address."
322
+ msgstr "Uus parool saadeti sinu e-posti aadressile."
323
+
324
+ #: classes/class.swpm-init-time-tasks.php:108
325
+ msgid "Sorry, Nonce verification failed."
326
+ msgstr "Vabandust, kontrollimine ebaõnnestus."
327
+
328
+ #: classes/class.swpm-init-time-tasks.php:115
329
+ msgid "Sorry, Password didn't match."
330
+ msgstr "Vabandust, paroolid ei kattu."
331
+
332
+ #: classes/class.swpm-level-form.php:47
333
+ msgid "Date format is not valid."
334
+ msgstr "Kuupäeva formaat ei ole sobiv."
335
+
336
+ #: classes/class.swpm-level-form.php:55
337
+ msgid "Access duration must be > 0."
338
+ msgstr "Ligipäsu kestus peab olema > 0."
339
+
340
+ #: classes/class.swpm-member-utils.php:22
341
+ #: classes/class.swpm-member-utils.php:30
342
+ #: classes/class.swpm-member-utils.php:38
343
+ #: classes/class.swpm-member-utils.php:48
344
+ msgid "User is not logged in."
345
+ msgstr "Kasutaja ei ole sisseloginud."
346
+
347
+ #: classes/class.swpm-members.php:9
348
+ msgid "Member"
349
+ msgstr "Kasutaja"
350
+
351
+ #: classes/class.swpm-members.php:19 views/add.php:6 views/admin_add.php:11
352
+ #: views/admin_edit.php:9 views/edit.php:5 views/login.php:5
353
+ msgid "Username"
354
+ msgstr "Kasutajanimi"
355
+
356
+ #: classes/class.swpm-members.php:20
357
+ #: classes/admin-includes/class.swpm-payments-list-table.php:74
358
+ #: views/add.php:22 views/admin_member_form_common_part.php:15
359
+ #: views/edit.php:21
360
+ msgid "First Name"
361
+ msgstr "Eesnimi"
362
+
363
+ #: classes/class.swpm-members.php:21
364
+ #: classes/admin-includes/class.swpm-payments-list-table.php:75
365
+ #: views/add.php:26 views/admin_member_form_common_part.php:19
366
+ #: views/edit.php:25
367
+ msgid "Last Name"
368
+ msgstr "Perenimi"
369
+
370
+ #: classes/class.swpm-members.php:22 views/add.php:10 views/edit.php:9
371
+ msgid "Email"
372
+ msgstr "E-post"
373
+
374
+ #: classes/class.swpm-members.php:24 views/admin_member_form_common_part.php:11
375
+ msgid "Access Starts"
376
+ msgstr "Ligipääs algab"
377
+
378
+ #: classes/class.swpm-members.php:25
379
+ msgid "Account State"
380
+ msgstr "Konto staatus"
381
+
382
+ #: classes/class.swpm-members.php:41
383
+ #: classes/class.swpm-membership-levels.php:35
384
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:80
385
+ #: classes/admin-includes/class.swpm-payments-list-table.php:95
386
+ msgid "Delete"
387
+ msgstr "Kustuta"
388
+
389
+ #: classes/class.swpm-members.php:42
390
+ msgid "Set Status to Active"
391
+ msgstr "Määra staatus - Active"
392
+
393
+ #: classes/class.swpm-members.php:44
394
+ msgid "Set Status to Inactive"
395
+ msgstr "Määra staatus - Inactive"
396
+
397
+ #: classes/class.swpm-members.php:45
398
+ msgid "Set Status to Pending"
399
+ msgstr "Määra staatus - Pending"
400
+
401
+ #: classes/class.swpm-members.php:46
402
+ msgid "Set Status to Expired"
403
+ msgstr "Määra staatus - Expired"
404
+
405
+ #: classes/class.swpm-members.php:121
406
+ msgid "No Member found."
407
+ msgstr "Kasutajat ei leitud."
408
+
409
+ #: classes/class.swpm-membership-level.php:38
410
+ msgid "Membership Level Creation Successful."
411
+ msgstr "Kasutaja taseme loomine õnnestus."
412
+
413
+ #: classes/class.swpm-membership-level.php:57
414
+ msgid "Updated Successfully."
415
+ msgstr "Edukalt uuendatud."
416
+
417
+ #: classes/class.swpm-membership-levels.php:21
418
+ msgid "Role"
419
+ msgstr "Roll"
420
+
421
+ #: classes/class.swpm-membership-levels.php:22
422
+ msgid "Access Valid For/Until"
423
+ msgstr "Ligipääs on kehtiv alates/kuni"
424
+
425
+ #: classes/class.swpm-misc-utils.php:50
426
+ msgid "Registration"
427
+ msgstr "Registreeru"
428
+
429
+ #: classes/class.swpm-misc-utils.php:73
430
+ msgid "Member Login"
431
+ msgstr "Kasutaja sisselogimine"
432
+
433
+ #: classes/class.swpm-misc-utils.php:96
434
+ msgid "Profile"
435
+ msgstr "Profiil"
436
+
437
+ #: classes/class.swpm-misc-utils.php:119
438
+ msgid "Password Reset"
439
+ msgstr "Parooli tühistamine"
440
+
441
+ #: classes/class.swpm-settings.php:21 classes/class.swpm-settings.php:39
442
+ msgid "General Settings"
443
+ msgstr "Peamised seaded"
444
+
445
+ #: classes/class.swpm-settings.php:21
446
+ msgid "Payment Settings"
447
+ msgstr "Maksete seaded"
448
+
449
+ #: classes/class.swpm-settings.php:22
450
+ msgid "Email Settings"
451
+ msgstr "E-posti seaded"
452
+
453
+ #: classes/class.swpm-settings.php:22
454
+ msgid "Tools"
455
+ msgstr "Tööriistad"
456
+
457
+ #: classes/class.swpm-settings.php:22 classes/class.swpm-settings.php:150
458
+ msgid "Advanced Settings"
459
+ msgstr "Täiendavad seaded"
460
+
461
+ #: classes/class.swpm-settings.php:22
462
+ msgid "Addons Settings"
463
+ msgstr "Lisandite seaded"
464
+
465
+ #: classes/class.swpm-settings.php:38
466
+ msgid "Plugin Documentation"
467
+ msgstr "Plugina dokumentatsioon"
468
+
469
+ #: classes/class.swpm-settings.php:40
470
+ msgid "Enable Free Membership"
471
+ msgstr "Luba vaba kasutamist"
472
+
473
+ #: classes/class.swpm-settings.php:41
474
+ msgid ""
475
+ "Enable/disable registration for free membership level. When you enable this "
476
+ "option, make sure to specify a free membership level ID in the field below."
477
+ msgstr ""
478
+ "Luba/keela registreerimine vaba kasutamise tasemele. Kui lubad seda valikut "
479
+ "veendu, et määrad vaba kasutamise kasutaja taseme ID allolevas lahtris."
480
+
481
+ #: classes/class.swpm-settings.php:42
482
+ msgid "Free Membership Level ID"
483
+ msgstr "Vaba kasutamise taseme ID"
484
+
485
+ #: classes/class.swpm-settings.php:43
486
+ msgid "Assign free membership level ID"
487
+ msgstr "Määra vaba kasutamise taseme ID"
488
+
489
+ #: classes/class.swpm-settings.php:44
490
+ msgid "Enable More Tag Protection"
491
+ msgstr "Luba “Veel” sildi kaitse"
492
+
493
+ #: classes/class.swpm-settings.php:45
494
+ msgid ""
495
+ "Enables or disables \"more\" tag protection in the posts and pages. Anything "
496
+ "after the More tag is protected. Anything before the more tag is teaser "
497
+ "content."
498
+ msgstr ""
499
+ "Lubab või keelab “Veel” sildi kaitse postitustes ja lehtedel. Kõik pärast "
500
+ "“Veel” silti on kaitstud. Kõik, mis on enne “Veel” silti, on sissejuhatatus."
501
+
502
+ #: classes/class.swpm-settings.php:46
503
+ msgid "Hide Adminbar"
504
+ msgstr "Peida admin tööriistariba"
505
+
506
+ #: classes/class.swpm-settings.php:47
507
+ msgid ""
508
+ "WordPress shows an admin toolbar to the logged in users of the site. Check "
509
+ "this box if you want to hide that admin toolbar in the fronend of your site."
510
+ msgstr ""
511
+ "Wordpress kuvab veebilehel admin tööriistariba sisseloginud kasutajatele. "
512
+ "Märgista see kastike, kui soovid selle riba peita veebilehe avalikus pooles."
513
+
514
+ #: classes/class.swpm-settings.php:49
515
+ msgid "Default Account Status"
516
+ msgstr "Vaikimisi konto staatus"
517
+
518
+ #: classes/class.swpm-settings.php:52
519
+ msgid ""
520
+ "Select the default account status for newly registered users. If you want to "
521
+ "manually approve the members then you can set the status to \"Pending\"."
522
+ msgstr ""
523
+ "Vali vaikimisi konto staatus uutele registreerujatele. Kui soovid "
524
+ "manuaalselt kinnitada uute kasutajate registreerumisi, siis võid märkida "
525
+ "staatuseks “Pending”."
526
+
527
+ #: classes/class.swpm-settings.php:53
528
+ msgid "Allow Account Deletion"
529
+ msgstr "Luba konto kustutamist"
530
+
531
+ #: classes/class.swpm-settings.php:55
532
+ msgid "Allow users to delete their accounts."
533
+ msgstr "Luba kasutajatel kustutada oma kontot."
534
+
535
+ #: classes/class.swpm-settings.php:56
536
+ msgid "Auto Delete Pending Account"
537
+ msgstr "Automaatne ootel konto kustutamine"
538
+
539
+ #: classes/class.swpm-settings.php:59
540
+ msgid "Select how long you want to keep \"pending\" account."
541
+ msgstr "Vali, kui kaua soovid hoida “Pending” kontot."
542
+
543
+ #: classes/class.swpm-settings.php:67
544
+ msgid "Pages Settings"
545
+ msgstr "Lehtede seaded"
546
+
547
+ #: classes/class.swpm-settings.php:68
548
+ msgid "Login Page URL"
549
+ msgstr "Sisselogimise lehe URL"
550
+
551
+ #: classes/class.swpm-settings.php:70
552
+ msgid "Registration Page URL"
553
+ msgstr "Registreerimise lehe URL"
554
+
555
+ #: classes/class.swpm-settings.php:72
556
+ msgid "Join Us Page URL"
557
+ msgstr "Liitumise lehe URL"
558
+
559
+ #: classes/class.swpm-settings.php:74
560
+ msgid "Edit Profile Page URL"
561
+ msgstr "Profiili muutmise lehe URL"
562
+
563
+ #: classes/class.swpm-settings.php:76
564
+ msgid "Password Reset Page URL"
565
+ msgstr "Parooli vahetamise lehe URL"
566
+
567
+ #: classes/class.swpm-settings.php:79
568
+ msgid "Test & Debug Settings"
569
+ msgstr "Testimise ja silumise seaded"
570
+
571
+ #: classes/class.swpm-settings.php:81
572
+ msgid "Check this option to enable debug logging."
573
+ msgstr "Märgi see valik, et lubada silumise logimine."
574
+
575
+ #: classes/class.swpm-settings.php:86
576
+ msgid "Enable Sandbox Testing"
577
+ msgstr "Luba liivakasti testimine"
578
+
579
+ #: classes/class.swpm-settings.php:87
580
+ msgid "Enable this option if you want to do sandbox payment testing."
581
+ msgstr "Luba see valik, kui soovid teostada liivakasti maksete testimist."
582
+
583
+ #: classes/class.swpm-settings.php:97 classes/class.swpm-settings.php:145
584
+ #: classes/class.swpm-settings.php:243
585
+ msgid "Settings updated!"
586
+ msgstr "Seaded uuendatud!"
587
+
588
+ #: classes/class.swpm-settings.php:102
589
+ msgid "Email Misc. Settings"
590
+ msgstr "Mitmesugused e-kirja seaded"
591
+
592
+ #: classes/class.swpm-settings.php:103
593
+ msgid "From Email Address"
594
+ msgstr "Saatja e-posti aadress"
595
+
596
+ #: classes/class.swpm-settings.php:106
597
+ msgid "Email Settings (Prompt to Complete Registration )"
598
+ msgstr "E-posti seaded (ajendamaks registreerumist lõpule viima)"
599
+
600
+ #: classes/class.swpm-settings.php:107 classes/class.swpm-settings.php:113
601
+ #: classes/class.swpm-settings.php:125 classes/class.swpm-settings.php:132
602
+ msgid "Email Subject"
603
+ msgstr "E-kirja teemarida"
604
+
605
+ #: classes/class.swpm-settings.php:109 classes/class.swpm-settings.php:115
606
+ #: classes/class.swpm-settings.php:127 classes/class.swpm-settings.php:134
607
+ msgid "Email Body"
608
+ msgstr "E-kirja sisu"
609
+
610
+ #: classes/class.swpm-settings.php:112
611
+ msgid "Email Settings (Registration Complete)"
612
+ msgstr "E-kirja seaded (registreerumine läbitud)"
613
+
614
+ #: classes/class.swpm-settings.php:117
615
+ msgid "Send Notification to Admin"
616
+ msgstr "Saada teavitus adminile"
617
+
618
+ #: classes/class.swpm-settings.php:118
619
+ msgid ""
620
+ "Enable this option if you want the admin to receive a notification when a "
621
+ "member registers."
622
+ msgstr ""
623
+ "Määra see valik, kui soovid, et admin saaks teavituse, kui kasutaja "
624
+ "registreerus."
625
+
626
+ #: classes/class.swpm-settings.php:119
627
+ msgid "Admin Email Address"
628
+ msgstr "Admini e-posti aadress"
629
+
630
+ #: classes/class.swpm-settings.php:120
631
+ msgid ""
632
+ "Enter the email address where you want the admin notification email to be "
633
+ "sent to."
634
+ msgstr ""
635
+ "Sisesta e-posti aadress, kuhu sa tahad, et admin e-kirja teavitus saadetaks."
636
+
637
+ #: classes/class.swpm-settings.php:121
638
+ msgid "Send Email to Member When Added via Admin Dashboard"
639
+ msgstr "Saada e-kiri kasutajale, kui see lisati admin poolelt"
640
+
641
+ #: classes/class.swpm-settings.php:124
642
+ msgid "Email Settings (Password Reset)"
643
+ msgstr "E-kirja seaded (parooli lähtestamine)"
644
+
645
+ #: classes/class.swpm-settings.php:131
646
+ msgid " Email Settings (Account Upgrade Notification)"
647
+ msgstr "E-kirja seaded (konto uuendamise teavitus)"
648
+
649
+ #: classes/class.swpm-settings.php:152
650
+ msgid "Enable Expired Account Login"
651
+ msgstr "Luba aegunud konto ligipääsu"
652
+
653
+ #: classes/class.swpm-settings.php:153
654
+ msgid ""
655
+ "When enabled, expired members will be able to log into the system but won't "
656
+ "be able to view any protected content. This allows them to easily renew "
657
+ "their account by making another payment."
658
+ msgstr ""
659
+ "Kui see on lubatud, siis aegunud kontoga kasutajad saavad süsteemi "
660
+ "sisselogida, aga ei näe kaitstud sisu. See võimaldab neil lihtsalt uuendada "
661
+ "oma kontot, tehes selle eest uue makse."
662
+
663
+ #: classes/class.swpm-settings.php:377
664
+ msgid "Not a Member?"
665
+ msgstr "Ei ole kasutaja?"
666
+
667
+ #: classes/class.swpm-settings.php:377 views/login.php:27
668
+ msgid "Join Us"
669
+ msgstr "Täida liitumisavaldus"
670
+
671
+ #: classes/class.swpm-utils.php:67
672
+ msgid "Active"
673
+ msgstr "Active"
674
+
675
+ #: classes/class.swpm-utils.php:68
676
+ msgid "Inactive"
677
+ msgstr "Inactive"
678
+
679
+ #: classes/class.swpm-utils.php:69
680
+ msgid "Pending"
681
+ msgstr "Pending"
682
+
683
+ #: classes/class.swpm-utils.php:70
684
+ msgid "Expired"
685
+ msgstr "Aegunud"
686
+
687
+ #: classes/class.swpm-utils.php:297
688
+ msgid "Never"
689
+ msgstr "Mitte kunagi"
690
+
691
+ #: classes/class.swpm-utils.php:371
692
+ msgid "Delete Account"
693
+ msgstr "Kustuta konto"
694
+
695
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:63
696
+ msgid "Payment Button ID"
697
+ msgstr "Makse nupu ID"
698
+
699
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:64
700
+ msgid "Payment Button Title"
701
+ msgstr "Makse nupu nimetus"
702
+
703
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:65
704
+ msgid "Membership Level ID"
705
+ msgstr "Kasutaja taseme ID"
706
+
707
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:66
708
+ msgid "Button Shortcode"
709
+ msgstr "Nupu lühikood"
710
+
711
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:106
712
+ #: views/admin_members_list.php:15
713
+ #: views/payments/admin_all_payment_transactions.php:33
714
+ msgid "The selected entry was deleted!"
715
+ msgstr "Valitud kirje kustutatud!"
716
+
717
+ #: classes/admin-includes/class.swpm-payments-list-table.php:53
718
+ msgid "View Profile"
719
+ msgstr "Vaata profiili"
720
+
721
+ #: classes/admin-includes/class.swpm-payments-list-table.php:72
722
+ msgid "Row ID"
723
+ msgstr "Rea ID"
724
+
725
+ #: classes/admin-includes/class.swpm-payments-list-table.php:73
726
+ #: views/forgot_password.php:5
727
+ msgid "Email Address"
728
+ msgstr "E-posti aadress"
729
+
730
+ #: classes/admin-includes/class.swpm-payments-list-table.php:76
731
+ msgid "Member Profile"
732
+ msgstr "Kasutaja profiil"
733
+
734
+ #: classes/admin-includes/class.swpm-payments-list-table.php:77
735
+ msgid "Date"
736
+ msgstr "Kuupäev"
737
+
738
+ #: classes/admin-includes/class.swpm-payments-list-table.php:78
739
+ msgid "Transaction ID"
740
+ msgstr "Tehingu ID"
741
+
742
+ #: classes/admin-includes/class.swpm-payments-list-table.php:79
743
+ msgid "Amount"
744
+ msgstr "Kogus"
745
+
746
+ #: classes/common/class.swpm-list-table.php:137
747
+ msgid "List View"
748
+ msgstr "Nimekirja vaade"
749
+
750
+ #: classes/common/class.swpm-list-table.php:138
751
+ msgid "Excerpt View"
752
+ msgstr "Katkend vaade"
753
+
754
+ #: classes/common/class.swpm-list-table.php:305
755
+ msgid "No items found."
756
+ msgstr "Üksusi ei leitud."
757
+
758
+ #: classes/common/class.swpm-list-table.php:431
759
+ msgid "Select bulk action"
760
+ msgstr "Vali masstegevus"
761
+
762
+ #: classes/common/class.swpm-list-table.php:433
763
+ msgid "Bulk Actions"
764
+ msgstr "Masstegevused"
765
+
766
+ #: classes/common/class.swpm-list-table.php:443
767
+ msgid "Apply"
768
+ msgstr "Kinnita"
769
+
770
+ #: classes/common/class.swpm-list-table.php:543
771
+ msgid "Filter by date"
772
+ msgstr "Filtreeri kuupäeva järgi"
773
+
774
+ #: classes/common/class.swpm-list-table.php:545
775
+ msgid "All dates"
776
+ msgstr "Kõik kuupäevad"
777
+
778
+ #: classes/common/class.swpm-list-table.php:555
779
+ #, php-format
780
+ msgid "%1$s %2$d"
781
+ msgstr "%1$s %2$d"
782
+
783
+ #: classes/common/class.swpm-list-table.php:599
784
+ #, php-format
785
+ msgid "%s pending"
786
+ msgstr "%s ootel"
787
+
788
+ #: classes/common/class.swpm-list-table.php:704
789
+ msgid "Select Page"
790
+ msgstr "Vali leht"
791
+
792
+ #: classes/common/class.swpm-list-table.php:848
793
+ msgid "Select All"
794
+ msgstr "Vali kõik"
795
+
796
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:47
797
+ msgid "Your membership profile will be updated to reflect the payment."
798
+ msgstr "Sinu kasutaja profiili uuendatakse kajastades makset."
799
+
800
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:48
801
+ msgid "Your profile username: "
802
+ msgstr "Sinu profiili kasutajanimi: "
803
+
804
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:60
805
+ msgid "Click on the following link to complete the registration."
806
+ msgstr "Kliki alloleval viitel, et viia registreerimine lõpule."
807
+
808
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:61
809
+ msgid "Click here to complete your paid registration"
810
+ msgstr "Kliki siia, et viia lõpule oma makstud registreerimine"
811
+
812
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:66
813
+ msgid ""
814
+ "If you have just made a membership payment then your payment is yet to be "
815
+ "processed. Please check back in a few minutes. An email will be sent to you "
816
+ "with the details shortly."
817
+ msgstr ""
818
+ "Kui sa oled äsja teinud kasutajaks saamise makse, siis sinu makse on veel "
819
+ "töötluses. Palun vaata uuesti mõne minuti pärast. Sulle saabub peagi e-kiri, "
820
+ "koos edasiste juhistega."
821
+
822
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:80
823
+ msgid "Expiry: "
824
+ msgstr "Kehtivus: "
825
+
826
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:82
827
+ msgid "You are not logged-in as a member"
828
+ msgstr "Sa ei ole sisseloginud, kui kasutaja"
829
+
830
+ #: views/add.php:14 views/admin_add.php:19 views/admin_edit.php:17
831
+ #: views/edit.php:13 views/login.php:11
832
+ msgid "Password"
833
+ msgstr "Parool"
834
+
835
+ #: views/add.php:18 views/edit.php:17
836
+ msgid "Repeat Password"
837
+ msgstr "Korda parooli"
838
+
839
+ #: views/add.php:41
840
+ msgid "Register"
841
+ msgstr "Registreerumine"
842
+
843
+ #: views/admin_add.php:6
844
+ msgid "Add Member"
845
+ msgstr "Lisa kasutaja"
846
+
847
+ #: views/admin_add.php:7
848
+ msgid "Create a brand new user and add it to this site."
849
+ msgstr "Loo täiesti uus kasutaja ja lisa ta sellele veebilehele."
850
+
851
+ #: views/admin_add.php:11 views/admin_add.php:15 views/admin_add_level.php:11
852
+ #: views/admin_add_level.php:15 views/admin_add_level.php:19
853
+ #: views/admin_edit.php:9 views/admin_edit.php:13 views/admin_edit_level.php:10
854
+ #: views/admin_edit_level.php:14 views/admin_edit_level.php:18
855
+ msgid "(required)"
856
+ msgstr "(nõutav)"
857
+
858
+ #: views/admin_add.php:15 views/admin_edit.php:13
859
+ msgid "E-mail"
860
+ msgstr "E-post"
861
+
862
+ #: views/admin_add.php:19
863
+ msgid "(twice, required)"
864
+ msgstr "(uuesti, nõutav)"
865
+
866
+ #: views/admin_add.php:24 views/admin_edit.php:21
867
+ msgid "Strength indicator"
868
+ msgstr "Tugevuse indikaator"
869
+
870
+ #: views/admin_add.php:25 views/admin_edit.php:22
871
+ msgid ""
872
+ "Hint: The password should be at least seven characters long. To make it "
873
+ "stronger, use upper and lower case letters, numbers and symbols like ! \" ? "
874
+ "$ % ^ &amp; )."
875
+ msgstr ""
876
+ "Vihje: Parool peab olema vähemalt 7 tähemärki pikk. Et muuta seda veelgi "
877
+ "tugevamaks, kasuta suur- ja väiketähti, numbreid ja sümboleid, nagu ! \" ? $ "
878
+ "% ^ &amp; )."
879
+
880
+ #: views/admin_add.php:29 views/admin_edit.php:26 views/loggedin.php:7
881
+ msgid "Account Status"
882
+ msgstr "Konto staatus"
883
+
884
+ #: views/admin_add.php:39
885
+ msgid "Add New Member "
886
+ msgstr "Lisa uus kasutaja "
887
+
888
+ #: views/admin_addon_settings.php:3 views/admin_settings.php:3
889
+ #: views/admin_tools_settings.php:3 views/payments/admin_payment_settings.php:3
890
+ msgid "Simple WP Membership::Settings"
891
+ msgstr "Simple WP Membership::Seaded"
892
+
893
+ #: views/admin_addon_settings.php:8
894
+ msgid ""
895
+ "Some of the simple membership plugin's addon settings and options will be "
896
+ "displayed here (if you have them)"
897
+ msgstr ""
898
+ "Mõned Simple Membership plugina seaded ja valikud on kuvatud siin (kui sul "
899
+ "on neid)"
900
+
901
+ #: views/admin_addon_settings.php:13
902
+ msgid "Save Changes"
903
+ msgstr "Salvesta muudatused"
904
+
905
+ #: views/admin_add_level.php:6
906
+ msgid "Create new membership level."
907
+ msgstr "Loo uus kasutaja tase."
908
+
909
+ #: views/admin_add_level.php:11 views/admin_edit_level.php:10
910
+ msgid "Membership Level Name"
911
+ msgstr "Kasutajate taseme nimetus"
912
+
913
+ #: views/admin_add_level.php:15 views/admin_edit_level.php:14
914
+ msgid "Default WordPress Role"
915
+ msgstr "Vaikimisi Wordpressi roll"
916
+
917
+ #: views/admin_add_level.php:19 views/admin_edit_level.php:18
918
+ msgid "Access Duration"
919
+ msgstr "Ligipääsu kestus"
920
+
921
+ #: views/admin_add_level.php:22
922
+ msgid "No Expiry (Access for this level will not expire until cancelled"
923
+ msgstr "Ei aegu (selle taseme ligipääs ei aegu, kuniks see katkestatakse"
924
+
925
+ #: views/admin_add_level.php:23 views/admin_add_level.php:25
926
+ #: views/admin_add_level.php:27 views/admin_add_level.php:29
927
+ #: views/admin_edit_level.php:22 views/admin_edit_level.php:25
928
+ #: views/admin_edit_level.php:28 views/admin_edit_level.php:31
929
+ msgid "Expire After"
930
+ msgstr "Lõpeta"
931
+
932
+ #: views/admin_add_level.php:24 views/admin_edit_level.php:23
933
+ msgid "Days (Access expires after given number of days)"
934
+ msgstr "päeva pärast (ligipääs katkeb märgitud päevade pärast)"
935
+
936
+ #: views/admin_add_level.php:26
937
+ msgid "Weeks (Access expires after given number of weeks"
938
+ msgstr "nädala pärast (ligipääs katkeb märgitud nädalate pärast)"
939
+
940
+ #: views/admin_add_level.php:28 views/admin_edit_level.php:29
941
+ msgid "Months (Access expires after given number of months)"
942
+ msgstr "kuu pärast (ligipääs katkeb märgitud kuude pärast)"
943
+
944
+ #: views/admin_add_level.php:30 views/admin_edit_level.php:32
945
+ msgid "Years (Access expires after given number of years)"
946
+ msgstr "aasta pärast (ligipääs katkeb märgitud aastate pärast)"
947
+
948
+ #: views/admin_add_level.php:31 views/admin_edit_level.php:34
949
+ msgid "Fixed Date Expiry"
950
+ msgstr "Konkreetse kuupäevani"
951
+
952
+ #: views/admin_add_level.php:32 views/admin_edit_level.php:35
953
+ msgid "(Access expires on a fixed date)"
954
+ msgstr "(ligipääs katkeb märgitud kuupäeval)"
955
+
956
+ #: views/admin_add_level.php:38
957
+ msgid "Add New Membership Level "
958
+ msgstr "Lisa uus kasutaja tase"
959
+
960
+ #: views/admin_add_ons_page.php:7
961
+ msgid "Simple WP Membership::Add-ons"
962
+ msgstr "Simple WP Membership::Lisandid"
963
+
964
+ #: views/admin_category_list.php:2
965
+ msgid "Simple WP Membership::Categories"
966
+ msgstr "Simple WP Membership::Kategooriad"
967
+
968
+ #: views/admin_category_list.php:7
969
+ msgid ""
970
+ "First of all, globally protect the category on your site by selecting "
971
+ "\"General Protection\" from the drop-down box below and then select the "
972
+ "categories that should be protected from non-logged in users."
973
+ msgstr ""
974
+ "Esiteks kaitse globaalselt oma veebilehe kategooriat, valides allolevast "
975
+ "rippmenüüst “Peamine kaitse” ja siis vali kategooriad, mis peaksid olema "
976
+ "kaitstud mitte sisseloginud kasutajate jaoks."
977
+
978
+ #: views/admin_category_list.php:10
979
+ msgid ""
980
+ "Next, select an existing membership level from the drop-down box below and "
981
+ "then select the categories you want to grant access to (for that particular "
982
+ "membership level)."
983
+ msgstr ""
984
+ "Järgmiseks vali olemasolev kasutaja tase allolevast rippmenüüst ja siis vali "
985
+ "kategooriad, et võimaldada neile ligipääsu (sellele konkreetsele kasutajate "
986
+ "tasemele)."
987
+
988
+ #: views/admin_edit.php:5
989
+ msgid "Edit Member"
990
+ msgstr "Muuda kasutajat"
991
+
992
+ #: views/admin_edit.php:6
993
+ msgid "Edit existing member details."
994
+ msgstr "Muuda olemasoleva kasutaja andmeid."
995
+
996
+ #: views/admin_edit.php:17
997
+ msgid "(twice, leave empty to retain old password)"
998
+ msgstr "(veelkord - jäta tühjaks, et säilitada senine parool)"
999
+
1000
+ #: views/admin_edit.php:33
1001
+ msgid "Notify User"
1002
+ msgstr "Teavita kasutajat"
1003
+
1004
+ #: views/admin_edit.php:40
1005
+ msgid "Subscriber ID/Reference"
1006
+ msgstr "Tellija ID/viide"
1007
+
1008
+ #: views/admin_edit.php:44
1009
+ msgid "Last Accessed From IP"
1010
+ msgstr "Viimati kasutatud IP-aadressilt"
1011
+
1012
+ #: views/admin_edit.php:52
1013
+ msgid "Edit User "
1014
+ msgstr "Muuda kasutajat"
1015
+
1016
+ #: views/admin_edit_level.php:5
1017
+ msgid "Edit membership level"
1018
+ msgstr "Muuda kasutaja taset"
1019
+
1020
+ #: views/admin_edit_level.php:6
1021
+ msgid "Edit membership level."
1022
+ msgstr "Muuda kasutaja taset."
1023
+
1024
+ #: views/admin_edit_level.php:21
1025
+ msgid "No Expiry (Access for this level will not expire until cancelled)"
1026
+ msgstr "Ei aegu (ligipääs sel tasemel ei aegu, kuniks katkestatakse)"
1027
+
1028
+ #: views/admin_edit_level.php:26
1029
+ msgid "Weeks (Access expires after given number of weeks)"
1030
+ msgstr "nädala pärast (ligipääs aegub pärast sisestatud nädalate möödumist)"
1031
+
1032
+ #: views/admin_edit_level.php:41
1033
+ msgid "Edit Membership Level "
1034
+ msgstr "Muuda kasutaja taset"
1035
+
1036
+ #: views/admin_members.php:2
1037
+ msgid "Simple WP Membership::Members"
1038
+ msgstr "Simple WP Membership::Kasutajad"
1039
+
1040
+ #: views/admin_members.php:3 views/admin_members_list.php:30
1041
+ msgid "Add New"
1042
+ msgstr "Lisa uus"
1043
+
1044
+ #: views/admin_membership_levels.php:2
1045
+ msgid "Simple WP Membership::Membership Levels"
1046
+ msgstr "Simple WP Membership::Kasutajate tasemed"
1047
+
1048
+ #: views/admin_membership_levels.php:12 views/admin_members_list.php:6
1049
+ msgid "search"
1050
+ msgstr "otsi"
1051
+
1052
+ #: views/admin_membership_level_menu.php:2
1053
+ msgid "Membership level"
1054
+ msgstr "Kasutaja tase"
1055
+
1056
+ #: views/admin_membership_level_menu.php:3
1057
+ msgid "Manage Content Production"
1058
+ msgstr "Halda sisu loomet"
1059
+
1060
+ #: views/admin_membership_level_menu.php:4
1061
+ msgid "Category Protection"
1062
+ msgstr "Kategooria kaitse"
1063
+
1064
+ #: views/admin_membership_manage.php:17
1065
+ msgid "Example Content Protection Settings"
1066
+ msgstr "Näidissisu kaitse seaded"
1067
+
1068
+ #: views/admin_member_form_common_part.php:23
1069
+ msgid "Gender"
1070
+ msgstr "Sugu"
1071
+
1072
+ #: views/admin_member_form_common_part.php:30 views/edit.php:29
1073
+ msgid "Phone"
1074
+ msgstr "Telefon"
1075
+
1076
+ #: views/admin_member_form_common_part.php:34 views/edit.php:33
1077
+ msgid "Street"
1078
+ msgstr "Tänav/talu"
1079
+
1080
+ #: views/admin_member_form_common_part.php:38 views/edit.php:37
1081
+ msgid "City"
1082
+ msgstr "Linn/vald"
1083
+
1084
+ #: views/admin_member_form_common_part.php:42 views/edit.php:41
1085
+ msgid "State"
1086
+ msgstr "Maakond"
1087
+
1088
+ #: views/admin_member_form_common_part.php:46 views/edit.php:45
1089
+ msgid "Zipcode"
1090
+ msgstr "Postiindeks"
1091
+
1092
+ #: views/admin_member_form_common_part.php:50 views/edit.php:49
1093
+ msgid "Country"
1094
+ msgstr "Riik"
1095
+
1096
+ #: views/admin_member_form_common_part.php:54
1097
+ msgid "Company"
1098
+ msgstr "Ettevõte"
1099
+
1100
+ #: views/admin_member_form_common_part.php:58
1101
+ msgid "Member Since"
1102
+ msgstr "Kasutaja alates"
1103
+
1104
+ #: views/admin_tools_settings.php:9
1105
+ msgid "Generate a Registration Completion link"
1106
+ msgstr "Genereeri registreerimise lõpliku kinnitamise link"
1107
+
1108
+ #: views/admin_tools_settings.php:12
1109
+ msgid ""
1110
+ "You can manually generate a registration completion link here and give it to "
1111
+ "your customer if they have missed the email that was automatically sent out "
1112
+ "to them after the payment."
1113
+ msgstr ""
1114
+ "Siit saad manuaalselt genereerida registreerimise lõpliku kinnituse lingi ja "
1115
+ "anda selle oma kliendile, kui nad on kaotanud neile automaatselt saadetud e-"
1116
+ "kirja, mis saadeti pärast makset."
1117
+
1118
+ #: views/admin_tools_settings.php:17
1119
+ msgid "Generate Registration Completion Link"
1120
+ msgstr "Genereeri registreerimise lõpliku kinnituse link"
1121
+
1122
+ #: views/admin_tools_settings.php:20
1123
+ msgid "OR"
1124
+ msgstr "VÕI"
1125
+
1126
+ #: views/admin_tools_settings.php:21
1127
+ msgid "For All Pending Registrations"
1128
+ msgstr "Kõigile ootel registreerumistele"
1129
+
1130
+ #: views/admin_tools_settings.php:24
1131
+ msgid "Registration Completion Links Will Appear Below:"
1132
+ msgstr "Registreerimise lõpliku kinnituse lingid ilmuvad allpool:"
1133
+
1134
+ #: views/admin_tools_settings.php:31
1135
+ msgid "Send Registration Reminder Email too"
1136
+ msgstr "Saada registreerimise meeldetuletuse e-kirjad ka"
1137
+
1138
+ #: views/admin_tools_settings.php:34
1139
+ msgid "Submit"
1140
+ msgstr "Kinnita"
1141
+
1142
+ #: views/edit.php:59
1143
+ msgid "Update"
1144
+ msgstr "Uuenda"
1145
+
1146
+ #: views/forgot_password.php:12
1147
+ msgid "Reset Password"
1148
+ msgstr "Lähtesta parool"
1149
+
1150
+ #: views/loggedin.php:3
1151
+ msgid "Logged in as"
1152
+ msgstr "Sisseloginud kui"
1153
+
1154
+ #: views/loggedin.php:11
1155
+ msgid "Membership"
1156
+ msgstr "Liikmelisus"
1157
+
1158
+ #: views/loggedin.php:15
1159
+ msgid "Account Expiry"
1160
+ msgstr "Konto kehtivus"
1161
+
1162
+ #: views/loggedin.php:19
1163
+ msgid "Logout"
1164
+ msgstr "Logi välja"
1165
+
1166
+ #: views/login.php:18
1167
+ msgid "Remember Me"
1168
+ msgstr "Jäta mind meelde"
1169
+
1170
+ #: views/login.php:24
1171
+ msgid "Forgot Password"
1172
+ msgstr "Unustasid parooli"
1173
+
1174
+ #: views/payments/admin_all_payment_transactions.php:7
1175
+ msgid "All the payments/transactions of your members are recorded here."
1176
+ msgstr "Kõik sinu kasutajate maksed/tehingus salvestatakse siia."
1177
+
1178
+ #: views/payments/admin_all_payment_transactions.php:14
1179
+ msgid "Search for a transaction by using email or name"
1180
+ msgstr "Otsi tehingut kasutades e-posti aadressi või nime"
1181
+
1182
+ #: views/payments/admin_all_payment_transactions.php:18
1183
+ msgid "Search"
1184
+ msgstr "Otsi"
1185
+
1186
+ #: views/payments/admin_create_payment_buttons.php:13
1187
+ msgid ""
1188
+ "You can create new payment button for your memberships using this interface."
1189
+ msgstr ""
1190
+ "Saad luua uue maksmise nupu oma liikmelisusele, kasutades seda liidest."
1191
+
1192
+ #: views/payments/admin_create_payment_buttons.php:22
1193
+ msgid "Select Payment Button Type"
1194
+ msgstr "Vali maksmise nupu tüüp"
1195
+
1196
+ #: views/payments/admin_create_payment_buttons.php:34
1197
+ msgid "Next"
1198
+ msgstr "Edasi"
1199
+
1200
+ #: views/payments/admin_edit_payment_buttons.php:12
1201
+ msgid "You can edit a payment button using this interface."
1202
+ msgstr "Saad muuta makmise nuppu kasutades seda liidest."
1203
+
1204
+ #: views/payments/admin_payments_page.php:9
1205
+ msgid "Simple Membership::Payments"
1206
+ msgstr "Simple Membership::Maksed"
1207
+
1208
+ #: views/payments/admin_payment_buttons.php:7
1209
+ msgid ""
1210
+ "All the membership buttons that you created in the plugin are displayed here."
1211
+ msgstr "Kõik liikmelisuse nupud, mille oled loonud pluginast, on kuvatud siin."
1212
+
1213
+ #: views/payments/admin_payment_settings.php:31
1214
+ msgid "PayPal Integration Settings"
1215
+ msgstr "PayPal integratsiooni seaded"
1216
+
1217
+ #: views/payments/admin_payment_settings.php:34
1218
+ msgid "Generate the \"Advanced Variables\" Code for your PayPal button"
1219
+ msgstr "Genereeri \"Advanced Variables\" kood oma PayPal nupu jaoks"
1220
+
1221
+ #: views/payments/admin_payment_settings.php:37
1222
+ msgid "Enter the Membership Level ID"
1223
+ msgstr "Sisesta kasutaja taseme ID"
1224
+
1225
+ #: views/payments/admin_payment_settings.php:39
1226
+ msgid "Generate Code"
1227
+ msgstr "Genereeri kood"
1228
+
1229
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:18
1230
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:192
1231
+ msgid "PayPal Buy Now Button Configuration"
1232
+ msgstr "PayPal Osta KOhe nupu konfigureerimine"
1233
+
1234
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:28
1235
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:209
1236
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:29
1237
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:302
1238
+ msgid "Button Title"
1239
+ msgstr "Nupu nimetus"
1240
+
1241
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:46
1242
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:227
1243
+ msgid "Payment Amount"
1244
+ msgstr "Makse summa"
1245
+
1246
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:54
1247
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:235
1248
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:47
1249
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:320
1250
+ msgid "Payment Currency"
1251
+ msgstr "Makse valuuta"
1252
+
1253
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:93
1254
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:274
1255
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:173
1256
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:446
1257
+ msgid "Return URL"
1258
+ msgstr "Tagasituleku URL"
1259
+
1260
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:101
1261
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:282
1262
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:86
1263
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:359
1264
+ msgid "PayPal Email"
1265
+ msgstr "PayPal e-posti aadress"
1266
+
1267
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:109
1268
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:290
1269
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:181
1270
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:454
1271
+ msgid "Button Image URL"
1272
+ msgstr "Nupu pildi URL"
1273
+
1274
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:119
1275
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:300
1276
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:193
1277
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:466
1278
+ msgid "Save Payment Data"
1279
+ msgstr "Salvesta makse andmed"
1280
+
1281
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:201
1282
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:294
1283
+ msgid "Button ID"
1284
+ msgstr "Nupu ID"
1285
+
1286
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:20
1287
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:288
1288
+ msgid "PayPal Subscription Button Configuration"
1289
+ msgstr "PayPal tellimuse nupu konfiguratsioon"
1290
+
1291
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:94
1292
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:367
1293
+ msgid "Billing Amount Each Cycle"
1294
+ msgstr "Makse summa igakordne tsükkel"
1295
+
1296
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:102
1297
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:375
1298
+ msgid "Billing Cycle"
1299
+ msgstr "Makse tsükkel"
1300
+
1301
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:115
1302
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:388
1303
+ msgid "Billing Cycle Count"
1304
+ msgstr "Makse tsükli arv"
1305
+
1306
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:123
1307
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:396
1308
+ msgid "Re-attempt on Failure"
1309
+ msgstr "Ebaõnnestumisel proovi uuesti"
1310
+
1311
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:136
1312
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:409
1313
+ msgid ""
1314
+ "Trial Billing Details (Leave empty if you are not offering a trial period)"
1315
+ msgstr ""
1316
+ "Katselise perioodi makse andmed (jäta tühjaks, kui sa ei paku katselist "
1317
+ "perioodi)"
1318
+
1319
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:142
1320
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:415
1321
+ msgid "Trial Billing Amount"
1322
+ msgstr "Katselise makse perioodi summa"
1323
+
1324
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:150
1325
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:423
1326
+ msgid "Trial Billing Period"
1327
+ msgstr "Katselise makse periood"
1328
+
1329
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:167
1330
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:440
1331
+ msgid "Optional Details"
1332
+ msgstr "Valikulised andmed"
1333
+
1334
+ #: views/payments/payment-gateway/paypal_button_shortcode_view.php:77
1335
+ #: views/payments/payment-gateway/paypal_button_shortcode_view.php:79
1336
+ msgid "Buy Now"
1337
+ msgstr "Osta nüüd"
1338
+
1339
+ #: views/payments/payment-gateway/paypal_button_shortcode_view.php:197
1340
+ #: views/payments/payment-gateway/paypal_button_shortcode_view.php:199
1341
+ msgid "Subscribe Now"
1342
+ msgstr "Liitu nüüd"
languages/swpm-nl_NL.mo CHANGED
Binary file
languages/swpm-nl_NL.po CHANGED
@@ -1,18 +1,18 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Simple WP Membership\n"
4
- "POT-Creation-Date: 2016-05-24 11:52+0200\n"
5
- "PO-Revision-Date: 2016-05-24 15:25+0200\n"
6
- "Last-Translator: \n"
7
- "Language-Team: Robin Roelofsen <info@dreamdesignsolutions.nl>\n"
8
- "Language: nl_NL\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 1.8.7\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: .\n"
 
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
  #: classes/class.simple-wp-membership.php:264
@@ -21,7 +21,7 @@ msgstr "Je bent niet ingelogd."
21
 
22
  #: classes/class.simple-wp-membership.php:298
23
  msgid "Simple WP Membership Protection"
24
- msgstr "Simple WP Membership Afscherming"
25
 
26
  #: classes/class.simple-wp-membership.php:310
27
  msgid "Simple Membership Protection options"
@@ -29,15 +29,15 @@ msgstr "Simple Membership Afscherm opties"
29
 
30
  #: classes/class.simple-wp-membership.php:326
31
  msgid "Do you want to protect this content?"
32
- msgstr "Wil je deze inhoud verbergen?"
33
 
34
  #: classes/class.simple-wp-membership.php:331
35
  msgid "Select the membership level that can access this content:"
36
- msgstr "Selecteer de lidmaatschapniveaus die toegang hebben tot deze inhoud:"
37
 
38
  #: classes/class.simple-wp-membership.php:464
39
  msgid "WP Membership"
40
- msgstr "WP Membership"
41
 
42
  #: classes/class.simple-wp-membership.php:465 classes/class.swpm-members.php:10
43
  #: views/admin_members_menu.php:2
@@ -48,7 +48,7 @@ msgstr "Leden"
48
  #: classes/class.swpm-category-list.php:20
49
  #: classes/class.swpm-membership-levels.php:11
50
  msgid "Membership Levels"
51
- msgstr "Niveaus"
52
 
53
  #: classes/class.simple-wp-membership.php:467
54
  msgid "Settings"
@@ -60,13 +60,13 @@ msgstr "Betalingen"
60
 
61
  #: classes/class.simple-wp-membership.php:469
62
  msgid "Add-ons"
63
- msgstr "Extra Functies"
64
 
65
  #: classes/class.swpm-access-control.php:21
66
  #: classes/class.swpm-access-control.php:28
67
  #: classes/class.swpm-access-control.php:55
68
  msgid "You need to login to view this content. "
69
- msgstr "Je moet inloggen om deze inhoud te kunnen bekijken. "
70
 
71
  #: classes/class.swpm-access-control.php:34
72
  #: classes/class.swpm-access-control.php:60
@@ -74,33 +74,33 @@ msgid ""
74
  "Your account has expired. Please renew your account to gain access to this "
75
  "content."
76
  msgstr ""
77
- "Je lidmaatschap is verlopen. Vernieuw je lidmaatschap om deze inhoud te "
78
- "kunnen bekijken."
79
 
80
  #: classes/class.swpm-access-control.php:41
81
  msgid "This content can only be viewed by members who joined on or before "
82
  msgstr ""
83
- "Deze inhoud kan alleen worden bekeken door leden die lid zijn geworden op of "
84
- "voor "
85
 
86
  #: classes/class.swpm-access-control.php:46
87
  #: classes/class.swpm-access-control.php:66
88
  msgid "This content is not permitted for your membership level."
89
- msgstr "Deze inhoud is niet beschikbaar voor jouw lidmaatschapniveau."
90
 
91
  #: classes/class.swpm-access-control.php:84
92
  msgid " The rest of the content is not permitted for your membership level."
93
  msgstr ""
94
- "De rest van deze inhoud is niet beschikbaar op jouw lidmaatschapniveau."
95
 
96
  #: classes/class.swpm-access-control.php:88
97
  #: classes/class.swpm-access-control.php:106
98
  msgid "You need to login to view the rest of the content. "
99
- msgstr "Je moet inloggen om de rest van de inhoud te kunnen bekijken. "
100
 
101
  #: classes/class.swpm-admin-registration.php:54
102
  msgid "Member record added successfully."
103
- msgstr "Lidmaatschap record met succes toegevoegd."
104
 
105
  #: classes/class.swpm-admin-registration.php:59
106
  #: classes/class.swpm-admin-registration.php:81
@@ -116,15 +116,15 @@ msgstr "Je huidige wachtwoord"
116
 
117
  #: classes/class.swpm-ajax.php:14
118
  msgid "Invalid Email Address"
119
- msgstr "Ongeldig e-mail adres"
120
 
121
  #: classes/class.swpm-ajax.php:21 classes/class.swpm-ajax.php:36
122
  msgid "Aready taken"
123
- msgstr "Bestaat al"
124
 
125
  #: classes/class.swpm-ajax.php:30
126
  msgid "Name contains invalid character"
127
- msgstr "Naam bevat ongeldig karakter"
128
 
129
  #: classes/class.swpm-ajax.php:37
130
  msgid "Available"
@@ -132,23 +132,23 @@ msgstr "Beschikbaar"
132
 
133
  #: classes/class.swpm-auth.php:50
134
  msgid "User Not Found."
135
- msgstr "Gebruiker onbekend."
136
 
137
  #: classes/class.swpm-auth.php:57
138
  msgid "Password Empty or Invalid."
139
- msgstr "Password is niet ingevuld of is ongeldig."
140
 
141
  #: classes/class.swpm-auth.php:82
142
  msgid "Account is inactive."
143
- msgstr "Lidmaatschap niet actief."
144
 
145
  #: classes/class.swpm-auth.php:85
146
  msgid "Account is pending."
147
- msgstr "Lidmaatschap in behandeling."
148
 
149
  #: classes/class.swpm-auth.php:88 classes/class.swpm-auth.php:106
150
  msgid "Account has expired."
151
- msgstr "Lidmaatschap verlopen."
152
 
153
  #: classes/class.swpm-auth.php:114
154
  msgid "You are logged in as:"
@@ -160,7 +160,7 @@ msgstr "Je bent uitgelogd."
160
 
161
  #: classes/class.swpm-auth.php:210
162
  msgid "Session Expired."
163
- msgstr "Sessie is verlopen."
164
 
165
  #: classes/class.swpm-auth.php:219
166
  msgid "Invalid Username"
@@ -168,7 +168,7 @@ msgstr "Ongeldige gebruikersnaam"
168
 
169
  #: classes/class.swpm-auth.php:227
170
  msgid "Please login again."
171
- msgstr "Log nogmaals in."
172
 
173
  #: classes/class.swpm-category-list.php:19 classes/class.swpm-members.php:23
174
  #: classes/class.swpm-membership-levels.php:10
@@ -180,7 +180,7 @@ msgstr "Log nogmaals in."
180
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:37
181
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:310
182
  msgid "Membership Level"
183
- msgstr "Lidmaatschapniveau"
184
 
185
  #: classes/class.swpm-category-list.php:33 classes/class.swpm-members.php:18
186
  #: classes/class.swpm-membership-levels.php:19
@@ -193,7 +193,7 @@ msgstr "Naam"
193
 
194
  #: classes/class.swpm-category-list.php:35
195
  msgid "Description"
196
- msgstr "Omschrijving"
197
 
198
  #: classes/class.swpm-category-list.php:36
199
  msgid "Count"
@@ -207,27 +207,27 @@ msgstr "Categorie afscherming bijgewerkt!"
207
  msgid ""
208
  "Wordpress account exists with given username. But given email doesn't match."
209
  msgstr ""
210
- "Er bestaat een WordPress gebruiker met deze gebruikersnaam. Het opgegeven e-"
211
- "mail adres komt niet overeen."
212
 
213
  #: classes/class.swpm-form.php:31
214
  msgid ""
215
  "Wordpress account exists with given email. But given username doesn't match."
216
  msgstr ""
217
- "Er bestaat een WordPress gebruiker met dit e-mail adres. De opgegeven "
218
- "gebruikersnaam komt niet overeen."
219
 
220
  #: classes/class.swpm-form.php:40
221
  msgid "Username is required"
222
- msgstr "Gebruikersnaam is vereist"
223
 
224
  #: classes/class.swpm-form.php:44
225
  msgid "Username contains invalid character"
226
- msgstr "Gebruikersnaam bevat ongeldig karakter"
227
 
228
  #: classes/class.swpm-form.php:52
229
  msgid "Username already exists."
230
- msgstr "Gebruikersnaam is al in gebruik"
231
 
232
  #: classes/class.swpm-form.php:75
233
  msgid "Password is required"
@@ -235,19 +235,19 @@ msgstr "Wachtwoord is vereist"
235
 
236
  #: classes/class.swpm-form.php:82
237
  msgid "Password mismatch"
238
- msgstr "Wachtwoord klopt niet"
239
 
240
  #: classes/class.swpm-form.php:93
241
  msgid "Email is required"
242
- msgstr "E-mail adres is vereist"
243
 
244
  #: classes/class.swpm-form.php:97
245
  msgid "Email is invalid"
246
- msgstr "E-mail adres is ongeldig"
247
 
248
  #: classes/class.swpm-form.php:113
249
  msgid "Email is already used."
250
- msgstr "E-mail adres is al in gebruik"
251
 
252
  #: classes/class.swpm-form.php:170
253
  msgid "Member since field is invalid"
@@ -255,7 +255,7 @@ msgstr "Lid sinds veld is ongeldig"
255
 
256
  #: classes/class.swpm-form.php:181
257
  msgid "Access starts field is invalid"
258
- msgstr "Toegang begint op veld is ongeldig"
259
 
260
  #: classes/class.swpm-form.php:191
261
  msgid "Gender field is invalid"
@@ -263,19 +263,19 @@ msgstr "Geslacht veld is ongeldig"
263
 
264
  #: classes/class.swpm-form.php:202
265
  msgid "Account state field is invalid"
266
- msgstr "Lidmaatschap status veld is ongeldig"
267
 
268
  #: classes/class.swpm-form.php:209
269
  msgid "Invalid membership level"
270
- msgstr "Ongeldig lidmaatschapniveau"
271
 
272
  #: classes/class.swpm-front-registration.php:71
273
  msgid "Security check: captcha validation failed."
274
- msgstr "Veilgheidscontrole: captcha controle mislukt."
275
 
276
  #: classes/class.swpm-front-registration.php:80
277
  msgid "Registration Successful. "
278
- msgstr "Met succes geregistreerd."
279
 
280
  #: classes/class.swpm-front-registration.php:80
281
  #: classes/class.swpm-settings.php:377
@@ -290,56 +290,56 @@ msgstr "Inloggen"
290
  #: classes/class.swpm-front-registration.php:92
291
  #: classes/class.swpm-front-registration.php:179
292
  msgid "Please correct the following"
293
- msgstr "Corrigeer het volgende"
294
 
295
  #: classes/class.swpm-front-registration.php:123
296
  msgid "Membership Level Couldn't be found."
297
- msgstr "Lidmaatschapniveau niet gevonden."
298
 
299
  #: classes/class.swpm-front-registration.php:162
300
  msgid "Profile updated successfully."
301
- msgstr "Profiel met succes bijgewerkt."
302
 
303
  #: classes/class.swpm-front-registration.php:170
304
  msgid ""
305
  "Profile updated successfully. You will need to re-login since you changed "
306
  "your password."
307
  msgstr ""
308
- "Profiel met succes bijgewerkt. Je moet opnieuw inloggen aangezien je je "
309
- "wachtwoord hebt veranderd."
310
 
311
  #: classes/class.swpm-front-registration.php:189
312
  msgid "Email address not valid."
313
- msgstr "E-mail adres ongeldig"
314
 
315
  #: classes/class.swpm-front-registration.php:200
316
  msgid "No user found with that email address."
317
- msgstr "Geen gebruiker gevonden met dat e-mail adres."
318
 
319
  #: classes/class.swpm-front-registration.php:201
320
  #: classes/class.swpm-front-registration.php:225
321
  msgid "Email Address: "
322
- msgstr "E-mail adres: "
323
 
324
  #: classes/class.swpm-front-registration.php:224
325
  msgid "New password has been sent to your email address."
326
- msgstr "Een nieuw password is naar uw e-mail adres verzonden."
327
 
328
  #: classes/class.swpm-init-time-tasks.php:108
329
  msgid "Sorry, Nonce verification failed."
330
- msgstr "Het spijt me, de nonce verificatie is mislukt."
331
 
332
  #: classes/class.swpm-init-time-tasks.php:115
333
  msgid "Sorry, Password didn't match."
334
- msgstr "Het spijt me, het wachtwoord kwam niet overeen."
335
 
336
  #: classes/class.swpm-level-form.php:47
337
  msgid "Date format is not valid."
338
- msgstr "Datumformaat is niet geldig."
339
 
340
  #: classes/class.swpm-level-form.php:55
341
  msgid "Access duration must be > 0."
342
- msgstr "Toegangsduur moet groter zijn dan 0"
343
 
344
  #: classes/class.swpm-member-utils.php:22
345
  #: classes/class.swpm-member-utils.php:30
@@ -373,15 +373,15 @@ msgstr "Achternaam"
373
 
374
  #: classes/class.swpm-members.php:22 views/add.php:10 views/edit.php:9
375
  msgid "Email"
376
- msgstr "E-mail adres"
377
 
378
  #: classes/class.swpm-members.php:24 views/admin_member_form_common_part.php:11
379
  msgid "Access Starts"
380
- msgstr "Toegang begint op"
381
 
382
  #: classes/class.swpm-members.php:25
383
  msgid "Account State"
384
- msgstr "Lidmaatschap status"
385
 
386
  #: classes/class.swpm-members.php:41
387
  #: classes/class.swpm-membership-levels.php:35
@@ -392,31 +392,31 @@ msgstr "Verwijder"
392
 
393
  #: classes/class.swpm-members.php:42
394
  msgid "Set Status to Active"
395
- msgstr "Zet Status op Actief"
396
 
397
  #: classes/class.swpm-members.php:44
398
  msgid "Set Status to Inactive"
399
- msgstr "Zet Status op Niet Actief"
400
 
401
  #: classes/class.swpm-members.php:45
402
  msgid "Set Status to Pending"
403
- msgstr "Zet Status op In Behandeling"
404
 
405
  #: classes/class.swpm-members.php:46
406
  msgid "Set Status to Expired"
407
- msgstr "Zet Status op Verlopen"
408
 
409
  #: classes/class.swpm-members.php:121
410
  msgid "No Member found."
411
- msgstr "Geen lid gevonden"
412
 
413
  #: classes/class.swpm-membership-level.php:38
414
  msgid "Membership Level Creation Successful."
415
- msgstr "Lidmaatschapniveau met succes aangemaakt."
416
 
417
  #: classes/class.swpm-membership-level.php:57
418
  msgid "Updated Successfully."
419
- msgstr "Met succes bijgewerkt."
420
 
421
  #: classes/class.swpm-membership-levels.php:21
422
  msgid "Role"
@@ -424,7 +424,7 @@ msgstr "Rol"
424
 
425
  #: classes/class.swpm-membership-levels.php:22
426
  msgid "Access Valid For/Until"
427
- msgstr "Toegang geldig gedurende/tot"
428
 
429
  #: classes/class.swpm-misc-utils.php:50
430
  msgid "Registration"
@@ -440,60 +440,60 @@ msgstr "Profiel"
440
 
441
  #: classes/class.swpm-misc-utils.php:119
442
  msgid "Password Reset"
443
- msgstr "Password opnieuw instellen"
444
 
445
  #: classes/class.swpm-settings.php:21 classes/class.swpm-settings.php:39
446
  msgid "General Settings"
447
- msgstr "Algemene Instellingen"
448
 
449
  #: classes/class.swpm-settings.php:21
450
  msgid "Payment Settings"
451
- msgstr "Betalingen"
452
 
453
  #: classes/class.swpm-settings.php:22
454
  msgid "Email Settings"
455
- msgstr "E-mail"
456
 
457
  #: classes/class.swpm-settings.php:22
458
  msgid "Tools"
459
- msgstr "Gereedschappen"
460
 
461
  #: classes/class.swpm-settings.php:22 classes/class.swpm-settings.php:150
462
  msgid "Advanced Settings"
463
- msgstr "Geavanceerd"
464
 
465
  #: classes/class.swpm-settings.php:22
466
  msgid "Addons Settings"
467
- msgstr "Extra Functies"
468
 
469
  #: classes/class.swpm-settings.php:38
470
  msgid "Plugin Documentation"
471
- msgstr "Plug-in Documentatie"
472
 
473
  #: classes/class.swpm-settings.php:40
474
  msgid "Enable Free Membership"
475
- msgstr "Gratis lidmaatschap"
476
 
477
  #: classes/class.swpm-settings.php:41
478
  msgid ""
479
  "Enable/disable registration for free membership level. When you enable this "
480
  "option, make sure to specify a free membership level ID in the field below."
481
  msgstr ""
482
- "Zet registratie voor een gratis lidmaatschapniveau aan of uit. Zorg ervoor "
483
- "dat - wanneer je deze optie aanzet - je het ID van het gratis "
484
- "lidmaatschapniveau in het veld hieronder invult."
485
 
486
  #: classes/class.swpm-settings.php:42
487
  msgid "Free Membership Level ID"
488
- msgstr "Gratis lidmaatschapniveau ID"
489
 
490
  #: classes/class.swpm-settings.php:43
491
  msgid "Assign free membership level ID"
492
- msgstr "Wijs gratis lidmaatschapniveau ID toe"
493
 
494
  #: classes/class.swpm-settings.php:44
495
  msgid "Enable More Tag Protection"
496
- msgstr "Lees Meer tag afscherming"
497
 
498
  #: classes/class.swpm-settings.php:45
499
  msgid ""
@@ -501,60 +501,58 @@ msgid ""
501
  "after the More tag is protected. Anything before the more tag is teaser "
502
  "content."
503
  msgstr ""
504
- "Zet de \"Lees meer\" tag afscherming in berichten en pagina's aan of uit. "
505
- "Alles na de Lees meer tag wordt afgeschermd. Alles voor de Lees meer tag is "
506
- "\"teaser\" inhoud."
507
 
508
  #: classes/class.swpm-settings.php:46
509
  msgid "Hide Adminbar"
510
- msgstr "Verberg de admin balk"
511
 
512
  #: classes/class.swpm-settings.php:47
513
  msgid ""
514
  "WordPress shows an admin toolbar to the logged in users of the site. Check "
515
  "this box if you want to hide that admin toolbar in the fronend of your site."
516
  msgstr ""
517
- "Wordpress toont een admin balk aan de ingelogde gebruikers van de site. Vink "
518
- "dit hokje aan wanneer je de admin balk in het front-end van je site wilt "
519
- "verbergen."
520
 
521
  #: classes/class.swpm-settings.php:49
522
  msgid "Default Account Status"
523
- msgstr "Standaard lidmaatschap status"
524
 
525
  #: classes/class.swpm-settings.php:52
526
  msgid ""
527
  "Select the default account status for newly registered users. If you want to "
528
  "manually approve the members then you can set the status to \"Pending\"."
529
  msgstr ""
530
- "Selecteer de standaard lidmaatschapstatus voor nieuw geregistreerde "
531
- "gebruikers. Wanneer je de leden handmatig wilt toevoegen, kun je de status "
532
- "op \"In behandeling\" zetten."
533
 
534
  #: classes/class.swpm-settings.php:53
535
  msgid "Allow Account Deletion"
536
- msgstr "Lidmaatschap beëindiging"
537
 
538
  #: classes/class.swpm-settings.php:55
539
  msgid "Allow users to delete their accounts."
540
- msgstr "Sta toe dat leden hun lidmaatschap beëindigen."
541
 
542
  #: classes/class.swpm-settings.php:56
543
  msgid "Auto Delete Pending Account"
544
- msgstr "Automatisch verwijderen lidmaatschap in behandeling"
545
 
546
  #: classes/class.swpm-settings.php:59
547
  msgid "Select how long you want to keep \"pending\" account."
548
  msgstr ""
549
- "Selecteer hoe lang je toestaat dat een lidmaatschap \"in behandeling\" is."
550
 
551
  #: classes/class.swpm-settings.php:67
552
  msgid "Pages Settings"
553
- msgstr "Pagina-instellingen"
554
 
555
  #: classes/class.swpm-settings.php:68
556
  msgid "Login Page URL"
557
- msgstr "Inlog pagina URL"
558
 
559
  #: classes/class.swpm-settings.php:70
560
  msgid "Registration Page URL"
@@ -562,33 +560,31 @@ msgstr "Registratie pagina URL"
562
 
563
  #: classes/class.swpm-settings.php:72
564
  msgid "Join Us Page URL"
565
- msgstr "Meld Je Aan pagina URL"
566
 
567
  #: classes/class.swpm-settings.php:74
568
  msgid "Edit Profile Page URL"
569
- msgstr "Bewerk Profiel pagina URL"
570
 
571
  #: classes/class.swpm-settings.php:76
572
  msgid "Password Reset Page URL"
573
- msgstr "Wachtwoord Opnieuw Instellen pagina URL"
574
 
575
  #: classes/class.swpm-settings.php:79
576
  msgid "Test & Debug Settings"
577
- msgstr "Test & Foutopsporingsinstellingen"
578
 
579
  #: classes/class.swpm-settings.php:81
580
  msgid "Check this option to enable debug logging."
581
- msgstr "Zet deze optie aan om foutopsporing aan te zetten."
582
 
583
  #: classes/class.swpm-settings.php:86
584
  msgid "Enable Sandbox Testing"
585
- msgstr "Testen in testomgeving"
586
 
587
  #: classes/class.swpm-settings.php:87
588
  msgid "Enable this option if you want to do sandbox payment testing."
589
- msgstr ""
590
- "Schakel deze optie in wanneer je testbetalingen in de testomgeving wilt "
591
- "uitvoeren."
592
 
593
  #: classes/class.swpm-settings.php:97 classes/class.swpm-settings.php:145
594
  #: classes/class.swpm-settings.php:243
@@ -597,68 +593,70 @@ msgstr "Instellingen bijgewerkt!"
597
 
598
  #: classes/class.swpm-settings.php:102
599
  msgid "Email Misc. Settings"
600
- msgstr "Diverse e-mail berichten"
601
 
602
  #: classes/class.swpm-settings.php:103
603
  msgid "From Email Address"
604
- msgstr "Vanaf e-mail adres"
605
 
606
  #: classes/class.swpm-settings.php:106
607
  msgid "Email Settings (Prompt to Complete Registration )"
608
- msgstr "E-mail bericht (registratie voltooien)"
609
 
610
  #: classes/class.swpm-settings.php:107 classes/class.swpm-settings.php:113
611
  #: classes/class.swpm-settings.php:125 classes/class.swpm-settings.php:132
612
  msgid "Email Subject"
613
- msgstr "E-mail onderwerp"
614
 
615
  #: classes/class.swpm-settings.php:109 classes/class.swpm-settings.php:115
616
  #: classes/class.swpm-settings.php:127 classes/class.swpm-settings.php:134
617
  msgid "Email Body"
618
- msgstr "E-mail bericht"
619
 
620
  #: classes/class.swpm-settings.php:112
621
  msgid "Email Settings (Registration Complete)"
622
- msgstr "E-mail bericht (registratie voltooid)"
623
 
624
  #: classes/class.swpm-settings.php:117
625
  msgid "Send Notification to Admin"
626
- msgstr "Stuur bericht naar beheerder"
627
 
628
  #: classes/class.swpm-settings.php:118
629
  msgid ""
630
  "Enable this option if you want the admin to receive a notification when a "
631
  "member registers."
632
  msgstr ""
633
- "Zet deze optie aan wanneer je wilt dat de beheerder een bericht ontvangt "
634
- "wanneer een nieuw lid zich registreert."
635
 
636
  #: classes/class.swpm-settings.php:119
637
  msgid "Admin Email Address"
638
- msgstr "Beheerder e-mail adres"
639
 
640
  #: classes/class.swpm-settings.php:120
641
  msgid ""
642
  "Enter the email address where you want the admin notification email to be "
643
  "sent to."
644
  msgstr ""
645
- "Voer het e-mail adres in waar je de mail voor de beheerder heen wilt sturen."
 
646
 
647
  #: classes/class.swpm-settings.php:121
648
  msgid "Send Email to Member When Added via Admin Dashboard"
649
- msgstr "Stuur email naar nieuw lid wanneer aangemaakt via het beheer dashboard"
 
650
 
651
  #: classes/class.swpm-settings.php:124
652
  msgid "Email Settings (Password Reset)"
653
- msgstr "E-mail bericht (wachtwoord opnieuw instellen)"
654
 
655
  #: classes/class.swpm-settings.php:131
656
  msgid " Email Settings (Account Upgrade Notification)"
657
- msgstr "E-mail bericht (lidmaatschap opwaarderen)"
658
 
659
  #: classes/class.swpm-settings.php:152
660
  msgid "Enable Expired Account Login"
661
- msgstr "Inloggen verlopen lidmaatschap"
662
 
663
  #: classes/class.swpm-settings.php:153
664
  msgid ""
@@ -666,10 +664,9 @@ msgid ""
666
  "be able to view any protected content. This allows them to easily renew "
667
  "their account by making another payment."
668
  msgstr ""
669
- "Wanneer deze optie aanstaat kunnen leden met een verlopen lidmaatschap "
670
- "inloggen op het systeem, maar kunnen de afgeschermde inhoud dan niet zien. "
671
- "Dit laat ze eenvoudig hun lidmaatschap vernieuwen door een nieuwe betaling "
672
- "te doen."
673
 
674
  #: classes/class.swpm-settings.php:377
675
  msgid "Not a Member?"
@@ -685,7 +682,7 @@ msgstr "Actief"
685
 
686
  #: classes/class.swpm-utils.php:68
687
  msgid "Inactive"
688
- msgstr "Niet actief"
689
 
690
  #: classes/class.swpm-utils.php:69
691
  msgid "Pending"
@@ -701,33 +698,33 @@ msgstr "Nooit"
701
 
702
  #: classes/class.swpm-utils.php:371
703
  msgid "Delete Account"
704
- msgstr "Verwijder lidmaatschap"
705
 
706
  #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:63
707
  msgid "Payment Button ID"
708
- msgstr "Betalingsbutton ID"
709
 
710
  #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:64
711
  msgid "Payment Button Title"
712
- msgstr "Betalingsbutton Titel"
713
 
714
  #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:65
715
  msgid "Membership Level ID"
716
- msgstr "Lidmaatschapniveau ID"
717
 
718
  #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:66
719
  msgid "Button Shortcode"
720
- msgstr "Button Shortcode"
721
 
722
  #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:106
723
  #: views/admin_members_list.php:15
724
  #: views/payments/admin_all_payment_transactions.php:33
725
  msgid "The selected entry was deleted!"
726
- msgstr "De geselecteerde gegevens zijn verwijderd!"
727
 
728
  #: classes/admin-includes/class.swpm-payments-list-table.php:53
729
  msgid "View Profile"
730
- msgstr "Bekijk p[rofiel"
731
 
732
  #: classes/admin-includes/class.swpm-payments-list-table.php:72
733
  msgid "Row ID"
@@ -736,11 +733,11 @@ msgstr "Rij ID"
736
  #: classes/admin-includes/class.swpm-payments-list-table.php:73
737
  #: views/forgot_password.php:5
738
  msgid "Email Address"
739
- msgstr "E-mail adres"
740
 
741
  #: classes/admin-includes/class.swpm-payments-list-table.php:76
742
  msgid "Member Profile"
743
- msgstr "Lid Profiel"
744
 
745
  #: classes/admin-includes/class.swpm-payments-list-table.php:77
746
  msgid "Date"
@@ -760,15 +757,15 @@ msgstr "Lijstweergave"
760
 
761
  #: classes/common/class.swpm-list-table.php:138
762
  msgid "Excerpt View"
763
- msgstr "Uittrekselweergave"
764
 
765
  #: classes/common/class.swpm-list-table.php:305
766
  msgid "No items found."
767
- msgstr "Geen onderdelen gevonden."
768
 
769
  #: classes/common/class.swpm-list-table.php:431
770
  msgid "Select bulk action"
771
- msgstr "Selecteer bulk actie"
772
 
773
  #: classes/common/class.swpm-list-table.php:433
774
  msgid "Bulk Actions"
@@ -780,11 +777,11 @@ msgstr "Toepassen"
780
 
781
  #: classes/common/class.swpm-list-table.php:543
782
  msgid "Filter by date"
783
- msgstr "Filteren op datum"
784
 
785
  #: classes/common/class.swpm-list-table.php:545
786
  msgid "All dates"
787
- msgstr "Alle datums"
788
 
789
  #: classes/common/class.swpm-list-table.php:555
790
  #, php-format
@@ -794,7 +791,7 @@ msgstr "%1$s %2$d"
794
  #: classes/common/class.swpm-list-table.php:599
795
  #, php-format
796
  msgid "%s pending"
797
- msgstr "%s in behandeling"
798
 
799
  #: classes/common/class.swpm-list-table.php:704
800
  msgid "Select Page"
@@ -802,23 +799,23 @@ msgstr "Selecteer pagina"
802
 
803
  #: classes/common/class.swpm-list-table.php:848
804
  msgid "Select All"
805
- msgstr "Selecteer allemaal"
806
 
807
  #: classes/shortcode-related/class.swpm-shortcodes-handler.php:47
808
  msgid "Your membership profile will be updated to reflect the payment."
809
- msgstr "Deze betaling wordt toegevoegd aan jouw lidmaatschap profiel."
810
 
811
  #: classes/shortcode-related/class.swpm-shortcodes-handler.php:48
812
  msgid "Your profile username: "
813
- msgstr "Jouw profiel gebruikersnaam: "
814
 
815
  #: classes/shortcode-related/class.swpm-shortcodes-handler.php:60
816
  msgid "Click on the following link to complete the registration."
817
- msgstr "Klik op de volgende link om de registratie af te ronden."
818
 
819
  #: classes/shortcode-related/class.swpm-shortcodes-handler.php:61
820
  msgid "Click here to complete your paid registration"
821
- msgstr "Klik hier om jouw betaalde registratie af te ronden."
822
 
823
  #: classes/shortcode-related/class.swpm-shortcodes-handler.php:66
824
  msgid ""
@@ -826,38 +823,38 @@ msgid ""
826
  "processed. Please check back in a few minutes. An email will be sent to you "
827
  "with the details shortly."
828
  msgstr ""
829
- "Wanneer je net een lidmaatschap betaling hebt verricht, dan moet de betaling "
830
- "nog worden verwerkt. Probeer het over een aantal minuten nog eens. Je krijgt "
831
- "spoedig een e-mail met de betalingsgegevens."
832
 
833
  #: classes/shortcode-related/class.swpm-shortcodes-handler.php:80
834
  msgid "Expiry: "
835
- msgstr "Verloopt: "
836
 
837
  #: classes/shortcode-related/class.swpm-shortcodes-handler.php:82
838
  msgid "You are not logged-in as a member"
839
- msgstr "Je bent niet als lid aangemeld."
840
 
841
  #: views/add.php:14 views/admin_add.php:19 views/admin_edit.php:17
842
  #: views/edit.php:13 views/login.php:11
843
  msgid "Password"
844
- msgstr "Wachtwoord"
845
 
846
  #: views/add.php:18 views/edit.php:17
847
  msgid "Repeat Password"
848
- msgstr "Herhaal wachtwoord"
849
 
850
  #: views/add.php:41
851
  msgid "Register"
852
- msgstr "Registreer"
853
 
854
  #: views/admin_add.php:6
855
  msgid "Add Member"
856
- msgstr "Voeg een lid toe"
857
 
858
  #: views/admin_add.php:7
859
  msgid "Create a brand new user and add it to this site."
860
- msgstr "Maak een nieuwe gebruiker aan, en voeg deze toe aan de website."
861
 
862
  #: views/admin_add.php:11 views/admin_add.php:15 views/admin_add_level.php:11
863
  #: views/admin_add_level.php:15 views/admin_add_level.php:19
@@ -868,7 +865,7 @@ msgstr "(vereist)"
868
 
869
  #: views/admin_add.php:15 views/admin_edit.php:13
870
  msgid "E-mail"
871
- msgstr "E-mail"
872
 
873
  #: views/admin_add.php:19
874
  msgid "(twice, required)"
@@ -876,7 +873,7 @@ msgstr "(tweemaal, vereist)"
876
 
877
  #: views/admin_add.php:24 views/admin_edit.php:21
878
  msgid "Strength indicator"
879
- msgstr "Sterkte-indicator"
880
 
881
  #: views/admin_add.php:25 views/admin_edit.php:22
882
  msgid ""
@@ -884,17 +881,17 @@ msgid ""
884
  "stronger, use upper and lower case letters, numbers and symbols like ! \" ? "
885
  "$ % ^ &amp; )."
886
  msgstr ""
887
- "Hint: Het wachtwoord moet minimaal zeven karakters bevatten. Gebruik "
888
- "hoofdletters en kleine letters, nummers en symbolen zoals ! \" ? $ % ^ &amp; "
889
- "om het wachtwoord sterker te maken)."
890
 
891
  #: views/admin_add.php:29 views/admin_edit.php:26 views/loggedin.php:7
892
  msgid "Account Status"
893
- msgstr "Lidmaatschap Status"
894
 
895
  #: views/admin_add.php:39
896
  msgid "Add New Member "
897
- msgstr "Voeg een nieuw lid toe"
898
 
899
  #: views/admin_addon_settings.php:3 views/admin_settings.php:3
900
  #: views/admin_tools_settings.php:3 views/payments/admin_payment_settings.php:3
@@ -906,9 +903,8 @@ msgid ""
906
  "Some of the simple membership plugin's addon settings and options will be "
907
  "displayed here (if you have them)"
908
  msgstr ""
909
- "De instellingen en opties van een aantal extra functies voor de Simple "
910
- "Membership plug-in worden hier weergegeven (wanneer je deze hebt "
911
- "geïnstalleerd)"
912
 
913
  #: views/admin_addon_settings.php:13
914
  msgid "Save Changes"
@@ -916,11 +912,11 @@ msgstr "Opslaan"
916
 
917
  #: views/admin_add_level.php:6
918
  msgid "Create new membership level."
919
- msgstr "Maak een nieuw lidmaatschapniveau aan"
920
 
921
  #: views/admin_add_level.php:11 views/admin_edit_level.php:10
922
  msgid "Membership Level Name"
923
- msgstr "Lidmaatschapniveau naam"
924
 
925
  #: views/admin_add_level.php:15 views/admin_edit_level.php:14
926
  msgid "Default WordPress Role"
@@ -928,55 +924,55 @@ msgstr "Standaard WordPress Rol"
928
 
929
  #: views/admin_add_level.php:19 views/admin_edit_level.php:18
930
  msgid "Access Duration"
931
- msgstr "Toegangstijd"
932
 
933
  #: views/admin_add_level.php:22
934
  msgid "No Expiry (Access for this level will not expire until cancelled"
935
  msgstr ""
936
- "Verloopt niet (toegang voor dit niveau verloopt niet tot het wordt opgezegd"
937
 
938
  #: views/admin_add_level.php:23 views/admin_add_level.php:25
939
  #: views/admin_add_level.php:27 views/admin_add_level.php:29
940
  #: views/admin_edit_level.php:22 views/admin_edit_level.php:25
941
  #: views/admin_edit_level.php:28 views/admin_edit_level.php:31
942
  msgid "Expire After"
943
- msgstr "Verloop na"
944
 
945
  #: views/admin_add_level.php:24 views/admin_edit_level.php:23
946
  msgid "Days (Access expires after given number of days)"
947
- msgstr "dagen (toegang verloopt na het aantal opgegeven dagen)"
948
 
949
  #: views/admin_add_level.php:26
950
  msgid "Weeks (Access expires after given number of weeks"
951
- msgstr "weken (toegang verloopt na het aantal opgegeven weken)"
952
 
953
  #: views/admin_add_level.php:28 views/admin_edit_level.php:29
954
  msgid "Months (Access expires after given number of months)"
955
- msgstr "maanden (toegang verloopt na het aantal opgegeven maanden)"
956
 
957
  #: views/admin_add_level.php:30 views/admin_edit_level.php:32
958
  msgid "Years (Access expires after given number of years)"
959
- msgstr "jaren (toegang verloopt na het aantal opgegeven jaren)"
960
 
961
  #: views/admin_add_level.php:31 views/admin_edit_level.php:34
962
  msgid "Fixed Date Expiry"
963
- msgstr "Vaste datum"
964
 
965
  #: views/admin_add_level.php:32 views/admin_edit_level.php:35
966
  msgid "(Access expires on a fixed date)"
967
- msgstr "(toegang verloopt op een vaste datum)"
968
 
969
  #: views/admin_add_level.php:38
970
  msgid "Add New Membership Level "
971
- msgstr "Voeg een nieuw lidmaatschapniveau toe"
972
 
973
  #: views/admin_add_ons_page.php:7
974
  msgid "Simple WP Membership::Add-ons"
975
- msgstr "Simple WP Membership::Extra Functies"
976
 
977
  #: views/admin_category_list.php:2
978
  msgid "Simple WP Membership::Categories"
979
- msgstr "Simple WP Membership::Categorieën"
980
 
981
  #: views/admin_category_list.php:7
982
  msgid ""
@@ -984,9 +980,9 @@ msgid ""
984
  "\"General Protection\" from the drop-down box below and then select the "
985
  "categories that should be protected from non-logged in users."
986
  msgstr ""
987
- "Bescherm als eerste de categorie op jouw site door \"General Protection\" te "
988
- "selecteren in de drop-down box hieronder. Selecteer dan de categorieën die "
989
- "moeten worden beschermd tegen niet-ingelogde gebruikers."
990
 
991
  #: views/admin_category_list.php:10
992
  msgid ""
@@ -994,9 +990,9 @@ msgid ""
994
  "then select the categories you want to grant access to (for that particular "
995
  "membership level)."
996
  msgstr ""
997
- "Selecteer hierna een bestaand lidmaatschapniveau van de drop-down box "
998
- "hieronder, en selecteer dan alle categorieën die je toegang wilt geven (voor "
999
- "dat specifieke lidmaatschapniveau)."
1000
 
1001
  #: views/admin_edit.php:5
1002
  msgid "Edit Member"
@@ -1004,23 +1000,23 @@ msgstr "Bewerk lid"
1004
 
1005
  #: views/admin_edit.php:6
1006
  msgid "Edit existing member details."
1007
- msgstr "Bewerk gegevens bestaand lid."
1008
 
1009
  #: views/admin_edit.php:17
1010
  msgid "(twice, leave empty to retain old password)"
1011
- msgstr "(tweemaal, laat leeg om het oude wachtwoord te behouden)"
1012
 
1013
  #: views/admin_edit.php:33
1014
  msgid "Notify User"
1015
- msgstr "Gebruiker inlichten"
1016
 
1017
  #: views/admin_edit.php:40
1018
  msgid "Subscriber ID/Reference"
1019
- msgstr "Inschrijf ID/Referentie"
1020
 
1021
  #: views/admin_edit.php:44
1022
  msgid "Last Accessed From IP"
1023
- msgstr "Laatst gebruikt vanaf IP"
1024
 
1025
  #: views/admin_edit.php:52
1026
  msgid "Edit User "
@@ -1028,24 +1024,24 @@ msgstr "Wijzig gebruiker"
1028
 
1029
  #: views/admin_edit_level.php:5
1030
  msgid "Edit membership level"
1031
- msgstr "Wijzig lidmaatschapniveau"
1032
 
1033
  #: views/admin_edit_level.php:6
1034
  msgid "Edit membership level."
1035
- msgstr "Wijzig lidmaatschapniveau."
1036
 
1037
  #: views/admin_edit_level.php:21
1038
  msgid "No Expiry (Access for this level will not expire until cancelled)"
1039
  msgstr ""
1040
- "Verloopt niet (toegang voor dit niveau verloopt niet tot het wordt opgezegd)"
1041
 
1042
  #: views/admin_edit_level.php:26
1043
  msgid "Weeks (Access expires after given number of weeks)"
1044
- msgstr "weken (toegang verloopt na het aantal opgegeven weken) ("
1045
 
1046
  #: views/admin_edit_level.php:41
1047
  msgid "Edit Membership Level "
1048
- msgstr "Wijzig lidmaatschap niveau"
1049
 
1050
  #: views/admin_members.php:2
1051
  msgid "Simple WP Membership::Members"
@@ -1053,11 +1049,11 @@ msgstr "Simple WP Membership::Leden"
1053
 
1054
  #: views/admin_members.php:3 views/admin_members_list.php:30
1055
  msgid "Add New"
1056
- msgstr "Voeg nieuw toe"
1057
 
1058
  #: views/admin_membership_levels.php:2
1059
  msgid "Simple WP Membership::Membership Levels"
1060
- msgstr "Simple WP Membership::Lidmaatschapniveaus"
1061
 
1062
  #: views/admin_membership_levels.php:12 views/admin_members_list.php:6
1063
  msgid "search"
@@ -1077,7 +1073,7 @@ msgstr "Categorie Afscherming"
1077
 
1078
  #: views/admin_membership_manage.php:17
1079
  msgid "Example Content Protection Settings"
1080
- msgstr "Voorbeeld inhoud afscherming instellingen"
1081
 
1082
  #: views/admin_member_form_common_part.php:23
1083
  msgid "Gender"
@@ -1117,7 +1113,7 @@ msgstr "Lid sinds"
1117
 
1118
  #: views/admin_tools_settings.php:9
1119
  msgid "Generate a Registration Completion link"
1120
- msgstr "Genereer een Voltooien Registratie link"
1121
 
1122
  #: views/admin_tools_settings.php:12
1123
  msgid ""
@@ -1125,13 +1121,13 @@ msgid ""
1125
  "your customer if they have missed the email that was automatically sent out "
1126
  "to them after the payment."
1127
  msgstr ""
1128
- "Je kunt hier zelf een Voltooien Registratie link genereren en aan je klant "
1129
- "geven, wanneer deze de automatische e-mail die was toegezonden na betaling "
1130
- "heeft gemist."
1131
 
1132
  #: views/admin_tools_settings.php:17
1133
  msgid "Generate Registration Completion Link"
1134
- msgstr "Genereer Voltooien Registratie link"
1135
 
1136
  #: views/admin_tools_settings.php:20
1137
  msgid "OR"
@@ -1139,19 +1135,19 @@ msgstr "OF"
1139
 
1140
  #: views/admin_tools_settings.php:21
1141
  msgid "For All Pending Registrations"
1142
- msgstr "Voor alle in behandeling zijnde registraties"
1143
 
1144
  #: views/admin_tools_settings.php:24
1145
  msgid "Registration Completion Links Will Appear Below:"
1146
- msgstr "De Voltooien Registratie link verschijnt hieronder:"
1147
 
1148
  #: views/admin_tools_settings.php:31
1149
  msgid "Send Registration Reminder Email too"
1150
- msgstr "Stuur ook een registratie herinnering "
1151
 
1152
  #: views/admin_tools_settings.php:34
1153
  msgid "Submit"
1154
- msgstr "Verstuur"
1155
 
1156
  #: views/edit.php:59
1157
  msgid "Update"
@@ -1159,7 +1155,7 @@ msgstr "Bijwerken"
1159
 
1160
  #: views/forgot_password.php:12
1161
  msgid "Reset Password"
1162
- msgstr "Wachtwoord opnieuw instellen"
1163
 
1164
  #: views/loggedin.php:3
1165
  msgid "Logged in as"
@@ -1171,7 +1167,7 @@ msgstr "Lidmaatschap"
1171
 
1172
  #: views/loggedin.php:15
1173
  msgid "Account Expiry"
1174
- msgstr "Lidmaatschap verloopt"
1175
 
1176
  #: views/loggedin.php:19
1177
  msgid "Logout"
@@ -1179,7 +1175,7 @@ msgstr "Uitloggen"
1179
 
1180
  #: views/login.php:18
1181
  msgid "Remember Me"
1182
- msgstr "Onthoud mijn gegevens"
1183
 
1184
  #: views/login.php:24
1185
  msgid "Forgot Password"
@@ -1187,45 +1183,43 @@ msgstr "Wachtwoord vergeten"
1187
 
1188
  #: views/payments/admin_all_payment_transactions.php:7
1189
  msgid "All the payments/transactions of your members are recorded here."
1190
- msgstr "Alle betalingen en transacties van jouw leden worden hier bijgehouden."
1191
 
1192
  #: views/payments/admin_all_payment_transactions.php:14
1193
  msgid "Search for a transaction by using email or name"
1194
- msgstr "Zoek voor een transactie op e-mail adres of naam"
1195
 
1196
  #: views/payments/admin_all_payment_transactions.php:18
1197
  msgid "Search"
1198
- msgstr "Zoeken"
1199
 
1200
  #: views/payments/admin_create_payment_buttons.php:13
1201
  msgid ""
1202
  "You can create new payment button for your memberships using this interface."
1203
  msgstr ""
1204
- "Je kunt via dit scherm een nieuwe betalingsbutton voor jouw lidmaatschappen "
1205
- "maken."
1206
 
1207
  #: views/payments/admin_create_payment_buttons.php:22
1208
  msgid "Select Payment Button Type"
1209
- msgstr "Selecteer betalingsbutton soort"
1210
 
1211
  #: views/payments/admin_create_payment_buttons.php:34
1212
  msgid "Next"
1213
- msgstr "Volgende"
1214
 
1215
  #: views/payments/admin_edit_payment_buttons.php:12
1216
  msgid "You can edit a payment button using this interface."
1217
- msgstr "Je kunt via dit scherm een betalingsbutton bewerken."
1218
 
1219
  #: views/payments/admin_payments_page.php:9
1220
  msgid "Simple Membership::Payments"
1221
- msgstr "Simple Membership::Betalingen"
1222
 
1223
  #: views/payments/admin_payment_buttons.php:7
1224
  msgid ""
1225
  "All the membership buttons that you created in the plugin are displayed here."
1226
- msgstr ""
1227
- "Alle lidmaatschapbuttons die je in deze plug-in hebt gemaakt staan "
1228
- "hieronder."
1229
 
1230
  #: views/payments/admin_payment_settings.php:31
1231
  msgid "PayPal Integration Settings"
@@ -1233,32 +1227,32 @@ msgstr "PayPal Integratie Instellingen"
1233
 
1234
  #: views/payments/admin_payment_settings.php:34
1235
  msgid "Generate the \"Advanced Variables\" Code for your PayPal button"
1236
- msgstr "Genereer de \"Geavanceerde Variabelen\" code voor je PayPal button"
1237
 
1238
  #: views/payments/admin_payment_settings.php:37
1239
  msgid "Enter the Membership Level ID"
1240
- msgstr "Voer het lidmaatschapniveau ID in"
1241
 
1242
  #: views/payments/admin_payment_settings.php:39
1243
  msgid "Generate Code"
1244
- msgstr "Genereer de code"
1245
 
1246
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:18
1247
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:192
1248
  msgid "PayPal Buy Now Button Configuration"
1249
- msgstr "PayPal Koop Nu Button Configuratie"
1250
 
1251
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:28
1252
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:209
1253
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:29
1254
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:302
1255
  msgid "Button Title"
1256
- msgstr "Button Titel"
1257
 
1258
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:46
1259
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:227
1260
  msgid "Payment Amount"
1261
- msgstr "Betalingsbedrag"
1262
 
1263
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:54
1264
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:235
@@ -1272,80 +1266,80 @@ msgstr "Betalingsvaluta"
1272
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:173
1273
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:446
1274
  msgid "Return URL"
1275
- msgstr "Terugkeer URL"
1276
 
1277
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:101
1278
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:282
1279
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:86
1280
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:359
1281
  msgid "PayPal Email"
1282
- msgstr "PayPal e-mail adres"
1283
 
1284
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:109
1285
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:290
1286
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:181
1287
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:454
1288
  msgid "Button Image URL"
1289
- msgstr "Button Afbeelding URL"
1290
 
1291
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:119
1292
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:300
1293
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:193
1294
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:466
1295
  msgid "Save Payment Data"
1296
- msgstr "Bewaar betalingsgegevens"
1297
 
1298
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:201
1299
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:294
1300
  msgid "Button ID"
1301
- msgstr "Button ID"
1302
 
1303
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:20
1304
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:288
1305
  msgid "PayPal Subscription Button Configuration"
1306
- msgstr "PayPal Abonnement Button Configuratie"
1307
 
1308
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:94
1309
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:367
1310
  msgid "Billing Amount Each Cycle"
1311
- msgstr "Betalingsbedrag per periode"
1312
 
1313
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:102
1314
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:375
1315
  msgid "Billing Cycle"
1316
- msgstr "Betalingsperiode"
1317
 
1318
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:115
1319
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:388
1320
  msgid "Billing Cycle Count"
1321
- msgstr "Betalingsperiode Aantal"
1322
 
1323
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:123
1324
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:396
1325
  msgid "Re-attempt on Failure"
1326
- msgstr "Nogmaals proberen bij probleem"
1327
 
1328
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:136
1329
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:409
1330
  msgid ""
1331
  "Trial Billing Details (Leave empty if you are not offering a trial period)"
1332
  msgstr ""
1333
- "Proef Betalingsgegevens (leeglaten wanneer je geen proefperiode aanbiedt)"
1334
 
1335
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:142
1336
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:415
1337
  msgid "Trial Billing Amount"
1338
- msgstr "Proef Betalingsbedrag"
1339
 
1340
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:150
1341
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:423
1342
  msgid "Trial Billing Period"
1343
- msgstr "Proef Betalingsperiode"
1344
 
1345
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:167
1346
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:440
1347
  msgid "Optional Details"
1348
- msgstr "Optionele Gegevens"
1349
 
1350
  #: views/payments/payment-gateway/paypal_button_shortcode_view.php:77
1351
  #: views/payments/payment-gateway/paypal_button_shortcode_view.php:79
@@ -1355,75 +1349,4 @@ msgstr "Koop Nu"
1355
  #: views/payments/payment-gateway/paypal_button_shortcode_view.php:197
1356
  #: views/payments/payment-gateway/paypal_button_shortcode_view.php:199
1357
  msgid "Subscribe Now"
1358
- msgstr "Meld Je Nu Aan"
1359
-
1360
- #~ msgid "You are not allowed to view this content"
1361
- #~ msgstr "U bent niet gemachtigd deze inhoud te bekijken."
1362
-
1363
- #~ msgid "Registration Successful."
1364
- #~ msgstr "Registratie is gelukt."
1365
-
1366
- #~ msgid "Invalid User Name"
1367
- #~ msgstr "Ongeldige gebruikersnaam"
1368
-
1369
- #~ msgid "Bad Cookie Hash"
1370
- #~ msgstr "Verkeerde Cookie hash"
1371
-
1372
- #~ msgid ""
1373
- #~ "Wordpress account exists with given user name. But given email doesn't "
1374
- #~ "match."
1375
- #~ msgstr ""
1376
- #~ "Het Wordpress account met deze gebruikersnaam bestaat. Maar het email "
1377
- #~ "adres klopt niet. "
1378
-
1379
- #~ msgid ""
1380
- #~ "Wordpress account exists with given email. But given user name doesn't "
1381
- #~ "match."
1382
- #~ msgstr ""
1383
- #~ "Dit Wordpress account met dit email adres bestaat maar de gebruikersnaam "
1384
- #~ "klopt niet."
1385
-
1386
- #~ msgid "User name is required"
1387
- #~ msgstr "De gebruikersnaam is vereist."
1388
-
1389
- #~ msgid "User name already exists."
1390
- #~ msgstr "Deze gebruikersnaam bestaat reeds."
1391
-
1392
- #~ msgid "Subscription starts field is invalid"
1393
- #~ msgstr "Inschrijving start veld is ongeldig"
1394
-
1395
- #~ msgid "Email Address Not Valid."
1396
- #~ msgstr "Email adres is ongeldig."
1397
-
1398
- #~ msgid "Subscriptoin duration must be > 0."
1399
- #~ msgstr "Duur van lidmaatschap moet groter zijn dan 0."
1400
-
1401
- #~ msgid "User Name"
1402
- #~ msgstr "Gebruikersnaam"
1403
-
1404
- #~ msgid "Subscription Starts"
1405
- #~ msgstr "Inschrijving start"
1406
-
1407
- #~ msgid "Subscription Valid For"
1408
- #~ msgstr "Inschrijving geldig voor"
1409
-
1410
- #~ msgid "Enable/disable registration for free membership level"
1411
- #~ msgstr "Inschakelen/uitschakelen van registratie voor gratis Lidmaatschap"
1412
-
1413
- #~ msgid "Send Notification To Admin"
1414
- #~ msgstr "Stuur een bericht naar de beheerder"
1415
-
1416
- #~ msgid "Display SWPM Login."
1417
- #~ msgstr "Toon SWPM login"
1418
-
1419
- #~ msgid "SWPM Login"
1420
- #~ msgstr "SWPM Login"
1421
-
1422
- #~ msgid "User name"
1423
- #~ msgstr "Gebruikersnaam"
1424
-
1425
- #~ msgid "Subscription Duration"
1426
- #~ msgstr "Inschrijftermijn"
1427
-
1428
- #~ msgid "No Expiry"
1429
- #~ msgstr "Verloopt niet"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: simple membership\n"
4
+ "POT-Creation-Date: 2016-08-16 16:04+0300\n"
5
+ "PO-Revision-Date: 2016-08-17 13:06+0300\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.8\n"
11
  "X-Poedit-KeywordsList: __;_e\n"
12
  "X-Poedit-Basepath: .\n"
13
+ "Last-Translator: Websites with a Heart <info@websiteswithaheart.com>\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "Language: nl_NL\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
  #: classes/class.simple-wp-membership.php:264
21
 
22
  #: classes/class.simple-wp-membership.php:298
23
  msgid "Simple WP Membership Protection"
24
+ msgstr "Simple WP Lidmaatschap Afscherming"
25
 
26
  #: classes/class.simple-wp-membership.php:310
27
  msgid "Simple Membership Protection options"
29
 
30
  #: classes/class.simple-wp-membership.php:326
31
  msgid "Do you want to protect this content?"
32
+ msgstr "Wil je deze inhoud afschermen?"
33
 
34
  #: classes/class.simple-wp-membership.php:331
35
  msgid "Select the membership level that can access this content:"
36
+ msgstr "Selecteer het lidmaatschap niveau dat toegang heeft tot deze inhoud:"
37
 
38
  #: classes/class.simple-wp-membership.php:464
39
  msgid "WP Membership"
40
+ msgstr "WP Lidmaatschap"
41
 
42
  #: classes/class.simple-wp-membership.php:465 classes/class.swpm-members.php:10
43
  #: views/admin_members_menu.php:2
48
  #: classes/class.swpm-category-list.php:20
49
  #: classes/class.swpm-membership-levels.php:11
50
  msgid "Membership Levels"
51
+ msgstr "Lidmaatschap niveaus"
52
 
53
  #: classes/class.simple-wp-membership.php:467
54
  msgid "Settings"
60
 
61
  #: classes/class.simple-wp-membership.php:469
62
  msgid "Add-ons"
63
+ msgstr "Add-Ons/Extensies"
64
 
65
  #: classes/class.swpm-access-control.php:21
66
  #: classes/class.swpm-access-control.php:28
67
  #: classes/class.swpm-access-control.php:55
68
  msgid "You need to login to view this content. "
69
+ msgstr "Je moet inloggen om deze inhoud te bekijken. "
70
 
71
  #: classes/class.swpm-access-control.php:34
72
  #: classes/class.swpm-access-control.php:60
74
  "Your account has expired. Please renew your account to gain access to this "
75
  "content."
76
  msgstr ""
77
+ "Je account is verlopen. Vernieuw je account om toegang tot deze inhoud te "
78
+ "krijgen."
79
 
80
  #: classes/class.swpm-access-control.php:41
81
  msgid "This content can only be viewed by members who joined on or before "
82
  msgstr ""
83
+ "Deze content kan alleen bekeken worden door leden die lid zijn geworden op "
84
+ "of voor "
85
 
86
  #: classes/class.swpm-access-control.php:46
87
  #: classes/class.swpm-access-control.php:66
88
  msgid "This content is not permitted for your membership level."
89
+ msgstr "Deze inhoud is niet toegankelijk voor jouw lidmaatschap."
90
 
91
  #: classes/class.swpm-access-control.php:84
92
  msgid " The rest of the content is not permitted for your membership level."
93
  msgstr ""
94
+ "De rest van de inhoud is niet toegankelijk voor jouw lidmaatschapsniveau."
95
 
96
  #: classes/class.swpm-access-control.php:88
97
  #: classes/class.swpm-access-control.php:106
98
  msgid "You need to login to view the rest of the content. "
99
+ msgstr "Je moet inloggen om de rest van deze inhoud te bekijken."
100
 
101
  #: classes/class.swpm-admin-registration.php:54
102
  msgid "Member record added successfully."
103
+ msgstr "Lid succesvol toegevoegd"
104
 
105
  #: classes/class.swpm-admin-registration.php:59
106
  #: classes/class.swpm-admin-registration.php:81
116
 
117
  #: classes/class.swpm-ajax.php:14
118
  msgid "Invalid Email Address"
119
+ msgstr "Ongeldig e-mailadres"
120
 
121
  #: classes/class.swpm-ajax.php:21 classes/class.swpm-ajax.php:36
122
  msgid "Aready taken"
123
+ msgstr "Al bezet"
124
 
125
  #: classes/class.swpm-ajax.php:30
126
  msgid "Name contains invalid character"
127
+ msgstr "Naam bevat ongeldig teken"
128
 
129
  #: classes/class.swpm-ajax.php:37
130
  msgid "Available"
132
 
133
  #: classes/class.swpm-auth.php:50
134
  msgid "User Not Found."
135
+ msgstr "Gebruiker niet gevonden."
136
 
137
  #: classes/class.swpm-auth.php:57
138
  msgid "Password Empty or Invalid."
139
+ msgstr "Wachtwoord leeg of ongeldig."
140
 
141
  #: classes/class.swpm-auth.php:82
142
  msgid "Account is inactive."
143
+ msgstr "Dit account is niet actief."
144
 
145
  #: classes/class.swpm-auth.php:85
146
  msgid "Account is pending."
147
+ msgstr "Deze account is in behandeling voor activering."
148
 
149
  #: classes/class.swpm-auth.php:88 classes/class.swpm-auth.php:106
150
  msgid "Account has expired."
151
+ msgstr "Account is verlopen."
152
 
153
  #: classes/class.swpm-auth.php:114
154
  msgid "You are logged in as:"
160
 
161
  #: classes/class.swpm-auth.php:210
162
  msgid "Session Expired."
163
+ msgstr "Sessie verlopen."
164
 
165
  #: classes/class.swpm-auth.php:219
166
  msgid "Invalid Username"
168
 
169
  #: classes/class.swpm-auth.php:227
170
  msgid "Please login again."
171
+ msgstr "Opnieuw inloggen alsjeblieft."
172
 
173
  #: classes/class.swpm-category-list.php:19 classes/class.swpm-members.php:23
174
  #: classes/class.swpm-membership-levels.php:10
180
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:37
181
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:310
182
  msgid "Membership Level"
183
+ msgstr "Lidmaatschap niveau"
184
 
185
  #: classes/class.swpm-category-list.php:33 classes/class.swpm-members.php:18
186
  #: classes/class.swpm-membership-levels.php:19
193
 
194
  #: classes/class.swpm-category-list.php:35
195
  msgid "Description"
196
+ msgstr "Omschijving"
197
 
198
  #: classes/class.swpm-category-list.php:36
199
  msgid "Count"
207
  msgid ""
208
  "Wordpress account exists with given username. But given email doesn't match."
209
  msgstr ""
210
+ "Wordpress account met gebruikersnaam bestaat. Maar het email adres komt niet "
211
+ "overeen."
212
 
213
  #: classes/class.swpm-form.php:31
214
  msgid ""
215
  "Wordpress account exists with given email. But given username doesn't match."
216
  msgstr ""
217
+ "Wordpress account met email adres bestaat, Maar gebruikersnaam komt niet "
218
+ "overeen."
219
 
220
  #: classes/class.swpm-form.php:40
221
  msgid "Username is required"
222
+ msgstr "Gebruikersnaam is verplicht."
223
 
224
  #: classes/class.swpm-form.php:44
225
  msgid "Username contains invalid character"
226
+ msgstr "Gebruikersnaam bevat ongeldig teken"
227
 
228
  #: classes/class.swpm-form.php:52
229
  msgid "Username already exists."
230
+ msgstr "Gebruikersnaam bestaat al"
231
 
232
  #: classes/class.swpm-form.php:75
233
  msgid "Password is required"
235
 
236
  #: classes/class.swpm-form.php:82
237
  msgid "Password mismatch"
238
+ msgstr "Wachtwoorden komen niet overeen"
239
 
240
  #: classes/class.swpm-form.php:93
241
  msgid "Email is required"
242
+ msgstr "Email is vereist"
243
 
244
  #: classes/class.swpm-form.php:97
245
  msgid "Email is invalid"
246
+ msgstr "Email is niet geldig"
247
 
248
  #: classes/class.swpm-form.php:113
249
  msgid "Email is already used."
250
+ msgstr "Email is al in gebruik."
251
 
252
  #: classes/class.swpm-form.php:170
253
  msgid "Member since field is invalid"
255
 
256
  #: classes/class.swpm-form.php:181
257
  msgid "Access starts field is invalid"
258
+ msgstr "Inschrijving start veld is ongeldig"
259
 
260
  #: classes/class.swpm-form.php:191
261
  msgid "Gender field is invalid"
263
 
264
  #: classes/class.swpm-form.php:202
265
  msgid "Account state field is invalid"
266
+ msgstr "Account status veld is ongeldig"
267
 
268
  #: classes/class.swpm-form.php:209
269
  msgid "Invalid membership level"
270
+ msgstr "Ongeldige lidmaatschap niveau"
271
 
272
  #: classes/class.swpm-front-registration.php:71
273
  msgid "Security check: captcha validation failed."
274
+ msgstr "Security check: captcha validatie mislukt."
275
 
276
  #: classes/class.swpm-front-registration.php:80
277
  msgid "Registration Successful. "
278
+ msgstr "Registratie gelukt."
279
 
280
  #: classes/class.swpm-front-registration.php:80
281
  #: classes/class.swpm-settings.php:377
290
  #: classes/class.swpm-front-registration.php:92
291
  #: classes/class.swpm-front-registration.php:179
292
  msgid "Please correct the following"
293
+ msgstr "Corrigeer alsjeblieft het volgende"
294
 
295
  #: classes/class.swpm-front-registration.php:123
296
  msgid "Membership Level Couldn't be found."
297
+ msgstr "Lidmaatschap niveau kon niet worden gevonden."
298
 
299
  #: classes/class.swpm-front-registration.php:162
300
  msgid "Profile updated successfully."
301
+ msgstr "Profiel succesvol bijgewerkt"
302
 
303
  #: classes/class.swpm-front-registration.php:170
304
  msgid ""
305
  "Profile updated successfully. You will need to re-login since you changed "
306
  "your password."
307
  msgstr ""
308
+ "Profiel succesvol bijgewerkt. Je moet opnieuw inloggen omdat je wachtwoord "
309
+ "veranderd is."
310
 
311
  #: classes/class.swpm-front-registration.php:189
312
  msgid "Email address not valid."
313
+ msgstr "Dit e-mailadres is ongeldig."
314
 
315
  #: classes/class.swpm-front-registration.php:200
316
  msgid "No user found with that email address."
317
+ msgstr "Geen gebruiker gevonden met dit e-mailadres."
318
 
319
  #: classes/class.swpm-front-registration.php:201
320
  #: classes/class.swpm-front-registration.php:225
321
  msgid "Email Address: "
322
+ msgstr "E-mailadres:"
323
 
324
  #: classes/class.swpm-front-registration.php:224
325
  msgid "New password has been sent to your email address."
326
+ msgstr "Een nieuw wachtwoord is naar je email adres verzonden."
327
 
328
  #: classes/class.swpm-init-time-tasks.php:108
329
  msgid "Sorry, Nonce verification failed."
330
+ msgstr "Sorry, Nonce verificatie mislukt."
331
 
332
  #: classes/class.swpm-init-time-tasks.php:115
333
  msgid "Sorry, Password didn't match."
334
+ msgstr "Sorry, wachtwoord komt niet overeen."
335
 
336
  #: classes/class.swpm-level-form.php:47
337
  msgid "Date format is not valid."
338
+ msgstr "Datumnotatie is niet geldig."
339
 
340
  #: classes/class.swpm-level-form.php:55
341
  msgid "Access duration must be > 0."
342
+ msgstr "Duur van toegang moet groter zijn dan 0."
343
 
344
  #: classes/class.swpm-member-utils.php:22
345
  #: classes/class.swpm-member-utils.php:30
373
 
374
  #: classes/class.swpm-members.php:22 views/add.php:10 views/edit.php:9
375
  msgid "Email"
376
+ msgstr "Email adres"
377
 
378
  #: classes/class.swpm-members.php:24 views/admin_member_form_common_part.php:11
379
  msgid "Access Starts"
380
+ msgstr "Toegang begint"
381
 
382
  #: classes/class.swpm-members.php:25
383
  msgid "Account State"
384
+ msgstr "Account status"
385
 
386
  #: classes/class.swpm-members.php:41
387
  #: classes/class.swpm-membership-levels.php:35
392
 
393
  #: classes/class.swpm-members.php:42
394
  msgid "Set Status to Active"
395
+ msgstr "Status instellen op actief"
396
 
397
  #: classes/class.swpm-members.php:44
398
  msgid "Set Status to Inactive"
399
+ msgstr "Status instellen op niet-actief"
400
 
401
  #: classes/class.swpm-members.php:45
402
  msgid "Set Status to Pending"
403
+ msgstr "Status instellen op in afwachting"
404
 
405
  #: classes/class.swpm-members.php:46
406
  msgid "Set Status to Expired"
407
+ msgstr "Status instellen op verlopen"
408
 
409
  #: classes/class.swpm-members.php:121
410
  msgid "No Member found."
411
+ msgstr "Geen leden gevonden."
412
 
413
  #: classes/class.swpm-membership-level.php:38
414
  msgid "Membership Level Creation Successful."
415
+ msgstr "Lidmaatschap niveau met succes aangemaakt."
416
 
417
  #: classes/class.swpm-membership-level.php:57
418
  msgid "Updated Successfully."
419
+ msgstr "Succesvol bijgewerkt."
420
 
421
  #: classes/class.swpm-membership-levels.php:21
422
  msgid "Role"
424
 
425
  #: classes/class.swpm-membership-levels.php:22
426
  msgid "Access Valid For/Until"
427
+ msgstr "Toegang geldig voor/tot"
428
 
429
  #: classes/class.swpm-misc-utils.php:50
430
  msgid "Registration"
440
 
441
  #: classes/class.swpm-misc-utils.php:119
442
  msgid "Password Reset"
443
+ msgstr "Wachtwoord herstel"
444
 
445
  #: classes/class.swpm-settings.php:21 classes/class.swpm-settings.php:39
446
  msgid "General Settings"
447
+ msgstr "Algemene instellingen"
448
 
449
  #: classes/class.swpm-settings.php:21
450
  msgid "Payment Settings"
451
+ msgstr "Betaling instellingen"
452
 
453
  #: classes/class.swpm-settings.php:22
454
  msgid "Email Settings"
455
+ msgstr "E-mail instellingen"
456
 
457
  #: classes/class.swpm-settings.php:22
458
  msgid "Tools"
459
+ msgstr "Tools"
460
 
461
  #: classes/class.swpm-settings.php:22 classes/class.swpm-settings.php:150
462
  msgid "Advanced Settings"
463
+ msgstr "Geavanceerde instellingen"
464
 
465
  #: classes/class.swpm-settings.php:22
466
  msgid "Addons Settings"
467
+ msgstr "Addon Instellingen"
468
 
469
  #: classes/class.swpm-settings.php:38
470
  msgid "Plugin Documentation"
471
+ msgstr "Plugin Documentatie"
472
 
473
  #: classes/class.swpm-settings.php:40
474
  msgid "Enable Free Membership"
475
+ msgstr "Gratis Lidmaatschap Inschakelen"
476
 
477
  #: classes/class.swpm-settings.php:41
478
  msgid ""
479
  "Enable/disable registration for free membership level. When you enable this "
480
  "option, make sure to specify a free membership level ID in the field below."
481
  msgstr ""
482
+ "In-/uitschakelen registratie voor gratis lidmaatschap niveau. Als je deze "
483
+ "optie inschakelt, zorg er dan voor dat je een gratis lidmaatschap niveau ID "
484
+ "opgeeft in het veld hieronder."
485
 
486
  #: classes/class.swpm-settings.php:42
487
  msgid "Free Membership Level ID"
488
+ msgstr "Gratis Lidmaatschap Niveau ID"
489
 
490
  #: classes/class.swpm-settings.php:43
491
  msgid "Assign free membership level ID"
492
+ msgstr "Gratis lidmaatschap niveau ID toewijzen"
493
 
494
  #: classes/class.swpm-settings.php:44
495
  msgid "Enable More Tag Protection"
496
+ msgstr "Inschakelen Meer Tag Afscherming"
497
 
498
  #: classes/class.swpm-settings.php:45
499
  msgid ""
501
  "after the More tag is protected. Anything before the more tag is teaser "
502
  "content."
503
  msgstr ""
504
+ "Schakelt \"meer\" tag bescherming in berichten en pagina's. Alles wat na de "
505
+ "Meer tag komt is afgeschermd. Alles voor de meer tag is teaser inhoud."
 
506
 
507
  #: classes/class.swpm-settings.php:46
508
  msgid "Hide Adminbar"
509
+ msgstr "Verberg de adminbalk"
510
 
511
  #: classes/class.swpm-settings.php:47
512
  msgid ""
513
  "WordPress shows an admin toolbar to the logged in users of the site. Check "
514
  "this box if you want to hide that admin toolbar in the fronend of your site."
515
  msgstr ""
516
+ "Wordpress toont aan ingelogde gebruikers een adminbalk. Vink dit hokje aan "
517
+ "als je de adminbalk in de frontend van je website wilt verbergen."
 
518
 
519
  #: classes/class.swpm-settings.php:49
520
  msgid "Default Account Status"
521
+ msgstr "Standaard Lidmaatschap Status"
522
 
523
  #: classes/class.swpm-settings.php:52
524
  msgid ""
525
  "Select the default account status for newly registered users. If you want to "
526
  "manually approve the members then you can set the status to \"Pending\"."
527
  msgstr ""
528
+ "Selecteer de standaard lidmaatschap status van nieuw geregistreerde "
529
+ "gebruikers. Als je leden handmatig wilt goedkeuren, stel dan de status \"In "
530
+ "afwachting\" in."
531
 
532
  #: classes/class.swpm-settings.php:53
533
  msgid "Allow Account Deletion"
534
+ msgstr "Lidmaatschap verwijderen toestaan"
535
 
536
  #: classes/class.swpm-settings.php:55
537
  msgid "Allow users to delete their accounts."
538
+ msgstr "Toestaan dat gebruikers hun lidmaatschap kunnen verwijderen."
539
 
540
  #: classes/class.swpm-settings.php:56
541
  msgid "Auto Delete Pending Account"
542
+ msgstr "Automatisch verwijderen account in afwachting"
543
 
544
  #: classes/class.swpm-settings.php:59
545
  msgid "Select how long you want to keep \"pending\" account."
546
  msgstr ""
547
+ "Selecteer hoe lang je een lidmaatschap \"in afwachting\" wilt aanhouden."
548
 
549
  #: classes/class.swpm-settings.php:67
550
  msgid "Pages Settings"
551
+ msgstr "Pagina instellingen"
552
 
553
  #: classes/class.swpm-settings.php:68
554
  msgid "Login Page URL"
555
+ msgstr "Login pagina URL"
556
 
557
  #: classes/class.swpm-settings.php:70
558
  msgid "Registration Page URL"
560
 
561
  #: classes/class.swpm-settings.php:72
562
  msgid "Join Us Page URL"
563
+ msgstr "Aanmeld pagina URL"
564
 
565
  #: classes/class.swpm-settings.php:74
566
  msgid "Edit Profile Page URL"
567
+ msgstr "Wijzig Profiel pagina URL"
568
 
569
  #: classes/class.swpm-settings.php:76
570
  msgid "Password Reset Page URL"
571
+ msgstr "Wachtwoord Reset pagina URL"
572
 
573
  #: classes/class.swpm-settings.php:79
574
  msgid "Test & Debug Settings"
575
+ msgstr "Test & Debug instellingen"
576
 
577
  #: classes/class.swpm-settings.php:81
578
  msgid "Check this option to enable debug logging."
579
+ msgstr "Schakel deze optie in om debug logging aan te zetten."
580
 
581
  #: classes/class.swpm-settings.php:86
582
  msgid "Enable Sandbox Testing"
583
+ msgstr "Sandbox Testen inschakelen"
584
 
585
  #: classes/class.swpm-settings.php:87
586
  msgid "Enable this option if you want to do sandbox payment testing."
587
+ msgstr "Schakel deze optie in als je sandbox testbetalingen wilt uitvoeren."
 
 
588
 
589
  #: classes/class.swpm-settings.php:97 classes/class.swpm-settings.php:145
590
  #: classes/class.swpm-settings.php:243
593
 
594
  #: classes/class.swpm-settings.php:102
595
  msgid "Email Misc. Settings"
596
+ msgstr "Diverse email instellingen"
597
 
598
  #: classes/class.swpm-settings.php:103
599
  msgid "From Email Address"
600
+ msgstr "E-mailadres afzender"
601
 
602
  #: classes/class.swpm-settings.php:106
603
  msgid "Email Settings (Prompt to Complete Registration )"
604
+ msgstr "Email instellingen (herinnering om registratie te voltooien)"
605
 
606
  #: classes/class.swpm-settings.php:107 classes/class.swpm-settings.php:113
607
  #: classes/class.swpm-settings.php:125 classes/class.swpm-settings.php:132
608
  msgid "Email Subject"
609
+ msgstr "Email onderwerp"
610
 
611
  #: classes/class.swpm-settings.php:109 classes/class.swpm-settings.php:115
612
  #: classes/class.swpm-settings.php:127 classes/class.swpm-settings.php:134
613
  msgid "Email Body"
614
+ msgstr "Email inhoud"
615
 
616
  #: classes/class.swpm-settings.php:112
617
  msgid "Email Settings (Registration Complete)"
618
+ msgstr "Email instellingen (Registratie voltooid)"
619
 
620
  #: classes/class.swpm-settings.php:117
621
  msgid "Send Notification to Admin"
622
+ msgstr "Stuur een bericht naar de beheerder"
623
 
624
  #: classes/class.swpm-settings.php:118
625
  msgid ""
626
  "Enable this option if you want the admin to receive a notification when a "
627
  "member registers."
628
  msgstr ""
629
+ "Schakel deze optie om de beheerder een melding te laten ontvangen wanneer "
630
+ "een lid registreert."
631
 
632
  #: classes/class.swpm-settings.php:119
633
  msgid "Admin Email Address"
634
+ msgstr "Beheerder Emailadres"
635
 
636
  #: classes/class.swpm-settings.php:120
637
  msgid ""
638
  "Enter the email address where you want the admin notification email to be "
639
  "sent to."
640
  msgstr ""
641
+ "Voer het e-mailadres in waar de beheerder notificatie e-mail naar toe moet "
642
+ "worden verzonden."
643
 
644
  #: classes/class.swpm-settings.php:121
645
  msgid "Send Email to Member When Added via Admin Dashboard"
646
+ msgstr ""
647
+ "E-mail verzenden naar lid wanneer deze via Admin Dashboard is toegevoegd"
648
 
649
  #: classes/class.swpm-settings.php:124
650
  msgid "Email Settings (Password Reset)"
651
+ msgstr "E-mail Instellingen (Wachtwoord herstel)"
652
 
653
  #: classes/class.swpm-settings.php:131
654
  msgid " Email Settings (Account Upgrade Notification)"
655
+ msgstr "Email instellingen (Bericht Account Upgrade)"
656
 
657
  #: classes/class.swpm-settings.php:152
658
  msgid "Enable Expired Account Login"
659
+ msgstr "Verlopen account kan inloggen"
660
 
661
  #: classes/class.swpm-settings.php:153
662
  msgid ""
664
  "be able to view any protected content. This allows them to easily renew "
665
  "their account by making another payment."
666
  msgstr ""
667
+ "Wanneer ingeschakeld, kunnen leden met een verlopen account wel inloggen op "
668
+ "het systeem, maar geen afgeschermde inhoud zien. Hierdoor kunnen ze "
669
+ "gemakkelijk hun account vernieuwen door een betaling te maken."
 
670
 
671
  #: classes/class.swpm-settings.php:377
672
  msgid "Not a Member?"
682
 
683
  #: classes/class.swpm-utils.php:68
684
  msgid "Inactive"
685
+ msgstr "Niet Actief"
686
 
687
  #: classes/class.swpm-utils.php:69
688
  msgid "Pending"
698
 
699
  #: classes/class.swpm-utils.php:371
700
  msgid "Delete Account"
701
+ msgstr "Verwijder Account"
702
 
703
  #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:63
704
  msgid "Payment Button ID"
705
+ msgstr "Betaalknop ID"
706
 
707
  #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:64
708
  msgid "Payment Button Title"
709
+ msgstr "Betaalknop titel"
710
 
711
  #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:65
712
  msgid "Membership Level ID"
713
+ msgstr "Lidmaatschap niveau ID"
714
 
715
  #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:66
716
  msgid "Button Shortcode"
717
+ msgstr "Knop Shortcode"
718
 
719
  #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:106
720
  #: views/admin_members_list.php:15
721
  #: views/payments/admin_all_payment_transactions.php:33
722
  msgid "The selected entry was deleted!"
723
+ msgstr "Het geselecteerde item is verwijderd!"
724
 
725
  #: classes/admin-includes/class.swpm-payments-list-table.php:53
726
  msgid "View Profile"
727
+ msgstr "Bekijk Profiel"
728
 
729
  #: classes/admin-includes/class.swpm-payments-list-table.php:72
730
  msgid "Row ID"
733
  #: classes/admin-includes/class.swpm-payments-list-table.php:73
734
  #: views/forgot_password.php:5
735
  msgid "Email Address"
736
+ msgstr "Email Adres"
737
 
738
  #: classes/admin-includes/class.swpm-payments-list-table.php:76
739
  msgid "Member Profile"
740
+ msgstr "Profiel Lid"
741
 
742
  #: classes/admin-includes/class.swpm-payments-list-table.php:77
743
  msgid "Date"
757
 
758
  #: classes/common/class.swpm-list-table.php:138
759
  msgid "Excerpt View"
760
+ msgstr "Samenvatting weergave"
761
 
762
  #: classes/common/class.swpm-list-table.php:305
763
  msgid "No items found."
764
+ msgstr "Geen items gevonden."
765
 
766
  #: classes/common/class.swpm-list-table.php:431
767
  msgid "Select bulk action"
768
+ msgstr "Kies bulk actie"
769
 
770
  #: classes/common/class.swpm-list-table.php:433
771
  msgid "Bulk Actions"
777
 
778
  #: classes/common/class.swpm-list-table.php:543
779
  msgid "Filter by date"
780
+ msgstr "Filter op datum"
781
 
782
  #: classes/common/class.swpm-list-table.php:545
783
  msgid "All dates"
784
+ msgstr "Alle data"
785
 
786
  #: classes/common/class.swpm-list-table.php:555
787
  #, php-format
791
  #: classes/common/class.swpm-list-table.php:599
792
  #, php-format
793
  msgid "%s pending"
794
+ msgstr "%s (In behandeling)"
795
 
796
  #: classes/common/class.swpm-list-table.php:704
797
  msgid "Select Page"
799
 
800
  #: classes/common/class.swpm-list-table.php:848
801
  msgid "Select All"
802
+ msgstr "Alles Selecteren"
803
 
804
  #: classes/shortcode-related/class.swpm-shortcodes-handler.php:47
805
  msgid "Your membership profile will be updated to reflect the payment."
806
+ msgstr "Je lidmaatschap profiel wordt bijgewerkt met deze betaling."
807
 
808
  #: classes/shortcode-related/class.swpm-shortcodes-handler.php:48
809
  msgid "Your profile username: "
810
+ msgstr "Je gebruikersnaam"
811
 
812
  #: classes/shortcode-related/class.swpm-shortcodes-handler.php:60
813
  msgid "Click on the following link to complete the registration."
814
+ msgstr "Klik op de volgende link om je inschrijving te voltooien."
815
 
816
  #: classes/shortcode-related/class.swpm-shortcodes-handler.php:61
817
  msgid "Click here to complete your paid registration"
818
+ msgstr "Klik hier om je betaalde inschrijving te voltooien"
819
 
820
  #: classes/shortcode-related/class.swpm-shortcodes-handler.php:66
821
  msgid ""
823
  "processed. Please check back in a few minutes. An email will be sent to you "
824
  "with the details shortly."
825
  msgstr ""
826
+ "Als je net een lidmaatschap betaling hebt gemaakt, dan moet je betaling nog "
827
+ "worden verwerkt. probeer het over een paar minuten nog eens. Je ontvangt "
828
+ "binnenkort ook een e-mail met de details."
829
 
830
  #: classes/shortcode-related/class.swpm-shortcodes-handler.php:80
831
  msgid "Expiry: "
832
+ msgstr "Vervaldatum: "
833
 
834
  #: classes/shortcode-related/class.swpm-shortcodes-handler.php:82
835
  msgid "You are not logged-in as a member"
836
+ msgstr "Je bent niet ingelogd als lid"
837
 
838
  #: views/add.php:14 views/admin_add.php:19 views/admin_edit.php:17
839
  #: views/edit.php:13 views/login.php:11
840
  msgid "Password"
841
+ msgstr "Wachtwoord:"
842
 
843
  #: views/add.php:18 views/edit.php:17
844
  msgid "Repeat Password"
845
+ msgstr "Herhaal Wachtwoord"
846
 
847
  #: views/add.php:41
848
  msgid "Register"
849
+ msgstr "Aanmelden"
850
 
851
  #: views/admin_add.php:6
852
  msgid "Add Member"
853
+ msgstr "Lid toevoegen"
854
 
855
  #: views/admin_add.php:7
856
  msgid "Create a brand new user and add it to this site."
857
+ msgstr "Een nieuwe gebruiker maken en toevoegen aan deze site."
858
 
859
  #: views/admin_add.php:11 views/admin_add.php:15 views/admin_add_level.php:11
860
  #: views/admin_add_level.php:15 views/admin_add_level.php:19
865
 
866
  #: views/admin_add.php:15 views/admin_edit.php:13
867
  msgid "E-mail"
868
+ msgstr "Email"
869
 
870
  #: views/admin_add.php:19
871
  msgid "(twice, required)"
873
 
874
  #: views/admin_add.php:24 views/admin_edit.php:21
875
  msgid "Strength indicator"
876
+ msgstr "Sterkte indicator"
877
 
878
  #: views/admin_add.php:25 views/admin_edit.php:22
879
  msgid ""
881
  "stronger, use upper and lower case letters, numbers and symbols like ! \" ? "
882
  "$ % ^ &amp; )."
883
  msgstr ""
884
+ "Hint: Je wachtwoord moet minstens zeven karakters bevatten. Om het sterker "
885
+ "te maken gebruik je hoofdletters en kleine letters, nummers en symbolen "
886
+ "zoals ! ? / $ % ^ & ; ) \""
887
 
888
  #: views/admin_add.php:29 views/admin_edit.php:26 views/loggedin.php:7
889
  msgid "Account Status"
890
+ msgstr "Account Status"
891
 
892
  #: views/admin_add.php:39
893
  msgid "Add New Member "
894
+ msgstr "Voeg nieuw lid toe"
895
 
896
  #: views/admin_addon_settings.php:3 views/admin_settings.php:3
897
  #: views/admin_tools_settings.php:3 views/payments/admin_payment_settings.php:3
903
  "Some of the simple membership plugin's addon settings and options will be "
904
  "displayed here (if you have them)"
905
  msgstr ""
906
+ "Sommige van addon instellingen en opties van de WP Membership plugin worden "
907
+ "hier weergegeven (als je ze hebt)"
 
908
 
909
  #: views/admin_addon_settings.php:13
910
  msgid "Save Changes"
912
 
913
  #: views/admin_add_level.php:6
914
  msgid "Create new membership level."
915
+ msgstr "Maak een nieuw Lidmaatschap niveau"
916
 
917
  #: views/admin_add_level.php:11 views/admin_edit_level.php:10
918
  msgid "Membership Level Name"
919
+ msgstr "Lidmaatschap Niveau Naam"
920
 
921
  #: views/admin_add_level.php:15 views/admin_edit_level.php:14
922
  msgid "Default WordPress Role"
924
 
925
  #: views/admin_add_level.php:19 views/admin_edit_level.php:18
926
  msgid "Access Duration"
927
+ msgstr "Duur toegang"
928
 
929
  #: views/admin_add_level.php:22
930
  msgid "No Expiry (Access for this level will not expire until cancelled"
931
  msgstr ""
932
+ "Geen Vervaldatum (Toegang voor dit niveau vervalt niet, tenzij geannuleerd)"
933
 
934
  #: views/admin_add_level.php:23 views/admin_add_level.php:25
935
  #: views/admin_add_level.php:27 views/admin_add_level.php:29
936
  #: views/admin_edit_level.php:22 views/admin_edit_level.php:25
937
  #: views/admin_edit_level.php:28 views/admin_edit_level.php:31
938
  msgid "Expire After"
939
+ msgstr "Vervallen na"
940
 
941
  #: views/admin_add_level.php:24 views/admin_edit_level.php:23
942
  msgid "Days (Access expires after given number of days)"
943
+ msgstr "Dagen (Toegang vervalt na bepaald aantal dagen)"
944
 
945
  #: views/admin_add_level.php:26
946
  msgid "Weeks (Access expires after given number of weeks"
947
+ msgstr "Weken (Toegang vervalt na bepaald aantal weken)"
948
 
949
  #: views/admin_add_level.php:28 views/admin_edit_level.php:29
950
  msgid "Months (Access expires after given number of months)"
951
+ msgstr "Maanden (Toegang vervalt na bepaald aantal maanden)"
952
 
953
  #: views/admin_add_level.php:30 views/admin_edit_level.php:32
954
  msgid "Years (Access expires after given number of years)"
955
+ msgstr "Jaren (Toegang vervalt na bepaald aantal jaren)"
956
 
957
  #: views/admin_add_level.php:31 views/admin_edit_level.php:34
958
  msgid "Fixed Date Expiry"
959
+ msgstr "Vaste vervaldatum"
960
 
961
  #: views/admin_add_level.php:32 views/admin_edit_level.php:35
962
  msgid "(Access expires on a fixed date)"
963
+ msgstr "(Toegang vervalt op een vaste datum)"
964
 
965
  #: views/admin_add_level.php:38
966
  msgid "Add New Membership Level "
967
+ msgstr "Voeg een nieuw lidmaatschap niveau toe"
968
 
969
  #: views/admin_add_ons_page.php:7
970
  msgid "Simple WP Membership::Add-ons"
971
+ msgstr "Simple WP Membership::Add-ons"
972
 
973
  #: views/admin_category_list.php:2
974
  msgid "Simple WP Membership::Categories"
975
+ msgstr "Simple WP Membership :: Categorieën"
976
 
977
  #: views/admin_category_list.php:7
978
  msgid ""
980
  "\"General Protection\" from the drop-down box below and then select the "
981
  "categories that should be protected from non-logged in users."
982
  msgstr ""
983
+ "Scherm eerst de categorie op je hele site af door 'Algemene Afscherming' te "
984
+ "kiezen uit het drop-down vak hieronder. Selecteer vervolgens de categorieën "
985
+ "die afgeschermd moeten worden van niet-ingelogde gebruikers."
986
 
987
  #: views/admin_category_list.php:10
988
  msgid ""
990
  "then select the categories you want to grant access to (for that particular "
991
  "membership level)."
992
  msgstr ""
993
+ "Selecteer vervolgens een bestaand lidmaatschap niveau uit de keuzelijst "
994
+ "hieronder en selecteer de categorieën waartoe je toegang wilt geven (voor "
995
+ "dat specifieke niveau van lidmaatschap)."
996
 
997
  #: views/admin_edit.php:5
998
  msgid "Edit Member"
1000
 
1001
  #: views/admin_edit.php:6
1002
  msgid "Edit existing member details."
1003
+ msgstr "Wijzig gegevens bestaand lid."
1004
 
1005
  #: views/admin_edit.php:17
1006
  msgid "(twice, leave empty to retain old password)"
1007
+ msgstr "(Tweemaal, leeglaten om oude wachtwoord te behouden)"
1008
 
1009
  #: views/admin_edit.php:33
1010
  msgid "Notify User"
1011
+ msgstr "Gebruiker op de hoogte brengen"
1012
 
1013
  #: views/admin_edit.php:40
1014
  msgid "Subscriber ID/Reference"
1015
+ msgstr "Abonnee ID/Referentie"
1016
 
1017
  #: views/admin_edit.php:44
1018
  msgid "Last Accessed From IP"
1019
+ msgstr "Laatst ingelogd via IP"
1020
 
1021
  #: views/admin_edit.php:52
1022
  msgid "Edit User "
1024
 
1025
  #: views/admin_edit_level.php:5
1026
  msgid "Edit membership level"
1027
+ msgstr "Wijzig lidmaatschap niveau"
1028
 
1029
  #: views/admin_edit_level.php:6
1030
  msgid "Edit membership level."
1031
+ msgstr "Wijzig lidmaatschap niveau."
1032
 
1033
  #: views/admin_edit_level.php:21
1034
  msgid "No Expiry (Access for this level will not expire until cancelled)"
1035
  msgstr ""
1036
+ "Geen Vervaldatum (Toegang voor dit niveau vervalt niet, tenzij geannuleerd)"
1037
 
1038
  #: views/admin_edit_level.php:26
1039
  msgid "Weeks (Access expires after given number of weeks)"
1040
+ msgstr "Weken (Toegang vervalt na bepaald aantal weken)"
1041
 
1042
  #: views/admin_edit_level.php:41
1043
  msgid "Edit Membership Level "
1044
+ msgstr "Wijzig lidmaatschap niveau"
1045
 
1046
  #: views/admin_members.php:2
1047
  msgid "Simple WP Membership::Members"
1049
 
1050
  #: views/admin_members.php:3 views/admin_members_list.php:30
1051
  msgid "Add New"
1052
+ msgstr "Nieuwe toevoegen "
1053
 
1054
  #: views/admin_membership_levels.php:2
1055
  msgid "Simple WP Membership::Membership Levels"
1056
+ msgstr "Simple WP Membership::Lidmaatschap niveaus"
1057
 
1058
  #: views/admin_membership_levels.php:12 views/admin_members_list.php:6
1059
  msgid "search"
1073
 
1074
  #: views/admin_membership_manage.php:17
1075
  msgid "Example Content Protection Settings"
1076
+ msgstr "Voorbeeld inhoud afscherm instellingen"
1077
 
1078
  #: views/admin_member_form_common_part.php:23
1079
  msgid "Gender"
1113
 
1114
  #: views/admin_tools_settings.php:9
1115
  msgid "Generate a Registration Completion link"
1116
+ msgstr "Genereer een Registratie Voltooien link"
1117
 
1118
  #: views/admin_tools_settings.php:12
1119
  msgid ""
1121
  "your customer if they have missed the email that was automatically sent out "
1122
  "to them after the payment."
1123
  msgstr ""
1124
+ "Je kunt hier zelf een 'registratie compleet'-link genereren en aan je klant "
1125
+ "geven als zij de automatische e-mail die hen was toegezonden na betaling "
1126
+ "hebben gemist."
1127
 
1128
  #: views/admin_tools_settings.php:17
1129
  msgid "Generate Registration Completion Link"
1130
+ msgstr "Genereer 'registratie voltooid'- link"
1131
 
1132
  #: views/admin_tools_settings.php:20
1133
  msgid "OR"
1135
 
1136
  #: views/admin_tools_settings.php:21
1137
  msgid "For All Pending Registrations"
1138
+ msgstr "Voor alle registraties in behandeling"
1139
 
1140
  #: views/admin_tools_settings.php:24
1141
  msgid "Registration Completion Links Will Appear Below:"
1142
+ msgstr "Registratie voltooid links verschijnen hieronder:"
1143
 
1144
  #: views/admin_tools_settings.php:31
1145
  msgid "Send Registration Reminder Email too"
1146
+ msgstr "Stuur ook een Registratie herinnering email"
1147
 
1148
  #: views/admin_tools_settings.php:34
1149
  msgid "Submit"
1150
+ msgstr "Verzenden"
1151
 
1152
  #: views/edit.php:59
1153
  msgid "Update"
1155
 
1156
  #: views/forgot_password.php:12
1157
  msgid "Reset Password"
1158
+ msgstr "Reset Wachtwoord"
1159
 
1160
  #: views/loggedin.php:3
1161
  msgid "Logged in as"
1167
 
1168
  #: views/loggedin.php:15
1169
  msgid "Account Expiry"
1170
+ msgstr "Account verloopt"
1171
 
1172
  #: views/loggedin.php:19
1173
  msgid "Logout"
1175
 
1176
  #: views/login.php:18
1177
  msgid "Remember Me"
1178
+ msgstr "Onthoud mij"
1179
 
1180
  #: views/login.php:24
1181
  msgid "Forgot Password"
1183
 
1184
  #: views/payments/admin_all_payment_transactions.php:7
1185
  msgid "All the payments/transactions of your members are recorded here."
1186
+ msgstr "Alle betalingen / transacties van je leden zijn hier opgenomen."
1187
 
1188
  #: views/payments/admin_all_payment_transactions.php:14
1189
  msgid "Search for a transaction by using email or name"
1190
+ msgstr "Zoekt u een transactie met behulp van e-mail of naam"
1191
 
1192
  #: views/payments/admin_all_payment_transactions.php:18
1193
  msgid "Search"
1194
+ msgstr "Zoeken"
1195
 
1196
  #: views/payments/admin_create_payment_buttons.php:13
1197
  msgid ""
1198
  "You can create new payment button for your memberships using this interface."
1199
  msgstr ""
1200
+ "Met deze interface kun je een nieuwe betaalknop maken voor je "
1201
+ "lidmaatschappen."
1202
 
1203
  #: views/payments/admin_create_payment_buttons.php:22
1204
  msgid "Select Payment Button Type"
1205
+ msgstr "Selecteer Type Betaal-knop"
1206
 
1207
  #: views/payments/admin_create_payment_buttons.php:34
1208
  msgid "Next"
1209
+ msgstr "volgende"
1210
 
1211
  #: views/payments/admin_edit_payment_buttons.php:12
1212
  msgid "You can edit a payment button using this interface."
1213
+ msgstr "Je kunt een betaling knop bewerken met deze interface."
1214
 
1215
  #: views/payments/admin_payments_page.php:9
1216
  msgid "Simple Membership::Payments"
1217
+ msgstr "Simple WP Membership::Betalingen"
1218
 
1219
  #: views/payments/admin_payment_buttons.php:7
1220
  msgid ""
1221
  "All the membership buttons that you created in the plugin are displayed here."
1222
+ msgstr "Alle lidmaatschap knoppen die je hebt gemaakt staan hier."
 
 
1223
 
1224
  #: views/payments/admin_payment_settings.php:31
1225
  msgid "PayPal Integration Settings"
1227
 
1228
  #: views/payments/admin_payment_settings.php:34
1229
  msgid "Generate the \"Advanced Variables\" Code for your PayPal button"
1230
+ msgstr "Genereer de \"Geavanceerde Variabelen\" Code voor je PayPal knop"
1231
 
1232
  #: views/payments/admin_payment_settings.php:37
1233
  msgid "Enter the Membership Level ID"
1234
+ msgstr "Voer het lidmaatschapsniveau-ID in"
1235
 
1236
  #: views/payments/admin_payment_settings.php:39
1237
  msgid "Generate Code"
1238
+ msgstr "Genereer Code"
1239
 
1240
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:18
1241
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:192
1242
  msgid "PayPal Buy Now Button Configuration"
1243
+ msgstr "PayPal Buy Now Knop Configuratie"
1244
 
1245
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:28
1246
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:209
1247
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:29
1248
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:302
1249
  msgid "Button Title"
1250
+ msgstr "Knop titel"
1251
 
1252
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:46
1253
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:227
1254
  msgid "Payment Amount"
1255
+ msgstr "Te Betalen Bedrag:"
1256
 
1257
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:54
1258
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:235
1266
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:173
1267
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:446
1268
  msgid "Return URL"
1269
+ msgstr "Retour URL"
1270
 
1271
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:101
1272
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:282
1273
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:86
1274
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:359
1275
  msgid "PayPal Email"
1276
+ msgstr "PayPal Email "
1277
 
1278
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:109
1279
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:290
1280
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:181
1281
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:454
1282
  msgid "Button Image URL"
1283
+ msgstr "Knop Afbeelding URL"
1284
 
1285
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:119
1286
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:300
1287
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:193
1288
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:466
1289
  msgid "Save Payment Data"
1290
+ msgstr "Betalingsgegevens Opslaan"
1291
 
1292
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:201
1293
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:294
1294
  msgid "Button ID"
1295
+ msgstr "Knop ID"
1296
 
1297
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:20
1298
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:288
1299
  msgid "PayPal Subscription Button Configuration"
1300
+ msgstr "PayPal Subscription Knop Configuratie"
1301
 
1302
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:94
1303
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:367
1304
  msgid "Billing Amount Each Cycle"
1305
+ msgstr "Factuur bedrag per cyclus"
1306
 
1307
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:102
1308
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:375
1309
  msgid "Billing Cycle"
1310
+ msgstr "Factureringscyclus "
1311
 
1312
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:115
1313
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:388
1314
  msgid "Billing Cycle Count"
1315
+ msgstr "Factureringscyclus Teller"
1316
 
1317
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:123
1318
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:396
1319
  msgid "Re-attempt on Failure"
1320
+ msgstr "Opnieuw proberen indien mislukt"
1321
 
1322
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:136
1323
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:409
1324
  msgid ""
1325
  "Trial Billing Details (Leave empty if you are not offering a trial period)"
1326
  msgstr ""
1327
+ "Rekening Details Proefperiode (Laat leeg als je geen proefperiode aanbiedt)"
1328
 
1329
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:142
1330
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:415
1331
  msgid "Trial Billing Amount"
1332
+ msgstr "Proefperiode bedrag"
1333
 
1334
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:150
1335
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:423
1336
  msgid "Trial Billing Period"
1337
+ msgstr "Looptijd proefperiode"
1338
 
1339
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:167
1340
  #: views/payments/payment-gateway/admin_paypal_subscription_button.php:440
1341
  msgid "Optional Details"
1342
+ msgstr "Optionele Details"
1343
 
1344
  #: views/payments/payment-gateway/paypal_button_shortcode_view.php:77
1345
  #: views/payments/payment-gateway/paypal_button_shortcode_view.php:79
1349
  #: views/payments/payment-gateway/paypal_button_shortcode_view.php:197
1350
  #: views/payments/payment-gateway/paypal_button_shortcode_view.php:199
1351
  msgid "Subscribe Now"
1352
+ msgstr "Nu inschrijven"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/swpm.pot CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: simple membership\n"
4
- "POT-Creation-Date: 2015-12-11 15:12+1000\n"
5
- "PO-Revision-Date: 2015-12-11 15:12+1000\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "MIME-Version: 1.0\n"
@@ -13,82 +13,87 @@ msgstr ""
13
  "X-Poedit-Basepath: .\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
- #: classes/class.simple-wp-membership.php:264
17
  msgid "You are not logged in."
18
  msgstr ""
19
 
20
- #: classes/class.simple-wp-membership.php:298
 
 
 
 
 
 
21
  msgid "Simple WP Membership Protection"
22
  msgstr ""
23
 
24
- #: classes/class.simple-wp-membership.php:310
25
  msgid "Simple Membership Protection options"
26
  msgstr ""
27
 
28
- #: classes/class.simple-wp-membership.php:326
29
  msgid "Do you want to protect this content?"
30
  msgstr ""
31
 
32
- #: classes/class.simple-wp-membership.php:331
33
  msgid "Select the membership level that can access this content:"
34
  msgstr ""
35
 
36
- #: classes/class.simple-wp-membership.php:464
37
  msgid "WP Membership"
38
  msgstr ""
39
 
40
- #: classes/class.simple-wp-membership.php:465
41
- #: classes/class.swpm-members.php:10 views/admin_members_menu.php:2
42
  msgid "Members"
43
  msgstr ""
44
 
45
- #: classes/class.simple-wp-membership.php:466
46
  #: classes/class.swpm-category-list.php:20
47
- #: classes/class.swpm-membership-levels.php:11
 
48
  msgid "Membership Levels"
49
  msgstr ""
50
 
51
- #: classes/class.simple-wp-membership.php:467
52
  msgid "Settings"
53
  msgstr ""
54
 
55
- #: classes/class.simple-wp-membership.php:468
56
  msgid "Payments"
57
  msgstr ""
58
 
59
- #: classes/class.simple-wp-membership.php:469
60
  msgid "Add-ons"
61
  msgstr ""
62
 
63
- #: classes/class.swpm-access-control.php:21
64
- #: classes/class.swpm-access-control.php:28
65
- #: classes/class.swpm-access-control.php:55
66
  msgid "You need to login to view this content. "
67
  msgstr ""
68
 
69
- #: classes/class.swpm-access-control.php:34
70
- #: classes/class.swpm-access-control.php:60
71
- msgid ""
72
- "Your account has expired. Please renew your account to gain access to this "
73
- "content."
74
  msgstr ""
75
 
76
- #: classes/class.swpm-access-control.php:41
 
77
  msgid "This content can only be viewed by members who joined on or before "
78
  msgstr ""
79
 
80
- #: classes/class.swpm-access-control.php:46
81
- #: classes/class.swpm-access-control.php:66
82
  msgid "This content is not permitted for your membership level."
83
  msgstr ""
84
 
85
- #: classes/class.swpm-access-control.php:84
86
- msgid " The rest of the content is not permitted for your membership level."
87
  msgstr ""
88
 
89
- #: classes/class.swpm-access-control.php:88
90
- #: classes/class.swpm-access-control.php:106
91
- msgid "You need to login to view the rest of the content. "
92
  msgstr ""
93
 
94
  #: classes/class.swpm-admin-registration.php:54
@@ -123,201 +128,253 @@ msgstr ""
123
  msgid "Available"
124
  msgstr ""
125
 
126
- #: classes/class.swpm-auth.php:50
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
127
  msgid "User Not Found."
128
  msgstr ""
129
 
130
- #: classes/class.swpm-auth.php:57
131
  msgid "Password Empty or Invalid."
132
  msgstr ""
133
 
134
- #: classes/class.swpm-auth.php:82
135
  msgid "Account is inactive."
136
  msgstr ""
137
 
138
- #: classes/class.swpm-auth.php:85
139
- msgid "Account is pending."
140
  msgstr ""
141
 
142
- #: classes/class.swpm-auth.php:88 classes/class.swpm-auth.php:106
143
- msgid "Account has expired."
144
  msgstr ""
145
 
146
- #: classes/class.swpm-auth.php:114
147
  msgid "You are logged in as:"
148
  msgstr ""
149
 
150
- #: classes/class.swpm-auth.php:160
151
  msgid "Logged Out Successfully."
152
  msgstr ""
153
 
154
- #: classes/class.swpm-auth.php:210
155
  msgid "Session Expired."
156
  msgstr ""
157
 
158
- #: classes/class.swpm-auth.php:219
159
  msgid "Invalid Username"
160
  msgstr ""
161
 
162
- #: classes/class.swpm-auth.php:227
163
  msgid "Please login again."
164
  msgstr ""
165
 
166
- #: classes/class.swpm-category-list.php:19 classes/class.swpm-members.php:23
167
- #: classes/class.swpm-membership-levels.php:10
168
- #: classes/class.swpm-membership-levels.php:20
169
- #: classes/admin-includes/class.swpm-payments-list-table.php:80
170
  #: views/add.php:30 views/admin_member_form_common_part.php:2
171
  #: views/edit.php:53
172
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:36
173
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:217
174
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:37
175
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:310
 
 
176
  msgid "Membership Level"
177
  msgstr ""
178
 
179
- #: classes/class.swpm-category-list.php:33 classes/class.swpm-members.php:18
180
- #: classes/class.swpm-membership-levels.php:19
181
- msgid "ID"
182
  msgstr ""
183
 
184
  #: classes/class.swpm-category-list.php:34
185
- msgid "Name"
186
  msgstr ""
187
 
188
  #: classes/class.swpm-category-list.php:35
189
- msgid "Description"
190
  msgstr ""
191
 
192
  #: classes/class.swpm-category-list.php:36
 
 
 
 
193
  msgid "Count"
194
  msgstr ""
195
 
196
- #: classes/class.swpm-category-list.php:80
197
  msgid "Category protection updated!"
198
  msgstr ""
199
 
200
- #: classes/class.swpm-form.php:26
 
 
 
 
 
 
 
 
 
 
 
 
201
  msgid ""
202
  "Wordpress account exists with given username. But given email doesn't match."
203
  msgstr ""
204
 
205
- #: classes/class.swpm-form.php:31
206
  msgid ""
207
  "Wordpress account exists with given email. But given username doesn't match."
208
  msgstr ""
209
 
210
- #: classes/class.swpm-form.php:40
211
  msgid "Username is required"
212
  msgstr ""
213
 
214
- #: classes/class.swpm-form.php:44
215
  msgid "Username contains invalid character"
216
  msgstr ""
217
 
218
- #: classes/class.swpm-form.php:52
219
  msgid "Username already exists."
220
  msgstr ""
221
 
222
- #: classes/class.swpm-form.php:75
223
  msgid "Password is required"
224
  msgstr ""
225
 
226
- #: classes/class.swpm-form.php:82
227
  msgid "Password mismatch"
228
  msgstr ""
229
 
230
- #: classes/class.swpm-form.php:93
231
  msgid "Email is required"
232
  msgstr ""
233
 
234
- #: classes/class.swpm-form.php:97
235
  msgid "Email is invalid"
236
  msgstr ""
237
 
238
- #: classes/class.swpm-form.php:113
239
  msgid "Email is already used."
240
  msgstr ""
241
 
242
- #: classes/class.swpm-form.php:170
243
  msgid "Member since field is invalid"
244
  msgstr ""
245
 
246
- #: classes/class.swpm-form.php:181
247
  msgid "Access starts field is invalid"
248
  msgstr ""
249
 
250
- #: classes/class.swpm-form.php:191
251
  msgid "Gender field is invalid"
252
  msgstr ""
253
 
254
- #: classes/class.swpm-form.php:202
255
  msgid "Account state field is invalid"
256
  msgstr ""
257
 
258
- #: classes/class.swpm-form.php:209
259
  msgid "Invalid membership level"
260
  msgstr ""
261
 
262
- #: classes/class.swpm-front-registration.php:71
 
 
 
 
 
 
 
 
 
 
 
263
  msgid "Security check: captcha validation failed."
264
  msgstr ""
265
 
266
- #: classes/class.swpm-front-registration.php:80
267
  msgid "Registration Successful. "
268
  msgstr ""
269
 
270
- #: classes/class.swpm-front-registration.php:80
271
- #: classes/class.swpm-settings.php:377
272
  msgid "Please"
273
  msgstr ""
274
 
275
- #: classes/class.swpm-front-registration.php:80
276
- #: classes/class.swpm-settings.php:377 views/login.php:21
277
  msgid "Login"
278
  msgstr ""
279
 
280
- #: classes/class.swpm-front-registration.php:92
281
- #: classes/class.swpm-front-registration.php:179
282
  msgid "Please correct the following"
283
  msgstr ""
284
 
285
- #: classes/class.swpm-front-registration.php:123
286
  msgid "Membership Level Couldn't be found."
287
  msgstr ""
288
 
289
- #: classes/class.swpm-front-registration.php:162
290
  msgid "Profile updated successfully."
291
  msgstr ""
292
 
293
- #: classes/class.swpm-front-registration.php:170
294
  msgid ""
295
  "Profile updated successfully. You will need to re-login since you changed "
296
  "your password."
297
  msgstr ""
298
 
299
- #: classes/class.swpm-front-registration.php:189
300
  msgid "Email address not valid."
301
  msgstr ""
302
 
303
- #: classes/class.swpm-front-registration.php:200
304
  msgid "No user found with that email address."
305
  msgstr ""
306
 
307
- #: classes/class.swpm-front-registration.php:201
308
- #: classes/class.swpm-front-registration.php:225
309
  msgid "Email Address: "
310
  msgstr ""
311
 
312
- #: classes/class.swpm-front-registration.php:224
313
  msgid "New password has been sent to your email address."
314
  msgstr ""
315
 
316
- #: classes/class.swpm-init-time-tasks.php:108
317
  msgid "Sorry, Nonce verification failed."
318
  msgstr ""
319
 
320
- #: classes/class.swpm-init-time-tasks.php:115
321
  msgid "Sorry, Password didn't match."
322
  msgstr ""
323
 
@@ -329,74 +386,92 @@ msgstr ""
329
  msgid "Access duration must be > 0."
330
  msgstr ""
331
 
332
- #: classes/class.swpm-member-utils.php:22
333
- #: classes/class.swpm-member-utils.php:30
334
- #: classes/class.swpm-member-utils.php:38
335
- #: classes/class.swpm-member-utils.php:48
336
- msgid "User is not logged in."
337
  msgstr ""
338
 
339
- #: classes/class.swpm-members.php:9
340
- msgid "Member"
 
341
  msgstr ""
342
 
343
- #: classes/class.swpm-members.php:19 views/add.php:6 views/admin_add.php:11
344
- #: views/admin_edit.php:9 views/edit.php:5 views/login.php:5
345
  msgid "Username"
346
  msgstr ""
347
 
348
- #: classes/class.swpm-members.php:20
349
- #: classes/admin-includes/class.swpm-payments-list-table.php:74
350
  #: views/add.php:22 views/admin_member_form_common_part.php:15
351
  #: views/edit.php:21
352
  msgid "First Name"
353
  msgstr ""
354
 
355
- #: classes/class.swpm-members.php:21
356
- #: classes/admin-includes/class.swpm-payments-list-table.php:75
357
  #: views/add.php:26 views/admin_member_form_common_part.php:19
358
  #: views/edit.php:25
359
  msgid "Last Name"
360
  msgstr ""
361
 
362
- #: classes/class.swpm-members.php:22 views/add.php:10 views/edit.php:9
363
  msgid "Email"
364
  msgstr ""
365
 
366
- #: classes/class.swpm-members.php:24
367
  #: views/admin_member_form_common_part.php:11
368
  msgid "Access Starts"
369
  msgstr ""
370
 
371
- #: classes/class.swpm-members.php:25
372
  msgid "Account State"
373
  msgstr ""
374
 
375
- #: classes/class.swpm-members.php:41
376
- #: classes/class.swpm-membership-levels.php:35
377
- #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:80
378
- #: classes/admin-includes/class.swpm-payments-list-table.php:95
379
  msgid "Delete"
380
  msgstr ""
381
 
382
- #: classes/class.swpm-members.php:42
383
  msgid "Set Status to Active"
384
  msgstr ""
385
 
386
- #: classes/class.swpm-members.php:44
 
 
 
 
387
  msgid "Set Status to Inactive"
388
  msgstr ""
389
 
390
- #: classes/class.swpm-members.php:45
391
  msgid "Set Status to Pending"
392
  msgstr ""
393
 
394
- #: classes/class.swpm-members.php:46
395
  msgid "Set Status to Expired"
396
  msgstr ""
397
 
398
- #: classes/class.swpm-members.php:121
399
- msgid "No Member found."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
400
  msgstr ""
401
 
402
  #: classes/class.swpm-membership-level.php:38
@@ -404,406 +479,527 @@ msgid "Membership Level Creation Successful."
404
  msgstr ""
405
 
406
  #: classes/class.swpm-membership-level.php:57
407
- msgid "Updated Successfully."
408
  msgstr ""
409
 
410
- #: classes/class.swpm-membership-levels.php:21
411
  msgid "Role"
412
  msgstr ""
413
 
414
- #: classes/class.swpm-membership-levels.php:22
415
  msgid "Access Valid For/Until"
416
  msgstr ""
417
 
418
- #: classes/class.swpm-misc-utils.php:50
419
- msgid "Registration"
 
 
420
  msgstr ""
421
 
422
- #: classes/class.swpm-misc-utils.php:73
423
- msgid "Member Login"
424
  msgstr ""
425
 
426
- #: classes/class.swpm-misc-utils.php:96
427
- msgid "Profile"
428
  msgstr ""
429
 
430
- #: classes/class.swpm-misc-utils.php:119
431
- msgid "Password Reset"
432
  msgstr ""
433
 
434
- #: classes/class.swpm-settings.php:21 classes/class.swpm-settings.php:39
 
 
 
 
435
  msgid "General Settings"
436
  msgstr ""
437
 
438
- #: classes/class.swpm-settings.php:21
439
  msgid "Payment Settings"
440
  msgstr ""
441
 
442
- #: classes/class.swpm-settings.php:22
443
  msgid "Email Settings"
444
  msgstr ""
445
 
446
- #: classes/class.swpm-settings.php:22
447
  msgid "Tools"
448
  msgstr ""
449
 
450
- #: classes/class.swpm-settings.php:22 classes/class.swpm-settings.php:150
451
  msgid "Advanced Settings"
452
  msgstr ""
453
 
454
- #: classes/class.swpm-settings.php:22
455
  msgid "Addons Settings"
456
  msgstr ""
457
 
458
- #: classes/class.swpm-settings.php:38
459
  msgid "Plugin Documentation"
460
  msgstr ""
461
 
462
- #: classes/class.swpm-settings.php:40
463
  msgid "Enable Free Membership"
464
  msgstr ""
465
 
466
- #: classes/class.swpm-settings.php:41
467
  msgid ""
468
  "Enable/disable registration for free membership level. When you enable this "
469
  "option, make sure to specify a free membership level ID in the field below."
470
  msgstr ""
471
 
472
- #: classes/class.swpm-settings.php:42
473
  msgid "Free Membership Level ID"
474
  msgstr ""
475
 
476
- #: classes/class.swpm-settings.php:43
477
  msgid "Assign free membership level ID"
478
  msgstr ""
479
 
480
- #: classes/class.swpm-settings.php:44
481
  msgid "Enable More Tag Protection"
482
  msgstr ""
483
 
484
- #: classes/class.swpm-settings.php:45
485
  msgid ""
486
  "Enables or disables \"more\" tag protection in the posts and pages. Anything "
487
  "after the More tag is protected. Anything before the more tag is teaser "
488
  "content."
489
  msgstr ""
490
 
491
- #: classes/class.swpm-settings.php:46
492
  msgid "Hide Adminbar"
493
  msgstr ""
494
 
495
- #: classes/class.swpm-settings.php:47
496
  msgid ""
497
  "WordPress shows an admin toolbar to the logged in users of the site. Check "
498
- "this box if you want to hide that admin toolbar in the fronend of your site."
499
  msgstr ""
500
 
501
- #: classes/class.swpm-settings.php:49
502
- msgid "Default Account Status"
503
  msgstr ""
504
 
505
- #: classes/class.swpm-settings.php:52
506
  msgid ""
507
- "Select the default account status for newly registered users. If you want to "
508
- "manually approve the members then you can set the status to \"Pending\"."
509
  msgstr ""
510
 
511
- #: classes/class.swpm-settings.php:53
512
- msgid "Allow Account Deletion"
513
  msgstr ""
514
 
515
- #: classes/class.swpm-settings.php:55
516
- msgid "Allow users to delete their accounts."
 
 
517
  msgstr ""
518
 
519
- #: classes/class.swpm-settings.php:56
520
- msgid "Auto Delete Pending Account"
521
  msgstr ""
522
 
523
- #: classes/class.swpm-settings.php:59
524
- msgid "Select how long you want to keep \"pending\" account."
 
 
525
  msgstr ""
526
 
527
- #: classes/class.swpm-settings.php:67
528
  msgid "Pages Settings"
529
  msgstr ""
530
 
531
- #: classes/class.swpm-settings.php:68
532
  msgid "Login Page URL"
533
  msgstr ""
534
 
535
- #: classes/class.swpm-settings.php:70
536
  msgid "Registration Page URL"
537
  msgstr ""
538
 
539
- #: classes/class.swpm-settings.php:72
540
  msgid "Join Us Page URL"
541
  msgstr ""
542
 
543
- #: classes/class.swpm-settings.php:74
544
  msgid "Edit Profile Page URL"
545
  msgstr ""
546
 
547
- #: classes/class.swpm-settings.php:76
548
  msgid "Password Reset Page URL"
549
  msgstr ""
550
 
551
- #: classes/class.swpm-settings.php:79
552
  msgid "Test & Debug Settings"
553
  msgstr ""
554
 
555
- #: classes/class.swpm-settings.php:81
556
  msgid "Check this option to enable debug logging."
557
  msgstr ""
558
 
559
- #: classes/class.swpm-settings.php:86
560
  msgid "Enable Sandbox Testing"
561
  msgstr ""
562
 
563
- #: classes/class.swpm-settings.php:87
564
  msgid "Enable this option if you want to do sandbox payment testing."
565
  msgstr ""
566
 
567
- #: classes/class.swpm-settings.php:97 classes/class.swpm-settings.php:145
568
- #: classes/class.swpm-settings.php:243
569
  msgid "Settings updated!"
570
  msgstr ""
571
 
572
- #: classes/class.swpm-settings.php:102
573
  msgid "Email Misc. Settings"
574
  msgstr ""
575
 
576
- #: classes/class.swpm-settings.php:103
577
  msgid "From Email Address"
578
  msgstr ""
579
 
580
- #: classes/class.swpm-settings.php:106
581
  msgid "Email Settings (Prompt to Complete Registration )"
582
  msgstr ""
583
 
584
- #: classes/class.swpm-settings.php:107 classes/class.swpm-settings.php:113
585
- #: classes/class.swpm-settings.php:125 classes/class.swpm-settings.php:132
 
586
  msgid "Email Subject"
587
  msgstr ""
588
 
589
- #: classes/class.swpm-settings.php:109 classes/class.swpm-settings.php:115
590
- #: classes/class.swpm-settings.php:127 classes/class.swpm-settings.php:134
 
591
  msgid "Email Body"
592
  msgstr ""
593
 
594
- #: classes/class.swpm-settings.php:112
 
 
 
 
 
 
 
 
 
 
 
 
595
  msgid "Email Settings (Registration Complete)"
596
  msgstr ""
597
 
598
- #: classes/class.swpm-settings.php:117
599
  msgid "Send Notification to Admin"
600
  msgstr ""
601
 
602
- #: classes/class.swpm-settings.php:118
603
  msgid ""
604
  "Enable this option if you want the admin to receive a notification when a "
605
  "member registers."
606
  msgstr ""
607
 
608
- #: classes/class.swpm-settings.php:119
609
  msgid "Admin Email Address"
610
  msgstr ""
611
 
612
- #: classes/class.swpm-settings.php:120
613
- msgid ""
614
- "Enter the email address where you want the admin notification email to be "
615
- "sent to."
616
- msgstr ""
617
-
618
- #: classes/class.swpm-settings.php:121
619
  msgid "Send Email to Member When Added via Admin Dashboard"
620
  msgstr ""
621
 
622
- #: classes/class.swpm-settings.php:124
623
  msgid "Email Settings (Password Reset)"
624
  msgstr ""
625
 
626
- #: classes/class.swpm-settings.php:131
627
  msgid " Email Settings (Account Upgrade Notification)"
628
  msgstr ""
629
 
630
- #: classes/class.swpm-settings.php:152
 
 
 
 
631
  msgid "Enable Expired Account Login"
632
  msgstr ""
633
 
634
- #: classes/class.swpm-settings.php:153
635
  msgid ""
636
  "When enabled, expired members will be able to log into the system but won't "
637
  "be able to view any protected content. This allows them to easily renew "
638
  "their account by making another payment."
639
  msgstr ""
640
 
641
- #: classes/class.swpm-settings.php:377
642
- msgid "Not a Member?"
643
  msgstr ""
644
 
645
- #: classes/class.swpm-settings.php:377 views/login.php:27
646
- msgid "Join Us"
 
 
 
647
  msgstr ""
648
 
649
- #: classes/class.swpm-utils.php:67
650
- msgid "Active"
651
  msgstr ""
652
 
653
- #: classes/class.swpm-utils.php:68
654
- msgid "Inactive"
655
  msgstr ""
656
 
657
- #: classes/class.swpm-utils.php:69
658
- msgid "Pending"
659
  msgstr ""
660
 
661
- #: classes/class.swpm-utils.php:70
662
- msgid "Expired"
 
 
663
  msgstr ""
664
 
665
- #: classes/class.swpm-utils.php:297
666
- msgid "Never"
667
  msgstr ""
668
 
669
- #: classes/class.swpm-utils.php:371
670
- msgid "Delete Account"
671
  msgstr ""
672
 
673
- #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:63
674
- msgid "Payment Button ID"
675
  msgstr ""
676
 
677
- #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:64
678
- msgid "Payment Button Title"
 
 
 
679
  msgstr ""
680
 
681
- #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:65
682
- msgid "Membership Level ID"
683
  msgstr ""
684
 
685
- #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:66
686
- msgid "Button Shortcode"
687
  msgstr ""
688
 
689
- #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:106
690
- #: views/admin_members_list.php:15
691
- #: views/payments/admin_all_payment_transactions.php:33
692
- msgid "The selected entry was deleted!"
693
  msgstr ""
694
 
695
- #: classes/admin-includes/class.swpm-payments-list-table.php:53
696
- msgid "View Profile"
 
 
697
  msgstr ""
698
 
699
- #: classes/admin-includes/class.swpm-payments-list-table.php:72
700
- msgid "Row ID"
 
 
701
  msgstr ""
702
 
703
- #: classes/admin-includes/class.swpm-payments-list-table.php:73
704
- #: views/forgot_password.php:5
705
- msgid "Email Address"
706
  msgstr ""
707
 
708
- #: classes/admin-includes/class.swpm-payments-list-table.php:76
709
- msgid "Member Profile"
 
 
710
  msgstr ""
711
 
712
- #: classes/admin-includes/class.swpm-payments-list-table.php:77
713
- msgid "Date"
 
 
714
  msgstr ""
715
 
716
- #: classes/admin-includes/class.swpm-payments-list-table.php:78
717
- msgid "Transaction ID"
 
 
718
  msgstr ""
719
 
720
- #: classes/admin-includes/class.swpm-payments-list-table.php:79
721
- msgid "Amount"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
722
  msgstr ""
723
 
724
- #: classes/common/class.swpm-list-table.php:137
725
- msgid "List View"
 
 
 
 
 
 
 
 
 
 
 
 
726
  msgstr ""
727
 
728
- #: classes/common/class.swpm-list-table.php:138
729
- msgid "Excerpt View"
730
  msgstr ""
731
 
732
- #: classes/common/class.swpm-list-table.php:305
733
- msgid "No items found."
734
  msgstr ""
735
 
736
- #: classes/common/class.swpm-list-table.php:431
737
- msgid "Select bulk action"
738
  msgstr ""
739
 
740
- #: classes/common/class.swpm-list-table.php:433
741
- msgid "Bulk Actions"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
742
  msgstr ""
743
 
744
- #: classes/common/class.swpm-list-table.php:443
745
- msgid "Apply"
746
  msgstr ""
747
 
748
- #: classes/common/class.swpm-list-table.php:543
749
- msgid "Filter by date"
 
750
  msgstr ""
751
 
752
- #: classes/common/class.swpm-list-table.php:545
753
- msgid "All dates"
754
  msgstr ""
755
 
756
- #: classes/common/class.swpm-list-table.php:555
757
- #, php-format
758
- msgid "%1$s %2$d"
759
  msgstr ""
760
 
761
- #: classes/common/class.swpm-list-table.php:599
762
- #, php-format
763
- msgid "%s pending"
764
  msgstr ""
765
 
766
- #: classes/common/class.swpm-list-table.php:704
767
- msgid "Select Page"
768
  msgstr ""
769
 
770
- #: classes/common/class.swpm-list-table.php:848
771
- msgid "Select All"
772
  msgstr ""
773
 
774
- #: classes/shortcode-related/class.swpm-shortcodes-handler.php:47
775
  msgid "Your membership profile will be updated to reflect the payment."
776
  msgstr ""
777
 
778
- #: classes/shortcode-related/class.swpm-shortcodes-handler.php:48
779
  msgid "Your profile username: "
780
  msgstr ""
781
 
782
- #: classes/shortcode-related/class.swpm-shortcodes-handler.php:60
783
  msgid "Click on the following link to complete the registration."
784
  msgstr ""
785
 
786
- #: classes/shortcode-related/class.swpm-shortcodes-handler.php:61
787
  msgid "Click here to complete your paid registration"
788
  msgstr ""
789
 
790
- #: classes/shortcode-related/class.swpm-shortcodes-handler.php:66
791
  msgid ""
792
  "If you have just made a membership payment then your payment is yet to be "
793
  "processed. Please check back in a few minutes. An email will be sent to you "
794
  "with the details shortly."
795
  msgstr ""
796
 
797
- #: classes/shortcode-related/class.swpm-shortcodes-handler.php:80
798
  msgid "Expiry: "
799
  msgstr ""
800
 
801
- #: classes/shortcode-related/class.swpm-shortcodes-handler.php:82
802
  msgid "You are not logged-in as a member"
803
  msgstr ""
804
 
805
- #: views/add.php:14 views/admin_add.php:19 views/admin_edit.php:17
806
- #: views/edit.php:13 views/login.php:11
807
  msgid "Password"
808
  msgstr ""
809
 
@@ -816,61 +1012,51 @@ msgid "Register"
816
  msgstr ""
817
 
818
  #: views/admin_add.php:6
819
- msgid "Add Member"
820
- msgstr ""
821
-
822
- #: views/admin_add.php:7
823
  msgid "Create a brand new user and add it to this site."
824
  msgstr ""
825
 
826
- #: views/admin_add.php:11 views/admin_add.php:15 views/admin_add_level.php:11
827
  #: views/admin_add_level.php:15 views/admin_add_level.php:19
828
- #: views/admin_edit.php:9 views/admin_edit.php:13
829
- #: views/admin_edit_level.php:10 views/admin_edit_level.php:14
830
- #: views/admin_edit_level.php:18
831
  msgid "(required)"
832
  msgstr ""
833
 
834
- #: views/admin_add.php:15 views/admin_edit.php:13
835
  msgid "E-mail"
836
  msgstr ""
837
 
838
- #: views/admin_add.php:19
839
  msgid "(twice, required)"
840
  msgstr ""
841
 
842
- #: views/admin_add.php:24 views/admin_edit.php:21
843
  msgid "Strength indicator"
844
  msgstr ""
845
 
846
- #: views/admin_add.php:25 views/admin_edit.php:22
847
  msgid ""
848
  "Hint: The password should be at least seven characters long. To make it "
849
  "stronger, use upper and lower case letters, numbers and symbols like ! \" ? "
850
  "$ % ^ &amp; )."
851
  msgstr ""
852
 
853
- #: views/admin_add.php:29 views/admin_edit.php:26 views/loggedin.php:7
854
  msgid "Account Status"
855
  msgstr ""
856
 
857
- #: views/admin_add.php:39
858
  msgid "Add New Member "
859
  msgstr ""
860
 
861
- #: views/admin_addon_settings.php:3 views/admin_settings.php:3
862
- #: views/admin_tools_settings.php:3
863
- #: views/payments/admin_payment_settings.php:3
864
- msgid "Simple WP Membership::Settings"
865
- msgstr ""
866
-
867
- #: views/admin_addon_settings.php:8
868
  msgid ""
869
  "Some of the simple membership plugin's addon settings and options will be "
870
  "displayed here (if you have them)"
871
  msgstr ""
872
 
873
- #: views/admin_addon_settings.php:13
874
  msgid "Save Changes"
875
  msgstr ""
876
 
@@ -878,15 +1064,15 @@ msgstr ""
878
  msgid "Create new membership level."
879
  msgstr ""
880
 
881
- #: views/admin_add_level.php:11 views/admin_edit_level.php:10
882
  msgid "Membership Level Name"
883
  msgstr ""
884
 
885
- #: views/admin_add_level.php:15 views/admin_edit_level.php:14
886
  msgid "Default WordPress Role"
887
  msgstr ""
888
 
889
- #: views/admin_add_level.php:19 views/admin_edit_level.php:18
890
  msgid "Access Duration"
891
  msgstr ""
892
 
@@ -896,12 +1082,12 @@ msgstr ""
896
 
897
  #: views/admin_add_level.php:23 views/admin_add_level.php:25
898
  #: views/admin_add_level.php:27 views/admin_add_level.php:29
899
- #: views/admin_edit_level.php:22 views/admin_edit_level.php:25
900
- #: views/admin_edit_level.php:28 views/admin_edit_level.php:31
901
  msgid "Expire After"
902
  msgstr ""
903
 
904
- #: views/admin_add_level.php:24 views/admin_edit_level.php:23
905
  msgid "Days (Access expires after given number of days)"
906
  msgstr ""
907
 
@@ -909,19 +1095,19 @@ msgstr ""
909
  msgid "Weeks (Access expires after given number of weeks"
910
  msgstr ""
911
 
912
- #: views/admin_add_level.php:28 views/admin_edit_level.php:29
913
  msgid "Months (Access expires after given number of months)"
914
  msgstr ""
915
 
916
- #: views/admin_add_level.php:30 views/admin_edit_level.php:32
917
  msgid "Years (Access expires after given number of years)"
918
  msgstr ""
919
 
920
- #: views/admin_add_level.php:31 views/admin_edit_level.php:34
921
  msgid "Fixed Date Expiry"
922
  msgstr ""
923
 
924
- #: views/admin_add_level.php:32 views/admin_edit_level.php:35
925
  msgid "(Access expires on a fixed date)"
926
  msgstr ""
927
 
@@ -933,18 +1119,14 @@ msgstr ""
933
  msgid "Simple WP Membership::Add-ons"
934
  msgstr ""
935
 
936
- #: views/admin_category_list.php:2
937
- msgid "Simple WP Membership::Categories"
938
- msgstr ""
939
-
940
- #: views/admin_category_list.php:7
941
  msgid ""
942
  "First of all, globally protect the category on your site by selecting "
943
  "\"General Protection\" from the drop-down box below and then select the "
944
  "categories that should be protected from non-logged in users."
945
  msgstr ""
946
 
947
- #: views/admin_category_list.php:10
948
  msgid ""
949
  "Next, select an existing membership level from the drop-down box below and "
950
  "then select the categories you want to grant access to (for that particular "
@@ -955,79 +1137,64 @@ msgstr ""
955
  msgid "Edit Member"
956
  msgstr ""
957
 
958
- #: views/admin_edit.php:6
959
  msgid "Edit existing member details."
960
  msgstr ""
961
 
962
- #: views/admin_edit.php:17
 
 
 
 
963
  msgid "(twice, leave empty to retain old password)"
964
  msgstr ""
965
 
966
- #: views/admin_edit.php:33
967
  msgid "Notify User"
968
  msgstr ""
969
 
970
- #: views/admin_edit.php:40
971
  msgid "Subscriber ID/Reference"
972
  msgstr ""
973
 
974
- #: views/admin_edit.php:44
975
  msgid "Last Accessed From IP"
976
  msgstr ""
977
 
978
- #: views/admin_edit.php:52
979
  msgid "Edit User "
980
  msgstr ""
981
 
 
 
 
 
982
  #: views/admin_edit_level.php:5
983
  msgid "Edit membership level"
984
  msgstr ""
985
 
986
- #: views/admin_edit_level.php:6
987
- msgid "Edit membership level."
 
988
  msgstr ""
989
 
990
- #: views/admin_edit_level.php:21
991
- msgid "No Expiry (Access for this level will not expire until cancelled)"
992
  msgstr ""
993
 
994
  #: views/admin_edit_level.php:26
995
- msgid "Weeks (Access expires after given number of weeks)"
996
- msgstr ""
997
-
998
- #: views/admin_edit_level.php:41
999
- msgid "Edit Membership Level "
1000
- msgstr ""
1001
-
1002
- #: views/admin_members.php:2
1003
- msgid "Simple WP Membership::Members"
1004
- msgstr ""
1005
-
1006
- #: views/admin_members.php:3 views/admin_members_list.php:30
1007
- msgid "Add New"
1008
- msgstr ""
1009
-
1010
- #: views/admin_membership_levels.php:2
1011
- msgid "Simple WP Membership::Membership Levels"
1012
- msgstr ""
1013
-
1014
- #: views/admin_membership_levels.php:12 views/admin_members_list.php:6
1015
- msgid "search"
1016
- msgstr ""
1017
-
1018
- #: views/admin_membership_level_menu.php:2
1019
- msgid "Membership level"
1020
  msgstr ""
1021
 
1022
- #: views/admin_membership_level_menu.php:3
1023
- msgid "Manage Content Production"
1024
  msgstr ""
1025
 
1026
- #: views/admin_membership_level_menu.php:4
1027
- msgid "Category Protection"
1028
  msgstr ""
1029
 
1030
- #: views/admin_membership_manage.php:17
1031
  msgid "Example Content Protection Settings"
1032
  msgstr ""
1033
 
@@ -1067,86 +1234,88 @@ msgstr ""
1067
  msgid "Member Since"
1068
  msgstr ""
1069
 
1070
- #: views/admin_tools_settings.php:9
1071
  msgid "Generate a Registration Completion link"
1072
  msgstr ""
1073
 
1074
- #: views/admin_tools_settings.php:12
1075
  msgid ""
1076
  "You can manually generate a registration completion link here and give it to "
1077
  "your customer if they have missed the email that was automatically sent out "
1078
  "to them after the payment."
1079
  msgstr ""
1080
 
1081
- #: views/admin_tools_settings.php:17
1082
  msgid "Generate Registration Completion Link"
1083
  msgstr ""
1084
 
1085
- #: views/admin_tools_settings.php:20
1086
  msgid "OR"
1087
  msgstr ""
1088
 
1089
- #: views/admin_tools_settings.php:21
1090
- msgid "For All Pending Registrations"
1091
  msgstr ""
1092
 
1093
- #: views/admin_tools_settings.php:24
1094
- msgid "Registration Completion Links Will Appear Below:"
1095
  msgstr ""
1096
 
1097
- #: views/admin_tools_settings.php:31
1098
- msgid "Send Registration Reminder Email too"
1099
  msgstr ""
1100
 
1101
- #: views/admin_tools_settings.php:34
1102
- msgid "Submit"
 
 
1103
  msgstr ""
1104
 
1105
- #: views/edit.php:59
 
 
 
 
1106
  msgid "Update"
1107
  msgstr ""
1108
 
1109
- #: views/forgot_password.php:12
1110
  msgid "Reset Password"
1111
  msgstr ""
1112
 
1113
- #: views/loggedin.php:3
1114
  msgid "Logged in as"
1115
  msgstr ""
1116
 
1117
- #: views/loggedin.php:11
1118
  msgid "Membership"
1119
  msgstr ""
1120
 
1121
- #: views/loggedin.php:15
1122
  msgid "Account Expiry"
1123
  msgstr ""
1124
 
1125
- #: views/loggedin.php:19
1126
  msgid "Logout"
1127
  msgstr ""
1128
 
1129
- #: views/login.php:18
1130
  msgid "Remember Me"
1131
  msgstr ""
1132
 
1133
- #: views/login.php:24
1134
  msgid "Forgot Password"
1135
  msgstr ""
1136
 
1137
- #: views/payments/admin_all_payment_transactions.php:7
1138
  msgid "All the payments/transactions of your members are recorded here."
1139
  msgstr ""
1140
 
1141
- #: views/payments/admin_all_payment_transactions.php:14
1142
  msgid "Search for a transaction by using email or name"
1143
  msgstr ""
1144
 
1145
- #: views/payments/admin_all_payment_transactions.php:18
1146
- msgid "Search"
1147
- msgstr ""
1148
-
1149
- #: views/payments/admin_create_payment_buttons.php:13
1150
  msgid ""
1151
  "You can create new payment button for your memberships using this interface."
1152
  msgstr ""
@@ -1155,7 +1324,7 @@ msgstr ""
1155
  msgid "Select Payment Button Type"
1156
  msgstr ""
1157
 
1158
- #: views/payments/admin_create_payment_buttons.php:34
1159
  msgid "Next"
1160
  msgstr ""
1161
 
@@ -1163,140 +1332,183 @@ msgstr ""
1163
  msgid "You can edit a payment button using this interface."
1164
  msgstr ""
1165
 
1166
- #: views/payments/admin_payments_page.php:9
1167
- msgid "Simple Membership::Payments"
1168
- msgstr ""
1169
-
1170
- #: views/payments/admin_payment_buttons.php:7
1171
  msgid ""
1172
  "All the membership buttons that you created in the plugin are displayed here."
1173
  msgstr ""
1174
 
1175
- #: views/payments/admin_payment_settings.php:31
1176
  msgid "PayPal Integration Settings"
1177
  msgstr ""
1178
 
1179
- #: views/payments/admin_payment_settings.php:34
1180
  msgid "Generate the \"Advanced Variables\" Code for your PayPal button"
1181
  msgstr ""
1182
 
1183
- #: views/payments/admin_payment_settings.php:37
1184
  msgid "Enter the Membership Level ID"
1185
  msgstr ""
1186
 
1187
- #: views/payments/admin_payment_settings.php:39
1188
  msgid "Generate Code"
1189
  msgstr ""
1190
 
1191
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:18
1192
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:192
1193
  msgid "PayPal Buy Now Button Configuration"
1194
  msgstr ""
1195
 
1196
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:28
1197
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:209
1198
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:29
1199
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:302
 
 
1200
  msgid "Button Title"
1201
  msgstr ""
1202
 
1203
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:46
1204
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:227
 
 
1205
  msgid "Payment Amount"
1206
  msgstr ""
1207
 
1208
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:54
1209
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:235
1210
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:47
1211
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:320
 
 
1212
  msgid "Payment Currency"
1213
  msgstr ""
1214
 
1215
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:93
1216
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:274
1217
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:173
1218
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:446
 
 
1219
  msgid "Return URL"
1220
  msgstr ""
1221
 
1222
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:101
1223
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:282
1224
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:86
1225
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:359
1226
  msgid "PayPal Email"
1227
  msgstr ""
1228
 
1229
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:109
1230
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:290
1231
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:181
1232
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:454
1233
  msgid "Button Image URL"
1234
  msgstr ""
1235
 
1236
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:119
1237
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:300
1238
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:193
1239
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:466
 
 
1240
  msgid "Save Payment Data"
1241
  msgstr ""
1242
 
1243
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:201
1244
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:294
 
1245
  msgid "Button ID"
1246
  msgstr ""
1247
 
1248
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:20
1249
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:288
1250
  msgid "PayPal Subscription Button Configuration"
1251
  msgstr ""
1252
 
1253
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:94
1254
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:367
1255
  msgid "Billing Amount Each Cycle"
1256
  msgstr ""
1257
 
1258
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:102
1259
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:375
1260
  msgid "Billing Cycle"
1261
  msgstr ""
1262
 
1263
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:115
1264
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:388
1265
  msgid "Billing Cycle Count"
1266
  msgstr ""
1267
 
1268
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:123
1269
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:396
1270
  msgid "Re-attempt on Failure"
1271
  msgstr ""
1272
 
1273
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:136
1274
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:409
1275
  msgid ""
1276
  "Trial Billing Details (Leave empty if you are not offering a trial period)"
1277
  msgstr ""
1278
 
1279
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:142
1280
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:415
1281
  msgid "Trial Billing Amount"
1282
  msgstr ""
1283
 
1284
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:150
1285
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:423
1286
  msgid "Trial Billing Period"
1287
  msgstr ""
1288
 
1289
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:167
1290
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:440
1291
  msgid "Optional Details"
1292
  msgstr ""
1293
 
1294
- #: views/payments/payment-gateway/paypal_button_shortcode_view.php:77
1295
- #: views/payments/payment-gateway/paypal_button_shortcode_view.php:79
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1296
  msgid "Buy Now"
1297
  msgstr ""
1298
 
1299
- #: views/payments/payment-gateway/paypal_button_shortcode_view.php:197
1300
- #: views/payments/payment-gateway/paypal_button_shortcode_view.php:199
1301
  msgid "Subscribe Now"
1302
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Simple Membershp\n"
4
+ "POT-Creation-Date: 2016-08-18 21:30+1000\n"
5
+ "PO-Revision-Date: 2016-08-18 21:31+1000\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "MIME-Version: 1.0\n"
13
  "X-Poedit-Basepath: .\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
+ #: classes/class.simple-wp-membership.php:295
17
  msgid "You are not logged in."
18
  msgstr ""
19
 
20
+ #: classes/class.simple-wp-membership.php:342
21
+ msgid ""
22
+ "You have the sandbox payment mode enabled in plugin settings. Make sure to "
23
+ "turn off the sandbox mode when you want to do live transactions."
24
+ msgstr ""
25
+
26
+ #: classes/class.simple-wp-membership.php:357
27
  msgid "Simple WP Membership Protection"
28
  msgstr ""
29
 
30
+ #: classes/class.simple-wp-membership.php:369
31
  msgid "Simple Membership Protection options"
32
  msgstr ""
33
 
34
+ #: classes/class.simple-wp-membership.php:385
35
  msgid "Do you want to protect this content?"
36
  msgstr ""
37
 
38
+ #: classes/class.simple-wp-membership.php:390
39
  msgid "Select the membership level that can access this content:"
40
  msgstr ""
41
 
42
+ #: classes/class.simple-wp-membership.php:519
43
  msgid "WP Membership"
44
  msgstr ""
45
 
46
+ #: classes/class.simple-wp-membership.php:520
47
+ #: classes/class.swpm-members.php:12 classes/class.swpm-members.php:404
48
  msgid "Members"
49
  msgstr ""
50
 
51
+ #: classes/class.simple-wp-membership.php:521
52
  #: classes/class.swpm-category-list.php:20
53
+ #: classes/class.swpm-membership-levels.php:12
54
+ #: classes/class.swpm-membership-levels.php:245
55
  msgid "Membership Levels"
56
  msgstr ""
57
 
58
+ #: classes/class.simple-wp-membership.php:522
59
  msgid "Settings"
60
  msgstr ""
61
 
62
+ #: classes/class.simple-wp-membership.php:523
63
  msgid "Payments"
64
  msgstr ""
65
 
66
+ #: classes/class.simple-wp-membership.php:524
67
  msgid "Add-ons"
68
  msgstr ""
69
 
70
+ #: classes/class.swpm-access-control.php:47
71
+ #: classes/class.swpm-access-control.php:120
 
72
  msgid "You need to login to view this content. "
73
  msgstr ""
74
 
75
+ #: classes/class.swpm-access-control.php:56
76
+ #: classes/class.swpm-access-control.php:128
77
+ #: classes/class.swpm-access-control.php:209
78
+ msgid "Your account has expired. "
 
79
  msgstr ""
80
 
81
+ #: classes/class.swpm-access-control.php:66
82
+ #: classes/class.swpm-access-control.php:138
83
  msgid "This content can only be viewed by members who joined on or before "
84
  msgstr ""
85
 
86
+ #: classes/class.swpm-access-control.php:79
87
+ #: classes/class.swpm-access-control.php:148
88
  msgid "This content is not permitted for your membership level."
89
  msgstr ""
90
 
91
+ #: classes/class.swpm-access-control.php:201
92
+ msgid "You need to login to view the rest of the content. "
93
  msgstr ""
94
 
95
+ #: classes/class.swpm-access-control.php:214
96
+ msgid " The rest of the content is not permitted for your membership level."
 
97
  msgstr ""
98
 
99
  #: classes/class.swpm-admin-registration.php:54
128
  msgid "Available"
129
  msgstr ""
130
 
131
+ #: classes/class.swpm-auth.php:46
132
+ msgid ""
133
+ "Warning! Simple Membership plugin cannot process this login request to "
134
+ "prevent you from getting logged out of WP Admin accidentally."
135
+ msgstr ""
136
+
137
+ #: classes/class.swpm-auth.php:47
138
+ msgid ""
139
+ "You are logged into the site as an ADMIN user in this browser. First, logout "
140
+ "from WP Admin then you will be able to log in as a member."
141
+ msgstr ""
142
+
143
+ #: classes/class.swpm-auth.php:48
144
+ msgid ""
145
+ "Alternatively, you can use a different browser (where you are not logged-in "
146
+ "as ADMIN) to test the membership login."
147
+ msgstr ""
148
+
149
+ #: classes/class.swpm-auth.php:49
150
+ msgid ""
151
+ "Your normal visitors or members will never see this message. This message is "
152
+ "ONLY for ADMIN user."
153
+ msgstr ""
154
+
155
+ #: classes/class.swpm-auth.php:64
156
  msgid "User Not Found."
157
  msgstr ""
158
 
159
+ #: classes/class.swpm-auth.php:71
160
  msgid "Password Empty or Invalid."
161
  msgstr ""
162
 
163
+ #: classes/class.swpm-auth.php:97
164
  msgid "Account is inactive."
165
  msgstr ""
166
 
167
+ #: classes/class.swpm-auth.php:100 classes/class.swpm-auth.php:121
168
+ msgid "Account has expired."
169
  msgstr ""
170
 
171
+ #: classes/class.swpm-auth.php:103
172
+ msgid "Account is pending."
173
  msgstr ""
174
 
175
+ #: classes/class.swpm-auth.php:129
176
  msgid "You are logged in as:"
177
  msgstr ""
178
 
179
+ #: classes/class.swpm-auth.php:175
180
  msgid "Logged Out Successfully."
181
  msgstr ""
182
 
183
+ #: classes/class.swpm-auth.php:227
184
  msgid "Session Expired."
185
  msgstr ""
186
 
187
+ #: classes/class.swpm-auth.php:236
188
  msgid "Invalid Username"
189
  msgstr ""
190
 
191
+ #: classes/class.swpm-auth.php:244
192
  msgid "Please login again."
193
  msgstr ""
194
 
195
+ #: classes/class.swpm-category-list.php:19 classes/class.swpm-members.php:25
196
+ #: classes/class.swpm-membership-levels.php:11
197
+ #: classes/class.swpm-membership-levels.php:21
198
+ #: classes/admin-includes/class.swpm-payments-list-table.php:85
199
  #: views/add.php:30 views/admin_member_form_common_part.php:2
200
  #: views/edit.php:53
201
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:34
202
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:217
203
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:35
204
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:307
205
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:47
206
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:259
207
  msgid "Membership Level"
208
  msgstr ""
209
 
210
+ #: classes/class.swpm-category-list.php:33
211
+ msgid "Category ID"
 
212
  msgstr ""
213
 
214
  #: classes/class.swpm-category-list.php:34
215
+ msgid "Category Name"
216
  msgstr ""
217
 
218
  #: classes/class.swpm-category-list.php:35
219
+ msgid "Category Type (Taxonomy)"
220
  msgstr ""
221
 
222
  #: classes/class.swpm-category-list.php:36
223
+ msgid "Description"
224
+ msgstr ""
225
+
226
+ #: classes/class.swpm-category-list.php:37
227
  msgid "Count"
228
  msgstr ""
229
 
230
+ #: classes/class.swpm-category-list.php:89
231
  msgid "Category protection updated!"
232
  msgstr ""
233
 
234
+ #: classes/class.swpm-comment-form-related.php:15
235
+ msgid "Please login to comment."
236
+ msgstr ""
237
+
238
+ #: classes/class.swpm-comment-form-related.php:40
239
+ msgid "Please Login to Comment."
240
+ msgstr ""
241
+
242
+ #: classes/class.swpm-comment-form-related.php:79
243
+ msgid "Comments not allowed by a non-member."
244
+ msgstr ""
245
+
246
+ #: classes/class.swpm-form.php:29
247
  msgid ""
248
  "Wordpress account exists with given username. But given email doesn't match."
249
  msgstr ""
250
 
251
+ #: classes/class.swpm-form.php:34
252
  msgid ""
253
  "Wordpress account exists with given email. But given username doesn't match."
254
  msgstr ""
255
 
256
+ #: classes/class.swpm-form.php:43
257
  msgid "Username is required"
258
  msgstr ""
259
 
260
+ #: classes/class.swpm-form.php:47
261
  msgid "Username contains invalid character"
262
  msgstr ""
263
 
264
+ #: classes/class.swpm-form.php:55
265
  msgid "Username already exists."
266
  msgstr ""
267
 
268
+ #: classes/class.swpm-form.php:78
269
  msgid "Password is required"
270
  msgstr ""
271
 
272
+ #: classes/class.swpm-form.php:85
273
  msgid "Password mismatch"
274
  msgstr ""
275
 
276
+ #: classes/class.swpm-form.php:96
277
  msgid "Email is required"
278
  msgstr ""
279
 
280
+ #: classes/class.swpm-form.php:100
281
  msgid "Email is invalid"
282
  msgstr ""
283
 
284
+ #: classes/class.swpm-form.php:116
285
  msgid "Email is already used."
286
  msgstr ""
287
 
288
+ #: classes/class.swpm-form.php:173
289
  msgid "Member since field is invalid"
290
  msgstr ""
291
 
292
+ #: classes/class.swpm-form.php:184
293
  msgid "Access starts field is invalid"
294
  msgstr ""
295
 
296
+ #: classes/class.swpm-form.php:194
297
  msgid "Gender field is invalid"
298
  msgstr ""
299
 
300
+ #: classes/class.swpm-form.php:205
301
  msgid "Account state field is invalid"
302
  msgstr ""
303
 
304
+ #: classes/class.swpm-form.php:212
305
  msgid "Invalid membership level"
306
  msgstr ""
307
 
308
+ #: classes/class.swpm-front-registration.php:47
309
+ msgid ""
310
+ "Free membership is disabled on this site. Please make a payment from the "
311
+ msgstr ""
312
+
313
+ #: classes/class.swpm-front-registration.php:49
314
+ msgid ""
315
+ "You will receive a unique link via email after the payment. You will be able "
316
+ "to use that link to complete the premium membership registration."
317
+ msgstr ""
318
+
319
+ #: classes/class.swpm-front-registration.php:77
320
  msgid "Security check: captcha validation failed."
321
  msgstr ""
322
 
323
+ #: classes/class.swpm-front-registration.php:86
324
  msgid "Registration Successful. "
325
  msgstr ""
326
 
327
+ #: classes/class.swpm-front-registration.php:86
328
+ #: classes/class.swpm-utils-misc.php:218 classes/class.swpm-utils-misc.php:230
329
  msgid "Please"
330
  msgstr ""
331
 
332
+ #: classes/class.swpm-front-registration.php:86
333
+ #: classes/class.swpm-utils-misc.php:218 views/login.php:27
334
  msgid "Login"
335
  msgstr ""
336
 
337
+ #: classes/class.swpm-front-registration.php:99
338
+ #: classes/class.swpm-front-registration.php:186
339
  msgid "Please correct the following"
340
  msgstr ""
341
 
342
+ #: classes/class.swpm-front-registration.php:130
343
  msgid "Membership Level Couldn't be found."
344
  msgstr ""
345
 
346
+ #: classes/class.swpm-front-registration.php:169
347
  msgid "Profile updated successfully."
348
  msgstr ""
349
 
350
+ #: classes/class.swpm-front-registration.php:177
351
  msgid ""
352
  "Profile updated successfully. You will need to re-login since you changed "
353
  "your password."
354
  msgstr ""
355
 
356
+ #: classes/class.swpm-front-registration.php:196
357
  msgid "Email address not valid."
358
  msgstr ""
359
 
360
+ #: classes/class.swpm-front-registration.php:207
361
  msgid "No user found with that email address."
362
  msgstr ""
363
 
364
+ #: classes/class.swpm-front-registration.php:208
365
+ #: classes/class.swpm-front-registration.php:234
366
  msgid "Email Address: "
367
  msgstr ""
368
 
369
+ #: classes/class.swpm-front-registration.php:233
370
  msgid "New password has been sent to your email address."
371
  msgstr ""
372
 
373
+ #: classes/class.swpm-init-time-tasks.php:111
374
  msgid "Sorry, Nonce verification failed."
375
  msgstr ""
376
 
377
+ #: classes/class.swpm-init-time-tasks.php:118
378
  msgid "Sorry, Password didn't match."
379
  msgstr ""
380
 
386
  msgid "Access duration must be > 0."
387
  msgstr ""
388
 
389
+ #: classes/class.swpm-members.php:11
390
+ msgid "Member"
 
 
 
391
  msgstr ""
392
 
393
+ #: classes/class.swpm-members.php:20
394
+ #: classes/class.swpm-membership-levels.php:20
395
+ msgid "ID"
396
  msgstr ""
397
 
398
+ #: classes/class.swpm-members.php:21 views/add.php:6 views/admin_add.php:10
399
+ #: views/admin_edit.php:13 views/edit.php:5 views/login.php:11
400
  msgid "Username"
401
  msgstr ""
402
 
403
+ #: classes/class.swpm-members.php:22
404
+ #: classes/admin-includes/class.swpm-payments-list-table.php:78
405
  #: views/add.php:22 views/admin_member_form_common_part.php:15
406
  #: views/edit.php:21
407
  msgid "First Name"
408
  msgstr ""
409
 
410
+ #: classes/class.swpm-members.php:23
411
+ #: classes/admin-includes/class.swpm-payments-list-table.php:79
412
  #: views/add.php:26 views/admin_member_form_common_part.php:19
413
  #: views/edit.php:25
414
  msgid "Last Name"
415
  msgstr ""
416
 
417
+ #: classes/class.swpm-members.php:24 views/add.php:10 views/edit.php:9
418
  msgid "Email"
419
  msgstr ""
420
 
421
+ #: classes/class.swpm-members.php:26
422
  #: views/admin_member_form_common_part.php:11
423
  msgid "Access Starts"
424
  msgstr ""
425
 
426
+ #: classes/class.swpm-members.php:27
427
  msgid "Account State"
428
  msgstr ""
429
 
430
+ #: classes/class.swpm-members.php:43
431
+ #: classes/class.swpm-membership-levels.php:36
432
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:94
433
+ #: classes/admin-includes/class.swpm-payments-list-table.php:102
434
  msgid "Delete"
435
  msgstr ""
436
 
437
+ #: classes/class.swpm-members.php:44
438
  msgid "Set Status to Active"
439
  msgstr ""
440
 
441
+ #: classes/class.swpm-members.php:45
442
+ msgid "Set Status to Active and Notify"
443
+ msgstr ""
444
+
445
+ #: classes/class.swpm-members.php:46
446
  msgid "Set Status to Inactive"
447
  msgstr ""
448
 
449
+ #: classes/class.swpm-members.php:47
450
  msgid "Set Status to Pending"
451
  msgstr ""
452
 
453
+ #: classes/class.swpm-members.php:48
454
  msgid "Set Status to Expired"
455
  msgstr ""
456
 
457
+ #: classes/class.swpm-members.php:68
458
+ msgid "incomplete"
459
+ msgstr ""
460
+
461
+ #: classes/class.swpm-members.php:183
462
+ msgid "No member found."
463
+ msgstr ""
464
+
465
+ #: classes/class.swpm-members.php:399
466
+ msgid "Simple WP Membership::Members"
467
+ msgstr ""
468
+
469
+ #: classes/class.swpm-members.php:400 views/admin_members_list.php:40
470
+ msgid "Add New"
471
+ msgstr ""
472
+
473
+ #: classes/class.swpm-members.php:405 views/admin_add.php:5
474
+ msgid "Add Member"
475
  msgstr ""
476
 
477
  #: classes/class.swpm-membership-level.php:38
479
  msgstr ""
480
 
481
  #: classes/class.swpm-membership-level.php:57
482
+ msgid "Membership Level Updated Successfully."
483
  msgstr ""
484
 
485
+ #: classes/class.swpm-membership-levels.php:22
486
  msgid "Role"
487
  msgstr ""
488
 
489
+ #: classes/class.swpm-membership-levels.php:23
490
  msgid "Access Valid For/Until"
491
  msgstr ""
492
 
493
+ #: classes/class.swpm-membership-levels.php:203
494
+ #: views/admin_members_list.php:27
495
+ #: views/payments/admin_all_payment_transactions.php:16
496
+ msgid "Search"
497
  msgstr ""
498
 
499
+ #: classes/class.swpm-membership-levels.php:241
500
+ msgid "Simple WP Membership::Membership Levels"
501
  msgstr ""
502
 
503
+ #: classes/class.swpm-membership-levels.php:246
504
+ msgid "Add Level"
505
  msgstr ""
506
 
507
+ #: classes/class.swpm-membership-levels.php:247
508
+ msgid "Manage Content Production"
509
  msgstr ""
510
 
511
+ #: classes/class.swpm-membership-levels.php:248
512
+ msgid "Category Protection"
513
+ msgstr ""
514
+
515
+ #: classes/class.swpm-settings.php:27 classes/class.swpm-settings.php:55
516
  msgid "General Settings"
517
  msgstr ""
518
 
519
+ #: classes/class.swpm-settings.php:28
520
  msgid "Payment Settings"
521
  msgstr ""
522
 
523
+ #: classes/class.swpm-settings.php:29
524
  msgid "Email Settings"
525
  msgstr ""
526
 
527
+ #: classes/class.swpm-settings.php:30
528
  msgid "Tools"
529
  msgstr ""
530
 
531
+ #: classes/class.swpm-settings.php:31 classes/class.swpm-settings.php:178
532
  msgid "Advanced Settings"
533
  msgstr ""
534
 
535
+ #: classes/class.swpm-settings.php:32
536
  msgid "Addons Settings"
537
  msgstr ""
538
 
539
+ #: classes/class.swpm-settings.php:54
540
  msgid "Plugin Documentation"
541
  msgstr ""
542
 
543
+ #: classes/class.swpm-settings.php:56
544
  msgid "Enable Free Membership"
545
  msgstr ""
546
 
547
+ #: classes/class.swpm-settings.php:57
548
  msgid ""
549
  "Enable/disable registration for free membership level. When you enable this "
550
  "option, make sure to specify a free membership level ID in the field below."
551
  msgstr ""
552
 
553
+ #: classes/class.swpm-settings.php:58
554
  msgid "Free Membership Level ID"
555
  msgstr ""
556
 
557
+ #: classes/class.swpm-settings.php:59
558
  msgid "Assign free membership level ID"
559
  msgstr ""
560
 
561
+ #: classes/class.swpm-settings.php:60
562
  msgid "Enable More Tag Protection"
563
  msgstr ""
564
 
565
+ #: classes/class.swpm-settings.php:61
566
  msgid ""
567
  "Enables or disables \"more\" tag protection in the posts and pages. Anything "
568
  "after the More tag is protected. Anything before the more tag is teaser "
569
  "content."
570
  msgstr ""
571
 
572
+ #: classes/class.swpm-settings.php:62
573
  msgid "Hide Adminbar"
574
  msgstr ""
575
 
576
+ #: classes/class.swpm-settings.php:63
577
  msgid ""
578
  "WordPress shows an admin toolbar to the logged in users of the site. Check "
579
+ "this if you want to hide that admin toolbar in the frontend of your site."
580
  msgstr ""
581
 
582
+ #: classes/class.swpm-settings.php:64
583
+ msgid "Show Adminbar to Admin"
584
  msgstr ""
585
 
586
+ #: classes/class.swpm-settings.php:65
587
  msgid ""
588
+ "Use this option if you want to show the admin toolbar to admin users only. "
589
+ "The admin toolbar will be hidden for all other users."
590
  msgstr ""
591
 
592
+ #: classes/class.swpm-settings.php:67
593
+ msgid "Default Account Status"
594
  msgstr ""
595
 
596
+ #: classes/class.swpm-settings.php:70
597
+ msgid ""
598
+ "Select the default account status for newly registered users. If you want to "
599
+ "manually approve the members then you can set the status to \"Pending\"."
600
  msgstr ""
601
 
602
+ #: classes/class.swpm-settings.php:72
603
+ msgid "Members Must be Logged in to Comment"
604
  msgstr ""
605
 
606
+ #: classes/class.swpm-settings.php:73
607
+ msgid ""
608
+ "Enable this option if you only want the members of the site to be able to "
609
+ "post a comment."
610
  msgstr ""
611
 
612
+ #: classes/class.swpm-settings.php:82
613
  msgid "Pages Settings"
614
  msgstr ""
615
 
616
+ #: classes/class.swpm-settings.php:83
617
  msgid "Login Page URL"
618
  msgstr ""
619
 
620
+ #: classes/class.swpm-settings.php:85
621
  msgid "Registration Page URL"
622
  msgstr ""
623
 
624
+ #: classes/class.swpm-settings.php:87
625
  msgid "Join Us Page URL"
626
  msgstr ""
627
 
628
+ #: classes/class.swpm-settings.php:89
629
  msgid "Edit Profile Page URL"
630
  msgstr ""
631
 
632
+ #: classes/class.swpm-settings.php:91
633
  msgid "Password Reset Page URL"
634
  msgstr ""
635
 
636
+ #: classes/class.swpm-settings.php:94
637
  msgid "Test & Debug Settings"
638
  msgstr ""
639
 
640
+ #: classes/class.swpm-settings.php:96
641
  msgid "Check this option to enable debug logging."
642
  msgstr ""
643
 
644
+ #: classes/class.swpm-settings.php:101
645
  msgid "Enable Sandbox Testing"
646
  msgstr ""
647
 
648
+ #: classes/class.swpm-settings.php:102
649
  msgid "Enable this option if you want to do sandbox payment testing."
650
  msgstr ""
651
 
652
+ #: classes/class.swpm-settings.php:115 classes/class.swpm-settings.php:173
653
+ #: classes/class.swpm-settings.php:290
654
  msgid "Settings updated!"
655
  msgstr ""
656
 
657
+ #: classes/class.swpm-settings.php:120
658
  msgid "Email Misc. Settings"
659
  msgstr ""
660
 
661
+ #: classes/class.swpm-settings.php:121
662
  msgid "From Email Address"
663
  msgstr ""
664
 
665
+ #: classes/class.swpm-settings.php:125
666
  msgid "Email Settings (Prompt to Complete Registration )"
667
  msgstr ""
668
 
669
+ #: classes/class.swpm-settings.php:126 classes/class.swpm-settings.php:135
670
+ #: classes/class.swpm-settings.php:148 classes/class.swpm-settings.php:153
671
+ #: classes/class.swpm-settings.php:158
672
  msgid "Email Subject"
673
  msgstr ""
674
 
675
+ #: classes/class.swpm-settings.php:128 classes/class.swpm-settings.php:137
676
+ #: classes/class.swpm-settings.php:149 classes/class.swpm-settings.php:154
677
+ #: classes/class.swpm-settings.php:159
678
  msgid "Email Body"
679
  msgstr ""
680
 
681
+ #: classes/class.swpm-settings.php:132
682
+ msgid ""
683
+ "Enter the email address where you want the admin notification email to be "
684
+ "sent to."
685
+ msgstr ""
686
+
687
+ #: classes/class.swpm-settings.php:133
688
+ msgid ""
689
+ " You can put multiple email addresses separated by comma (,) in the above "
690
+ "field to send the notification to multiple email addresses."
691
+ msgstr ""
692
+
693
+ #: classes/class.swpm-settings.php:134
694
  msgid "Email Settings (Registration Complete)"
695
  msgstr ""
696
 
697
+ #: classes/class.swpm-settings.php:139
698
  msgid "Send Notification to Admin"
699
  msgstr ""
700
 
701
+ #: classes/class.swpm-settings.php:140
702
  msgid ""
703
  "Enable this option if you want the admin to receive a notification when a "
704
  "member registers."
705
  msgstr ""
706
 
707
+ #: classes/class.swpm-settings.php:141
708
  msgid "Admin Email Address"
709
  msgstr ""
710
 
711
+ #: classes/class.swpm-settings.php:143
 
 
 
 
 
 
712
  msgid "Send Email to Member When Added via Admin Dashboard"
713
  msgstr ""
714
 
715
+ #: classes/class.swpm-settings.php:147
716
  msgid "Email Settings (Password Reset)"
717
  msgstr ""
718
 
719
+ #: classes/class.swpm-settings.php:152
720
  msgid " Email Settings (Account Upgrade Notification)"
721
  msgstr ""
722
 
723
+ #: classes/class.swpm-settings.php:157
724
+ msgid " Email Settings (Bulk Account Activate Notification)"
725
+ msgstr ""
726
+
727
+ #: classes/class.swpm-settings.php:180
728
  msgid "Enable Expired Account Login"
729
  msgstr ""
730
 
731
+ #: classes/class.swpm-settings.php:181
732
  msgid ""
733
  "When enabled, expired members will be able to log into the system but won't "
734
  "be able to view any protected content. This allows them to easily renew "
735
  "their account by making another payment."
736
  msgstr ""
737
 
738
+ #: classes/class.swpm-settings.php:183
739
+ msgid "Membership Renewal URL"
740
  msgstr ""
741
 
742
+ #: classes/class.swpm-settings.php:184
743
+ msgid ""
744
+ "You can create a renewal page for your site. Read <a href=\"https://simple-"
745
+ "membership-plugin.com/creating-membership-renewal-button/\" target=\"_blank"
746
+ "\">this documentation</a> to learn how to create a renewal page."
747
  msgstr ""
748
 
749
+ #: classes/class.swpm-settings.php:186
750
+ msgid "Allow Account Deletion"
751
  msgstr ""
752
 
753
+ #: classes/class.swpm-settings.php:187
754
+ msgid "Allow users to delete their accounts."
755
  msgstr ""
756
 
757
+ #: classes/class.swpm-settings.php:189
758
+ msgid "Use WordPress Timezone"
759
  msgstr ""
760
 
761
+ #: classes/class.swpm-settings.php:190
762
+ msgid ""
763
+ "Use this option if you want to use the timezone value specified in your "
764
+ "WordPress General Settings interface."
765
  msgstr ""
766
 
767
+ #: classes/class.swpm-settings.php:192
768
+ msgid "Auto Delete Pending Account"
769
  msgstr ""
770
 
771
+ #: classes/class.swpm-settings.php:195
772
+ msgid "Select how long you want to keep \"pending\" account."
773
  msgstr ""
774
 
775
+ #: classes/class.swpm-settings.php:197
776
+ msgid "Admin Dashboard Access Permission"
777
  msgstr ""
778
 
779
+ #: classes/class.swpm-settings.php:200
780
+ msgid ""
781
+ "SWPM admin dashboard is accessible to admin users only (just like any other "
782
+ "plugin). You can allow users with other WP user role to access the SWPM "
783
+ "admin dashboard by selecting a value here."
784
  msgstr ""
785
 
786
+ #: classes/class.swpm-settings.php:295
787
+ msgid "General Plugin Settings."
788
  msgstr ""
789
 
790
+ #: classes/class.swpm-settings.php:299
791
+ msgid "Page Setup and URL Related settings."
792
  msgstr ""
793
 
794
+ #: classes/class.swpm-settings.php:303
795
+ msgid "Testing and Debug Related Settings."
 
 
796
  msgstr ""
797
 
798
+ #: classes/class.swpm-settings.php:307
799
+ msgid ""
800
+ "This email will be sent to your users when they complete the registration "
801
+ "and become a member."
802
  msgstr ""
803
 
804
+ #: classes/class.swpm-settings.php:311
805
+ msgid ""
806
+ "This email will be sent to your users when they use the password reset "
807
+ "functionality."
808
  msgstr ""
809
 
810
+ #: classes/class.swpm-settings.php:315
811
+ msgid "Settings in this section apply to all emails."
 
812
  msgstr ""
813
 
814
+ #: classes/class.swpm-settings.php:319
815
+ msgid ""
816
+ "This email will be sent to your users after account upgrade (when an "
817
+ "existing member pays for a new membership level)."
818
  msgstr ""
819
 
820
+ #: classes/class.swpm-settings.php:323
821
+ msgid ""
822
+ "This email will be sent to your members when you use the bulk account "
823
+ "activate and notify action."
824
  msgstr ""
825
 
826
+ #: classes/class.swpm-settings.php:327
827
+ msgid ""
828
+ "This email will be sent to prompt users to complete registration after the "
829
+ "payment."
830
  msgstr ""
831
 
832
+ #: classes/class.swpm-settings.php:331
833
+ msgid "This page allows you to configure some advanced features of the plugin."
834
+ msgstr ""
835
+
836
+ #: classes/class.swpm-settings.php:437
837
+ msgid "Simple WP Membership::Settings"
838
+ msgstr ""
839
+
840
+ #: classes/class.swpm-utils-member.php:21
841
+ #: classes/class.swpm-utils-member.php:29
842
+ #: classes/class.swpm-utils-member.php:37
843
+ #: classes/class.swpm-utils-member.php:47
844
+ msgid "User is not logged in."
845
+ msgstr ""
846
+
847
+ #: classes/class.swpm-utils-misc.php:50
848
+ msgid "Registration"
849
+ msgstr ""
850
+
851
+ #: classes/class.swpm-utils-misc.php:73
852
+ msgid "Member Login"
853
  msgstr ""
854
 
855
+ #: classes/class.swpm-utils-misc.php:96
856
+ msgid "Profile"
857
+ msgstr ""
858
+
859
+ #: classes/class.swpm-utils-misc.php:119
860
+ msgid "Password Reset"
861
+ msgstr ""
862
+
863
+ #: classes/class.swpm-utils-misc.php:219
864
+ msgid "Not a Member?"
865
+ msgstr ""
866
+
867
+ #: classes/class.swpm-utils-misc.php:219 views/login.php:33
868
+ msgid "Join Us"
869
  msgstr ""
870
 
871
+ #: classes/class.swpm-utils-misc.php:230
872
+ msgid "renew"
873
  msgstr ""
874
 
875
+ #: classes/class.swpm-utils-misc.php:230
876
+ msgid " your account to gain access to this content."
877
  msgstr ""
878
 
879
+ #: classes/class.swpm-utils-template.php:38
880
+ msgid "Error! Failed to find a template path for the specified template: "
881
  msgstr ""
882
 
883
+ #: classes/class.swpm-utils.php:92
884
+ msgid "Active"
885
+ msgstr ""
886
+
887
+ #: classes/class.swpm-utils.php:93
888
+ msgid "Inactive"
889
+ msgstr ""
890
+
891
+ #: classes/class.swpm-utils.php:94
892
+ msgid "Pending"
893
+ msgstr ""
894
+
895
+ #: classes/class.swpm-utils.php:95
896
+ msgid "Expired"
897
+ msgstr ""
898
+
899
+ #: classes/class.swpm-utils.php:328
900
+ msgid "Never"
901
+ msgstr ""
902
+
903
+ #: classes/class.swpm-utils.php:420
904
+ msgid "Delete Account"
905
+ msgstr ""
906
+
907
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:75
908
+ msgid "Payment Button ID"
909
+ msgstr ""
910
+
911
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:76
912
+ msgid "Payment Button Title"
913
+ msgstr ""
914
+
915
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:77
916
+ msgid "Membership Level ID"
917
+ msgstr ""
918
+
919
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:78
920
+ msgid "Button Type"
921
+ msgstr ""
922
+
923
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:79
924
+ msgid "Button Shortcode"
925
+ msgstr ""
926
+
927
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:127
928
+ #: views/admin_members_list.php:6
929
+ #: views/payments/admin_all_payment_transactions.php:32
930
+ msgid "The selected entry was deleted!"
931
+ msgstr ""
932
+
933
+ #: classes/admin-includes/class.swpm-payments-admin-menu.php:21
934
+ msgid "Simple Membership::Payments"
935
+ msgstr ""
936
+
937
+ #: classes/admin-includes/class.swpm-payments-list-table.php:57
938
+ msgid "View Profile"
939
  msgstr ""
940
 
941
+ #: classes/admin-includes/class.swpm-payments-list-table.php:76
942
+ msgid "Row ID"
943
  msgstr ""
944
 
945
+ #: classes/admin-includes/class.swpm-payments-list-table.php:77
946
+ #: views/forgot_password.php:5
947
+ msgid "Email Address"
948
  msgstr ""
949
 
950
+ #: classes/admin-includes/class.swpm-payments-list-table.php:80
951
+ msgid "Member Profile"
952
  msgstr ""
953
 
954
+ #: classes/admin-includes/class.swpm-payments-list-table.php:81
955
+ msgid "Date"
 
956
  msgstr ""
957
 
958
+ #: classes/admin-includes/class.swpm-payments-list-table.php:82
959
+ msgid "Transaction ID"
 
960
  msgstr ""
961
 
962
+ #: classes/admin-includes/class.swpm-payments-list-table.php:83
963
+ msgid "Subscriber ID"
964
  msgstr ""
965
 
966
+ #: classes/admin-includes/class.swpm-payments-list-table.php:84
967
+ msgid "Amount"
968
  msgstr ""
969
 
970
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:55
971
  msgid "Your membership profile will be updated to reflect the payment."
972
  msgstr ""
973
 
974
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:56
975
  msgid "Your profile username: "
976
  msgstr ""
977
 
978
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:68
979
  msgid "Click on the following link to complete the registration."
980
  msgstr ""
981
 
982
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:69
983
  msgid "Click here to complete your paid registration"
984
  msgstr ""
985
 
986
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:74
987
  msgid ""
988
  "If you have just made a membership payment then your payment is yet to be "
989
  "processed. Please check back in a few minutes. An email will be sent to you "
990
  "with the details shortly."
991
  msgstr ""
992
 
993
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:88
994
  msgid "Expiry: "
995
  msgstr ""
996
 
997
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:90
998
  msgid "You are not logged-in as a member"
999
  msgstr ""
1000
 
1001
+ #: views/add.php:14 views/admin_add.php:18 views/admin_edit.php:38
1002
+ #: views/edit.php:13 views/login.php:17
1003
  msgid "Password"
1004
  msgstr ""
1005
 
1012
  msgstr ""
1013
 
1014
  #: views/admin_add.php:6
 
 
 
 
1015
  msgid "Create a brand new user and add it to this site."
1016
  msgstr ""
1017
 
1018
+ #: views/admin_add.php:10 views/admin_add.php:14 views/admin_add_level.php:11
1019
  #: views/admin_add_level.php:15 views/admin_add_level.php:19
1020
+ #: views/admin_edit.php:13 views/admin_edit.php:34
1021
+ #: views/admin_edit_level.php:15 views/admin_edit_level.php:19
1022
+ #: views/admin_edit_level.php:23
1023
  msgid "(required)"
1024
  msgstr ""
1025
 
1026
+ #: views/admin_add.php:14 views/admin_edit.php:34
1027
  msgid "E-mail"
1028
  msgstr ""
1029
 
1030
+ #: views/admin_add.php:18
1031
  msgid "(twice, required)"
1032
  msgstr ""
1033
 
1034
+ #: views/admin_add.php:23 views/admin_edit.php:42
1035
  msgid "Strength indicator"
1036
  msgstr ""
1037
 
1038
+ #: views/admin_add.php:24 views/admin_edit.php:43
1039
  msgid ""
1040
  "Hint: The password should be at least seven characters long. To make it "
1041
  "stronger, use upper and lower case letters, numbers and symbols like ! \" ? "
1042
  "$ % ^ &amp; )."
1043
  msgstr ""
1044
 
1045
+ #: views/admin_add.php:28 views/admin_edit.php:47 views/loggedin.php:10
1046
  msgid "Account Status"
1047
  msgstr ""
1048
 
1049
+ #: views/admin_add.php:38
1050
  msgid "Add New Member "
1051
  msgstr ""
1052
 
1053
+ #: views/admin_addon_settings.php:3
 
 
 
 
 
 
1054
  msgid ""
1055
  "Some of the simple membership plugin's addon settings and options will be "
1056
  "displayed here (if you have them)"
1057
  msgstr ""
1058
 
1059
+ #: views/admin_addon_settings.php:8
1060
  msgid "Save Changes"
1061
  msgstr ""
1062
 
1064
  msgid "Create new membership level."
1065
  msgstr ""
1066
 
1067
+ #: views/admin_add_level.php:11 views/admin_edit_level.php:15
1068
  msgid "Membership Level Name"
1069
  msgstr ""
1070
 
1071
+ #: views/admin_add_level.php:15 views/admin_edit_level.php:19
1072
  msgid "Default WordPress Role"
1073
  msgstr ""
1074
 
1075
+ #: views/admin_add_level.php:19 views/admin_edit_level.php:23
1076
  msgid "Access Duration"
1077
  msgstr ""
1078
 
1082
 
1083
  #: views/admin_add_level.php:23 views/admin_add_level.php:25
1084
  #: views/admin_add_level.php:27 views/admin_add_level.php:29
1085
+ #: views/admin_edit_level.php:27 views/admin_edit_level.php:30
1086
+ #: views/admin_edit_level.php:33 views/admin_edit_level.php:36
1087
  msgid "Expire After"
1088
  msgstr ""
1089
 
1090
+ #: views/admin_add_level.php:24 views/admin_edit_level.php:28
1091
  msgid "Days (Access expires after given number of days)"
1092
  msgstr ""
1093
 
1095
  msgid "Weeks (Access expires after given number of weeks"
1096
  msgstr ""
1097
 
1098
+ #: views/admin_add_level.php:28 views/admin_edit_level.php:34
1099
  msgid "Months (Access expires after given number of months)"
1100
  msgstr ""
1101
 
1102
+ #: views/admin_add_level.php:30 views/admin_edit_level.php:37
1103
  msgid "Years (Access expires after given number of years)"
1104
  msgstr ""
1105
 
1106
+ #: views/admin_add_level.php:31 views/admin_edit_level.php:39
1107
  msgid "Fixed Date Expiry"
1108
  msgstr ""
1109
 
1110
+ #: views/admin_add_level.php:32 views/admin_edit_level.php:40
1111
  msgid "(Access expires on a fixed date)"
1112
  msgstr ""
1113
 
1119
  msgid "Simple WP Membership::Add-ons"
1120
  msgstr ""
1121
 
1122
+ #: views/admin_category_list.php:5
 
 
 
 
1123
  msgid ""
1124
  "First of all, globally protect the category on your site by selecting "
1125
  "\"General Protection\" from the drop-down box below and then select the "
1126
  "categories that should be protected from non-logged in users."
1127
  msgstr ""
1128
 
1129
+ #: views/admin_category_list.php:8
1130
  msgid ""
1131
  "Next, select an existing membership level from the drop-down box below and "
1132
  "then select the categories you want to grant access to (for that particular "
1137
  msgid "Edit Member"
1138
  msgstr ""
1139
 
1140
+ #: views/admin_edit.php:7
1141
  msgid "Edit existing member details."
1142
  msgstr ""
1143
 
1144
+ #: views/admin_edit.php:8
1145
+ msgid " You are currenty editing member with member ID: "
1146
+ msgstr ""
1147
+
1148
+ #: views/admin_edit.php:38
1149
  msgid "(twice, leave empty to retain old password)"
1150
  msgstr ""
1151
 
1152
+ #: views/admin_edit.php:54
1153
  msgid "Notify User"
1154
  msgstr ""
1155
 
1156
+ #: views/admin_edit.php:61
1157
  msgid "Subscriber ID/Reference"
1158
  msgstr ""
1159
 
1160
+ #: views/admin_edit.php:65
1161
  msgid "Last Accessed From IP"
1162
  msgstr ""
1163
 
1164
+ #: views/admin_edit.php:73
1165
  msgid "Edit User "
1166
  msgstr ""
1167
 
1168
+ #: views/admin_edit.php:77
1169
+ msgid "Delete User Profile"
1170
+ msgstr ""
1171
+
1172
  #: views/admin_edit_level.php:5
1173
  msgid "Edit membership level"
1174
  msgstr ""
1175
 
1176
+ #: views/admin_edit_level.php:8
1177
+ msgid ""
1178
+ "You can edit details of a selected membership level from this interface. "
1179
  msgstr ""
1180
 
1181
+ #: views/admin_edit_level.php:9
1182
+ msgid "You are currently editing: "
1183
  msgstr ""
1184
 
1185
  #: views/admin_edit_level.php:26
1186
+ msgid "No Expiry (Access for this level will not expire until cancelled)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1187
  msgstr ""
1188
 
1189
+ #: views/admin_edit_level.php:31
1190
+ msgid "Weeks (Access expires after given number of weeks)"
1191
  msgstr ""
1192
 
1193
+ #: views/admin_edit_level.php:46
1194
+ msgid "Edit Membership Level "
1195
  msgstr ""
1196
 
1197
+ #: views/admin_membership_manage.php:18
1198
  msgid "Example Content Protection Settings"
1199
  msgstr ""
1200
 
1234
  msgid "Member Since"
1235
  msgstr ""
1236
 
1237
+ #: views/admin_tools_settings.php:6
1238
  msgid "Generate a Registration Completion link"
1239
  msgstr ""
1240
 
1241
+ #: views/admin_tools_settings.php:9
1242
  msgid ""
1243
  "You can manually generate a registration completion link here and give it to "
1244
  "your customer if they have missed the email that was automatically sent out "
1245
  "to them after the payment."
1246
  msgstr ""
1247
 
1248
+ #: views/admin_tools_settings.php:14
1249
  msgid "Generate Registration Completion Link"
1250
  msgstr ""
1251
 
1252
+ #: views/admin_tools_settings.php:17
1253
  msgid "OR"
1254
  msgstr ""
1255
 
1256
+ #: views/admin_tools_settings.php:18
1257
+ msgid "For All Incomplete Registrations"
1258
  msgstr ""
1259
 
1260
+ #: views/admin_tools_settings.php:23
1261
+ msgid "Send Registration Reminder Email Too"
1262
  msgstr ""
1263
 
1264
+ #: views/admin_tools_settings.php:29
1265
+ msgid "Submit"
1266
  msgstr ""
1267
 
1268
+ #: views/admin_tools_settings.php:38
1269
+ msgid ""
1270
+ "Link(s) generated successfully. The following link(s) can be used to "
1271
+ "complete the registration."
1272
  msgstr ""
1273
 
1274
+ #: views/admin_tools_settings.php:40
1275
+ msgid "Registration completion links will appear below"
1276
+ msgstr ""
1277
+
1278
+ #: views/edit.php:60
1279
  msgid "Update"
1280
  msgstr ""
1281
 
1282
+ #: views/forgot_password.php:11
1283
  msgid "Reset Password"
1284
  msgstr ""
1285
 
1286
+ #: views/loggedin.php:6
1287
  msgid "Logged in as"
1288
  msgstr ""
1289
 
1290
+ #: views/loggedin.php:14
1291
  msgid "Membership"
1292
  msgstr ""
1293
 
1294
+ #: views/loggedin.php:18
1295
  msgid "Account Expiry"
1296
  msgstr ""
1297
 
1298
+ #: views/loggedin.php:22
1299
  msgid "Logout"
1300
  msgstr ""
1301
 
1302
+ #: views/login.php:24
1303
  msgid "Remember Me"
1304
  msgstr ""
1305
 
1306
+ #: views/login.php:30
1307
  msgid "Forgot Password"
1308
  msgstr ""
1309
 
1310
+ #: views/payments/admin_all_payment_transactions.php:6
1311
  msgid "All the payments/transactions of your members are recorded here."
1312
  msgstr ""
1313
 
1314
+ #: views/payments/admin_all_payment_transactions.php:12
1315
  msgid "Search for a transaction by using email or name"
1316
  msgstr ""
1317
 
1318
+ #: views/payments/admin_create_payment_buttons.php:14
 
 
 
 
1319
  msgid ""
1320
  "You can create new payment button for your memberships using this interface."
1321
  msgstr ""
1324
  msgid "Select Payment Button Type"
1325
  msgstr ""
1326
 
1327
+ #: views/payments/admin_create_payment_buttons.php:36
1328
  msgid "Next"
1329
  msgstr ""
1330
 
1332
  msgid "You can edit a payment button using this interface."
1333
  msgstr ""
1334
 
1335
+ #: views/payments/admin_payment_buttons.php:6
 
 
 
 
1336
  msgid ""
1337
  "All the membership buttons that you created in the plugin are displayed here."
1338
  msgstr ""
1339
 
1340
+ #: views/payments/admin_payment_settings.php:27
1341
  msgid "PayPal Integration Settings"
1342
  msgstr ""
1343
 
1344
+ #: views/payments/admin_payment_settings.php:30
1345
  msgid "Generate the \"Advanced Variables\" Code for your PayPal button"
1346
  msgstr ""
1347
 
1348
+ #: views/payments/admin_payment_settings.php:33
1349
  msgid "Enter the Membership Level ID"
1350
  msgstr ""
1351
 
1352
+ #: views/payments/admin_payment_settings.php:35
1353
  msgid "Generate Code"
1354
  msgstr ""
1355
 
1356
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:16
1357
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:192
1358
  msgid "PayPal Buy Now Button Configuration"
1359
  msgstr ""
1360
 
1361
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:26
1362
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:209
1363
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:27
1364
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:299
1365
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:39
1366
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:252
1367
  msgid "Button Title"
1368
  msgstr ""
1369
 
1370
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:44
1371
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:227
1372
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:57
1373
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:268
1374
  msgid "Payment Amount"
1375
  msgstr ""
1376
 
1377
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:52
1378
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:235
1379
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:45
1380
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:317
1381
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:65
1382
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:275
1383
  msgid "Payment Currency"
1384
  msgstr ""
1385
 
1386
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:91
1387
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:274
1388
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:171
1389
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:443
1390
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:141
1391
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:351
1392
  msgid "Return URL"
1393
  msgstr ""
1394
 
1395
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:99
1396
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:282
1397
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:84
1398
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:356
1399
  msgid "PayPal Email"
1400
  msgstr ""
1401
 
1402
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:107
1403
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:290
1404
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:179
1405
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:451
1406
  msgid "Button Image URL"
1407
  msgstr ""
1408
 
1409
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:117
1410
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:300
1411
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:191
1412
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:463
1413
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:151
1414
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:361
1415
  msgid "Save Payment Data"
1416
  msgstr ""
1417
 
1418
  #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:201
1419
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:291
1420
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:245
1421
  msgid "Button ID"
1422
  msgstr ""
1423
 
1424
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:18
1425
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:285
1426
  msgid "PayPal Subscription Button Configuration"
1427
  msgstr ""
1428
 
1429
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:92
1430
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:364
1431
  msgid "Billing Amount Each Cycle"
1432
  msgstr ""
1433
 
1434
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:100
1435
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:372
1436
  msgid "Billing Cycle"
1437
  msgstr ""
1438
 
1439
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:113
1440
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:385
1441
  msgid "Billing Cycle Count"
1442
  msgstr ""
1443
 
1444
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:121
1445
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:393
1446
  msgid "Re-attempt on Failure"
1447
  msgstr ""
1448
 
1449
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:134
1450
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:406
1451
  msgid ""
1452
  "Trial Billing Details (Leave empty if you are not offering a trial period)"
1453
  msgstr ""
1454
 
1455
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:140
1456
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:412
1457
  msgid "Trial Billing Amount"
1458
  msgstr ""
1459
 
1460
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:148
1461
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:420
1462
  msgid "Trial Billing Period"
1463
  msgstr ""
1464
 
1465
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:165
1466
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:437
1467
  msgid "Optional Details"
1468
  msgstr ""
1469
 
1470
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:29
1471
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:236
1472
+ msgid "Stripe Buy Now Button Configuration"
1473
+ msgstr ""
1474
+
1475
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:104
1476
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:314
1477
+ msgid "Stripe API keys. You can get this from your Stripe account."
1478
+ msgstr ""
1479
+
1480
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:108
1481
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:318
1482
+ msgid "Test Secret Key"
1483
+ msgstr ""
1484
+
1485
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:115
1486
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:325
1487
+ msgid "Test Publishable Key"
1488
+ msgstr ""
1489
+
1490
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:122
1491
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:332
1492
+ msgid "Live Secret Key"
1493
+ msgstr ""
1494
+
1495
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:129
1496
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:339
1497
+ msgid "Live Publishable Key"
1498
+ msgstr ""
1499
+
1500
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:137
1501
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:347
1502
+ msgid "The following details are optional."
1503
+ msgstr ""
1504
+
1505
+ #: views/payments/payment-gateway/paypal_button_shortcode_view.php:85
1506
+ #: views/payments/payment-gateway/paypal_button_shortcode_view.php:87
1507
+ #: views/payments/payment-gateway/stripe_button_shortcode_view.php:17
1508
  msgid "Buy Now"
1509
  msgstr ""
1510
 
1511
+ #: views/payments/payment-gateway/paypal_button_shortcode_view.php:213
1512
+ #: views/payments/payment-gateway/paypal_button_shortcode_view.php:215
1513
  msgid "Subscribe Now"
1514
  msgstr ""
lib/stripe-gateway/init.php CHANGED
@@ -60,7 +60,9 @@ require(dirname(__FILE__) . '/lib/Product.php');
60
  require(dirname(__FILE__) . '/lib/Recipient.php');
61
  require(dirname(__FILE__) . '/lib/Refund.php');
62
  require(dirname(__FILE__) . '/lib/SKU.php');
 
63
  require(dirname(__FILE__) . '/lib/Subscription.php');
 
64
  require(dirname(__FILE__) . '/lib/Token.php');
65
  require(dirname(__FILE__) . '/lib/Transfer.php');
66
  require(dirname(__FILE__) . '/lib/TransferReversal.php');
60
  require(dirname(__FILE__) . '/lib/Recipient.php');
61
  require(dirname(__FILE__) . '/lib/Refund.php');
62
  require(dirname(__FILE__) . '/lib/SKU.php');
63
+ require(dirname(__FILE__) . '/lib/Source.php');
64
  require(dirname(__FILE__) . '/lib/Subscription.php');
65
+ require(dirname(__FILE__) . '/lib/ThreeDSecure.php');
66
  require(dirname(__FILE__) . '/lib/Token.php');
67
  require(dirname(__FILE__) . '/lib/Transfer.php');
68
  require(dirname(__FILE__) . '/lib/TransferReversal.php');
lib/stripe-gateway/lib/Account.php CHANGED
@@ -2,6 +2,38 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  class Account extends ApiResource
6
  {
7
  public function instanceUrl()
@@ -39,6 +71,18 @@ class Account extends ApiResource
39
  return self::_create($params, $opts);
40
  }
41
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  /**
43
  * @param array|string|null $opts
44
  *
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class Account
7
+ *
8
+ * @property string $id
9
+ * @property string $object
10
+ * @property mixed $business_logo
11
+ * @property string $business_name
12
+ * @property mixed $business_url
13
+ * @property bool $charges_enabled
14
+ * @property string $country
15
+ * @property bool $debit_negative_balances
16
+ * @property mixed $decline_charge_on
17
+ * @property string $default_currency
18
+ * @property bool $details_submitted
19
+ * @property string $display_name
20
+ * @property string $email
21
+ * @property mixed $external_accounts
22
+ * @property mixed $legal_entity
23
+ * @property bool $managed
24
+ * @property mixed $product_description
25
+ * @property mixed $statement_descriptor
26
+ * @property mixed $support_email
27
+ * @property mixed $support_phone
28
+ * @property string $timezone
29
+ * @property mixed $tos_acceptance
30
+ * @property mixed $transfer_schedule
31
+ * @property bool $transfers_enabled
32
+ * @property mixed $verification
33
+ * @property mixed $keys
34
+ *
35
+ * @package Stripe
36
+ */
37
  class Account extends ApiResource
38
  {
39
  public function instanceUrl()
71
  return self::_create($params, $opts);
72
  }
73
 
74
+ /**
75
+ * @param string $id The ID of the account to update.
76
+ * @param array|null $params
77
+ * @param array|string|null $options
78
+ *
79
+ * @return Account The updated account.
80
+ */
81
+ public static function update($id, $params = null, $options = null)
82
+ {
83
+ return self::_update($id, $params, $options);
84
+ }
85
+
86
  /**
87
  * @param array|string|null $opts
88
  *
lib/stripe-gateway/lib/AlipayAccount.php CHANGED
@@ -2,6 +2,11 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
5
  class AlipayAccount extends ExternalAccount
6
  {
7
 
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class AlipayAccount
7
+ *
8
+ * @package Stripe
9
+ */
10
  class AlipayAccount extends ExternalAccount
11
  {
12
 
lib/stripe-gateway/lib/ApiRequestor.php CHANGED
@@ -2,6 +2,11 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
5
  class ApiRequestor
6
  {
7
  private $_apiKey;
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class ApiRequestor
7
+ *
8
+ * @package Stripe
9
+ */
10
  class ApiRequestor
11
  {
12
  private $_apiKey;
lib/stripe-gateway/lib/ApiResource.php CHANGED
@@ -2,6 +2,11 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
5
  abstract class ApiResource extends StripeObject
6
  {
7
  private static $HEADERS_TO_PERSIST = array('Stripe-Account' => true, 'Stripe-Version' => true);
@@ -64,11 +69,10 @@ abstract class ApiResource extends StripeObject
64
  }
65
 
66
  /**
67
- * @return string The full API URL for this API resource.
68
  */
69
- public function instanceUrl()
70
  {
71
- $id = $this['id'];
72
  if ($id === null) {
73
  $class = get_called_class();
74
  $message = "Could not determine which URL to request: "
@@ -81,6 +85,14 @@ abstract class ApiResource extends StripeObject
81
  return "$base/$extn";
82
  }
83
 
 
 
 
 
 
 
 
 
84
  private static function _validateParams($params = null)
85
  {
86
  if ($params && !is_array($params)) {
@@ -151,6 +163,25 @@ abstract class ApiResource extends StripeObject
151
  return $obj;
152
  }
153
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
154
  protected function _save($options = null)
155
  {
156
  $params = $this->serializeParameters();
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class ApiResource
7
+ *
8
+ * @package Stripe
9
+ */
10
  abstract class ApiResource extends StripeObject
11
  {
12
  private static $HEADERS_TO_PERSIST = array('Stripe-Account' => true, 'Stripe-Version' => true);
69
  }
70
 
71
  /**
72
+ * @return string The instance endpoint URL for the given class.
73
  */
74
+ public static function resourceUrl($id)
75
  {
 
76
  if ($id === null) {
77
  $class = get_called_class();
78
  $message = "Could not determine which URL to request: "
85
  return "$base/$extn";
86
  }
87
 
88
+ /**
89
+ * @return string The full API URL for this API resource.
90
+ */
91
+ public function instanceUrl()
92
+ {
93
+ return static::resourceUrl($this['id']);
94
+ }
95
+
96
  private static function _validateParams($params = null)
97
  {
98
  if ($params && !is_array($params)) {
163
  return $obj;
164
  }
165
 
166
+ /**
167
+ * @param string $id The ID of the API resource to update.
168
+ * @param array|null $params
169
+ * @param array|string|null $opts
170
+ *
171
+ * @return ApiResource the updated API resource
172
+ */
173
+ protected static function _update($id, $params = null, $options = null)
174
+ {
175
+ self::_validateParams($params);
176
+ $base = static::baseUrl();
177
+ $url = static::resourceUrl($id);
178
+
179
+ list($response, $opts) = static::_staticRequest('post', $url, $params, $options);
180
+ $obj = Util\Util::convertToStripeObject($response->json, $opts);
181
+ $obj->setLastResponse($response);
182
+ return $obj;
183
+ }
184
+
185
  protected function _save($options = null)
186
  {
187
  $params = $this->serializeParameters();
lib/stripe-gateway/lib/ApiResponse.php CHANGED
@@ -2,6 +2,11 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
5
  class ApiResponse
6
  {
7
  public $headers;
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class ApiResponse
7
+ *
8
+ * @package Stripe
9
+ */
10
  class ApiResponse
11
  {
12
  public $headers;
lib/stripe-gateway/lib/ApplicationFee.php CHANGED
@@ -2,6 +2,11 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
5
  class ApplicationFee extends ApiResource
6
  {
7
  /**
@@ -26,6 +31,18 @@ class ApplicationFee extends ApiResource
26
  return self::_retrieve($id, $opts);
27
  }
28
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  /**
30
  * @param array|null $params
31
  * @param array|string|null $opts
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class ApplicationFee
7
+ *
8
+ * @package Stripe
9
+ */
10
  class ApplicationFee extends ApiResource
11
  {
12
  /**
31
  return self::_retrieve($id, $opts);
32
  }
33
 
34
+ /**
35
+ * @param string $id The ID of the application fee to update.
36
+ * @param array|null $params
37
+ * @param array|string|null $options
38
+ *
39
+ * @return ApplicationFee The updated application fee.
40
+ */
41
+ public static function update($id, $params = null, $options = null)
42
+ {
43
+ return self::_update($id, $params, $options);
44
+ }
45
+
46
  /**
47
  * @param array|null $params
48
  * @param array|string|null $opts
lib/stripe-gateway/lib/ApplicationFeeRefund.php CHANGED
@@ -2,6 +2,11 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
5
  class ApplicationFeeRefund extends ApiResource
6
  {
7
  /**
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class ApplicationFeeRefund
7
+ *
8
+ * @package Stripe
9
+ */
10
  class ApplicationFeeRefund extends ApiResource
11
  {
12
  /**
lib/stripe-gateway/lib/AttachedObject.php CHANGED
@@ -2,7 +2,13 @@
2
 
3
  namespace Stripe;
4
 
5
- // e.g. metadata on Stripe objects.
 
 
 
 
 
 
6
  class AttachedObject extends StripeObject
7
  {
8
  /**
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class AttachedObject
7
+ *
8
+ * e.g. metadata on Stripe objects.
9
+ *
10
+ * @package Stripe
11
+ */
12
  class AttachedObject extends StripeObject
13
  {
14
  /**
lib/stripe-gateway/lib/Balance.php CHANGED
@@ -2,6 +2,16 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
 
 
 
 
 
5
  class Balance extends SingletonApiResource
6
  {
7
  /**
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class Balance
7
+ *
8
+ * @param string $object
9
+ * @param mixed $available
10
+ * @param bool $livedmode
11
+ * @param mixed $pending
12
+ *
13
+ * @package Stripe
14
+ */
15
  class Balance extends SingletonApiResource
16
  {
17
  /**
lib/stripe-gateway/lib/BalanceTransaction.php CHANGED
@@ -2,6 +2,26 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  class BalanceTransaction extends ApiResource
6
  {
7
  /**
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class BalanceTransaction
7
+ *
8
+ * @property string $id
9
+ * @property string $object
10
+ * @property int $amount
11
+ * @property int $available_on
12
+ * @property int $created
13
+ * @property string $currency
14
+ * @property string $description
15
+ * @property int $fee
16
+ * @property mixed $fee_details
17
+ * @property int $net
18
+ * @property string $source
19
+ * @property mixed $sourced_transfers
20
+ * @property string $status
21
+ * @property string $type
22
+ *
23
+ * @package Stripe
24
+ */
25
  class BalanceTransaction extends ApiResource
26
  {
27
  /**
lib/stripe-gateway/lib/BankAccount.php CHANGED
@@ -2,6 +2,11 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
5
  class BankAccount extends ExternalAccount
6
  {
7
  /**
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class BankAccount
7
+ *
8
+ * @package Stripe
9
+ */
10
  class BankAccount extends ExternalAccount
11
  {
12
  /**
lib/stripe-gateway/lib/BitcoinReceiver.php CHANGED
@@ -2,6 +2,11 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
5
  class BitcoinReceiver extends ExternalAccount
6
  {
7
  /**
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class BitcoinReceiver
7
+ *
8
+ * @package Stripe
9
+ */
10
  class BitcoinReceiver extends ExternalAccount
11
  {
12
  /**
lib/stripe-gateway/lib/BitcoinTransaction.php CHANGED
@@ -2,6 +2,11 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
5
  class BitcoinTransaction extends ApiResource
6
  {
7
 
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class BitcoinTransaction
7
+ *
8
+ * @package Stripe
9
+ */
10
  class BitcoinTransaction extends ApiResource
11
  {
12
 
lib/stripe-gateway/lib/Card.php CHANGED
@@ -2,6 +2,11 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
5
  class Card extends ExternalAccount
6
  {
7
 
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class Card
7
+ *
8
+ * @package Stripe
9
+ */
10
  class Card extends ExternalAccount
11
  {
12
 
lib/stripe-gateway/lib/Charge.php CHANGED
@@ -2,6 +2,42 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  class Charge extends ApiResource
6
  {
7
  /**
@@ -37,6 +73,18 @@ class Charge extends ApiResource
37
  return self::_create($params, $options);
38
  }
39
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  /**
41
  * @param array|string|null $options
42
  *
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class Charge
7
+ *
8
+ * @property string $id
9
+ * @property string $object
10
+ * @property int $amount
11
+ * @property int $amount_refunded
12
+ * @property mixed $application_fee
13
+ * @property string $balance_transaction
14
+ * @property bool $captured
15
+ * @property int $created
16
+ * @property string $currency
17
+ * @property string $customer
18
+ * @property mixed $description
19
+ * @property mixed $destination
20
+ * @property mixed $dispute
21
+ * @property mixed $failure_code
22
+ * @property mixed $failure_message
23
+ * @property mixed $fraud_details
24
+ * @property mixed $invoice
25
+ * @property bool $livemode
26
+ * @property mixed $metadata
27
+ * @property mixed $order
28
+ * @property bool $paid
29
+ * @property mixed $receipt_email
30
+ * @property mixed $receipt_number
31
+ * @property bool $refunded
32
+ * @property mixed $refunds
33
+ * @property mixed $shipping
34
+ * @property mixed $source
35
+ * @property mixed $source_transfer
36
+ * @property mixed $statement_descriptor
37
+ * @property string $status
38
+ *
39
+ * @package Stripe
40
+ */
41
  class Charge extends ApiResource
42
  {
43
  /**
73
  return self::_create($params, $options);
74
  }
75
 
76
+ /**
77
+ * @param string $id The ID of the charge to update.
78
+ * @param array|null $params
79
+ * @param array|string|null $options
80
+ *
81
+ * @return Charge The updated charge.
82
+ */
83
+ public static function update($id, $params = null, $options = null)
84
+ {
85
+ return self::_update($id, $params, $options);
86
+ }
87
+
88
  /**
89
  * @param array|string|null $options
90
  *
lib/stripe-gateway/lib/Collection.php CHANGED
@@ -2,6 +2,16 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
 
 
 
 
 
5
  class Collection extends ApiResource
6
  {
7
  protected $_requestParams = array();
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class Collection
7
+ *
8
+ * @param string $object
9
+ * @param string $url
10
+ * @param bool $has_more
11
+ * @param mixed $data
12
+ *
13
+ * @package Stripe
14
+ */
15
  class Collection extends ApiResource
16
  {
17
  protected $_requestParams = array();
lib/stripe-gateway/lib/CountrySpec.php CHANGED
@@ -2,6 +2,11 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
5
  class CountrySpec extends ApiResource
6
  {
7
  /**
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class CountrySpec
7
+ *
8
+ * @package Stripe
9
+ */
10
  class CountrySpec extends ApiResource
11
  {
12
  /**
lib/stripe-gateway/lib/Coupon.php CHANGED
@@ -2,6 +2,11 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
5
  class Coupon extends ApiResource
6
  {
7
  /**
@@ -26,6 +31,18 @@ class Coupon extends ApiResource
26
  return self::_create($params, $opts);
27
  }
28
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  /**
30
  * @param array|null $params
31
  * @param array|string|null $opts
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class Coupon
7
+ *
8
+ * @package Stripe
9
+ */
10
  class Coupon extends ApiResource
11
  {
12
  /**
31
  return self::_create($params, $opts);
32
  }
33
 
34
+ /**
35
+ * @param string $id The ID of the coupon to update.
36
+ * @param array|null $params
37
+ * @param array|string|null $options
38
+ *
39
+ * @return Coupon The updated coupon.
40
+ */
41
+ public static function update($id, $params = null, $options = null)
42
+ {
43
+ return self::_update($id, $params, $options);
44
+ }
45
+
46
  /**
47
  * @param array|null $params
48
  * @param array|string|null $opts
lib/stripe-gateway/lib/Customer.php CHANGED
@@ -2,6 +2,28 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  class Customer extends ApiResource
6
  {
7
  /**
@@ -37,6 +59,18 @@ class Customer extends ApiResource
37
  return self::_create($params, $opts);
38
  }
39
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  /**
41
  * @param array|string|null $opts
42
  *
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class Customer
7
+ *
8
+ * @property string $id
9
+ * @property string $object
10
+ * @property int $account_balance
11
+ * @property string $business_vat_id
12
+ * @property string $created
13
+ * @property string $currency
14
+ * @property string $default_source
15
+ * @property bool $delinquent
16
+ * @property string $description
17
+ * @property mixed $discount
18
+ * @property string $email
19
+ * @property bool $livemode
20
+ * @property array $metadata
21
+ * @property mixed $shipping
22
+ * @property Collection $sources
23
+ * @property Collection $subscriptions
24
+ *
25
+ * @package Stripe
26
+ */
27
  class Customer extends ApiResource
28
  {
29
  /**
59
  return self::_create($params, $opts);
60
  }
61
 
62
+ /**
63
+ * @param string $id The ID of the customer to update.
64
+ * @param array|null $params
65
+ * @param array|string|null $options
66
+ *
67
+ * @return Customer The updated customer.
68
+ */
69
+ public static function update($id, $params = null, $options = null)
70
+ {
71
+ return self::_update($id, $params, $options);
72
+ }
73
+
74
  /**
75
  * @param array|string|null $opts
76
  *
lib/stripe-gateway/lib/Dispute.php CHANGED
@@ -2,6 +2,26 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  class Dispute extends ApiResource
6
  {
7
  /**
@@ -26,6 +46,18 @@ class Dispute extends ApiResource
26
  return self::_all($params, $options);
27
  }
28
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  /**
30
  * @param array|string|null $options
31
  *
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class Dispute
7
+ *
8
+ * @property string $id
9
+ * @property string $object
10
+ * @property int $amount
11
+ * @property mixed $balance_transactions
12
+ * @property string $charge
13
+ * @property int $created
14
+ * @property string $currency
15
+ * @property mixed $evidence
16
+ * @property mixed $evidence_details
17
+ * @property bool $is_charge_refundable
18
+ * @property bool $livemode
19
+ * @property mixed $metadata
20
+ * @property string $reason
21
+ * @property string $status
22
+ *
23
+ * @package Stripe
24
+ */
25
  class Dispute extends ApiResource
26
  {
27
  /**
46
  return self::_all($params, $options);
47
  }
48
 
49
+ /**
50
+ * @param string $id The ID of the dispute to update.
51
+ * @param array|null $params
52
+ * @param array|string|null $options
53
+ *
54
+ * @return Dispute The updated dispute.
55
+ */
56
+ public static function update($id, $params = null, $options = null)
57
+ {
58
+ return self::_update($id, $params, $options);
59
+ }
60
+
61
  /**
62
  * @param array|string|null $options
63
  *
lib/stripe-gateway/lib/Error/Card.php CHANGED
@@ -16,6 +16,17 @@ class Card extends Base
16
  parent::__construct($message, $httpStatus, $httpBody, $jsonBody, $httpHeaders);
17
  $this->stripeParam = $stripeParam;
18
  $this->stripeCode = $stripeCode;
 
 
 
 
 
 
 
 
 
 
 
19
  }
20
 
21
  public function getStripeCode()
16
  parent::__construct($message, $httpStatus, $httpBody, $jsonBody, $httpHeaders);
17
  $this->stripeParam = $stripeParam;
18
  $this->stripeCode = $stripeCode;
19
+
20
+ // This one is not like the others because it was added later and we're
21
+ // trying to do our best not to change the public interface of this class'
22
+ // constructor. We should consider changing its implementation on the
23
+ // next major version bump of this library.
24
+ $this->declineCode = isset($jsonBody["error"]["decline_code"]) ? $jsonBody["error"]["decline_code"] : null;
25
+ }
26
+
27
+ public function getDeclineCode()
28
+ {
29
+ return $this->declineCode;
30
  }
31
 
32
  public function getStripeCode()
lib/stripe-gateway/lib/Event.php CHANGED
@@ -2,6 +2,21 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  class Event extends ApiResource
6
  {
7
  /**
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class Event
7
+ *
8
+ * @property string $id
9
+ * @property string $object
10
+ * @property string $api_version
11
+ * @property int $created
12
+ * @property mixed $data
13
+ * @property bool $livemode
14
+ * @property int $pending_webhooks
15
+ * @property string $request
16
+ * @property string $type
17
+ *
18
+ * @package Stripe
19
+ */
20
  class Event extends ApiResource
21
  {
22
  /**
lib/stripe-gateway/lib/ExternalAccount.php CHANGED
@@ -2,6 +2,11 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
5
  abstract class ExternalAccount extends ApiResource
6
  {
7
  /**
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class ExternalAccount
7
+ *
8
+ * @package Stripe
9
+ */
10
  abstract class ExternalAccount extends ApiResource
11
  {
12
  /**
lib/stripe-gateway/lib/FileUpload.php CHANGED
@@ -2,6 +2,18 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  class FileUpload extends ApiResource
6
  {
7
  public static function baseUrl()
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class FileUpload
7
+ *
8
+ * @property string $id
9
+ * @property string $object
10
+ * @property int $created
11
+ * @property string $purpose
12
+ * @property int $size
13
+ * @property string $type
14
+ *
15
+ * @package Stripe
16
+ */
17
  class FileUpload extends ApiResource
18
  {
19
  public static function baseUrl()
lib/stripe-gateway/lib/HttpClient/CurlClient.php CHANGED
@@ -126,6 +126,20 @@ class CurlClient implements ClientInterface
126
  return strlen($header_line);
127
  };
128
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
129
  $absUrl = Util\Util::utf8($absUrl);
130
  $opts[CURLOPT_URL] = $absUrl;
131
  $opts[CURLOPT_RETURNTRANSFER] = true;
@@ -136,17 +150,37 @@ class CurlClient implements ClientInterface
136
  if (!Stripe::$verifySslCerts) {
137
  $opts[CURLOPT_SSL_VERIFYPEER] = false;
138
  }
 
139
  // @codingStandardsIgnoreStart
140
  // PSR2 requires all constants be upper case. Sadly, the CURL_SSLVERSION
141
  // constants to not abide by those rules.
142
  //
143
- // Opt into TLS 1.x support on older versions of curl. This causes some
144
- // curl versions, notably on RedHat, to upgrade the connection to TLS
145
- // 1.2, from the default TLS 1.0.
146
- if (!defined('CURL_SSLVERSION_TLSv1')) {
147
- define('CURL_SSLVERSION_TLSv1', 1); // constant not defined in PHP < 5.5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
148
  }
149
- $opts[CURLOPT_SSLVERSION] = CURL_SSLVERSION_TLSv1;
150
  // @codingStandardsIgnoreEnd
151
 
152
  curl_setopt_array($curl, $opts);
126
  return strlen($header_line);
127
  };
128
 
129
+ // By default for large request body sizes (> 1024 bytes), cURL will
130
+ // send a request without a body and with a `Expect: 100-continue`
131
+ // header, which gives the server a chance to respond with an error
132
+ // status code in cases where one can be determined right away (say
133
+ // on an authentication problem for example), and saves the "large"
134
+ // request body from being ever sent.
135
+ //
136
+ // Unfortunately, the bindings don't currently correctly handle the
137
+ // success case (in which the server sends back a 100 CONTINUE), so
138
+ // we'll error under that condition. To compensate for that problem
139
+ // for the time being, override cURL's behavior by simply always
140
+ // sending an empty `Expect:` header.
141
+ array_push($headers, 'Expect: ');
142
+
143
  $absUrl = Util\Util::utf8($absUrl);
144
  $opts[CURLOPT_URL] = $absUrl;
145
  $opts[CURLOPT_RETURNTRANSFER] = true;
150
  if (!Stripe::$verifySslCerts) {
151
  $opts[CURLOPT_SSL_VERIFYPEER] = false;
152
  }
153
+
154
  // @codingStandardsIgnoreStart
155
  // PSR2 requires all constants be upper case. Sadly, the CURL_SSLVERSION
156
  // constants to not abide by those rules.
157
  //
158
+ // Explicitly set a TLS version for cURL to use now that we're starting
159
+ // to block 1.0 and 1.1 requests.
160
+ //
161
+ // If users are on OpenSSL >= 1.0.1, we know that they support TLS 1.2,
162
+ // so set that explicitly because on some older Linux distros, clients may
163
+ // default to TLS 1.0 even when they have TLS 1.2 available.
164
+ //
165
+ // For users on much older versions of OpenSSL, set a valid range of
166
+ // TLS 1.0 to 1.2 (CURL_SSLVERSION_TLSv1). Note that this may result in
167
+ // their requests being blocked unless they're specially flagged into
168
+ // being able to use an old TLS version.
169
+ //
170
+ // Note: The int on the right is pulled from the source of OpenSSL 1.0.1a.
171
+ if (OPENSSL_VERSION_NUMBER >= 0x1000100f) {
172
+ if (!defined('CURL_SSLVERSION_TLSv1_2')) {
173
+ // Note the value 6 comes from its position in the enum that
174
+ // defines it in cURL's source code.
175
+ define('CURL_SSLVERSION_TLSv1_2', 6); // constant not defined in PHP < 5.5
176
+ }
177
+ $opts[CURLOPT_SSLVERSION] = CURL_SSLVERSION_TLSv1_2;
178
+ } else {
179
+ if (!defined('CURL_SSLVERSION_TLSv1')) {
180
+ define('CURL_SSLVERSION_TLSv1', 1); // constant not defined in PHP < 5.5
181
+ }
182
+ $opts[CURLOPT_SSLVERSION] = CURL_SSLVERSION_TLSv1;
183
  }
 
184
  // @codingStandardsIgnoreEnd
185
 
186
  curl_setopt_array($curl, $opts);
lib/stripe-gateway/lib/Invoice.php CHANGED
@@ -2,6 +2,11 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
5
  class Invoice extends ApiResource
6
  {
7
  /**
@@ -37,6 +42,18 @@ class Invoice extends ApiResource
37
  return self::_all($params, $opts);
38
  }
39
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  /**
41
  * @param array|null $params
42
  * @param array|string|null $opts
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class Invoice
7
+ *
8
+ * @package Stripe
9
+ */
10
  class Invoice extends ApiResource
11
  {
12
  /**
42
  return self::_all($params, $opts);
43
  }
44
 
45
+ /**
46
+ * @param string $id The ID of the invoice to update.
47
+ * @param array|null $params
48
+ * @param array|string|null $options
49
+ *
50
+ * @return Invoice The updated invoice.
51
+ */
52
+ public static function update($id, $params = null, $options = null)
53
+ {
54
+ return self::_update($id, $params, $options);
55
+ }
56
+
57
  /**
58
  * @param array|null $params
59
  * @param array|string|null $opts
lib/stripe-gateway/lib/InvoiceItem.php CHANGED
@@ -2,6 +2,11 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
5
  class InvoiceItem extends ApiResource
6
  {
7
  /**
@@ -37,6 +42,18 @@ class InvoiceItem extends ApiResource
37
  return self::_create($params, $opts);
38
  }
39
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  /**
41
  * @param array|string|null $opts
42
  *
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class InvoiceItem
7
+ *
8
+ * @package Stripe
9
+ */
10
  class InvoiceItem extends ApiResource
11
  {
12
  /**
42
  return self::_create($params, $opts);
43
  }
44
 
45
+ /**
46
+ * @param string $id The ID of the invoice item to update.
47
+ * @param array|null $params
48
+ * @param array|string|null $options
49
+ *
50
+ * @return InvoiceItem The updated invoice item.
51
+ */
52
+ public static function update($id, $params = null, $options = null)
53
+ {
54
+ return self::_update($id, $params, $options);
55
+ }
56
+
57
  /**
58
  * @param array|string|null $opts
59
  *
lib/stripe-gateway/lib/Order.php CHANGED
@@ -2,6 +2,11 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
5
  class Order extends ApiResource
6
  {
7
  /**
@@ -26,6 +31,18 @@ class Order extends ApiResource
26
  return self::_create($params, $opts);
27
  }
28
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  /**
30
  * @param array|string|null $opts
31
  *
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class Order
7
+ *
8
+ * @package Stripe
9
+ */
10
  class Order extends ApiResource
11
  {
12
  /**
31
  return self::_create($params, $opts);
32
  }
33
 
34
+ /**
35
+ * @param string $id The ID of the order to update.
36
+ * @param array|null $params
37
+ * @param array|string|null $options
38
+ *
39
+ * @return Order The updated order.
40
+ */
41
+ public static function update($id, $params = null, $options = null)
42
+ {
43
+ return self::_update($id, $params, $options);
44
+ }
45
+
46
  /**
47
  * @param array|string|null $opts
48
  *
lib/stripe-gateway/lib/OrderReturn.php CHANGED
@@ -2,6 +2,11 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
5
  class OrderReturn extends ApiResource
6
  {
7
  /**
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class OrderReturn
7
+ *
8
+ * @package Stripe
9
+ */
10
  class OrderReturn extends ApiResource
11
  {
12
  /**
lib/stripe-gateway/lib/Plan.php CHANGED
@@ -2,6 +2,11 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
5
  class Plan extends ApiResource
6
  {
7
  /**
@@ -26,6 +31,18 @@ class Plan extends ApiResource
26
  return self::_create($params, $opts);
27
  }
28
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  /**
30
  * @param array|null $params
31
  * @param array|string|null $opts
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class Plan
7
+ *
8
+ * @package Stripe
9
+ */
10
  class Plan extends ApiResource
11
  {
12
  /**
31
  return self::_create($params, $opts);
32
  }
33
 
34
+ /**
35
+ * @param string $id The ID of the plan to update.
36
+ * @param array|null $params
37
+ * @param array|string|null $options
38
+ *
39
+ * @return Plan The updated plan.
40
+ */
41
+ public static function update($id, $params = null, $options = null)
42
+ {
43
+ return self::_update($id, $params, $options);
44
+ }
45
+
46
  /**
47
  * @param array|null $params
48
  * @param array|string|null $opts
lib/stripe-gateway/lib/Product.php CHANGED
@@ -2,6 +2,11 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
5
  class Product extends ApiResource
6
  {
7
  /**
@@ -26,6 +31,18 @@ class Product extends ApiResource
26
  return self::_create($params, $opts);
27
  }
28
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  /**
30
  * @param array|string|null $opts
31
  *
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class Product
7
+ *
8
+ * @package Stripe
9
+ */
10
  class Product extends ApiResource
11
  {
12
  /**
31
  return self::_create($params, $opts);
32
  }
33
 
34
+ /**
35
+ * @param string $id The ID of the product to update.
36
+ * @param array|null $params
37
+ * @param array|string|null $options
38
+ *
39
+ * @return Product The updated product.
40
+ */
41
+ public static function update($id, $params = null, $options = null)
42
+ {
43
+ return self::_update($id, $params, $options);
44
+ }
45
+
46
  /**
47
  * @param array|string|null $opts
48
  *
lib/stripe-gateway/lib/Recipient.php CHANGED
@@ -2,6 +2,11 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
5
  class Recipient extends ApiResource
6
  {
7
  /**
@@ -37,6 +42,18 @@ class Recipient extends ApiResource
37
  return self::_create($params, $opts);
38
  }
39
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  /**
41
  * @param array|string|null $opts
42
  *
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class Recipient
7
+ *
8
+ * @package Stripe
9
+ */
10
  class Recipient extends ApiResource
11
  {
12
  /**
42
  return self::_create($params, $opts);
43
  }
44
 
45
+ /**
46
+ * @param string $id The ID of the recipient to update.
47
+ * @param array|null $params
48
+ * @param array|string|null $options
49
+ *
50
+ * @return Recipient The updated recipient.
51
+ */
52
+ public static function update($id, $params = null, $options = null)
53
+ {
54
+ return self::_update($id, $params, $options);
55
+ }
56
+
57
  /**
58
  * @param array|string|null $opts
59
  *
lib/stripe-gateway/lib/Refund.php CHANGED
@@ -2,6 +2,23 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  class Refund extends ApiResource
6
  {
7
 
@@ -16,6 +33,18 @@ class Refund extends ApiResource
16
  return self::_retrieve($id, $options);
17
  }
18
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  /**
20
  * @param array|null $params
21
  * @param array|string|null $options
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class Refund
7
+ *
8
+ * @property string $id
9
+ * @property string $object
10
+ * @property int $amount
11
+ * @property mixed $balance_transaction
12
+ * @property string $charge
13
+ * @property int $created
14
+ * @property string $currency
15
+ * @property mixed $metadata
16
+ * @property mixed $reason
17
+ * @property mixed $receipt_number
18
+ * @property string $status
19
+ *
20
+ * @package Stripe
21
+ */
22
  class Refund extends ApiResource
23
  {
24
 
33
  return self::_retrieve($id, $options);
34
  }
35
 
36
+ /**
37
+ * @param string $id The ID of the refund to update.
38
+ * @param array|null $params
39
+ * @param array|string|null $options
40
+ *
41
+ * @return Refund The updated refund.
42
+ */
43
+ public static function update($id, $params = null, $options = null)
44
+ {
45
+ return self::_update($id, $params, $options);
46
+ }
47
+
48
  /**
49
  * @param array|null $params
50
  * @param array|string|null $options
lib/stripe-gateway/lib/SKU.php CHANGED
@@ -2,6 +2,11 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
5
  class SKU extends ApiResource
6
  {
7
  /**
@@ -26,6 +31,18 @@ class SKU extends ApiResource
26
  return self::_create($params, $opts);
27
  }
28
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  /**
30
  * @param array|string|null $opts
31
  *
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class SKU
7
+ *
8
+ * @package Stripe
9
+ */
10
  class SKU extends ApiResource
11
  {
12
  /**
31
  return self::_create($params, $opts);
32
  }
33
 
34
+ /**
35
+ * @param string $id The ID of the SKU to update.
36
+ * @param array|null $params
37
+ * @param array|string|null $options
38
+ *
39
+ * @return SKU The updated SKU.
40
+ */
41
+ public static function update($id, $params = null, $options = null)
42
+ {
43
+ return self::_update($id, $params, $options);
44
+ }
45
+
46
  /**
47
  * @param array|string|null $opts
48
  *
lib/stripe-gateway/lib/SingletonApiResource.php CHANGED
@@ -2,6 +2,11 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
5
  abstract class SingletonApiResource extends ApiResource
6
  {
7
  protected static function _singletonRetrieve($options = null)
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class SingletonApiResource
7
+ *
8
+ * @package Stripe
9
+ */
10
  abstract class SingletonApiResource extends ApiResource
11
  {
12
  protected static function _singletonRetrieve($options = null)
lib/stripe-gateway/lib/Source.php ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace Stripe;
4
+
5
+ /**
6
+ * Class Source
7
+ *
8
+ * @package Stripe
9
+ */
10
+ class Source extends ApiResource
11
+ {
12
+ /**
13
+ * @param string $id The ID of the Source to retrieve.
14
+ * @param array|string|null $opts
15
+ *
16
+ * @return Source
17
+ */
18
+ public static function retrieve($id, $opts = null)
19
+ {
20
+ return self::_retrieve($id, $opts);
21
+ }
22
+
23
+ /**
24
+ * @param array|null $params
25
+ * @param array|string|null $opts
26
+ *
27
+ * @return Collection of Sources
28
+ */
29
+ public static function all($params = null, $opts = null)
30
+ {
31
+ return self::_all($params, $opts);
32
+ }
33
+
34
+ /**
35
+ * @param array|null $params
36
+ * @param array|string|null $opts
37
+ *
38
+ * @return Source The created Source.
39
+ */
40
+ public static function create($params = null, $opts = null)
41
+ {
42
+ return self::_create($params, $opts);
43
+ }
44
+ }
lib/stripe-gateway/lib/Stripe.php CHANGED
@@ -2,6 +2,11 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
5
  class Stripe
6
  {
7
  // @var string The Stripe API key to be used for requests.
@@ -22,7 +27,7 @@ class Stripe
22
  // @var boolean Defaults to true.
23
  public static $verifySslCerts = true;
24
 
25
- const VERSION = '3.14.2';
26
 
27
  /**
28
  * @return string The API key used for requests.
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class Stripe
7
+ *
8
+ * @package Stripe
9
+ */
10
  class Stripe
11
  {
12
  // @var string The Stripe API key to be used for requests.
27
  // @var boolean Defaults to true.
28
  public static $verifySslCerts = true;
29
 
30
+ const VERSION = '3.21.0';
31
 
32
  /**
33
  * @return string The API key used for requests.
lib/stripe-gateway/lib/StripeObject.php CHANGED
@@ -5,6 +5,11 @@ namespace Stripe;
5
  use ArrayAccess;
6
  use InvalidArgumentException;
7
 
 
 
 
 
 
8
  class StripeObject implements ArrayAccess, JsonSerializable
9
  {
10
  /**
5
  use ArrayAccess;
6
  use InvalidArgumentException;
7
 
8
+ /**
9
+ * Class StripeObject
10
+ *
11
+ * @package Stripe
12
+ */
13
  class StripeObject implements ArrayAccess, JsonSerializable
14
  {
15
  /**
lib/stripe-gateway/lib/Subscription.php CHANGED
@@ -2,8 +2,24 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
5
  class Subscription extends ApiResource
6
  {
 
 
 
 
 
 
 
 
 
 
 
7
  /**
8
  * @param string $id The ID of the subscription to retrieve.
9
  * @param array|string|null $opts
@@ -37,6 +53,18 @@ class Subscription extends ApiResource
37
  return self::_create($params, $opts);
38
  }
39
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  /**
41
  * @param array|null $params
42
  *
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class Subscription
7
+ *
8
+ * @package Stripe
9
+ */
10
  class Subscription extends ApiResource
11
  {
12
+ /**
13
+ * These constants are possible representations of the status field.
14
+ *
15
+ * @link https://stripe.com/docs/api#subscription_object-status
16
+ */
17
+ const STATUS_ACTIVE = 'active';
18
+ const STATUS_CANCELED = 'canceled';
19
+ const STATUS_PAST_DUE = 'past_due';
20
+ const STATUS_TRIALING = 'trialing';
21
+ const STATUS_UNPAID = 'unpaid';
22
+
23
  /**
24
  * @param string $id The ID of the subscription to retrieve.
25
  * @param array|string|null $opts
53
  return self::_create($params, $opts);
54
  }
55
 
56
+ /**
57
+ * @param string $id The ID of the subscription to retrieve.
58
+ * @param array|null $params
59
+ * @param array|string|null $options
60
+ *
61
+ * @return Subscription The updated subscription.
62
+ */
63
+ public static function update($id, $params = null, $options = null)
64
+ {
65
+ return self::_update($id, $params, $options);
66
+ }
67
+
68
  /**
69
  * @param array|null $params
70
  *
lib/stripe-gateway/lib/ThreeDSecure.php ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace Stripe;
4
+
5
+ class ThreeDSecure extends ApiResource
6
+ {
7
+ /**
8
+ * @return string The endpoint URL for the given class.
9
+ */
10
+ public static function classUrl()
11
+ {
12
+ return "/v1/3d_secure";
13
+ }
14
+
15
+ /**
16
+ * @param array|null $params
17
+ * @param array|string|null $opts
18
+ *
19
+ * @return ThreeDSecure The created 3D Secure object.
20
+ */
21
+ public static function create($params = null, $opts = null)
22
+ {
23
+ return self::_create($params, $opts);
24
+ }
25
+ }
lib/stripe-gateway/lib/Token.php CHANGED
@@ -2,6 +2,21 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  class Token extends ApiResource
6
  {
7
  /**
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class Token
7
+ *
8
+ * @property string $id
9
+ * @property string $object
10
+ * @property mixed $bank_account
11
+ * @property mixed $card
12
+ * @property mixed $client_ip
13
+ * @property int $created
14
+ * @property bool $livemode
15
+ * @property string $type
16
+ * @property bool $used
17
+ *
18
+ * @package Stripe
19
+ */
20
  class Token extends ApiResource
21
  {
22
  /**
lib/stripe-gateway/lib/Transfer.php CHANGED
@@ -2,6 +2,38 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  class Transfer extends ApiResource
6
  {
7
  /**
@@ -37,6 +69,18 @@ class Transfer extends ApiResource
37
  return self::_create($params, $opts);
38
  }
39
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  /**
41
  * @return TransferReversal The created transfer reversal.
42
  */
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class Transfer
7
+ *
8
+ * @property string $id
9
+ * @property string $object
10
+ * @property int $amount
11
+ * @property int $amount_reversed
12
+ * @property mixed $application_fee
13
+ * @property string $balance_transaction
14
+ * @property int $created
15
+ * @property string $currency
16
+ * @property int $date
17
+ * @property mixed $description
18
+ * @property mixed $destination
19
+ * @property mixed $destination_payment
20
+ * @property mixed $failure_code
21
+ * @property mixed $failure_message
22
+ * @property mixed $fraud_details
23
+ * @property mixed $invoice
24
+ * @property bool $livemode
25
+ * @property mixed $metadata
26
+ * @property mixed $recipient
27
+ * @property mixed $reversals
28
+ * @property bool $reversed
29
+ * @property mixed $source_transaction
30
+ * @property string $source_type
31
+ * @property mixed $statement_descriptor
32
+ * @property string $status
33
+ * @property string $type
34
+ *
35
+ * @package Stripe
36
+ */
37
  class Transfer extends ApiResource
38
  {
39
  /**
69
  return self::_create($params, $opts);
70
  }
71
 
72
+ /**
73
+ * @param string $id The ID of the transfer to update.
74
+ * @param array|null $params
75
+ * @param array|string|null $options
76
+ *
77
+ * @return Transfer The updated transfer.
78
+ */
79
+ public static function update($id, $params = null, $options = null)
80
+ {
81
+ return self::_update($id, $params, $options);
82
+ }
83
+
84
  /**
85
  * @return TransferReversal The created transfer reversal.
86
  */
lib/stripe-gateway/lib/TransferReversal.php CHANGED
@@ -2,6 +2,20 @@
2
 
3
  namespace Stripe;
4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  class TransferReversal extends ApiResource
6
  {
7
  /**
2
 
3
  namespace Stripe;
4
 
5
+ /**
6
+ * Class TransferReversal
7
+ *
8
+ * @property string $id
9
+ * @property string $object
10
+ * @property int $amount
11
+ * @property string $balance_transaction
12
+ * @property int $created
13
+ * @property string $currency
14
+ * @property mixed $metadata
15
+ * @property string $transfer
16
+ *
17
+ * @package Stripe
18
+ */
19
  class TransferReversal extends ApiResource
20
  {
21
  /**
lib/stripe-gateway/lib/Util/AutoPagingIterator.php CHANGED
@@ -6,6 +6,7 @@ class AutoPagingIterator implements \Iterator
6
  {
7
  private $lastId = null;
8
  private $page = null;
 
9
  private $params = array();
10
 
11
  public function __construct($collection, $params)
@@ -23,12 +24,13 @@ class AutoPagingIterator implements \Iterator
23
  {
24
  $item = current($this->page->data);
25
  $this->lastId = $item !== false ? $item['id'] : null;
 
26
  return $item;
27
  }
28
 
29
  public function key()
30
  {
31
- return key($this->page->data);
32
  }
33
 
34
  public function next()
@@ -36,6 +38,8 @@ class AutoPagingIterator implements \Iterator
36
  $item = next($this->page->data);
37
  if ($item === false) {
38
  // If we've run out of data on the current page, try to fetch another one
 
 
39
  if ($this->page['has_more']) {
40
  $this->params = array_merge(
41
  $this->params ? $this->params : array(),
6
  {
7
  private $lastId = null;
8
  private $page = null;
9
+ private $pageOffset = 0;
10
  private $params = array();
11
 
12
  public function __construct($collection, $params)
24
  {
25
  $item = current($this->page->data);
26
  $this->lastId = $item !== false ? $item['id'] : null;
27
+
28
  return $item;
29
  }
30
 
31
  public function key()
32
  {
33
+ return key($this->page->data) + $this->pageOffset;
34
  }
35
 
36
  public function next()
38
  $item = next($this->page->data);
39
  if ($item === false) {
40
  // If we've run out of data on the current page, try to fetch another one
41
+ // and increase the offset the new page would start at
42
+ $this->pageOffset += count($this->page->data);
43
  if ($this->page['has_more']) {
44
  $this->params = array_merge(
45
  $this->params ? $this->params : array(),
lib/stripe-gateway/lib/Util/Util.php CHANGED
@@ -88,7 +88,9 @@ abstract class Util
88
  'recipient' => 'Stripe\\Recipient',
89
  'refund' => 'Stripe\\Refund',
90
  'sku' => 'Stripe\\SKU',
 
91
  'subscription' => 'Stripe\\Subscription',
 
92
  'fee_refund' => 'Stripe\\ApplicationFeeRefund',
93
  'bitcoin_receiver' => 'Stripe\\BitcoinReceiver',
94
  'bitcoin_transaction' => 'Stripe\\BitcoinTransaction',
88
  'recipient' => 'Stripe\\Recipient',
89
  'refund' => 'Stripe\\Refund',
90
  'sku' => 'Stripe\\SKU',
91
+ 'source' => 'Stripe\\Source',
92
  'subscription' => 'Stripe\\Subscription',
93
+ 'three_d_secure' => 'Stripe\\ThreeDSecure',
94
  'fee_refund' => 'Stripe\\ApplicationFeeRefund',
95
  'bitcoin_receiver' => 'Stripe\\BitcoinReceiver',
96
  'bitcoin_transaction' => 'Stripe\\BitcoinTransaction',
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://simple-membership-plugin.com/
4
  Tags: member, members, members only, membership, memberships, register, WordPress membership plugin, content, content protection, paypal, restrict, restrict access, Restrict content, admin, access control, subscription, teaser, protection, profile, login, login page, bbpress, stripe
5
  Requires at least: 3.3
6
  Tested up to: 4.6
7
- Stable tag: 3.3.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -128,6 +128,14 @@ https://simple-membership-plugin.com/
128
 
129
  == Changelog ==
130
 
 
 
 
 
 
 
 
 
131
  = 3.3.1 =
132
  - Added an option in the advanced settings menu to use the timezone value specified in your WordPress General Settings interface.
133
  - WordPress 4.6 compatibility.
4
  Tags: member, members, members only, membership, memberships, register, WordPress membership plugin, content, content protection, paypal, restrict, restrict access, Restrict content, admin, access control, subscription, teaser, protection, profile, login, login page, bbpress, stripe
5
  Requires at least: 3.3
6
  Tested up to: 4.6
7
+ Stable tag: 3.3.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
128
 
129
  == Changelog ==
130
 
131
+ = 3.3.2 =
132
+ - You can now view a member's last accessed date and time value by editing the member's profile from the admin dashboard.
133
+ - The "Registration Successful" message can now be customized using the custom messages addon.
134
+ - The edit profile template file can now also be overridden using the swpm_load_template_files filter.
135
+ - Updated the Dutch language translation file.
136
+ - Added Estonian language translation file.
137
+ - Updated the Stripe payment gateway library to the latest version.
138
+
139
  = 3.3.1 =
140
  - Added an option in the advanced settings menu to use the timezone value specified in your WordPress General Settings interface.
141
  - WordPress 4.6 compatibility.
simple-wp-membership.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  Plugin Name: Simple WordPress Membership
4
- Version: 3.3.1
5
  Plugin URI: https://simple-membership-plugin.com/
6
  Author: smp7, wp.insider
7
  Author URI: https://simple-membership-plugin.com/
@@ -17,7 +17,7 @@ include_once('classes/class.simple-wp-membership.php');
17
  include_once('classes/class.swpm-cronjob.php');
18
  include_once('swpm-compat.php');
19
 
20
- define('SIMPLE_WP_MEMBERSHIP_VER', '3.3.1');
21
  define('SIMPLE_WP_MEMBERSHIP_DB_VER', '1.2');
22
  define('SIMPLE_WP_MEMBERSHIP_SITE_HOME_URL', home_url());
23
  define('SIMPLE_WP_MEMBERSHIP_PATH', dirname(__FILE__) . '/');
1
  <?php
2
  /*
3
  Plugin Name: Simple WordPress Membership
4
+ Version: 3.3.2
5
  Plugin URI: https://simple-membership-plugin.com/
6
  Author: smp7, wp.insider
7
  Author URI: https://simple-membership-plugin.com/
17
  include_once('classes/class.swpm-cronjob.php');
18
  include_once('swpm-compat.php');
19
 
20
+ define('SIMPLE_WP_MEMBERSHIP_VER', '3.3.2');
21
  define('SIMPLE_WP_MEMBERSHIP_DB_VER', '1.2');
22
  define('SIMPLE_WP_MEMBERSHIP_SITE_HOME_URL', home_url());
23
  define('SIMPLE_WP_MEMBERSHIP_PATH', dirname(__FILE__) . '/');
views/admin_edit.php CHANGED
@@ -60,11 +60,21 @@
60
  <tr>
61
  <th scope="row"><label for="subscr_id"><?php echo SwpmUtils::_('Subscriber ID/Reference') ?> </label></th>
62
  <td><input class="regular-text" name="subscr_id" type="text" id="subscr_id" value="<?php echo esc_attr($subscr_id); ?>" /></td>
63
- </tr>
 
 
 
 
 
 
 
64
  <tr>
65
  <th scope="row"><label for="last_accessed_from_ip"><?php echo SwpmUtils::_('Last Accessed From IP') ?> </label></th>
66
- <td><?php echo esc_attr($last_accessed_from_ip); ?></td>
67
- </tr>
 
 
 
68
 
69
  </table>
70
 
60
  <tr>
61
  <th scope="row"><label for="subscr_id"><?php echo SwpmUtils::_('Subscriber ID/Reference') ?> </label></th>
62
  <td><input class="regular-text" name="subscr_id" type="text" id="subscr_id" value="<?php echo esc_attr($subscr_id); ?>" /></td>
63
+ </tr>
64
+ <tr>
65
+ <th scope="row"><label for="last_accessed"><?php echo SwpmUtils::_('Last Accessed Date') ?> </label></th>
66
+ <td>
67
+ <?php echo esc_attr($last_accessed); ?>
68
+ <p class="description indicator-hint"><?php echo SwpmUtils::_('This value gets updated when this member logs into your site.') ?></p>
69
+ </td>
70
+ </tr>
71
  <tr>
72
  <th scope="row"><label for="last_accessed_from_ip"><?php echo SwpmUtils::_('Last Accessed From IP') ?> </label></th>
73
+ <td>
74
+ <?php echo esc_attr($last_accessed_from_ip); ?>
75
+ <p class="description indicator-hint"><?php echo SwpmUtils::_('This value gets updated when this member logs into your site.') ?></p>
76
+ </td>
77
+ </tr>
78
 
79
  </table>
80
 
views/edit.php CHANGED
@@ -1,3 +1,11 @@
 
 
 
 
 
 
 
 
1
  <div class="swpm-edit-profile-form">
2
  <form id="swpm-editprofile-form" name="swpm-editprofile-form" method="post" action="">
3
  <table>
1
+ <?php
2
+
3
+ $auth = SwpmAuth::get_instance();
4
+ $user_data = (array) $auth->userData;
5
+ $user_data['membership_level_alias'] = $auth->get('alias');
6
+ extract($user_data, EXTR_SKIP);
7
+
8
+ ?>
9
  <div class="swpm-edit-profile-form">
10
  <form id="swpm-editprofile-form" name="swpm-editprofile-form" method="post" action="">
11
  <table>