Simple Membership - Version 4.0.7

Version Description

  • Stripe sca subscriptions enhancement: restore the custom field value from the original webhook notification (when available).
  • Custom fields data (if available) is also saved in the swpm_transactions custom post type after a transaction.
  • Updated the Dutch language file.
  • Integration with the WP Express Checkout plugin.
  • WordPress 5.8 compatibility.
Download this release

Release Info

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

Code changes from version 4.0.6 to 4.0.7

classes/class.swpm-transactions.php CHANGED
@@ -33,7 +33,8 @@ class SwpmTransactions {
33
 
34
  $db_row_id = $wpdb->insert_id;
35
 
36
- //let's also store transactions data in swpm_transactions CPT
 
37
  $post = array();
38
  $post['post_title'] = '';
39
  $post['post_status'] = 'publish';
@@ -44,18 +45,27 @@ class SwpmTransactions {
44
 
45
  update_post_meta( $post_id, 'db_row_id', $db_row_id );
46
 
 
47
  if ( isset( $ipn_data['payment_button_id'] ) ) {
48
  $txn_data['payment_button_id'] = $ipn_data['payment_button_id'];
49
  }
50
 
 
51
  if ( isset( $ipn_data['is_live'] ) ) {
52
  $txn_data['is_live'] = $ipn_data['is_live'];
53
  }
54
 
 
 
 
 
 
 
55
  foreach ( $txn_data as $key => $value ) {
56
  update_post_meta( $post_id, $key, $value );
57
  }
58
 
 
59
  do_action( 'swpm_txn_record_saved', $txn_data, $db_row_id, $post_id );
60
 
61
  }
@@ -84,4 +94,39 @@ class SwpmTransactions {
84
  $query_db = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM {$wpdb->prefix}swpm_payments_tbl WHERE subscr_id = %s", $subscr_id ), OBJECT );
85
  return $query_db;
86
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
87
  }
33
 
34
  $db_row_id = $wpdb->insert_id;
35
 
36
+ /*** Save to the swpm_transactions CPT also ***/
37
+ //Let's also store the transactions data in swpm_transactions CPT.
38
  $post = array();
39
  $post['post_title'] = '';
40
  $post['post_status'] = 'publish';
45
 
46
  update_post_meta( $post_id, 'db_row_id', $db_row_id );
47
 
48
+ //Add the payment_button_id to the txn_data array so it can be saved to the swpm_transactions CPT.
49
  if ( isset( $ipn_data['payment_button_id'] ) ) {
50
  $txn_data['payment_button_id'] = $ipn_data['payment_button_id'];
51
  }
52
 
53
+ //Add the is_live to the txn_data array so it can be saved to the swpm_transactions CPT.
54
  if ( isset( $ipn_data['is_live'] ) ) {
55
  $txn_data['is_live'] = $ipn_data['is_live'];
56
  }
57
 
58
+ //Add the custom value to the txn_data array so it can be saved to the swpm_transactions CPT.
59
+ if ( isset( $ipn_data['custom'] ) ) {
60
+ $txn_data['custom'] = $ipn_data['custom'];
61
+ }
62
+
63
+ //Save the $txn_data to the swpm_transactions CPT as post meta.
64
  foreach ( $txn_data as $key => $value ) {
65
  update_post_meta( $post_id, $key, $value );
66
  }
67
 
68
+ //Trigger the action hook.
69
  do_action( 'swpm_txn_record_saved', $txn_data, $db_row_id, $post_id );
70
 
71
  }
94
  $query_db = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM {$wpdb->prefix}swpm_payments_tbl WHERE subscr_id = %s", $subscr_id ), OBJECT );
95
  return $query_db;
96
  }
97
+
98
+ static function get_original_custom_value_for_subscription_payment ( $subscr_id ) {
99
+ if ( isset ( $subscr_id )){
100
+ //Lets check if a proper custom field value is already saved in the CPT for this stripe subscription.
101
+ $txn_cpt_qry_args = array(
102
+ 'post_type' => 'swpm_transactions',
103
+ 'orderby' => 'post_id',
104
+ 'order' => 'ASC',
105
+ 'meta_query' => array(
106
+ array(
107
+ 'key' => 'subscr_id',
108
+ 'value' => $subscr_id
109
+ ),
110
+ )
111
+ );
112
+ $txn_cpt_qry = new WP_Query( $txn_cpt_qry_args );
113
+
114
+ $found_posts = $txn_cpt_qry->found_posts;
115
+ if ( $found_posts ) {
116
+ //Found a match so this is a subscription payment notification.
117
+ //Read the posts array.
118
+ $posts = $txn_cpt_qry->posts;
119
+
120
+ //The fist post entry will be the original stripe webhook notification.
121
+ $first_entry = array_shift($posts);
122
+ //Get the ID of the post.
123
+ $cpt_post_id = $first_entry->ID;
124
+ //Retrieve the original custom value saved for this post.
125
+ $orig_custom_value = get_post_meta( $cpt_post_id, 'custom', true );
126
+ return $orig_custom_value;
127
+ }
128
+ }
129
+ return '';
130
+ }
131
+
132
  }
