Version Description
- Added a new action hook - swpm_front_end_edit_profile_form_submitted.
- Added a new action hook - swpm_do_init_time_tasks_front_end.
- Translation POT file has been regenerated.
- Apostrophe characters will now be accepted in the name and address fields.
- Fixed the validation error message positioning in the edit profile form when Force Strong Password option is enabled.
Download this release
Release Info
| Developer | mra13 |
| Plugin | |
| Version | 4.1.6 |
| Comparing to | |
| See all releases | |
Code changes from version 4.1.4 to 4.1.6
- classes/class.simple-wp-membership.php +9 -2
- classes/class.swpm-form.php +10 -10
- classes/class.swpm-front-registration.php +4 -1
- classes/class.swpm-init-time-tasks.php +3 -0
- classes/class.swpm-settings.php +13 -0
- css/swpm.common.css +2 -0
- js/swpm.password-toggle.js +22 -0
- languages/simple-membership-nl_NL.mo +0 -0
- languages/simple-membership-nl_NL.po +203 -433
- languages/simple-membership.pot +311 -291
- readme.txt +15 -1
- simple-wp-membership.php +2 -2
- views/login.php +16 -2
- views/payments/payment-gateway/admin_paypal_smart_checkout_button.php +6 -6
classes/class.simple-wp-membership.php
CHANGED
|
@@ -185,11 +185,11 @@ class SimpleWpMembership {
|
|
| 185 |
}
|
| 186 |
|
| 187 |
if (isset($content['sizes'])) {
|
| 188 |
-
if ($content['sizes']['thumbnail']) {
|
| 189 |
$content['sizes']['thumbnail']['file'] = 'restricted-icon.png';
|
| 190 |
$content['sizes']['thumbnail']['mime-type'] = 'image/png';
|
| 191 |
}
|
| 192 |
-
if ($content['sizes']['medium']) {
|
| 193 |
$content['sizes']['medium']['file'] = 'restricted-icon.png';
|
| 194 |
$content['sizes']['medium']['mime-type'] = 'image/png';
|
| 195 |
}
|
|
@@ -386,6 +386,11 @@ class SimpleWpMembership {
|
|
| 386 |
//Load the template for logged-in member
|
| 387 |
SwpmUtilsTemplate::swpm_load_template('loggedin.php', false);
|
| 388 |
} else {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 389 |
//Load the login widget template
|
| 390 |
SwpmUtilsTemplate::swpm_load_template('login.php', false);
|
| 391 |
}
|
|
@@ -710,6 +715,8 @@ class SimpleWpMembership {
|
|
| 710 |
wp_register_script('jquery.validationEngine', SIMPLE_WP_MEMBERSHIP_URL . '/js/jquery.validationEngine.js', array('jquery'), SIMPLE_WP_MEMBERSHIP_VER);
|
| 711 |
wp_register_script('jquery.validationEngine-en', SIMPLE_WP_MEMBERSHIP_URL . '/js/jquery.validationEngine-en.js', array('jquery'), SIMPLE_WP_MEMBERSHIP_VER);
|
| 712 |
wp_register_script('swpm.validationEngine-localization', SIMPLE_WP_MEMBERSHIP_URL . '/js/swpm.validationEngine-localization.js', array('jquery'), SIMPLE_WP_MEMBERSHIP_VER);
|
|
|
|
|
|
|
| 713 |
}
|
| 714 |
|
| 715 |
public static function enqueue_validation_scripts($add_params = array()) {
|
| 185 |
}
|
| 186 |
|
| 187 |
if (isset($content['sizes'])) {
|
| 188 |
+
if (isset($content['sizes']['thumbnail'])) {
|
| 189 |
$content['sizes']['thumbnail']['file'] = 'restricted-icon.png';
|
| 190 |
$content['sizes']['thumbnail']['mime-type'] = 'image/png';
|
| 191 |
}
|
| 192 |
+
if (isset($content['sizes']['medium'])) {
|
| 193 |
$content['sizes']['medium']['file'] = 'restricted-icon.png';
|
| 194 |
$content['sizes']['medium']['mime-type'] = 'image/png';
|
| 195 |
}
|
| 386 |
//Load the template for logged-in member
|
| 387 |
SwpmUtilsTemplate::swpm_load_template('loggedin.php', false);
|
| 388 |
} else {
|
| 389 |
+
//Load JS only if option is set
|
| 390 |
+
$display_password_toggle = SwpmSettings::get_instance()->get_value('password-visibility-login-form');
|
| 391 |
+
if ( !empty( $display_password_toggle ) ){
|
| 392 |
+
wp_enqueue_script('swpm.password-toggle');
|
| 393 |
+
}
|
| 394 |
//Load the login widget template
|
| 395 |
SwpmUtilsTemplate::swpm_load_template('login.php', false);
|
| 396 |
}
|
| 715 |
wp_register_script('jquery.validationEngine', SIMPLE_WP_MEMBERSHIP_URL . '/js/jquery.validationEngine.js', array('jquery'), SIMPLE_WP_MEMBERSHIP_VER);
|
| 716 |
wp_register_script('jquery.validationEngine-en', SIMPLE_WP_MEMBERSHIP_URL . '/js/jquery.validationEngine-en.js', array('jquery'), SIMPLE_WP_MEMBERSHIP_VER);
|
| 717 |
wp_register_script('swpm.validationEngine-localization', SIMPLE_WP_MEMBERSHIP_URL . '/js/swpm.validationEngine-localization.js', array('jquery'), SIMPLE_WP_MEMBERSHIP_VER);
|
| 718 |
+
wp_register_script('swpm.password-toggle', SIMPLE_WP_MEMBERSHIP_URL . '/js/swpm.password-toggle.js', array('jquery'), SIMPLE_WP_MEMBERSHIP_VER);
|
| 719 |
+
|
| 720 |
}
|
| 721 |
|
| 722 |
public static function enqueue_validation_scripts($add_params = array()) {
|
classes/class.swpm-form.php
CHANGED
|
@@ -19,7 +19,7 @@ class SwpmForm {
|
|
| 19 |
}
|
| 20 |
}
|
| 21 |
protected function validate_wp_user_email(){
|
| 22 |
-
$user_name = isset($_POST['user_name']) ? sanitize_text_field($_POST['user_name']) : '';
|
| 23 |
$email = filter_input(INPUT_POST, 'email', FILTER_UNSAFE_RAW);
|
| 24 |
if (empty($user_name)) {
|
| 25 |
return;
|
|
@@ -43,7 +43,7 @@ class SwpmForm {
|
|
| 43 |
protected function user_name() {
|
| 44 |
global $wpdb;
|
| 45 |
if (!empty($this->fields['user_name'])){return;}
|
| 46 |
-
$user_name = isset($_POST['user_name']) ? sanitize_text_field($_POST['user_name']) : '';
|
| 47 |
if (empty($user_name)) {
|
| 48 |
$this->errors['user_name'] = SwpmUtils::_('Username is required');
|
| 49 |
return;
|
|
@@ -65,12 +65,12 @@ class SwpmForm {
|
|
| 65 |
}
|
| 66 |
|
| 67 |
protected function first_name() {
|
| 68 |
-
$first_name = isset($_POST['first_name']) ? sanitize_text_field($_POST['first_name']) : '';
|
| 69 |
$this->sanitized['first_name'] = sanitize_text_field($first_name);
|
| 70 |
}
|
| 71 |
|
| 72 |
protected function last_name() {
|
| 73 |
-
$last_name = isset($_POST['last_name']) ? sanitize_text_field($_POST['last_name']) : '';
|
| 74 |
$this->sanitized['last_name'] = sanitize_text_field($last_name);
|
| 75 |
}
|
| 76 |
|
|
@@ -132,32 +132,32 @@ class SwpmForm {
|
|
| 132 |
}
|
| 133 |
|
| 134 |
protected function address_street() {
|
| 135 |
-
$address_street = isset($_POST['address_street']) ? sanitize_text_field($_POST['address_street']) : '';
|
| 136 |
$this->sanitized['address_street'] = wp_kses($address_street, array());
|
| 137 |
}
|
| 138 |
|
| 139 |
protected function address_city() {
|
| 140 |
-
$address_city = isset($_POST['address_city']) ? sanitize_text_field($_POST['address_city']) : '';
|
| 141 |
$this->sanitized['address_city'] = wp_kses($address_city, array());
|
| 142 |
}
|
| 143 |
|
| 144 |
protected function address_state() {
|
| 145 |
-
$address_state = isset($_POST['address_state']) ? sanitize_text_field($_POST['address_state']) : '';
|
| 146 |
$this->sanitized['address_state'] = wp_kses($address_state, array());
|
| 147 |
}
|
| 148 |
|
| 149 |
protected function address_zipcode() {
|
| 150 |
-
$address_zipcode = isset($_POST['address_zipcode']) ? sanitize_text_field($_POST['address_zipcode']) : '';
|
| 151 |
$this->sanitized['address_zipcode'] = wp_kses($address_zipcode, array());
|
| 152 |
}
|
| 153 |
|
| 154 |
protected function country() {
|
| 155 |
-
$country = isset($_POST['country']) ? sanitize_text_field($_POST['country']) : '';
|
| 156 |
$this->sanitized['country'] = wp_kses($country, array());
|
| 157 |
}
|
| 158 |
|
| 159 |
protected function company_name() {
|
| 160 |
-
$company_name = isset($_POST['company_name']) ? sanitize_text_field($_POST['company_name']) : '';
|
| 161 |
$this->sanitized['company_name'] = $company_name;
|
| 162 |
}
|
| 163 |
|
| 19 |
}
|
| 20 |
}
|
| 21 |
protected function validate_wp_user_email(){
|
| 22 |
+
$user_name = isset($_POST['user_name']) ? sanitize_text_field(stripslashes($_POST['user_name'])) : '';
|
| 23 |
$email = filter_input(INPUT_POST, 'email', FILTER_UNSAFE_RAW);
|
| 24 |
if (empty($user_name)) {
|
| 25 |
return;
|
| 43 |
protected function user_name() {
|
| 44 |
global $wpdb;
|
| 45 |
if (!empty($this->fields['user_name'])){return;}
|
| 46 |
+
$user_name = isset($_POST['user_name']) ? sanitize_text_field(stripslashes($_POST['user_name'])) : '';
|
| 47 |
if (empty($user_name)) {
|
| 48 |
$this->errors['user_name'] = SwpmUtils::_('Username is required');
|
| 49 |
return;
|
| 65 |
}
|
| 66 |
|
| 67 |
protected function first_name() {
|
| 68 |
+
$first_name = isset($_POST['first_name']) ? sanitize_text_field(stripslashes($_POST['first_name'])) : '';
|
| 69 |
$this->sanitized['first_name'] = sanitize_text_field($first_name);
|
| 70 |
}
|
| 71 |
|
| 72 |
protected function last_name() {
|
| 73 |
+
$last_name = isset($_POST['last_name']) ? sanitize_text_field(stripslashes($_POST['last_name'])) : '';
|
| 74 |
$this->sanitized['last_name'] = sanitize_text_field($last_name);
|
| 75 |
}
|
| 76 |
|
| 132 |
}
|
| 133 |
|
| 134 |
protected function address_street() {
|
| 135 |
+
$address_street = isset($_POST['address_street']) ? sanitize_text_field(stripslashes($_POST['address_street'])) : '';
|
| 136 |
$this->sanitized['address_street'] = wp_kses($address_street, array());
|
| 137 |
}
|
| 138 |
|
| 139 |
protected function address_city() {
|
| 140 |
+
$address_city = isset($_POST['address_city']) ? sanitize_text_field(stripslashes($_POST['address_city'])) : '';
|
| 141 |
$this->sanitized['address_city'] = wp_kses($address_city, array());
|
| 142 |
}
|
| 143 |
|
| 144 |
protected function address_state() {
|
| 145 |
+
$address_state = isset($_POST['address_state']) ? sanitize_text_field(stripslashes($_POST['address_state'])) : '';
|
| 146 |
$this->sanitized['address_state'] = wp_kses($address_state, array());
|
| 147 |
}
|
| 148 |
|
| 149 |
protected function address_zipcode() {
|
| 150 |
+
$address_zipcode = isset($_POST['address_zipcode']) ? sanitize_text_field(stripslashes($_POST['address_zipcode'])) : '';
|
| 151 |
$this->sanitized['address_zipcode'] = wp_kses($address_zipcode, array());
|
| 152 |
}
|
| 153 |
|
| 154 |
protected function country() {
|
| 155 |
+
$country = isset($_POST['country']) ? sanitize_text_field(stripslashes($_POST['country'])) : '';
|
| 156 |
$this->sanitized['country'] = wp_kses($country, array());
|
| 157 |
}
|
| 158 |
|
| 159 |
protected function company_name() {
|
| 160 |
+
$company_name = isset($_POST['company_name']) ? sanitize_text_field(stripslashes($_POST['company_name'])) : '';
|
| 161 |
$this->sanitized['company_name'] = $company_name;
|
| 162 |
}
|
| 163 |
|
classes/class.swpm-front-registration.php
CHANGED
|
@@ -297,7 +297,10 @@ class SwpmFrontRegistration extends SwpmRegistration {
|
|
| 297 |
//Nonce check failed.
|
| 298 |
wp_die( SwpmUtils::_( 'Error! Nonce verification failed for front end profile edit.' ) );
|
| 299 |
}
|
| 300 |
-
|
|
|
|
|
|
|
|
|
|
| 301 |
$user_data = (array) $auth->userData;
|
| 302 |
unset( $user_data['permitted'] );
|
| 303 |
$form = new SwpmForm( $user_data );
|
| 297 |
//Nonce check failed.
|
| 298 |
wp_die( SwpmUtils::_( 'Error! Nonce verification failed for front end profile edit.' ) );
|
| 299 |
}
|
| 300 |
+
|
| 301 |
+
//Trigger action hook
|
| 302 |
+
do_action( 'swpm_front_end_edit_profile_form_submitted' );
|
| 303 |
+
|
| 304 |
$user_data = (array) $auth->userData;
|
| 305 |
unset( $user_data['permitted'] );
|
| 306 |
$form = new SwpmForm( $user_data );
|
classes/class.swpm-init-time-tasks.php
CHANGED
|
@@ -27,6 +27,9 @@ class SwpmInitTimeTasks {
|
|
| 27 |
|
| 28 |
//Do frontend-only init time tasks
|
| 29 |
if ( ! is_admin() ) {
|
|
|
|
|
|
|
|
|
|
| 30 |
SwpmAuth::get_instance();
|
| 31 |
|
| 32 |
$this->check_and_handle_auto_login();
|
| 27 |
|
| 28 |
//Do frontend-only init time tasks
|
| 29 |
if ( ! is_admin() ) {
|
| 30 |
+
//Trigger an action hook
|
| 31 |
+
do_action('swpm_do_init_time_tasks_front_end');
|
| 32 |
+
|
| 33 |
SwpmAuth::get_instance();
|
| 34 |
|
| 35 |
$this->check_and_handle_auto_login();
|
classes/class.swpm-settings.php
CHANGED
|
@@ -160,6 +160,18 @@ class SwpmSettings {
|
|
| 160 |
'message' => SwpmUtils::_( 'Enable this option if you only want the members of the site to be able to post a comment.' ),
|
| 161 |
)
|
| 162 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 163 |
|
| 164 |
/*
|
| 165 |
add_settings_field('protect-everything', SwpmUtils::_('Protect Everything'),
|
|
@@ -1119,6 +1131,7 @@ class SwpmSettings {
|
|
| 1119 |
$output['join-us-page-url'] = esc_url( $input['join-us-page-url'] );
|
| 1120 |
$output['default-account-status'] = esc_attr( $input['default-account-status'] );
|
| 1121 |
$output['members-login-to-comment'] = isset( $input['members-login-to-comment'] ) ? esc_attr( $input['members-login-to-comment'] ) : '';
|
|
|
|
| 1122 |
|
| 1123 |
return $output;
|
| 1124 |
}
|
| 160 |
'message' => SwpmUtils::_( 'Enable this option if you only want the members of the site to be able to post a comment.' ),
|
| 161 |
)
|
| 162 |
);
|
| 163 |
+
|
| 164 |
+
add_settings_field(
|
| 165 |
+
'password-visibility-login-form',
|
| 166 |
+
SwpmUtils::_( 'Enable Toggle Password Visibility in Login Form' ),
|
| 167 |
+
array( &$this, 'checkbox_callback' ),
|
| 168 |
+
'simple_wp_membership_settings',
|
| 169 |
+
'general-settings',
|
| 170 |
+
array(
|
| 171 |
+
'item' => 'password-visibility-login-form',
|
| 172 |
+
'message' => SwpmUtils::_( 'You can use it to show a toggle password visibility option in the login form. It will add a Show Password checkbox.' ),
|
| 173 |
+
)
|
| 174 |
+
);
|
| 175 |
|
| 176 |
/*
|
| 177 |
add_settings_field('protect-everything', SwpmUtils::_('Protect Everything'),
|
| 1131 |
$output['join-us-page-url'] = esc_url( $input['join-us-page-url'] );
|
| 1132 |
$output['default-account-status'] = esc_attr( $input['default-account-status'] );
|
| 1133 |
$output['members-login-to-comment'] = isset( $input['members-login-to-comment'] ) ? esc_attr( $input['members-login-to-comment'] ) : '';
|
| 1134 |
+
$output['password-visibility-login-form'] = isset( $input['password-visibility-login-form'] ) ? esc_attr( $input['password-visibility-login-form'] ) : '';
|
| 1135 |
|
| 1136 |
return $output;
|
| 1137 |
}
|
css/swpm.common.css
CHANGED
|
@@ -134,6 +134,7 @@
|
|
| 134 |
/* Edit profile form CSS */
|
| 135 |
.swpm-edit-profile-form input[type="text"], .swpm-edit-profile-form input[type="password"] {
|
| 136 |
width: 95%;
|
|
|
|
| 137 |
}
|
| 138 |
.swpm-edit-profile-form select {
|
| 139 |
width: 95%;
|
|
@@ -165,3 +166,4 @@
|
|
| 165 |
margin: 0;
|
| 166 |
padding-bottom: 5px;
|
| 167 |
}
|
|
|
| 134 |
/* Edit profile form CSS */
|
| 135 |
.swpm-edit-profile-form input[type="text"], .swpm-edit-profile-form input[type="password"] {
|
| 136 |
width: 95%;
|
| 137 |
+
position: relative; /* needed for the validation message positioning */
|
| 138 |
}
|
| 139 |
.swpm-edit-profile-form select {
|
| 140 |
width: 95%;
|
| 166 |
margin: 0;
|
| 167 |
padding-bottom: 5px;
|
| 168 |
}
|
| 169 |
+
|
js/swpm.password-toggle.js
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
(function ($) {
|
| 2 |
+
$(document).ready(function () {
|
| 3 |
+
$("#swpm-password-toggle-checkbox").attr("checked",false);
|
| 4 |
+
|
| 5 |
+
|
| 6 |
+
$("#swpm-password-toggle-checkbox").change(function(e){
|
| 7 |
+
|
| 8 |
+
var field_state = $(this).data("state");
|
| 9 |
+
|
| 10 |
+
if(field_state=="password-hidden")
|
| 11 |
+
{
|
| 12 |
+
$(this).data("state","password-visible");
|
| 13 |
+
$("#swpm_password").attr("type","text");
|
| 14 |
+
}
|
| 15 |
+
else{
|
| 16 |
+
$(this).data("state","password-hidden");
|
| 17 |
+
$("#swpm_password").attr("type","password");
|
| 18 |
+
}
|
| 19 |
+
|
| 20 |
+
});
|
| 21 |
+
});
|
| 22 |
+
})(jQuery);
|
languages/simple-membership-nl_NL.mo
CHANGED
|
Binary file
|
languages/simple-membership-nl_NL.po
CHANGED
|
@@ -2,14 +2,14 @@ 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:
|
| 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
|
| 13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
| 14 |
"X-Poedit-Basepath: ../classes\n"
|
| 15 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
@@ -96,7 +96,7 @@ msgstr "Controleren, even geduld"
|
|
| 96 |
|
| 97 |
#: classes/class.simple-wp-membership.php:653
|
| 98 |
msgid "Invalid email address"
|
| 99 |
-
msgstr "Ongeldig
|
| 100 |
|
| 101 |
#: classes/class.simple-wp-membership.php:656
|
| 102 |
msgid "This field is required"
|
|
@@ -172,10 +172,8 @@ msgstr "Je moet inloggen om deze inhoud te bekijken. "
|
|
| 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 "
|
| 179 |
|
| 180 |
#: classes/class.swpm-access-control.php:66
|
| 181 |
#: classes/class.swpm-access-control.php:138
|
|
@@ -229,10 +227,8 @@ msgid "Invalid Email Address"
|
|
| 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 "
|
| 236 |
|
| 237 |
#: classes/class.swpm-ajax.php:30
|
| 238 |
msgid "Name contains invalid character"
|
|
@@ -247,10 +243,12 @@ 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."
|
|
@@ -275,10 +273,8 @@ msgid ""
|
|
| 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 "
|
| 282 |
|
| 283 |
#: classes/class.swpm-auth.php:93
|
| 284 |
msgid "User Not Found."
|
|
@@ -312,7 +308,7 @@ msgstr ""
|
|
| 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:"
|
|
@@ -349,16 +345,12 @@ 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
|
| 356 |
|
| 357 |
#: classes/class.swpm-category-list.php:34
|
| 358 |
-
#, fuzzy
|
| 359 |
-
#| msgid "Company Name"
|
| 360 |
msgid "Category Name"
|
| 361 |
-
msgstr "
|
| 362 |
|
| 363 |
#: classes/class.swpm-category-list.php:35
|
| 364 |
msgid "Category Type (Taxonomy)"
|
|
@@ -377,35 +369,27 @@ 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
|
| 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 "
|
| 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 "
|
| 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 ""
|
| 407 |
-
"Wordpress
|
| 408 |
-
"overeen."
|
| 409 |
|
| 410 |
#: classes/class.swpm-form.php:31
|
| 411 |
msgid ""
|
|
@@ -418,8 +402,8 @@ msgstr ""
|
|
| 418 |
msgid ""
|
| 419 |
"Wordpress account exists with given email. But given username doesn't match."
|
| 420 |
msgstr ""
|
| 421 |
-
"Wordpress
|
| 422 |
-
"overeen."
|
| 423 |
|
| 424 |
#: classes/class.swpm-form.php:38
|
| 425 |
msgid ""
|
|
@@ -446,19 +430,19 @@ msgstr "Wachtwoord is vereist"
|
|
| 446 |
|
| 447 |
#: classes/class.swpm-form.php:90
|
| 448 |
msgid "Password mismatch"
|
| 449 |
-
msgstr "
|
| 450 |
|
| 451 |
#: classes/class.swpm-form.php:101
|
| 452 |
msgid "Email is required"
|
| 453 |
-
msgstr "
|
| 454 |
|
| 455 |
#: classes/class.swpm-form.php:105
|
| 456 |
msgid "Email is invalid"
|
| 457 |
-
msgstr "
|
| 458 |
|
| 459 |
#: classes/class.swpm-form.php:121
|
| 460 |
msgid "Email is already used."
|
| 461 |
-
msgstr "
|
| 462 |
|
| 463 |
#: classes/class.swpm-form.php:179
|
| 464 |
msgid "Member since field is invalid"
|
|
@@ -474,11 +458,11 @@ msgstr "Geslacht veld is ongeldig"
|
|
| 474 |
|
| 475 |
#: classes/class.swpm-form.php:211
|
| 476 |
msgid "Account state field is invalid"
|
| 477 |
-
msgstr "
|
| 478 |
|
| 479 |
#: classes/class.swpm-form.php:218
|
| 480 |
msgid "Invalid membership level"
|
| 481 |
-
msgstr "Ongeldige
|
| 482 |
|
| 483 |
#: classes/class.swpm-front-registration.php:33
|
| 484 |
msgid ""
|
|
@@ -565,16 +549,12 @@ msgstr ""
|
|
| 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 "
|
| 578 |
|
| 579 |
#: classes/class.swpm-front-registration.php:309
|
| 580 |
msgid "Email address not valid."
|
|
@@ -591,7 +571,7 @@ 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
|
| 595 |
|
| 596 |
#: classes/class.swpm-front-registration.php:371
|
| 597 |
msgid "Can't find member account."
|
|
@@ -599,10 +579,8 @@ 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
|
| 606 |
|
| 607 |
#: classes/class.swpm-front-registration.php:376
|
| 608 |
#: classes/class.swpm-front-registration.php:426
|
|
@@ -677,7 +655,7 @@ msgstr "Achternaam"
|
|
| 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 "
|
| 681 |
|
| 682 |
#: classes/class.swpm-members.php:25 views/admin_member_form_common_part.php:11
|
| 683 |
msgid "Access Starts"
|
|
@@ -703,10 +681,8 @@ 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"
|
|
@@ -722,39 +698,31 @@ 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
|
| 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 "
|
| 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 "
|
| 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 "
|
| 758 |
|
| 759 |
#: classes/class.swpm-members.php:465
|
| 760 |
msgid ""
|
|
@@ -769,10 +737,8 @@ msgid ""
|
|
| 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 "
|
| 776 |
|
| 777 |
#: classes/class.swpm-members.php:476
|
| 778 |
msgid "Select Current Level"
|
|
@@ -789,22 +755,16 @@ 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
|
| 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 "
|
| 802 |
|
| 803 |
#: classes/class.swpm-members.php:498
|
| 804 |
-
#, fuzzy
|
| 805 |
-
#| msgid "Membership Level"
|
| 806 |
msgid "Bulk Change Membership Level"
|
| 807 |
-
msgstr "
|
| 808 |
|
| 809 |
#: classes/class.swpm-members.php:508
|
| 810 |
msgid "Bulk Update Access Starts Date of Members"
|
|
@@ -825,10 +785,8 @@ msgid ""
|
|
| 825 |
msgstr ""
|
| 826 |
|
| 827 |
#: classes/class.swpm-members.php:523
|
| 828 |
-
#, fuzzy
|
| 829 |
-
#| msgid "Select All"
|
| 830 |
msgid "Select Level"
|
| 831 |
-
msgstr "
|
| 832 |
|
| 833 |
#: classes/class.swpm-members.php:526
|
| 834 |
msgid ""
|
|
@@ -841,10 +799,8 @@ 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 "
|
| 848 |
|
| 849 |
#: classes/class.swpm-members.php:576
|
| 850 |
msgid "Simple WP Membership::Members"
|
|
@@ -860,10 +816,8 @@ 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 "
|
| 867 |
|
| 868 |
#: classes/class.swpm-membership-level.php:52
|
| 869 |
msgid ""
|
|
@@ -881,10 +835,8 @@ msgid ""
|
|
| 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 "
|
| 888 |
|
| 889 |
#: classes/class.swpm-membership-levels.php:22
|
| 890 |
msgid "Role"
|
|
@@ -895,10 +847,8 @@ 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 "
|
| 902 |
|
| 903 |
#: classes/class.swpm-membership-levels.php:197
|
| 904 |
msgid ""
|
|
@@ -916,26 +866,20 @@ 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 "
|
| 923 |
|
| 924 |
#: classes/class.swpm-membership-levels.php:267
|
| 925 |
-
#, fuzzy
|
| 926 |
-
#| msgid "Manage Content Production"
|
| 927 |
msgid "Manage Content Protection"
|
| 928 |
-
msgstr "Beheer
|
| 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 "
|
| 939 |
|
| 940 |
#: classes/class.swpm-post-list.php:43 classes/class.swpm-post-list.php:52
|
| 941 |
#: classes/class.swpm-post-list.php:62
|
|
@@ -945,35 +889,30 @@ 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 "
|
| 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
|
| 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 "
|
| 977 |
|
| 978 |
#: classes/class.swpm-post-list.php:230
|
| 979 |
msgid "No items found."
|
|
@@ -984,12 +923,12 @@ 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 "
|
| 993 |
|
| 994 |
#: classes/class.swpm-settings.php:26 classes/class.swpm-settings.php:54
|
| 995 |
msgid "General Settings"
|
|
@@ -1058,11 +997,6 @@ 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."
|
|
@@ -1072,7 +1006,7 @@ msgstr ""
|
|
| 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 ""
|
|
@@ -1109,12 +1043,12 @@ 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 "
|
|
|
|
|
|
|
| 1118 |
|
| 1119 |
#: classes/class.swpm-settings.php:83
|
| 1120 |
msgid "Pages Settings"
|
|
@@ -1160,9 +1094,8 @@ 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 "
|
| 1166 |
|
| 1167 |
#: classes/class.swpm-settings.php:101
|
| 1168 |
msgid "View login related debug log file by clicking "
|
|
@@ -1185,14 +1118,12 @@ 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 "
|
| 1192 |
|
| 1193 |
#: classes/class.swpm-settings.php:120
|
| 1194 |
msgid "Email Misc. Settings"
|
| 1195 |
-
msgstr "Diverse
|
| 1196 |
|
| 1197 |
#: classes/class.swpm-settings.php:122
|
| 1198 |
msgid "From Email Address"
|
|
@@ -1200,19 +1131,19 @@ msgstr "E-mailadres afzender"
|
|
| 1200 |
|
| 1201 |
#: classes/class.swpm-settings.php:126
|
| 1202 |
msgid "Email Settings (Prompt to Complete Registration )"
|
| 1203 |
-
msgstr "
|
| 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 "
|
| 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 "
|
| 1216 |
|
| 1217 |
#: classes/class.swpm-settings.php:133
|
| 1218 |
msgid ""
|
|
@@ -1247,7 +1178,7 @@ msgstr ""
|
|
| 1247 |
|
| 1248 |
#: classes/class.swpm-settings.php:139
|
| 1249 |
msgid "Email Settings (Registration Complete)"
|
| 1250 |
-
msgstr "
|
| 1251 |
|
| 1252 |
#: classes/class.swpm-settings.php:144
|
| 1253 |
msgid "Send Notification to Admin"
|
|
@@ -1263,17 +1194,15 @@ msgstr ""
|
|
| 1263 |
|
| 1264 |
#: classes/class.swpm-settings.php:146
|
| 1265 |
msgid "Admin Email Address"
|
| 1266 |
-
msgstr "
|
| 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 "
|
| 1277 |
|
| 1278 |
#: classes/class.swpm-settings.php:153
|
| 1279 |
msgid "Send Email to Member When Added via Admin Dashboard"
|
|
@@ -1286,19 +1215,15 @@ msgstr "E-mail Instellingen (Wachtwoord herstel)"
|
|
| 1286 |
|
| 1287 |
#: classes/class.swpm-settings.php:162
|
| 1288 |
msgid " Email Settings (Account Upgrade Notification)"
|
| 1289 |
-
msgstr "
|
| 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 "
|
| 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 "
|
| 1302 |
|
| 1303 |
#: classes/class.swpm-settings.php:189
|
| 1304 |
msgid "Enable Expired Account Login"
|
|
@@ -1315,10 +1240,8 @@ msgstr ""
|
|
| 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
|
| 1322 |
|
| 1323 |
#: classes/class.swpm-settings.php:193
|
| 1324 |
msgid ""
|
|
@@ -1328,10 +1251,8 @@ msgid ""
|
|
| 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 "
|
| 1335 |
|
| 1336 |
#: classes/class.swpm-settings.php:196
|
| 1337 |
msgid ""
|
|
@@ -1401,10 +1322,8 @@ msgid ""
|
|
| 1401 |
msgstr ""
|
| 1402 |
|
| 1403 |
#: classes/class.swpm-settings.php:213
|
| 1404 |
-
#, fuzzy
|
| 1405 |
-
#| msgid "Default WordPress Role"
|
| 1406 |
msgid "Use WordPress Timezone"
|
| 1407 |
-
msgstr "
|
| 1408 |
|
| 1409 |
#: classes/class.swpm-settings.php:214
|
| 1410 |
msgid ""
|
|
@@ -1450,10 +1369,8 @@ 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 "
|
| 1457 |
|
| 1458 |
#: classes/class.swpm-settings.php:233
|
| 1459 |
msgid ""
|
|
@@ -1462,10 +1379,8 @@ msgid ""
|
|
| 1462 |
msgstr ""
|
| 1463 |
|
| 1464 |
#: classes/class.swpm-settings.php:236
|
| 1465 |
-
#, fuzzy
|
| 1466 |
-
#| msgid "Membership Level"
|
| 1467 |
msgid "Default Membership Level"
|
| 1468 |
-
msgstr "
|
| 1469 |
|
| 1470 |
#: classes/class.swpm-settings.php:239
|
| 1471 |
msgid ""
|
|
@@ -1481,10 +1396,8 @@ msgid ""
|
|
| 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 "
|
| 1488 |
|
| 1489 |
#: classes/class.swpm-settings.php:248
|
| 1490 |
msgid ""
|
|
@@ -1499,20 +1412,16 @@ 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 "
|
| 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 "
|
| 1516 |
|
| 1517 |
#: classes/class.swpm-settings.php:256
|
| 1518 |
msgid ""
|
|
@@ -1526,20 +1435,17 @@ 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 "
|
|
|
|
| 1533 |
|
| 1534 |
#: classes/class.swpm-settings.php:259
|
| 1535 |
-
#, fuzzy
|
| 1536 |
-
#| msgid "Edit Profile Page URL"
|
| 1537 |
msgid "Privacy Policy Page URL"
|
| 1538 |
-
msgstr "
|
| 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
|
|
@@ -1547,10 +1453,8 @@ 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."
|
|
@@ -1563,10 +1467,8 @@ msgid ""
|
|
| 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
|
| 1570 |
|
| 1571 |
#: classes/class.swpm-settings.php:371
|
| 1572 |
msgid ""
|
|
@@ -1588,10 +1490,8 @@ msgid ""
|
|
| 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 "
|
| 1595 |
|
| 1596 |
#: classes/class.swpm-settings.php:386
|
| 1597 |
msgid ""
|
|
@@ -1663,10 +1563,8 @@ 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 "
|
| 1670 |
|
| 1671 |
#: classes/class.swpm-utils-misc.php:50
|
| 1672 |
msgid "Registration"
|
|
@@ -1689,13 +1587,11 @@ msgstr "Wachtwoord herstel"
|
|
| 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 "
|
| 1699 |
|
| 1700 |
#: classes/class.swpm-utils-misc.php:274
|
| 1701 |
msgid "Not a Member?"
|
|
@@ -1706,18 +1602,12 @@ 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)"
|
|
@@ -1725,7 +1615,7 @@ 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"
|
|
@@ -1741,19 +1631,19 @@ 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"
|
|
@@ -1780,10 +1670,8 @@ 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
|
| 1787 |
|
| 1788 |
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:79
|
| 1789 |
msgid "Button Shortcode"
|
|
@@ -1800,21 +1688,17 @@ 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 "
|
| 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 "
|
| 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
|
|
@@ -1828,7 +1712,7 @@ msgstr "Rij ID"
|
|
| 1828 |
#: classes/admin-includes/class.swpm-payments-list-table.php:77
|
| 1829 |
#: views/forgot_password.php:5
|
| 1830 |
msgid "Email Address"
|
| 1831 |
-
msgstr "
|
| 1832 |
|
| 1833 |
#: classes/admin-includes/class.swpm-payments-list-table.php:80
|
| 1834 |
msgid "Member Profile"
|
|
@@ -1839,10 +1723,8 @@ 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 "
|
| 1846 |
|
| 1847 |
#: classes/admin-includes/class.swpm-payments-list-table.php:84
|
| 1848 |
msgid "Amount"
|
|
@@ -1883,10 +1765,8 @@ 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
|
|
@@ -1900,10 +1780,8 @@ 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
|
|
@@ -1951,16 +1829,12 @@ 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 "
|
| 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
|
|
@@ -1973,15 +1847,15 @@ 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"
|
|
@@ -2001,7 +1875,7 @@ msgstr "(vereist)"
|
|
| 2001 |
|
| 2002 |
#: views/admin_add.php:15 views/admin_edit.php:40
|
| 2003 |
msgid "E-mail"
|
| 2004 |
-
msgstr "
|
| 2005 |
|
| 2006 |
#: views/admin_add.php:19
|
| 2007 |
msgid "(twice, required)"
|
|
@@ -2042,10 +1916,8 @@ 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
|
| 2049 |
|
| 2050 |
#: views/admin_add_level.php:7
|
| 2051 |
msgid "Create new membership level."
|
|
@@ -2061,7 +1933,7 @@ msgstr "Standaard WordPress Rol"
|
|
| 2061 |
|
| 2062 |
#: views/admin_add_level.php:20 views/admin_edit_level.php:24
|
| 2063 |
msgid "Access Duration"
|
| 2064 |
-
msgstr "
|
| 2065 |
|
| 2066 |
#: views/admin_add_level.php:23
|
| 2067 |
msgid "No Expiry (Access for this level will not expire until cancelled"
|
|
@@ -2100,10 +1972,8 @@ 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
|
| 2107 |
|
| 2108 |
#: views/admin_add_level.php:43
|
| 2109 |
msgid ""
|
|
@@ -2113,10 +1983,8 @@ msgid ""
|
|
| 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 "
|
| 2120 |
|
| 2121 |
#: views/admin_add_level.php:45 views/admin_edit_level.php:53
|
| 2122 |
msgid "Note:"
|
|
@@ -2161,22 +2029,16 @@ 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 "
|
| 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
|
| 2180 |
|
| 2181 |
#: views/admin_category_list.php:23 views/admin_post_list.php:33
|
| 2182 |
#: views/edit.php:83
|
|
@@ -2206,10 +2068,8 @@ msgid ""
|
|
| 2206 |
msgstr ""
|
| 2207 |
|
| 2208 |
#: views/admin_edit.php:60
|
| 2209 |
-
#, fuzzy
|
| 2210 |
-
#| msgid "Plugin Documentation"
|
| 2211 |
msgid "this documentation"
|
| 2212 |
-
msgstr "
|
| 2213 |
|
| 2214 |
#: views/admin_edit.php:61
|
| 2215 |
msgid " to learn how to do it."
|
|
@@ -2230,10 +2090,8 @@ 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 "
|
| 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."
|
|
@@ -2244,33 +2102,25 @@ 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 "
|
| 2251 |
|
| 2252 |
#: views/admin_edit.php:102
|
| 2253 |
-
#, fuzzy
|
| 2254 |
-
#| msgid "Member Profile"
|
| 2255 |
msgid "Delete User Profile"
|
| 2256 |
-
msgstr "
|
| 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
|
| 2274 |
|
| 2275 |
#: views/admin_edit_level.php:27
|
| 2276 |
msgid "No Expiry (Access for this level will not expire until cancelled)"
|
|
@@ -2289,23 +2139,20 @@ msgid ""
|
|
| 2289 |
msgstr ""
|
| 2290 |
|
| 2291 |
#: views/admin_edit_level.php:60
|
| 2292 |
-
#, fuzzy
|
| 2293 |
-
#| msgid "Membership Level"
|
| 2294 |
msgid "Save Membership Level "
|
| 2295 |
-
msgstr "
|
| 2296 |
|
| 2297 |
#: views/admin_membership_manage.php:18
|
| 2298 |
msgid "Example Content Protection Settings"
|
| 2299 |
-
msgstr "Voorbeeld
|
| 2300 |
|
| 2301 |
#: views/admin_members_list.php:18
|
| 2302 |
-
#, fuzzy
|
| 2303 |
msgid "All"
|
| 2304 |
-
msgstr "
|
| 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
|
|
@@ -2435,10 +2282,8 @@ 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
|
| 2442 |
|
| 2443 |
#: views/admin_tools_settings.php:44
|
| 2444 |
msgid "Submit"
|
|
@@ -2453,10 +2298,8 @@ msgid ""
|
|
| 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."
|
|
@@ -2581,10 +2424,8 @@ msgid ""
|
|
| 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 "
|
| 2588 |
|
| 2589 |
#: views/payments/admin_payment_settings.php:28
|
| 2590 |
msgid ""
|
|
@@ -2652,21 +2493,19 @@ 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 "
|
| 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
|
|
@@ -2718,7 +2557,7 @@ msgstr "Betalingsvaluta"
|
|
| 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
|
| 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
|
|
@@ -2736,10 +2575,8 @@ 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
|
| 2743 |
|
| 2744 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:107
|
| 2745 |
msgid ""
|
|
@@ -2749,127 +2586,111 @@ 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 "
|
| 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 "
|
| 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 "
|
| 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
|
| 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
|
| 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 "
|
| 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 "
|
| 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
|
| 2873 |
|
| 2874 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:194
|
| 2875 |
msgid "ELV"
|
|
@@ -2935,10 +2756,8 @@ 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 "
|
| 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
|
|
@@ -2976,20 +2795,16 @@ 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 "
|
| 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 "
|
| 2993 |
|
| 2994 |
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:163
|
| 2995 |
msgid "Webook Endpoint URL"
|
|
@@ -3011,43 +2826,31 @@ 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 "
|
| 3025 |
|
| 3026 |
-
#, fuzzy
|
| 3027 |
-
#| msgid "Repeat Password"
|
| 3028 |
msgid "Retype password here"
|
| 3029 |
-
msgstr "
|
| 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 "
|
| 3038 |
|
| 3039 |
-
#, fuzzy
|
| 3040 |
-
#| msgid "Password mismatch"
|
| 3041 |
msgid " Password does not match"
|
| 3042 |
-
msgstr "
|
| 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 |
|
|
@@ -3055,117 +2858,86 @@ 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 "
|
| 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 |
-
"
|
|
|
|
| 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
|
| 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 "
|
| 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
|
| 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 "
|
| 3125 |
|
| 3126 |
#: includes/swpm_mda_show_profile.php:26
|
| 3127 |
-
#, fuzzy
|
| 3128 |
-
#| msgid "Member"
|
| 3129 |
msgid "Member ID"
|
| 3130 |
-
msgstr "
|
| 3131 |
|
| 3132 |
#: includes/swpm_mda_show_profile.php:30
|
| 3133 |
-
#, fuzzy
|
| 3134 |
msgid "Level"
|
| 3135 |
-
msgstr "
|
| 3136 |
|
| 3137 |
#: includes/swpm_mda_show_profile.php:32
|
| 3138 |
-
#, fuzzy
|
| 3139 |
-
#| msgid "Email Address"
|
| 3140 |
msgid "Address"
|
| 3141 |
-
msgstr "
|
| 3142 |
|
| 3143 |
#: views/template-1.php:52 views/template-2.php:53
|
| 3144 |
-
#, fuzzy
|
| 3145 |
-
#| msgid "Search"
|
| 3146 |
msgid "Search..."
|
| 3147 |
-
msgstr "
|
| 3148 |
|
| 3149 |
#: views/template-1.php:60 views/template-2.php:62
|
| 3150 |
-
#, fuzzy
|
| 3151 |
-
#| msgid "Search"
|
| 3152 |
msgid "Clear Search"
|
| 3153 |
-
msgstr "
|
| 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
|
| 3159 |
|
| 3160 |
-
#, fuzzy
|
| 3161 |
-
#| msgid "Membership Level Couldn't be found."
|
| 3162 |
msgid "Membership level has been updated."
|
| 3163 |
-
msgstr "
|
| 3164 |
|
| 3165 |
-
#, fuzzy
|
| 3166 |
-
#| msgid "Create new membership level."
|
| 3167 |
msgid "Already a member of this level."
|
| 3168 |
-
msgstr "
|
| 3169 |
|
| 3170 |
#~ msgid "Name"
|
| 3171 |
#~ msgstr "Naam"
|
|
@@ -3188,11 +2960,9 @@ msgstr "Maak een nieuw Lidmaatschap niveau."
|
|
| 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 |
|
| 2 |
msgstr ""
|
| 3 |
"Project-Id-Version: simple membership\n"
|
| 4 |
"POT-Creation-Date: 2019-05-26 13:48+0600\n"
|
| 5 |
+
"PO-Revision-Date: 2022-06-29 20:33+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 2.3\n"
|
| 13 |
"X-Poedit-KeywordsList: __;_e;_\n"
|
| 14 |
"X-Poedit-Basepath: ../classes\n"
|
| 15 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
| 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"
|
| 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 |
msgid "Your account has expired. "
|
| 176 |
+
msgstr "Jouw account is verlopen. "
|
| 177 |
|
| 178 |
#: classes/class.swpm-access-control.php:66
|
| 179 |
#: classes/class.swpm-access-control.php:138
|
| 227 |
msgstr "Ongeldig e-mailadres"
|
| 228 |
|
| 229 |
#: classes/class.swpm-ajax.php:21 classes/class.swpm-ajax.php:36
|
|
|
|
|
|
|
| 230 |
msgid "Already taken"
|
| 231 |
+
msgstr "Reeds bezet"
|
| 232 |
|
| 233 |
#: classes/class.swpm-ajax.php:30
|
| 234 |
msgid "Name contains invalid character"
|
| 243 |
"Warning! Simple Membership plugin cannot process this login request to "
|
| 244 |
"prevent you from getting logged out of WP Admin accidentally."
|
| 245 |
msgstr ""
|
| 246 |
+
"Waarschuwing! Simple Membership plugin kan dit inlogverzoek niet verwerken "
|
| 247 |
+
"om te voorkomen dat u per ongeluk wordt uitgelogd bij WP Admin."
|
| 248 |
|
| 249 |
#: classes/class.swpm-auth.php:58
|
| 250 |
msgid "Click here"
|
| 251 |
+
msgstr "Klik hier"
|
| 252 |
|
| 253 |
#: classes/class.swpm-auth.php:58
|
| 254 |
msgid " to see the profile you are currently logged into in this browser."
|
| 273 |
msgstr ""
|
| 274 |
|
| 275 |
#: classes/class.swpm-auth.php:68
|
|
|
|
|
|
|
| 276 |
msgid "Captcha validation failed on login form."
|
| 277 |
+
msgstr "Captcha validatie mislukt bij login formulier."
|
| 278 |
|
| 279 |
#: classes/class.swpm-auth.php:93
|
| 280 |
msgid "User Not Found."
|
| 308 |
#: classes/class.swpm-front-registration.php:426
|
| 309 |
#: classes/class.swpm-utils-misc.php:169
|
| 310 |
msgid "click here"
|
| 311 |
+
msgstr "klik hier"
|
| 312 |
|
| 313 |
#: classes/class.swpm-auth.php:170
|
| 314 |
msgid "You are logged in as:"
|
| 345 |
msgstr "Lidmaatschap niveau"
|
| 346 |
|
| 347 |
#: classes/class.swpm-category-list.php:33
|
|
|
|
|
|
|
| 348 |
msgid "Category ID"
|
| 349 |
+
msgstr "Categorie ID"
|
| 350 |
|
| 351 |
#: classes/class.swpm-category-list.php:34
|
|
|
|
|
|
|
| 352 |
msgid "Category Name"
|
| 353 |
+
msgstr "Categorienaam"
|
| 354 |
|
| 355 |
#: classes/class.swpm-category-list.php:35
|
| 356 |
msgid "Category Type (Taxonomy)"
|
| 369 |
msgstr "Categorie afscherming bijgewerkt!"
|
| 370 |
|
| 371 |
#: classes/class.swpm-category-list.php:130
|
|
|
|
|
|
|
| 372 |
msgid "No category found."
|
| 373 |
+
msgstr "Geen categorie gevonden."
|
| 374 |
|
| 375 |
#: classes/class.swpm-comment-form-related.php:15
|
|
|
|
|
|
|
| 376 |
msgid "Please login to comment."
|
| 377 |
+
msgstr "Log in om te reageren."
|
| 378 |
|
| 379 |
#: classes/class.swpm-comment-form-related.php:40
|
|
|
|
|
|
|
| 380 |
msgid "Please Login to Comment."
|
| 381 |
+
msgstr "Log opnieuw in om te reageren."
|
| 382 |
|
| 383 |
#: classes/class.swpm-comment-form-related.php:79
|
|
|
|
|
|
|
| 384 |
msgid "Comments not allowed by a non-member."
|
| 385 |
+
msgstr "Je bent niet ingelogd als lid."
|
| 386 |
|
| 387 |
#: classes/class.swpm-form.php:30
|
| 388 |
msgid ""
|
| 389 |
"Wordpress account exists with given username. But given email doesn't match."
|
| 390 |
msgstr ""
|
| 391 |
+
"Wordpress-account met gebruikersnaam bestaat al, maar het e-mailadres komt "
|
| 392 |
+
"niet overeen."
|
| 393 |
|
| 394 |
#: classes/class.swpm-form.php:31
|
| 395 |
msgid ""
|
| 402 |
msgid ""
|
| 403 |
"Wordpress account exists with given email. But given username doesn't match."
|
| 404 |
msgstr ""
|
| 405 |
+
"Wordpress-account met e-mailadres bestaat al, maar de gebruikersnaam komt "
|
| 406 |
+
"niet overeen."
|
| 407 |
|
| 408 |
#: classes/class.swpm-form.php:38
|
| 409 |
msgid ""
|
| 430 |
|
| 431 |
#: classes/class.swpm-form.php:90
|
| 432 |
msgid "Password mismatch"
|
| 433 |
+
msgstr "Wachtwoord komt niet overeen"
|
| 434 |
|
| 435 |
#: classes/class.swpm-form.php:101
|
| 436 |
msgid "Email is required"
|
| 437 |
+
msgstr "E-mailadres is vereist"
|
| 438 |
|
| 439 |
#: classes/class.swpm-form.php:105
|
| 440 |
msgid "Email is invalid"
|
| 441 |
+
msgstr "E-mailadres is niet geldig"
|
| 442 |
|
| 443 |
#: classes/class.swpm-form.php:121
|
| 444 |
msgid "Email is already used."
|
| 445 |
+
msgstr "E-mailadres is al in gebruik."
|
| 446 |
|
| 447 |
#: classes/class.swpm-form.php:179
|
| 448 |
msgid "Member since field is invalid"
|
| 458 |
|
| 459 |
#: classes/class.swpm-form.php:211
|
| 460 |
msgid "Account state field is invalid"
|
| 461 |
+
msgstr "Accountstatusveld is ongeldig"
|
| 462 |
|
| 463 |
#: classes/class.swpm-form.php:218
|
| 464 |
msgid "Invalid membership level"
|
| 465 |
+
msgstr "Ongeldige lidmaatschapniveau"
|
| 466 |
|
| 467 |
#: classes/class.swpm-front-registration.php:33
|
| 468 |
msgid ""
|
| 549 |
"veranderd is."
|
| 550 |
|
| 551 |
#: classes/class.swpm-front-registration.php:289
|
|
|
|
|
|
|
| 552 |
msgid "Please correct the following."
|
| 553 |
+
msgstr "Corrigeer het volgende."
|
| 554 |
|
| 555 |
#: classes/class.swpm-front-registration.php:301
|
|
|
|
|
|
|
| 556 |
msgid "Captcha validation failed."
|
| 557 |
+
msgstr "Captcha validatie mislukt."
|
| 558 |
|
| 559 |
#: classes/class.swpm-front-registration.php:309
|
| 560 |
msgid "Email address not valid."
|
| 571 |
|
| 572 |
#: classes/class.swpm-front-registration.php:349
|
| 573 |
msgid "New password has been sent to your email address."
|
| 574 |
+
msgstr "Een nieuw wachtwoord is naar je e-mailadres verzonden."
|
| 575 |
|
| 576 |
#: classes/class.swpm-front-registration.php:371
|
| 577 |
msgid "Can't find member account."
|
| 579 |
|
| 580 |
#: classes/class.swpm-front-registration.php:376
|
| 581 |
#: classes/class.swpm-front-registration.php:426
|
|
|
|
|
|
|
| 582 |
msgid "Account already active. "
|
| 583 |
+
msgstr "Dit account is reeds actief. "
|
| 584 |
|
| 585 |
#: classes/class.swpm-front-registration.php:376
|
| 586 |
#: classes/class.swpm-front-registration.php:426
|
| 655 |
#: classes/class.swpm-members.php:23 views/add.php:20 views/edit.php:27
|
| 656 |
#: includes/swpm_mda_show_profile.php:35
|
| 657 |
msgid "Email"
|
| 658 |
+
msgstr "E-mail"
|
| 659 |
|
| 660 |
#: classes/class.swpm-members.php:25 views/admin_member_form_common_part.php:11
|
| 661 |
msgid "Access Starts"
|
| 681 |
msgstr "Status instellen op actief"
|
| 682 |
|
| 683 |
#: classes/class.swpm-members.php:48
|
|
|
|
|
|
|
| 684 |
msgid "Set Status to Active and Notify"
|
| 685 |
+
msgstr "Status instellen op actief en geef een melding"
|
| 686 |
|
| 687 |
#: classes/class.swpm-members.php:49
|
| 688 |
msgid "Set Status to Inactive"
|
| 698 |
|
| 699 |
#: classes/class.swpm-members.php:72
|
| 700 |
msgid "incomplete"
|
| 701 |
+
msgstr "incompleet"
|
| 702 |
|
| 703 |
#: classes/class.swpm-members.php:191
|
|
|
|
|
|
|
| 704 |
msgid "No member found."
|
| 705 |
+
msgstr "Geen lid gevonden."
|
| 706 |
|
| 707 |
#: classes/class.swpm-members.php:337
|
| 708 |
msgid "Error! Nonce verification failed for user delete from admin end."
|
| 709 |
msgstr ""
|
| 710 |
|
| 711 |
#: classes/class.swpm-members.php:406 classes/class.swpm-members.php:436
|
|
|
|
|
|
|
| 712 |
msgid "Error! Please select a membership level first."
|
| 713 |
+
msgstr "Fout! Selecteer eerst een lidmaatschapsniveau."
|
| 714 |
|
| 715 |
#: classes/class.swpm-members.php:423
|
|
|
|
|
|
|
| 716 |
msgid "Membership level change operation completed successfully."
|
| 717 |
+
msgstr "Lidmaatschapsniveau met succes aangemaakt."
|
| 718 |
|
| 719 |
#: classes/class.swpm-members.php:453
|
| 720 |
msgid "Access starts date change operation successfully completed."
|
| 721 |
msgstr ""
|
| 722 |
|
| 723 |
#: classes/class.swpm-members.php:462
|
|
|
|
|
|
|
| 724 |
msgid "Bulk Update Membership Level of Members"
|
| 725 |
+
msgstr "Bulk-update voor lidmaatschapsniveau van leden"
|
| 726 |
|
| 727 |
#: classes/class.swpm-members.php:465
|
| 728 |
msgid ""
|
| 737 |
msgstr ""
|
| 738 |
|
| 739 |
#: classes/class.swpm-members.php:472 classes/class.swpm-members.php:520
|
|
|
|
|
|
|
| 740 |
msgid "Membership Level: "
|
| 741 |
+
msgstr "Lidmaatschapsniveau "
|
| 742 |
|
| 743 |
#: classes/class.swpm-members.php:476
|
| 744 |
msgid "Select Current Level"
|
| 755 |
msgstr ""
|
| 756 |
|
| 757 |
#: classes/class.swpm-members.php:489
|
|
|
|
|
|
|
| 758 |
msgid "Select Target Level"
|
| 759 |
+
msgstr "Selecteer doelniveau"
|
| 760 |
|
| 761 |
#: classes/class.swpm-members.php:492
|
|
|
|
|
|
|
| 762 |
msgid "Select the new membership level."
|
| 763 |
+
msgstr "Selecteer het nieuwe lidmaatschapsniveau."
|
| 764 |
|
| 765 |
#: classes/class.swpm-members.php:498
|
|
|
|
|
|
|
| 766 |
msgid "Bulk Change Membership Level"
|
| 767 |
+
msgstr "Verander lidmaatschapsniveau in bulk"
|
| 768 |
|
| 769 |
#: classes/class.swpm-members.php:508
|
| 770 |
msgid "Bulk Update Access Starts Date of Members"
|
| 785 |
msgstr ""
|
| 786 |
|
| 787 |
#: classes/class.swpm-members.php:523
|
|
|
|
|
|
|
| 788 |
msgid "Select Level"
|
| 789 |
+
msgstr "Selecteer Niveau"
|
| 790 |
|
| 791 |
#: classes/class.swpm-members.php:526
|
| 792 |
msgid ""
|
| 799 |
msgstr ""
|
| 800 |
|
| 801 |
#: classes/class.swpm-members.php:541
|
|
|
|
|
|
|
| 802 |
msgid "Bulk Change Access Starts Date"
|
| 803 |
+
msgstr "Verander startdatum voor toegang in bulk"
|
| 804 |
|
| 805 |
#: classes/class.swpm-members.php:576
|
| 806 |
msgid "Simple WP Membership::Members"
|
| 816 |
msgstr "Lid toevoegen"
|
| 817 |
|
| 818 |
#: classes/class.swpm-members.php:583
|
|
|
|
|
|
|
| 819 |
msgid "Bulk Operation"
|
| 820 |
+
msgstr "Bulkacties"
|
| 821 |
|
| 822 |
#: classes/class.swpm-membership-level.php:52
|
| 823 |
msgid ""
|
| 835 |
msgstr ""
|
| 836 |
|
| 837 |
#: classes/class.swpm-membership-level.php:100
|
|
|
|
|
|
|
| 838 |
msgid "Membership Level Updated Successfully."
|
| 839 |
+
msgstr "Lidmaatschapsniveau met succes bijgewerkt."
|
| 840 |
|
| 841 |
#: classes/class.swpm-membership-levels.php:22
|
| 842 |
msgid "Role"
|
| 847 |
msgstr "Toegang geldig voor/tot"
|
| 848 |
|
| 849 |
#: classes/class.swpm-membership-levels.php:133
|
|
|
|
|
|
|
| 850 |
msgid "No membership levels found."
|
| 851 |
+
msgstr "Geen lidmaatschapsniveau gevonden."
|
| 852 |
|
| 853 |
#: classes/class.swpm-membership-levels.php:197
|
| 854 |
msgid ""
|
| 866 |
msgstr "Simple WP Membership::Lidmaatschap niveaus"
|
| 867 |
|
| 868 |
#: classes/class.swpm-membership-levels.php:266
|
|
|
|
|
|
|
| 869 |
msgid "Add Level"
|
| 870 |
+
msgstr "Voeg niveau toe"
|
| 871 |
|
| 872 |
#: classes/class.swpm-membership-levels.php:267
|
|
|
|
|
|
|
| 873 |
msgid "Manage Content Protection"
|
| 874 |
+
msgstr "Beheer Inhoudsafscherming"
|
| 875 |
|
| 876 |
#: classes/class.swpm-membership-levels.php:268
|
| 877 |
msgid "Category Protection"
|
| 878 |
msgstr "Categorie Afscherming"
|
| 879 |
|
| 880 |
#: classes/class.swpm-membership-levels.php:269
|
|
|
|
|
|
|
| 881 |
msgid "Post and Page Protection"
|
| 882 |
+
msgstr "Bericht en pagina afscherming"
|
| 883 |
|
| 884 |
#: classes/class.swpm-post-list.php:43 classes/class.swpm-post-list.php:52
|
| 885 |
#: classes/class.swpm-post-list.php:62
|
| 889 |
|
| 890 |
#: classes/class.swpm-post-list.php:44 classes/class.swpm-post-list.php:53
|
| 891 |
#: classes/class.swpm-post-list.php:63
|
|
|
|
| 892 |
msgid "Title"
|
| 893 |
+
msgstr "Titel"
|
| 894 |
|
| 895 |
#: classes/class.swpm-post-list.php:45 classes/class.swpm-post-list.php:54
|
| 896 |
#: classes/class.swpm-post-list.php:64
|
| 897 |
msgid "Author"
|
| 898 |
+
msgstr "Auteur"
|
| 899 |
|
| 900 |
#: classes/class.swpm-post-list.php:46 classes/class.swpm-post-list.php:56
|
| 901 |
#: classes/class.swpm-post-list.php:66
|
|
|
|
|
|
|
| 902 |
msgid "Status"
|
| 903 |
+
msgstr "Status"
|
| 904 |
|
| 905 |
#: classes/class.swpm-post-list.php:55
|
| 906 |
msgid "Categories"
|
| 907 |
+
msgstr "Categorieën"
|
| 908 |
|
| 909 |
#: classes/class.swpm-post-list.php:65
|
| 910 |
msgid "Type"
|
| 911 |
+
msgstr "Type"
|
| 912 |
|
| 913 |
#: classes/class.swpm-post-list.php:125
|
|
|
|
|
|
|
| 914 |
msgid "Protection settings updated!"
|
| 915 |
+
msgstr "Beveiligingsinstellingen bijgewerkt!"
|
| 916 |
|
| 917 |
#: classes/class.swpm-post-list.php:230
|
| 918 |
msgid "No items found."
|
| 923 |
"The category or parent category of this post is protected. You can change "
|
| 924 |
"the category protection settings from the "
|
| 925 |
msgstr ""
|
| 926 |
+
"De categorie of bovenliggende categorie van dit bericht is beschermd. U kunt "
|
| 927 |
+
"de instellingen voor categoriebeveiliging wijzigen via de "
|
| 928 |
|
| 929 |
#: classes/class.swpm-protection.php:23
|
|
|
|
|
|
|
| 930 |
msgid "category protection menu"
|
| 931 |
+
msgstr "categorie afschermingsmenu"
|
| 932 |
|
| 933 |
#: classes/class.swpm-settings.php:26 classes/class.swpm-settings.php:54
|
| 934 |
msgid "General Settings"
|
| 997 |
msgstr "Verberg de adminbalk"
|
| 998 |
|
| 999 |
#: classes/class.swpm-settings.php:62
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1000 |
msgid ""
|
| 1001 |
"WordPress shows an admin toolbar to the logged in users of the site. Check "
|
| 1002 |
"this if you want to hide that admin toolbar in the frontend of your site."
|
| 1006 |
|
| 1007 |
#: classes/class.swpm-settings.php:63
|
| 1008 |
msgid "Show Adminbar to Admin"
|
| 1009 |
+
msgstr "Toon Adminbalk aan Admin"
|
| 1010 |
|
| 1011 |
#: classes/class.swpm-settings.php:64
|
| 1012 |
msgid ""
|
| 1043 |
msgstr ""
|
| 1044 |
|
| 1045 |
#: classes/class.swpm-settings.php:74
|
|
|
|
|
|
|
| 1046 |
msgid ""
|
| 1047 |
"Enable this option if you only want the members of the site to be able to "
|
| 1048 |
"post a comment."
|
| 1049 |
+
msgstr ""
|
| 1050 |
+
"Schakel deze optie in als je allen de leden van deze site wilt kunnen laten "
|
| 1051 |
+
"reageren."
|
| 1052 |
|
| 1053 |
#: classes/class.swpm-settings.php:83
|
| 1054 |
msgid "Pages Settings"
|
| 1094 |
|
| 1095 |
#: classes/class.swpm-settings.php:100 classes/class.swpm-settings.php:101
|
| 1096 |
#: classes/class.swpm-settings.php:102
|
|
|
|
| 1097 |
msgid "here"
|
| 1098 |
+
msgstr "hier"
|
| 1099 |
|
| 1100 |
#: classes/class.swpm-settings.php:101
|
| 1101 |
msgid "View login related debug log file by clicking "
|
| 1118 |
msgstr "Schakel deze optie in als je sandbox testbetalingen wilt uitvoeren."
|
| 1119 |
|
| 1120 |
#: classes/class.swpm-settings.php:119
|
|
|
|
|
|
|
| 1121 |
msgid "Email Settings Overview"
|
| 1122 |
+
msgstr "Overzicht e-mail instellingen"
|
| 1123 |
|
| 1124 |
#: classes/class.swpm-settings.php:120
|
| 1125 |
msgid "Email Misc. Settings"
|
| 1126 |
+
msgstr "Diverse e-mail instellingen"
|
| 1127 |
|
| 1128 |
#: classes/class.swpm-settings.php:122
|
| 1129 |
msgid "From Email Address"
|
| 1131 |
|
| 1132 |
#: classes/class.swpm-settings.php:126
|
| 1133 |
msgid "Email Settings (Prompt to Complete Registration )"
|
| 1134 |
+
msgstr "E-mail instellingen (herinnering om registratie te voltooien)"
|
| 1135 |
|
| 1136 |
#: classes/class.swpm-settings.php:127 classes/class.swpm-settings.php:140
|
| 1137 |
#: classes/class.swpm-settings.php:158 classes/class.swpm-settings.php:163
|
| 1138 |
#: classes/class.swpm-settings.php:168 classes/class.swpm-settings.php:173
|
| 1139 |
msgid "Email Subject"
|
| 1140 |
+
msgstr "E-mail onderwerp"
|
| 1141 |
|
| 1142 |
#: classes/class.swpm-settings.php:129 classes/class.swpm-settings.php:142
|
| 1143 |
#: classes/class.swpm-settings.php:159 classes/class.swpm-settings.php:164
|
| 1144 |
#: classes/class.swpm-settings.php:169 classes/class.swpm-settings.php:174
|
| 1145 |
msgid "Email Body"
|
| 1146 |
+
msgstr "E-mail inhoud"
|
| 1147 |
|
| 1148 |
#: classes/class.swpm-settings.php:133
|
| 1149 |
msgid ""
|
| 1178 |
|
| 1179 |
#: classes/class.swpm-settings.php:139
|
| 1180 |
msgid "Email Settings (Registration Complete)"
|
| 1181 |
+
msgstr "E-mail instellingen (Registratie voltooid)"
|
| 1182 |
|
| 1183 |
#: classes/class.swpm-settings.php:144
|
| 1184 |
msgid "Send Notification to Admin"
|
| 1194 |
|
| 1195 |
#: classes/class.swpm-settings.php:146
|
| 1196 |
msgid "Admin Email Address"
|
| 1197 |
+
msgstr "E-mailadres beheerder"
|
| 1198 |
|
| 1199 |
#: classes/class.swpm-settings.php:148
|
| 1200 |
msgid "Admin Notification Email Subject"
|
| 1201 |
+
msgstr "Beheerders notificatie e-mail onderwerp"
|
| 1202 |
|
| 1203 |
#: classes/class.swpm-settings.php:150
|
|
|
|
|
|
|
| 1204 |
msgid "Admin Notification Email Body"
|
| 1205 |
+
msgstr "Beheerders notificatie e-mail bericht"
|
| 1206 |
|
| 1207 |
#: classes/class.swpm-settings.php:153
|
| 1208 |
msgid "Send Email to Member When Added via Admin Dashboard"
|
| 1215 |
|
| 1216 |
#: classes/class.swpm-settings.php:162
|
| 1217 |
msgid " Email Settings (Account Upgrade Notification)"
|
| 1218 |
+
msgstr " E-mail instellingen (Bericht Account Upgrade)"
|
| 1219 |
|
| 1220 |
#: classes/class.swpm-settings.php:167
|
|
|
|
|
|
|
| 1221 |
msgid " Email Settings (Bulk Account Activate Notification)"
|
| 1222 |
+
msgstr " E-mail instellingen (Bericht Account Upgrade)"
|
| 1223 |
|
| 1224 |
#: classes/class.swpm-settings.php:172
|
|
|
|
|
|
|
| 1225 |
msgid " Email Settings (Email Activation)"
|
| 1226 |
+
msgstr " E-mail instellingen (Bericht Account Upgrade)"
|
| 1227 |
|
| 1228 |
#: classes/class.swpm-settings.php:189
|
| 1229 |
msgid "Enable Expired Account Login"
|
| 1240 |
"gemakkelijk hun account vernieuwen door een betaling te maken."
|
| 1241 |
|
| 1242 |
#: classes/class.swpm-settings.php:192
|
|
|
|
|
|
|
| 1243 |
msgid "Membership Renewal URL"
|
| 1244 |
+
msgstr "Lidmaatschap vernieuwings-URL"
|
| 1245 |
|
| 1246 |
#: classes/class.swpm-settings.php:193
|
| 1247 |
msgid ""
|
| 1251 |
msgstr ""
|
| 1252 |
|
| 1253 |
#: classes/class.swpm-settings.php:195
|
|
|
|
|
|
|
| 1254 |
msgid "After Registration Redirect URL"
|
| 1255 |
+
msgstr "Omleidings-URL na registratie"
|
| 1256 |
|
| 1257 |
#: classes/class.swpm-settings.php:196
|
| 1258 |
msgid ""
|
| 1322 |
msgstr ""
|
| 1323 |
|
| 1324 |
#: classes/class.swpm-settings.php:213
|
|
|
|
|
|
|
| 1325 |
msgid "Use WordPress Timezone"
|
| 1326 |
+
msgstr "Gebruik de WordPress Tijdzone"
|
| 1327 |
|
| 1328 |
#: classes/class.swpm-settings.php:214
|
| 1329 |
msgid ""
|
| 1369 |
msgstr ""
|
| 1370 |
|
| 1371 |
#: classes/class.swpm-settings.php:232
|
|
|
|
|
|
|
| 1372 |
msgid "Enable Auto Create Member Accounts"
|
| 1373 |
+
msgstr "Zet het automatisch maken van lidmaatschapaccounts aan"
|
| 1374 |
|
| 1375 |
#: classes/class.swpm-settings.php:233
|
| 1376 |
msgid ""
|
| 1379 |
msgstr ""
|
| 1380 |
|
| 1381 |
#: classes/class.swpm-settings.php:236
|
|
|
|
|
|
|
| 1382 |
msgid "Default Membership Level"
|
| 1383 |
+
msgstr "Standaard lidmaatschapsniveau"
|
| 1384 |
|
| 1385 |
#: classes/class.swpm-settings.php:239
|
| 1386 |
msgid ""
|
| 1396 |
msgstr ""
|
| 1397 |
|
| 1398 |
#: classes/class.swpm-settings.php:247
|
|
|
|
|
|
|
| 1399 |
msgid "Payment Notification Forward URL"
|
| 1400 |
+
msgstr "Betalingsmelding doorstuur URL"
|
| 1401 |
|
| 1402 |
#: classes/class.swpm-settings.php:248
|
| 1403 |
msgid ""
|
| 1412 |
msgstr ""
|
| 1413 |
|
| 1414 |
#: classes/class.swpm-settings.php:253
|
|
|
|
|
|
|
| 1415 |
msgid "Enable Terms and Conditions"
|
| 1416 |
+
msgstr "Algemene voorwaarden inschakelen"
|
| 1417 |
|
| 1418 |
#: classes/class.swpm-settings.php:254
|
| 1419 |
msgid "Users must accept the terms before they can complete the registration."
|
| 1420 |
msgstr ""
|
| 1421 |
|
| 1422 |
#: classes/class.swpm-settings.php:255
|
|
|
|
|
|
|
| 1423 |
msgid "Terms and Conditions Page URL"
|
| 1424 |
+
msgstr "Algemene voorwaarden pagina URL"
|
| 1425 |
|
| 1426 |
#: classes/class.swpm-settings.php:256
|
| 1427 |
msgid ""
|
| 1435 |
msgstr ""
|
| 1436 |
|
| 1437 |
#: classes/class.swpm-settings.php:258
|
|
|
|
|
|
|
| 1438 |
msgid "Users must accept it before they can complete the registration."
|
| 1439 |
+
msgstr ""
|
| 1440 |
+
"Gebruikers moeten dit accepteren voordat ze de registratie kunnen afronden."
|
| 1441 |
|
| 1442 |
#: classes/class.swpm-settings.php:259
|
|
|
|
|
|
|
| 1443 |
msgid "Privacy Policy Page URL"
|
| 1444 |
+
msgstr "Privacy beleidspagina URL"
|
| 1445 |
|
| 1446 |
#: classes/class.swpm-settings.php:260
|
| 1447 |
msgid "Enter the URL of your privacy policy page."
|
| 1448 |
+
msgstr "Voer de URL van je privacy beleidspagina in."
|
| 1449 |
|
| 1450 |
#: classes/class.swpm-settings.php:350 classes/class.swpm-settings.php:396
|
| 1451 |
#: classes/class.swpm-settings.php:425
|
| 1453 |
msgstr "Instellingen bijgewerkt!"
|
| 1454 |
|
| 1455 |
#: classes/class.swpm-settings.php:355
|
|
|
|
|
|
|
| 1456 |
msgid "General Plugin Settings."
|
| 1457 |
+
msgstr "Algemene Plugin-instellingen."
|
| 1458 |
|
| 1459 |
#: classes/class.swpm-settings.php:359
|
| 1460 |
msgid "Page Setup and URL Related settings."
|
| 1467 |
msgstr ""
|
| 1468 |
|
| 1469 |
#: classes/class.swpm-settings.php:367
|
|
|
|
|
|
|
| 1470 |
msgid "Testing and Debug Related Settings."
|
| 1471 |
+
msgstr "Test en Debug gerelateerde instellingen."
|
| 1472 |
|
| 1473 |
#: classes/class.swpm-settings.php:371
|
| 1474 |
msgid ""
|
| 1490 |
msgstr ""
|
| 1491 |
|
| 1492 |
#: classes/class.swpm-settings.php:385 views/admin_tools_settings.php:82
|
|
|
|
|
|
|
| 1493 |
msgid "This documentation"
|
| 1494 |
+
msgstr "Deze documentatie"
|
| 1495 |
|
| 1496 |
#: classes/class.swpm-settings.php:386
|
| 1497 |
msgid ""
|
| 1563 |
msgstr "Gebruiker is niet ingelogd."
|
| 1564 |
|
| 1565 |
#: classes/class.swpm-utils-member.php:80
|
|
|
|
|
|
|
| 1566 |
msgid "No Expiry"
|
| 1567 |
+
msgstr "Geen vervaldatum"
|
| 1568 |
|
| 1569 |
#: classes/class.swpm-utils-misc.php:50
|
| 1570 |
msgid "Registration"
|
| 1587 |
#, php-format
|
| 1588 |
msgid ""
|
| 1589 |
"You will be automatically redirected in a few seconds. If not, please %s."
|
| 1590 |
+
msgstr "Je wordt automatisch doorverwezen in een paar seconden. Zo niet, %s."
|
| 1591 |
|
| 1592 |
#: classes/class.swpm-utils-misc.php:172
|
|
|
|
|
|
|
| 1593 |
msgid "Action Status"
|
| 1594 |
+
msgstr "Actiestatus"
|
| 1595 |
|
| 1596 |
#: classes/class.swpm-utils-misc.php:274
|
| 1597 |
msgid "Not a Member?"
|
| 1602 |
msgstr ""
|
| 1603 |
|
| 1604 |
#: classes/class.swpm-utils-misc.php:285
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1605 |
msgid " your account to gain access to this content."
|
| 1606 |
+
msgstr " jouw account om toegang te krijgen tot deze inhoud."
|
|
|
|
|
|
|
| 1607 |
|
| 1608 |
#: classes/class.swpm-utils-misc.php:343 classes/class.swpm-utils-misc.php:349
|
| 1609 |
msgid "Error! This action ("
|
| 1610 |
+
msgstr "Fout! Deze actie ("
|
| 1611 |
|
| 1612 |
#: classes/class.swpm-utils-misc.php:421
|
| 1613 |
msgid "(Please Select)"
|
| 1615 |
|
| 1616 |
#: classes/class.swpm-utils-template.php:38
|
| 1617 |
msgid "Error! Failed to find a template path for the specified template: "
|
| 1618 |
+
msgstr "Fout! Geen template-pad gevonden voor de volgende template: "
|
| 1619 |
|
| 1620 |
#: classes/class.swpm-utils.php:101
|
| 1621 |
msgid "Never"
|
| 1631 |
|
| 1632 |
#: classes/class.swpm-utils.php:118 views/admin_members_list.php:21
|
| 1633 |
msgid "Activation Required"
|
| 1634 |
+
msgstr "Activatie is vereist"
|
| 1635 |
|
| 1636 |
#: classes/class.swpm-utils.php:119
|
| 1637 |
msgid "Male"
|
| 1638 |
+
msgstr "Man"
|
| 1639 |
|
| 1640 |
#: classes/class.swpm-utils.php:120
|
| 1641 |
msgid "Female"
|
| 1642 |
+
msgstr "Vrouw"
|
| 1643 |
|
| 1644 |
#: classes/class.swpm-utils.php:121
|
| 1645 |
msgid "Not Specified"
|
| 1646 |
+
msgstr "Niet gespecificeerd"
|
| 1647 |
|
| 1648 |
#: classes/class.swpm-utils.php:119 views/admin_members_list.php:22
|
| 1649 |
msgid "Pending"
|
| 1670 |
msgstr "Lidmaatschap niveau ID"
|
| 1671 |
|
| 1672 |
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:78
|
|
|
|
|
|
|
| 1673 |
msgid "Button Type"
|
| 1674 |
+
msgstr "Knop type"
|
| 1675 |
|
| 1676 |
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:79
|
| 1677 |
msgid "Button Shortcode"
|
| 1688 |
msgstr "Simple WP Membership::Betalingen"
|
| 1689 |
|
| 1690 |
#: classes/admin-includes/class.swpm-payments-admin-menu.php:25
|
|
|
|
|
|
|
| 1691 |
msgid "Transactions"
|
| 1692 |
+
msgstr "Transacties"
|
| 1693 |
|
| 1694 |
#: classes/admin-includes/class.swpm-payments-admin-menu.php:26
|
|
|
|
|
|
|
| 1695 |
msgid "Manage Payment Buttons"
|
| 1696 |
+
msgstr "Beheer Betaalknoppen"
|
| 1697 |
|
| 1698 |
#: classes/admin-includes/class.swpm-payments-admin-menu.php:27
|
| 1699 |
#: views/payments/admin_payment_buttons.php:27
|
| 1700 |
msgid "Create New Button"
|
| 1701 |
+
msgstr "Maak een nieuwe knop"
|
| 1702 |
|
| 1703 |
#: classes/admin-includes/class.swpm-payments-list-table.php:57
|
| 1704 |
#: views/template-1.php:95 views/template-2.php:97
|
| 1712 |
#: classes/admin-includes/class.swpm-payments-list-table.php:77
|
| 1713 |
#: views/forgot_password.php:5
|
| 1714 |
msgid "Email Address"
|
| 1715 |
+
msgstr "E-mailadres"
|
| 1716 |
|
| 1717 |
#: classes/admin-includes/class.swpm-payments-list-table.php:80
|
| 1718 |
msgid "Member Profile"
|
| 1723 |
msgstr "Transactie ID"
|
| 1724 |
|
| 1725 |
#: classes/admin-includes/class.swpm-payments-list-table.php:83
|
|
|
|
|
|
|
| 1726 |
msgid "Subscriber ID"
|
| 1727 |
+
msgstr "Abonnee ID"
|
| 1728 |
|
| 1729 |
#: classes/admin-includes/class.swpm-payments-list-table.php:84
|
| 1730 |
msgid "Amount"
|
| 1765 |
msgstr "Je bent niet ingelogd als lid"
|
| 1766 |
|
| 1767 |
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:115
|
|
|
|
|
|
|
| 1768 |
msgid "Logged in as: "
|
| 1769 |
+
msgstr "Ingelogd als: "
|
| 1770 |
|
| 1771 |
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:118
|
| 1772 |
#: views/loggedin.php:31
|
| 1780 |
msgstr "Inloggen"
|
| 1781 |
|
| 1782 |
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:122
|
|
|
|
|
|
|
| 1783 |
msgid "Not a member? "
|
| 1784 |
+
msgstr "Nog geen lid? "
|
| 1785 |
|
| 1786 |
#: classes/shortcode-related/class.swpm-shortcodes-handler.php:123
|
| 1787 |
#, fuzzy
|
| 1829 |
msgstr ""
|
| 1830 |
|
| 1831 |
#: views/account_delete_warning.php:13
|
|
|
|
|
|
|
| 1832 |
msgid "Password: "
|
| 1833 |
+
msgstr "Wachtwoord: "
|
| 1834 |
|
| 1835 |
#: views/account_delete_warning.php:14
|
|
|
|
|
|
|
| 1836 |
msgid "Confirm Account Deletion"
|
| 1837 |
+
msgstr "Bevestig verwijdering van account"
|
| 1838 |
|
| 1839 |
#: views/add.php:24 views/admin_add.php:19 views/admin_edit.php:44
|
| 1840 |
#: views/edit.php:31 views/login.php:17
|
| 1847 |
|
| 1848 |
#: views/add.php:65
|
| 1849 |
msgid "I accept the "
|
| 1850 |
+
msgstr "Ik accepteer de "
|
| 1851 |
|
| 1852 |
#: views/add.php:77
|
| 1853 |
msgid "I agree to the "
|
| 1854 |
+
msgstr "Ik ga akkoord met "
|
| 1855 |
|
| 1856 |
#: views/add.php:77
|
| 1857 |
msgid "Privacy Policy"
|
| 1858 |
+
msgstr "Privacy beleid"
|
| 1859 |
|
| 1860 |
#: views/add.php:88
|
| 1861 |
msgid "Register"
|
| 1875 |
|
| 1876 |
#: views/admin_add.php:15 views/admin_edit.php:40
|
| 1877 |
msgid "E-mail"
|
| 1878 |
+
msgstr "E-mail"
|
| 1879 |
|
| 1880 |
#: views/admin_add.php:19
|
| 1881 |
msgid "(twice, required)"
|
| 1916 |
msgstr "Opslaan"
|
| 1917 |
|
| 1918 |
#: views/admin_add_level.php:6
|
|
|
|
|
|
|
| 1919 |
msgid "Add Membership Level"
|
| 1920 |
+
msgstr "Voeg een lidmaatschapsniveau toe"
|
| 1921 |
|
| 1922 |
#: views/admin_add_level.php:7
|
| 1923 |
msgid "Create new membership level."
|
| 1933 |
|
| 1934 |
#: views/admin_add_level.php:20 views/admin_edit_level.php:24
|
| 1935 |
msgid "Access Duration"
|
| 1936 |
+
msgstr "Toegangsduur"
|
| 1937 |
|
| 1938 |
#: views/admin_add_level.php:23
|
| 1939 |
msgid "No Expiry (Access for this level will not expire until cancelled"
|
| 1972 |
msgstr "(Toegang vervalt op een vaste datum)"
|
| 1973 |
|
| 1974 |
#: views/admin_add_level.php:38 views/admin_edit_level.php:46
|
|
|
|
|
|
|
| 1975 |
msgid "Email Activation"
|
| 1976 |
+
msgstr "E-mail activatie"
|
| 1977 |
|
| 1978 |
#: views/admin_add_level.php:43
|
| 1979 |
msgid ""
|
| 1983 |
msgstr ""
|
| 1984 |
|
| 1985 |
#: views/admin_add_level.php:44 views/admin_edit_level.php:52
|
|
|
|
|
|
|
| 1986 |
msgid "View Documentation"
|
| 1987 |
+
msgstr "Bekijk Documentatie"
|
| 1988 |
|
| 1989 |
#: views/admin_add_level.php:45 views/admin_edit_level.php:53
|
| 1990 |
msgid "Note:"
|
| 2029 |
msgstr ""
|
| 2030 |
|
| 2031 |
#: views/admin_category_list.php:11
|
|
|
|
|
|
|
| 2032 |
msgid "category protection documentation"
|
| 2033 |
+
msgstr "categorie afscherming bijgewerkt"
|
| 2034 |
|
| 2035 |
#: views/admin_category_list.php:17 views/admin_post_list.php:27
|
|
|
|
|
|
|
| 2036 |
msgid "Membership Level:"
|
| 2037 |
+
msgstr "Lidmaatschap niveau:"
|
| 2038 |
|
| 2039 |
#: views/admin_category_list.php:19 views/admin_post_list.php:29
|
|
|
|
|
|
|
| 2040 |
msgid "General Protection"
|
| 2041 |
+
msgstr "Algemene bescherming"
|
| 2042 |
|
| 2043 |
#: views/admin_category_list.php:23 views/admin_post_list.php:33
|
| 2044 |
#: views/edit.php:83
|
| 2068 |
msgstr ""
|
| 2069 |
|
| 2070 |
#: views/admin_edit.php:60
|
|
|
|
|
|
|
| 2071 |
msgid "this documentation"
|
| 2072 |
+
msgstr "plug-in Documentatie"
|
| 2073 |
|
| 2074 |
#: views/admin_edit.php:61
|
| 2075 |
msgid " to learn how to do it."
|
| 2090 |
msgstr "Abonnee ID/Referentie"
|
| 2091 |
|
| 2092 |
#: views/admin_edit.php:79
|
|
|
|
|
|
|
| 2093 |
msgid "Last Accessed Date"
|
| 2094 |
+
msgstr "Laatste toegangsdatum"
|
| 2095 |
|
| 2096 |
#: views/admin_edit.php:82 views/admin_edit.php:89
|
| 2097 |
msgid "This value gets updated when this member logs into your site."
|
| 2102 |
msgstr "Laatst ingelogd via IP"
|
| 2103 |
|
| 2104 |
#: views/admin_edit.php:97
|
|
|
|
|
|
|
| 2105 |
msgid "Save Data"
|
| 2106 |
+
msgstr "Gegevens opslaan"
|
| 2107 |
|
| 2108 |
#: views/admin_edit.php:102
|
|
|
|
|
|
|
| 2109 |
msgid "Delete User Profile"
|
| 2110 |
+
msgstr "Verwijder gebruikersprofiel"
|
| 2111 |
|
| 2112 |
#: views/admin_edit_level.php:6
|
| 2113 |
msgid "Edit membership level"
|
| 2114 |
msgstr "Wijzig lidmaatschap niveau"
|
| 2115 |
|
| 2116 |
#: views/admin_edit_level.php:9
|
|
|
|
|
|
|
| 2117 |
msgid ""
|
| 2118 |
"You can edit details of a selected membership level from this interface. "
|
| 2119 |
+
msgstr "Je kunt een betaling knop bewerken met deze interface "
|
| 2120 |
|
| 2121 |
#: views/admin_edit_level.php:10
|
|
|
|
|
|
|
| 2122 |
msgid "You are currently editing: "
|
| 2123 |
+
msgstr "Je bewerkt momenteel: "
|
| 2124 |
|
| 2125 |
#: views/admin_edit_level.php:27
|
| 2126 |
msgid "No Expiry (Access for this level will not expire until cancelled)"
|
| 2139 |
msgstr ""
|
| 2140 |
|
| 2141 |
#: views/admin_edit_level.php:60
|
|
|
|
|
|
|
| 2142 |
msgid "Save Membership Level "
|
| 2143 |
+
msgstr "Bewaar Lidmaatschapsniveau "
|
| 2144 |
|
| 2145 |
#: views/admin_membership_manage.php:18
|
| 2146 |
msgid "Example Content Protection Settings"
|
| 2147 |
+
msgstr "Voorbeeld inhoudsbeveiligingsinstellingen"
|
| 2148 |
|
| 2149 |
#: views/admin_members_list.php:18
|
|
|
|
| 2150 |
msgid "All"
|
| 2151 |
+
msgstr "Alles"
|
| 2152 |
|
| 2153 |
#: views/admin_members_list.php:23
|
| 2154 |
msgid "Incomplete"
|
| 2155 |
+
msgstr "Incompleet"
|
| 2156 |
|
| 2157 |
#: views/admin_member_form_common_part.php:23
|
| 2158 |
#: includes/swpm_mda_show_profile.php:37
|
| 2282 |
msgstr "Voor alle registraties in behandeling"
|
| 2283 |
|
| 2284 |
#: views/admin_tools_settings.php:38
|
|
|
|
|
|
|
| 2285 |
msgid "Send Registration Reminder Email Too"
|
| 2286 |
+
msgstr "Stuur ook een Registratie herinnerings e-mail"
|
| 2287 |
|
| 2288 |
#: views/admin_tools_settings.php:44
|
| 2289 |
msgid "Submit"
|
| 2298 |
msgstr "Klik op de volgende link om je inschrijving te voltooien."
|
| 2299 |
|
| 2300 |
#: views/admin_tools_settings.php:55
|
|
|
|
|
|
|
| 2301 |
msgid "Registration completion links will appear below"
|
| 2302 |
+
msgstr "Registratie voltooid links verschijnen hieronder"
|
| 2303 |
|
| 2304 |
#: views/admin_tools_settings.php:65
|
| 2305 |
msgid "A prompt to complete registration email was also sent."
|
| 2424 |
msgstr "Alle lidmaatschap knoppen die je hebt gemaakt staan hier."
|
| 2425 |
|
| 2426 |
#: views/payments/admin_payment_settings.php:21
|
|
|
|
|
|
|
| 2427 |
msgid "Error! The membership level ID ("
|
| 2428 |
+
msgstr "Fout! Het lidmaadschapsniveau ID ("
|
| 2429 |
|
| 2430 |
#: views/payments/admin_payment_settings.php:28
|
| 2431 |
msgid ""
|
| 2493 |
|
| 2494 |
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:72
|
| 2495 |
msgid "Merchant ID"
|
| 2496 |
+
msgstr "Verkopers-ID"
|
| 2497 |
|
| 2498 |
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:80
|
| 2499 |
msgid "Public Key"
|
| 2500 |
+
msgstr "Publieke sleutel"
|
| 2501 |
|
| 2502 |
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:87
|
| 2503 |
msgid "Private Key"
|
| 2504 |
+
msgstr "Privé sleutel"
|
| 2505 |
|
| 2506 |
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:95
|
|
|
|
|
|
|
| 2507 |
msgid "Merchant Account ID"
|
| 2508 |
+
msgstr "Verkopersaccount-ID"
|
| 2509 |
|
| 2510 |
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:113
|
| 2511 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:137
|
| 2557 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:85
|
| 2558 |
#: views/payments/payment-gateway/admin_paypal_subscription_button.php:367
|
| 2559 |
msgid "PayPal Email"
|
| 2560 |
+
msgstr "PayPal E-mail"
|
| 2561 |
|
| 2562 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:108
|
| 2563 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:303
|
| 2575 |
msgstr ""
|
| 2576 |
|
| 2577 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:21
|
|
|
|
|
|
|
| 2578 |
msgid "PayPal Smart Checkout Button Configuration"
|
| 2579 |
+
msgstr "PayPal Smart betalingsknop configuratie"
|
| 2580 |
|
| 2581 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:107
|
| 2582 |
msgid ""
|
| 2586 |
|
| 2587 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:111
|
| 2588 |
msgid "Live Client ID"
|
| 2589 |
+
msgstr "Live Client ID"
|
| 2590 |
|
| 2591 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:119
|
| 2592 |
msgid "Live Secret"
|
| 2593 |
+
msgstr "Live Secret"
|
| 2594 |
|
| 2595 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:127
|
| 2596 |
msgid "Sandbox Client ID"
|
| 2597 |
+
msgstr "Sandbox Client ID"
|
| 2598 |
|
| 2599 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:135
|
| 2600 |
msgid "Sandbox Secret"
|
| 2601 |
+
msgstr "Sandbox Secret"
|
| 2602 |
|
| 2603 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:143
|
|
|
|
|
|
|
| 2604 |
msgid "Button Appearance Settings"
|
| 2605 |
+
msgstr "Instellingen weergave knop"
|
| 2606 |
|
| 2607 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:147
|
| 2608 |
msgid "Size"
|
| 2609 |
+
msgstr "Grootte"
|
| 2610 |
|
| 2611 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:150
|
| 2612 |
msgid "Medium"
|
| 2613 |
+
msgstr "Medium"
|
| 2614 |
|
| 2615 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:151
|
| 2616 |
msgid "Large"
|
| 2617 |
+
msgstr "Groot"
|
| 2618 |
|
| 2619 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:152
|
| 2620 |
msgid "Repsonsive"
|
| 2621 |
+
msgstr "Responsive"
|
| 2622 |
|
| 2623 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:154
|
|
|
|
|
|
|
| 2624 |
msgid "Select button size."
|
| 2625 |
+
msgstr "Selecteer grootte van knop."
|
| 2626 |
|
| 2627 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:158
|
| 2628 |
msgid "Color"
|
| 2629 |
+
msgstr "Kleur"
|
| 2630 |
|
| 2631 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:161
|
| 2632 |
msgid "Gold"
|
| 2633 |
+
msgstr "Goud"
|
| 2634 |
|
| 2635 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:162
|
| 2636 |
msgid "Blue"
|
| 2637 |
+
msgstr "Blauw"
|
| 2638 |
|
| 2639 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:163
|
| 2640 |
msgid "Silver"
|
| 2641 |
+
msgstr "Zilver"
|
| 2642 |
|
| 2643 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:164
|
| 2644 |
msgid "Black"
|
| 2645 |
+
msgstr "Zwart"
|
| 2646 |
|
| 2647 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:166
|
|
|
|
|
|
|
| 2648 |
msgid "Select button color."
|
| 2649 |
+
msgstr "Selecteer kleur van knop."
|
| 2650 |
|
| 2651 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:170
|
| 2652 |
msgid "Shape"
|
| 2653 |
+
msgstr "Vorm"
|
| 2654 |
|
| 2655 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:172
|
| 2656 |
msgid "Rectangular"
|
| 2657 |
+
msgstr "Rechthoekig"
|
| 2658 |
|
| 2659 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:173
|
| 2660 |
msgid "Pill"
|
| 2661 |
+
msgstr "Ovaal"
|
| 2662 |
|
| 2663 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:174
|
|
|
|
|
|
|
| 2664 |
msgid "Select button shape."
|
| 2665 |
+
msgstr "Selecteer de vorm van de knop."
|
| 2666 |
|
| 2667 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:178
|
| 2668 |
msgid "Layout"
|
| 2669 |
+
msgstr "Lay-out"
|
| 2670 |
|
| 2671 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:180
|
| 2672 |
msgid "Vertical"
|
| 2673 |
+
msgstr "Vertikaal"
|
| 2674 |
|
| 2675 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:181
|
| 2676 |
msgid "Horizontal"
|
| 2677 |
+
msgstr "Horizontaal"
|
| 2678 |
|
| 2679 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:182
|
|
|
|
|
|
|
| 2680 |
msgid "Select button layout."
|
| 2681 |
+
msgstr "Kies knop lay-out."
|
| 2682 |
|
| 2683 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:187
|
|
|
|
|
|
|
| 2684 |
msgid "Additional Settings"
|
| 2685 |
+
msgstr "Aanvullende instellingen"
|
| 2686 |
|
| 2687 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:191
|
|
|
|
|
|
|
| 2688 |
msgid "Payment Methods"
|
| 2689 |
+
msgstr "Betalingsmethoden"
|
| 2690 |
|
| 2691 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:193
|
|
|
|
|
|
|
| 2692 |
msgid "PayPal Credit"
|
| 2693 |
+
msgstr "PayPal-tegoed"
|
| 2694 |
|
| 2695 |
#: views/payments/payment-gateway/admin_paypal_smart_checkout_button.php:194
|
| 2696 |
msgid "ELV"
|
| 2756 |
|
| 2757 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:29
|
| 2758 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:250
|
|
|
|
|
|
|
| 2759 |
msgid "Stripe Buy Now Button Configuration"
|
| 2760 |
+
msgstr "Stripe Koop Nu-knop configuratie"
|
| 2761 |
|
| 2762 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:104
|
| 2763 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:328
|
| 2795 |
msgstr ""
|
| 2796 |
|
| 2797 |
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:75
|
|
|
|
|
|
|
| 2798 |
msgid "Stripe Subscription Button Configuration"
|
| 2799 |
+
msgstr ""
|
| 2800 |
|
| 2801 |
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:109
|
| 2802 |
msgid "Stripe API ID"
|
| 2803 |
msgstr ""
|
| 2804 |
|
| 2805 |
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:125
|
|
|
|
|
|
|
| 2806 |
msgid "Stripe API Settings"
|
| 2807 |
+
msgstr ""
|
| 2808 |
|
| 2809 |
#: views/payments/payment-gateway/admin_stripe_subscription_button.php:163
|
| 2810 |
msgid "Webook Endpoint URL"
|
| 2826 |
|
| 2827 |
#: views/payments/payment-gateway/paypal_smart_checkout_button_shortcode_view.php:137
|
| 2828 |
msgid "Error occured during PayPal Smart Checkout process."
|
| 2829 |
+
msgstr "Er is een fout opgetreden tijdens PayPal Smart betaling."
|
| 2830 |
|
| 2831 |
#: views/payments/payment-gateway/paypal_smart_checkout_button_shortcode_view.php:165
|
| 2832 |
msgid "HTTP error occured during payment process:"
|
| 2833 |
+
msgstr "Er is een HTTPS-fout opgetreden tijdens betaling:"
|
| 2834 |
|
| 2835 |
#: Translation strings from addons === Form builder addon
|
|
|
|
|
|
|
| 2836 |
msgid "Type password here"
|
| 2837 |
+
msgstr "Voer hier het wachtwoord in"
|
| 2838 |
|
|
|
|
|
|
|
| 2839 |
msgid "Retype password here"
|
| 2840 |
+
msgstr "Voer hier wachtwoord nogmaals in"
|
| 2841 |
|
| 2842 |
msgid "Registration is complete. You can now log into the site."
|
| 2843 |
+
msgstr "De registratie is afgerond. Je kunt nu bij de site inloggen."
|
| 2844 |
|
|
|
|
|
|
|
| 2845 |
msgid " Field has invalid character"
|
| 2846 |
+
msgstr " De invoer bevat een ongeldig teken"
|
| 2847 |
|
|
|
|
|
|
|
| 2848 |
msgid " Password does not match"
|
| 2849 |
+
msgstr " Wachtwoord komt niet overeen"
|
| 2850 |
|
|
|
|
|
|
|
| 2851 |
msgid "Already taken."
|
| 2852 |
+
msgstr "Al bezet."
|
| 2853 |
|
|
|
|
|
|
|
| 2854 |
msgid "Street Address"
|
| 2855 |
msgstr "Straat"
|
| 2856 |
|
| 2858 |
msgstr ""
|
| 2859 |
|
| 2860 |
msgid "State / Province / Region"
|
| 2861 |
+
msgstr "Provincie"
|
| 2862 |
|
| 2863 |
msgid "Postal / Zip Code"
|
| 2864 |
+
msgstr "Postcode"
|
| 2865 |
|
| 2866 |
msgid ""
|
| 2867 |
"Check this box to delete the image. The image will be deleted when you save "
|
| 2868 |
"the profile."
|
| 2869 |
msgstr ""
|
| 2870 |
+
"Vink aan om de afbeelding te verwijderen. De afbeelding wordt verwijderd "
|
| 2871 |
+
"nadat je je profiel hebt opgeslagen."
|
| 2872 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2873 |
msgid "You will need to re-login since you changed your password."
|
| 2874 |
+
msgstr "Je wachtwoord is gewijzigd en daarom moet je opnieuw inloggen."
|
|
|
|
|
|
|
| 2875 |
|
| 2876 |
msgid ""
|
| 2877 |
"Please enter any two digits with <strong>no</strong> spaces (Example: 12)"
|
| 2878 |
msgstr ""
|
| 2879 |
+
"Voer twee willekeurige cijfers in <strong>zonder</strong> spaties "
|
| 2880 |
+
"(Bijvoorbeeld: 12)"
|
| 2881 |
|
|
|
|
|
|
|
| 2882 |
msgid "Verification"
|
| 2883 |
+
msgstr "Controle"
|
| 2884 |
|
| 2885 |
msgid "Please enter any two digits with no spaces (Example: 12)*"
|
| 2886 |
+
msgstr "Voer twee willekeurige cijfers in zonder spaties (Bijvoorbeeld: 12)*"
|
| 2887 |
|
|
|
|
|
|
|
| 2888 |
msgid "Username can only contain: letters, numbers and .-*@"
|
| 2889 |
msgstr ""
|
| 2890 |
+
"De gebruikersnaam mag alleen het volgende bevatten: letters, cijfers en de "
|
| 2891 |
+
"tekens .-_*@"
|
| 2892 |
|
|
|
|
|
|
|
| 2893 |
msgid "Allowed characters are: letters, numbers and .-_*@"
|
| 2894 |
+
msgstr "Toegestane tekens zijn: letters, getallen en .-_*@"
|
|
|
|
| 2895 |
|
| 2896 |
#: === Partial protection addon strings
|
|
|
|
|
|
|
| 2897 |
msgid "You do not have permission to view this content."
|
| 2898 |
+
msgstr "Je hebt geen toestemming om de inhoud te bekijken."
|
| 2899 |
|
|
|
|
|
|
|
| 2900 |
msgid "Your membership level does not have permission to view this content."
|
| 2901 |
+
msgstr "Jouw lidmaatschapsniveau geeft je geen toegang tot deze inhoud."
|
| 2902 |
|
|
|
|
|
|
|
| 2903 |
msgid "This content is for members only."
|
| 2904 |
+
msgstr "Deze inhoud is alleen toegankelijk voor leden."
|
| 2905 |
|
| 2906 |
msgid "Please check at least one."
|
| 2907 |
+
msgstr "Controleer er ten minste één."
|
| 2908 |
|
| 2909 |
#: === Member Directory Listing addon strings swpm-member-directory-admin.php:9
|
|
|
|
|
|
|
| 2910 |
msgid "Member Directory"
|
| 2911 |
+
msgstr "Ledenlijst"
|
| 2912 |
|
| 2913 |
#: includes/swpm_mda_show_profile.php:26
|
|
|
|
|
|
|
| 2914 |
msgid "Member ID"
|
| 2915 |
+
msgstr "Lidnummer"
|
| 2916 |
|
| 2917 |
#: includes/swpm_mda_show_profile.php:30
|
|
|
|
| 2918 |
msgid "Level"
|
| 2919 |
+
msgstr "Niveau"
|
| 2920 |
|
| 2921 |
#: includes/swpm_mda_show_profile.php:32
|
|
|
|
|
|
|
| 2922 |
msgid "Address"
|
| 2923 |
+
msgstr "Adres"
|
| 2924 |
|
| 2925 |
#: views/template-1.php:52 views/template-2.php:53
|
|
|
|
|
|
|
| 2926 |
msgid "Search..."
|
| 2927 |
+
msgstr "Zoeken..."
|
| 2928 |
|
| 2929 |
#: views/template-1.php:60 views/template-2.php:62
|
|
|
|
|
|
|
| 2930 |
msgid "Clear Search"
|
| 2931 |
+
msgstr "Zoekterm verwijderen"
|
| 2932 |
|
|
|
|
|
|
|
| 2933 |
msgid "You must be logged in to upgrade a membership."
|
| 2934 |
+
msgstr "Je moet ingelogd zijn op je lidmaatschap te upgraden."
|
| 2935 |
|
|
|
|
|
|
|
| 2936 |
msgid "Membership level has been updated."
|
| 2937 |
+
msgstr "Lidmaatschapsniveau is bijgewerkt."
|
| 2938 |
|
|
|
|
|
|
|
| 2939 |
msgid "Already a member of this level."
|
| 2940 |
+
msgstr "Je bent al lid op dit lidmaatschapsniveau."
|
| 2941 |
|
| 2942 |
#~ msgid "Name"
|
| 2943 |
#~ msgstr "Naam"
|
| 2960 |
#~ msgid "All dates"
|
| 2961 |
#~ msgstr "Alle data"
|
| 2962 |
|
|
|
|
| 2963 |
#~ msgid "%1$s %2$d"
|
| 2964 |
#~ msgstr "%1$s %2$d"
|
| 2965 |
|
|
|
|
| 2966 |
#~ msgid "%s pending"
|
| 2967 |
#~ msgstr "%s (In behandeling)"
|
| 2968 |
|
languages/simple-membership.pot
CHANGED
|
@@ -3,14 +3,14 @@ msgid ""
|
|
| 3 |
msgstr ""
|
| 4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
| 5 |
"Project-Id-Version: Simple WordPress Membership\n"
|
| 6 |
-
"POT-Creation-Date:
|
| 7 |
-
"PO-Revision-Date:
|
| 8 |
"Last-Translator: \n"
|
| 9 |
"Language-Team: \n"
|
| 10 |
"MIME-Version: 1.0\n"
|
| 11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 12 |
"Content-Transfer-Encoding: 8bit\n"
|
| 13 |
-
"X-Generator: Poedit 2.
|
| 14 |
"X-Poedit-Basepath: ..\n"
|
| 15 |
"X-Poedit-Flags-xgettext: --add-comments=translators:\n"
|
| 16 |
"X-Poedit-WPHeader: simple-wp-membership.php\n"
|
|
@@ -19,7 +19,7 @@ msgstr ""
|
|
| 19 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
| 20 |
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
| 21 |
"X-Poedit-SearchPath-0: .\n"
|
| 22 |
-
"X-Poedit-SearchPathExcluded-0: *.
|
| 23 |
|
| 24 |
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:76
|
| 25 |
msgid "Payment Button ID"
|
|
@@ -42,15 +42,15 @@ msgid "Button Shortcode"
|
|
| 42 |
msgstr ""
|
| 43 |
|
| 44 |
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:95
|
| 45 |
-
#: classes/admin-includes/class.swpm-payments-list-table.php:
|
| 46 |
-
#: classes/class.swpm-members.php:
|
| 47 |
#: classes/class.swpm-membership-levels.php:36
|
| 48 |
msgid "Delete"
|
| 49 |
msgstr ""
|
| 50 |
|
| 51 |
-
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:
|
| 52 |
#: views/admin_members_list.php:8
|
| 53 |
-
#: views/payments/admin_all_payment_transactions.php:
|
| 54 |
msgid "The selected entry was deleted!"
|
| 55 |
msgstr ""
|
| 56 |
|
|
@@ -58,67 +58,67 @@ msgstr ""
|
|
| 58 |
msgid "Simple Membership::Payments"
|
| 59 |
msgstr ""
|
| 60 |
|
| 61 |
-
#: classes/admin-includes/class.swpm-payments-list-table.php:
|
| 62 |
msgid "View Profile"
|
| 63 |
msgstr ""
|
| 64 |
|
| 65 |
-
#: classes/admin-includes/class.swpm-payments-list-table.php:
|
| 66 |
msgid "Row ID"
|
| 67 |
msgstr ""
|
| 68 |
|
| 69 |
-
#: classes/admin-includes/class.swpm-payments-list-table.php:
|
| 70 |
#: views/forgot_password.php:5
|
| 71 |
#: views/payments/admin_add_edit_transaction_manually.php:75
|
| 72 |
msgid "Email Address"
|
| 73 |
msgstr ""
|
| 74 |
|
| 75 |
-
#: classes/admin-includes/class.swpm-payments-list-table.php:
|
| 76 |
#: classes/class.swpm-members.php:23 views/add.php:34
|
| 77 |
-
#: views/admin_member_form_common_part.php:
|
| 78 |
#: views/payments/admin_add_edit_transaction_manually.php:83
|
| 79 |
msgid "First Name"
|
| 80 |
msgstr ""
|
| 81 |
|
| 82 |
-
#: classes/admin-includes/class.swpm-payments-list-table.php:
|
| 83 |
#: classes/class.swpm-members.php:24 views/add.php:38
|
| 84 |
-
#: views/admin_member_form_common_part.php:
|
| 85 |
#: views/payments/admin_add_edit_transaction_manually.php:91
|
| 86 |
msgid "Last Name"
|
| 87 |
msgstr ""
|
| 88 |
|
| 89 |
-
#: classes/admin-includes/class.swpm-payments-list-table.php:
|
| 90 |
msgid "Member Profile"
|
| 91 |
msgstr ""
|
| 92 |
|
| 93 |
-
#: classes/admin-includes/class.swpm-payments-list-table.php:
|
| 94 |
#: classes/class.swpm-post-list.php:43 classes/class.swpm-post-list.php:52
|
| 95 |
#: classes/class.swpm-post-list.php:62
|
| 96 |
#: views/payments/admin_add_edit_transaction_manually.php:125
|
| 97 |
msgid "Date"
|
| 98 |
msgstr ""
|
| 99 |
|
| 100 |
-
#: classes/admin-includes/class.swpm-payments-list-table.php:
|
| 101 |
#: views/payments/admin_add_edit_transaction_manually.php:133
|
| 102 |
msgid "Transaction ID"
|
| 103 |
msgstr ""
|
| 104 |
|
| 105 |
-
#: classes/admin-includes/class.swpm-payments-list-table.php:
|
| 106 |
#: views/payments/admin_add_edit_transaction_manually.php:141
|
| 107 |
msgid "Subscriber ID"
|
| 108 |
msgstr ""
|
| 109 |
|
| 110 |
-
#: classes/admin-includes/class.swpm-payments-list-table.php:
|
| 111 |
#: views/payments/admin_add_edit_transaction_manually.php:117
|
| 112 |
msgid "Amount"
|
| 113 |
msgstr ""
|
| 114 |
|
| 115 |
-
#: classes/admin-includes/class.swpm-payments-list-table.php:
|
| 116 |
#: classes/class.swpm-category-list.php:19 classes/class.swpm-members.php:26
|
| 117 |
#: classes/class.swpm-membership-levels.php:11
|
| 118 |
#: classes/class.swpm-membership-levels.php:21
|
| 119 |
-
#: classes/class.swpm-post-list.php:20 views/add.php:42
|
| 120 |
-
#: views/
|
| 121 |
-
#: views/
|
| 122 |
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:50
|
| 123 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:34
|
| 124 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:232
|
|
@@ -134,7 +134,7 @@ msgstr ""
|
|
| 134 |
msgid "Membership Level"
|
| 135 |
msgstr ""
|
| 136 |
|
| 137 |
-
#: classes/admin-includes/class.swpm-payments-list-table.php:
|
| 138 |
#: views/payments/admin_add_edit_transaction_manually.php:149
|
| 139 |
msgid "Status/Note"
|
| 140 |
msgstr ""
|
|
@@ -152,156 +152,156 @@ msgstr ""
|
|
| 152 |
msgid "Are you sure that you want to cancel the subscription?"
|
| 153 |
msgstr ""
|
| 154 |
|
| 155 |
-
#: classes/class.simple-wp-membership.php:
|
| 156 |
msgid "The admin of this site does not allow users to access the wp dashboard."
|
| 157 |
msgstr ""
|
| 158 |
|
| 159 |
-
#: classes/class.simple-wp-membership.php:
|
| 160 |
msgid "Go back to the home page by "
|
| 161 |
msgstr ""
|
| 162 |
|
| 163 |
-
#: classes/class.simple-wp-membership.php:
|
| 164 |
msgid "clicking here"
|
| 165 |
msgstr ""
|
| 166 |
|
| 167 |
-
#: classes/class.simple-wp-membership.php:
|
| 168 |
msgid ""
|
| 169 |
"Error! This site has the force WP user login feature enabled in the "
|
| 170 |
"settings. We could not find a WP user record for the given username: "
|
| 171 |
msgstr ""
|
| 172 |
|
| 173 |
-
#: classes/class.simple-wp-membership.php:
|
| 174 |
msgid ""
|
| 175 |
"This error is triggered when a member account doesn't have a corresponding "
|
| 176 |
"WP user account. So the plugin fails to log the user into the WP User system."
|
| 177 |
msgstr ""
|
| 178 |
|
| 179 |
-
#: classes/class.simple-wp-membership.php:
|
| 180 |
msgid ""
|
| 181 |
"Contact the site admin and request them to check your username in the WP "
|
| 182 |
"Users menu to see what happened with the WP user entry of your account."
|
| 183 |
msgstr ""
|
| 184 |
|
| 185 |
-
#: classes/class.simple-wp-membership.php:
|
| 186 |
msgid ""
|
| 187 |
"The site admin can disable the Force WP User Synchronization feature in the "
|
| 188 |
"settings to disable this feature and this error will go away."
|
| 189 |
msgstr ""
|
| 190 |
|
| 191 |
-
#: classes/class.simple-wp-membership.php:
|
| 192 |
msgid "You can use the back button of your browser to go back to the site."
|
| 193 |
msgstr ""
|
| 194 |
|
| 195 |
-
#: classes/class.simple-wp-membership.php:
|
| 196 |
#: classes/class.swpm-wp-loaded-tasks.php:141
|
| 197 |
msgid "You are not logged in."
|
| 198 |
msgstr ""
|
| 199 |
|
| 200 |
-
#: classes/class.simple-wp-membership.php:
|
| 201 |
msgid ""
|
| 202 |
"You have the sandbox payment mode enabled in plugin settings. Make sure to "
|
| 203 |
"turn off the sandbox mode when you want to do live transactions."
|
| 204 |
msgstr ""
|
| 205 |
|
| 206 |
-
#: classes/class.simple-wp-membership.php:
|
| 207 |
msgid "Simple WP Membership Protection"
|
| 208 |
msgstr ""
|
| 209 |
|
| 210 |
-
#: classes/class.simple-wp-membership.php:
|
| 211 |
msgid "Simple Membership Protection options"
|
| 212 |
msgstr ""
|
| 213 |
|
| 214 |
-
#: classes/class.simple-wp-membership.php:
|
| 215 |
msgid "Do you want to protect this content?"
|
| 216 |
msgstr ""
|
| 217 |
|
| 218 |
-
#: classes/class.simple-wp-membership.php:
|
| 219 |
msgid "No, Do not protect this content."
|
| 220 |
msgstr ""
|
| 221 |
|
| 222 |
-
#: classes/class.simple-wp-membership.php:
|
| 223 |
msgid "Yes, Protect this content."
|
| 224 |
msgstr ""
|
| 225 |
|
| 226 |
-
#: classes/class.simple-wp-membership.php:
|
| 227 |
msgid "Select the membership level that can access this content:"
|
| 228 |
msgstr ""
|
| 229 |
|
| 230 |
-
#: classes/class.simple-wp-membership.php:
|
| 231 |
-
#: classes/class.simple-wp-membership.php:
|
| 232 |
msgid "Validating, please wait"
|
| 233 |
msgstr ""
|
| 234 |
|
| 235 |
-
#: classes/class.simple-wp-membership.php:
|
| 236 |
msgid "Invalid email address"
|
| 237 |
msgstr ""
|
| 238 |
|
| 239 |
-
#: classes/class.simple-wp-membership.php:
|
| 240 |
msgid "This field is required"
|
| 241 |
msgstr ""
|
| 242 |
|
| 243 |
-
#: classes/class.simple-wp-membership.php:
|
| 244 |
msgid "Password must contain at least:"
|
| 245 |
msgstr ""
|
| 246 |
|
| 247 |
-
#: classes/class.simple-wp-membership.php:
|
| 248 |
msgid "- a digit"
|
| 249 |
msgstr ""
|
| 250 |
|
| 251 |
-
#: classes/class.simple-wp-membership.php:
|
| 252 |
msgid "- an uppercase letter"
|
| 253 |
msgstr ""
|
| 254 |
|
| 255 |
-
#: classes/class.simple-wp-membership.php:
|
| 256 |
msgid "- a lowercase letter"
|
| 257 |
msgstr ""
|
| 258 |
|
| 259 |
-
#: classes/class.simple-wp-membership.php:
|
| 260 |
msgid "Invalid Username"
|
| 261 |
msgstr ""
|
| 262 |
|
| 263 |
-
#: classes/class.simple-wp-membership.php:
|
| 264 |
msgid "Usernames can only contain: letters, numbers and .-_*@"
|
| 265 |
msgstr ""
|
| 266 |
|
| 267 |
-
#: classes/class.simple-wp-membership.php:
|
| 268 |
msgid "Minimum "
|
| 269 |
msgstr ""
|
| 270 |
|
| 271 |
-
#: classes/class.simple-wp-membership.php:
|
| 272 |
msgid " characters required"
|
| 273 |
msgstr ""
|
| 274 |
|
| 275 |
-
#: classes/class.simple-wp-membership.php:
|
| 276 |
msgid "Apostrophe character is not allowed"
|
| 277 |
msgstr ""
|
| 278 |
|
| 279 |
-
#: classes/class.simple-wp-membership.php:
|
| 280 |
msgid "WP Membership"
|
| 281 |
msgstr ""
|
| 282 |
|
| 283 |
-
#: classes/class.simple-wp-membership.php:
|
| 284 |
-
#: classes/class.swpm-members.php:
|
| 285 |
msgid "Members"
|
| 286 |
msgstr ""
|
| 287 |
|
| 288 |
-
#: classes/class.simple-wp-membership.php:
|
| 289 |
#: classes/class.swpm-category-list.php:20
|
| 290 |
#: classes/class.swpm-membership-levels.php:12
|
| 291 |
-
#: classes/class.swpm-membership-levels.php:
|
| 292 |
#: classes/class.swpm-post-list.php:21
|
| 293 |
msgid "Membership Levels"
|
| 294 |
msgstr ""
|
| 295 |
|
| 296 |
-
#: classes/class.simple-wp-membership.php:
|
| 297 |
msgid "Settings"
|
| 298 |
msgstr ""
|
| 299 |
|
| 300 |
-
#: classes/class.simple-wp-membership.php:
|
| 301 |
msgid "Payments"
|
| 302 |
msgstr ""
|
| 303 |
|
| 304 |
-
#: classes/class.simple-wp-membership.php:
|
| 305 |
msgid "Add-ons"
|
| 306 |
msgstr ""
|
| 307 |
|
|
@@ -359,7 +359,7 @@ msgid "Your current password"
|
|
| 359 |
msgstr ""
|
| 360 |
|
| 361 |
#: classes/class.swpm-ajax.php:14 classes/class.swpm-ajax.php:34
|
| 362 |
-
#: ipn/swpm-smart-checkout-ipn.php:
|
| 363 |
msgid "Nonce check failed. Please reload the page."
|
| 364 |
msgstr ""
|
| 365 |
|
|
@@ -443,8 +443,8 @@ msgid ""
|
|
| 443 |
msgstr ""
|
| 444 |
|
| 445 |
#: classes/class.swpm-auth.php:160
|
| 446 |
-
#: classes/class.swpm-front-registration.php:
|
| 447 |
-
#: classes/class.swpm-front-registration.php:
|
| 448 |
#: classes/class.swpm-utils-misc.php:196
|
| 449 |
msgid "click here"
|
| 450 |
msgstr ""
|
|
@@ -591,134 +591,134 @@ msgid ""
|
|
| 591 |
"registration form is hidden."
|
| 592 |
msgstr ""
|
| 593 |
|
| 594 |
-
#: classes/class.swpm-front-registration.php:
|
| 595 |
-
#: classes/class.swpm-utils-misc.php:364 views/login.php:
|
| 596 |
msgid "Join Us"
|
| 597 |
msgstr ""
|
| 598 |
|
| 599 |
-
#: classes/class.swpm-front-registration.php:
|
| 600 |
msgid ""
|
| 601 |
"Free membership is disabled on this site. Please make a payment from the "
|
| 602 |
msgstr ""
|
| 603 |
|
| 604 |
-
#: classes/class.swpm-front-registration.php:
|
| 605 |
msgid " page to pay for a premium membership."
|
| 606 |
msgstr ""
|
| 607 |
|
| 608 |
-
#: classes/class.swpm-front-registration.php:
|
| 609 |
msgid ""
|
| 610 |
"You will receive a unique link via email after the payment. You will be able "
|
| 611 |
"to use that link to complete the premium membership registration."
|
| 612 |
msgstr ""
|
| 613 |
|
| 614 |
-
#: classes/class.swpm-front-registration.php:
|
| 615 |
msgid "Security check: captcha validation failed."
|
| 616 |
msgstr ""
|
| 617 |
|
| 618 |
-
#: classes/class.swpm-front-registration.php:
|
| 619 |
msgid "You must accept the terms and conditions."
|
| 620 |
msgstr ""
|
| 621 |
|
| 622 |
-
#: classes/class.swpm-front-registration.php:
|
| 623 |
msgid "You must agree to the privacy policy."
|
| 624 |
msgstr ""
|
| 625 |
|
| 626 |
-
#: classes/class.swpm-front-registration.php:
|
| 627 |
msgid ""
|
| 628 |
"You need to confirm your email address. Please check your email and follow "
|
| 629 |
"instructions to complete your registration."
|
| 630 |
msgstr ""
|
| 631 |
|
| 632 |
-
#: classes/class.swpm-front-registration.php:
|
| 633 |
msgid "Registration Successful. "
|
| 634 |
msgstr ""
|
| 635 |
|
| 636 |
-
#: classes/class.swpm-front-registration.php:
|
| 637 |
#: classes/class.swpm-utils-misc.php:363 classes/class.swpm-utils-misc.php:375
|
| 638 |
msgid "Please"
|
| 639 |
msgstr ""
|
| 640 |
|
| 641 |
-
#: classes/class.swpm-front-registration.php:
|
| 642 |
-
#: classes/class.swpm-utils-misc.php:363 views/login.php:
|
| 643 |
msgid "Login"
|
| 644 |
msgstr ""
|
| 645 |
|
| 646 |
-
#: classes/class.swpm-front-registration.php:
|
| 647 |
msgid "Please correct the following"
|
| 648 |
msgstr ""
|
| 649 |
|
| 650 |
-
#: classes/class.swpm-front-registration.php:
|
| 651 |
msgid "Membership Level Couldn't be found."
|
| 652 |
msgstr ""
|
| 653 |
|
| 654 |
-
#: classes/class.swpm-front-registration.php:
|
| 655 |
msgid "Error! Nonce verification failed for front end profile edit."
|
| 656 |
msgstr ""
|
| 657 |
|
| 658 |
-
#: classes/class.swpm-front-registration.php:
|
| 659 |
msgid "Profile updated successfully."
|
| 660 |
msgstr ""
|
| 661 |
|
| 662 |
-
#: classes/class.swpm-front-registration.php:
|
| 663 |
msgid ""
|
| 664 |
"Profile updated successfully. You will need to re-login since you changed "
|
| 665 |
"your password."
|
| 666 |
msgstr ""
|
| 667 |
|
| 668 |
-
#: classes/class.swpm-front-registration.php:
|
| 669 |
msgid "Please correct the following."
|
| 670 |
msgstr ""
|
| 671 |
|
| 672 |
-
#: classes/class.swpm-front-registration.php:
|
| 673 |
msgid "Captcha validation failed."
|
| 674 |
msgstr ""
|
| 675 |
|
| 676 |
-
#: classes/class.swpm-front-registration.php:
|
| 677 |
msgid "Email address not valid."
|
| 678 |
msgstr ""
|
| 679 |
|
| 680 |
-
#: classes/class.swpm-front-registration.php:
|
| 681 |
msgid "No user found with that email address."
|
| 682 |
msgstr ""
|
| 683 |
|
| 684 |
-
#: classes/class.swpm-front-registration.php:
|
| 685 |
-
#: classes/class.swpm-front-registration.php:
|
| 686 |
msgid "Email Address: "
|
| 687 |
msgstr ""
|
| 688 |
|
| 689 |
-
#: classes/class.swpm-front-registration.php:
|
| 690 |
msgid "New password has been sent to your email address."
|
| 691 |
msgstr ""
|
| 692 |
|
| 693 |
-
#: classes/class.swpm-front-registration.php:
|
| 694 |
msgid "Can't find member account."
|
| 695 |
msgstr ""
|
| 696 |
|
| 697 |
-
#: classes/class.swpm-front-registration.php:
|
| 698 |
-
#: classes/class.swpm-front-registration.php:
|
| 699 |
msgid "Account already active. "
|
| 700 |
msgstr ""
|
| 701 |
|
| 702 |
-
#: classes/class.swpm-front-registration.php:
|
| 703 |
-
#: classes/class.swpm-front-registration.php:
|
| 704 |
msgid " to login."
|
| 705 |
msgstr ""
|
| 706 |
|
| 707 |
-
#: classes/class.swpm-front-registration.php:
|
| 708 |
msgid ""
|
| 709 |
"Activation code mismatch. Cannot activate this account. Please contact the "
|
| 710 |
"site admin."
|
| 711 |
msgstr ""
|
| 712 |
|
| 713 |
-
#: classes/class.swpm-front-registration.php:
|
| 714 |
msgid "Success! Your account has been activated successfully."
|
| 715 |
msgstr ""
|
| 716 |
|
| 717 |
-
#: classes/class.swpm-front-registration.php:
|
| 718 |
msgid "Cannot find member account."
|
| 719 |
msgstr ""
|
| 720 |
|
| 721 |
-
#: classes/class.swpm-front-registration.php:
|
| 722 |
msgid ""
|
| 723 |
"Activation email has been sent. Please check your email and activate your "
|
| 724 |
"account."
|
|
@@ -758,7 +758,7 @@ msgstr ""
|
|
| 758 |
msgid "Email"
|
| 759 |
msgstr ""
|
| 760 |
|
| 761 |
-
#: classes/class.swpm-members.php:27 views/admin_member_form_common_part.php:
|
| 762 |
msgid "Access Starts"
|
| 763 |
msgstr ""
|
| 764 |
|
|
@@ -770,75 +770,75 @@ msgstr ""
|
|
| 770 |
msgid "Last Login Date"
|
| 771 |
msgstr ""
|
| 772 |
|
| 773 |
-
#: classes/class.swpm-members.php:
|
| 774 |
msgid "Set Status to Active"
|
| 775 |
msgstr ""
|
| 776 |
|
| 777 |
-
#: classes/class.swpm-members.php:
|
| 778 |
msgid "Set Status to Active and Notify"
|
| 779 |
msgstr ""
|
| 780 |
|
| 781 |
-
#: classes/class.swpm-members.php:
|
| 782 |
msgid "Set Status to Inactive"
|
| 783 |
msgstr ""
|
| 784 |
|
| 785 |
-
#: classes/class.swpm-members.php:
|
| 786 |
msgid "Set Status to Pending"
|
| 787 |
msgstr ""
|
| 788 |
|
| 789 |
-
#: classes/class.swpm-members.php:
|
| 790 |
msgid "Set Status to Expired"
|
| 791 |
msgstr ""
|
| 792 |
|
| 793 |
-
#: classes/class.swpm-members.php:
|
| 794 |
msgid "incomplete"
|
| 795 |
msgstr ""
|
| 796 |
|
| 797 |
-
#: classes/class.swpm-members.php:
|
| 798 |
msgid "No member found."
|
| 799 |
msgstr ""
|
| 800 |
|
| 801 |
-
#: classes/class.swpm-members.php:
|
| 802 |
msgid "Error! Nonce verification failed for user delete from admin end."
|
| 803 |
msgstr ""
|
| 804 |
|
| 805 |
-
#: classes/class.swpm-members.php:
|
| 806 |
msgid ""
|
| 807 |
"Error! Nonce security verification failed for Bulk Change Membership Level "
|
| 808 |
"action. Clear cache and try again."
|
| 809 |
msgstr ""
|
| 810 |
|
| 811 |
-
#: classes/class.swpm-members.php:
|
| 812 |
msgid "Error! Please select a membership level first."
|
| 813 |
msgstr ""
|
| 814 |
|
| 815 |
-
#: classes/class.swpm-members.php:
|
| 816 |
msgid "Membership level change operation completed successfully."
|
| 817 |
msgstr ""
|
| 818 |
|
| 819 |
-
#: classes/class.swpm-members.php:
|
| 820 |
msgid ""
|
| 821 |
"Error! Nonce security verification failed for Bulk Change Access Starts Date "
|
| 822 |
"action. Clear cache and try again."
|
| 823 |
msgstr ""
|
| 824 |
|
| 825 |
-
#: classes/class.swpm-members.php:
|
| 826 |
msgid "Access starts date change operation successfully completed."
|
| 827 |
msgstr ""
|
| 828 |
|
| 829 |
-
#: classes/class.swpm-members.php:
|
| 830 |
msgid "Simple WP Membership::Members"
|
| 831 |
msgstr ""
|
| 832 |
|
| 833 |
-
#: classes/class.swpm-members.php:
|
| 834 |
msgid "Add New"
|
| 835 |
msgstr ""
|
| 836 |
|
| 837 |
-
#: classes/class.swpm-members.php:
|
| 838 |
msgid "Add Member"
|
| 839 |
msgstr ""
|
| 840 |
|
| 841 |
-
#: classes/class.swpm-members.php:
|
| 842 |
msgid "Bulk Operation"
|
| 843 |
msgstr ""
|
| 844 |
|
|
@@ -869,33 +869,33 @@ msgstr ""
|
|
| 869 |
msgid "Access Valid For/Until"
|
| 870 |
msgstr ""
|
| 871 |
|
| 872 |
-
#: classes/class.swpm-membership-levels.php:
|
| 873 |
msgid ""
|
| 874 |
"Error! Nonce verification failed for membership level delete from admin end."
|
| 875 |
msgstr ""
|
| 876 |
|
| 877 |
-
#: classes/class.swpm-membership-levels.php:
|
| 878 |
#: views/payments/admin_all_payment_transactions.php:16
|
| 879 |
msgid "Search"
|
| 880 |
msgstr ""
|
| 881 |
|
| 882 |
-
#: classes/class.swpm-membership-levels.php:
|
| 883 |
msgid "Simple WP Membership::Membership Levels"
|
| 884 |
msgstr ""
|
| 885 |
|
| 886 |
-
#: classes/class.swpm-membership-levels.php:
|
| 887 |
msgid "Add Level"
|
| 888 |
msgstr ""
|
| 889 |
|
| 890 |
-
#: classes/class.swpm-membership-levels.php:
|
| 891 |
msgid "Manage Content Protection"
|
| 892 |
msgstr ""
|
| 893 |
|
| 894 |
-
#: classes/class.swpm-membership-levels.php:
|
| 895 |
msgid "Category Protection"
|
| 896 |
msgstr ""
|
| 897 |
|
| 898 |
-
#: classes/class.swpm-membership-levels.php:
|
| 899 |
msgid "Post and Page Protection"
|
| 900 |
msgstr ""
|
| 901 |
|
|
@@ -942,196 +942,206 @@ msgstr ""
|
|
| 942 |
msgid "category protection menu"
|
| 943 |
msgstr ""
|
| 944 |
|
| 945 |
-
#: classes/class.swpm-settings.php:
|
| 946 |
msgid "General Settings"
|
| 947 |
msgstr ""
|
| 948 |
|
| 949 |
-
#: classes/class.swpm-settings.php:
|
| 950 |
msgid "Payment Settings"
|
| 951 |
msgstr ""
|
| 952 |
|
| 953 |
-
#: classes/class.swpm-settings.php:
|
| 954 |
msgid "Email Settings"
|
| 955 |
msgstr ""
|
| 956 |
|
| 957 |
-
#: classes/class.swpm-settings.php:
|
| 958 |
msgid "Tools"
|
| 959 |
msgstr ""
|
| 960 |
|
| 961 |
-
#: classes/class.swpm-settings.php:
|
| 962 |
msgid "Advanced Settings"
|
| 963 |
msgstr ""
|
| 964 |
|
| 965 |
-
#: classes/class.swpm-settings.php:
|
| 966 |
msgid "Addons Settings"
|
| 967 |
msgstr ""
|
| 968 |
|
| 969 |
-
#: classes/class.swpm-settings.php:
|
| 970 |
msgid "Plugin Documentation"
|
| 971 |
msgstr ""
|
| 972 |
|
| 973 |
-
#: classes/class.swpm-settings.php:
|
| 974 |
msgid "Enable Free Membership"
|
| 975 |
msgstr ""
|
| 976 |
|
| 977 |
-
#: classes/class.swpm-settings.php:
|
| 978 |
msgid ""
|
| 979 |
"Enable/disable registration for free membership level. When you enable this "
|
| 980 |
"option, make sure to specify a free membership level ID in the field below."
|
| 981 |
msgstr ""
|
| 982 |
|
| 983 |
-
#: classes/class.swpm-settings.php:
|
| 984 |
msgid "Free Membership Level ID"
|
| 985 |
msgstr ""
|
| 986 |
|
| 987 |
-
#: classes/class.swpm-settings.php:
|
| 988 |
msgid "Assign free membership level ID"
|
| 989 |
msgstr ""
|
| 990 |
|
| 991 |
-
#: classes/class.swpm-settings.php:
|
| 992 |
msgid "Enable More Tag Protection"
|
| 993 |
msgstr ""
|
| 994 |
|
| 995 |
-
#: classes/class.swpm-settings.php:
|
| 996 |
msgid ""
|
| 997 |
"Enables or disables \"more\" tag protection in the posts and pages. Anything "
|
| 998 |
"after the More tag is protected. Anything before the more tag is teaser "
|
| 999 |
"content."
|
| 1000 |
msgstr ""
|
| 1001 |
|
| 1002 |
-
#: classes/class.swpm-settings.php:
|
| 1003 |
msgid "Hide Adminbar"
|
| 1004 |
msgstr ""
|
| 1005 |
|
| 1006 |
-
#: classes/class.swpm-settings.php:
|
| 1007 |
msgid ""
|
| 1008 |
"WordPress shows an admin toolbar to the logged in users of the site. Check "
|
| 1009 |
"this if you want to hide that admin toolbar in the frontend of your site."
|
| 1010 |
msgstr ""
|
| 1011 |
|
| 1012 |
-
#: classes/class.swpm-settings.php:
|
| 1013 |
msgid "Show Adminbar to Admin"
|
| 1014 |
msgstr ""
|
| 1015 |
|
| 1016 |
-
#: classes/class.swpm-settings.php:
|
| 1017 |
msgid ""
|
| 1018 |
"Use this option if you want to show the admin toolbar to admin users only. "
|
| 1019 |
"The admin toolbar will be hidden for all other users."
|
| 1020 |
msgstr ""
|
| 1021 |
|
| 1022 |
-
#: classes/class.swpm-settings.php:
|
| 1023 |
msgid "Disable Access to WP Dashboard"
|
| 1024 |
msgstr ""
|
| 1025 |
|
| 1026 |
-
#: classes/class.swpm-settings.php:
|
| 1027 |
msgid ""
|
| 1028 |
"WordPress allows a standard wp user to be able to go to the wp-admin URL and "
|
| 1029 |
"access his profile from the wp dashboard. Using this option will prevent any "
|
| 1030 |
"non-admin users from going to the wp dashboard."
|
| 1031 |
msgstr ""
|
| 1032 |
|
| 1033 |
-
#: classes/class.swpm-settings.php:
|
| 1034 |
msgid "Default Account Status"
|
| 1035 |
msgstr ""
|
| 1036 |
|
| 1037 |
-
#: classes/class.swpm-settings.php:
|
| 1038 |
msgid ""
|
| 1039 |
"Select the default account status for newly registered users. If you want to "
|
| 1040 |
"manually approve the members then you can set the status to \"Pending\"."
|
| 1041 |
msgstr ""
|
| 1042 |
|
| 1043 |
-
#: classes/class.swpm-settings.php:
|
| 1044 |
msgid "Members Must be Logged in to Comment"
|
| 1045 |
msgstr ""
|
| 1046 |
|
| 1047 |
-
#: classes/class.swpm-settings.php:
|
| 1048 |
msgid ""
|
| 1049 |
"Enable this option if you only want the members of the site to be able to "
|
| 1050 |
"post a comment."
|
| 1051 |
msgstr ""
|
| 1052 |
|
| 1053 |
-
#: classes/class.swpm-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1054 |
msgid "Pages Settings"
|
| 1055 |
msgstr ""
|
| 1056 |
|
| 1057 |
-
#: classes/class.swpm-settings.php:
|
| 1058 |
msgid "Login Page URL"
|
| 1059 |
msgstr ""
|
| 1060 |
|
| 1061 |
-
#: classes/class.swpm-settings.php:
|
| 1062 |
msgid "Registration Page URL"
|
| 1063 |
msgstr ""
|
| 1064 |
|
| 1065 |
-
#: classes/class.swpm-settings.php:
|
| 1066 |
msgid "Join Us Page URL"
|
| 1067 |
msgstr ""
|
| 1068 |
|
| 1069 |
-
#: classes/class.swpm-settings.php:
|
| 1070 |
msgid "Edit Profile Page URL"
|
| 1071 |
msgstr ""
|
| 1072 |
|
| 1073 |
-
#: classes/class.swpm-settings.php:
|
| 1074 |
msgid "Password Reset Page URL"
|
| 1075 |
msgstr ""
|
| 1076 |
|
| 1077 |
-
#: classes/class.swpm-settings.php:
|
| 1078 |
msgid "Test & Debug Settings"
|
| 1079 |
msgstr ""
|
| 1080 |
|
| 1081 |
-
#: classes/class.swpm-settings.php:
|
| 1082 |
msgid "Check this option to enable debug logging."
|
| 1083 |
msgstr ""
|
| 1084 |
|
| 1085 |
-
#: classes/class.swpm-settings.php:
|
| 1086 |
msgid ""
|
| 1087 |
" This can be useful when troubleshooting an issue. Turn it off and reset the "
|
| 1088 |
"log files after the troubleshooting is complete."
|
| 1089 |
msgstr ""
|
| 1090 |
|
| 1091 |
-
#: classes/class.swpm-settings.php:
|
| 1092 |
msgid "View general debug log file by clicking "
|
| 1093 |
msgstr ""
|
| 1094 |
|
| 1095 |
-
#: classes/class.swpm-settings.php:
|
| 1096 |
-
#: classes/class.swpm-settings.php:
|
| 1097 |
msgid "here"
|
| 1098 |
msgstr ""
|
| 1099 |
|
| 1100 |
-
#: classes/class.swpm-settings.php:
|
| 1101 |
msgid "View login related debug log file by clicking "
|
| 1102 |
msgstr ""
|
| 1103 |
|
| 1104 |
-
#: classes/class.swpm-settings.php:
|
| 1105 |
msgid "Reset debug log files by clicking "
|
| 1106 |
msgstr ""
|
| 1107 |
|
| 1108 |
-
#: classes/class.swpm-settings.php:
|
| 1109 |
msgid "Enable Debug"
|
| 1110 |
msgstr ""
|
| 1111 |
|
| 1112 |
-
#: classes/class.swpm-settings.php:
|
| 1113 |
msgid "Enable Sandbox Testing"
|
| 1114 |
msgstr ""
|
| 1115 |
|
| 1116 |
-
#: classes/class.swpm-settings.php:
|
| 1117 |
msgid "Enable this option if you want to do sandbox payment testing."
|
| 1118 |
msgstr ""
|
| 1119 |
|
| 1120 |
-
#: classes/class.swpm-settings.php:
|
| 1121 |
msgid "Stripe Global Settings"
|
| 1122 |
msgstr ""
|
| 1123 |
|
| 1124 |
-
#: classes/class.swpm-settings.php:
|
| 1125 |
msgid "Pre-fill Member Email Address"
|
| 1126 |
msgstr ""
|
| 1127 |
|
| 1128 |
-
#: classes/class.swpm-settings.php:
|
| 1129 |
msgid ""
|
| 1130 |
"Pre-fills the email address of the logged-in member on the Stripe checkout "
|
| 1131 |
"form when possible"
|
| 1132 |
msgstr ""
|
| 1133 |
|
| 1134 |
-
#: classes/class.swpm-settings.php:
|
| 1135 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:115
|
| 1136 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:399
|
| 1137 |
#: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:115
|
|
@@ -1141,11 +1151,11 @@ msgstr ""
|
|
| 1141 |
msgid "Test Publishable Key"
|
| 1142 |
msgstr ""
|
| 1143 |
|
| 1144 |
-
#: classes/class.swpm-settings.php:
|
| 1145 |
msgid "Stripe API Test publishable key"
|
| 1146 |
msgstr ""
|
| 1147 |
|
| 1148 |
-
#: classes/class.swpm-settings.php:
|
| 1149 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:122
|
| 1150 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:406
|
| 1151 |
#: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:122
|
|
@@ -1155,11 +1165,11 @@ msgstr ""
|
|
| 1155 |
msgid "Test Secret Key"
|
| 1156 |
msgstr ""
|
| 1157 |
|
| 1158 |
-
#: classes/class.swpm-settings.php:
|
| 1159 |
msgid "Stripe API Test secret key"
|
| 1160 |
msgstr ""
|
| 1161 |
|
| 1162 |
-
#: classes/class.swpm-settings.php:
|
| 1163 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:129
|
| 1164 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:413
|
| 1165 |
#: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:129
|
|
@@ -1169,11 +1179,11 @@ msgstr ""
|
|
| 1169 |
msgid "Live Publishable Key"
|
| 1170 |
msgstr ""
|
| 1171 |
|
| 1172 |
-
#: classes/class.swpm-settings.php:
|
| 1173 |
msgid "Stripe API Live publishable key"
|
| 1174 |
msgstr ""
|
| 1175 |
|
| 1176 |
-
#: classes/class.swpm-settings.php:
|
| 1177 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:136
|
| 1178 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:420
|
| 1179 |
#: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:136
|
|
@@ -1183,148 +1193,148 @@ msgstr ""
|
|
| 1183 |
msgid "Live Secret Key"
|
| 1184 |
msgstr ""
|
| 1185 |
|
| 1186 |
-
#: classes/class.swpm-settings.php:
|
| 1187 |
msgid "Stripe API Live secret key"
|
| 1188 |
msgstr ""
|
| 1189 |
|
| 1190 |
-
#: classes/class.swpm-settings.php:
|
| 1191 |
msgid "Email Settings Overview"
|
| 1192 |
msgstr ""
|
| 1193 |
|
| 1194 |
-
#: classes/class.swpm-settings.php:
|
| 1195 |
msgid "Email Misc. Settings"
|
| 1196 |
msgstr ""
|
| 1197 |
|
| 1198 |
-
#: classes/class.swpm-settings.php:
|
| 1199 |
msgid "From Email Address"
|
| 1200 |
msgstr ""
|
| 1201 |
|
| 1202 |
-
#: classes/class.swpm-settings.php:
|
| 1203 |
msgid "Allow HTML in Emails"
|
| 1204 |
msgstr ""
|
| 1205 |
|
| 1206 |
-
#: classes/class.swpm-settings.php:
|
| 1207 |
msgid "Email Settings (Prompt to Complete Registration )"
|
| 1208 |
msgstr ""
|
| 1209 |
|
| 1210 |
-
#: classes/class.swpm-settings.php:
|
| 1211 |
-
#: classes/class.swpm-settings.php:
|
| 1212 |
-
#: classes/class.swpm-settings.php:
|
| 1213 |
msgid "Email Subject"
|
| 1214 |
msgstr ""
|
| 1215 |
|
| 1216 |
-
#: classes/class.swpm-settings.php:
|
| 1217 |
-
#: classes/class.swpm-settings.php:
|
| 1218 |
-
#: classes/class.swpm-settings.php:
|
| 1219 |
msgid "Email Body"
|
| 1220 |
msgstr ""
|
| 1221 |
|
| 1222 |
-
#: classes/class.swpm-settings.php:
|
| 1223 |
msgid ""
|
| 1224 |
"Enter the email address where you want the admin notification email to be "
|
| 1225 |
"sent to."
|
| 1226 |
msgstr ""
|
| 1227 |
|
| 1228 |
-
#: classes/class.swpm-settings.php:
|
| 1229 |
msgid ""
|
| 1230 |
" You can put multiple email addresses separated by comma (,) in the above "
|
| 1231 |
"field to send the notification to multiple email addresses."
|
| 1232 |
msgstr ""
|
| 1233 |
|
| 1234 |
-
#: classes/class.swpm-settings.php:
|
| 1235 |
msgid "Enter the subject for the admin notification email."
|
| 1236 |
msgstr ""
|
| 1237 |
|
| 1238 |
-
#: classes/class.swpm-settings.php:
|
| 1239 |
msgid ""
|
| 1240 |
"This email will be sent to the admin when a new user completes the "
|
| 1241 |
"membership registration. Only works if you have enabled the \"Send "
|
| 1242 |
"Notification to Admin\" option above."
|
| 1243 |
msgstr ""
|
| 1244 |
|
| 1245 |
-
#: classes/class.swpm-settings.php:
|
| 1246 |
msgid "Email Settings (Registration Complete)"
|
| 1247 |
msgstr ""
|
| 1248 |
|
| 1249 |
-
#: classes/class.swpm-settings.php:
|
| 1250 |
msgid "Send Notification to Admin"
|
| 1251 |
msgstr ""
|
| 1252 |
|
| 1253 |
-
#: classes/class.swpm-settings.php:
|
| 1254 |
msgid ""
|
| 1255 |
"Enable this option if you want the admin to receive a notification when a "
|
| 1256 |
"member registers."
|
| 1257 |
msgstr ""
|
| 1258 |
|
| 1259 |
-
#: classes/class.swpm-settings.php:
|
| 1260 |
msgid "Admin Email Address"
|
| 1261 |
msgstr ""
|
| 1262 |
|
| 1263 |
-
#: classes/class.swpm-settings.php:
|
| 1264 |
msgid "Admin Notification Email Subject"
|
| 1265 |
msgstr ""
|
| 1266 |
|
| 1267 |
-
#: classes/class.swpm-settings.php:
|
| 1268 |
msgid "Admin Notification Email Body"
|
| 1269 |
msgstr ""
|
| 1270 |
|
| 1271 |
-
#: classes/class.swpm-settings.php:
|
| 1272 |
msgid "Send Email to Member When Added via Admin Dashboard"
|
| 1273 |
msgstr ""
|
| 1274 |
|
| 1275 |
-
#: classes/class.swpm-settings.php:
|
| 1276 |
msgid "Email Settings (Password Reset)"
|
| 1277 |
msgstr ""
|
| 1278 |
|
| 1279 |
-
#: classes/class.swpm-settings.php:
|
| 1280 |
msgid " Email Settings (Account Upgrade Notification)"
|
| 1281 |
msgstr ""
|
| 1282 |
|
| 1283 |
-
#: classes/class.swpm-settings.php:
|
| 1284 |
msgid "Disable Email Notification After Upgrade"
|
| 1285 |
msgstr ""
|
| 1286 |
|
| 1287 |
-
#: classes/class.swpm-settings.php:
|
| 1288 |
msgid ""
|
| 1289 |
"You can use this option to disable the email notification that gets sent to "
|
| 1290 |
"the members when they make a payment for upgrade or renewal."
|
| 1291 |
msgstr ""
|
| 1292 |
|
| 1293 |
-
#: classes/class.swpm-settings.php:
|
| 1294 |
msgid " Email Settings (Bulk Account Activate Notification)"
|
| 1295 |
msgstr ""
|
| 1296 |
|
| 1297 |
-
#: classes/class.swpm-settings.php:
|
| 1298 |
msgid " Email Settings (Email Activation)"
|
| 1299 |
msgstr ""
|
| 1300 |
|
| 1301 |
-
#: classes/class.swpm-settings.php:
|
| 1302 |
msgid "Enable Expired Account Login"
|
| 1303 |
msgstr ""
|
| 1304 |
|
| 1305 |
-
#: classes/class.swpm-settings.php:
|
| 1306 |
msgid ""
|
| 1307 |
"When enabled, expired members will be able to log into the system but won't "
|
| 1308 |
"be able to view any protected content. This allows them to easily renew "
|
| 1309 |
"their account by making another payment."
|
| 1310 |
msgstr ""
|
| 1311 |
|
| 1312 |
-
#: classes/class.swpm-settings.php:
|
| 1313 |
msgid "Membership Renewal URL"
|
| 1314 |
msgstr ""
|
| 1315 |
|
| 1316 |
-
#: classes/class.swpm-settings.php:
|
| 1317 |
msgid ""
|
| 1318 |
"You can create a renewal page for your site. Read <a href=\"https://simple-"
|
| 1319 |
"membership-plugin.com/creating-membership-renewal-button/\" target=\"_blank"
|
| 1320 |
"\">this documentation</a> to learn how to create a renewal page."
|
| 1321 |
msgstr ""
|
| 1322 |
|
| 1323 |
-
#: classes/class.swpm-settings.php:
|
| 1324 |
msgid "After Registration Redirect URL"
|
| 1325 |
msgstr ""
|
| 1326 |
|
| 1327 |
-
#: classes/class.swpm-settings.php:
|
| 1328 |
msgid ""
|
| 1329 |
"You can enter an URL here to redirect the members to this page after they "
|
| 1330 |
"submit the registration form. Read <a href=\"https://simple-membership-"
|
|
@@ -1333,11 +1343,11 @@ msgid ""
|
|
| 1333 |
"redirect."
|
| 1334 |
msgstr ""
|
| 1335 |
|
| 1336 |
-
#: classes/class.swpm-settings.php:
|
| 1337 |
msgid "Enable Auto Login After Registration"
|
| 1338 |
msgstr ""
|
| 1339 |
|
| 1340 |
-
#: classes/class.swpm-settings.php:
|
| 1341 |
msgid ""
|
| 1342 |
"Use this option if you want the members to be automatically logged into your "
|
| 1343 |
"site right after they complete the registration. This option will override "
|
|
@@ -1347,68 +1357,68 @@ msgid ""
|
|
| 1347 |
"documentation</a> to learn more."
|
| 1348 |
msgstr ""
|
| 1349 |
|
| 1350 |
-
#: classes/class.swpm-settings.php:
|
| 1351 |
msgid "Hide Registration Form to Logged Users"
|
| 1352 |
msgstr ""
|
| 1353 |
|
| 1354 |
-
#: classes/class.swpm-settings.php:
|
| 1355 |
msgid ""
|
| 1356 |
"Use this option if you want to hide the registration form to the logged-in "
|
| 1357 |
"members. If logged-in members visit the registration page, they will see a "
|
| 1358 |
"message instead of the registration form."
|
| 1359 |
msgstr ""
|
| 1360 |
|
| 1361 |
-
#: classes/class.swpm-settings.php:
|
| 1362 |
msgid "After Logout Redirect URL"
|
| 1363 |
msgstr ""
|
| 1364 |
|
| 1365 |
-
#: classes/class.swpm-settings.php:
|
| 1366 |
msgid ""
|
| 1367 |
"You can enter an URL here to redirect the members to this page after they "
|
| 1368 |
"click the logout link to logout from your site."
|
| 1369 |
msgstr ""
|
| 1370 |
|
| 1371 |
-
#: classes/class.swpm-settings.php:
|
| 1372 |
msgid "Logout Member on Browser Close"
|
| 1373 |
msgstr ""
|
| 1374 |
|
| 1375 |
-
#: classes/class.swpm-settings.php:
|
| 1376 |
msgid ""
|
| 1377 |
"Enable this option if you want the member to be logged out of the account "
|
| 1378 |
"when he closes the browser."
|
| 1379 |
msgstr ""
|
| 1380 |
|
| 1381 |
-
#: classes/class.swpm-settings.php:
|
| 1382 |
msgid "Allow Account Deletion"
|
| 1383 |
msgstr ""
|
| 1384 |
|
| 1385 |
-
#: classes/class.swpm-settings.php:
|
| 1386 |
msgid "Allow users to delete their accounts."
|
| 1387 |
msgstr ""
|
| 1388 |
|
| 1389 |
-
#: classes/class.swpm-settings.php:
|
| 1390 |
msgid "Force Strong Password for Members"
|
| 1391 |
msgstr ""
|
| 1392 |
|
| 1393 |
-
#: classes/class.swpm-settings.php:
|
| 1394 |
msgid ""
|
| 1395 |
"Enable this if you want the users to be forced to use a strong password for "
|
| 1396 |
"their accounts."
|
| 1397 |
msgstr ""
|
| 1398 |
|
| 1399 |
-
#: classes/class.swpm-settings.php:
|
| 1400 |
msgid "Auto Delete Pending Account"
|
| 1401 |
msgstr ""
|
| 1402 |
|
| 1403 |
-
#: classes/class.swpm-settings.php:
|
| 1404 |
msgid "Select how long you want to keep \"pending\" account."
|
| 1405 |
msgstr ""
|
| 1406 |
|
| 1407 |
-
#: classes/class.swpm-settings.php:
|
| 1408 |
msgid "Admin Dashboard Access Permission"
|
| 1409 |
msgstr ""
|
| 1410 |
|
| 1411 |
-
#: classes/class.swpm-settings.php:
|
| 1412 |
msgid ""
|
| 1413 |
"SWPM admin dashboard is accessible to admin users only (just like any other "
|
| 1414 |
"plugin). You can allow users with other WP user roles to access the SWPM "
|
|
@@ -1417,53 +1427,53 @@ msgid ""
|
|
| 1417 |
"Settings."
|
| 1418 |
msgstr ""
|
| 1419 |
|
| 1420 |
-
#: classes/class.swpm-settings.php:
|
| 1421 |
msgid "Force WP User Synchronization"
|
| 1422 |
msgstr ""
|
| 1423 |
|
| 1424 |
-
#: classes/class.swpm-settings.php:
|
| 1425 |
msgid ""
|
| 1426 |
"Enable this option if you want to force the member login to be synchronized "
|
| 1427 |
"with WP user account. This can be useful if you are using another plugin "
|
| 1428 |
"that uses WP user records. For example: bbPress plugin."
|
| 1429 |
msgstr ""
|
| 1430 |
|
| 1431 |
-
#: classes/class.swpm-settings.php:
|
| 1432 |
msgid "Create Member Accounts for New WP Users"
|
| 1433 |
msgstr ""
|
| 1434 |
|
| 1435 |
-
#: classes/class.swpm-settings.php:
|
| 1436 |
msgid "Enable Auto Create Member Accounts"
|
| 1437 |
msgstr ""
|
| 1438 |
|
| 1439 |
-
#: classes/class.swpm-settings.php:
|
| 1440 |
msgid ""
|
| 1441 |
"Enable this option to automatically create member accounts for any new WP "
|
| 1442 |
"user that is created by another plugin."
|
| 1443 |
msgstr ""
|
| 1444 |
|
| 1445 |
-
#: classes/class.swpm-settings.php:
|
| 1446 |
msgid "Default Membership Level"
|
| 1447 |
msgstr ""
|
| 1448 |
|
| 1449 |
-
#: classes/class.swpm-settings.php:
|
| 1450 |
msgid ""
|
| 1451 |
"When automatically creating a member account using this feature, the "
|
| 1452 |
"membership level of the user will be set to the one you specify here."
|
| 1453 |
msgstr ""
|
| 1454 |
|
| 1455 |
-
#: classes/class.swpm-settings.php:
|
| 1456 |
msgid ""
|
| 1457 |
"When automatically creating a member account using this feature, the "
|
| 1458 |
"membership account status of the user will be set to the one you specify "
|
| 1459 |
"here."
|
| 1460 |
msgstr ""
|
| 1461 |
|
| 1462 |
-
#: classes/class.swpm-settings.php:
|
| 1463 |
msgid "Payment Notification Forward URL"
|
| 1464 |
msgstr ""
|
| 1465 |
|
| 1466 |
-
#: classes/class.swpm-settings.php:
|
| 1467 |
msgid ""
|
| 1468 |
"You can enter an URL here to forward the payment notification after the "
|
| 1469 |
"membership payment has been processed by this plugin. Useful if you want to "
|
|
@@ -1471,80 +1481,80 @@ msgid ""
|
|
| 1471 |
"processing."
|
| 1472 |
msgstr ""
|
| 1473 |
|
| 1474 |
-
#: classes/class.swpm-settings.php:
|
| 1475 |
msgid "Terms and Conditions"
|
| 1476 |
msgstr ""
|
| 1477 |
|
| 1478 |
-
#: classes/class.swpm-settings.php:
|
| 1479 |
msgid "Enable Terms and Conditions"
|
| 1480 |
msgstr ""
|
| 1481 |
|
| 1482 |
-
#: classes/class.swpm-settings.php:
|
| 1483 |
msgid "Users must accept the terms before they can complete the registration."
|
| 1484 |
msgstr ""
|
| 1485 |
|
| 1486 |
-
#: classes/class.swpm-settings.php:
|
| 1487 |
msgid "Terms and Conditions Page URL"
|
| 1488 |
msgstr ""
|
| 1489 |
|
| 1490 |
-
#: classes/class.swpm-settings.php:
|
| 1491 |
msgid ""
|
| 1492 |
"Enter the URL of your terms and conditions page. You can create a WordPress "
|
| 1493 |
"page and specify your terms in there then specify the URL of that page in "
|
| 1494 |
"the above field."
|
| 1495 |
msgstr ""
|
| 1496 |
|
| 1497 |
-
#: classes/class.swpm-settings.php:
|
| 1498 |
msgid "Enable Privacy Policy"
|
| 1499 |
msgstr ""
|
| 1500 |
|
| 1501 |
-
#: classes/class.swpm-settings.php:
|
| 1502 |
msgid "Users must accept it before they can complete the registration."
|
| 1503 |
msgstr ""
|
| 1504 |
|
| 1505 |
-
#: classes/class.swpm-settings.php:
|
| 1506 |
msgid "Privacy Policy Page URL"
|
| 1507 |
msgstr ""
|
| 1508 |
|
| 1509 |
-
#: classes/class.swpm-settings.php:
|
| 1510 |
msgid "Enter the URL of your privacy policy page."
|
| 1511 |
msgstr ""
|
| 1512 |
|
| 1513 |
-
#: classes/class.swpm-settings.php:
|
| 1514 |
#, php-format
|
| 1515 |
msgid "Visit the %s to read setup and configuration documentation."
|
| 1516 |
msgstr ""
|
| 1517 |
|
| 1518 |
-
#: classes/class.swpm-settings.php:
|
| 1519 |
msgid "Simple Membership Plugin Site"
|
| 1520 |
msgstr ""
|
| 1521 |
|
| 1522 |
-
#: classes/class.swpm-settings.php:
|
| 1523 |
#, php-format
|
| 1524 |
msgid "Please %s if you like the plugin."
|
| 1525 |
msgstr ""
|
| 1526 |
|
| 1527 |
-
#: classes/class.swpm-settings.php:
|
| 1528 |
msgid "give us a rating"
|
| 1529 |
msgstr ""
|
| 1530 |
|
| 1531 |
-
#: classes/class.swpm-settings.php:
|
| 1532 |
-
#: classes/class.swpm-settings.php:
|
| 1533 |
msgid "Settings updated!"
|
| 1534 |
msgstr ""
|
| 1535 |
|
| 1536 |
-
#: classes/class.swpm-settings.php:
|
| 1537 |
msgid "This documentation"
|
| 1538 |
msgstr ""
|
| 1539 |
|
| 1540 |
-
#: classes/class.swpm-settings.php:
|
| 1541 |
msgid ""
|
| 1542 |
"Note: You cannot enable both the \"Disable Access to WP Dashboard\" and "
|
| 1543 |
"\"Admin Dashboard Access Permission\" options at the same time. Only use one "
|
| 1544 |
"of those options."
|
| 1545 |
msgstr ""
|
| 1546 |
|
| 1547 |
-
#: classes/class.swpm-settings.php:
|
| 1548 |
msgid "Simple WP Membership::Settings"
|
| 1549 |
msgstr ""
|
| 1550 |
|
|
@@ -1603,39 +1613,39 @@ msgstr ""
|
|
| 1603 |
msgid "Error! This action ("
|
| 1604 |
msgstr ""
|
| 1605 |
|
| 1606 |
-
#: classes/class.swpm-utils-misc.php:
|
| 1607 |
msgid "(Please Select)"
|
| 1608 |
msgstr ""
|
| 1609 |
|
| 1610 |
-
#: classes/class.swpm-utils-misc.php:
|
| 1611 |
msgid "PayPal Buy Now"
|
| 1612 |
msgstr ""
|
| 1613 |
|
| 1614 |
-
#: classes/class.swpm-utils-misc.php:
|
| 1615 |
msgid "PayPal Subscription"
|
| 1616 |
msgstr ""
|
| 1617 |
|
| 1618 |
-
#: classes/class.swpm-utils-misc.php:
|
| 1619 |
msgid "PayPal Smart Checkout"
|
| 1620 |
msgstr ""
|
| 1621 |
|
| 1622 |
-
#: classes/class.swpm-utils-misc.php:
|
| 1623 |
msgid "Stripe Buy Now"
|
| 1624 |
msgstr ""
|
| 1625 |
|
| 1626 |
-
#: classes/class.swpm-utils-misc.php:
|
| 1627 |
msgid "Stripe Subscription"
|
| 1628 |
msgstr ""
|
| 1629 |
|
| 1630 |
-
#: classes/class.swpm-utils-misc.php:
|
| 1631 |
msgid "Stripe SCA Buy Now"
|
| 1632 |
msgstr ""
|
| 1633 |
|
| 1634 |
-
#: classes/class.swpm-utils-misc.php:
|
| 1635 |
msgid "Stripe SCA Subscription"
|
| 1636 |
msgstr ""
|
| 1637 |
|
| 1638 |
-
#: classes/class.swpm-utils-misc.php:
|
| 1639 |
msgid "Braintree Buy Now"
|
| 1640 |
msgstr ""
|
| 1641 |
|
|
@@ -1679,7 +1689,7 @@ msgstr ""
|
|
| 1679 |
msgid "Expired"
|
| 1680 |
msgstr ""
|
| 1681 |
|
| 1682 |
-
#: classes/class.swpm-utils.php:
|
| 1683 |
msgid "Delete Account"
|
| 1684 |
msgstr ""
|
| 1685 |
|
|
@@ -1764,25 +1774,25 @@ msgid "Unsubscribe from PayPal"
|
|
| 1764 |
msgstr ""
|
| 1765 |
|
| 1766 |
#. translators: %1$d is error code; %2$s is error message.
|
| 1767 |
-
#: ipn/swpm-smart-checkout-ipn.php:
|
| 1768 |
#, php-format
|
| 1769 |
msgid ""
|
| 1770 |
"Error occured during payment verification. Error code: %1$d. Message: %2$s"
|
| 1771 |
msgstr ""
|
| 1772 |
|
| 1773 |
#. translators: %1$s is expected amount, %2$s is expected currency.
|
| 1774 |
-
#: ipn/swpm-smart-checkout-ipn.php:
|
| 1775 |
#, php-format
|
| 1776 |
msgid ""
|
| 1777 |
"Payment check failed: invalid amount received. Expected %1$s %2$s, got %3$s "
|
| 1778 |
"%4$s."
|
| 1779 |
msgstr ""
|
| 1780 |
|
| 1781 |
-
#: ipn/swpm-smart-checkout-ipn.php:
|
| 1782 |
msgid "Empty payment data received."
|
| 1783 |
msgstr ""
|
| 1784 |
|
| 1785 |
-
#: ipn/swpm-smart-checkout-ipn.php:
|
| 1786 |
msgid "IPN product validation failed. Check the debug log for more details."
|
| 1787 |
msgstr ""
|
| 1788 |
|
|
@@ -1815,7 +1825,7 @@ msgid "Confirm Account Deletion"
|
|
| 1815 |
msgstr ""
|
| 1816 |
|
| 1817 |
#: views/add.php:26 views/admin_add.php:20 views/admin_edit.php:44
|
| 1818 |
-
#: views/edit.php:31 views/login.php:
|
| 1819 |
msgid "Password"
|
| 1820 |
msgstr ""
|
| 1821 |
|
|
@@ -1874,7 +1884,7 @@ msgstr ""
|
|
| 1874 |
msgid "Account Status"
|
| 1875 |
msgstr ""
|
| 1876 |
|
| 1877 |
-
#: views/admin_add.php:
|
| 1878 |
msgid "Add New Member "
|
| 1879 |
msgstr ""
|
| 1880 |
|
|
@@ -2046,37 +2056,37 @@ msgid ""
|
|
| 2046 |
"(the email will be sent when you hit the save button below)."
|
| 2047 |
msgstr ""
|
| 2048 |
|
| 2049 |
-
#: views/admin_edit.php:
|
| 2050 |
msgid "Subscriber ID/Reference"
|
| 2051 |
msgstr ""
|
| 2052 |
|
| 2053 |
-
#: views/admin_edit.php:
|
| 2054 |
msgid "Expiry Date"
|
| 2055 |
msgstr ""
|
| 2056 |
|
| 2057 |
-
#: views/admin_edit.php:
|
| 2058 |
msgid ""
|
| 2059 |
"This is calculated based on the current membership level assigned to this "
|
| 2060 |
"member and the expiry condition that you have set for that membership level."
|
| 2061 |
msgstr ""
|
| 2062 |
|
| 2063 |
-
#: views/admin_edit.php:
|
| 2064 |
msgid "Last Accessed Date"
|
| 2065 |
msgstr ""
|
| 2066 |
|
| 2067 |
-
#: views/admin_edit.php:
|
| 2068 |
msgid "This value gets updated when this member logs into your site."
|
| 2069 |
msgstr ""
|
| 2070 |
|
| 2071 |
-
#: views/admin_edit.php:
|
| 2072 |
msgid "Last Accessed From IP"
|
| 2073 |
msgstr ""
|
| 2074 |
|
| 2075 |
-
#: views/admin_edit.php:
|
| 2076 |
msgid "Save Data"
|
| 2077 |
msgstr ""
|
| 2078 |
|
| 2079 |
-
#: views/admin_edit.php:
|
| 2080 |
msgid "Delete User Profile"
|
| 2081 |
msgstr ""
|
| 2082 |
|
|
@@ -2118,39 +2128,39 @@ msgstr ""
|
|
| 2118 |
msgid "Save Membership Level "
|
| 2119 |
msgstr ""
|
| 2120 |
|
| 2121 |
-
#: views/admin_member_form_common_part.php:
|
| 2122 |
msgid "Gender"
|
| 2123 |
msgstr ""
|
| 2124 |
|
| 2125 |
-
#: views/admin_member_form_common_part.php:
|
| 2126 |
msgid "Phone"
|
| 2127 |
msgstr ""
|
| 2128 |
|
| 2129 |
-
#: views/admin_member_form_common_part.php:
|
| 2130 |
msgid "Street"
|
| 2131 |
msgstr ""
|
| 2132 |
|
| 2133 |
-
#: views/admin_member_form_common_part.php:
|
| 2134 |
msgid "City"
|
| 2135 |
msgstr ""
|
| 2136 |
|
| 2137 |
-
#: views/admin_member_form_common_part.php:
|
| 2138 |
msgid "State"
|
| 2139 |
msgstr ""
|
| 2140 |
|
| 2141 |
-
#: views/admin_member_form_common_part.php:
|
| 2142 |
msgid "Zipcode"
|
| 2143 |
msgstr ""
|
| 2144 |
|
| 2145 |
-
#: views/admin_member_form_common_part.php:
|
| 2146 |
msgid "Country"
|
| 2147 |
msgstr ""
|
| 2148 |
|
| 2149 |
-
#: views/admin_member_form_common_part.php:
|
| 2150 |
msgid "Company"
|
| 2151 |
msgstr ""
|
| 2152 |
|
| 2153 |
-
#: views/admin_member_form_common_part.php:
|
| 2154 |
msgid "Member Since"
|
| 2155 |
msgstr ""
|
| 2156 |
|
|
@@ -2287,11 +2297,15 @@ msgstr ""
|
|
| 2287 |
msgid "Username or Email"
|
| 2288 |
msgstr ""
|
| 2289 |
|
| 2290 |
-
#: views/login.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2291 |
msgid "Remember Me"
|
| 2292 |
msgstr ""
|
| 2293 |
|
| 2294 |
-
#: views/login.php:
|
| 2295 |
msgid "Forgot Password?"
|
| 2296 |
msgstr ""
|
| 2297 |
|
|
@@ -2315,7 +2329,7 @@ msgstr ""
|
|
| 2315 |
msgid "Search for a transaction by using email or name"
|
| 2316 |
msgstr ""
|
| 2317 |
|
| 2318 |
-
#: views/payments/admin_all_payment_transactions.php:
|
| 2319 |
msgid "Add a Transaction Manually"
|
| 2320 |
msgstr ""
|
| 2321 |
|
|
@@ -2773,14 +2787,20 @@ msgstr ""
|
|
| 2773 |
msgid "Subscribe Now"
|
| 2774 |
msgstr ""
|
| 2775 |
|
| 2776 |
-
#: views/payments/payment-gateway/paypal_smart_checkout_button_shortcode_view.php:
|
| 2777 |
msgid "Error occurred during PayPal Smart Checkout process."
|
| 2778 |
msgstr ""
|
| 2779 |
|
| 2780 |
-
#: views/payments/payment-gateway/paypal_smart_checkout_button_shortcode_view.php:
|
| 2781 |
msgid "HTTP error occurred during payment process:"
|
| 2782 |
msgstr ""
|
| 2783 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2784 |
#: Translation strings from addons
|
| 2785 |
|
| 2786 |
#: === Form builder addon strings ===
|
| 3 |
msgstr ""
|
| 4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
| 5 |
"Project-Id-Version: Simple WordPress Membership\n"
|
| 6 |
+
"POT-Creation-Date: 2022-07-19 17:38+0600\n"
|
| 7 |
+
"PO-Revision-Date: 2022-07-19 17:37+0600\n"
|
| 8 |
"Last-Translator: \n"
|
| 9 |
"Language-Team: \n"
|
| 10 |
"MIME-Version: 1.0\n"
|
| 11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 12 |
"Content-Transfer-Encoding: 8bit\n"
|
| 13 |
+
"X-Generator: Poedit 2.0.6\n"
|
| 14 |
"X-Poedit-Basepath: ..\n"
|
| 15 |
"X-Poedit-Flags-xgettext: --add-comments=translators:\n"
|
| 16 |
"X-Poedit-WPHeader: simple-wp-membership.php\n"
|
| 19 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
| 20 |
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
| 21 |
"X-Poedit-SearchPath-0: .\n"
|
| 22 |
+
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
| 23 |
|
| 24 |
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:76
|
| 25 |
msgid "Payment Button ID"
|
| 42 |
msgstr ""
|
| 43 |
|
| 44 |
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:95
|
| 45 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:118
|
| 46 |
+
#: classes/class.swpm-members.php:51
|
| 47 |
#: classes/class.swpm-membership-levels.php:36
|
| 48 |
msgid "Delete"
|
| 49 |
msgstr ""
|
| 50 |
|
| 51 |
+
#: classes/admin-includes/class.swpm-payment-buttons-list-table.php:132
|
| 52 |
#: views/admin_members_list.php:8
|
| 53 |
+
#: views/payments/admin_all_payment_transactions.php:33
|
| 54 |
msgid "The selected entry was deleted!"
|
| 55 |
msgstr ""
|
| 56 |
|
| 58 |
msgid "Simple Membership::Payments"
|
| 59 |
msgstr ""
|
| 60 |
|
| 61 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:73
|
| 62 |
msgid "View Profile"
|
| 63 |
msgstr ""
|
| 64 |
|
| 65 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:91
|
| 66 |
msgid "Row ID"
|
| 67 |
msgstr ""
|
| 68 |
|
| 69 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:92
|
| 70 |
#: views/forgot_password.php:5
|
| 71 |
#: views/payments/admin_add_edit_transaction_manually.php:75
|
| 72 |
msgid "Email Address"
|
| 73 |
msgstr ""
|
| 74 |
|
| 75 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:93
|
| 76 |
#: classes/class.swpm-members.php:23 views/add.php:34
|
| 77 |
+
#: views/admin_member_form_common_part.php:6 views/edit.php:39
|
| 78 |
#: views/payments/admin_add_edit_transaction_manually.php:83
|
| 79 |
msgid "First Name"
|
| 80 |
msgstr ""
|
| 81 |
|
| 82 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:94
|
| 83 |
#: classes/class.swpm-members.php:24 views/add.php:38
|
| 84 |
+
#: views/admin_member_form_common_part.php:10 views/edit.php:43
|
| 85 |
#: views/payments/admin_add_edit_transaction_manually.php:91
|
| 86 |
msgid "Last Name"
|
| 87 |
msgstr ""
|
| 88 |
|
| 89 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:95
|
| 90 |
msgid "Member Profile"
|
| 91 |
msgstr ""
|
| 92 |
|
| 93 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:96
|
| 94 |
#: classes/class.swpm-post-list.php:43 classes/class.swpm-post-list.php:52
|
| 95 |
#: classes/class.swpm-post-list.php:62
|
| 96 |
#: views/payments/admin_add_edit_transaction_manually.php:125
|
| 97 |
msgid "Date"
|
| 98 |
msgstr ""
|
| 99 |
|
| 100 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:97
|
| 101 |
#: views/payments/admin_add_edit_transaction_manually.php:133
|
| 102 |
msgid "Transaction ID"
|
| 103 |
msgstr ""
|
| 104 |
|
| 105 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:98
|
| 106 |
#: views/payments/admin_add_edit_transaction_manually.php:141
|
| 107 |
msgid "Subscriber ID"
|
| 108 |
msgstr ""
|
| 109 |
|
| 110 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:99
|
| 111 |
#: views/payments/admin_add_edit_transaction_manually.php:117
|
| 112 |
msgid "Amount"
|
| 113 |
msgstr ""
|
| 114 |
|
| 115 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:100
|
| 116 |
#: classes/class.swpm-category-list.php:19 classes/class.swpm-members.php:26
|
| 117 |
#: classes/class.swpm-membership-levels.php:11
|
| 118 |
#: classes/class.swpm-membership-levels.php:21
|
| 119 |
+
#: classes/class.swpm-post-list.php:20 views/add.php:42 views/admin_add.php:37
|
| 120 |
+
#: views/admin_edit.php:74 views/admin_members_list.php:50 views/edit.php:75
|
| 121 |
+
#: views/payments/admin_add_edit_transaction_manually.php:107
|
| 122 |
#: views/payments/payment-gateway/admin_braintree_buy_now_button.php:50
|
| 123 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:34
|
| 124 |
#: views/payments/payment-gateway/admin_paypal_buy_now_button.php:232
|
| 134 |
msgid "Membership Level"
|
| 135 |
msgstr ""
|
| 136 |
|
| 137 |
+
#: classes/admin-includes/class.swpm-payments-list-table.php:101
|
| 138 |
#: views/payments/admin_add_edit_transaction_manually.php:149
|
| 139 |
msgid "Status/Note"
|
| 140 |
msgstr ""
|
| 152 |
msgid "Are you sure that you want to cancel the subscription?"
|
| 153 |
msgstr ""
|
| 154 |
|
| 155 |
+
#: classes/class.simple-wp-membership.php:237
|
| 156 |
msgid "The admin of this site does not allow users to access the wp dashboard."
|
| 157 |
msgstr ""
|
| 158 |
|
| 159 |
+
#: classes/class.simple-wp-membership.php:238
|
| 160 |
msgid "Go back to the home page by "
|
| 161 |
msgstr ""
|
| 162 |
|
| 163 |
+
#: classes/class.simple-wp-membership.php:238
|
| 164 |
msgid "clicking here"
|
| 165 |
msgstr ""
|
| 166 |
|
| 167 |
+
#: classes/class.simple-wp-membership.php:303
|
| 168 |
msgid ""
|
| 169 |
"Error! This site has the force WP user login feature enabled in the "
|
| 170 |
"settings. We could not find a WP user record for the given username: "
|
| 171 |
msgstr ""
|
| 172 |
|
| 173 |
+
#: classes/class.simple-wp-membership.php:304
|
| 174 |
msgid ""
|
| 175 |
"This error is triggered when a member account doesn't have a corresponding "
|
| 176 |
"WP user account. So the plugin fails to log the user into the WP User system."
|
| 177 |
msgstr ""
|
| 178 |
|
| 179 |
+
#: classes/class.simple-wp-membership.php:305
|
| 180 |
msgid ""
|
| 181 |
"Contact the site admin and request them to check your username in the WP "
|
| 182 |
"Users menu to see what happened with the WP user entry of your account."
|
| 183 |
msgstr ""
|
| 184 |
|
| 185 |
+
#: classes/class.simple-wp-membership.php:306
|
| 186 |
msgid ""
|
| 187 |
"The site admin can disable the Force WP User Synchronization feature in the "
|
| 188 |
"settings to disable this feature and this error will go away."
|
| 189 |
msgstr ""
|
| 190 |
|
| 191 |
+
#: classes/class.simple-wp-membership.php:307
|
| 192 |
msgid "You can use the back button of your browser to go back to the site."
|
| 193 |
msgstr ""
|
| 194 |
|
| 195 |
+
#: classes/class.simple-wp-membership.php:484
|
| 196 |
#: classes/class.swpm-wp-loaded-tasks.php:141
|
| 197 |
msgid "You are not logged in."
|
| 198 |
msgstr ""
|
| 199 |
|
| 200 |
+
#: classes/class.simple-wp-membership.php:535
|
| 201 |
msgid ""
|
| 202 |
"You have the sandbox payment mode enabled in plugin settings. Make sure to "
|
| 203 |
"turn off the sandbox mode when you want to do live transactions."
|
| 204 |
msgstr ""
|
| 205 |
|
| 206 |
+
#: classes/class.simple-wp-membership.php:550
|
| 207 |
msgid "Simple WP Membership Protection"
|
| 208 |
msgstr ""
|
| 209 |
|
| 210 |
+
#: classes/class.simple-wp-membership.php:562
|
| 211 |
msgid "Simple Membership Protection options"
|
| 212 |
msgstr ""
|
| 213 |
|
| 214 |
+
#: classes/class.simple-wp-membership.php:580
|
| 215 |
msgid "Do you want to protect this content?"
|
| 216 |
msgstr ""
|
| 217 |
|
| 218 |
+
#: classes/class.simple-wp-membership.php:581
|
| 219 |
msgid "No, Do not protect this content."
|
| 220 |
msgstr ""
|
| 221 |
|
| 222 |
+
#: classes/class.simple-wp-membership.php:582
|
| 223 |
msgid "Yes, Protect this content."
|
| 224 |
msgstr ""
|
| 225 |
|
| 226 |
+
#: classes/class.simple-wp-membership.php:585
|
| 227 |
msgid "Select the membership level that can access this content:"
|
| 228 |
msgstr ""
|
| 229 |
|
| 230 |
+
#: classes/class.simple-wp-membership.php:728
|
| 231 |
+
#: classes/class.simple-wp-membership.php:732
|
| 232 |
msgid "Validating, please wait"
|
| 233 |
msgstr ""
|
| 234 |
|
| 235 |
+
#: classes/class.simple-wp-membership.php:735
|
| 236 |
msgid "Invalid email address"
|
| 237 |
msgstr ""
|
| 238 |
|
| 239 |
+
#: classes/class.simple-wp-membership.php:738
|
| 240 |
msgid "This field is required"
|
| 241 |
msgstr ""
|
| 242 |
|
| 243 |
+
#: classes/class.simple-wp-membership.php:741
|
| 244 |
msgid "Password must contain at least:"
|
| 245 |
msgstr ""
|
| 246 |
|
| 247 |
+
#: classes/class.simple-wp-membership.php:741
|
| 248 |
msgid "- a digit"
|
| 249 |
msgstr ""
|
| 250 |
|
| 251 |
+
#: classes/class.simple-wp-membership.php:741
|
| 252 |
msgid "- an uppercase letter"
|
| 253 |
msgstr ""
|
| 254 |
|
| 255 |
+
#: classes/class.simple-wp-membership.php:741
|
| 256 |
msgid "- a lowercase letter"
|
| 257 |
msgstr ""
|
| 258 |
|
| 259 |
+
#: classes/class.simple-wp-membership.php:744 classes/class.swpm-auth.php:310
|
| 260 |
msgid "Invalid Username"
|
| 261 |
msgstr ""
|
| 262 |
|
| 263 |
+
#: classes/class.simple-wp-membership.php:744
|
| 264 |
msgid "Usernames can only contain: letters, numbers and .-_*@"
|
| 265 |
msgstr ""
|
| 266 |
|
| 267 |
+
#: classes/class.simple-wp-membership.php:747
|
| 268 |
msgid "Minimum "
|
| 269 |
msgstr ""
|
| 270 |
|
| 271 |
+
#: classes/class.simple-wp-membership.php:748
|
| 272 |
msgid " characters required"
|
| 273 |
msgstr ""
|
| 274 |
|
| 275 |
+
#: classes/class.simple-wp-membership.php:751
|
| 276 |
msgid "Apostrophe character is not allowed"
|
| 277 |
msgstr ""
|
| 278 |
|
| 279 |
+
#: classes/class.simple-wp-membership.php:791
|
| 280 |
msgid "WP Membership"
|
| 281 |
msgstr ""
|
| 282 |
|
| 283 |
+
#: classes/class.simple-wp-membership.php:792 classes/class.swpm-members.php:12
|
| 284 |
+
#: classes/class.swpm-members.php:729
|
| 285 |
msgid "Members"
|
| 286 |
msgstr ""
|
| 287 |
|
| 288 |
+
#: classes/class.simple-wp-membership.php:793
|
| 289 |
#: classes/class.swpm-category-list.php:20
|
| 290 |
#: classes/class.swpm-membership-levels.php:12
|
| 291 |
+
#: classes/class.swpm-membership-levels.php:273
|
| 292 |
#: classes/class.swpm-post-list.php:21
|
| 293 |
msgid "Membership Levels"
|
| 294 |
msgstr ""
|
| 295 |
|
| 296 |
+
#: classes/class.simple-wp-membership.php:794
|
| 297 |
msgid "Settings"
|
| 298 |
msgstr ""
|
| 299 |
|
| 300 |
+
#: classes/class.simple-wp-membership.php:795
|
| 301 |
msgid "Payments"
|
| 302 |
msgstr ""
|
| 303 |
|
| 304 |
+
#: classes/class.simple-wp-membership.php:796
|
| 305 |
msgid "Add-ons"
|
| 306 |
msgstr ""
|
| 307 |
|
| 359 |
msgstr ""
|
| 360 |
|
| 361 |
#: classes/class.swpm-ajax.php:14 classes/class.swpm-ajax.php:34
|
| 362 |
+
#: ipn/swpm-smart-checkout-ipn.php:333
|
| 363 |
msgid "Nonce check failed. Please reload the page."
|
| 364 |
msgstr ""
|
| 365 |
|
| 443 |
msgstr ""
|
| 444 |
|
| 445 |
#: classes/class.swpm-auth.php:160
|
| 446 |
+
#: classes/class.swpm-front-registration.php:461
|
| 447 |
+
#: classes/class.swpm-front-registration.php:514
|
| 448 |
#: classes/class.swpm-utils-misc.php:196
|
| 449 |
msgid "click here"
|
| 450 |
msgstr ""
|
| 591 |
"registration form is hidden."
|
| 592 |
msgstr ""
|
| 593 |
|
| 594 |
+
#: classes/class.swpm-front-registration.php:60
|
| 595 |
+
#: classes/class.swpm-utils-misc.php:364 views/login.php:53
|
| 596 |
msgid "Join Us"
|
| 597 |
msgstr ""
|
| 598 |
|
| 599 |
+
#: classes/class.swpm-front-registration.php:62
|
| 600 |
msgid ""
|
| 601 |
"Free membership is disabled on this site. Please make a payment from the "
|
| 602 |
msgstr ""
|
| 603 |
|
| 604 |
+
#: classes/class.swpm-front-registration.php:64
|
| 605 |
msgid " page to pay for a premium membership."
|
| 606 |
msgstr ""
|
| 607 |
|
| 608 |
+
#: classes/class.swpm-front-registration.php:66
|
| 609 |
msgid ""
|
| 610 |
"You will receive a unique link via email after the payment. You will be able "
|
| 611 |
"to use that link to complete the premium membership registration."
|
| 612 |
msgstr ""
|
| 613 |
|
| 614 |
+
#: classes/class.swpm-front-registration.php:98
|
| 615 |
msgid "Security check: captcha validation failed."
|
| 616 |
msgstr ""
|
| 617 |
|
| 618 |
+
#: classes/class.swpm-front-registration.php:111
|
| 619 |
msgid "You must accept the terms and conditions."
|
| 620 |
msgstr ""
|
| 621 |
|
| 622 |
+
#: classes/class.swpm-front-registration.php:125
|
| 623 |
msgid "You must agree to the privacy policy."
|
| 624 |
msgstr ""
|
| 625 |
|
| 626 |
+
#: classes/class.swpm-front-registration.php:166
|
| 627 |
msgid ""
|
| 628 |
"You need to confirm your email address. Please check your email and follow "
|
| 629 |
"instructions to complete your registration."
|
| 630 |
msgstr ""
|
| 631 |
|
| 632 |
+
#: classes/class.swpm-front-registration.php:179
|
| 633 |
msgid "Registration Successful. "
|
| 634 |
msgstr ""
|
| 635 |
|
| 636 |
+
#: classes/class.swpm-front-registration.php:179
|
| 637 |
#: classes/class.swpm-utils-misc.php:363 classes/class.swpm-utils-misc.php:375
|
| 638 |
msgid "Please"
|
| 639 |
msgstr ""
|
| 640 |
|
| 641 |
+
#: classes/class.swpm-front-registration.php:179
|
| 642 |
+
#: classes/class.swpm-utils-misc.php:363 views/login.php:47
|
| 643 |
msgid "Login"
|
| 644 |
msgstr ""
|
| 645 |
|
| 646 |
+
#: classes/class.swpm-front-registration.php:198
|
| 647 |
msgid "Please correct the following"
|
| 648 |
msgstr ""
|
| 649 |
|
| 650 |
+
#: classes/class.swpm-front-registration.php:246
|
| 651 |
msgid "Membership Level Couldn't be found."
|
| 652 |
msgstr ""
|
| 653 |
|
| 654 |
+
#: classes/class.swpm-front-registration.php:298
|
| 655 |
msgid "Error! Nonce verification failed for front end profile edit."
|
| 656 |
msgstr ""
|
| 657 |
|
| 658 |
+
#: classes/class.swpm-front-registration.php:306
|
| 659 |
msgid "Profile updated successfully."
|
| 660 |
msgstr ""
|
| 661 |
|
| 662 |
+
#: classes/class.swpm-front-registration.php:326
|
| 663 |
msgid ""
|
| 664 |
"Profile updated successfully. You will need to re-login since you changed "
|
| 665 |
"your password."
|
| 666 |
msgstr ""
|
| 667 |
|
| 668 |
+
#: classes/class.swpm-front-registration.php:354
|
| 669 |
msgid "Please correct the following."
|
| 670 |
msgstr ""
|
| 671 |
|
| 672 |
+
#: classes/class.swpm-front-registration.php:370
|
| 673 |
msgid "Captcha validation failed."
|
| 674 |
msgstr ""
|
| 675 |
|
| 676 |
+
#: classes/class.swpm-front-registration.php:381
|
| 677 |
msgid "Email address not valid."
|
| 678 |
msgstr ""
|
| 679 |
|
| 680 |
+
#: classes/class.swpm-front-registration.php:395
|
| 681 |
msgid "No user found with that email address."
|
| 682 |
msgstr ""
|
| 683 |
|
| 684 |
+
#: classes/class.swpm-front-registration.php:396
|
| 685 |
+
#: classes/class.swpm-front-registration.php:428
|
| 686 |
msgid "Email Address: "
|
| 687 |
msgstr ""
|
| 688 |
|
| 689 |
+
#: classes/class.swpm-front-registration.php:427
|
| 690 |
msgid "New password has been sent to your email address."
|
| 691 |
msgstr ""
|
| 692 |
|
| 693 |
+
#: classes/class.swpm-front-registration.php:456
|
| 694 |
msgid "Can't find member account."
|
| 695 |
msgstr ""
|
| 696 |
|
| 697 |
+
#: classes/class.swpm-front-registration.php:461
|
| 698 |
+
#: classes/class.swpm-front-registration.php:514
|
| 699 |
msgid "Account already active. "
|
| 700 |
msgstr ""
|
| 701 |
|
| 702 |
+
#: classes/class.swpm-front-registration.php:461
|
| 703 |
+
#: classes/class.swpm-front-registration.php:514
|
| 704 |
msgid " to login."
|
| 705 |
msgstr ""
|
| 706 |
|
| 707 |
+
#: classes/class.swpm-front-registration.php:468
|
| 708 |
msgid ""
|
| 709 |
"Activation code mismatch. Cannot activate this account. Please contact the "
|
| 710 |
"site admin."
|
| 711 |
msgstr ""
|
| 712 |
|
| 713 |
+
#: classes/class.swpm-front-registration.php:482
|
| 714 |
msgid "Success! Your account has been activated successfully."
|
| 715 |
msgstr ""
|
| 716 |
|
| 717 |
+
#: classes/class.swpm-front-registration.php:509
|
| 718 |
msgid "Cannot find member account."
|
| 719 |
msgstr ""
|
| 720 |
|
| 721 |
+
#: classes/class.swpm-front-registration.php:531
|
| 722 |
msgid ""
|
| 723 |
"Activation email has been sent. Please check your email and activate your "
|
| 724 |
"account."
|
| 758 |
msgid "Email"
|
| 759 |
msgstr ""
|
| 760 |
|
| 761 |
+
#: classes/class.swpm-members.php:27 views/admin_member_form_common_part.php:2
|
| 762 |
msgid "Access Starts"
|
| 763 |
msgstr ""
|
| 764 |
|
| 770 |
msgid "Last Login Date"
|
| 771 |
msgstr ""
|
| 772 |
|
| 773 |
+
#: classes/class.swpm-members.php:52
|
| 774 |
msgid "Set Status to Active"
|
| 775 |
msgstr ""
|
| 776 |
|
| 777 |
+
#: classes/class.swpm-members.php:53
|
| 778 |
msgid "Set Status to Active and Notify"
|
| 779 |
msgstr ""
|
| 780 |
|
| 781 |
+
#: classes/class.swpm-members.php:54
|
| 782 |
msgid "Set Status to Inactive"
|
| 783 |
msgstr ""
|
| 784 |
|
| 785 |
+
#: classes/class.swpm-members.php:55
|
| 786 |
msgid "Set Status to Pending"
|
| 787 |
msgstr ""
|
| 788 |
|
| 789 |
+
#: classes/class.swpm-members.php:56
|
| 790 |
msgid "Set Status to Expired"
|
| 791 |
msgstr ""
|
| 792 |
|
| 793 |
+
#: classes/class.swpm-members.php:83
|
| 794 |
msgid "incomplete"
|
| 795 |
msgstr ""
|
| 796 |
|
| 797 |
+
#: classes/class.swpm-members.php:226
|
| 798 |
msgid "No member found."
|
| 799 |
msgstr ""
|
| 800 |
|
| 801 |
+
#: classes/class.swpm-members.php:383
|
| 802 |
msgid "Error! Nonce verification failed for user delete from admin end."
|
| 803 |
msgstr ""
|
| 804 |
|
| 805 |
+
#: classes/class.swpm-members.php:533
|
| 806 |
msgid ""
|
| 807 |
"Error! Nonce security verification failed for Bulk Change Membership Level "
|
| 808 |
"action. Clear cache and try again."
|
| 809 |
msgstr ""
|
| 810 |
|
| 811 |
+
#: classes/class.swpm-members.php:541 classes/class.swpm-members.php:578
|
| 812 |
msgid "Error! Please select a membership level first."
|
| 813 |
msgstr ""
|
| 814 |
|
| 815 |
+
#: classes/class.swpm-members.php:558
|
| 816 |
msgid "Membership level change operation completed successfully."
|
| 817 |
msgstr ""
|
| 818 |
|
| 819 |
+
#: classes/class.swpm-members.php:570
|
| 820 |
msgid ""
|
| 821 |
"Error! Nonce security verification failed for Bulk Change Access Starts Date "
|
| 822 |
"action. Clear cache and try again."
|
| 823 |
msgstr ""
|
| 824 |
|
| 825 |
+
#: classes/class.swpm-members.php:595
|
| 826 |
msgid "Access starts date change operation successfully completed."
|
| 827 |
msgstr ""
|
| 828 |
|
| 829 |
+
#: classes/class.swpm-members.php:724
|
| 830 |
msgid "Simple WP Membership::Members"
|
| 831 |
msgstr ""
|
| 832 |
|
| 833 |
+
#: classes/class.swpm-members.php:725 views/admin_members_list.php:70
|
| 834 |
msgid "Add New"
|
| 835 |
msgstr ""
|
| 836 |
|
| 837 |
+
#: classes/class.swpm-members.php:730 views/admin_add.php:7
|
| 838 |
msgid "Add Member"
|
| 839 |
msgstr ""
|
| 840 |
|
| 841 |
+
#: classes/class.swpm-members.php:731
|
| 842 |
msgid "Bulk Operation"
|
| 843 |
msgstr ""
|
| 844 |
|
| 869 |
msgid "Access Valid For/Until"
|
| 870 |
msgstr ""
|
| 871 |
|
| 872 |
+
#: classes/class.swpm-membership-levels.php:203
|
| 873 |
msgid ""
|
| 874 |
"Error! Nonce verification failed for membership level delete from admin end."
|
| 875 |
msgstr ""
|
| 876 |
|
| 877 |
+
#: classes/class.swpm-membership-levels.php:222 views/admin_members_list.php:56
|
| 878 |
#: views/payments/admin_all_payment_transactions.php:16
|
| 879 |
msgid "Search"
|
| 880 |
msgstr ""
|
| 881 |
|
| 882 |
+
#: classes/class.swpm-membership-levels.php:269
|
| 883 |
msgid "Simple WP Membership::Membership Levels"
|
| 884 |
msgstr ""
|
| 885 |
|
| 886 |
+
#: classes/class.swpm-membership-levels.php:274
|
| 887 |
msgid "Add Level"
|
| 888 |
msgstr ""
|
| 889 |
|
| 890 |
+
#: classes/class.swpm-membership-levels.php:275
|
| 891 |
msgid "Manage Content Protection"
|
| 892 |
msgstr ""
|
| 893 |
|
| 894 |
+
#: classes/class.swpm-membership-levels.php:276
|
| 895 |
msgid "Category Protection"
|
| 896 |
msgstr ""
|
| 897 |
|
| 898 |
+
#: classes/class.swpm-membership-levels.php:277
|
| 899 |
msgid "Post and Page Protection"
|
| 900 |
msgstr ""
|
| 901 |
|
| 942 |
msgid "category protection menu"
|
| 943 |
msgstr ""
|
| 944 |
|
| 945 |
+
#: classes/class.swpm-settings.php:42 classes/class.swpm-settings.php:70
|
| 946 |
msgid "General Settings"
|
| 947 |
msgstr ""
|
| 948 |
|
| 949 |
+
#: classes/class.swpm-settings.php:43
|
| 950 |
msgid "Payment Settings"
|
| 951 |
msgstr ""
|
| 952 |
|
| 953 |
+
#: classes/class.swpm-settings.php:44
|
| 954 |
msgid "Email Settings"
|
| 955 |
msgstr ""
|
| 956 |
|
| 957 |
+
#: classes/class.swpm-settings.php:45
|
| 958 |
msgid "Tools"
|
| 959 |
msgstr ""
|
| 960 |
|
| 961 |
+
#: classes/class.swpm-settings.php:46 classes/class.swpm-settings.php:625
|
| 962 |
msgid "Advanced Settings"
|
| 963 |
msgstr ""
|
| 964 |
|
| 965 |
+
#: classes/class.swpm-settings.php:47
|
| 966 |
msgid "Addons Settings"
|
| 967 |
msgstr ""
|
| 968 |
|
| 969 |
+
#: classes/class.swpm-settings.php:69
|
| 970 |
msgid "Plugin Documentation"
|
| 971 |
msgstr ""
|
| 972 |
|
| 973 |
+
#: classes/class.swpm-settings.php:73
|
| 974 |
msgid "Enable Free Membership"
|
| 975 |
msgstr ""
|
| 976 |
|
| 977 |
+
#: classes/class.swpm-settings.php:79
|
| 978 |
msgid ""
|
| 979 |
"Enable/disable registration for free membership level. When you enable this "
|
| 980 |
"option, make sure to specify a free membership level ID in the field below."
|
| 981 |
msgstr ""
|
| 982 |
|
| 983 |
+
#: classes/class.swpm-settings.php:84
|
| 984 |
msgid "Free Membership Level ID"
|
| 985 |
msgstr ""
|
| 986 |
|
| 987 |
+
#: classes/class.swpm-settings.php:90
|
| 988 |
msgid "Assign free membership level ID"
|
| 989 |
msgstr ""
|
| 990 |
|
| 991 |
+
#: classes/class.swpm-settings.php:95
|
| 992 |
msgid "Enable More Tag Protection"
|
| 993 |
msgstr ""
|
| 994 |
|
| 995 |
+
#: classes/class.swpm-settings.php:101
|
| 996 |
msgid ""
|
| 997 |
"Enables or disables \"more\" tag protection in the posts and pages. Anything "
|
| 998 |
"after the More tag is protected. Anything before the more tag is teaser "
|
| 999 |
"content."
|
| 1000 |
msgstr ""
|
| 1001 |
|
| 1002 |
+
#: classes/class.swpm-settings.php:106
|
| 1003 |
msgid "Hide Adminbar"
|
| 1004 |
msgstr ""
|
| 1005 |
|
| 1006 |
+
#: classes/class.swpm-settings.php:112
|
| 1007 |
msgid ""
|
| 1008 |
"WordPress shows an admin toolbar to the logged in users of the site. Check "
|
| 1009 |
"this if you want to hide that admin toolbar in the frontend of your site."
|
| 1010 |
msgstr ""
|
| 1011 |
|
| 1012 |
+
#: classes/class.swpm-settings.php:117
|
| 1013 |
msgid "Show Adminbar to Admin"
|
| 1014 |
msgstr ""
|
| 1015 |
|
| 1016 |
+
#: classes/class.swpm-settings.php:123
|
| 1017 |
msgid ""
|
| 1018 |
"Use this option if you want to show the admin toolbar to admin users only. "
|
| 1019 |
"The admin toolbar will be hidden for all other users."
|
| 1020 |
msgstr ""
|
| 1021 |
|
| 1022 |
+
#: classes/class.swpm-settings.php:128
|
| 1023 |
msgid "Disable Access to WP Dashboard"
|
| 1024 |
msgstr ""
|
| 1025 |
|
| 1026 |
+
#: classes/class.swpm-settings.php:134
|
| 1027 |
msgid ""
|
| 1028 |
"WordPress allows a standard wp user to be able to go to the wp-admin URL and "
|
| 1029 |
"access his profile from the wp dashboard. Using this option will prevent any "
|
| 1030 |
"non-admin users from going to the wp dashboard."
|
| 1031 |
msgstr ""
|
| 1032 |
|
| 1033 |
+
#: classes/class.swpm-settings.php:140 classes/class.swpm-settings.php:817
|
| 1034 |
msgid "Default Account Status"
|
| 1035 |
msgstr ""
|
| 1036 |
|
| 1037 |
+
#: classes/class.swpm-settings.php:148
|
| 1038 |
msgid ""
|
| 1039 |
"Select the default account status for newly registered users. If you want to "
|
| 1040 |
"manually approve the members then you can set the status to \"Pending\"."
|
| 1041 |
msgstr ""
|
| 1042 |
|
| 1043 |
+
#: classes/class.swpm-settings.php:154
|
| 1044 |
msgid "Members Must be Logged in to Comment"
|
| 1045 |
msgstr ""
|
| 1046 |
|
| 1047 |
+
#: classes/class.swpm-settings.php:160
|
| 1048 |
msgid ""
|
| 1049 |
"Enable this option if you only want the members of the site to be able to "
|
| 1050 |
"post a comment."
|
| 1051 |
msgstr ""
|
| 1052 |
|
| 1053 |
+
#: classes/class.swpm-settings.php:166
|
| 1054 |
+
msgid "Enable Toggle Password Visibility in Login Form"
|
| 1055 |
+
msgstr ""
|
| 1056 |
+
|
| 1057 |
+
#: classes/class.swpm-settings.php:172
|
| 1058 |
+
msgid ""
|
| 1059 |
+
"You can use it to show a toggle password visibility option in the login "
|
| 1060 |
+
"form. It will add a Show Password checkbox."
|
| 1061 |
+
msgstr ""
|
| 1062 |
+
|
| 1063 |
+
#: classes/class.swpm-settings.php:183
|
| 1064 |
msgid "Pages Settings"
|
| 1065 |
msgstr ""
|
| 1066 |
|
| 1067 |
+
#: classes/class.swpm-settings.php:186
|
| 1068 |
msgid "Login Page URL"
|
| 1069 |
msgstr ""
|
| 1070 |
|
| 1071 |
+
#: classes/class.swpm-settings.php:197
|
| 1072 |
msgid "Registration Page URL"
|
| 1073 |
msgstr ""
|
| 1074 |
|
| 1075 |
+
#: classes/class.swpm-settings.php:208
|
| 1076 |
msgid "Join Us Page URL"
|
| 1077 |
msgstr ""
|
| 1078 |
|
| 1079 |
+
#: classes/class.swpm-settings.php:219
|
| 1080 |
msgid "Edit Profile Page URL"
|
| 1081 |
msgstr ""
|
| 1082 |
|
| 1083 |
+
#: classes/class.swpm-settings.php:230
|
| 1084 |
msgid "Password Reset Page URL"
|
| 1085 |
msgstr ""
|
| 1086 |
|
| 1087 |
+
#: classes/class.swpm-settings.php:240
|
| 1088 |
msgid "Test & Debug Settings"
|
| 1089 |
msgstr ""
|
| 1090 |
|
| 1091 |
+
#: classes/class.swpm-settings.php:269
|
| 1092 |
msgid "Check this option to enable debug logging."
|
| 1093 |
msgstr ""
|
| 1094 |
|
| 1095 |
+
#: classes/class.swpm-settings.php:270
|
| 1096 |
msgid ""
|
| 1097 |
" This can be useful when troubleshooting an issue. Turn it off and reset the "
|
| 1098 |
"log files after the troubleshooting is complete."
|
| 1099 |
msgstr ""
|
| 1100 |
|
| 1101 |
+
#: classes/class.swpm-settings.php:272
|
| 1102 |
msgid "View general debug log file by clicking "
|
| 1103 |
msgstr ""
|
| 1104 |
|
| 1105 |
+
#: classes/class.swpm-settings.php:272 classes/class.swpm-settings.php:273
|
| 1106 |
+
#: classes/class.swpm-settings.php:274
|
| 1107 |
msgid "here"
|
| 1108 |
msgstr ""
|
| 1109 |
|
| 1110 |
+
#: classes/class.swpm-settings.php:273
|
| 1111 |
msgid "View login related debug log file by clicking "
|
| 1112 |
msgstr ""
|
| 1113 |
|
| 1114 |
+
#: classes/class.swpm-settings.php:274
|
| 1115 |
msgid "Reset debug log files by clicking "
|
| 1116 |
msgstr ""
|
| 1117 |
|
| 1118 |
+
#: classes/class.swpm-settings.php:277
|
| 1119 |
msgid "Enable Debug"
|
| 1120 |
msgstr ""
|
| 1121 |
|
| 1122 |
+
#: classes/class.swpm-settings.php:288
|
| 1123 |
msgid "Enable Sandbox Testing"
|
| 1124 |
msgstr ""
|
| 1125 |
|
| 1126 |
+
#: classes/class.swpm-settings.php:294
|
| 1127 |
msgid "Enable this option if you want to do sandbox payment testing."
|
| 1128 |
msgstr ""
|
| 1129 |
|
| 1130 |
+
#: classes/class.swpm-settings.php:302
|
| 1131 |
msgid "Stripe Global Settings"
|
| 1132 |
msgstr ""
|
| 1133 |
|
| 1134 |
+
#: classes/class.swpm-settings.php:305
|
| 1135 |
msgid "Pre-fill Member Email Address"
|
| 1136 |
msgstr ""
|
| 1137 |
|
| 1138 |
+
#: classes/class.swpm-settings.php:311
|
| 1139 |
msgid ""
|
| 1140 |
"Pre-fills the email address of the logged-in member on the Stripe checkout "
|
| 1141 |
"form when possible"
|
| 1142 |
msgstr ""
|
| 1143 |
|
| 1144 |
+
#: classes/class.swpm-settings.php:316
|
| 1145 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:115
|
| 1146 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:399
|
| 1147 |
#: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:115
|
| 1151 |
msgid "Test Publishable Key"
|
| 1152 |
msgstr ""
|
| 1153 |
|
| 1154 |
+
#: classes/class.swpm-settings.php:322
|
| 1155 |
msgid "Stripe API Test publishable key"
|
| 1156 |
msgstr ""
|
| 1157 |
|
| 1158 |
+
#: classes/class.swpm-settings.php:327
|
| 1159 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:122
|
| 1160 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:406
|
| 1161 |
#: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:122
|
| 1165 |
msgid "Test Secret Key"
|
| 1166 |
msgstr ""
|
| 1167 |
|
| 1168 |
+
#: classes/class.swpm-settings.php:333
|
| 1169 |
msgid "Stripe API Test secret key"
|
| 1170 |
msgstr ""
|
| 1171 |
|
| 1172 |
+
#: classes/class.swpm-settings.php:338
|
| 1173 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:129
|
| 1174 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:413
|
| 1175 |
#: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:129
|
| 1179 |
msgid "Live Publishable Key"
|
| 1180 |
msgstr ""
|
| 1181 |
|
| 1182 |
+
#: classes/class.swpm-settings.php:344
|
| 1183 |
msgid "Stripe API Live publishable key"
|
| 1184 |
msgstr ""
|
| 1185 |
|
| 1186 |
+
#: classes/class.swpm-settings.php:349
|
| 1187 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:136
|
| 1188 |
#: views/payments/payment-gateway/admin_stripe_buy_now_button.php:420
|
| 1189 |
#: views/payments/payment-gateway/admin_stripe_sca_buy_now_button.php:136
|
| 1193 |
msgid "Live Secret Key"
|
| 1194 |
msgstr ""
|
| 1195 |
|
| 1196 |
+
#: classes/class.swpm-settings.php:355
|
| 1197 |
msgid "Stripe API Live secret key"
|
| 1198 |
msgstr ""
|
| 1199 |
|
| 1200 |
+
#: classes/class.swpm-settings.php:365
|
| 1201 |
msgid "Email Settings Overview"
|
| 1202 |
msgstr ""
|
| 1203 |
|
| 1204 |
+
#: classes/class.swpm-settings.php:366
|
| 1205 |
msgid "Email Misc. Settings"
|
| 1206 |
msgstr ""
|
| 1207 |
|
| 1208 |
+
#: classes/class.swpm-settings.php:370
|
| 1209 |
msgid "From Email Address"
|
| 1210 |
msgstr ""
|
| 1211 |
|
| 1212 |
+
#: classes/class.swpm-settings.php:382
|
| 1213 |
msgid "Allow HTML in Emails"
|
| 1214 |
msgstr ""
|
| 1215 |
|
| 1216 |
+
#: classes/class.swpm-settings.php:393
|
| 1217 |
msgid "Email Settings (Prompt to Complete Registration )"
|
| 1218 |
msgstr ""
|
| 1219 |
|
| 1220 |
+
#: classes/class.swpm-settings.php:396 classes/class.swpm-settings.php:427
|
| 1221 |
+
#: classes/class.swpm-settings.php:508 classes/class.swpm-settings.php:533
|
| 1222 |
+
#: classes/class.swpm-settings.php:569 classes/class.swpm-settings.php:594
|
| 1223 |
msgid "Email Subject"
|
| 1224 |
msgstr ""
|
| 1225 |
|
| 1226 |
+
#: classes/class.swpm-settings.php:407 classes/class.swpm-settings.php:438
|
| 1227 |
+
#: classes/class.swpm-settings.php:519 classes/class.swpm-settings.php:544
|
| 1228 |
+
#: classes/class.swpm-settings.php:580 classes/class.swpm-settings.php:605
|
| 1229 |
msgid "Email Body"
|
| 1230 |
msgstr ""
|
| 1231 |
|
| 1232 |
+
#: classes/class.swpm-settings.php:418
|
| 1233 |
msgid ""
|
| 1234 |
"Enter the email address where you want the admin notification email to be "
|
| 1235 |
"sent to."
|
| 1236 |
msgstr ""
|
| 1237 |
|
| 1238 |
+
#: classes/class.swpm-settings.php:419
|
| 1239 |
msgid ""
|
| 1240 |
" You can put multiple email addresses separated by comma (,) in the above "
|
| 1241 |
"field to send the notification to multiple email addresses."
|
| 1242 |
msgstr ""
|
| 1243 |
|
| 1244 |
+
#: classes/class.swpm-settings.php:421
|
| 1245 |
msgid "Enter the subject for the admin notification email."
|
| 1246 |
msgstr ""
|
| 1247 |
|
| 1248 |
+
#: classes/class.swpm-settings.php:422
|
| 1249 |
msgid ""
|
| 1250 |
"This email will be sent to the admin when a new user completes the "
|
| 1251 |
"membership registration. Only works if you have enabled the \"Send "
|
| 1252 |
"Notification to Admin\" option above."
|
| 1253 |
msgstr ""
|
| 1254 |
|
| 1255 |
+
#: classes/class.swpm-settings.php:424
|
| 1256 |
msgid "Email Settings (Registration Complete)"
|
| 1257 |
msgstr ""
|
| 1258 |
|
| 1259 |
+
#: classes/class.swpm-settings.php:449
|
| 1260 |
msgid "Send Notification to Admin"
|
| 1261 |
msgstr ""
|
| 1262 |
|
| 1263 |
+
#: classes/class.swpm-settings.php:455
|
| 1264 |
msgid ""
|
| 1265 |
"Enable this option if you want the admin to receive a notification when a "
|
| 1266 |
"member registers."
|
| 1267 |
msgstr ""
|
| 1268 |
|
| 1269 |
+
#: classes/class.swpm-settings.php:460
|
| 1270 |
msgid "Admin Email Address"
|
| 1271 |
msgstr ""
|
| 1272 |
|
| 1273 |
+
#: classes/class.swpm-settings.php:471
|
| 1274 |
msgid "Admin Notification Email Subject"
|
| 1275 |
msgstr ""
|
| 1276 |
|
| 1277 |
+
#: classes/class.swpm-settings.php:482
|
| 1278 |
msgid "Admin Notification Email Body"
|
| 1279 |
msgstr ""
|
| 1280 |
|
| 1281 |
+
#: classes/class.swpm-settings.php:494
|
| 1282 |
msgid "Send Email to Member When Added via Admin Dashboard"
|
| 1283 |
msgstr ""
|
| 1284 |
|
| 1285 |
+
#: classes/class.swpm-settings.php:505
|
| 1286 |
msgid "Email Settings (Password Reset)"
|
| 1287 |
msgstr ""
|
| 1288 |
|
| 1289 |
+
#: classes/class.swpm-settings.php:530
|
| 1290 |
msgid " Email Settings (Account Upgrade Notification)"
|
| 1291 |
msgstr ""
|
| 1292 |
|
| 1293 |
+
#: classes/class.swpm-settings.php:555
|
| 1294 |
msgid "Disable Email Notification After Upgrade"
|
| 1295 |
msgstr ""
|
| 1296 |
|
| 1297 |
+
#: classes/class.swpm-settings.php:561
|
| 1298 |
msgid ""
|
| 1299 |
"You can use this option to disable the email notification that gets sent to "
|
| 1300 |
"the members when they make a payment for upgrade or renewal."
|
| 1301 |
msgstr ""
|
| 1302 |
|
| 1303 |
+
#: classes/class.swpm-settings.php:566
|
| 1304 |
msgid " Email Settings (Bulk Account Activate Notification)"
|
| 1305 |
msgstr ""
|
| 1306 |
|
| 1307 |
+
#: classes/class.swpm-settings.php:591
|
| 1308 |
msgid " Email Settings (Email Activation)"
|
| 1309 |
msgstr ""
|
| 1310 |
|
| 1311 |
+
#: classes/class.swpm-settings.php:629
|
| 1312 |
msgid "Enable Expired Account Login"
|
| 1313 |
msgstr ""
|
| 1314 |
|
| 1315 |
+
#: classes/class.swpm-settings.php:635
|
| 1316 |
msgid ""
|
| 1317 |
"When enabled, expired members will be able to log into the system but won't "
|
| 1318 |
"be able to view any protected content. This allows them to easily renew "
|
| 1319 |
"their account by making another payment."
|
| 1320 |
msgstr ""
|
| 1321 |
|
| 1322 |
+
#: classes/class.swpm-settings.php:641
|
| 1323 |
msgid "Membership Renewal URL"
|
| 1324 |
msgstr ""
|
| 1325 |
|
| 1326 |
+
#: classes/class.swpm-settings.php:647
|
| 1327 |
msgid ""
|
| 1328 |
"You can create a renewal page for your site. Read <a href=\"https://simple-"
|
| 1329 |
"membership-plugin.com/creating-membership-renewal-button/\" target=\"_blank"
|
| 1330 |
"\">this documentation</a> to learn how to create a renewal page."
|
| 1331 |
msgstr ""
|
| 1332 |
|
| 1333 |
+
#: classes/class.swpm-settings.php:653
|
| 1334 |
msgid "After Registration Redirect URL"
|
| 1335 |
msgstr ""
|
| 1336 |
|
| 1337 |
+
#: classes/class.swpm-settings.php:659
|
| 1338 |
msgid ""
|
| 1339 |
"You can enter an URL here to redirect the members to this page after they "
|
| 1340 |
"submit the registration form. Read <a href=\"https://simple-membership-"
|
| 1343 |
"redirect."
|
| 1344 |
msgstr ""
|
| 1345 |
|
| 1346 |
+
#: classes/class.swpm-settings.php:665
|
| 1347 |
msgid "Enable Auto Login After Registration"
|
| 1348 |
msgstr ""
|
| 1349 |
|
| 1350 |
+
#: classes/class.swpm-settings.php:671
|
| 1351 |
msgid ""
|
| 1352 |
"Use this option if you want the members to be automatically logged into your "
|
| 1353 |
"site right after they complete the registration. This option will override "
|
| 1357 |
"documentation</a> to learn more."
|
| 1358 |
msgstr ""
|
| 1359 |
|
| 1360 |
+
#: classes/class.swpm-settings.php:677
|
| 1361 |
msgid "Hide Registration Form to Logged Users"
|
| 1362 |
msgstr ""
|
| 1363 |
|
| 1364 |
+
#: classes/class.swpm-settings.php:683
|
| 1365 |
msgid ""
|
| 1366 |
"Use this option if you want to hide the registration form to the logged-in "
|
| 1367 |
"members. If logged-in members visit the registration page, they will see a "
|
| 1368 |
"message instead of the registration form."
|
| 1369 |
msgstr ""
|
| 1370 |
|
| 1371 |
+
#: classes/class.swpm-settings.php:689
|
| 1372 |
msgid "After Logout Redirect URL"
|
| 1373 |
msgstr ""
|
| 1374 |
|
| 1375 |
+
#: classes/class.swpm-settings.php:695
|
| 1376 |
msgid ""
|
| 1377 |
"You can enter an URL here to redirect the members to this page after they "
|
| 1378 |
"click the logout link to logout from your site."
|
| 1379 |
msgstr ""
|
| 1380 |
|
| 1381 |
+
#: classes/class.swpm-settings.php:701
|
| 1382 |
msgid "Logout Member on Browser Close"
|
| 1383 |
msgstr ""
|
| 1384 |
|
| 1385 |
+
#: classes/class.swpm-settings.php:707
|
| 1386 |
msgid ""
|
| 1387 |
"Enable this option if you want the member to be logged out of the account "
|
| 1388 |
"when he closes the browser."
|
| 1389 |
msgstr ""
|
| 1390 |
|
| 1391 |
+
#: classes/class.swpm-settings.php:713
|
| 1392 |
msgid "Allow Account Deletion"
|
| 1393 |
msgstr ""
|
| 1394 |
|
| 1395 |
+
#: classes/class.swpm-settings.php:719
|
| 1396 |
msgid "Allow users to delete their accounts."
|
| 1397 |
msgstr ""
|
| 1398 |
|
| 1399 |
+
#: classes/class.swpm-settings.php:725
|
| 1400 |
msgid "Force Strong Password for Members"
|
| 1401 |
msgstr ""
|
| 1402 |
|
| 1403 |
+
#: classes/class.swpm-settings.php:731
|
| 1404 |
msgid ""
|
| 1405 |
"Enable this if you want the users to be forced to use a strong password for "
|
| 1406 |
"their accounts."
|
| 1407 |
msgstr ""
|
| 1408 |
|
| 1409 |
+
#: classes/class.swpm-settings.php:737
|
| 1410 |
msgid "Auto Delete Pending Account"
|
| 1411 |
msgstr ""
|
| 1412 |
|
| 1413 |
+
#: classes/class.swpm-settings.php:749
|
| 1414 |
msgid "Select how long you want to keep \"pending\" account."
|
| 1415 |
msgstr ""
|
| 1416 |
|
| 1417 |
+
#: classes/class.swpm-settings.php:755
|
| 1418 |
msgid "Admin Dashboard Access Permission"
|
| 1419 |
msgstr ""
|
| 1420 |
|
| 1421 |
+
#: classes/class.swpm-settings.php:768
|
| 1422 |
msgid ""
|
| 1423 |
"SWPM admin dashboard is accessible to admin users only (just like any other "
|
| 1424 |
"plugin). You can allow users with other WP user roles to access the SWPM "
|
| 1427 |
"Settings."
|
| 1428 |
msgstr ""
|
| 1429 |
|
| 1430 |
+
#: classes/class.swpm-settings.php:774
|
| 1431 |
msgid "Force WP User Synchronization"
|
| 1432 |
msgstr ""
|
| 1433 |
|
| 1434 |
+
#: classes/class.swpm-settings.php:780
|
| 1435 |
msgid ""
|
| 1436 |
"Enable this option if you want to force the member login to be synchronized "
|
| 1437 |
"with WP user account. This can be useful if you are using another plugin "
|
| 1438 |
"that uses WP user records. For example: bbPress plugin."
|
| 1439 |
msgstr ""
|
| 1440 |
|
| 1441 |
+
#: classes/class.swpm-settings.php:785
|
| 1442 |
msgid "Create Member Accounts for New WP Users"
|
| 1443 |
msgstr ""
|
| 1444 |
|
| 1445 |
+
#: classes/class.swpm-settings.php:789
|
| 1446 |
msgid "Enable Auto Create Member Accounts"
|
| 1447 |
msgstr ""
|
| 1448 |
|
| 1449 |
+
#: classes/class.swpm-settings.php:795
|
| 1450 |
msgid ""
|
| 1451 |
"Enable this option to automatically create member accounts for any new WP "
|
| 1452 |
"user that is created by another plugin."
|
| 1453 |
msgstr ""
|
| 1454 |
|
| 1455 |
+
#: classes/class.swpm-settings.php:802
|
| 1456 |
msgid "Default Membership Level"
|
| 1457 |
msgstr ""
|
| 1458 |
|
| 1459 |
+
#: classes/class.swpm-settings.php:810
|
| 1460 |
msgid ""
|
| 1461 |
"When automatically creating a member account using this feature, the "
|
| 1462 |
"membership level of the user will be set to the one you specify here."
|
| 1463 |
msgstr ""
|
| 1464 |
|
| 1465 |
+
#: classes/class.swpm-settings.php:825
|
| 1466 |
msgid ""
|
| 1467 |
"When automatically creating a member account using this feature, the "
|
| 1468 |
"membership account status of the user will be set to the one you specify "
|
| 1469 |
"here."
|
| 1470 |
msgstr ""
|
| 1471 |
|
| 1472 |
+
#: classes/class.swpm-settings.php:831
|
| 1473 |
msgid "Payment Notification Forward URL"
|
| 1474 |
msgstr ""
|
| 1475 |
|
| 1476 |
+
#: classes/class.swpm-settings.php:837
|
| 1477 |
msgid ""
|
| 1478 |
"You can enter an URL here to forward the payment notification after the "
|
| 1479 |
"membership payment has been processed by this plugin. Useful if you want to "
|
| 1481 |
"processing."
|
| 1482 |
msgstr ""
|
| 1483 |
|
| 1484 |
+
#: classes/class.swpm-settings.php:842 views/add.php:68
|
| 1485 |
msgid "Terms and Conditions"
|
| 1486 |
msgstr ""
|
| 1487 |
|
| 1488 |
+
#: classes/class.swpm-settings.php:846
|
| 1489 |
msgid "Enable Terms and Conditions"
|
| 1490 |
msgstr ""
|
| 1491 |
|
| 1492 |
+
#: classes/class.swpm-settings.php:852
|
| 1493 |
msgid "Users must accept the terms before they can complete the registration."
|
| 1494 |
msgstr ""
|
| 1495 |
|
| 1496 |
+
#: classes/class.swpm-settings.php:857
|
| 1497 |
msgid "Terms and Conditions Page URL"
|
| 1498 |
msgstr ""
|
| 1499 |
|
| 1500 |
+
#: classes/class.swpm-settings.php:863
|
| 1501 |
msgid ""
|
| 1502 |
"Enter the URL of your terms and conditions page. You can create a WordPress "
|
| 1503 |
"page and specify your terms in there then specify the URL of that page in "
|
| 1504 |
"the above field."
|
| 1505 |
msgstr ""
|
| 1506 |
|
| 1507 |
+
#: classes/class.swpm-settings.php:868
|
| 1508 |
msgid "Enable Privacy Policy"
|
| 1509 |
msgstr ""
|
| 1510 |
|
| 1511 |
+
#: classes/class.swpm-settings.php:874
|
| 1512 |
msgid "Users must accept it before they can complete the registration."
|
| 1513 |
msgstr ""
|
| 1514 |
|
| 1515 |
+
#: classes/class.swpm-settings.php:879
|
| 1516 |
msgid "Privacy Policy Page URL"
|
| 1517 |
msgstr ""
|
| 1518 |
|
| 1519 |
+
#: classes/class.swpm-settings.php:885
|
| 1520 |
msgid "Enter the URL of your privacy policy page."
|
| 1521 |
msgstr ""
|
| 1522 |
|
| 1523 |
+
#: classes/class.swpm-settings.php:983
|
| 1524 |
#, php-format
|
| 1525 |
msgid "Visit the %s to read setup and configuration documentation."
|
| 1526 |
msgstr ""
|
| 1527 |
|
| 1528 |
+
#: classes/class.swpm-settings.php:983
|
| 1529 |
msgid "Simple Membership Plugin Site"
|
| 1530 |
msgstr ""
|
| 1531 |
|
| 1532 |
+
#: classes/class.swpm-settings.php:984
|
| 1533 |
#, php-format
|
| 1534 |
msgid "Please %s if you like the plugin."
|
| 1535 |
msgstr ""
|
| 1536 |
|
| 1537 |
+
#: classes/class.swpm-settings.php:984
|
| 1538 |
msgid "give us a rating"
|
| 1539 |
msgstr ""
|
| 1540 |
|
| 1541 |
+
#: classes/class.swpm-settings.php:1002 classes/class.swpm-settings.php:1048
|
| 1542 |
+
#: classes/class.swpm-settings.php:1076
|
| 1543 |
msgid "Settings updated!"
|
| 1544 |
msgstr ""
|
| 1545 |
|
| 1546 |
+
#: classes/class.swpm-settings.php:1037 views/admin_tools_settings.php:82
|
| 1547 |
msgid "This documentation"
|
| 1548 |
msgstr ""
|
| 1549 |
|
| 1550 |
+
#: classes/class.swpm-settings.php:1091
|
| 1551 |
msgid ""
|
| 1552 |
"Note: You cannot enable both the \"Disable Access to WP Dashboard\" and "
|
| 1553 |
"\"Admin Dashboard Access Permission\" options at the same time. Only use one "
|
| 1554 |
"of those options."
|
| 1555 |
msgstr ""
|
| 1556 |
|
| 1557 |
+
#: classes/class.swpm-settings.php:1258
|
| 1558 |
msgid "Simple WP Membership::Settings"
|
| 1559 |
msgstr ""
|
| 1560 |
|
| 1613 |
msgid "Error! This action ("
|
| 1614 |
msgstr ""
|
| 1615 |
|
| 1616 |
+
#: classes/class.swpm-utils-misc.php:684
|
| 1617 |
msgid "(Please Select)"
|
| 1618 |
msgstr ""
|
| 1619 |
|
| 1620 |
+
#: classes/class.swpm-utils-misc.php:700
|
| 1621 |
msgid "PayPal Buy Now"
|
| 1622 |
msgstr ""
|
| 1623 |
|
| 1624 |
+
#: classes/class.swpm-utils-misc.php:701
|
| 1625 |
msgid "PayPal Subscription"
|
| 1626 |
msgstr ""
|
| 1627 |
|
| 1628 |
+
#: classes/class.swpm-utils-misc.php:702
|
| 1629 |
msgid "PayPal Smart Checkout"
|
| 1630 |
msgstr ""
|
| 1631 |
|
| 1632 |
+
#: classes/class.swpm-utils-misc.php:703
|
| 1633 |
msgid "Stripe Buy Now"
|
| 1634 |
msgstr ""
|
| 1635 |
|
| 1636 |
+
#: classes/class.swpm-utils-misc.php:704
|
| 1637 |
msgid "Stripe Subscription"
|
| 1638 |
msgstr ""
|
| 1639 |
|
| 1640 |
+
#: classes/class.swpm-utils-misc.php:705
|
| 1641 |
msgid "Stripe SCA Buy Now"
|
| 1642 |
msgstr ""
|
| 1643 |
|
| 1644 |
+
#: classes/class.swpm-utils-misc.php:706
|
| 1645 |
msgid "Stripe SCA Subscription"
|
| 1646 |
msgstr ""
|
| 1647 |
|
| 1648 |
+
#: classes/class.swpm-utils-misc.php:707
|
| 1649 |
msgid "Braintree Buy Now"
|
| 1650 |
msgstr ""
|
| 1651 |
|
| 1689 |
msgid "Expired"
|
| 1690 |
msgstr ""
|
| 1691 |
|
| 1692 |
+
#: classes/class.swpm-utils.php:494 views/account_delete_warning.php:3
|
| 1693 |
msgid "Delete Account"
|
| 1694 |
msgstr ""
|
| 1695 |
|
| 1774 |
msgstr ""
|
| 1775 |
|
| 1776 |
#. translators: %1$d is error code; %2$s is error message.
|
| 1777 |
+
#: ipn/swpm-smart-checkout-ipn.php:271 ipn/swpm-smart-checkout-ipn.php:298
|
| 1778 |
#, php-format
|
| 1779 |
msgid ""
|
| 1780 |
"Error occured during payment verification. Error code: %1$d. Message: %2$s"
|
| 1781 |
msgstr ""
|
| 1782 |
|
| 1783 |
#. translators: %1$s is expected amount, %2$s is expected currency.
|
| 1784 |
+
#: ipn/swpm-smart-checkout-ipn.php:312
|
| 1785 |
#, php-format
|
| 1786 |
msgid ""
|
| 1787 |
"Payment check failed: invalid amount received. Expected %1$s %2$s, got %3$s "
|
| 1788 |
"%4$s."
|
| 1789 |
msgstr ""
|
| 1790 |
|
| 1791 |
+
#: ipn/swpm-smart-checkout-ipn.php:348
|
| 1792 |
msgid "Empty payment data received."
|
| 1793 |
msgstr ""
|
| 1794 |
|
| 1795 |
+
#: ipn/swpm-smart-checkout-ipn.php:407
|
| 1796 |
msgid "IPN product validation failed. Check the debug log for more details."
|
| 1797 |
msgstr ""
|
| 1798 |
|
| 1825 |
msgstr ""
|
| 1826 |
|
| 1827 |
#: views/add.php:26 views/admin_add.php:20 views/admin_edit.php:44
|
| 1828 |
+
#: views/edit.php:31 views/login.php:28
|
| 1829 |
msgid "Password"
|
| 1830 |
msgstr ""
|
| 1831 |
|
| 1884 |
msgid "Account Status"
|
| 1885 |
msgstr ""
|
| 1886 |
|
| 1887 |
+
#: views/admin_add.php:49
|
| 1888 |
msgid "Add New Member "
|
| 1889 |
msgstr ""
|
| 1890 |
|
| 2056 |
"(the email will be sent when you hit the save button below)."
|
| 2057 |
msgstr ""
|
| 2058 |
|
| 2059 |
+
#: views/admin_edit.php:103
|
| 2060 |
msgid "Subscriber ID/Reference"
|
| 2061 |
msgstr ""
|
| 2062 |
|
| 2063 |
+
#: views/admin_edit.php:107
|
| 2064 |
msgid "Expiry Date"
|
| 2065 |
msgstr ""
|
| 2066 |
|
| 2067 |
+
#: views/admin_edit.php:114
|
| 2068 |
msgid ""
|
| 2069 |
"This is calculated based on the current membership level assigned to this "
|
| 2070 |
"member and the expiry condition that you have set for that membership level."
|
| 2071 |
msgstr ""
|
| 2072 |
|
| 2073 |
+
#: views/admin_edit.php:119
|
| 2074 |
msgid "Last Accessed Date"
|
| 2075 |
msgstr ""
|
| 2076 |
|
| 2077 |
+
#: views/admin_edit.php:122 views/admin_edit.php:129
|
| 2078 |
msgid "This value gets updated when this member logs into your site."
|
| 2079 |
msgstr ""
|
| 2080 |
|
| 2081 |
+
#: views/admin_edit.php:126
|
| 2082 |
msgid "Last Accessed From IP"
|
| 2083 |
msgstr ""
|
| 2084 |
|
| 2085 |
+
#: views/admin_edit.php:137
|
| 2086 |
msgid "Save Data"
|
| 2087 |
msgstr ""
|
| 2088 |
|
| 2089 |
+
#: views/admin_edit.php:142
|
| 2090 |
msgid "Delete User Profile"
|
| 2091 |
msgstr ""
|
| 2092 |
|
| 2128 |
msgid "Save Membership Level "
|
| 2129 |
msgstr ""
|
| 2130 |
|
| 2131 |
+
#: views/admin_member_form_common_part.php:14
|
| 2132 |
msgid "Gender"
|
| 2133 |
msgstr ""
|
| 2134 |
|
| 2135 |
+
#: views/admin_member_form_common_part.php:21 views/edit.php:47
|
| 2136 |
msgid "Phone"
|
| 2137 |
msgstr ""
|
| 2138 |
|
| 2139 |
+
#: views/admin_member_form_common_part.php:25 views/edit.php:51
|
| 2140 |
msgid "Street"
|
| 2141 |
msgstr ""
|
| 2142 |
|
| 2143 |
+
#: views/admin_member_form_common_part.php:29 views/edit.php:55
|
| 2144 |
msgid "City"
|
| 2145 |
msgstr ""
|
| 2146 |
|
| 2147 |
+
#: views/admin_member_form_common_part.php:33 views/edit.php:59
|
| 2148 |
msgid "State"
|
| 2149 |
msgstr ""
|
| 2150 |
|
| 2151 |
+
#: views/admin_member_form_common_part.php:37 views/edit.php:63
|
| 2152 |
msgid "Zipcode"
|
| 2153 |
msgstr ""
|
| 2154 |
|
| 2155 |
+
#: views/admin_member_form_common_part.php:41 views/edit.php:67
|
| 2156 |
msgid "Country"
|
| 2157 |
msgstr ""
|
| 2158 |
|
| 2159 |
+
#: views/admin_member_form_common_part.php:45
|
| 2160 |
msgid "Company"
|
| 2161 |
msgstr ""
|
| 2162 |
|
| 2163 |
+
#: views/admin_member_form_common_part.php:49
|
| 2164 |
msgid "Member Since"
|
| 2165 |
msgstr ""
|
| 2166 |
|
| 2297 |
msgid "Username or Email"
|
| 2298 |
msgstr ""
|
| 2299 |
|
| 2300 |
+
#: views/login.php:36
|
| 2301 |
+
msgid "Show password"
|
| 2302 |
+
msgstr ""
|
| 2303 |
+
|
| 2304 |
+
#: views/login.php:41
|
| 2305 |
msgid "Remember Me"
|
| 2306 |
msgstr ""
|
| 2307 |
|
| 2308 |
+
#: views/login.php:50
|
| 2309 |
msgid "Forgot Password?"
|
| 2310 |
msgstr ""
|
| 2311 |
|
| 2329 |
msgid "Search for a transaction by using email or name"
|
| 2330 |
msgstr ""
|
| 2331 |
|
| 2332 |
+
#: views/payments/admin_all_payment_transactions.php:50
|
| 2333 |
msgid "Add a Transaction Manually"
|
| 2334 |
msgstr ""
|
| 2335 |
|
| 2787 |
msgid "Subscribe Now"
|
| 2788 |
msgstr ""
|
| 2789 |
|
| 2790 |
+
#: views/payments/payment-gateway/paypal_smart_checkout_button_shortcode_view.php:155
|
| 2791 |
msgid "Error occurred during PayPal Smart Checkout process."
|
| 2792 |
msgstr ""
|
| 2793 |
|
| 2794 |
+
#: views/payments/payment-gateway/paypal_smart_checkout_button_shortcode_view.php:184
|
| 2795 |
msgid "HTTP error occurred during payment process:"
|
| 2796 |
msgstr ""
|
| 2797 |
|
| 2798 |
+
#. Description of the plugin/theme
|
| 2799 |
+
msgid ""
|
| 2800 |
+
"A flexible, well-supported, and easy-to-use WordPress membership plugin for "
|
| 2801 |
+
"offering free and premium content from your WordPress site."
|
| 2802 |
+
msgstr ""
|
| 2803 |
+
|
| 2804 |
#: Translation strings from addons
|
| 2805 |
|
| 2806 |
#: === Form builder addon strings ===
|
readme.txt
CHANGED
|
@@ -5,7 +5,7 @@ Tags: member, members, members only, membership, memberships, register, WordPres
|
|
| 5 |
Requires at least: 5.0
|
| 6 |
Requires PHP: 5.6
|
| 7 |
Tested up to: 6.0
|
| 8 |
-
Stable tag: 4.1.
|
| 9 |
License: GPLv2 or later
|
| 10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 11 |
|
|
@@ -50,6 +50,8 @@ You can easily add a member login widget on the sidebar of your site. Simply use
|
|
| 50 |
|
| 51 |
You can also customize the member login widget by creating a custom template file in your theme (or child theme) folder.
|
| 52 |
|
|
|
|
|
|
|
| 53 |
= Documentation =
|
| 54 |
|
| 55 |
Read the [setup documentation](https://simple-membership-plugin.com/simple-membership-documentation/) after you install the plugin to get started.
|
|
@@ -159,6 +161,18 @@ https://simple-membership-plugin.com/
|
|
| 159 |
|
| 160 |
== Changelog ==
|
| 161 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 162 |
= 4.1.4 =
|
| 163 |
- PayPal smart checkout will pass the item name set in the payment button to PayPal's API.
|
| 164 |
- The PayPal smart checkout transactions will try to find a member profile using the Transaction ID and show it in the Transactions tab (if found).
|
| 5 |
Requires at least: 5.0
|
| 6 |
Requires PHP: 5.6
|
| 7 |
Tested up to: 6.0
|
| 8 |
+
Stable tag: 4.1.6
|
| 9 |
License: GPLv2 or later
|
| 10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 11 |
|
| 50 |
|
| 51 |
You can also customize the member login widget by creating a custom template file in your theme (or child theme) folder.
|
| 52 |
|
| 53 |
+
Option to show a password visibility toggle option in the login form.
|
| 54 |
+
|
| 55 |
= Documentation =
|
| 56 |
|
| 57 |
Read the [setup documentation](https://simple-membership-plugin.com/simple-membership-documentation/) after you install the plugin to get started.
|
| 161 |
|
| 162 |
== Changelog ==
|
| 163 |
|
| 164 |
+
= 4.1.6 =
|
| 165 |
+
- Added a new action hook - swpm_front_end_edit_profile_form_submitted.
|
| 166 |
+
- Added a new action hook - swpm_do_init_time_tasks_front_end.
|
| 167 |
+
- Translation POT file has been regenerated.
|
| 168 |
+
- Apostrophe characters will now be accepted in the name and address fields.
|
| 169 |
+
- Fixed the validation error message positioning in the edit profile form when Force Strong Password option is enabled.
|
| 170 |
+
|
| 171 |
+
= 4.1.5 =
|
| 172 |
+
- Added a new feature to toggle password visibility option in the login form. [Password toggle documentation](https://simple-membership-plugin.com/show-password-option-in-the-login-form-toggle-password-visibility/)
|
| 173 |
+
- Updated the Dutch language translation files.
|
| 174 |
+
- Fixed a minor PHP notice with PayPal smart checkout button configuration.
|
| 175 |
+
|
| 176 |
= 4.1.4 =
|
| 177 |
- PayPal smart checkout will pass the item name set in the payment button to PayPal's API.
|
| 178 |
- The PayPal smart checkout transactions will try to find a member profile using the Transaction ID and show it in the Transactions tab (if found).
|
simple-wp-membership.php
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
<?php
|
| 2 |
/*
|
| 3 |
Plugin Name: Simple WordPress Membership
|
| 4 |
-
Version: 4.1.
|
| 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.1.
|
| 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.1.6
|
| 5 |
Plugin URI: https://simple-membership-plugin.com/
|
| 6 |
Author: smp7, wp.insider
|
| 7 |
Author URI: https://simple-membership-plugin.com/
|
| 20 |
include_once( 'classes/class.swpm-cronjob.php' );
|
| 21 |
include_once( 'swpm-compat.php' );
|
| 22 |
|
| 23 |
+
define( 'SIMPLE_WP_MEMBERSHIP_VER', '4.1.6' );
|
| 24 |
define( 'SIMPLE_WP_MEMBERSHIP_DB_VER', '1.3' );
|
| 25 |
define( 'SIMPLE_WP_MEMBERSHIP_SITE_HOME_URL', home_url() );
|
| 26 |
define( 'SIMPLE_WP_MEMBERSHIP_PATH', dirname( __FILE__ ) . '/' );
|
views/login.php
CHANGED
|
@@ -6,6 +6,14 @@ $join_url = $setting->get_value('join-us-page-url');
|
|
| 6 |
// Filter that allows changing of the default value of the username label on login form.
|
| 7 |
$label_username_or_email = __( 'Username or Email', 'simple-membership' );
|
| 8 |
$swpm_username_label = apply_filters('swpm_login_form_set_username_label', $label_username_or_email);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
?>
|
| 10 |
<div class="swpm-login-widget-form">
|
| 11 |
<form id="swpm-login-form" name="swpm-login-form" method="post" action="">
|
|
@@ -19,9 +27,15 @@ $swpm_username_label = apply_filters('swpm_login_form_set_username_label', $labe
|
|
| 19 |
<div class="swpm-password-label">
|
| 20 |
<label for="swpm_password" class="swpm-label"><?php echo SwpmUtils::_('Password') ?></label>
|
| 21 |
</div>
|
| 22 |
-
<div class="swpm-password-input">
|
| 23 |
-
<input type="password" class="swpm-text-field swpm-password-field" id="swpm_password" value="" size="25" name="swpm_password" />
|
| 24 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
<div class="swpm-remember-me">
|
| 26 |
<span class="swpm-remember-checkbox"><input type="checkbox" name="rememberme" value="checked='checked'"></span>
|
| 27 |
<span class="swpm-rember-label"> <?php echo SwpmUtils::_('Remember Me') ?></span>
|
| 6 |
// Filter that allows changing of the default value of the username label on login form.
|
| 7 |
$label_username_or_email = __( 'Username or Email', 'simple-membership' );
|
| 8 |
$swpm_username_label = apply_filters('swpm_login_form_set_username_label', $label_username_or_email);
|
| 9 |
+
|
| 10 |
+
$display_password_toggle = $setting->get_value('password-visibility-login-form');
|
| 11 |
+
if ( empty( $display_password_toggle ) ){
|
| 12 |
+
$display_password_toggle = false;
|
| 13 |
+
}
|
| 14 |
+
else{
|
| 15 |
+
$display_password_toggle = true;
|
| 16 |
+
}
|
| 17 |
?>
|
| 18 |
<div class="swpm-login-widget-form">
|
| 19 |
<form id="swpm-login-form" name="swpm-login-form" method="post" action="">
|
| 27 |
<div class="swpm-password-label">
|
| 28 |
<label for="swpm_password" class="swpm-label"><?php echo SwpmUtils::_('Password') ?></label>
|
| 29 |
</div>
|
| 30 |
+
<div class="swpm-password-input">
|
| 31 |
+
<input type="password" class="swpm-text-field swpm-password-field" id="swpm_password" value="" size="25" name="swpm_password" />
|
| 32 |
</div>
|
| 33 |
+
<?php if( $display_password_toggle ){ ?>
|
| 34 |
+
<div class="swpm-password-input-visibility">
|
| 35 |
+
<span class="swpm-password-toggle-checkbox"><input type="checkbox" id="swpm-password-toggle-checkbox" data-state="password-hidden" > </span>
|
| 36 |
+
<span class="swpm-password-toggle-label"> <?php echo SwpmUtils::_('Show password') ?></span>
|
| 37 |
+
</div>
|
| 38 |
+
<?php } ?>
|
| 39 |
<div class="swpm-remember-me">
|
| 40 |
<span class="swpm-remember-checkbox"><input type="checkbox" name="rememberme" value="checked='checked'"></span>
|
| 41 |
<span class="swpm-rember-label"> <?php echo SwpmUtils::_('Remember Me') ?></span>
|
views/payments/payment-gateway/admin_paypal_smart_checkout_button.php
CHANGED
|
@@ -285,12 +285,12 @@ add_action('swpm_edit_payment_button_process_submission', 'swpm_save_edit_pp_sma
|
|
| 285 |
|
| 286 |
function swpm_save_edit_pp_smart_checkout_button_data() {
|
| 287 |
|
| 288 |
-
$btn_size = sanitize_text_field($_POST['pp_smart_checkout_btn_size']);
|
| 289 |
-
$btn_color = sanitize_text_field($_POST['pp_smart_checkout_btn_color']);
|
| 290 |
-
$btn_shape = sanitize_text_field($_POST['pp_smart_checkout_btn_shape']);
|
| 291 |
-
$btn_layout = sanitize_text_field($_POST['pp_smart_checkout_btn_layout']);
|
| 292 |
-
$pm_credit = sanitize_text_field($_POST['pp_smart_checkout_payment_method_credit']);
|
| 293 |
-
$pm_elv = sanitize_text_field($_POST['pp_smart_checkout_payment_method_elv']);
|
| 294 |
|
| 295 |
if (isset($_REQUEST['swpm_pp_smart_checkout_save_submit'])) {
|
| 296 |
//This is a PayPal Smart Checkout button save event.
|
| 285 |
|
| 286 |
function swpm_save_edit_pp_smart_checkout_button_data() {
|
| 287 |
|
| 288 |
+
$btn_size = isset($_POST['pp_smart_checkout_btn_size']) ? sanitize_text_field($_POST['pp_smart_checkout_btn_size']) : '';
|
| 289 |
+
$btn_color = isset($_POST['pp_smart_checkout_btn_color']) ? sanitize_text_field($_POST['pp_smart_checkout_btn_color']) : '';
|
| 290 |
+
$btn_shape = isset($_POST['pp_smart_checkout_btn_shape']) ? sanitize_text_field($_POST['pp_smart_checkout_btn_shape']) : '';
|
| 291 |
+
$btn_layout = isset($_POST['pp_smart_checkout_btn_layout']) ? sanitize_text_field($_POST['pp_smart_checkout_btn_layout']) : '';
|
| 292 |
+
$pm_credit = isset($_POST['pp_smart_checkout_payment_method_credit']) ? sanitize_text_field($_POST['pp_smart_checkout_payment_method_credit']) : '';
|
| 293 |
+
$pm_elv = isset($_POST['pp_smart_checkout_payment_method_elv']) ? sanitize_text_field($_POST['pp_smart_checkout_payment_method_elv']) : '';
|
| 294 |
|
| 295 |
if (isset($_REQUEST['swpm_pp_smart_checkout_save_submit'])) {
|
| 296 |
//This is a PayPal Smart Checkout button save event.
|