images/addons/wp-express-checkout-integration.png ADDED
Binary file
ipn/swpm-stripe-sca-subscription-ipn.php CHANGED
@@ -149,6 +149,17 @@ class SwpmStripeSCASubscriptionIpnHandler {
149
 
150
  $custom = $custom_field_value;
151
 
 
 
 
 
 
 
 
 
 
 
 
152
  $custom_var = SwpmTransactions::parse_custom_var( $custom );
153
  $swpm_id = isset( $custom_var['swpm_id'] ) ? $custom_var['swpm_id'] : '';
154
 
149
 
150
  $custom = $custom_field_value;
151
 
152
+ //Override custom value if necessary (for subscription webhooks)
153
+ if ( isset ( $sub_id )){
154
+ //This is a subscription payment notificataion. Lets check if the original custom field value is already saved in the CPT for this stripe subscription.
155
+ $orig_custom_value = SwpmTransactions::get_original_custom_value_for_subscription_payment($sub_id);
156
+ if ( !empty ($orig_custom_value)){
157
+ //Override the custom field value with the original transactions value that can contain additional cookie and session info.
158
+ $custom = $orig_custom_value;
159
+ SwpmLog::log_simple_debug( 'Custom field value overriden with original value. Custom: ' . $custom, true );
160
+ }
161
+ }
162
+
163
  $custom_var = SwpmTransactions::parse_custom_var( $custom );
164
  $swpm_id = isset( $custom_var['swpm_id'] ) ? $custom_var['swpm_id'] : '';
165
 
languages/simple-membership-nl_NL.mo CHANGED
Binary file
languages/simple-membership-nl_NL.po CHANGED
@@ -1,116 +1,226 @@
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: 2021-04-17 00:10+0200\n"
 
6
  "Language-Team: \n"
 
7
  "MIME-Version: 1.0\n"
8
  "Content-Type: text/plain; charset=UTF-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
10
- "X-Generator: Poedit 2.4.2\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
 
 
 
 
19
  msgid "You are not logged in."
20
  msgstr "Je bent niet ingelogd."
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"
28
  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 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
44
  msgid "Members"
45
  msgstr "Leden"
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 "Lidmaatschap niveaus"
52
 
53
- #: classes/class.simple-wp-membership.php:467
54
  msgid "Settings"
55
  msgstr "Instellingen"
56
 
57
- #: classes/class.simple-wp-membership.php:468
58
  msgid "Payments"
59
  msgstr "Betalingen"
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
73
- msgid ""
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
107
- #: classes/class.swpm-admin-registration.php:105
108
- #: classes/class.swpm-membership-level.php:43
109
- #: classes/class.swpm-membership-level.php:62
110
  msgid "Please correct the following:"
111
  msgstr "Corrigeer het volgende:"
112
 
113
- #: classes/class.swpm-admin-registration.php:96
 
 
 
 
 
 
114
  msgid "Your current password"
115
  msgstr "Je huidige wachtwoord"
116
 
@@ -119,7 +229,9 @@ 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
@@ -130,80 +242,165 @@ msgstr "Naam bevat ongeldig teken"
130
  msgid "Available"
131
  msgstr "Beschikbaar"
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:"
155
  msgstr "Je bent ingelogd als:"
156
 
157
- #: classes/class.swpm-auth.php:160
158
  msgid "Logged Out Successfully."
159
  msgstr "Je bent uitgelogd."
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"
167
- msgstr "Ongeldige gebruikersnaam"
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
175
- #: classes/class.swpm-membership-levels.php:20
176
- #: classes/admin-includes/class.swpm-payments-list-table.php:80
177
- #: views/add.php:30 views/admin_member_form_common_part.php:2 views/edit.php:53
178
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:36
179
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:217
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
187
- msgid "ID"
188
- msgstr "ID"
 
189
 
190
  #: classes/class.swpm-category-list.php:34
191
- msgid "Name"
192
- msgstr "Naam"
 
 
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"
200
  msgstr "Aantal"
201
 
202
- #: classes/class.swpm-category-list.php:80
203
  msgid "Category protection updated!"
204
  msgstr "Categorie afscherming bijgewerkt!"
205
 
206
- #: classes/class.swpm-form.php:26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
207
  msgid ""
208
  "Wordpress account exists with given username. But given email doesn't match."
209
  msgstr ""
@@ -212,95 +409,154 @@ msgstr ""
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"
234
  msgstr "Wachtwoord is vereist"
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"
254
  msgstr "Lid sinds veld is ongeldig"
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"
262
  msgstr "Geslacht veld is ongeldig"
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
282
  msgid "Please"
283
  msgstr "Alsjeblieft"
284
 
285
- #: classes/class.swpm-front-registration.php:80
286
- #: classes/class.swpm-settings.php:377 views/login.php:21
287
  msgid "Login"
288
  msgstr "Inloggen"
289
 
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."
@@ -308,219 +564,538 @@ 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
346
- #: classes/class.swpm-member-utils.php:38
347
- #: classes/class.swpm-member-utils.php:48
348
- msgid "User is not logged in."
349
- msgstr "Gebruiker is niet ingelogd."
350
-
351
- #: classes/class.swpm-members.php:9
352
  msgid "Member"
353
  msgstr "Lid"
354
 
355
- #: classes/class.swpm-members.php:19 views/add.php:6 views/admin_add.php:11
356
- #: views/admin_edit.php:9 views/edit.php:5 views/login.php:5
 
 
 
 
 
 
357
  msgid "Username"
358
  msgstr "Gebruikersnaam"
359
 
360
- #: classes/class.swpm-members.php:20
361
- #: classes/admin-includes/class.swpm-payments-list-table.php:74
362
- #: views/add.php:22 views/admin_member_form_common_part.php:15
363
- #: views/edit.php:21
364
  msgid "First Name"
365
  msgstr "Voornaam"
366
 
367
- #: classes/class.swpm-members.php:21
368
- #: classes/admin-includes/class.swpm-payments-list-table.php:75
369
- #: views/add.php:26 views/admin_member_form_common_part.php:19
370
- #: views/edit.php:25
371
  msgid "Last Name"
372
  msgstr "Achternaam"
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
388
- #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:80
389
- #: classes/admin-includes/class.swpm-payments-list-table.php:95
 
 
 
 
390
  msgid "Delete"
391
  msgstr "Verwijder"
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"
423
- msgstr "Rol"
 
 
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"
431
- msgstr "Registratie"
432
 
433
- #: classes/class.swpm-misc-utils.php:73
434
- msgid "Member Login"
435
- msgstr "Leden login"
 
 
436
 
437
- #: classes/class.swpm-misc-utils.php:96
438
- msgid "Profile"
439
- msgstr "Profiel"
 
 
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 ""
500
- "Enables or disables \"more\" tag protection in the posts and pages. Anything "
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\"."
@@ -529,99 +1104,156 @@ msgstr ""
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"
559
  msgstr "Registratie pagina 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
591
- msgid "Settings updated!"
592
- msgstr "Instellingen bijgewerkt!"
 
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."
@@ -629,195 +1261,610 @@ 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 ""
663
  "When enabled, expired members will be able to log into the system but won't "
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?"
673
  msgstr "Nog geen lid?"
674
 
675
- #: classes/class.swpm-settings.php:377 views/login.php:27
676
- msgid "Join Us"
677
- msgstr "Meld je aan"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
678
 
679
- #: classes/class.swpm-utils.php:67
 
 
 
 
 
 
 
 
 
 
 
 
680
  msgid "Active"
681
  msgstr "Actief"
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"
689
  msgstr "In behandeling"
690
 
691
- #: classes/class.swpm-utils.php:70
692
  msgid "Expired"
693
  msgstr "Verlopen"
694
 
695
- #: classes/class.swpm-utils.php:297
696
- msgid "Never"
697
- msgstr "Nooit"
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"
731
  msgstr "Rij ID"
732
 
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"
744
- msgstr "Datum"
745
-
746
- #: classes/admin-includes/class.swpm-payments-list-table.php:78
747
  msgid "Transaction ID"
748
  msgstr "Transactie ID"
749
 
750
- #: classes/admin-includes/class.swpm-payments-list-table.php:79
 
 
 
 
 
 
751
  msgid "Amount"
752
  msgstr "Bedrag"
753
 
754
- #: classes/common/class.swpm-list-table.php:137
755
- msgid "List View"
756
- msgstr "Lijstweergave"
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"
772
- msgstr "Bulk acties"
773
-
774
- #: classes/common/class.swpm-list-table.php:443
775
- msgid "Apply"
776
- msgstr "Toepassen"
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
788
- msgid "%1$s %2$d"
789
- msgstr "%1$s %2$d"
790
-
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"
798
- msgstr "Selecteer pagina"
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 ""
822
  "If you have just made a membership payment then your payment is yet to be "
823
  "processed. Please check back in a few minutes. An email will be sent to you "
@@ -827,43 +1874,132 @@ msgstr ""
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
861
- #: views/admin_edit.php:9 views/admin_edit.php:13 views/admin_edit_level.php:10
862
- #: views/admin_edit_level.php:14 views/admin_edit_level.php:18
 
863
  msgid "(required)"
864
  msgstr "(vereist)"
865
 
866
- #: views/admin_add.php:15 views/admin_edit.php:13
867
  msgid "E-mail"
868
  msgstr "Email"
869
 
@@ -871,11 +2007,11 @@ msgstr "Email"
871
  msgid "(twice, required)"
872
  msgstr "(tweemaal, vereist)"
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 ""
880
  "Hint: The password should be at least seven characters long. To make it "
881
  "stronger, use upper and lower case letters, numbers and symbols like ! \" ? "
@@ -885,7 +2021,7 @@ msgstr ""
885
  "te maken gebruik je hoofdletters en kleine letters, nummers en symbolen "
886
  "zoals ! \" ? $ % ^ &amp; )."
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
 
@@ -893,12 +2029,7 @@ msgstr "Account Status"
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
898
- msgid "Simple WP Membership::Settings"
899
- msgstr "Simple WP Membership::Instellingen"
900
-
901
- #: views/admin_addon_settings.php:8
902
  msgid ""
903
  "Some of the simple membership plugin's addon settings and options will be "
904
  "displayed here (if you have them)"
@@ -906,63 +2037,98 @@ 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"
911
  msgstr "Opslaan"
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"
923
  msgstr "Standaard WordPress Rol"
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
 
@@ -970,11 +2136,7 @@ msgstr "Voeg een nieuw lidmaatschap niveau toe "
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 ""
979
  "First of all, globally protect the category on your site by selecting "
980
  "\"General Protection\" from the drop-down box below and then select the "
@@ -984,7 +2146,7 @@ msgstr ""
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 ""
989
  "Next, select an existing membership level from the drop-down box below and "
990
  "then select the categories you want to grant access to (for that particular "
@@ -994,128 +2156,257 @@ msgstr ""
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"
999
  msgstr "Bewerk lid"
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 "
1023
- msgstr "Wijzig gebruiker "
 
 
 
 
 
 
 
 
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"
1048
- msgstr "Simple WP Membership::Leden"
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"
1060
- msgstr "zoeken"
1061
 
1062
- #: views/admin_membership_level_menu.php:2
1063
- msgid "Membership level"
 
 
1064
  msgstr "Lidmaatschap niveau"
1065
 
1066
- #: views/admin_membership_level_menu.php:3
1067
- msgid "Manage Content Production"
1068
- msgstr "Beheer Inhoud Afscherming"
1069
-
1070
- #: views/admin_membership_level_menu.php:4
1071
- msgid "Category Protection"
1072
- msgstr "Categorie Afscherming"
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"
1080
  msgstr "Geslacht"
1081
 
1082
- #: views/admin_member_form_common_part.php:30 views/edit.php:29
 
1083
  msgid "Phone"
1084
  msgstr "Telefoon"
1085
 
1086
- #: views/admin_member_form_common_part.php:34 views/edit.php:33
1087
  msgid "Street"
1088
  msgstr "Straat"
1089
 
1090
- #: views/admin_member_form_common_part.php:38 views/edit.php:37
1091
  msgid "City"
1092
  msgstr "Plaats"
1093
 
1094
- #: views/admin_member_form_common_part.php:42 views/edit.php:41
1095
  msgid "State"
1096
  msgstr "Provincie"
1097
 
1098
- #: views/admin_member_form_common_part.php:46 views/edit.php:45
1099
  msgid "Zipcode"
1100
  msgstr "Postcode"
1101
 
1102
- #: views/admin_member_form_common_part.php:50 views/edit.php:49
 
1103
  msgid "Country"
1104
  msgstr "Land"
1105
 
1106
  #: views/admin_member_form_common_part.php:54
 
1107
  msgid "Company"
1108
  msgstr "Bedrijf"
1109
 
1110
  #: views/admin_member_form_common_part.php:58
 
1111
  msgid "Member Since"
1112
  msgstr "Lid sinds"
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 ""
1120
  "You can manually generate a registration completion link here and give it to "
1121
  "your customer if they have missed the email that was automatically sent out "
@@ -1125,243 +2416,794 @@ msgstr ""
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"
1134
  msgstr "OF"
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"
1154
- msgstr "Bijwerken"
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"
1162
  msgstr "Ingelogd als"
1163
 
1164
- #: views/loggedin.php:11
1165
  msgid "Membership"
1166
  msgstr "Lidmaatschap"
1167
 
1168
- #: views/loggedin.php:15
1169
  msgid "Account Expiry"
1170
  msgstr "Account verloopt"
1171
 
1172
- #: views/loggedin.php:19
1173
- msgid "Logout"
1174
- msgstr "Uitloggen"
 
 
 
 
1175
 
1176
- #: views/login.php:18
1177
  msgid "Remember Me"
1178
  msgstr "Onthoud mij"
1179
 
1180
- #: views/login.php:24
1181
  msgid "Forgot Password?"
1182
  msgstr "Wachtwoord vergeten?"
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"
1226
  msgstr "PayPal Integratie Instellingen"
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
1259
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:47
1260
- #: views/payments/payment-gateway/admin_paypal_subscription_button.php:320
1261
- msgid "Payment Currency"
1262
- msgstr "Betalingsvaluta"
 
 
 
 
 
 
 
1263
 
1264
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:93
1265
- #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:274
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1346
  msgid "Buy Now"
1347
  msgstr "Koop Nu"
1348
 
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"
1353
 
1354
- msgid "Username or Email"
1355
- msgstr "Gebruikersnaam of e-mailadres"
 
1356
 
1357
- msgid "Leave empty to keep the current password"
1358
- msgstr "Leeg laten om het huidige wachtwoord te behouden"
 
1359
 
1360
- msgid "Company Name"
1361
- msgstr "Bedrijfsnaam"
 
 
 
1362
 
1363
- msgid "(Please Select)"
1364
- msgstr "(Maak een keuze)"
 
 
1365
 
1366
- msgid "Edit Profile"
1367
- msgstr "Wijzig profiel"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: simple membership\n"
4
+ "POT-Creation-Date: 2019-05-26 13:48+0600\n"
5
+ "PO-Revision-Date: 2021-07-06 12:14+0200\n"
6
+ "Last-Translator: WEN Kunst <info@wenkunst.nl>\n"
7
  "Language-Team: \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 3.0\n"
13
+ "X-Poedit-KeywordsList: __;_e;_\n"
14
+ "X-Poedit-Basepath: ../classes\n"
 
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
+ "X-Poedit-SearchPath-0: class.simple-wp-membership.php\n"
17
+
18
+ #: classes/class.simple-wp-membership.php:180
19
+ msgid "The admin of this site does not allow users to access the wp dashboard."
20
+ msgstr ""
21
+
22
+ #: classes/class.simple-wp-membership.php:181
23
+ msgid "Go back to the home page by "
24
+ msgstr ""
25
+
26
+ #: classes/class.simple-wp-membership.php:181
27
+ msgid "clicking here"
28
+ msgstr ""
29
+
30
+ #: classes/class.simple-wp-membership.php:242
31
+ msgid ""
32
+ "Error! This site has the force WP user login feature enabled in the "
33
+ "settings. We could not find a WP user record for the given username: "
34
+ msgstr ""
35
+
36
+ #: classes/class.simple-wp-membership.php:243
37
+ msgid ""
38
+ "This error is triggered when a member account doesn't have a corresponding "
39
+ "WP user account. So the plugin fails to log the user into the WP User system."
40
+ msgstr ""
41
+
42
+ #: classes/class.simple-wp-membership.php:244
43
+ msgid ""
44
+ "Contact the site admin and request them to check your username in the WP "
45
+ "Users menu to see what happened with the WP user entry of your account."
46
+ msgstr ""
47
+
48
+ #: classes/class.simple-wp-membership.php:245
49
+ msgid ""
50
+ "The site admin can disable the Force WP User Synchronization feature in the "
51
+ "settings to disable this feature and this error will go away."
52
+ msgstr ""
53
 
54
+ #: classes/class.simple-wp-membership.php:246
55
+ msgid "You can use the back button of your browser to go back to the site."
56
+ msgstr ""
57
+
58
+ #: classes/class.simple-wp-membership.php:407
59
  msgid "You are not logged in."
60
  msgstr "Je bent niet ingelogd."
61
 
62
+ #: classes/class.simple-wp-membership.php:458
63
+ msgid ""
64
+ "You have the sandbox payment mode enabled in plugin settings. Make sure to "
65
+ "turn off the sandbox mode when you want to do live transactions."
66
+ msgstr ""
67
+
68
+ #: classes/class.simple-wp-membership.php:473
69
  msgid "Simple WP Membership Protection"
70
  msgstr "Simple WP Lidmaatschap Afscherming"
71
 
72
+ #: classes/class.simple-wp-membership.php:485
73
  msgid "Simple Membership Protection options"
74
  msgstr "Simple Membership Afscherm opties"
75
 
76
+ #: classes/class.simple-wp-membership.php:503
77
  msgid "Do you want to protect this content?"
78
  msgstr "Wil je deze inhoud afschermen?"
79
 
80
+ #: classes/class.simple-wp-membership.php:504
81
+ msgid "No, Do not protect this content."
82
+ msgstr ""
83
+
84
+ #: classes/class.simple-wp-membership.php:505
85
+ msgid "Yes, Protect this content."
86
+ msgstr ""
87
+
88
+ #: classes/class.simple-wp-membership.php:508
89
  msgid "Select the membership level that can access this content:"
90
  msgstr "Selecteer het lidmaatschap niveau dat toegang heeft tot deze inhoud:"
91
 
92
+ #: classes/class.simple-wp-membership.php:646
93
+ #: classes/class.simple-wp-membership.php:650
94
+ msgid "Validating, please wait"
95
+ msgstr "Controleren, even geduld"
96
+
97
+ #: classes/class.simple-wp-membership.php:653
98
+ msgid "Invalid email address"
99
+ msgstr "Ongeldig E-mailadres"
100
+
101
+ #: classes/class.simple-wp-membership.php:656
102
+ msgid "This field is required"
103
+ msgstr "Dit veld is verplicht"
104
+
105
+ msgid "Password must contain at least:"
106
+ msgstr "Wachtwoord moet minimaal bestaan uit:"
107
+
108
+ msgid "- a digit"
109
+ msgstr "- een getal"
110
+
111
+ msgid "- an uppercase letter"
112
+ msgstr "- een hoofdletter"
113
+
114
+ msgid "- a lowercase letter"
115
+ msgstr "- een kleine letter"
116
+
117
+ #: classes/class.simple-wp-membership.php:659 classes/class.swpm-auth.php:296
118
+ msgid "Invalid Username"
119
+ msgstr "Ongeldige gebruikersnaam"
120
+
121
+ #: classes/class.simple-wp-membership.php:659
122
+ msgid "Usernames can only contain: letters, numbers and .-_*@"
123
+ msgstr ""
124
+ "Gebruikersnamen mogen alleen bestaan uit: letters, nummers en de tekens .-_*@"
125
+
126
+ #: classes/class.simple-wp-membership.php:662
127
+ msgid "Minimum "
128
+ msgstr "Minimaal "
129
+
130
+ #: classes/class.simple-wp-membership.php:663
131
+ msgid " characters required"
132
+ msgstr " tekens"
133
+
134
+ #: classes/class.simple-wp-membership.php:666
135
+ msgid "Apostrophe character is not allowed"
136
+ msgstr "Apostrof is niet toegestaan"
137
+
138
+ #: classes/class.simple-wp-membership.php:697
139
  msgid "WP Membership"
140
  msgstr "WP Lidmaatschap"
141
 
142
+ #: classes/class.simple-wp-membership.php:698 classes/class.swpm-members.php:11
143
+ #: classes/class.swpm-members.php:581
144
  msgid "Members"
145
  msgstr "Leden"
146
 
147
+ #: classes/class.simple-wp-membership.php:699
148
  #: classes/class.swpm-category-list.php:20
149
+ #: classes/class.swpm-membership-levels.php:12
150
+ #: classes/class.swpm-membership-levels.php:265
151
+ #: classes/class.swpm-post-list.php:21
152
  msgid "Membership Levels"
153
  msgstr "Lidmaatschap niveaus"
154
 
155
+ #: classes/class.simple-wp-membership.php:700
156
  msgid "Settings"
157
  msgstr "Instellingen"
158
 
159
+ #: classes/class.simple-wp-membership.php:701
160
  msgid "Payments"
161
  msgstr "Betalingen"
162
 
163
+ #: classes/class.simple-wp-membership.php:702
164
  msgid "Add-ons"
165
  msgstr "Add-Ons/Extensies"
166
 
167
+ #: classes/class.swpm-access-control.php:47
168
+ #: classes/class.swpm-access-control.php:120
 
169
  msgid "You need to login to view this content. "
170
  msgstr "Je moet inloggen om deze inhoud te bekijken. "
171
 
172
+ #: classes/class.swpm-access-control.php:56
173
+ #: classes/class.swpm-access-control.php:128
174
+ #: classes/class.swpm-access-control.php:212
175
+ #, fuzzy
176
+ #| msgid "Account has expired."
177
+ msgid "Your account has expired. "
178
+ msgstr "Account is verlopen."
 
179
 
180
+ #: classes/class.swpm-access-control.php:66
181
+ #: classes/class.swpm-access-control.php:138
182
  msgid "This content can only be viewed by members who joined on or before "
183
  msgstr ""
184
  "Deze content kan alleen bekeken worden door leden die lid zijn geworden op "
185
  "of voor "
186
 
187
+ #: classes/class.swpm-access-control.php:79
188
+ #: classes/class.swpm-access-control.php:148
189
  msgid "This content is not permitted for your membership level."
190
  msgstr "Deze inhoud is niet toegankelijk voor jouw lidmaatschap."
191
 
192
+ #: classes/class.swpm-access-control.php:204
193
+ msgid "You need to login to view the rest of the content. "
194
+ msgstr "Je moet inloggen om de rest van deze inhoud te bekijken. "
195
+
196
+ #: classes/class.swpm-access-control.php:217
197
  msgid " The rest of the content is not permitted for your membership level."
198
  msgstr ""
199
  " De rest van de inhoud is niet toegankelijk voor jouw lidmaatschapsniveau."
200
 
201
+ #: classes/class.swpm-admin-registration.php:25
202
+ msgid "Error! Nonce verification failed for user registration from admin end."
203
+ msgstr ""
 
204
 
205
+ #: classes/class.swpm-admin-registration.php:71
206
  msgid "Member record added successfully."
207
  msgstr "Lid succesvol toegevoegd."
208
 
209
+ #: classes/class.swpm-admin-registration.php:76
210
+ #: classes/class.swpm-admin-registration.php:124
211
+ #: classes/class.swpm-admin-registration.php:151
212
+ #: classes/class.swpm-membership-level.php:73
213
+ #: classes/class.swpm-membership-level.php:105
214
  msgid "Please correct the following:"
215
  msgstr "Corrigeer het volgende:"
216
 
217
+ #: classes/class.swpm-admin-registration.php:87
218
+ #, fuzzy
219
+ #| msgid "Sorry, Nonce verification failed."
220
+ msgid "Error! Nonce verification failed for user edit from admin end."
221
+ msgstr "Sorry, Nonce verificatie mislukt."
222
+
223
+ #: classes/class.swpm-admin-registration.php:139
224
  msgid "Your current password"
225
  msgstr "Je huidige wachtwoord"
226
 
229
  msgstr "Ongeldig e-mailadres"
230
 
231
  #: classes/class.swpm-ajax.php:21 classes/class.swpm-ajax.php:36
232
+ #, fuzzy
233
+ #| msgid "Aready taken"
234
+ msgid "Already taken"
235
  msgstr "Al bezet"
236
 
237
  #: classes/class.swpm-ajax.php:30
242
  msgid "Available"
243
  msgstr "Beschikbaar"
244
 
245
+ #: classes/class.swpm-auth.php:57
246
+ msgid ""
247
+ "Warning! Simple Membership plugin cannot process this login request to "
248
+ "prevent you from getting logged out of WP Admin accidentally."
249
+ msgstr ""
250
+
251
+ #: classes/class.swpm-auth.php:58
252
+ msgid "Click here"
253
+ msgstr ""
254
+
255
+ #: classes/class.swpm-auth.php:58
256
+ msgid " to see the profile you are currently logged into in this browser."
257
+ msgstr ""
258
+
259
+ #: classes/class.swpm-auth.php:59
260
+ msgid ""
261
+ "You are logged into the site as an ADMIN user in this browser. First, logout "
262
+ "from WP Admin then you will be able to log in as a normal member."
263
+ msgstr ""
264
+
265
+ #: classes/class.swpm-auth.php:60
266
+ msgid ""
267
+ "Alternatively, you can use a different browser (where you are not logged-in "
268
+ "as ADMIN) to test the membership login."
269
+ msgstr ""
270
+
271
+ #: classes/class.swpm-auth.php:61
272
+ msgid ""
273
+ "Your normal visitors or members will never see this message. This message is "
274
+ "ONLY for ADMIN user."
275
+ msgstr ""
276
+
277
+ #: classes/class.swpm-auth.php:68
278
+ #, fuzzy
279
+ #| msgid "Security check: captcha validation failed."
280
+ msgid "Captcha validation failed on login form."
281
+ msgstr "Security check: captcha validatie mislukt."
282
+
283
+ #: classes/class.swpm-auth.php:93
284
  msgid "User Not Found."
285
  msgstr "Gebruiker niet gevonden."
286
 
287
+ #: classes/class.swpm-auth.php:100
288
  msgid "Password Empty or Invalid."
289
  msgstr "Wachtwoord leeg of ongeldig."
290
 
291
+ #: classes/class.swpm-auth.php:133
292
  msgid "Account is inactive."
293
  msgstr "Dit account is niet actief."
294
 
295
+ #: classes/class.swpm-auth.php:136 classes/class.swpm-auth.php:162
296
+ msgid "Account has expired."
297
+ msgstr "Account is verlopen."
298
+
299
+ #: classes/class.swpm-auth.php:139
300
  msgid "Account is pending."
301
  msgstr "Deze account is in behandeling voor activering."
302
 
303
+ #: classes/class.swpm-auth.php:146
304
+ #, php-format
305
+ msgid ""
306
+ "You need to activate your account. If you didn't receive an email then %s to "
307
+ "resend the activation email."
308
+ msgstr ""
309
+
310
+ #: classes/class.swpm-auth.php:146
311
+ #: classes/class.swpm-front-registration.php:376
312
+ #: classes/class.swpm-front-registration.php:426
313
+ #: classes/class.swpm-utils-misc.php:169
314
+ msgid "click here"
315
+ msgstr ""
316
 
317
+ #: classes/class.swpm-auth.php:170
318
  msgid "You are logged in as:"
319
  msgstr "Je bent ingelogd als:"
320
 
321
+ #: classes/class.swpm-auth.php:234
322
  msgid "Logged Out Successfully."
323
  msgstr "Je bent uitgelogd."
324
 
325
+ #: classes/class.swpm-auth.php:287
326
  msgid "Session Expired."
327
  msgstr "Sessie verlopen."
328
 
329
+ #: classes/class.swpm-auth.php:304
 
 
 
 
330
  msgid "Please login again."
331
  msgstr "Opnieuw inloggen alsjeblieft."
332
 
333
+ #: classes/class.swpm-category-list.php:19 classes/class.swpm-members.php:24
334
+ #: classes/class.swpm-membership-levels.php:11
335
+ #: classes/class.swpm-membership-levels.php:21
336
+ #: classes/class.swpm-post-list.php:20
337
+ #: classes/admin-includes/class.swpm-payments-list-table.php:85
338
+ #: views/add.php:40 views/admin_member_form_common_part.php:2 views/edit.php:75
339
+ #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:50
340
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:34
341
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:229
342
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:49
343
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:35
344
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:317
345
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:47
346
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:273
347
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:99
348
  msgid "Membership Level"
349
  msgstr "Lidmaatschap niveau"
350
 
351
+ #: classes/class.swpm-category-list.php:33
352
+ #, fuzzy
353
+ #| msgid "Category Protection"
354
+ msgid "Category ID"
355
+ msgstr "Categorie Afscherming"
356
 
357
  #: classes/class.swpm-category-list.php:34
358
+ #, fuzzy
359
+ #| msgid "Company Name"
360
+ msgid "Category Name"
361
+ msgstr "Bedrijfsnaam"
362
 
363
  #: classes/class.swpm-category-list.php:35
364
+ msgid "Category Type (Taxonomy)"
365
+ msgstr ""
366
+
367
+ #: classes/class.swpm-category-list.php:36
368
  msgid "Description"
369
  msgstr "Omschijving"
370
 
371
+ #: classes/class.swpm-category-list.php:37
372
  msgid "Count"
373
  msgstr "Aantal"
374
 
375
+ #: classes/class.swpm-category-list.php:92
376
  msgid "Category protection updated!"
377
  msgstr "Categorie afscherming bijgewerkt!"
378
 
379
+ #: classes/class.swpm-category-list.php:130
380
+ #, fuzzy
381
+ #| msgid "No items found."
382
+ msgid "No category found."
383
+ msgstr "Geen items gevonden."
384
+
385
+ #: classes/class.swpm-comment-form-related.php:15
386
+ #, fuzzy
387
+ #| msgid "Please login again."
388
+ msgid "Please login to comment."
389
+ msgstr "Opnieuw inloggen alsjeblieft."
390
+
391
+ #: classes/class.swpm-comment-form-related.php:40
392
+ #, fuzzy
393
+ #| msgid "Please login again."
394
+ msgid "Please Login to Comment."
395
+ msgstr "Opnieuw inloggen alsjeblieft."
396
+
397
+ #: classes/class.swpm-comment-form-related.php:79
398
+ #, fuzzy
399
+ #| msgid "You are not logged-in as a member"
400
+ msgid "Comments not allowed by a non-member."
401
+ msgstr "Je bent niet ingelogd als lid"
402
+
403
+ #: classes/class.swpm-form.php:30
404
  msgid ""
405
  "Wordpress account exists with given username. But given email doesn't match."
406
  msgstr ""
409
 
410
  #: classes/class.swpm-form.php:31
411
  msgid ""
412
+ " Use a different username to complete the registration. If you want to use "
413
+ "that username then you must enter the correct email address associated with "
414
+ "the existing WP user to connect with that account."
415
+ msgstr ""
416
+
417
+ #: classes/class.swpm-form.php:37
418
+ msgid ""
419
  "Wordpress account exists with given email. But given username doesn't match."
420
  msgstr ""
421
  "Wordpress account met email adres bestaat, Maar gebruikersnaam komt niet "
422
  "overeen."
423
 
424
+ #: classes/class.swpm-form.php:38
425
+ msgid ""
426
+ " Use a different email address to complete the registration. If you want to "
427
+ "use that email then you must enter the correct username associated with the "
428
+ "existing WP user to connect with that account."
429
+ msgstr ""
430
+
431
+ #: classes/class.swpm-form.php:48
432
  msgid "Username is required"
433
  msgstr "Gebruikersnaam is verplicht"
434
 
435
+ #: classes/class.swpm-form.php:52
436
  msgid "Username contains invalid character"
437
  msgstr "Gebruikersnaam bevat ongeldig teken"
438
 
439
+ #: classes/class.swpm-form.php:60
440
  msgid "Username already exists."
441
  msgstr "Gebruikersnaam bestaat al."
442
 
443
+ #: classes/class.swpm-form.php:83
444
  msgid "Password is required"
445
  msgstr "Wachtwoord is vereist"
446
 
447
+ #: classes/class.swpm-form.php:90
448
  msgid "Password mismatch"
449
  msgstr "Wachtwoorden komen niet overeen"
450
 
451
+ #: classes/class.swpm-form.php:101
452
  msgid "Email is required"
453
  msgstr "Email is vereist"
454
 
455
+ #: classes/class.swpm-form.php:105
456
  msgid "Email is invalid"
457
  msgstr "Email is niet geldig"
458
 
459
+ #: classes/class.swpm-form.php:121
460
  msgid "Email is already used."
461
  msgstr "Email is al in gebruik."
462
 
463
+ #: classes/class.swpm-form.php:179
464
  msgid "Member since field is invalid"
465
  msgstr "Lid sinds veld is ongeldig"
466
 
467
+ #: classes/class.swpm-form.php:190
468
  msgid "Access starts field is invalid"
469
  msgstr "Inschrijving start veld is ongeldig"
470
 
471
+ #: classes/class.swpm-form.php:200
472
  msgid "Gender field is invalid"
473
  msgstr "Geslacht veld is ongeldig"
474
 
475
+ #: classes/class.swpm-form.php:211
476
  msgid "Account state field is invalid"
477
  msgstr "Account status veld is ongeldig"
478
 
479
+ #: classes/class.swpm-form.php:218
480
  msgid "Invalid membership level"
481
  msgstr "Ongeldige lidmaatschap niveau"
482
 
483
+ #: classes/class.swpm-front-registration.php:33
484
+ msgid ""
485
+ "Error! Invalid Request. Could not find a match for the given security code "
486
+ "and the user ID."
487
+ msgstr ""
488
+
489
+ #: classes/class.swpm-front-registration.php:45
490
+ #: classes/class.swpm-utils-misc.php:274 views/login.php:36
491
+ msgid "Join Us"
492
+ msgstr "Meld je aan"
493
+
494
+ #: classes/class.swpm-front-registration.php:47
495
+ msgid ""
496
+ "Free membership is disabled on this site. Please make a payment from the "
497
+ msgstr ""
498
+
499
+ #: classes/class.swpm-front-registration.php:49
500
+ msgid " page to pay for a premium membership."
501
+ msgstr ""
502
+
503
+ #: classes/class.swpm-front-registration.php:51
504
+ msgid ""
505
+ "You will receive a unique link via email after the payment. You will be able "
506
+ "to use that link to complete the premium membership registration."
507
+ msgstr ""
508
+
509
+ #: classes/class.swpm-front-registration.php:79
510
  msgid "Security check: captcha validation failed."
511
  msgstr "Security check: captcha validatie mislukt."
512
 
513
+ #: classes/class.swpm-front-registration.php:89
514
+ msgid "You must accept the terms and conditions."
515
+ msgstr ""
516
+
517
+ #: classes/class.swpm-front-registration.php:100
518
+ msgid "You must agree to the privacy policy."
519
+ msgstr ""
520
+
521
+ #: classes/class.swpm-front-registration.php:140
522
+ msgid ""
523
+ "You need to confirm your email address. Please check your email and follow "
524
+ "instructions to complete your registration."
525
+ msgstr ""
526
+
527
+ #: classes/class.swpm-front-registration.php:145
528
  msgid "Registration Successful. "
529
  msgstr "Registratie gelukt. "
530
 
531
+ #: classes/class.swpm-front-registration.php:145
532
+ #: classes/class.swpm-utils-misc.php:273 classes/class.swpm-utils-misc.php:285
533
  msgid "Please"
534
  msgstr "Alsjeblieft"
535
 
536
+ #: classes/class.swpm-front-registration.php:145
537
+ #: classes/class.swpm-utils-misc.php:273 views/login.php:30
538
  msgid "Login"
539
  msgstr "Inloggen"
540
 
541
+ #: classes/class.swpm-front-registration.php:159
 
542
  msgid "Please correct the following"
543
  msgstr "Corrigeer alsjeblieft het volgende"
544
 
545
+ #: classes/class.swpm-front-registration.php:207
546
  msgid "Membership Level Couldn't be found."
547
  msgstr "Lidmaatschap niveau kon niet worden gevonden."
548
 
549
+ #: classes/class.swpm-front-registration.php:258
550
+ #, fuzzy
551
+ #| msgid "Sorry, Nonce verification failed."
552
+ msgid "Error! Nonce verification failed for front end profile edit."
553
+ msgstr "Sorry, Nonce verificatie mislukt."
554
+
555
+ #: classes/class.swpm-front-registration.php:266
556
  msgid "Profile updated successfully."
557
  msgstr "Profiel succesvol bijgewerkt."
558
 
559
+ #: classes/class.swpm-front-registration.php:275
560
  msgid ""
561
  "Profile updated successfully. You will need to re-login since you changed "
562
  "your password."
564
  "Profiel succesvol bijgewerkt. Je moet opnieuw inloggen omdat je wachtwoord "
565
  "veranderd is."
566
 
567
+ #: classes/class.swpm-front-registration.php:289
568
+ #, fuzzy
569
+ #| msgid "Please correct the following"
570
+ msgid "Please correct the following."
571
+ msgstr "Corrigeer het volgende:"
572
+
573
+ #: classes/class.swpm-front-registration.php:301
574
+ #, fuzzy
575
+ #| msgid "Security check: captcha validation failed."
576
+ msgid "Captcha validation failed."
577
+ msgstr "Security check: captcha validatie mislukt."
578
+
579
+ #: classes/class.swpm-front-registration.php:309
580
  msgid "Email address not valid."
581
  msgstr "Dit e-mailadres is ongeldig."
582
 
583
+ #: classes/class.swpm-front-registration.php:320
584
  msgid "No user found with that email address."
585
  msgstr "Geen gebruiker gevonden met dit e-mailadres."
586
 
587
+ #: classes/class.swpm-front-registration.php:321
588
+ #: classes/class.swpm-front-registration.php:350
589
  msgid "Email Address: "
590
  msgstr "E-mailadres: "
591
 
592
+ #: classes/class.swpm-front-registration.php:349
593
  msgid "New password has been sent to your email address."
594
  msgstr "Een nieuw wachtwoord is naar je email adres verzonden."
595
 
596
+ #: classes/class.swpm-front-registration.php:371
597
+ msgid "Can't find member account."
598
+ msgstr ""
599
+
600
+ #: classes/class.swpm-front-registration.php:376
601
+ #: classes/class.swpm-front-registration.php:426
602
+ #, fuzzy
603
+ #| msgid "Account is inactive."
604
+ msgid "Account already active. "
605
+ msgstr "Dit account is niet actief."
606
+
607
+ #: classes/class.swpm-front-registration.php:376
608
+ #: classes/class.swpm-front-registration.php:426
609
+ msgid " to login."
610
+ msgstr ""
611
+
612
+ #: classes/class.swpm-front-registration.php:383
613
+ msgid ""
614
+ "Activation code mismatch. Cannot activate this account. Please contact the "
615
+ "site admin."
616
+ msgstr ""
617
+
618
+ #: classes/class.swpm-front-registration.php:397
619
+ msgid "Success! Your account has been activated successfully."
620
+ msgstr ""
621
+
622
+ #: classes/class.swpm-front-registration.php:421
623
+ msgid "Cannot find member account."
624
+ msgstr ""
625
+
626
+ #: classes/class.swpm-front-registration.php:443
627
+ msgid ""
628
+ "Activation email has been sent. Please check your email and activate your "
629
+ "account."
630
+ msgstr ""
631
+
632
+ #: classes/class.swpm-init-time-tasks.php:118
633
  msgid "Sorry, Nonce verification failed."
634
  msgstr "Sorry, Nonce verificatie mislukt."
635
 
636
+ #: classes/class.swpm-init-time-tasks.php:125
637
  msgid "Sorry, Password didn't match."
638
  msgstr "Sorry, wachtwoord komt niet overeen."
639
 
640
+ #: classes/class.swpm-level-form.php:50
641
  msgid "Date format is not valid."
642
  msgstr "Datumnotatie is niet geldig."
643
 
644
+ #: classes/class.swpm-level-form.php:58
645
  msgid "Access duration must be > 0."
646
  msgstr "Duur van toegang moet groter zijn dan 0."
647
 
648
+ #: classes/class.swpm-members.php:10
 
 
 
 
 
 
 
649
  msgid "Member"
650
  msgstr "Lid"
651
 
652
+ #: classes/class.swpm-members.php:19
653
+ #: classes/class.swpm-membership-levels.php:20
654
+ msgid "ID"
655
+ msgstr "ID"
656
+
657
+ #: classes/class.swpm-members.php:20 views/add.php:16 views/admin_add.php:11
658
+ #: views/admin_edit.php:19 views/edit.php:23
659
+ #: includes/swpm_mda_show_profile.php:27
660
  msgid "Username"
661
  msgstr "Gebruikersnaam"
662
 
663
+ #: classes/class.swpm-members.php:21
664
+ #: classes/admin-includes/class.swpm-payments-list-table.php:78
665
+ #: views/add.php:32 views/admin_member_form_common_part.php:15
666
+ #: views/edit.php:39 includes/swpm_mda_show_profile.php:28
667
  msgid "First Name"
668
  msgstr "Voornaam"
669
 
670
+ #: classes/class.swpm-members.php:22
671
+ #: classes/admin-includes/class.swpm-payments-list-table.php:79
672
+ #: views/add.php:36 views/admin_member_form_common_part.php:19
673
+ #: views/edit.php:43 includes/swpm_mda_show_profile.php:29
674
  msgid "Last Name"
675
  msgstr "Achternaam"
676
 
677
+ #: classes/class.swpm-members.php:23 views/add.php:20 views/edit.php:27
678
+ #: includes/swpm_mda_show_profile.php:35
679
  msgid "Email"
680
  msgstr "Email adres"
681
 
682
+ #: classes/class.swpm-members.php:25 views/admin_member_form_common_part.php:11
683
  msgid "Access Starts"
684
  msgstr "Toegang begint"
685
 
686
+ #: classes/class.swpm-members.php:26 includes/swpm_mda_show_profile.php:31
687
  msgid "Account State"
688
  msgstr "Account status"
689
 
690
+ #: classes/class.swpm-members.php:27
691
+ msgid "Last Login Date"
692
+ msgstr ""
693
+
694
+ #: classes/class.swpm-members.php:46
695
+ #: classes/class.swpm-membership-levels.php:36
696
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:94
697
+ #: classes/admin-includes/class.swpm-payments-list-table.php:102
698
  msgid "Delete"
699
  msgstr "Verwijder"
700
 
701
+ #: classes/class.swpm-members.php:47
702
  msgid "Set Status to Active"
703
  msgstr "Status instellen op actief"
704
 
705
+ #: classes/class.swpm-members.php:48
706
+ #, fuzzy
707
+ #| msgid "Set Status to Active"
708
+ msgid "Set Status to Active and Notify"
709
+ msgstr "Status instellen op actief"
710
+
711
+ #: classes/class.swpm-members.php:49
712
  msgid "Set Status to Inactive"
713
  msgstr "Status instellen op niet-actief"
714
 
715
+ #: classes/class.swpm-members.php:50
716
  msgid "Set Status to Pending"
717
  msgstr "Status instellen op in afwachting"
718
 
719
+ #: classes/class.swpm-members.php:51
720
  msgid "Set Status to Expired"
721
  msgstr "Status instellen op verlopen"
722
 
723
+ #: classes/class.swpm-members.php:72
724
+ msgid "incomplete"
725
+ msgstr ""
726
 
727
+ #: classes/class.swpm-members.php:191
728
+ #, fuzzy
729
+ #| msgid "No Member found."
730
+ msgid "No member found."
731
+ msgstr "Geen leden gevonden."
732
 
733
+ #: classes/class.swpm-members.php:337
734
+ msgid "Error! Nonce verification failed for user delete from admin end."
735
+ msgstr ""
736
 
737
+ #: classes/class.swpm-members.php:406 classes/class.swpm-members.php:436
738
+ #, fuzzy
739
+ #| msgid "Create new membership level."
740
+ msgid "Error! Please select a membership level first."
741
+ msgstr "Maak een nieuw Lidmaatschap niveau."
742
 
743
+ #: classes/class.swpm-members.php:423
744
+ #, fuzzy
745
+ #| msgid "Membership Level Creation Successful."
746
+ msgid "Membership level change operation completed successfully."
747
+ msgstr "Lidmaatschap niveau met succes aangemaakt."
748
 
749
+ #: classes/class.swpm-members.php:453
750
+ msgid "Access starts date change operation successfully completed."
751
+ msgstr ""
752
 
753
+ #: classes/class.swpm-members.php:462
754
+ #, fuzzy
755
+ #| msgid "Edit Membership Level "
756
+ msgid "Bulk Update Membership Level of Members"
757
+ msgstr "Wijzig lidmaatschap niveau "
758
 
759
+ #: classes/class.swpm-members.php:465
760
+ msgid ""
761
+ "You can manually change the membership level of any member by editing the "
762
+ "record from the members menu. "
763
+ msgstr ""
764
 
765
+ #: classes/class.swpm-members.php:466
766
+ msgid ""
767
+ "You can use the following option to bulk update the membership level of "
768
+ "users who belong to the level you select below."
769
+ msgstr ""
770
 
771
+ #: classes/class.swpm-members.php:472 classes/class.swpm-members.php:520
772
+ #, fuzzy
773
+ #| msgid "Membership Level"
774
+ msgid "Membership Level: "
775
+ msgstr "Lidmaatschap niveau"
776
 
777
+ #: classes/class.swpm-members.php:476
778
+ msgid "Select Current Level"
779
+ msgstr ""
780
 
781
+ #: classes/class.swpm-members.php:479
782
+ msgid ""
783
+ "Select the current membership level (the membership level of all members who "
784
+ "are in this level will be updated)."
785
+ msgstr ""
786
 
787
+ #: classes/class.swpm-members.php:485
788
+ msgid "Level to Change to: "
789
+ msgstr ""
790
 
791
+ #: classes/class.swpm-members.php:489
792
+ #, fuzzy
793
+ #| msgid "Select Page"
794
+ msgid "Select Target Level"
795
+ msgstr "Selecteer pagina"
796
 
797
+ #: classes/class.swpm-members.php:492
798
+ #, fuzzy
799
+ #| msgid "Create new membership level."
800
+ msgid "Select the new membership level."
801
+ msgstr "Maak een nieuw Lidmaatschap niveau."
802
 
803
+ #: classes/class.swpm-members.php:498
804
+ #, fuzzy
805
+ #| msgid "Membership Level"
806
+ msgid "Bulk Change Membership Level"
807
+ msgstr "Lidmaatschap niveau"
808
 
809
+ #: classes/class.swpm-members.php:508
810
+ msgid "Bulk Update Access Starts Date of Members"
811
+ msgstr ""
812
 
813
+ #: classes/class.swpm-members.php:512
814
  msgid ""
815
+ "The access starts date of a member is set to the day the user registers. "
816
+ "This date value is used to calculate how long the member can access your "
817
+ "content that are protected with a duration type protection in the membership "
818
+ "level. "
819
  msgstr ""
 
 
 
820
 
821
+ #: classes/class.swpm-members.php:513
822
+ msgid ""
823
+ "You can manually set a specific access starts date value of all members who "
824
+ "belong to a particular level using the following option."
825
+ msgstr ""
 
 
826
 
827
+ #: classes/class.swpm-members.php:523
828
+ #, fuzzy
829
+ #| msgid "Select All"
830
+ msgid "Select Level"
831
+ msgstr "Alles Selecteren"
832
 
833
+ #: classes/class.swpm-members.php:526
834
  msgid ""
835
+ "Select the Membership level (the access start date of all members who are in "
836
+ "this level will be updated)."
 
837
  msgstr ""
 
 
838
 
839
+ #: classes/class.swpm-members.php:535
840
+ msgid "Specify the access starts date value."
841
+ msgstr ""
842
+
843
+ #: classes/class.swpm-members.php:541
844
+ #, fuzzy
845
+ #| msgid "Access Starts"
846
+ msgid "Bulk Change Access Starts Date"
847
+ msgstr "Toegang begint"
848
+
849
+ #: classes/class.swpm-members.php:576
850
+ msgid "Simple WP Membership::Members"
851
+ msgstr "Simple WP Membership::Leden"
852
+
853
+ #: classes/class.swpm-members.php:577
854
+ #: classes/class.swpm-membership-levels.php:226 views/admin_members_list.php:44
855
+ msgid "Add New"
856
+ msgstr "Nieuwe toevoegen"
857
+
858
+ #: classes/class.swpm-members.php:582 views/admin_add.php:6
859
+ msgid "Add Member"
860
+ msgstr "Lid toevoegen"
861
+
862
+ #: classes/class.swpm-members.php:583
863
+ #, fuzzy
864
+ #| msgid "Bulk Actions"
865
+ msgid "Bulk Operation"
866
+ msgstr "Bulk acties"
867
+
868
+ #: classes/class.swpm-membership-level.php:52
869
+ msgid ""
870
+ "Error! Nonce verification failed for membership level creation from admin "
871
+ "end."
872
+ msgstr ""
873
+
874
+ #: classes/class.swpm-membership-level.php:68
875
+ msgid "Membership Level Creation Successful."
876
+ msgstr "Lidmaatschap niveau met succes aangemaakt."
877
+
878
+ #: classes/class.swpm-membership-level.php:84
879
+ msgid ""
880
+ "Error! Nonce verification failed for membership level edit from admin end."
881
+ msgstr ""
882
+
883
+ #: classes/class.swpm-membership-level.php:100
884
+ #, fuzzy
885
+ #| msgid "Membership Level Creation Successful."
886
+ msgid "Membership Level Updated Successfully."
887
+ msgstr "Lidmaatschap niveau met succes aangemaakt."
888
+
889
+ #: classes/class.swpm-membership-levels.php:22
890
+ msgid "Role"
891
+ msgstr "Rol"
892
+
893
+ #: classes/class.swpm-membership-levels.php:23
894
+ msgid "Access Valid For/Until"
895
+ msgstr "Toegang geldig voor/tot"
896
+
897
+ #: classes/class.swpm-membership-levels.php:133
898
+ #, fuzzy
899
+ #| msgid "Edit membership level."
900
+ msgid "No membership levels found."
901
+ msgstr "Wijzig lidmaatschap niveau."
902
+
903
+ #: classes/class.swpm-membership-levels.php:197
904
+ msgid ""
905
+ "Error! Nonce verification failed for membership level delete from admin end."
906
+ msgstr ""
907
+
908
+ #: classes/class.swpm-membership-levels.php:216 views/admin_members_list.php:31
909
+ #: views/payments/admin_all_payment_transactions.php:16 views/template-1.php:53
910
+ #: views/template-2.php:54
911
+ msgid "Search"
912
+ msgstr "Zoeken"
913
+
914
+ #: classes/class.swpm-membership-levels.php:261
915
+ msgid "Simple WP Membership::Membership Levels"
916
+ msgstr "Simple WP Membership::Lidmaatschap niveaus"
917
+
918
+ #: classes/class.swpm-membership-levels.php:266
919
+ #, fuzzy
920
+ #| msgid "Add Member"
921
+ msgid "Add Level"
922
+ msgstr "Lid toevoegen"
923
+
924
+ #: classes/class.swpm-membership-levels.php:267
925
+ #, fuzzy
926
+ #| msgid "Manage Content Production"
927
+ msgid "Manage Content Protection"
928
+ msgstr "Beheer Inhoud Afscherming"
929
+
930
+ #: classes/class.swpm-membership-levels.php:268
931
+ msgid "Category Protection"
932
+ msgstr "Categorie Afscherming"
933
+
934
+ #: classes/class.swpm-membership-levels.php:269
935
+ #, fuzzy
936
+ #| msgid "Category Protection"
937
+ msgid "Post and Page Protection"
938
+ msgstr "Categorie Afscherming"
939
+
940
+ #: classes/class.swpm-post-list.php:43 classes/class.swpm-post-list.php:52
941
+ #: classes/class.swpm-post-list.php:62
942
+ #: classes/admin-includes/class.swpm-payments-list-table.php:81
943
+ msgid "Date"
944
+ msgstr "Datum"
945
+
946
+ #: classes/class.swpm-post-list.php:44 classes/class.swpm-post-list.php:53
947
+ #: classes/class.swpm-post-list.php:63
948
+ #, fuzzy
949
+ msgid "Title"
950
+ msgstr "Betaalknop titel"
951
+
952
+ #: classes/class.swpm-post-list.php:45 classes/class.swpm-post-list.php:54
953
+ #: classes/class.swpm-post-list.php:64
954
+ msgid "Author"
955
+ msgstr ""
956
+
957
+ #: classes/class.swpm-post-list.php:46 classes/class.swpm-post-list.php:56
958
+ #: classes/class.swpm-post-list.php:66
959
+ #, fuzzy
960
+ #| msgid "State"
961
+ msgid "Status"
962
+ msgstr "Status instellen op actief"
963
+
964
+ #: classes/class.swpm-post-list.php:55
965
+ msgid "Categories"
966
+ msgstr ""
967
+
968
+ #: classes/class.swpm-post-list.php:65
969
+ msgid "Type"
970
+ msgstr ""
971
+
972
+ #: classes/class.swpm-post-list.php:125
973
+ #, fuzzy
974
+ #| msgid "Settings updated!"
975
+ msgid "Protection settings updated!"
976
+ msgstr "Instellingen bijgewerkt!"
977
+
978
+ #: classes/class.swpm-post-list.php:230
979
+ msgid "No items found."
980
+ msgstr "Geen items gevonden."
981
+
982
+ #: classes/class.swpm-protection.php:22
983
+ msgid ""
984
+ "The category or parent category of this post is protected. You can change "
985
+ "the category protection settings from the "
986
+ msgstr ""
987
+
988
+ #: classes/class.swpm-protection.php:23
989
+ #, fuzzy
990
+ #| msgid "Category Protection"
991
+ msgid "category protection menu"
992
+ msgstr "Categorie Afscherming"
993
+
994
+ #: classes/class.swpm-settings.php:26 classes/class.swpm-settings.php:54
995
+ msgid "General Settings"
996
+ msgstr "Algemene instellingen"
997
+
998
+ #: classes/class.swpm-settings.php:27
999
+ msgid "Payment Settings"
1000
+ msgstr "Betaling instellingen"
1001
+
1002
+ #: classes/class.swpm-settings.php:28
1003
+ msgid "Email Settings"
1004
+ msgstr "E-mail instellingen"
1005
+
1006
+ #: classes/class.swpm-settings.php:29
1007
+ msgid "Tools"
1008
+ msgstr "Tools"
1009
+
1010
+ #: classes/class.swpm-settings.php:30 classes/class.swpm-settings.php:187
1011
+ msgid "Advanced Settings"
1012
+ msgstr "Geavanceerde instellingen"
1013
+
1014
+ #: classes/class.swpm-settings.php:31
1015
+ msgid "Addons Settings"
1016
+ msgstr "Addon Instellingen"
1017
+
1018
+ #: classes/class.swpm-settings.php:53
1019
+ msgid "Plugin Documentation"
1020
+ msgstr "Plugin Documentatie"
1021
+
1022
+ #: classes/class.swpm-settings.php:55
1023
+ msgid "Enable Free Membership"
1024
+ msgstr "Gratis Lidmaatschap Inschakelen"
1025
+
1026
+ #: classes/class.swpm-settings.php:56
1027
+ msgid ""
1028
+ "Enable/disable registration for free membership level. When you enable this "
1029
+ "option, make sure to specify a free membership level ID in the field below."
1030
+ msgstr ""
1031
+ "In-/uitschakelen registratie voor gratis lidmaatschap niveau. Als je deze "
1032
+ "optie inschakelt, zorg er dan voor dat je een gratis lidmaatschap niveau ID "
1033
+ "opgeeft in het veld hieronder."
1034
+
1035
+ #: classes/class.swpm-settings.php:57
1036
+ msgid "Free Membership Level ID"
1037
+ msgstr "Gratis Lidmaatschap Niveau ID"
1038
+
1039
+ #: classes/class.swpm-settings.php:58
1040
+ msgid "Assign free membership level ID"
1041
+ msgstr "Gratis lidmaatschap niveau ID toewijzen"
1042
+
1043
+ #: classes/class.swpm-settings.php:59
1044
+ msgid "Enable More Tag Protection"
1045
+ msgstr "Inschakelen Meer Tag Afscherming"
1046
+
1047
+ #: classes/class.swpm-settings.php:60
1048
+ msgid ""
1049
+ "Enables or disables \"more\" tag protection in the posts and pages. Anything "
1050
+ "after the More tag is protected. Anything before the more tag is teaser "
1051
+ "content."
1052
+ msgstr ""
1053
+ "Schakelt \"meer\" tag bescherming in berichten en pagina's. Alles wat na de "
1054
+ "Meer tag komt is afgeschermd. Alles voor de meer tag is teaser inhoud."
1055
+
1056
+ #: classes/class.swpm-settings.php:61
1057
+ msgid "Hide Adminbar"
1058
  msgstr "Verberg de adminbalk"
1059
 
1060
+ #: classes/class.swpm-settings.php:62
1061
+ #, fuzzy
1062
+ #| msgid ""
1063
+ #| "WordPress shows an admin toolbar to the logged in users of the site. "
1064
+ #| "Check this box if you want to hide that admin toolbar in the fronend of "
1065
+ #| "your site."
1066
  msgid ""
1067
  "WordPress shows an admin toolbar to the logged in users of the site. Check "
1068
+ "this if you want to hide that admin toolbar in the frontend of your site."
1069
  msgstr ""
1070
  "Wordpress toont aan ingelogde gebruikers een adminbalk. Vink dit hokje aan "
1071
  "als je de adminbalk in de frontend van je website wilt verbergen."
1072
 
1073
+ #: classes/class.swpm-settings.php:63
1074
+ msgid "Show Adminbar to Admin"
1075
+ msgstr ""
1076
+
1077
+ #: classes/class.swpm-settings.php:64
1078
+ msgid ""
1079
+ "Use this option if you want to show the admin toolbar to admin users only. "
1080
+ "The admin toolbar will be hidden for all other users."
1081
+ msgstr ""
1082
+
1083
+ #: classes/class.swpm-settings.php:65
1084
+ msgid "Disable Access to WP Dashboard"
1085
+ msgstr ""
1086
+
1087
+ #: classes/class.swpm-settings.php:66
1088
+ msgid ""
1089
+ "WordPress allows a standard wp user to be able to go to the wp-admin URL and "
1090
+ "access his profile from the wp dashbaord. Using this option will prevent any "
1091
+ "non admin users from going to the wp dashboard."
1092
+ msgstr ""
1093
+
1094
+ #: classes/class.swpm-settings.php:68 classes/class.swpm-settings.php:242
1095
  msgid "Default Account Status"
1096
  msgstr "Standaard Lidmaatschap Status"
1097
 
1098
+ #: classes/class.swpm-settings.php:71
1099
  msgid ""
1100
  "Select the default account status for newly registered users. If you want to "
1101
  "manually approve the members then you can set the status to \"Pending\"."
1104
  "gebruikers. Als je leden handmatig wilt goedkeuren, stel dan de status \"In "
1105
  "afwachting\" in."
1106
 
1107
+ #: classes/class.swpm-settings.php:73
1108
+ msgid "Members Must be Logged in to Comment"
 
 
 
 
 
 
 
 
 
 
 
 
1109
  msgstr ""
 
1110
 
1111
+ #: classes/class.swpm-settings.php:74
1112
+ #, fuzzy
1113
+ #| msgid "Enable this option if you want to do sandbox payment testing."
1114
+ msgid ""
1115
+ "Enable this option if you only want the members of the site to be able to "
1116
+ "post a comment."
1117
+ msgstr "Schakel deze optie in als je sandbox testbetalingen wilt uitvoeren."
1118
+
1119
+ #: classes/class.swpm-settings.php:83
1120
  msgid "Pages Settings"
1121
  msgstr "Pagina instellingen"
1122
 
1123
+ #: classes/class.swpm-settings.php:84
1124
  msgid "Login Page URL"
1125
  msgstr "Login pagina URL"
1126
 
1127
+ #: classes/class.swpm-settings.php:86
1128
  msgid "Registration Page URL"
1129
  msgstr "Registratie pagina URL"
1130
 
1131
+ #: classes/class.swpm-settings.php:88
1132
  msgid "Join Us Page URL"
1133
  msgstr "Aanmeld pagina URL"
1134
 
1135
+ #: classes/class.swpm-settings.php:90
1136
  msgid "Edit Profile Page URL"
1137
  msgstr "Wijzig Profiel pagina URL"
1138
 
1139
+ #: classes/class.swpm-settings.php:92
1140
  msgid "Password Reset Page URL"
1141
  msgstr "Wachtwoord Reset pagina URL"
1142
 
1143
+ #: classes/class.swpm-settings.php:95
1144
  msgid "Test & Debug Settings"
1145
  msgstr "Test & Debug instellingen"
1146
 
1147
+ #: classes/class.swpm-settings.php:97
1148
  msgid "Check this option to enable debug logging."
1149
  msgstr "Schakel deze optie in om debug logging aan te zetten."
1150
 
1151
+ #: classes/class.swpm-settings.php:98
1152
+ msgid ""
1153
+ " This can be useful when troubleshooting an issue. Turn it off and reset the "
1154
+ "log files after the troubleshooting is complete."
1155
+ msgstr ""
1156
+
1157
+ #: classes/class.swpm-settings.php:100
1158
+ msgid "View general debug log file by clicking "
1159
+ msgstr ""
1160
+
1161
+ #: classes/class.swpm-settings.php:100 classes/class.swpm-settings.php:101
1162
+ #: classes/class.swpm-settings.php:102
1163
+ #, fuzzy
1164
+ msgid "here"
1165
+ msgstr "Alle lidmaatschap knoppen die je hebt gemaakt staan hier."
1166
+
1167
+ #: classes/class.swpm-settings.php:101
1168
+ msgid "View login related debug log file by clicking "
1169
+ msgstr ""
1170
+
1171
+ #: classes/class.swpm-settings.php:102
1172
+ msgid "Reset debug log files by clicking "
1173
+ msgstr ""
1174
+
1175
+ #: classes/class.swpm-settings.php:103
1176
+ msgid "Enable Debug"
1177
+ msgstr ""
1178
+
1179
+ #: classes/class.swpm-settings.php:105
1180
  msgid "Enable Sandbox Testing"
1181
  msgstr "Sandbox Testen inschakelen"
1182
 
1183
+ #: classes/class.swpm-settings.php:106
1184
  msgid "Enable this option if you want to do sandbox payment testing."
1185
  msgstr "Schakel deze optie in als je sandbox testbetalingen wilt uitvoeren."
1186
 
1187
+ #: classes/class.swpm-settings.php:119
1188
+ #, fuzzy
1189
+ #| msgid "Email Settings"
1190
+ msgid "Email Settings Overview"
1191
+ msgstr "E-mail instellingen"
1192
 
1193
+ #: classes/class.swpm-settings.php:120
1194
  msgid "Email Misc. Settings"
1195
  msgstr "Diverse email instellingen"
1196
 
1197
+ #: classes/class.swpm-settings.php:122
1198
  msgid "From Email Address"
1199
  msgstr "E-mailadres afzender"
1200
 
1201
+ #: classes/class.swpm-settings.php:126
1202
  msgid "Email Settings (Prompt to Complete Registration )"
1203
  msgstr "Email instellingen (herinnering om registratie te voltooien)"
1204
 
1205
+ #: classes/class.swpm-settings.php:127 classes/class.swpm-settings.php:140
1206
+ #: classes/class.swpm-settings.php:158 classes/class.swpm-settings.php:163
1207
+ #: classes/class.swpm-settings.php:168 classes/class.swpm-settings.php:173
1208
  msgid "Email Subject"
1209
  msgstr "Email onderwerp"
1210
 
1211
+ #: classes/class.swpm-settings.php:129 classes/class.swpm-settings.php:142
1212
+ #: classes/class.swpm-settings.php:159 classes/class.swpm-settings.php:164
1213
+ #: classes/class.swpm-settings.php:169 classes/class.swpm-settings.php:174
1214
  msgid "Email Body"
1215
  msgstr "Email inhoud"
1216
 
1217
+ #: classes/class.swpm-settings.php:133
1218
+ msgid ""
1219
+ "Enter the email address where you want the admin notification email to be "
1220
+ "sent to."
1221
+ msgstr ""
1222
+ "Voer het e-mailadres in waar de beheerder notificatie e-mail naar toe moet "
1223
+ "worden verzonden."
1224
+
1225
+ #: classes/class.swpm-settings.php:134
1226
+ msgid ""
1227
+ " You can put multiple email addresses separated by comma (,) in the above "
1228
+ "field to send the notification to multiple email addresses."
1229
+ msgstr ""
1230
+
1231
+ #: classes/class.swpm-settings.php:136
1232
+ #, fuzzy
1233
+ #| msgid ""
1234
+ #| "Enter the email address where you want the admin notification email to be "
1235
+ #| "sent to."
1236
+ msgid "Enter the subject for the admin notification email."
1237
+ msgstr ""
1238
+ "Voer het e-mailadres in waar de beheerder notificatie e-mail naar toe moet "
1239
+ "worden verzonden."
1240
+
1241
+ #: classes/class.swpm-settings.php:137
1242
+ msgid ""
1243
+ "This email will be sent to the admin when a new user completes the "
1244
+ "membership registration. Only works if you have enabled the \"Send "
1245
+ "Notification to Admin\" option above."
1246
+ msgstr ""
1247
+
1248
+ #: classes/class.swpm-settings.php:139
1249
  msgid "Email Settings (Registration Complete)"
1250
  msgstr "Email instellingen (Registratie voltooid)"
1251
 
1252
+ #: classes/class.swpm-settings.php:144
1253
  msgid "Send Notification to Admin"
1254
  msgstr "Stuur een bericht naar de beheerder"
1255
 
1256
+ #: classes/class.swpm-settings.php:145
1257
  msgid ""
1258
  "Enable this option if you want the admin to receive a notification when a "
1259
  "member registers."
1261
  "Schakel deze optie om de beheerder een melding te laten ontvangen wanneer "
1262
  "een lid registreert."
1263
 
1264
+ #: classes/class.swpm-settings.php:146
1265
  msgid "Admin Email Address"
1266
  msgstr "Beheerder Emailadres"
1267
 
1268
+ #: classes/class.swpm-settings.php:148
1269
+ msgid "Admin Notification Email Subject"
 
 
1270
  msgstr ""
 
 
1271
 
1272
+ #: classes/class.swpm-settings.php:150
1273
+ #, fuzzy
1274
+ #| msgid "Send Notification to Admin"
1275
+ msgid "Admin Notification Email Body"
1276
+ msgstr "Stuur een bericht naar de beheerder"
1277
+
1278
+ #: classes/class.swpm-settings.php:153
1279
  msgid "Send Email to Member When Added via Admin Dashboard"
1280
  msgstr ""
1281
  "E-mail verzenden naar lid wanneer deze via Admin Dashboard is toegevoegd"
1282
 
1283
+ #: classes/class.swpm-settings.php:157
1284
  msgid "Email Settings (Password Reset)"
1285
  msgstr "E-mail Instellingen (Wachtwoord herstel)"
1286
 
1287
+ #: classes/class.swpm-settings.php:162
1288
  msgid " Email Settings (Account Upgrade Notification)"
1289
  msgstr " Email instellingen (Bericht Account Upgrade)"
1290
 
1291
+ #: classes/class.swpm-settings.php:167
1292
+ #, fuzzy
1293
+ #| msgid " Email Settings (Account Upgrade Notification)"
1294
+ msgid " Email Settings (Bulk Account Activate Notification)"
1295
+ msgstr " Email instellingen (Bericht Account Upgrade)"
1296
+
1297
+ #: classes/class.swpm-settings.php:172
1298
+ #, fuzzy
1299
+ #| msgid " Email Settings (Account Upgrade Notification)"
1300
+ msgid " Email Settings (Email Activation)"
1301
+ msgstr " Email instellingen (Bericht Account Upgrade)"
1302
+
1303
+ #: classes/class.swpm-settings.php:189
1304
  msgid "Enable Expired Account Login"
1305
  msgstr "Verlopen account kan inloggen"
1306
 
1307
+ #: classes/class.swpm-settings.php:190
1308
  msgid ""
1309
  "When enabled, expired members will be able to log into the system but won't "
1310
  "be able to view any protected content. This allows them to easily renew "
1311
  "their account by making another payment."
1312
  msgstr ""
1313
+ "Wanneer ingeschakeld, kunnen leden met een verlopen account wel inloggen op "
1314
+ "het systeem, maar geen afgeschermde inhoud zien. Hierdoor kunnen ze "
1315
+ "gemakkelijk hun account vernieuwen door een betaling te maken."
1316
+
1317
+ #: classes/class.swpm-settings.php:192
1318
+ #, fuzzy
1319
+ #| msgid "Membership Level"
1320
+ msgid "Membership Renewal URL"
1321
+ msgstr "Lidmaatschap niveau"
1322
+
1323
+ #: classes/class.swpm-settings.php:193
1324
+ msgid ""
1325
+ "You can create a renewal page for your site. Read <a href=\"https://simple-"
1326
+ "membership-plugin.com/creating-membership-renewal-button/\" target=\"_blank"
1327
+ "\">this documentation</a> to learn how to create a renewal page."
1328
+ msgstr ""
1329
+
1330
+ #: classes/class.swpm-settings.php:195
1331
+ #, fuzzy
1332
+ #| msgid "Registration Page URL"
1333
+ msgid "After Registration Redirect URL"
1334
+ msgstr "Registratie pagina URL"
1335
+
1336
+ #: classes/class.swpm-settings.php:196
1337
+ msgid ""
1338
+ "You can enter an URL here to redirect the members to this page after they "
1339
+ "submit the registration form. Read <a href=\"https://simple-membership-"
1340
+ "plugin.com/configure-after-registration-redirect-for-members/\" target="
1341
+ "\"_blank\">this documentation</a> to learn how to setup after registration "
1342
+ "redirect."
1343
+ msgstr ""
1344
+
1345
+ #: classes/class.swpm-settings.php:198
1346
+ msgid "Enable Auto Login After Registration"
1347
+ msgstr ""
1348
+
1349
+ #: classes/class.swpm-settings.php:199
1350
+ msgid ""
1351
+ "Use this option if you want the members to be automatically logged into your "
1352
+ "site right after they complete the registration. This option will override "
1353
+ "any after registration redirection and instead it will trigger the after "
1354
+ "login redirection. Read <a href=\"https://simple-membership-plugin.com/"
1355
+ "configure-auto-login-after-registration-members/\" target=\"_blank\">this "
1356
+ "documentation</a> to learn more."
1357
+ msgstr ""
1358
+
1359
+ #: classes/class.swpm-settings.php:201
1360
+ msgid "After Logout Redirect URL"
1361
+ msgstr ""
1362
+
1363
+ #: classes/class.swpm-settings.php:202
1364
+ msgid ""
1365
+ "You can enter an URL here to redirect the members to this page after they "
1366
+ "click the logout link to logout from your site."
1367
+ msgstr ""
1368
+
1369
+ #: classes/class.swpm-settings.php:204
1370
+ msgid "Logout Member on Browser Close"
1371
+ msgstr ""
1372
+
1373
+ #: classes/class.swpm-settings.php:205
1374
+ #, fuzzy
1375
+ #| msgid ""
1376
+ #| "Enable this option if you want the admin to receive a notification when a "
1377
+ #| "member registers."
1378
+ msgid ""
1379
+ "Enable this option if you want the member to be logged out of the account "
1380
+ "when he closes the browser."
1381
+ msgstr ""
1382
+ "Schakel deze optie om de beheerder een melding te laten ontvangen wanneer "
1383
+ "een lid registreert."
1384
+
1385
+ #: classes/class.swpm-settings.php:207
1386
+ msgid "Allow Account Deletion"
1387
+ msgstr "Lidmaatschap verwijderen toestaan"
1388
+
1389
+ #: classes/class.swpm-settings.php:208
1390
+ msgid "Allow users to delete their accounts."
1391
+ msgstr "Toestaan dat gebruikers hun lidmaatschap kunnen verwijderen."
1392
+
1393
+ #: classes/class.swpm-settings.php:210
1394
+ msgid "Force Strong Password for Members"
1395
+ msgstr ""
1396
+
1397
+ #: classes/class.swpm-settings.php:211
1398
+ msgid ""
1399
+ "Enable this if you want the users to be forced to use a strong password for "
1400
+ "their accounts."
1401
+ msgstr ""
1402
+
1403
+ #: classes/class.swpm-settings.php:213
1404
+ #, fuzzy
1405
+ #| msgid "Default WordPress Role"
1406
+ msgid "Use WordPress Timezone"
1407
+ msgstr "Standaard WordPress Rol"
1408
+
1409
+ #: classes/class.swpm-settings.php:214
1410
+ msgid ""
1411
+ "Use this option if you want to use the timezone value specified in your "
1412
+ "WordPress General Settings interface."
1413
+ msgstr ""
1414
+
1415
+ #: classes/class.swpm-settings.php:216
1416
+ msgid "Auto Delete Pending Account"
1417
+ msgstr "Automatisch verwijderen account in afwachting"
1418
+
1419
+ #: classes/class.swpm-settings.php:219
1420
+ msgid "Select how long you want to keep \"pending\" account."
1421
+ msgstr ""
1422
+ "Selecteer hoe lang je een lidmaatschap \"in afwachting\" wilt aanhouden."
1423
+
1424
+ #: classes/class.swpm-settings.php:221
1425
+ msgid "Admin Dashboard Access Permission"
1426
+ msgstr ""
1427
+
1428
+ #: classes/class.swpm-settings.php:224
1429
+ msgid ""
1430
+ "SWPM admin dashboard is accessible to admin users only (just like any other "
1431
+ "plugin). You can allow users with other WP user role to access the SWPM "
1432
+ "admin dashboard by selecting a value here. Note that this option cannot work "
1433
+ "if you enabled the \"Disable Access to WP Dashboard\" option in General "
1434
+ "Settings."
1435
+ msgstr ""
1436
+
1437
+ #: classes/class.swpm-settings.php:226
1438
+ msgid "Force WP User Synchronization"
1439
+ msgstr ""
1440
+
1441
+ #: classes/class.swpm-settings.php:227
1442
+ msgid ""
1443
+ "Enable this option if you want to force the member login to be synchronized "
1444
+ "with WP user account. This can be useful if you are using another plugin "
1445
+ "that uses WP user records. For example: bbPress plugin."
1446
+ msgstr ""
1447
+
1448
+ #: classes/class.swpm-settings.php:230
1449
+ msgid "Create Member Accounts for New WP Users"
1450
+ msgstr ""
1451
+
1452
+ #: classes/class.swpm-settings.php:232
1453
+ #, fuzzy
1454
+ #| msgid "Enable Free Membership"
1455
+ msgid "Enable Auto Create Member Accounts"
1456
+ msgstr "Gratis Lidmaatschap Inschakelen"
1457
+
1458
+ #: classes/class.swpm-settings.php:233
1459
+ msgid ""
1460
+ "Enable this option to automatically create member accounts for any new WP "
1461
+ "user that is created by another plugin."
1462
+ msgstr ""
1463
+
1464
+ #: classes/class.swpm-settings.php:236
1465
+ #, fuzzy
1466
+ #| msgid "Membership Level"
1467
+ msgid "Default Membership Level"
1468
+ msgstr "Lidmaatschap niveau"
1469
+
1470
+ #: classes/class.swpm-settings.php:239
1471
+ msgid ""
1472
+ "When automatically creating a member account using this feature, the "
1473
+ "membership level of the user will be set to the one you specify here."
1474
+ msgstr ""
1475
+
1476
+ #: classes/class.swpm-settings.php:245
1477
+ msgid ""
1478
+ "When automatically creating a member account using this feature, the "
1479
+ "membership account status of the user will be set to the one you specify "
1480
+ "here."
1481
+ msgstr ""
1482
+
1483
+ #: classes/class.swpm-settings.php:247
1484
+ #, fuzzy
1485
+ #| msgid "Send Notification to Admin"
1486
+ msgid "Payment Notification Forward URL"
1487
+ msgstr "Stuur een bericht naar de beheerder"
1488
+
1489
+ #: classes/class.swpm-settings.php:248
1490
+ msgid ""
1491
+ "You can enter an URL here to forward the payment notification after the "
1492
+ "membership payment has been processed by this plugin. Useful if you want to "
1493
+ "forward the payment notification to an external script for further "
1494
+ "processing."
1495
+ msgstr ""
1496
+
1497
+ #: classes/class.swpm-settings.php:251 views/add.php:65
1498
+ msgid "Terms and Conditions"
1499
+ msgstr ""
1500
+
1501
+ #: classes/class.swpm-settings.php:253
1502
+ #, fuzzy
1503
+ #| msgid "Enable More Tag Protection"
1504
+ msgid "Enable Terms and Conditions"
1505
+ msgstr "Inschakelen Meer Tag Afscherming"
1506
+
1507
+ #: classes/class.swpm-settings.php:254
1508
+ msgid "Users must accept the terms before they can complete the registration."
1509
+ msgstr ""
1510
+
1511
+ #: classes/class.swpm-settings.php:255
1512
+ #, fuzzy
1513
+ #| msgid "Registration Page URL"
1514
+ msgid "Terms and Conditions Page URL"
1515
+ msgstr "Registratie pagina URL"
1516
+
1517
+ #: classes/class.swpm-settings.php:256
1518
+ msgid ""
1519
+ "Enter the URL of your terms and conditions page. You can create a WordPress "
1520
+ "page and specify your terms in there then specify the URL of that page in "
1521
+ "the above field."
1522
+ msgstr ""
1523
+
1524
+ #: classes/class.swpm-settings.php:257
1525
+ msgid "Enable Privacy Policy"
1526
+ msgstr ""
1527
+
1528
+ #: classes/class.swpm-settings.php:258
1529
+ #, fuzzy
1530
+ #| msgid "Click on the following link to complete the registration."
1531
+ msgid "Users must accept it before they can complete the registration."
1532
+ msgstr "Klik op de volgende link om je inschrijving te voltooien."
1533
+
1534
+ #: classes/class.swpm-settings.php:259
1535
+ #, fuzzy
1536
+ #| msgid "Edit Profile Page URL"
1537
+ msgid "Privacy Policy Page URL"
1538
+ msgstr "Wijzig Profiel pagina URL"
1539
+
1540
+ #: classes/class.swpm-settings.php:260
1541
+ msgid "Enter the URL of your privacy policy page."
1542
+ msgstr ""
1543
+
1544
+ #: classes/class.swpm-settings.php:350 classes/class.swpm-settings.php:396
1545
+ #: classes/class.swpm-settings.php:425
1546
+ msgid "Settings updated!"
1547
+ msgstr "Instellingen bijgewerkt!"
1548
+
1549
+ #: classes/class.swpm-settings.php:355
1550
+ #, fuzzy
1551
+ #| msgid "General Settings"
1552
+ msgid "General Plugin Settings."
1553
+ msgstr "Algemene instellingen"
1554
+
1555
+ #: classes/class.swpm-settings.php:359
1556
+ msgid "Page Setup and URL Related settings."
1557
+ msgstr ""
1558
+
1559
+ #: classes/class.swpm-settings.php:362
1560
+ msgid ""
1561
+ "The following pages are required for the plugin to function correctly. These "
1562
+ "pages were automatically created by the plugin at install time."
1563
+ msgstr ""
1564
+
1565
+ #: classes/class.swpm-settings.php:367
1566
+ #, fuzzy
1567
+ #| msgid "Test & Debug Settings"
1568
+ msgid "Testing and Debug Related Settings."
1569
+ msgstr "Test & Debug instellingen"
1570
+
1571
+ #: classes/class.swpm-settings.php:371
1572
+ msgid ""
1573
+ "This email will be sent to your users when they complete the registration "
1574
+ "and become a member."
1575
+ msgstr ""
1576
+
1577
+ #: classes/class.swpm-settings.php:375
1578
+ msgid ""
1579
+ "This email will be sent to your users when they use the password reset "
1580
+ "functionality."
1581
+ msgstr ""
1582
+
1583
+ #: classes/class.swpm-settings.php:381
1584
+ msgid ""
1585
+ "This interface lets you custsomize the various emails that gets sent to your "
1586
+ "members for various actions. The default settings should be good to get your "
1587
+ "started."
1588
+ msgstr ""
1589
+
1590
+ #: classes/class.swpm-settings.php:385 views/admin_tools_settings.php:82
1591
+ #, fuzzy
1592
+ #| msgid "Plugin Documentation"
1593
+ msgid "This documentation"
1594
+ msgstr "Plugin Documentatie"
1595
+
1596
+ #: classes/class.swpm-settings.php:386
1597
+ msgid ""
1598
+ " explains what email merge tags you can use in the email body field to "
1599
+ "customize it (if you want to)."
1600
+ msgstr ""
1601
+
1602
+ #: classes/class.swpm-settings.php:399
1603
+ msgid "Settings in this section apply to all emails."
1604
+ msgstr ""
1605
+
1606
+ #: classes/class.swpm-settings.php:403
1607
+ msgid ""
1608
+ "This email will be sent to your users after account upgrade (when an "
1609
+ "existing member pays for a new membership level)."
1610
+ msgstr ""
1611
+
1612
+ #: classes/class.swpm-settings.php:407
1613
+ msgid ""
1614
+ "This email will be sent to your members when you use the bulk account "
1615
+ "activate and notify action."
1616
+ msgstr ""
1617
+
1618
+ #: classes/class.swpm-settings.php:408
1619
+ msgid ""
1620
+ " You cannot use email merge tags in this email. You can only use generic "
1621
+ "text."
1622
+ msgstr ""
1623
+
1624
+ #: classes/class.swpm-settings.php:413
1625
+ msgid ""
1626
+ "This email will be sent if Email Activation is enabled for a Membership "
1627
+ "Level."
1628
+ msgstr ""
1629
+
1630
+ #: classes/class.swpm-settings.php:417
1631
+ msgid ""
1632
+ "This email will be sent to prompt users to complete registration after the "
1633
+ "payment."
1634
+ msgstr ""
1635
+
1636
+ #: classes/class.swpm-settings.php:428
1637
+ msgid "This page allows you to configure some advanced features of the plugin."
1638
+ msgstr ""
1639
+
1640
+ #: classes/class.swpm-settings.php:432
1641
+ msgid ""
1642
+ "This section allows you to configure automatic creation of member accounts "
1643
+ "when new WP User records are created by another plugin. It can be useful if "
1644
+ "you are using another plugin that creates WP user records and you want them "
1645
+ "to be recognized in the membership plugin."
1646
+ msgstr ""
1647
+
1648
+ #: classes/class.swpm-settings.php:436
1649
+ msgid ""
1650
+ "This section allows you to configure terms and conditions and privacy policy "
1651
+ "that users must accept at registration time."
1652
+ msgstr ""
1653
+
1654
+ #: classes/class.swpm-settings.php:565
1655
+ msgid "Simple WP Membership::Settings"
1656
+ msgstr "Simple WP Membership::Instellingen"
1657
+
1658
+ #: classes/class.swpm-utils-member.php:36
1659
+ #: classes/class.swpm-utils-member.php:44
1660
+ #: classes/class.swpm-utils-member.php:52
1661
+ #: classes/class.swpm-utils-member.php:62
1662
+ msgid "User is not logged in."
1663
+ msgstr "Gebruiker is niet ingelogd."
1664
+
1665
+ #: classes/class.swpm-utils-member.php:80
1666
+ #, fuzzy
1667
+ #| msgid "Expiry: "
1668
+ msgid "No Expiry"
1669
+ msgstr "Vervaldatum: "
1670
+
1671
+ #: classes/class.swpm-utils-misc.php:50
1672
+ msgid "Registration"
1673
+ msgstr "Registratie"
1674
+
1675
+ #: classes/class.swpm-utils-misc.php:73
1676
+ msgid "Member Login"
1677
+ msgstr "Leden login"
1678
+
1679
+ #: classes/class.swpm-utils-misc.php:96
1680
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:117
1681
+ msgid "Profile"
1682
+ msgstr "Profiel"
1683
+
1684
+ #: classes/class.swpm-utils-misc.php:119
1685
+ msgid "Password Reset"
1686
+ msgstr "Wachtwoord herstel"
1687
+
1688
+ #: classes/class.swpm-utils-misc.php:168
1689
+ #, php-format
1690
+ msgid ""
1691
+ "You will be automatically redirected in a few seconds. If not, please %s."
1692
+ msgstr ""
1693
+
1694
+ #: classes/class.swpm-utils-misc.php:172
1695
+ #, fuzzy
1696
+ #| msgid "Account Status"
1697
+ msgid "Action Status"
1698
+ msgstr "Account Status"
1699
 
1700
+ #: classes/class.swpm-utils-misc.php:274
1701
  msgid "Not a Member?"
1702
  msgstr "Nog geen lid?"
1703
 
1704
+ #: classes/class.swpm-utils-misc.php:285
1705
+ msgid "renew"
1706
+ msgstr ""
1707
+
1708
+ #: classes/class.swpm-utils-misc.php:285
1709
+ #, fuzzy
1710
+ #| msgid ""
1711
+ #| "Your account has expired. Please renew your account to gain access to "
1712
+ #| "this content."
1713
+ msgid " your account to gain access to this content."
1714
+ msgstr ""
1715
+ "Je account is verlopen. Vernieuw je account om toegang tot deze inhoud te "
1716
+ "krijgen."
1717
+
1718
+ #: classes/class.swpm-utils-misc.php:343 classes/class.swpm-utils-misc.php:349
1719
+ msgid "Error! This action ("
1720
+ msgstr ""
1721
 
1722
+ #: classes/class.swpm-utils-misc.php:421
1723
+ msgid "(Please Select)"
1724
+ msgstr "(Maak een keuze)"
1725
+
1726
+ #: classes/class.swpm-utils-template.php:38
1727
+ msgid "Error! Failed to find a template path for the specified template: "
1728
+ msgstr ""
1729
+
1730
+ #: classes/class.swpm-utils.php:101
1731
+ msgid "Never"
1732
+ msgstr "Nooit"
1733
+
1734
+ #: classes/class.swpm-utils.php:116 views/admin_members_list.php:19
1735
  msgid "Active"
1736
  msgstr "Actief"
1737
 
1738
+ #: classes/class.swpm-utils.php:117 views/admin_members_list.php:20
1739
  msgid "Inactive"
1740
  msgstr "Niet Actief"
1741
 
1742
+ #: classes/class.swpm-utils.php:118 views/admin_members_list.php:21
1743
+ msgid "Activation Required"
1744
+ msgstr ""
1745
+
1746
+ #: classes/class.swpm-utils.php:119
1747
+ msgid "Male"
1748
+ msgstr ""
1749
+
1750
+ #: classes/class.swpm-utils.php:120
1751
+ msgid "Female"
1752
+ msgstr ""
1753
+
1754
+ #: classes/class.swpm-utils.php:121
1755
+ msgid "Not Specified"
1756
+ msgstr ""
1757
+
1758
+ #: classes/class.swpm-utils.php:119 views/admin_members_list.php:22
1759
  msgid "Pending"
1760
  msgstr "In behandeling"
1761
 
1762
+ #: classes/class.swpm-utils.php:120 views/admin_members_list.php:24
1763
  msgid "Expired"
1764
  msgstr "Verlopen"
1765
 
1766
+ #: classes/class.swpm-utils.php:414 views/account_delete_warning.php:3
 
 
 
 
1767
  msgid "Delete Account"
1768
  msgstr "Verwijder Account"
1769
 
1770
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:75
1771
  msgid "Payment Button ID"
1772
  msgstr "Betaalknop ID"
1773
 
1774
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:76
1775
  msgid "Payment Button Title"
1776
  msgstr "Betaalknop titel"
1777
 
1778
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:77
1779
  msgid "Membership Level ID"
1780
  msgstr "Lidmaatschap niveau ID"
1781
 
1782
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:78
1783
+ #, fuzzy
1784
+ #| msgid "Button Title"
1785
+ msgid "Button Type"
1786
+ msgstr "Knop titel"
1787
+
1788
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:79
1789
  msgid "Button Shortcode"
1790
  msgstr "Knop Shortcode"
1791
 
1792
+ #: classes/admin-includes/class.swpm-payment-buttons-list-table.php:127
1793
+ #: views/admin_members_list.php:9
1794
+ #: views/payments/admin_all_payment_transactions.php:32
1795
  msgid "The selected entry was deleted!"
1796
  msgstr "Het geselecteerde item is verwijderd!"
1797
 
1798
+ #: classes/admin-includes/class.swpm-payments-admin-menu.php:21
1799
+ msgid "Simple Membership::Payments"
1800
+ msgstr "Simple WP Membership::Betalingen"
1801
+
1802
+ #: classes/admin-includes/class.swpm-payments-admin-menu.php:25
1803
+ #, fuzzy
1804
+ #| msgid "Transaction ID"
1805
+ msgid "Transactions"
1806
+ msgstr "Transactie ID"
1807
+
1808
+ #: classes/admin-includes/class.swpm-payments-admin-menu.php:26
1809
+ #, fuzzy
1810
+ #| msgid "Payment Button ID"
1811
+ msgid "Manage Payment Buttons"
1812
+ msgstr "Betaalknop ID"
1813
+
1814
+ #: classes/admin-includes/class.swpm-payments-admin-menu.php:27
1815
+ #: views/payments/admin_payment_buttons.php:27
1816
+ msgid "Create New Button"
1817
+ msgstr ""
1818
+
1819
+ #: classes/admin-includes/class.swpm-payments-list-table.php:57
1820
+ #: views/template-1.php:95 views/template-2.php:97
1821
  msgid "View Profile"
1822
  msgstr "Bekijk Profiel"
1823
 
1824
+ #: classes/admin-includes/class.swpm-payments-list-table.php:76
1825
  msgid "Row ID"
1826
  msgstr "Rij ID"
1827
 
1828
+ #: classes/admin-includes/class.swpm-payments-list-table.php:77
1829
  #: views/forgot_password.php:5
1830
  msgid "Email Address"
1831
  msgstr "Email Adres"
1832
 
1833
+ #: classes/admin-includes/class.swpm-payments-list-table.php:80
1834
  msgid "Member Profile"
1835
  msgstr "Profiel Lid"
1836
 
1837
+ #: classes/admin-includes/class.swpm-payments-list-table.php:82
 
 
 
 
1838
  msgid "Transaction ID"
1839
  msgstr "Transactie ID"
1840
 
1841
+ #: classes/admin-includes/class.swpm-payments-list-table.php:83
1842
+ #, fuzzy
1843
+ #| msgid "Subscribe Now"
1844
+ msgid "Subscriber ID"
1845
+ msgstr "Nu inschrijven"
1846
+
1847
+ #: classes/admin-includes/class.swpm-payments-list-table.php:84
1848
  msgid "Amount"
1849
  msgstr "Bedrag"
1850
 
1851
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:60
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1852
  msgid "Your membership profile will be updated to reflect the payment."
1853
  msgstr "Je lidmaatschap profiel wordt bijgewerkt met deze betaling."
1854
 
1855
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:61
1856
  msgid "Your profile username: "
1857
  msgstr "Je gebruikersnaam: "
1858
 
1859
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:73
1860
  msgid "Click on the following link to complete the registration."
1861
  msgstr "Klik op de volgende link om je inschrijving te voltooien."
1862
 
1863
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:74
1864
  msgid "Click here to complete your paid registration"
1865
  msgstr "Klik hier om je betaalde inschrijving te voltooien"
1866
 
1867
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:79
1868
  msgid ""
1869
  "If you have just made a membership payment then your payment is yet to be "
1870
  "processed. Please check back in a few minutes. An email will be sent to you "
1874
  "worden verwerkt. probeer het over een paar minuten nog eens. Je ontvangt "
1875
  "binnenkort ook een e-mail met de details."
1876
 
1877
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:93
1878
  msgid "Expiry: "
1879
  msgstr "Vervaldatum: "
1880
 
1881
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:95
1882
  msgid "You are not logged-in as a member"
1883
  msgstr "Je bent niet ingelogd als lid"
1884
 
1885
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:115
1886
+ #, fuzzy
1887
+ #| msgid "Logged in as"
1888
+ msgid "Logged in as: "
1889
+ msgstr "Ingelogd als"
1890
+
1891
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:118
1892
+ #: views/loggedin.php:31
1893
+ msgid "Logout"
1894
+ msgstr "Uitloggen"
1895
+
1896
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:121
1897
+ #, fuzzy
1898
+ #| msgid "Login"
1899
+ msgid "Login Here"
1900
+ msgstr "Inloggen"
1901
+
1902
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:122
1903
+ #, fuzzy
1904
+ #| msgid "Not a Member?"
1905
+ msgid "Not a member? "
1906
+ msgstr "Nog geen lid?"
1907
+
1908
+ #: classes/shortcode-related/class.swpm-shortcodes-handler.php:123
1909
+ #, fuzzy
1910
+ #| msgid "Join Us"
1911
+ msgid "Join Now"
1912
+ msgstr "Meld je aan"
1913
+
1914
+ #: ipn/swpm-smart-checkout-ipn.php:260 ipn/swpm-smart-checkout-ipn.php:285
1915
+ #, php-format
1916
+ msgid "Error occured during payment verification. Error code: %d. Message: %s"
1917
+ msgstr ""
1918
+
1919
+ #: ipn/swpm-smart-checkout-ipn.php:298
1920
+ #, php-format
1921
+ msgid ""
1922
+ "Payment check failed: invalid amount received. Expected %s %s, got %s %s."
1923
+ msgstr ""
1924
+
1925
+ #: ipn/swpm-smart-checkout-ipn.php:315
1926
+ msgid "Empty payment data received."
1927
+ msgstr ""
1928
+
1929
+ #: ipn/swpm-smart-checkout-ipn.php:355
1930
+ msgid "IPN product validation failed. Check debug log for more details."
1931
+ msgstr ""
1932
+
1933
+ #: views/account_delete_warning.php:7
1934
+ msgid ""
1935
+ "You are about to delete an account. This will delete user data associated "
1936
+ "with this account. "
1937
+ msgstr ""
1938
+
1939
+ #: views/account_delete_warning.php:8
1940
+ msgid "It will also delete associated WordPress user account."
1941
+ msgstr ""
1942
+
1943
+ #: views/account_delete_warning.php:9
1944
+ msgid ""
1945
+ "(NOTE: for safety, we do not allow deletion of any associated WordPress "
1946
+ "account with administrator role)."
1947
+ msgstr ""
1948
+
1949
+ #: views/account_delete_warning.php:10
1950
+ msgid "Continue?"
1951
+ msgstr ""
1952
+
1953
+ #: views/account_delete_warning.php:13
1954
+ #, fuzzy
1955
+ #| msgid "Password"
1956
+ msgid "Password: "
1957
+ msgstr "Wachtwoord"
1958
+
1959
+ #: views/account_delete_warning.php:14
1960
+ #, fuzzy
1961
+ #| msgid "Allow Account Deletion"
1962
+ msgid "Confirm Account Deletion"
1963
+ msgstr "Lidmaatschap verwijderen toestaan"
1964
+
1965
+ #: views/add.php:24 views/admin_add.php:19 views/admin_edit.php:44
1966
+ #: views/edit.php:31 views/login.php:17
1967
  msgid "Password"
1968
  msgstr "Wachtwoord"
1969
 
1970
+ #: views/add.php:28 views/edit.php:35
1971
  msgid "Repeat Password"
1972
  msgstr "Herhaal Wachtwoord"
1973
 
1974
+ #: views/add.php:65
1975
+ msgid "I accept the "
1976
+ msgstr ""
1977
+
1978
+ #: views/add.php:77
1979
+ msgid "I agree to the "
1980
+ msgstr ""
1981
+
1982
+ #: views/add.php:77
1983
+ msgid "Privacy Policy"
1984
+ msgstr ""
1985
+
1986
+ #: views/add.php:88
1987
  msgid "Register"
1988
  msgstr "Aanmelden"
1989
 
 
 
 
 
1990
  #: views/admin_add.php:7
1991
  msgid "Create a brand new user and add it to this site."
1992
  msgstr "Een nieuwe gebruiker maken en toevoegen aan deze site."
1993
 
1994
+ #: views/admin_add.php:11 views/admin_add.php:15 views/admin_add_level.php:12
1995
+ #: views/admin_add_level.php:16 views/admin_add_level.php:20
1996
+ #: views/admin_edit.php:19 views/admin_edit.php:40
1997
+ #: views/admin_edit_level.php:16 views/admin_edit_level.php:20
1998
+ #: views/admin_edit_level.php:24
1999
  msgid "(required)"
2000
  msgstr "(vereist)"
2001
 
2002
+ #: views/admin_add.php:15 views/admin_edit.php:40
2003
  msgid "E-mail"
2004
  msgstr "Email"
2005
 
2007
  msgid "(twice, required)"
2008
  msgstr "(tweemaal, vereist)"
2009
 
2010
+ #: views/admin_add.php:24 views/admin_edit.php:48
2011
  msgid "Strength indicator"
2012
  msgstr "Sterkte indicator"
2013
 
2014
+ #: views/admin_add.php:25 views/admin_edit.php:49
2015
  msgid ""
2016
  "Hint: The password should be at least seven characters long. To make it "
2017
  "stronger, use upper and lower case letters, numbers and symbols like ! \" ? "
2021
  "te maken gebruik je hoofdletters en kleine letters, nummers en symbolen "
2022
  "zoals ! \" ? $ % ^ &amp; )."
2023
 
2024
+ #: views/admin_add.php:29 views/admin_edit.php:53 views/loggedin.php:10
2025
  msgid "Account Status"
2026
  msgstr "Account Status"
2027
 
2029
  msgid "Add New Member "
2030
  msgstr "Voeg nieuw lid toe "
2031
 
2032
+ #: views/admin_addon_settings.php:3
 
 
 
 
 
2033
  msgid ""
2034
  "Some of the simple membership plugin's addon settings and options will be "
2035
  "displayed here (if you have them)"
2037
  "Sommige van addon instellingen en opties van de WP Membership plugin worden "
2038
  "hier weergegeven (als je ze hebt)"
2039
 
2040
+ #: views/admin_addon_settings.php:8
2041
  msgid "Save Changes"
2042
  msgstr "Opslaan"
2043
 
2044
  #: views/admin_add_level.php:6
2045
+ #, fuzzy
2046
+ #| msgid "Add New Membership Level "
2047
+ msgid "Add Membership Level"
2048
+ msgstr "Voeg een nieuw lidmaatschap niveau toe "
2049
+
2050
+ #: views/admin_add_level.php:7
2051
  msgid "Create new membership level."
2052
  msgstr "Maak een nieuw Lidmaatschap niveau."
2053
 
2054
+ #: views/admin_add_level.php:12 views/admin_edit_level.php:16
2055
  msgid "Membership Level Name"
2056
  msgstr "Lidmaatschap Niveau Naam"
2057
 
2058
+ #: views/admin_add_level.php:16 views/admin_edit_level.php:20
2059
  msgid "Default WordPress Role"
2060
  msgstr "Standaard WordPress Rol"
2061
 
2062
+ #: views/admin_add_level.php:20 views/admin_edit_level.php:24
2063
  msgid "Access Duration"
2064
  msgstr "Duur toegang"
2065
 
2066
+ #: views/admin_add_level.php:23
2067
  msgid "No Expiry (Access for this level will not expire until cancelled"
2068
  msgstr ""
2069
  "Geen Vervaldatum (Toegang voor dit niveau vervalt niet, tenzij geannuleerd)"
2070
 
2071
+ #: views/admin_add_level.php:24 views/admin_add_level.php:26
2072
+ #: views/admin_add_level.php:28 views/admin_add_level.php:30
 
2073
  #: views/admin_edit_level.php:28 views/admin_edit_level.php:31
2074
+ #: views/admin_edit_level.php:34 views/admin_edit_level.php:37
2075
  msgid "Expire After"
2076
  msgstr "Vervallen na"
2077
 
2078
+ #: views/admin_add_level.php:25 views/admin_edit_level.php:29
2079
  msgid "Days (Access expires after given number of days)"
2080
  msgstr "Dagen (Toegang vervalt na bepaald aantal dagen)"
2081
 
2082
+ #: views/admin_add_level.php:27
2083
  msgid "Weeks (Access expires after given number of weeks"
2084
  msgstr "Weken (Toegang vervalt na bepaald aantal weken)"
2085
 
2086
+ #: views/admin_add_level.php:29 views/admin_edit_level.php:35
2087
  msgid "Months (Access expires after given number of months)"
2088
  msgstr "Maanden (Toegang vervalt na bepaald aantal maanden)"
2089
 
2090
+ #: views/admin_add_level.php:31 views/admin_edit_level.php:38
2091
  msgid "Years (Access expires after given number of years)"
2092
  msgstr "Jaren (Toegang vervalt na bepaald aantal jaren)"
2093
 
2094
+ #: views/admin_add_level.php:32 views/admin_edit_level.php:40
2095
  msgid "Fixed Date Expiry"
2096
  msgstr "Vaste vervaldatum"
2097
 
2098
+ #: views/admin_add_level.php:33 views/admin_edit_level.php:41
2099
  msgid "(Access expires on a fixed date)"
2100
  msgstr "(Toegang vervalt op een vaste datum)"
2101
 
2102
+ #: views/admin_add_level.php:38 views/admin_edit_level.php:46
2103
+ #, fuzzy
2104
+ #| msgid "Email Settings"
2105
+ msgid "Email Activation"
2106
+ msgstr "E-mail instellingen"
2107
+
2108
+ #: views/admin_add_level.php:43
2109
+ msgid ""
2110
+ "Enable new user activation via email. When enabled, members will need to "
2111
+ "click on an activation link that is sent to their email address to activate "
2112
+ "the account. Useful for free membership. "
2113
+ msgstr ""
2114
+
2115
+ #: views/admin_add_level.php:44 views/admin_edit_level.php:52
2116
+ #, fuzzy
2117
+ #| msgid "Plugin Documentation"
2118
+ msgid "View Documentation"
2119
+ msgstr "Plugin Documentatie"
2120
+
2121
+ #: views/admin_add_level.php:45 views/admin_edit_level.php:53
2122
+ msgid "Note:"
2123
+ msgstr ""
2124
+
2125
+ #: views/admin_add_level.php:45 views/admin_edit_level.php:53
2126
+ msgid ""
2127
+ "If enabled, decryptable member password is temporarily stored in the "
2128
+ "database until the account is activated."
2129
+ msgstr ""
2130
+
2131
+ #: views/admin_add_level.php:52
2132
  msgid "Add New Membership Level "
2133
  msgstr "Voeg een nieuw lidmaatschap niveau toe "
2134
 
2136
  msgid "Simple WP Membership::Add-ons"
2137
  msgstr "Simple WP Membership::Add-ons"
2138
 
2139
+ #: views/admin_category_list.php:5
 
 
 
 
2140
  msgid ""
2141
  "First of all, globally protect the category on your site by selecting "
2142
  "\"General Protection\" from the drop-down box below and then select the "
2146
  "kiezen uit het drop-down vak hieronder. Selecteer vervolgens de categorieën "
2147
  "die afgeschermd moeten worden van niet-ingelogde gebruikers."
2148
 
2149
+ #: views/admin_category_list.php:8
2150
  msgid ""
2151
  "Next, select an existing membership level from the drop-down box below and "
2152
  "then select the categories you want to grant access to (for that particular "
2156
  "hieronder en selecteer de categorieën waartoe je toegang wilt geven (voor "
2157
  "dat specifieke niveau van lidmaatschap)."
2158
 
2159
+ #: views/admin_category_list.php:11 views/admin_post_list.php:11
2160
+ msgid "Read the "
2161
+ msgstr ""
2162
+
2163
+ #: views/admin_category_list.php:11
2164
+ #, fuzzy
2165
+ #| msgid "Category protection updated!"
2166
+ msgid "category protection documentation"
2167
+ msgstr "Categorie afscherming bijgewerkt!"
2168
+
2169
+ #: views/admin_category_list.php:17 views/admin_post_list.php:27
2170
+ #, fuzzy
2171
+ #| msgid "Membership Level"
2172
+ msgid "Membership Level:"
2173
+ msgstr "Lidmaatschap niveau"
2174
+
2175
+ #: views/admin_category_list.php:19 views/admin_post_list.php:29
2176
+ #, fuzzy
2177
+ #| msgid "General Settings"
2178
+ msgid "General Protection"
2179
+ msgstr "Algemene instellingen"
2180
+
2181
+ #: views/admin_category_list.php:23 views/admin_post_list.php:33
2182
+ #: views/edit.php:83
2183
+ msgid "Update"
2184
+ msgstr "Bijwerken"
2185
+
2186
+ #: views/admin_edit.php:11
2187
  msgid "Edit Member"
2188
  msgstr "Bewerk lid"
2189
 
2190
+ #: views/admin_edit.php:13
2191
  msgid "Edit existing member details."
2192
  msgstr "Wijzig gegevens bestaand lid."
2193
 
2194
+ #: views/admin_edit.php:14
2195
+ msgid " You are currenty editing member with member ID: "
2196
+ msgstr ""
2197
+
2198
+ #: views/admin_edit.php:44
2199
  msgid "(twice, leave empty to retain old password)"
2200
  msgstr "(Tweemaal, leeglaten om oude wachtwoord te behouden)"
2201
 
2202
+ #: views/admin_edit.php:59
2203
+ msgid ""
2204
+ "This is the member's account status. If you want to manually activate an "
2205
+ "expired member's account then read"
2206
+ msgstr ""
2207
+
2208
+ #: views/admin_edit.php:60
2209
+ #, fuzzy
2210
+ #| msgid "Plugin Documentation"
2211
+ msgid "this documentation"
2212
+ msgstr "Plugin Documentatie"
2213
+
2214
+ #: views/admin_edit.php:61
2215
+ msgid " to learn how to do it."
2216
+ msgstr ""
2217
+
2218
+ #: views/admin_edit.php:66
2219
  msgid "Notify User"
2220
  msgstr "Gebruiker op de hoogte brengen"
2221
 
2222
+ #: views/admin_edit.php:69
2223
+ msgid ""
2224
+ "You can use this option to send a quick notification email to this member "
2225
+ "(the email will be sent when you hit the save button below)."
2226
+ msgstr ""
2227
+
2228
+ #: views/admin_edit.php:75
2229
  msgid "Subscriber ID/Reference"
2230
  msgstr "Abonnee ID/Referentie"
2231
 
2232
+ #: views/admin_edit.php:79
2233
+ #, fuzzy
2234
+ #| msgid "Last Accessed From IP"
2235
+ msgid "Last Accessed Date"
2236
+ msgstr "Laatst ingelogd via IP"
2237
+
2238
+ #: views/admin_edit.php:82 views/admin_edit.php:89
2239
+ msgid "This value gets updated when this member logs into your site."
2240
+ msgstr ""
2241
+
2242
+ #: views/admin_edit.php:86
2243
  msgid "Last Accessed From IP"
2244
  msgstr "Laatst ingelogd via IP"
2245
 
2246
+ #: views/admin_edit.php:97
2247
+ #, fuzzy
2248
+ #| msgid "Save Payment Data"
2249
+ msgid "Save Data"
2250
+ msgstr "Betalingsgegevens Opslaan"
2251
+
2252
+ #: views/admin_edit.php:102
2253
+ #, fuzzy
2254
+ #| msgid "Member Profile"
2255
+ msgid "Delete User Profile"
2256
+ msgstr "Profiel Lid"
2257
 
2258
+ #: views/admin_edit_level.php:6
2259
  msgid "Edit membership level"
2260
  msgstr "Wijzig lidmaatschap niveau"
2261
 
2262
+ #: views/admin_edit_level.php:9
2263
+ #, fuzzy
2264
+ #| msgid "You can edit a payment button using this interface."
2265
+ msgid ""
2266
+ "You can edit details of a selected membership level from this interface. "
2267
+ msgstr "Je kunt een betaling knop bewerken met deze interface."
2268
 
2269
+ #: views/admin_edit_level.php:10
2270
+ #, fuzzy
2271
+ #| msgid "You are not logged in."
2272
+ msgid "You are currently editing: "
2273
+ msgstr "Je bent niet ingelogd."
2274
+
2275
+ #: views/admin_edit_level.php:27
2276
  msgid "No Expiry (Access for this level will not expire until cancelled)"
2277
  msgstr ""
2278
  "Geen Vervaldatum (Toegang voor dit niveau vervalt niet, tenzij geannuleerd)"
2279
 
2280
+ #: views/admin_edit_level.php:32
2281
  msgid "Weeks (Access expires after given number of weeks)"
2282
  msgstr "Weken (Toegang vervalt na bepaald aantal weken)"
2283
 
2284
+ #: views/admin_edit_level.php:51
2285
+ msgid ""
2286
+ "Enable new user activation via email. When enabled, members will need to "
2287
+ "click on an activation link that is sent to their email address to activate "
2288
+ "the account. Useful for free membership."
2289
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
2290
 
2291
+ #: views/admin_edit_level.php:60
2292
+ #, fuzzy
2293
+ #| msgid "Membership Level"
2294
+ msgid "Save Membership Level "
2295
  msgstr "Lidmaatschap niveau"
2296
 
2297
+ #: views/admin_membership_manage.php:18
 
 
 
 
 
 
 
 
2298
  msgid "Example Content Protection Settings"
2299
  msgstr "Voorbeeld inhoud afscherm instellingen"
2300
 
2301
+ #: views/admin_members_list.php:18
2302
+ #, fuzzy
2303
+ msgid "All"
2304
+ msgstr "Voor alle registraties in behandeling"
2305
+
2306
+ #: views/admin_members_list.php:23
2307
+ msgid "Incomplete"
2308
+ msgstr ""
2309
+
2310
  #: views/admin_member_form_common_part.php:23
2311
+ #: includes/swpm_mda_show_profile.php:37
2312
  msgid "Gender"
2313
  msgstr "Geslacht"
2314
 
2315
+ #: views/admin_member_form_common_part.php:30 views/edit.php:47
2316
+ #: includes/swpm_mda_show_profile.php:34
2317
  msgid "Phone"
2318
  msgstr "Telefoon"
2319
 
2320
+ #: views/admin_member_form_common_part.php:34 views/edit.php:51
2321
  msgid "Street"
2322
  msgstr "Straat"
2323
 
2324
+ #: views/admin_member_form_common_part.php:38 views/edit.php:55
2325
  msgid "City"
2326
  msgstr "Plaats"
2327
 
2328
+ #: views/admin_member_form_common_part.php:42 views/edit.php:59
2329
  msgid "State"
2330
  msgstr "Provincie"
2331
 
2332
+ #: views/admin_member_form_common_part.php:46 views/edit.php:63
2333
  msgid "Zipcode"
2334
  msgstr "Postcode"
2335
 
2336
+ #: views/admin_member_form_common_part.php:50 views/edit.php:67
2337
+ #: includes/swpm_mda_show_profile.php:33
2338
  msgid "Country"
2339
  msgstr "Land"
2340
 
2341
  #: views/admin_member_form_common_part.php:54
2342
+ #: includes/swpm_mda_show_profile.php:38
2343
  msgid "Company"
2344
  msgstr "Bedrijf"
2345
 
2346
  #: views/admin_member_form_common_part.php:58
2347
+ #: includes/swpm_mda_show_profile.php:36
2348
  msgid "Member Since"
2349
  msgstr "Lid sinds"
2350
 
2351
+ #: views/admin_post_list.php:5
2352
+ #, fuzzy
2353
+ #| msgid ""
2354
+ #| "First of all, globally protect the category on your site by selecting "
2355
+ #| "\"General Protection\" from the drop-down box below and then select the "
2356
+ #| "categories that should be protected from non-logged in users."
2357
+ msgid ""
2358
+ "First of all, globally protect posts and pages on your site by selecting "
2359
+ "\"General Protection\" from the drop-down box below and then select posts "
2360
+ "and pages that should be protected from non-logged in users."
2361
+ msgstr ""
2362
+ "Scherm eerst de categorie op je hele site af door 'Algemene Afscherming' te "
2363
+ "kiezen uit het drop-down vak hieronder. Selecteer vervolgens de categorieën "
2364
+ "die afgeschermd moeten worden van niet-ingelogde gebruikers."
2365
+
2366
+ #: views/admin_post_list.php:8
2367
+ #, fuzzy
2368
+ #| msgid ""
2369
+ #| "Next, select an existing membership level from the drop-down box below "
2370
+ #| "and then select the categories you want to grant access to (for that "
2371
+ #| "particular membership level)."
2372
+ msgid ""
2373
+ "Next, select an existing membership level from the drop-down box below and "
2374
+ "then select posts and pages you want to grant access to (for that particular "
2375
+ "membership level)."
2376
+ msgstr ""
2377
+ "Selecteer vervolgens een bestaand lidmaatschap niveau uit de keuzelijst "
2378
+ "hieronder en selecteer de categorieën waartoe je toegang wilt geven (voor "
2379
+ "dat specifieke niveau van lidmaatschap)."
2380
+
2381
+ #: views/admin_post_list.php:11
2382
+ msgid "bulk protect posts and pages documentation"
2383
+ msgstr ""
2384
+
2385
+ #: views/admin_post_list.php:11
2386
+ msgid " to learn how to use it."
2387
+ msgstr ""
2388
+
2389
+ #: views/admin_post_list.php:21
2390
+ msgid "Posts"
2391
+ msgstr ""
2392
+
2393
+ #: views/admin_post_list.php:22
2394
+ msgid "Pages"
2395
+ msgstr ""
2396
+
2397
+ #: views/admin_post_list.php:23
2398
+ msgid "Custom Posts"
2399
+ msgstr ""
2400
+
2401
+ #: views/admin_tools_settings.php:14
2402
+ msgid "The required pages have been re-created."
2403
+ msgstr ""
2404
+
2405
+ #: views/admin_tools_settings.php:21
2406
  msgid "Generate a Registration Completion link"
2407
  msgstr "Genereer een Registratie Voltooien link"
2408
 
2409
+ #: views/admin_tools_settings.php:24
2410
  msgid ""
2411
  "You can manually generate a registration completion link here and give it to "
2412
  "your customer if they have missed the email that was automatically sent out "
2416
  "geven als zij de automatische e-mail die hen was toegezonden na betaling "
2417
  "hebben gemist."
2418
 
2419
+ #: views/admin_tools_settings.php:29
2420
  msgid "Generate Registration Completion Link"
2421
  msgstr "Genereer 'registratie voltooid'- link"
2422
 
2423
+ #: views/admin_tools_settings.php:30
2424
+ msgid "For a Particular Member ID"
2425
+ msgstr ""
2426
+
2427
+ #: views/admin_tools_settings.php:32
2428
  msgid "OR"
2429
  msgstr "OF"
2430
 
2431
+ #: views/admin_tools_settings.php:33
2432
+ #, fuzzy
2433
+ #| msgid "For All Pending Registrations"
2434
+ msgid "For All Incomplete Registrations"
2435
  msgstr "Voor alle registraties in behandeling"
2436
 
2437
+ #: views/admin_tools_settings.php:38
2438
+ #, fuzzy
2439
+ #| msgid "Send Registration Reminder Email too"
2440
+ msgid "Send Registration Reminder Email Too"
2441
+ msgstr "Stuur ook een Registratie herinnering email"
2442
+
2443
+ #: views/admin_tools_settings.php:44
2444
+ msgid "Submit"
2445
+ msgstr "Verzenden"
2446
+
2447
+ #: views/admin_tools_settings.php:53
2448
+ #, fuzzy
2449
+ #| msgid "Click on the following link to complete the registration."
2450
+ msgid ""
2451
+ "Link(s) generated successfully. The following link(s) can be used to "
2452
+ "complete the registration."
2453
+ msgstr "Klik op de volgende link om je inschrijving te voltooien."
2454
+
2455
+ #: views/admin_tools_settings.php:55
2456
+ #, fuzzy
2457
+ #| msgid "Registration Completion Links Will Appear Below:"
2458
+ msgid "Registration completion links will appear below"
2459
  msgstr "Registratie voltooid links verschijnen hieronder:"
2460
 
2461
+ #: views/admin_tools_settings.php:65
2462
+ msgid "A prompt to complete registration email was also sent."
2463
+ msgstr ""
2464
+
2465
+ #: views/admin_tools_settings.php:78 views/admin_tools_settings.php:88
2466
+ msgid "Re-create the Required Pages"
2467
+ msgstr ""
2468
+
2469
+ #: views/admin_tools_settings.php:81
2470
+ msgid ""
2471
+ "If you have accidentally deleted the required pages that this plugin creates "
2472
+ "at install time, you can use this option to re-create them."
2473
+ msgstr ""
2474
+
2475
+ #: views/admin_tools_settings.php:82
2476
+ msgid " has full explanation."
2477
+ msgstr ""
2478
 
2479
+ #: views/edit.php:32 views/edit.php:36
2480
+ msgid "Leave empty to keep the current password"
2481
+ msgstr "Leeg laten om het huidige wachtwoord te behouden"
2482
 
2483
+ #: views/edit.php:71
2484
+ msgid "Company Name"
2485
+ msgstr "Bedrijfsnaam"
2486
 
2487
  #: views/forgot_password.php:12
2488
  msgid "Reset Password"
2489
  msgstr "Reset Wachtwoord"
2490
 
2491
+ #: views/loggedin.php:6
2492
  msgid "Logged in as"
2493
  msgstr "Ingelogd als"
2494
 
2495
+ #: views/loggedin.php:14
2496
  msgid "Membership"
2497
  msgstr "Lidmaatschap"
2498
 
2499
+ #: views/loggedin.php:18
2500
  msgid "Account Expiry"
2501
  msgstr "Account verloopt"
2502
 
2503
+ #: views/loggedin.php:26
2504
+ msgid "Edit Profile"
2505
+ msgstr "Wijzig profiel"
2506
+
2507
+ #: views/login.php:11
2508
+ msgid "Username or Email"
2509
+ msgstr "Gebruikersnaam of e-mailadres"
2510
 
2511
+ #: views/login.php:24
2512
  msgid "Remember Me"
2513
  msgstr "Onthoud mij"
2514
 
2515
+ #: views/login.php:33
2516
  msgid "Forgot Password?"
2517
  msgstr "Wachtwoord vergeten?"
2518
 
2519
+ #: views/payments/admin_all_payment_transactions.php:6
2520
  msgid "All the payments/transactions of your members are recorded here."
2521
  msgstr "Alle betalingen / transacties van je leden zijn hier opgenomen."
2522
 
2523
+ #: views/payments/admin_all_payment_transactions.php:12
2524
  msgid "Search for a transaction by using email or name"
2525
  msgstr "Zoekt u een transactie met behulp van e-mail of naam"
2526
 
2527
+ #: views/payments/admin_create_payment_buttons.php:15
 
 
 
 
2528
  msgid ""
2529
  "You can create new payment button for your memberships using this interface."
2530
  msgstr ""
2531
  "Met deze interface kun je een nieuwe betaalknop maken voor je "
2532
  "lidmaatschappen."
2533
 
2534
+ #: views/payments/admin_create_payment_buttons.php:23
2535
  msgid "Select Payment Button Type"
2536
  msgstr "Selecteer Type Betaal-knop"
2537
 
2538
+ #: views/payments/admin_create_payment_buttons.php:26
2539
+ #, fuzzy
2540
+ #| msgid "Buy Now"
2541
+ msgid "PayPal Buy Now"
2542
+ msgstr "Koop Nu"
2543
+
2544
+ #: views/payments/admin_create_payment_buttons.php:28
2545
+ #, fuzzy
2546
+ #| msgid "PayPal Subscription Button Configuration"
2547
+ msgid "PayPal Subscription"
2548
+ msgstr "PayPal Subscription Knop Configuratie"
2549
+
2550
+ #: views/payments/admin_create_payment_buttons.php:30
2551
+ msgid "PayPal Smart Checkout"
2552
+ msgstr ""
2553
+
2554
+ #: views/payments/admin_create_payment_buttons.php:32
2555
+ #, fuzzy
2556
+ #| msgid "Buy Now"
2557
+ msgid "Stripe Buy Now"
2558
+ msgstr "Koop Nu"
2559
+
2560
  #: views/payments/admin_create_payment_buttons.php:34
2561
+ #, fuzzy
2562
+ #| msgid "Description"
2563
+ msgid "Stripe Subscription"
2564
+ msgstr "Omschijving"
2565
+
2566
+ #: views/payments/admin_create_payment_buttons.php:36
2567
+ msgid "Braintree Buy Now"
2568
+ msgstr ""
2569
+
2570
+ #: views/payments/admin_create_payment_buttons.php:43
2571
  msgid "Next"
2572
  msgstr "Volgende"
2573
 
2574
+ #: views/payments/admin_edit_payment_buttons.php:15
2575
  msgid "You can edit a payment button using this interface."
2576
  msgstr "Je kunt een betaling knop bewerken met deze interface."
2577
 
2578
+ #: views/payments/admin_payment_buttons.php:6
 
 
 
 
2579
  msgid ""
2580
  "All the membership buttons that you created in the plugin are displayed here."
2581
  msgstr "Alle lidmaatschap knoppen die je hebt gemaakt staan hier."
2582
 
2583
+ #: views/payments/admin_payment_settings.php:21
2584
+ #, fuzzy
2585
+ #| msgid "Enter the Membership Level ID"
2586
+ msgid "Error! The membership level ID ("
2587
+ msgstr "Voer het lidmaatschapsniveau-ID in"
2588
+
2589
+ #: views/payments/admin_payment_settings.php:28
2590
+ msgid ""
2591
+ "You can create membership payment buttons from the payments menu of this "
2592
+ "plugin (useful if you want to offer paid membership on the site)."
2593
+ msgstr ""
2594
+
2595
+ #: views/payments/admin_payment_settings.php:33
2596
  msgid "PayPal Integration Settings"
2597
  msgstr "PayPal Integratie Instellingen"
2598
 
2599
+ #: views/payments/admin_payment_settings.php:36
2600
  msgid "Generate the \"Advanced Variables\" Code for your PayPal button"
2601
  msgstr "Genereer de \"Geavanceerde Variabelen\" Code voor je PayPal knop"
2602
 
2603
+ #: views/payments/admin_payment_settings.php:39
2604
  msgid "Enter the Membership Level ID"
2605
  msgstr "Voer het lidmaatschapsniveau-ID in"
2606
 
2607
+ #: views/payments/admin_payment_settings.php:41
2608
  msgid "Generate Code"
2609
  msgstr "Genereer Code"
2610
 
2611
+ #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:22
2612
+ #, fuzzy
2613
+ #| msgid "PayPal Buy Now Button Configuration"
2614
+ msgid "Braintree Buy Now Button Configuration"
2615
  msgstr "PayPal Buy Now Knop Configuratie"
2616
 
2617
+ #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:34
2618
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:213
2619
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:33
2620
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:301
2621
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:259
2622
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:83
2623
+ msgid "Button ID"
2624
+ msgstr "Knop ID"
2625
+
2626
+ #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:42
2627
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:26
2628
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:221
2629
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:41
2630
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:27
2631
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:309
2632
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:39
2633
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:266
2634
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:91
2635
  msgid "Button Title"
2636
  msgstr "Knop titel"
2637
 
2638
+ #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:60
2639
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:44
2640
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:239
2641
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:59
2642
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:57
2643
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:282
2644
  msgid "Payment Amount"
2645
  msgstr "Te Betalen Bedrag"
2646
 
2647
+ #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:68
2648
+ msgid ""
2649
+ "Braintree API key and account details. You can get this from your Braintree "
2650
+ "account."
2651
+ msgstr ""
2652
+
2653
+ #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:72
2654
+ msgid "Merchant ID"
2655
+ msgstr ""
2656
+
2657
+ #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:80
2658
+ msgid "Public Key"
2659
+ msgstr ""
2660
 
2661
+ #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:87
2662
+ msgid "Private Key"
2663
+ msgstr ""
2664
+
2665
+ #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:95
2666
+ #, fuzzy
2667
+ #| msgid "Delete Account"
2668
+ msgid "Merchant Account ID"
2669
+ msgstr "Verwijder Account"
2670
+
2671
+ #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:113
2672
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:137
2673
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:361
2674
+ msgid "The following details are optional."
2675
+ msgstr ""
2676
+
2677
+ #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:117
2678
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:92
2679
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:287
2680
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:204
2681
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:172
2682
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:456
2683
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:149
2684
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:373
2685
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:191
2686
  msgid "Return URL"
2687
  msgstr "Retour URL"
2688
 
2689
+ #: views/payments/payment-gateway/admin_braintree_buy_now_button.php:127
2690
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:126
2691
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:321
2692
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:214
2693
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:200
2694
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:484
2695
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:159
2696
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:383
2697
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:212
2698
+ msgid "Save Payment Data"
2699
+ msgstr "Betalingsgegevens Opslaan"
2700
+
2701
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:16
2702
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:204
2703
+ msgid "PayPal Buy Now Button Configuration"
2704
+ msgstr "PayPal Buy Now Knop Configuratie"
2705
+
2706
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:52
2707
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:247
2708
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:67
2709
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:45
2710
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:327
2711
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:65
2712
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:289
2713
+ msgid "Payment Currency"
2714
+ msgstr "Betalingsvaluta"
2715
+
2716
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:100
2717
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:295
2718
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:85
2719
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:367
2720
  msgid "PayPal Email"
2721
  msgstr "PayPal Email"
2722
 
2723
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:108
2724
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:303
2725
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:180
2726
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:464
2727
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:199
2728
  msgid "Button Image URL"
2729
  msgstr "Knop Afbeelding URL"
2730
 
2731
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:116
2732
+ #: views/payments/payment-gateway/admin_paypal_buy_now_button.php:311
2733
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:188
2734
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:472
2735
+ msgid "Custom Checkout Page Logo Image"
2736
+ msgstr ""
2737
 
2738
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:21
2739
+ #, fuzzy
2740
+ #| msgid "PayPal Subscription Button Configuration"
2741
+ msgid "PayPal Smart Checkout Button Configuration"
2742
+ msgstr "PayPal Subscription Knop Configuratie"
2743
+
2744
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:107
2745
+ msgid ""
2746
+ "PayPal Smart Checkout API Credentials (you can get this from your PayPal "
2747
+ "account)"
2748
+ msgstr ""
2749
+
2750
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:111
2751
+ msgid "Live Client ID"
2752
+ msgstr ""
2753
+
2754
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:119
2755
+ msgid "Live Secret"
2756
+ msgstr ""
2757
+
2758
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:127
2759
+ msgid "Sandbox Client ID"
2760
+ msgstr ""
2761
+
2762
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:135
2763
+ msgid "Sandbox Secret"
2764
+ msgstr ""
2765
+
2766
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:143
2767
+ #, fuzzy
2768
+ #| msgid "Advanced Settings"
2769
+ msgid "Button Appearance Settings"
2770
+ msgstr "Geavanceerde instellingen"
2771
+
2772
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:147
2773
+ msgid "Size"
2774
+ msgstr ""
2775
+
2776
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:150
2777
+ msgid "Medium"
2778
+ msgstr ""
2779
+
2780
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:151
2781
+ msgid "Large"
2782
+ msgstr ""
2783
+
2784
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:152
2785
+ msgid "Repsonsive"
2786
+ msgstr ""
2787
+
2788
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:154
2789
+ #, fuzzy
2790
+ #| msgid "Select bulk action"
2791
+ msgid "Select button size."
2792
+ msgstr "Kies bulk actie"
2793
+
2794
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:158
2795
+ msgid "Color"
2796
+ msgstr ""
2797
+
2798
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:161
2799
+ msgid "Gold"
2800
+ msgstr ""
2801
+
2802
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:162
2803
+ msgid "Blue"
2804
+ msgstr ""
2805
+
2806
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:163
2807
+ msgid "Silver"
2808
+ msgstr ""
2809
+
2810
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:164
2811
+ msgid "Black"
2812
+ msgstr ""
2813
+
2814
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:166
2815
+ #, fuzzy
2816
+ #| msgid "Select bulk action"
2817
+ msgid "Select button color."
2818
+ msgstr "Kies bulk actie"
2819
+
2820
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:170
2821
+ msgid "Shape"
2822
+ msgstr ""
2823
+
2824
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:172
2825
+ msgid "Rectangular"
2826
+ msgstr ""
2827
+
2828
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:173
2829
+ msgid "Pill"
2830
+ msgstr ""
2831
+
2832
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:174
2833
+ #, fuzzy
2834
+ #| msgid "Select Payment Button Type"
2835
+ msgid "Select button shape."
2836
+ msgstr "Selecteer Type Betaal-knop"
2837
+
2838
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:178
2839
+ msgid "Layout"
2840
+ msgstr ""
2841
+
2842
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:180
2843
+ msgid "Vertical"
2844
+ msgstr ""
2845
+
2846
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:181
2847
+ msgid "Horizontal"
2848
+ msgstr ""
2849
+
2850
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:182
2851
+ #, fuzzy
2852
+ #| msgid "Select bulk action"
2853
+ msgid "Select button layout."
2854
+ msgstr "Kies bulk actie"
2855
+
2856
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:187
2857
+ #, fuzzy
2858
+ #| msgid "Addons Settings"
2859
+ msgid "Additional Settings"
2860
+ msgstr "Addon Instellingen"
2861
+
2862
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:191
2863
+ #, fuzzy
2864
+ #| msgid "Payment Settings"
2865
+ msgid "Payment Methods"
2866
+ msgstr "Betaling instellingen"
2867
+
2868
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:193
2869
+ #, fuzzy
2870
+ #| msgid "PayPal Email"
2871
+ msgid "PayPal Credit"
2872
+ msgstr "PayPal Email"
2873
+
2874
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:194
2875
+ msgid "ELV"
2876
+ msgstr ""
2877
+
2878
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:195
2879
+ msgid ""
2880
+ "Select payment methods that could be used by customers. Note that payment "
2881
+ "with cards is always enabled."
2882
+ msgstr ""
2883
 
2884
+ #: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:200
2885
+ msgid "The following details are optional"
2886
+ msgstr ""
2887
+
2888
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:18
2889
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:295
2890
  msgid "PayPal Subscription Button Configuration"
2891
  msgstr "PayPal Subscription Knop Configuratie"
2892
 
2893
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:93
2894
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:375
2895
  msgid "Billing Amount Each Cycle"
2896
  msgstr "Factuur bedrag per cyclus"
2897
 
2898
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:101
2899
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:383
2900
  msgid "Billing Cycle"
2901
  msgstr "Factureringscyclus"
2902
 
2903
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:114
2904
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:396
2905
  msgid "Billing Cycle Count"
2906
  msgstr "Factureringscyclus Teller"
2907
 
2908
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:122
2909
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:404
2910
  msgid "Re-attempt on Failure"
2911
  msgstr "Opnieuw proberen indien mislukt"
2912
 
2913
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:135
2914
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:419
2915
  msgid ""
2916
  "Trial Billing Details (Leave empty if you are not offering a trial period)"
2917
  msgstr ""
2918
  "Rekening Details Proefperiode (Laat leeg als je geen proefperiode aanbiedt)"
2919
 
2920
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:141
2921
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:425
2922
  msgid "Trial Billing Amount"
2923
  msgstr "Proefperiode bedrag"
2924
 
2925
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:149
2926
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:433
2927
  msgid "Trial Billing Period"
2928
  msgstr "Looptijd proefperiode"
2929
 
2930
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:166
2931
+ #: views/payments/payment-gateway/admin_paypal_subscription_button.php:450
2932
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:177
2933
  msgid "Optional Details"
2934
  msgstr "Optionele Details"
2935
 
2936
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:29
2937
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:250
2938
+ #, fuzzy
2939
+ #| msgid "PayPal Buy Now Button Configuration"
2940
+ msgid "Stripe Buy Now Button Configuration"
2941
+ msgstr "PayPal Buy Now Knop Configuratie"
2942
+
2943
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:104
2944
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:328
2945
+ msgid "Stripe API keys. You can get this from your Stripe account."
2946
+ msgstr ""
2947
+
2948
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:108
2949
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:332
2950
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:131
2951
+ msgid "Test Publishable Key"
2952
+ msgstr ""
2953
+
2954
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:115
2955
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:339
2956
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:139
2957
+ msgid "Test Secret Key"
2958
+ msgstr ""
2959
+
2960
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:122
2961
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:346
2962
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:147
2963
+ msgid "Live Publishable Key"
2964
+ msgstr ""
2965
+
2966
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:129
2967
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:353
2968
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:155
2969
+ msgid "Live Secret Key"
2970
+ msgstr ""
2971
+
2972
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:141
2973
+ #: views/payments/payment-gateway/admin_stripe_buy_now_button.php:365
2974
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:183
2975
+ msgid "Collect Customer Address"
2976
+ msgstr ""
2977
+
2978
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:75
2979
+ #, fuzzy
2980
+ #| msgid "PayPal Subscription Button Configuration"
2981
+ msgid "Stripe Subscription Button Configuration"
2982
+ msgstr "PayPal Subscription Knop Configuratie"
2983
+
2984
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:109
2985
+ msgid "Stripe API ID"
2986
+ msgstr ""
2987
+
2988
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:125
2989
+ #, fuzzy
2990
+ #| msgid "Simple WP Membership::Settings"
2991
+ msgid "Stripe API Settings"
2992
+ msgstr "Simple WP Membership::Instellingen"
2993
+
2994
+ #: views/payments/payment-gateway/admin_stripe_subscription_button.php:163
2995
+ msgid "Webook Endpoint URL"
2996
+ msgstr ""
2997
+
2998
+ #: views/payments/payment-gateway/braintree_button_shortcode_view.php:20
2999
+ #: views/payments/payment-gateway/paypal_button_shortcode_view.php:91
3000
+ #: views/payments/payment-gateway/paypal_button_shortcode_view.php:93
3001
+ #: views/payments/payment-gateway/paypal_smart_checkout_button_shortcode_view.php:15
3002
+ #: views/payments/payment-gateway/stripe_button_shortcode_view.php:20
3003
+ #: views/payments/payment-gateway/stripe_button_shortcode_view.php:150
3004
  msgid "Buy Now"
3005
  msgstr "Koop Nu"
3006
 
3007
+ #: views/payments/payment-gateway/paypal_button_shortcode_view.php:226
3008
+ #: views/payments/payment-gateway/paypal_button_shortcode_view.php:228
3009
  msgid "Subscribe Now"
3010
  msgstr "Nu inschrijven"
3011
 
3012
+ #: views/payments/payment-gateway/paypal_smart_checkout_button_shortcode_view.php:137
3013
+ msgid "Error occured during PayPal Smart Checkout process."
3014
+ msgstr ""
3015
 
3016
+ #: views/payments/payment-gateway/paypal_smart_checkout_button_shortcode_view.php:165
3017
+ msgid "HTTP error occured during payment process:"
3018
+ msgstr ""
3019
 
3020
+ #: Translation strings from addons === Form builder addon
3021
+ #, fuzzy
3022
+ #| msgid "Password Reset"
3023
+ msgid "Type password here"
3024
+ msgstr "Wachtwoord herstel"
3025
 
3026
+ #, fuzzy
3027
+ #| msgid "Repeat Password"
3028
+ msgid "Retype password here"
3029
+ msgstr "Herhaal Wachtwoord"
3030
 
3031
+ msgid "Registration is complete. You can now log into the site."
3032
+ msgstr ""
3033
+
3034
+ #, fuzzy
3035
+ #| msgid "Name contains invalid character"
3036
+ msgid " Field has invalid character"
3037
+ msgstr "Naam bevat ongeldig teken"
3038
+
3039
+ #, fuzzy
3040
+ #| msgid "Password mismatch"
3041
+ msgid " Password does not match"
3042
+ msgstr "Wachtwoorden komen niet overeen"
3043
+
3044
+ #, fuzzy
3045
+ #| msgid "Aready taken"
3046
+ msgid "Already taken."
3047
+ msgstr "Al bezet"
3048
+
3049
+ #, fuzzy
3050
+ #| msgid "Street"
3051
+ msgid "Street Address"
3052
+ msgstr "Straat"
3053
+
3054
+ msgid "Apt, Suite, Bldg. (optional)"
3055
+ msgstr ""
3056
+
3057
+ msgid "State / Province / Region"
3058
+ msgstr ""
3059
+
3060
+ msgid "Postal / Zip Code"
3061
+ msgstr ""
3062
+
3063
+ msgid ""
3064
+ "Check this box to delete the image. The image will be deleted when you save "
3065
+ "the profile."
3066
+ msgstr ""
3067
+
3068
+ #, fuzzy
3069
+ #| msgid ""
3070
+ #| "Profile updated successfully. You will need to re-login since you changed "
3071
+ #| "your password."
3072
+ msgid "You will need to re-login since you changed your password."
3073
+ msgstr ""
3074
+ "Profiel succesvol bijgewerkt. Je moet opnieuw inloggen omdat je wachtwoord "
3075
+ "veranderd is."
3076
+
3077
+ msgid ""
3078
+ "Please enter any two digits with <strong>no</strong> spaces (Example: 12)"
3079
+ msgstr ""
3080
+
3081
+ #, fuzzy
3082
+ #| msgid "Description"
3083
+ msgid "Verification"
3084
+ msgstr "Omschijving"
3085
+
3086
+ msgid "Please enter any two digits with no spaces (Example: 12)*"
3087
+ msgstr ""
3088
+
3089
+ #, fuzzy
3090
+ #| msgid "Usernames can only contain: letters, numbers and .-_*@"
3091
+ msgid "Username can only contain: letters, numbers and .-*@"
3092
+ msgstr ""
3093
+ "Gebruikersnamen mogen alleen bestaan uit: letters, nummers en de tekens .-_*@"
3094
+
3095
+ #, fuzzy
3096
+ #| msgid "Usernames can only contain: letters, numbers and .-_*@"
3097
+ msgid "Allowed characters are: letters, numbers and .-_*@"
3098
+ msgstr ""
3099
+ "Gebruikersnamen mogen alleen bestaan uit: letters, nummers en de tekens .-_*@"
3100
+
3101
+ #: === Partial protection addon strings
3102
+ #, fuzzy
3103
+ #| msgid "You need to login to view this content. "
3104
+ msgid "You do not have permission to view this content."
3105
+ msgstr "Je moet inloggen om deze inhoud te bekijken. "
3106
+
3107
+ #, fuzzy
3108
+ #| msgid "You need to login to view this content. "
3109
+ msgid "Your membership level does not have permission to view this content."
3110
+ msgstr "Je moet inloggen om deze inhoud te bekijken. "
3111
+
3112
+ #, fuzzy
3113
+ #| msgid "This content is not permitted for your membership level."
3114
+ msgid "This content is for members only."
3115
+ msgstr "Deze inhoud is niet toegankelijk voor jouw lidmaatschap."
3116
+
3117
+ msgid "Please check at least one."
3118
+ msgstr ""
3119
+
3120
+ #: === Member Directory Listing addon strings swpm-member-directory-admin.php:9
3121
+ #, fuzzy
3122
+ #| msgid "Member Since"
3123
+ msgid "Member Directory"
3124
+ msgstr "Lid sinds"
3125
+
3126
+ #: includes/swpm_mda_show_profile.php:26
3127
+ #, fuzzy
3128
+ #| msgid "Member"
3129
+ msgid "Member ID"
3130
+ msgstr "Lid"
3131
+
3132
+ #: includes/swpm_mda_show_profile.php:30
3133
+ #, fuzzy
3134
+ msgid "Level"
3135
+ msgstr "Ongeldige lidmaatschap niveau"
3136
+
3137
+ #: includes/swpm_mda_show_profile.php:32
3138
+ #, fuzzy
3139
+ #| msgid "Email Address"
3140
+ msgid "Address"
3141
+ msgstr "Ongeldig E-mailadres"
3142
+
3143
+ #: views/template-1.php:52 views/template-2.php:53
3144
+ #, fuzzy
3145
+ #| msgid "Search"
3146
+ msgid "Search..."
3147
+ msgstr "zoeken"
3148
+
3149
+ #: views/template-1.php:60 views/template-2.php:62
3150
+ #, fuzzy
3151
+ #| msgid "Search"
3152
+ msgid "Clear Search"
3153
+ msgstr "Zoeken"
3154
+
3155
+ #, fuzzy
3156
+ #| msgid "You are not logged-in as a member"
3157
+ msgid "You must be logged in to upgrade a membership."
3158
+ msgstr "Je bent niet ingelogd als lid"
3159
+
3160
+ #, fuzzy
3161
+ #| msgid "Membership Level Couldn't be found."
3162
+ msgid "Membership level has been updated."
3163
+ msgstr "Lidmaatschap niveau kon niet worden gevonden."
3164
+
3165
+ #, fuzzy
3166
+ #| msgid "Create new membership level."
3167
+ msgid "Already a member of this level."
3168
+ msgstr "Maak een nieuw Lidmaatschap niveau."
3169
+
3170
+ #~ msgid "Name"
3171
+ #~ msgstr "Naam"
3172
+
3173
+ #~ msgid "Updated Successfully."
3174
+ #~ msgstr "Succesvol bijgewerkt."
3175
+
3176
+ #~ msgid "List View"
3177
+ #~ msgstr "Lijstweergave"
3178
+
3179
+ #~ msgid "Excerpt View"
3180
+ #~ msgstr "Samenvatting weergave"
3181
+
3182
+ #~ msgid "Apply"
3183
+ #~ msgstr "Toepassen"
3184
+
3185
+ #~ msgid "Filter by date"
3186
+ #~ msgstr "Filter op datum"
3187
+
3188
+ #~ msgid "All dates"
3189
+ #~ msgstr "Alle data"
3190
+
3191
+ #, php-format
3192
+ #~ msgid "%1$s %2$d"
3193
+ #~ msgstr "%1$s %2$d"
3194
+
3195
+ #, php-format
3196
+ #~ msgid "%s pending"
3197
+ #~ msgstr "%s (In behandeling)"
3198
+
3199
+ #~ msgid "Simple WP Membership::Categories"
3200
+ #~ msgstr "Simple WP Membership :: Categorieën"
3201
+
3202
+ #~ msgid "Edit User "
3203
+ #~ msgstr "Wijzig gebruiker "
3204
+
3205
+ #~ msgid "search"
3206
+ #~ msgstr "zoeken"
3207
+
3208
+ #~ msgid "Membership level"
3209
+ #~ msgstr "Lidmaatschap niveau"
readme.txt CHANGED
@@ -4,8 +4,8 @@ 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, braintree
5
  Requires at least: 5.0
6
  Requires PHP: 5.6
7
- Tested up to: 5.7
8
- Stable tag: 4.0.6
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -159,6 +159,13 @@ https://simple-membership-plugin.com/
159
 
160
  == Changelog ==
161
 
 
 
 
 
 
 
 
162
  = 4.0.6 =
163
  - Added an option in the [swpm_paypal_subscription_cancel_link] shortcode to allow opening the window in a new tab.
164
  - Added an option in the [swpm_paypal_subscription_cancel_link] shortcode to add CSS class for customization purpose.
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, braintree
5
  Requires at least: 5.0
6
  Requires PHP: 5.6
7
+ Tested up to: 5.8
8
+ Stable tag: 4.0.7
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
159
 
160
  == Changelog ==
161
 
162
+ = 4.0.7 =
163
+ - Stripe sca subscriptions enhancement: restore the custom field value from the original webhook notification (when available).
164
+ - Custom fields data (if available) is also saved in the swpm_transactions custom post type after a transaction.
165
+ - Updated the Dutch language file.
166
+ - Integration with the [WP Express Checkout plugin](https://wordpress.org/plugins/wp-express-checkout/).
167
+ - WordPress 5.8 compatibility.
168
+
169
  = 4.0.6 =
170
  - Added an option in the [swpm_paypal_subscription_cancel_link] shortcode to allow opening the window in a new tab.
171
  - Added an option in the [swpm_paypal_subscription_cancel_link] shortcode to add CSS class for customization purpose.
simple-wp-membership.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  Plugin Name: Simple WordPress Membership
4
- Version: 4.0.6
5
  Plugin URI: https://simple-membership-plugin.com/
6
  Author: smp7, wp.insider
7
  Author URI: https://simple-membership-plugin.com/
@@ -20,7 +20,7 @@ include_once('classes/class.simple-wp-membership.php');
20
  include_once('classes/class.swpm-cronjob.php');
21
  include_once('swpm-compat.php');
22
 
23
- define('SIMPLE_WP_MEMBERSHIP_VER', '4.0.6');
24
  define('SIMPLE_WP_MEMBERSHIP_DB_VER', '1.3');
25
  define('SIMPLE_WP_MEMBERSHIP_SITE_HOME_URL', home_url());
26
  define('SIMPLE_WP_MEMBERSHIP_PATH', dirname(__FILE__) . '/');
1
  <?php
2
  /*
3
  Plugin Name: Simple WordPress Membership
4
+ Version: 4.0.7
5
  Plugin URI: https://simple-membership-plugin.com/
6
  Author: smp7, wp.insider
7
  Author URI: https://simple-membership-plugin.com/
20
  include_once('classes/class.swpm-cronjob.php');
21
  include_once('swpm-compat.php');
22
 
23
+ define('SIMPLE_WP_MEMBERSHIP_VER', '4.0.7');
24
  define('SIMPLE_WP_MEMBERSHIP_DB_VER', '1.3');
25
  define('SIMPLE_WP_MEMBERSHIP_SITE_HOME_URL', home_url());
26
  define('SIMPLE_WP_MEMBERSHIP_PATH', dirname(__FILE__) . '/');
views/admin_add_ons_page.php CHANGED
@@ -71,21 +71,21 @@ echo '<link type="text/css" rel="stylesheet" href="' . SIMPLE_WP_MEMBERSHIP_URL
71
  array_push($addons_data, $addon_7);
72
 
73
  $addon_8 = array(
74
- 'name' => 'Affiliates Manager',
75
- 'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/affiliates-manager-integration.png',
76
- 'description' => 'Allows you to integrate with the Affiliates Manager plugin so you can reward affiliates for sending paid members your way.',
77
- 'page_url' => 'https://wpaffiliatemanager.com/affiliates-manager-and-simple-membership-integration/',
78
  );
79
  array_push($addons_data, $addon_8);
80
 
81
  $addon_9 = array(
82
- 'name' => 'iDevAffiliate',
83
- 'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/idevaffiliate-integration.png',
84
- 'description' => 'Allows you to integrate with iDevAffiliates so you can reward affiliates for sending paid members your way.',
85
- 'page_url' => 'https://simple-membership-plugin.com/simple-membership-and-idevaffiliate-integration/',
86
  );
87
  array_push($addons_data, $addon_9);
88
-
89
  $addon_10 = array(
90
  'name' => 'Affiliate Platform',
91
  'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/affiliate-platform-integration.png',
@@ -117,7 +117,7 @@ echo '<link type="text/css" rel="stylesheet" href="' . SIMPLE_WP_MEMBERSHIP_URL
117
  'page_url' => 'https://simple-membership-plugin.com/full-page-protection-addon-simple-membership/',
118
  );
119
  array_push($addons_data, $addon_13);
120
-
121
  $addon_14 = array(
122
  'name' => 'Protect Older Posts',
123
  'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/swpm-older-posts-protection.png',
@@ -125,7 +125,7 @@ echo '<link type="text/css" rel="stylesheet" href="' . SIMPLE_WP_MEMBERSHIP_URL
125
  'page_url' => 'https://simple-membership-plugin.com/simple-membership-protect-older-posts-addon/',
126
  );
127
  array_push($addons_data, $addon_14);
128
-
129
  $addon_15 = array(
130
  'name' => 'Custom Post Protection',
131
  'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/custom-post-type-protection-enhanced.png',
@@ -133,7 +133,7 @@ echo '<link type="text/css" rel="stylesheet" href="' . SIMPLE_WP_MEMBERSHIP_URL
133
  'page_url' => 'https://simple-membership-plugin.com/simple-membership-addon-better-custom-post-type-protection/',
134
  );
135
  array_push($addons_data, $addon_15);
136
-
137
  $addon_16 = array(
138
  'name' => 'Partial Protection',
139
  'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/swpm-partial-protection-addon.png',
@@ -141,7 +141,7 @@ echo '<link type="text/css" rel="stylesheet" href="' . SIMPLE_WP_MEMBERSHIP_URL
141
  'page_url' => 'https://simple-membership-plugin.com/apply-partial-section-protection/',
142
  );
143
  array_push($addons_data, $addon_16);
144
-
145
  $addon_17 = array(
146
  'name' => 'Member Data Exporter',
147
  'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/swpm-data-exporter-addon.png',
@@ -157,7 +157,7 @@ echo '<link type="text/css" rel="stylesheet" href="' . SIMPLE_WP_MEMBERSHIP_URL
157
  'page_url' => 'https://simple-membership-plugin.com/simple-membership-bulk-import-member-data-csv-file/',
158
  );
159
  array_push($addons_data, $addon_18);
160
-
161
  $addon_19 = array(
162
  'name' => 'Display Member Payments',
163
  'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/swpm-member-payments-addon.png',
@@ -165,7 +165,7 @@ echo '<link type="text/css" rel="stylesheet" href="' . SIMPLE_WP_MEMBERSHIP_URL
165
  'page_url' => 'https://simple-membership-plugin.com/simple-membership-member-payments-listing-addon/',
166
  );
167
  array_push($addons_data, $addon_19);
168
-
169
  $addon_20 = array(
170
  'name' => 'AWeber Integration',
171
  'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/swpm-aweber-integration-addon.png',
@@ -173,7 +173,7 @@ echo '<link type="text/css" rel="stylesheet" href="' . SIMPLE_WP_MEMBERSHIP_URL
173
  'page_url' => 'https://simple-membership-plugin.com/simple-membership-aweber-integration-addon/',
174
  );
175
  array_push($addons_data, $addon_20);
176
-
177
  $addon_21 = array(
178
  'name' => 'WP User Import',
179
  'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/wp-user-import.png',
@@ -181,7 +181,7 @@ echo '<link type="text/css" rel="stylesheet" href="' . SIMPLE_WP_MEMBERSHIP_URL
181
  'page_url' => 'https://simple-membership-plugin.com/import-existing-wordpress-users-simple-membership-plugin/',
182
  );
183
  array_push($addons_data, $addon_21);
184
-
185
  $addon_22 = array(
186
  'name' => 'ConvertKit Integration',
187
  'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/swpm-convertkit-integration-addon.png',
@@ -189,7 +189,7 @@ echo '<link type="text/css" rel="stylesheet" href="' . SIMPLE_WP_MEMBERSHIP_URL
189
  'page_url' => 'https://simple-membership-plugin.com/simple-membership-convertkit-integration-addon/',
190
  );
191
  array_push($addons_data, $addon_22);
192
-
193
  $addon_23 = array(
194
  'name' => 'Google First Click Free',
195
  'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/google-first-click-free-addon.png',
@@ -197,7 +197,7 @@ echo '<link type="text/css" rel="stylesheet" href="' . SIMPLE_WP_MEMBERSHIP_URL
197
  'page_url' => 'https://simple-membership-plugin.com/simple-membership-google-first-click-free-integration-addon',
198
  );
199
  array_push($addons_data, $addon_23);
200
-
201
  $addon_24 = array(
202
  'name' => 'Miscellaneous Shortcodes',
203
  'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/swpm-misc-shortcodes-addon.png',
@@ -205,7 +205,7 @@ echo '<link type="text/css" rel="stylesheet" href="' . SIMPLE_WP_MEMBERSHIP_URL
205
  'page_url' => 'https://simple-membership-plugin.com/simple-membership-miscellaneous-shortcodes-addon/',
206
  );
207
  array_push($addons_data, $addon_24);
208
-
209
  $addon_25 = array(
210
  'name' => 'Show Member Info',
211
  'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/show-member-info.png',
@@ -213,23 +213,31 @@ echo '<link type="text/css" rel="stylesheet" href="' . SIMPLE_WP_MEMBERSHIP_URL
213
  'page_url' => 'https://simple-membership-plugin.com/simple-membership-addon-show-member-info/',
214
  );
215
  array_push($addons_data, $addon_25);
216
-
217
  $addon_26 = array(
 
 
 
 
 
 
 
 
218
  'name' => 'Expiry Email Notification',
219
  'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/email-notification-and-broadcast-addon.png',
220
  'description' => 'Allows you to configure and send various expiry email notifications for members.',
221
  'page_url' => 'https://simple-membership-plugin.com/simple-membership-email-notification-broadcast-addon/',
222
  );
223
- array_push($addons_data, $addon_26);
224
-
225
- $addon_27 = array(
226
  'name' => '2 Factor Authentication',
227
  'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/2fa-addon-icon.png',
228
  'description' => 'This addon adds the 2 factor authentication for member login to increase login security.',
229
  'page_url' => 'https://simple-membership-plugin.com/swpm-two-factor-authentication-addon/',
230
  );
231
- array_push($addons_data, $addon_27);
232
-
233
  /*** Show the addons list ***/
234
  foreach ($addons_data as $addon) {
235
  $output .= '<div class="swpm_addon_item_canvas">';
@@ -250,7 +258,7 @@ echo '<link type="text/css" rel="stylesheet" href="' . SIMPLE_WP_MEMBERSHIP_URL
250
 
251
  $output .='<div class="swpm_addon_item_details_link">';
252
  $output .='<a href="' . $addon['page_url'] . '" class="swpm_addon_view_details" target="_blank">View Details</a>';
253
- $output .='</div>'; //end detils link
254
  $output .='</div>'; //end body
255
 
256
  $output .= '</div>'; //end canvas
@@ -259,5 +267,5 @@ echo '<link type="text/css" rel="stylesheet" href="' . SIMPLE_WP_MEMBERSHIP_URL
259
  echo $output;
260
  ?>
261
 
262
- </div></div><!-- end of poststuff and post-body -->
263
  </div><!-- end of .wrap -->
71
  array_push($addons_data, $addon_7);
72
 
73
  $addon_8 = array(
74
+ 'name' => 'WP Express Checkout',
75
+ 'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/wp-express-checkout-integration.png',
76
+ 'description' => 'Allows you to integrate with the Express Checkout plugin to accept membership payments.',
77
+ 'page_url' => 'https://simple-membership-plugin.com/wp-express-checkout-plugin-integration-for-membership-payment/',
78
  );
79
  array_push($addons_data, $addon_8);
80
 
81
  $addon_9 = array(
82
+ 'name' => 'Affiliates Manager',
83
+ 'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/affiliates-manager-integration.png',
84
+ 'description' => 'Allows you to integrate with the Affiliates Manager plugin so you can reward affiliates for sending paid members your way.',
85
+ 'page_url' => 'https://wpaffiliatemanager.com/affiliates-manager-and-simple-membership-integration/',
86
  );
87
  array_push($addons_data, $addon_9);
88
+
89
  $addon_10 = array(
90
  'name' => 'Affiliate Platform',
91
  'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/affiliate-platform-integration.png',
117
  'page_url' => 'https://simple-membership-plugin.com/full-page-protection-addon-simple-membership/',
118
  );
119
  array_push($addons_data, $addon_13);
120
+
121
  $addon_14 = array(
122
  'name' => 'Protect Older Posts',
123
  'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/swpm-older-posts-protection.png',
125
  'page_url' => 'https://simple-membership-plugin.com/simple-membership-protect-older-posts-addon/',
126
  );
127
  array_push($addons_data, $addon_14);
128
+
129
  $addon_15 = array(
130
  'name' => 'Custom Post Protection',
131
  'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/custom-post-type-protection-enhanced.png',
133
  'page_url' => 'https://simple-membership-plugin.com/simple-membership-addon-better-custom-post-type-protection/',
134
  );
135
  array_push($addons_data, $addon_15);
136
+
137
  $addon_16 = array(
138
  'name' => 'Partial Protection',
139
  'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/swpm-partial-protection-addon.png',
141
  'page_url' => 'https://simple-membership-plugin.com/apply-partial-section-protection/',
142
  );
143
  array_push($addons_data, $addon_16);
144
+
145
  $addon_17 = array(
146
  'name' => 'Member Data Exporter',
147
  'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/swpm-data-exporter-addon.png',
157
  'page_url' => 'https://simple-membership-plugin.com/simple-membership-bulk-import-member-data-csv-file/',
158
  );
159
  array_push($addons_data, $addon_18);
160
+
161
  $addon_19 = array(
162
  'name' => 'Display Member Payments',
163
  'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/swpm-member-payments-addon.png',
165
  'page_url' => 'https://simple-membership-plugin.com/simple-membership-member-payments-listing-addon/',
166
  );
167
  array_push($addons_data, $addon_19);
168
+
169
  $addon_20 = array(
170
  'name' => 'AWeber Integration',
171
  'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/swpm-aweber-integration-addon.png',
173
  'page_url' => 'https://simple-membership-plugin.com/simple-membership-aweber-integration-addon/',
174
  );
175
  array_push($addons_data, $addon_20);
176
+
177
  $addon_21 = array(
178
  'name' => 'WP User Import',
179
  'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/wp-user-import.png',
181
  'page_url' => 'https://simple-membership-plugin.com/import-existing-wordpress-users-simple-membership-plugin/',
182
  );
183
  array_push($addons_data, $addon_21);
184
+
185
  $addon_22 = array(
186
  'name' => 'ConvertKit Integration',
187
  'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/swpm-convertkit-integration-addon.png',
189
  'page_url' => 'https://simple-membership-plugin.com/simple-membership-convertkit-integration-addon/',
190
  );
191
  array_push($addons_data, $addon_22);
192
+
193
  $addon_23 = array(
194
  'name' => 'Google First Click Free',
195
  'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/google-first-click-free-addon.png',
197
  'page_url' => 'https://simple-membership-plugin.com/simple-membership-google-first-click-free-integration-addon',
198
  );
199
  array_push($addons_data, $addon_23);
200
+
201
  $addon_24 = array(
202
  'name' => 'Miscellaneous Shortcodes',
203
  'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/swpm-misc-shortcodes-addon.png',
205
  'page_url' => 'https://simple-membership-plugin.com/simple-membership-miscellaneous-shortcodes-addon/',
206
  );
207
  array_push($addons_data, $addon_24);
208
+
209
  $addon_25 = array(
210
  'name' => 'Show Member Info',
211
  'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/show-member-info.png',
213
  'page_url' => 'https://simple-membership-plugin.com/simple-membership-addon-show-member-info/',
214
  );
215
  array_push($addons_data, $addon_25);
216
+
217
  $addon_26 = array(
218
+ 'name' => 'iDevAffiliate',
219
+ 'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/idevaffiliate-integration.png',
220
+ 'description' => 'Allows you to integrate with iDevAffiliates so you can reward affiliates for sending paid members your way.',
221
+ 'page_url' => 'https://simple-membership-plugin.com/simple-membership-and-idevaffiliate-integration/',
222
+ );
223
+ array_push($addons_data, $addon_26);
224
+
225
+ $addon_27 = array(
226
  'name' => 'Expiry Email Notification',
227
  'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/email-notification-and-broadcast-addon.png',
228
  'description' => 'Allows you to configure and send various expiry email notifications for members.',
229
  'page_url' => 'https://simple-membership-plugin.com/simple-membership-email-notification-broadcast-addon/',
230
  );
231
+ array_push($addons_data, $addon_27);
232
+
233
+ $addon_28 = array(
234
  'name' => '2 Factor Authentication',
235
  'thumbnail' => SIMPLE_WP_MEMBERSHIP_URL . '/images/addons/2fa-addon-icon.png',
236
  'description' => 'This addon adds the 2 factor authentication for member login to increase login security.',
237
  'page_url' => 'https://simple-membership-plugin.com/swpm-two-factor-authentication-addon/',
238
  );
239
+ array_push($addons_data, $addon_28);
240
+
241
  /*** Show the addons list ***/
242
  foreach ($addons_data as $addon) {
243
  $output .= '<div class="swpm_addon_item_canvas">';
258
 
259
  $output .='<div class="swpm_addon_item_details_link">';
260
  $output .='<a href="' . $addon['page_url'] . '" class="swpm_addon_view_details" target="_blank">View Details</a>';
261
+ $output .='</div>'; //end detils link
262
  $output .='</div>'; //end body
263
 
264
  $output .= '</div>'; //end canvas
267
  echo $output;
268
  ?>
269
 
270
+ </div></div><!-- end of poststuff and post-body -->
271
  </div><!-- end of .wrap -->